mirror of
https://github.com/ACSPRI/queXS
synced 2024-04-02 12:12:16 +00:00
Can define centre and project information in administrative menu
Able to edit questionnaires RS text and name Can disable/enable questionnaires for viewing in admin interface RS text entered via new CKEditor including ability to insert tokens/template replace text Added setting table and associated getter/setter functions (currently only used for centre information but could add more)
This commit is contained in:
@@ -0,0 +1,347 @@
|
||||
/*
|
||||
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
CKEDITOR.dialog.add( 'specialchar', function( editor )
|
||||
{
|
||||
/**
|
||||
* Simulate "this" of a dialog for non-dialog events.
|
||||
* @type {CKEDITOR.dialog}
|
||||
*/
|
||||
var dialog,
|
||||
lang = editor.lang.specialChar;
|
||||
|
||||
var onChoice = function( evt )
|
||||
{
|
||||
var target, value;
|
||||
if ( evt.data )
|
||||
target = evt.data.getTarget();
|
||||
else
|
||||
target = new CKEDITOR.dom.element( evt );
|
||||
|
||||
if ( target.getName() == 'a' && ( value = target.getChild( 0 ).getHtml() ) )
|
||||
{
|
||||
target.removeClass( "cke_light_background" );
|
||||
dialog.hide();
|
||||
|
||||
editor.insertHtml( value );
|
||||
}
|
||||
};
|
||||
|
||||
var onClick = CKEDITOR.tools.addFunction( onChoice );
|
||||
|
||||
var focusedNode;
|
||||
|
||||
var onFocus = function( evt, target )
|
||||
{
|
||||
var value;
|
||||
target = target || evt.data.getTarget();
|
||||
|
||||
if ( target.getName() == 'span' )
|
||||
target = target.getParent();
|
||||
|
||||
if ( target.getName() == 'a' && ( value = target.getChild( 0 ).getHtml() ) )
|
||||
{
|
||||
// Trigger blur manually if there is focused node.
|
||||
if ( focusedNode )
|
||||
onBlur( null, focusedNode );
|
||||
|
||||
var htmlPreview = dialog.getContentElement( 'info', 'htmlPreview' ).getElement();
|
||||
|
||||
dialog.getContentElement( 'info', 'charPreview' ).getElement().setHtml( value );
|
||||
htmlPreview.setHtml( CKEDITOR.tools.htmlEncode( value ) );
|
||||
target.getParent().addClass( "cke_light_background" );
|
||||
|
||||
// Memorize focused node.
|
||||
focusedNode = target;
|
||||
}
|
||||
};
|
||||
|
||||
var onBlur = function( evt, target )
|
||||
{
|
||||
target = target || evt.data.getTarget();
|
||||
|
||||
if ( target.getName() == 'span' )
|
||||
target = target.getParent();
|
||||
|
||||
if ( target.getName() == 'a' )
|
||||
{
|
||||
dialog.getContentElement( 'info', 'charPreview' ).getElement().setHtml( ' ' );
|
||||
dialog.getContentElement( 'info', 'htmlPreview' ).getElement().setHtml( ' ' );
|
||||
target.getParent().removeClass( "cke_light_background" );
|
||||
|
||||
focusedNode = undefined;
|
||||
}
|
||||
};
|
||||
|
||||
var onKeydown = CKEDITOR.tools.addFunction( function( ev )
|
||||
{
|
||||
ev = new CKEDITOR.dom.event( ev );
|
||||
|
||||
// Get an Anchor element.
|
||||
var element = ev.getTarget();
|
||||
var relative, nodeToMove;
|
||||
var keystroke = ev.getKeystroke(),
|
||||
rtl = editor.lang.dir == 'rtl';
|
||||
|
||||
switch ( keystroke )
|
||||
{
|
||||
// UP-ARROW
|
||||
case 38 :
|
||||
// relative is TR
|
||||
if ( ( relative = element.getParent().getParent().getPrevious() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( [element.getParent().getIndex(), 0] );
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
}
|
||||
ev.preventDefault();
|
||||
break;
|
||||
// DOWN-ARROW
|
||||
case 40 :
|
||||
// relative is TR
|
||||
if ( ( relative = element.getParent().getParent().getNext() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( [ element.getParent().getIndex(), 0 ] );
|
||||
if ( nodeToMove && nodeToMove.type == 1 )
|
||||
{
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
}
|
||||
}
|
||||
ev.preventDefault();
|
||||
break;
|
||||
// SPACE
|
||||
// ENTER is already handled as onClick
|
||||
case 32 :
|
||||
onChoice( { data: ev } );
|
||||
ev.preventDefault();
|
||||
break;
|
||||
|
||||
// RIGHT-ARROW
|
||||
case rtl ? 37 : 39 :
|
||||
// TAB
|
||||
case 9 :
|
||||
// relative is TD
|
||||
if ( ( relative = element.getParent().getNext() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( 0 );
|
||||
if ( nodeToMove.type == 1 )
|
||||
{
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
ev.preventDefault( true );
|
||||
}
|
||||
else
|
||||
onBlur( null, element );
|
||||
}
|
||||
// relative is TR
|
||||
else if ( ( relative = element.getParent().getParent().getNext() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( [ 0, 0 ] );
|
||||
if ( nodeToMove && nodeToMove.type == 1 )
|
||||
{
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
ev.preventDefault( true );
|
||||
}
|
||||
else
|
||||
onBlur( null, element );
|
||||
}
|
||||
break;
|
||||
|
||||
// LEFT-ARROW
|
||||
case rtl ? 39 : 37 :
|
||||
// SHIFT + TAB
|
||||
case CKEDITOR.SHIFT + 9 :
|
||||
// relative is TD
|
||||
if ( ( relative = element.getParent().getPrevious() ) )
|
||||
{
|
||||
nodeToMove = relative.getChild( 0 );
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
ev.preventDefault( true );
|
||||
}
|
||||
// relative is TR
|
||||
else if ( ( relative = element.getParent().getParent().getPrevious() ) )
|
||||
{
|
||||
nodeToMove = relative.getLast().getChild( 0 );
|
||||
nodeToMove.focus();
|
||||
onBlur( null, element );
|
||||
onFocus( null, nodeToMove );
|
||||
ev.preventDefault( true );
|
||||
}
|
||||
else
|
||||
onBlur( null, element );
|
||||
break;
|
||||
default :
|
||||
// Do not stop not handled events.
|
||||
return;
|
||||
}
|
||||
});
|
||||
|
||||
return {
|
||||
title : lang.title,
|
||||
minWidth : 430,
|
||||
minHeight : 280,
|
||||
buttons : [ CKEDITOR.dialog.cancelButton ],
|
||||
charColumns : 17,
|
||||
onLoad : function()
|
||||
{
|
||||
var columns = this.definition.charColumns,
|
||||
extraChars = editor.config.extraSpecialChars,
|
||||
chars = editor.config.specialChars;
|
||||
|
||||
var charsTableLabel = CKEDITOR.tools.getNextId() + '_specialchar_table_label';
|
||||
var html = [ '<table role="listbox" aria-labelledby="' + charsTableLabel + '"' +
|
||||
' style="width: 320px; height: 100%; border-collapse: separate;"' +
|
||||
' align="center" cellspacing="2" cellpadding="2" border="0">' ];
|
||||
|
||||
var i = 0,
|
||||
size = chars.length,
|
||||
character,
|
||||
charDesc;
|
||||
|
||||
while ( i < size )
|
||||
{
|
||||
html.push( '<tr>' ) ;
|
||||
|
||||
for ( var j = 0 ; j < columns ; j++, i++ )
|
||||
{
|
||||
if ( ( character = chars[ i ] ) )
|
||||
{
|
||||
charDesc = '';
|
||||
|
||||
if ( character instanceof Array )
|
||||
{
|
||||
charDesc = character[ 1 ];
|
||||
character = character[ 0 ];
|
||||
}
|
||||
else
|
||||
{
|
||||
var _tmpName = character.toLowerCase().replace( '&', '' ).replace( ';', '' ).replace( '#', '' );
|
||||
|
||||
// Use character in case description unavailable.
|
||||
charDesc = lang[ _tmpName ] || character;
|
||||
}
|
||||
|
||||
var charLabelId = 'cke_specialchar_label_' + i + '_' + CKEDITOR.tools.getNextNumber();
|
||||
|
||||
html.push(
|
||||
'<td class="cke_dark_background" style="cursor: default" role="presentation">' +
|
||||
'<a href="javascript: void(0);" role="option"' +
|
||||
' aria-posinset="' + ( i +1 ) + '"',
|
||||
' aria-setsize="' + size + '"',
|
||||
' aria-labelledby="' + charLabelId + '"',
|
||||
' style="cursor: inherit; display: block; height: 1.25em; margin-top: 0.25em; text-align: center;" title="', CKEDITOR.tools.htmlEncode( charDesc ), '"' +
|
||||
' onkeydown="CKEDITOR.tools.callFunction( ' + onKeydown + ', event, this )"' +
|
||||
' onclick="CKEDITOR.tools.callFunction(' + onClick + ', this); return false;"' +
|
||||
' tabindex="-1">' +
|
||||
'<span style="margin: 0 auto;cursor: inherit">' +
|
||||
character +
|
||||
'</span>' +
|
||||
'<span class="cke_voice_label" id="' + charLabelId + '">' +
|
||||
charDesc +
|
||||
'</span></a>');
|
||||
}
|
||||
else
|
||||
html.push( '<td class="cke_dark_background"> ' );
|
||||
|
||||
html.push( '</td>' );
|
||||
}
|
||||
html.push( '</tr>' );
|
||||
}
|
||||
|
||||
html.push( '</tbody></table>', '<span id="' + charsTableLabel + '" class="cke_voice_label">' + lang.options +'</span>' );
|
||||
|
||||
this.getContentElement( 'info', 'charContainer' ).getElement().setHtml( html.join( '' ) );
|
||||
},
|
||||
contents : [
|
||||
{
|
||||
id : 'info',
|
||||
label : editor.lang.common.generalTab,
|
||||
title : editor.lang.common.generalTab,
|
||||
padding : 0,
|
||||
align : 'top',
|
||||
elements : [
|
||||
{
|
||||
type : 'hbox',
|
||||
align : 'top',
|
||||
widths : [ '320px', '90px' ],
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'html',
|
||||
id : 'charContainer',
|
||||
html : '',
|
||||
onMouseover : onFocus,
|
||||
onMouseout : onBlur,
|
||||
focus : function()
|
||||
{
|
||||
var firstChar = this.getElement().getElementsByTag( 'a' ).getItem( 0 );
|
||||
setTimeout( function()
|
||||
{
|
||||
firstChar.focus();
|
||||
onFocus( null, firstChar );
|
||||
}, 0 );
|
||||
},
|
||||
onShow : function()
|
||||
{
|
||||
var firstChar = this.getElement().getChild( [ 0, 0, 0, 0, 0 ] );
|
||||
setTimeout( function()
|
||||
{
|
||||
firstChar.focus();
|
||||
onFocus( null, firstChar );
|
||||
}, 0 );
|
||||
},
|
||||
onLoad : function( event )
|
||||
{
|
||||
dialog = event.sender;
|
||||
}
|
||||
},
|
||||
{
|
||||
type : 'hbox',
|
||||
align : 'top',
|
||||
widths : [ '100%' ],
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'vbox',
|
||||
align : 'top',
|
||||
children :
|
||||
[
|
||||
{
|
||||
type : 'html',
|
||||
html : '<div></div>'
|
||||
},
|
||||
{
|
||||
type : 'html',
|
||||
id : 'charPreview',
|
||||
className : 'cke_dark_background',
|
||||
style : 'border:1px solid #eeeeee;font-size:28px;height:40px;width:70px;padding-top:9px;font-family:\'Microsoft Sans Serif\',Arial,Helvetica,Verdana;text-align:center;',
|
||||
html : '<div> </div>'
|
||||
},
|
||||
{
|
||||
type : 'html',
|
||||
id : 'htmlPreview',
|
||||
className : 'cke_dark_background',
|
||||
style : 'border:1px solid #eeeeee;font-size:14px;height:20px;width:70px;padding-top:2px;font-family:\'Microsoft Sans Serif\',Arial,Helvetica,Verdana;text-align:center;',
|
||||
html : '<div> </div>'
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
};
|
||||
} );
|
||||
89
include/ckeditor/_source/plugins/specialchar/lang/en.js
Normal file
89
include/ckeditor/_source/plugins/specialchar/lang/en.js
Normal file
@@ -0,0 +1,89 @@
|
||||
|
||||
CKEDITOR.plugins.setLang( 'specialchar', 'en',
|
||||
{
|
||||
euro: "EURO SIGN",
|
||||
lsquo: "LEFT SINGLE QUOTATION MARK",
|
||||
rsquo: "RIGHT SINGLE QUOTATION MARK",
|
||||
ldquo: "LEFT DOUBLE QUOTATION MARK",
|
||||
rdquo: "RIGHT DOUBLE QUOTATION MARK",
|
||||
ndash: "EN DASH",
|
||||
mdash: "EM DASH",
|
||||
iexcl: "INVERTED EXCLAMATION MARK",
|
||||
cent: "CENT SIGN",
|
||||
pound: "POUND SIGN",
|
||||
curren: "CURRENCY SIGN",
|
||||
yen: "YEN SIGN",
|
||||
brvbar: "BROKEN BAR",
|
||||
sect: "SECTION SIGN",
|
||||
uml: "DIAERESIS",
|
||||
copy: "COPYRIGHT SIGN",
|
||||
ordf: "FEMININE ORDINAL INDICATOR",
|
||||
laquo: "LEFT-POINTING DOUBLE ANGLE QUOTATION MARK",
|
||||
not: "NOT SIGN",
|
||||
reg: "REGISTERED SIGN",
|
||||
macr: "MACRON",
|
||||
deg: "DEGREE SIGN",
|
||||
sup2: "SUPERSCRIPT TWO",
|
||||
sup3: "SUPERSCRIPT THREE",
|
||||
acute: "ACUTE ACCENT",
|
||||
micro: "MICRO SIGN",
|
||||
para: "PILCROW SIGN",
|
||||
middot: "MIDDLE DOT",
|
||||
cedil: "CEDILLA",
|
||||
sup1: "SUPERSCRIPT ONE",
|
||||
ordm: "MASCULINE ORDINAL INDICATOR",
|
||||
frac14: "VULGAR FRACTION ONE QUARTER",
|
||||
frac12: "VULGAR FRACTION ONE HALF",
|
||||
frac34: "VULGAR FRACTION THREE QUARTERS",
|
||||
iquest: "INVERTED QUESTION MARK",
|
||||
agrave: "LATIN SMALL LETTER A WITH GRAVE",
|
||||
aacute: "LATIN SMALL LETTER A WITH ACUTE",
|
||||
acirc: "LATIN SMALL LETTER A WITH CIRCUMFLEX",
|
||||
atilde: "LATIN SMALL LETTER A WITH TILDE",
|
||||
auml: "LATIN SMALL LETTER A WITH DIAERESIS",
|
||||
aring: "LATIN SMALL LETTER A WITH RING ABOVE",
|
||||
aelig: "LATIN SMALL LETTER AE",
|
||||
ccedil: "LATIN SMALL LETTER C WITH CEDILLA",
|
||||
egrave: "LATIN SMALL LETTER E WITH GRAVE",
|
||||
eacute: "LATIN SMALL LETTER E WITH ACUTE",
|
||||
ecirc: "LATIN SMALL LETTER E WITH CIRCUMFLEX",
|
||||
euml: "LATIN SMALL LETTER E WITH DIAERESIS",
|
||||
igrave: "LATIN SMALL LETTER I WITH GRAVE",
|
||||
iacute: "LATIN SMALL LETTER I WITH ACUTE",
|
||||
icirc: "LATIN SMALL LETTER I WITH CIRCUMFLEX",
|
||||
iuml: "LATIN SMALL LETTER I WITH DIAERESIS",
|
||||
eth: "LATIN SMALL LETTER ETH",
|
||||
ntilde: "LATIN SMALL LETTER N WITH TILDE",
|
||||
ograve: "LATIN SMALL LETTER O WITH GRAVE",
|
||||
oacute: "LATIN SMALL LETTER O WITH ACUTE",
|
||||
ocirc: "LATIN SMALL LETTER O WITH CIRCUMFLEX",
|
||||
otilde: "LATIN SMALL LETTER O WITH TILDE",
|
||||
ouml: "LATIN SMALL LETTER O WITH DIAERESIS",
|
||||
times: "MULTIPLICATION SIGN",
|
||||
oslash: "LATIN SMALL LETTER O WITH STROKE",
|
||||
ugrave: "LATIN SMALL LETTER U WITH GRAVE",
|
||||
uacute: "LATIN SMALL LETTER U WITH ACUTE",
|
||||
ucirc: "LATIN SMALL LETTER U WITH CIRCUMFLEX",
|
||||
uuml: "LATIN SMALL LETTER U WITH DIAERESIS",
|
||||
yacute: "LATIN SMALL LETTER Y WITH ACUTE",
|
||||
thorn: "LATIN SMALL LETTER THORN",
|
||||
szlig: "LATIN SMALL LETTER SHARP S",
|
||||
divide: "DIVISION SIGN",
|
||||
yuml: "LATIN SMALL LETTER Y WITH DIAERESIS",
|
||||
oelig: "LATIN SMALL LIGATURE OE",
|
||||
'372': "LATIN CAPITAL LETTER W WITH CIRCUMFLEX",
|
||||
'374': "LATIN CAPITAL LETTER Y WITH CIRCUMFLEX",
|
||||
'373': "LATIN SMALL LETTER W WITH CIRCUMFLEX",
|
||||
'375': "LATIN SMALL LETTER Y WITH CIRCUMFLEX",
|
||||
8219: "SINGLE HIGH-REVERSED-9 QUOTATION MARK",
|
||||
bdquo: "DOUBLE LOW-9 QUOTATION MARK",
|
||||
hellip: "HORIZONTAL ELLIPSIS",
|
||||
trade: "TRADE MARK SIGN",
|
||||
'9658': "BLACK RIGHT-POINTING POINTER",
|
||||
bull: "BULLET",
|
||||
rarr: "RIGHTWARDS DOUBLE ARROW",
|
||||
harr: "LEFT RIGHT DOUBLE ARROW",
|
||||
diams: "BLACK DIAMOND SUIT",
|
||||
asymp: "ALMOST EQUAL TO",
|
||||
sbquo: 'SINGLE LOW-9 QUOTATION MARK'
|
||||
});
|
||||
70
include/ckeditor/_source/plugins/specialchar/plugin.js
Normal file
70
include/ckeditor/_source/plugins/specialchar/plugin.js
Normal file
@@ -0,0 +1,70 @@
|
||||
/*
|
||||
Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
|
||||
For licensing, see LICENSE.html or http://ckeditor.com/license
|
||||
*/
|
||||
|
||||
/**
|
||||
* @file Special Character plugin
|
||||
*/
|
||||
|
||||
CKEDITOR.plugins.add( 'specialchar',
|
||||
{
|
||||
// List of available localizations.
|
||||
availableLangs : { en:1 },
|
||||
|
||||
init : function( editor )
|
||||
{
|
||||
var pluginName = 'specialchar',
|
||||
plugin = this;
|
||||
|
||||
// Register the dialog.
|
||||
CKEDITOR.dialog.add( pluginName, this.path + 'dialogs/specialchar.js' );
|
||||
|
||||
editor.addCommand( pluginName,
|
||||
{
|
||||
exec : function()
|
||||
{
|
||||
var langCode = editor.langCode;
|
||||
langCode = plugin.availableLangs[ langCode ] ? langCode : 'en';
|
||||
|
||||
CKEDITOR.scriptLoader.load(
|
||||
CKEDITOR.getUrl( plugin.path + 'lang/' + langCode + '.js' ),
|
||||
function()
|
||||
{
|
||||
CKEDITOR.tools.extend( editor.lang.specialChar, plugin.lang[ langCode ] );
|
||||
editor.openDialog( pluginName );
|
||||
});
|
||||
},
|
||||
modes : { wysiwyg:1 },
|
||||
canUndo : false
|
||||
});
|
||||
|
||||
// Register the toolbar button.
|
||||
editor.ui.addButton( 'SpecialChar',
|
||||
{
|
||||
label : editor.lang.specialChar.toolbar,
|
||||
command : pluginName
|
||||
});
|
||||
}
|
||||
} );
|
||||
|
||||
/**
|
||||
* The list of special characters visible in Special Character dialog.
|
||||
* @type Array
|
||||
* @example
|
||||
* config.specialChars = [ '"', '’', [ '&custom;', 'Custom label' ] ];
|
||||
* config.specialChars = config.specialChars.concat( [ '"', [ '’', 'Custom label' ] ] );
|
||||
*/
|
||||
CKEDITOR.config.specialChars =
|
||||
[
|
||||
'!','"','#','$','%','&',"'",'(',')','*','+','-','.','/',
|
||||
'0','1','2','3','4','5','6','7','8','9',':',';',
|
||||
'<','=','>','?','@',
|
||||
'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O',
|
||||
'P','Q','R','S','T','U','V','W','X','Y','Z',
|
||||
'[',']','^','_','`',
|
||||
'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p',
|
||||
'q','r','s','t','u','v','w','x','y','z',
|
||||
'{','|','}','~',
|
||||
"€", "‘", "’", "“", "”", "–", "—", "¡", "¢", "£", "¤", "¥", "¦", "§", "¨", "©", "ª", "«", "¬", "®", "¯", "°", "&", "²", "³", "´", "µ", "¶", "·", "¸", "¹", "º", "&", "¼", "½", "¾", "¿", "À", "Á", "Â", "Ã", "Ä", "Å", "Æ", "Ç", "È", "É", "Ê", "Ë", "Ì", "Í", "Î", "Ï", "Ð", "Ñ", "Ò", "Ó", "Ô", "Õ", "Ö", "×", "Ø", "Ù", "Ú", "Û", "Ü", "Ý", "Þ", "ß", "à", "á", "â", "ã", "ä", "å", "æ", "ç", "è", "é", "ê", "ë", "ì", "í", "î", "ï", "ð", "ñ", "ò", "ó", "ô", "õ", "ö", "÷", "ø", "ù", "ú", "û", "ü", "ü", "ý", "þ", "ÿ", "Œ", "œ", "Ŵ", "Ŷ", "ŵ", "ŷ", "‚", "‛", "„", "…", "™", "►", "•", "→", "⇒", "⇔", "♦", "≈"
|
||||
];
|
||||
Reference in New Issue
Block a user