mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-23 04:15:26 +00:00
HTML composition, take 2
Monotone-Parent: dbd490c81ea6cac4c12b2e17661e2fef43219e68 Monotone-Revision: 0801dc9f1e4fdc49ea44fc0450fb025c2639ed26 Monotone-Author: crobert@inverse.ca Monotone-Date: 2009-06-25T19:18:02 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -0,0 +1,550 @@
|
||||
/*
|
||||
Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
(function()
|
||||
{
|
||||
var widthPattern = /^(\d+(?:\.\d+)?)(px|%)$/,
|
||||
heightPattern = /^(\d+(?:\.\d+)?)px$/;
|
||||
|
||||
var commitValue = function( data )
|
||||
{
|
||||
var id = this.id;
|
||||
if ( !data.info )
|
||||
data.info = {};
|
||||
data.info[id] = this.getValue();
|
||||
};
|
||||
|
||||
function tableDialog( editor, command )
|
||||
{
|
||||
var makeElement = function( name ){ return new CKEDITOR.dom.element( name, editor.document ); };
|
||||
|
||||
return {
|
||||
title : editor.lang.table.title,
|
||||
minWidth : 310,
|
||||
minHeight : CKEDITOR.env.ie ? 310 : 280,
|
||||
onShow : function()
|
||||
{
|
||||
// Detect if there's a selected table.
|
||||
var selection = editor.getSelection(),
|
||||
ranges = selection.getRanges(),
|
||||
selectedTable = null;
|
||||
|
||||
var rowsInput = this.getContentElement( 'info', 'txtRows' ),
|
||||
colsInput = this.getContentElement( 'info', 'txtCols' ),
|
||||
widthInput = this.getContentElement( 'info', 'txtWidth' );
|
||||
if ( command == 'tableProperties' )
|
||||
{
|
||||
if ( ( selectedTable = editor.getSelection().getSelectedElement() ) )
|
||||
{
|
||||
if ( selectedTable.getName() != 'table' )
|
||||
selectedTable = null;
|
||||
}
|
||||
else if ( ranges.length > 0 )
|
||||
{
|
||||
var rangeRoot = ranges[0].getCommonAncestor( true );
|
||||
selectedTable = rangeRoot.getAscendant( 'table', true );
|
||||
}
|
||||
|
||||
// Save a reference to the selected table, and push a new set of default values.
|
||||
this._.selectedElement = selectedTable;
|
||||
}
|
||||
|
||||
// Enable, disable and select the row, cols, width fields.
|
||||
if ( selectedTable )
|
||||
{
|
||||
this.setupContent( selectedTable );
|
||||
rowsInput && rowsInput.disable();
|
||||
colsInput && colsInput.disable();
|
||||
widthInput && widthInput.select();
|
||||
}
|
||||
else
|
||||
{
|
||||
rowsInput && rowsInput.enable();
|
||||
colsInput && colsInput.enable();
|
||||
rowsInput && rowsInput.select();
|
||||
}
|
||||
},
|
||||
onOk : function()
|
||||
{
|
||||
var table = this._.selectedElement || makeElement( 'table' ),
|
||||
me = this,
|
||||
data = {};
|
||||
|
||||
this.commitContent( data, table );
|
||||
|
||||
if ( data.info )
|
||||
{
|
||||
var info = data.info;
|
||||
|
||||
// Generate the rows and cols.
|
||||
if ( !this._.selectedElement )
|
||||
{
|
||||
var tbody = table.append( makeElement( 'tbody' ) ),
|
||||
rows = parseInt( info.txtRows, 10 ) || 0,
|
||||
cols = parseInt( info.txtCols, 10 ) || 0;
|
||||
|
||||
for ( var i = 0 ; i < rows ; i++ )
|
||||
{
|
||||
var row = tbody.append( makeElement( 'tr' ) );
|
||||
for ( var j = 0 ; j < cols ; j++ )
|
||||
{
|
||||
var cell = row.append( makeElement( 'td' ) );
|
||||
if ( !CKEDITOR.env.ie )
|
||||
cell.append( makeElement( 'br' ) );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Modify the table headers. Depends on havint rows and cols generated
|
||||
// correctly so it can't be done in commit functions.
|
||||
|
||||
// Should we make a <thead>?
|
||||
var headers = info.selHeaders;
|
||||
if ( !table.$.tHead && ( headers == 'row' || headers == 'both' ) )
|
||||
{
|
||||
var thead = new CKEDITOR.dom.element( table.$.createTHead() );
|
||||
tbody = table.getElementsByTag( 'tbody' ).getItem( 0 );
|
||||
var theRow = tbody.getElementsByTag( 'tr' ).getItem( 0 );
|
||||
|
||||
// Change TD to TH:
|
||||
for ( i = 0 ; i < theRow.getChildCount() ; i++ )
|
||||
{
|
||||
var th = theRow.getChild( i );
|
||||
if ( th.type == CKEDITOR.NODE_ELEMENT )
|
||||
{
|
||||
th.renameNode( 'th' );
|
||||
if ( !i )
|
||||
th.setAttribute( 'scope', 'col' );
|
||||
}
|
||||
}
|
||||
thead.append( theRow.remove() );
|
||||
}
|
||||
|
||||
if ( table.$.tHead !== null && !( headers == 'row' || headers == 'both' ) )
|
||||
{
|
||||
// Move the row out of the THead and put it in the TBody:
|
||||
thead = new CKEDITOR.dom.element( table.$.tHead );
|
||||
tbody = table.getElementsByTag( 'tbody' ).getItem( 0 );
|
||||
|
||||
var previousFirstRow = tbody.getFirst();
|
||||
while ( thead.getChildCount() > 0 )
|
||||
{
|
||||
theRow = thead.getFirst();
|
||||
for ( i = 0; i < theRow.getChildCount() ; i++ )
|
||||
{
|
||||
var newCell = theRow.getChild( i );
|
||||
if ( newCell.type == CKEDITOR.NODE_ELEMENT )
|
||||
{
|
||||
newCell.renameNode( 'td' );
|
||||
newCell.removeAttribute( 'scope' );
|
||||
}
|
||||
}
|
||||
theRow.insertBefore( previousFirstRow );
|
||||
}
|
||||
thead.remove();
|
||||
}
|
||||
|
||||
// Should we make all first cells in a row TH?
|
||||
if ( !this.hasColumnHeaders && ( headers == 'col' || headers == 'both' ) )
|
||||
{
|
||||
for( row = 0 ; row < table.$.rows.length ; row++ )
|
||||
{
|
||||
newCell = new CKEDITOR.dom.element( table.$.rows[ row ].cells[ 0 ] );
|
||||
newCell.renameNode( 'th' );
|
||||
newCell.setAttribute( 'scope', 'col' );
|
||||
}
|
||||
}
|
||||
|
||||
// Should we make all first TH-cells in a row make TD? If 'yes' we do it the other way round :-)
|
||||
if ( ( this.hasColumnHeaders ) && !( headers == 'col' || headers == 'both' ) )
|
||||
{
|
||||
for( i = 0 ; i < table.$.rows.length ; i++ )
|
||||
{
|
||||
row = new CKEDITOR.dom.element( table.$.rows[i] );
|
||||
if ( row.getParent().getName() == 'tbody' )
|
||||
{
|
||||
newCell = new CKEDITOR.dom.element( row.$.cells[0] );
|
||||
newCell.renameNode( 'td');
|
||||
newCell.removeAttribute( 'scope' );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Set the width and height.
|
||||
var styles = [];
|
||||
if ( info.txtHeight )
|
||||
styles.push( 'height:' + info.txtHeight + 'px' );
|
||||
if ( info.txtWidth )
|
||||
{
|
||||
var type = info.cmbWidthType || 'pixels';
|
||||
styles.push( 'width:' + info.txtWidth + ( type == 'pixels' ? 'px' : '%' ) );
|
||||
}
|
||||
styles = styles.join( ';' );
|
||||
if ( styles )
|
||||
table.$.style.cssText = styles;
|
||||
else
|
||||
table.removeAttribute( 'style' );
|
||||
}
|
||||
|
||||
// Insert the table element if we're creating one.
|
||||
if ( !this._.selectedElement )
|
||||
editor.insertElement( table );
|
||||
|
||||
return true;
|
||||
},
|
||||
contents : [
|
||||
{
|
||||
id : 'info',
|
||||
label : editor.lang.table.title,
|
||||
elements :
|
||||
[
|
||||
{
|
||||
type : 'hbox',
|
||||
widths : [ null, null ],
|
||||
styles : [ 'vertical-align:top' ],
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'vbox',
|
||||
padding : 0,
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'text',
|
||||
id : 'txtRows',
|
||||
'default' : 3,
|
||||
label : editor.lang.table.rows,
|
||||
style : 'width:5em',
|
||||
validate : function()
|
||||
{
|
||||
var pass = true,
|
||||
value = this.getValue();
|
||||
pass = pass && CKEDITOR.dialog.validate.integer()( value )
|
||||
&& value > 0;
|
||||
if ( !pass )
|
||||
{
|
||||
alert( editor.lang.table.invalidRows );
|
||||
this.select();
|
||||
}
|
||||
return pass;
|
||||
},
|
||||
setup : function( selectedElement )
|
||||
{
|
||||
this.setValue( selectedElement.$.rows.length );
|
||||
},
|
||||
commit : commitValue
|
||||
},
|
||||
{
|
||||
type : 'text',
|
||||
id : 'txtCols',
|
||||
'default' : 2,
|
||||
label : editor.lang.table.columns,
|
||||
style : 'width:5em',
|
||||
validate : function()
|
||||
{
|
||||
var pass = true,
|
||||
value = this.getValue();
|
||||
pass = pass && CKEDITOR.dialog.validate.integer()( value )
|
||||
&& value > 0;
|
||||
if ( !pass )
|
||||
{
|
||||
alert( editor.lang.table.invalidCols );
|
||||
this.select();
|
||||
}
|
||||
return pass;
|
||||
},
|
||||
setup : function( selectedTable )
|
||||
{
|
||||
this.setValue( selectedTable.$.rows[0].cells.length);
|
||||
},
|
||||
commit : commitValue
|
||||
},
|
||||
{
|
||||
type : 'html',
|
||||
html : ' '
|
||||
},
|
||||
{
|
||||
type : 'select',
|
||||
id : 'selHeaders',
|
||||
'default' : '',
|
||||
label : editor.lang.table.headers,
|
||||
items :
|
||||
[
|
||||
[ editor.lang.table.headersNone, '' ],
|
||||
[ editor.lang.table.headersRow, 'row' ],
|
||||
[ editor.lang.table.headersColumn, 'col' ],
|
||||
[ editor.lang.table.headersBoth, 'both' ]
|
||||
],
|
||||
setup : function( selectedTable )
|
||||
{
|
||||
// Fill in the headers field.
|
||||
var dialog = this.getDialog();
|
||||
dialog.hasColumnHeaders = true;
|
||||
|
||||
// Check if all the first cells in every row are TH
|
||||
for ( var row = 0 ; row < selectedTable.$.rows.length ; row++ )
|
||||
{
|
||||
// If just one cell isn't a TH then it isn't a header column
|
||||
if ( selectedTable.$.rows[row].cells[0].nodeName.toLowerCase() != 'th' )
|
||||
{
|
||||
dialog.hasColumnHeaders = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
// Check if the table contains <thead>.
|
||||
if ( ( selectedTable.$.tHead !== null) )
|
||||
this.setValue( dialog.hasColumnHeaders ? 'both' : 'row' );
|
||||
else
|
||||
this.setValue( dialog.hasColumnHeaders ? 'col' : '' );
|
||||
},
|
||||
commit : commitValue
|
||||
},
|
||||
{
|
||||
type : 'text',
|
||||
id : 'txtBorder',
|
||||
'default' : 1,
|
||||
label : editor.lang.table.border,
|
||||
style : 'width:3em',
|
||||
validate : CKEDITOR.dialog.validate['number']( editor.lang.table.invalidBorder ),
|
||||
setup : function( selectedTable )
|
||||
{
|
||||
this.setValue( selectedTable.getAttribute( 'border' ) || '' );
|
||||
},
|
||||
commit : function( data, selectedTable )
|
||||
{
|
||||
if ( this.getValue() )
|
||||
selectedTable.setAttribute( 'border', this.getValue() );
|
||||
else
|
||||
selectedTable.removeAttribute( 'border' );
|
||||
}
|
||||
},
|
||||
{
|
||||
id : 'cmbAlign',
|
||||
type : 'select',
|
||||
'default' : '',
|
||||
label : editor.lang.table.align,
|
||||
items :
|
||||
[
|
||||
[ editor.lang.table.alignNotSet , ''],
|
||||
[ editor.lang.table.alignLeft , 'left'],
|
||||
[ editor.lang.table.alignCenter , 'center'],
|
||||
[ editor.lang.table.alignRight , 'right']
|
||||
],
|
||||
setup : function( selectedTable )
|
||||
{
|
||||
this.setValue( selectedTable.getAttribute( 'align' ) || '' );
|
||||
},
|
||||
commit : function( data, selectedTable )
|
||||
{
|
||||
if ( this.getValue() )
|
||||
selectedTable.setAttribute( 'align', this.getValue() );
|
||||
else
|
||||
selectedTable.removeAttribute( 'align' );
|
||||
}
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
type : 'vbox',
|
||||
padding : 0,
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'hbox',
|
||||
widths : [ '5em' ],
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'text',
|
||||
id : 'txtWidth',
|
||||
style : 'width:5em',
|
||||
label : editor.lang.table.width,
|
||||
'default' : 200,
|
||||
validate : CKEDITOR.dialog.validate['number']( editor.lang.table.invalidWidth ),
|
||||
setup : function( selectedTable )
|
||||
{
|
||||
var widthMatch = widthPattern.exec( selectedTable.$.style.width );
|
||||
if ( widthMatch )
|
||||
this.setValue( widthMatch[1] );
|
||||
},
|
||||
commit : commitValue
|
||||
},
|
||||
{
|
||||
id : 'cmbWidthType',
|
||||
type : 'select',
|
||||
label : ' ',
|
||||
'default' : 'pixels',
|
||||
items :
|
||||
[
|
||||
[ editor.lang.table.widthPx , 'pixels'],
|
||||
[ editor.lang.table.widthPc , 'percents']
|
||||
],
|
||||
setup : function( selectedTable )
|
||||
{
|
||||
var widthMatch = widthPattern.exec( selectedTable.$.style.width );
|
||||
if ( widthMatch )
|
||||
this.setValue( widthMatch[2] == 'px' ? 'pixels' : 'percents' );
|
||||
},
|
||||
commit : commitValue
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
type : 'hbox',
|
||||
widths : [ '5em' ],
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'text',
|
||||
id : 'txtHeight',
|
||||
style : 'width:5em',
|
||||
label : editor.lang.table.height,
|
||||
'default' : '',
|
||||
validate : CKEDITOR.dialog.validate['number']( editor.lang.table.invalidHeight ),
|
||||
setup : function( selectedTable )
|
||||
{
|
||||
var heightMatch = heightPattern.exec( selectedTable.$.style.height );
|
||||
if ( heightMatch )
|
||||
this.setValue( heightMatch[1] );
|
||||
},
|
||||
commit : commitValue
|
||||
},
|
||||
{
|
||||
type : 'html',
|
||||
html : '<br />' + editor.lang.table.widthPx
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
type : 'html',
|
||||
html : ' '
|
||||
},
|
||||
{
|
||||
type : 'text',
|
||||
id : 'txtCellSpace',
|
||||
style : 'width:3em',
|
||||
label : editor.lang.table.cellSpace,
|
||||
'default' : 1,
|
||||
validate : CKEDITOR.dialog.validate['number']( editor.lang.table.invalidCellSpacing ),
|
||||
setup : function( selectedTable )
|
||||
{
|
||||
this.setValue( selectedTable.getAttribute( 'cellSpacing' ) || '' );
|
||||
},
|
||||
commit : function( data, selectedTable )
|
||||
{
|
||||
if ( this.getValue() )
|
||||
selectedTable.setAttribute( 'cellSpacing', this.getValue() );
|
||||
else
|
||||
selectedTable.removeAttribute( 'cellSpacing' );
|
||||
}
|
||||
},
|
||||
{
|
||||
type : 'text',
|
||||
id : 'txtCellPad',
|
||||
style : 'width:3em',
|
||||
label : editor.lang.table.cellPad,
|
||||
'default' : 1,
|
||||
validate : CKEDITOR.dialog.validate['number']( editor.lang.table.invalidCellPadding ),
|
||||
setup : function( selectedTable )
|
||||
{
|
||||
this.setValue( selectedTable.getAttribute( 'cellPadding' ) || '' );
|
||||
},
|
||||
commit : function( data, selectedTable )
|
||||
{
|
||||
if ( this.getValue() )
|
||||
selectedTable.setAttribute( 'cellPadding', this.getValue() );
|
||||
else
|
||||
selectedTable.removeAttribute( 'cellPadding' );
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
type : 'html',
|
||||
align : 'right',
|
||||
html : ''
|
||||
},
|
||||
{
|
||||
type : 'vbox',
|
||||
padding : 0,
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'text',
|
||||
id : 'txtCaption',
|
||||
label : editor.lang.table.caption,
|
||||
setup : function( selectedTable )
|
||||
{
|
||||
var nodeList = selectedTable.getElementsByTag( 'caption' );
|
||||
if ( nodeList.count() > 0 )
|
||||
{
|
||||
var caption = nodeList.getItem( 0 );
|
||||
caption = ( caption.getChild( 0 ) && caption.getChild( 0 ).getText() ) || '';
|
||||
caption = CKEDITOR.tools.trim( caption );
|
||||
this.setValue( caption );
|
||||
}
|
||||
},
|
||||
commit : function( data, table )
|
||||
{
|
||||
var caption = this.getValue(),
|
||||
captionElement = table.getElementsByTag( 'caption' );
|
||||
if ( caption )
|
||||
{
|
||||
if ( captionElement.count() > 0 )
|
||||
{
|
||||
captionElement = captionElement.getItem( 0 );
|
||||
captionElement.setHtml( '' );
|
||||
}
|
||||
else
|
||||
{
|
||||
captionElement = new CKEDITOR.dom.element( 'caption', editor.document );
|
||||
if ( table.getChildCount() )
|
||||
captionElement.insertBefore( table.getFirst() );
|
||||
else
|
||||
captionElement.appendTo( table );
|
||||
}
|
||||
captionElement.append( new CKEDITOR.dom.text( caption, editor.document ) );
|
||||
}
|
||||
else if ( captionElement.count() > 0 )
|
||||
{
|
||||
for ( var i = captionElement.count() - 1 ; i >= 0 ; i-- )
|
||||
captionElement.getItem( i ).remove();
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
type : 'text',
|
||||
id : 'txtSummary',
|
||||
label : editor.lang.table.summary,
|
||||
setup : function( selectedTable )
|
||||
{
|
||||
this.setValue( selectedTable.getAttribute( 'summary' ) || '' );
|
||||
},
|
||||
commit : function( data, selectedTable )
|
||||
{
|
||||
if ( this.getValue() )
|
||||
selectedTable.setAttribute( 'summary', this.getValue() );
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
};
|
||||
}
|
||||
|
||||
CKEDITOR.dialog.add( 'table', function( editor )
|
||||
{
|
||||
return tableDialog( editor, 'table' );
|
||||
} );
|
||||
CKEDITOR.dialog.add( 'tableProperties', function( editor )
|
||||
{
|
||||
return tableDialog( editor, 'tableProperties' );
|
||||
} );
|
||||
})();
|
||||
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
Copyright (c) 2003-2009, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.add( 'table',
|
||||
{
|
||||
init : function( editor )
|
||||
{
|
||||
var table = CKEDITOR.plugins.table,
|
||||
lang = editor.lang.table;
|
||||
|
||||
editor.addCommand( 'table', new CKEDITOR.dialogCommand( 'table' ) );
|
||||
editor.addCommand( 'tableProperties', new CKEDITOR.dialogCommand( 'tableProperties' ) );
|
||||
|
||||
editor.ui.addButton( 'Table',
|
||||
{
|
||||
label : lang.toolbar,
|
||||
command : 'table'
|
||||
});
|
||||
|
||||
CKEDITOR.dialog.add( 'table', this.path + 'dialogs/table.js' );
|
||||
CKEDITOR.dialog.add( 'tableProperties', this.path + 'dialogs/table.js' );
|
||||
|
||||
// If the "menu" plugin is loaded, register the menu items.
|
||||
if ( editor.addMenuItems )
|
||||
{
|
||||
editor.addMenuItems(
|
||||
{
|
||||
table :
|
||||
{
|
||||
label : lang.menu,
|
||||
command : 'tableProperties',
|
||||
group : 'table',
|
||||
order : 5
|
||||
},
|
||||
|
||||
tabledelete :
|
||||
{
|
||||
label : lang.deleteTable,
|
||||
command : 'tableDelete',
|
||||
group : 'table',
|
||||
order : 1
|
||||
}
|
||||
} );
|
||||
}
|
||||
|
||||
// If the "contextmenu" plugin is loaded, register the listeners.
|
||||
if ( editor.contextMenu )
|
||||
{
|
||||
editor.contextMenu.addListener( function( element, selection )
|
||||
{
|
||||
if ( !element )
|
||||
return null;
|
||||
|
||||
var isTable = element.is( 'table' ) || element.hasAscendant( 'table' );
|
||||
|
||||
if ( isTable )
|
||||
{
|
||||
return {
|
||||
tabledelete : CKEDITOR.TRISTATE_OFF,
|
||||
table : CKEDITOR.TRISTATE_OFF
|
||||
};
|
||||
}
|
||||
|
||||
return null;
|
||||
} );
|
||||
}
|
||||
}
|
||||
} );
|
||||
Reference in New Issue
Block a user