geri 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +26 -0
- data/app/assets/javascripts/geri/admin.js +33 -0
- data/app/assets/javascripts/geri/admin/app.js +758 -0
- data/app/assets/javascripts/geri/admin/editor.js +56 -0
- data/app/assets/javascripts/geri/admin/password_resets.js +2 -0
- data/app/assets/stylesheets/geri/admin.css.less +60 -0
- data/app/assets/stylesheets/geri/admin/app.css +4915 -0
- data/app/assets/stylesheets/geri/admin/ckeditor/contents.css +135 -0
- data/app/assets/stylesheets/geri/admin/editor.css.less +38 -0
- data/app/assets/stylesheets/geri/admin/password_resets.css +4 -0
- data/app/assets/stylesheets/geri/admin/skin-blue.less +142 -0
- data/app/assets/vendor/ckeditor/CHANGES.md +1065 -0
- data/app/assets/vendor/ckeditor/LICENSE.md +1420 -0
- data/app/assets/vendor/ckeditor/README.md +39 -0
- data/app/assets/vendor/ckeditor/adapters/jquery.js +10 -0
- data/app/assets/vendor/ckeditor/build-config.js +69 -0
- data/app/assets/vendor/ckeditor/ckeditor.js +775 -0
- data/app/assets/vendor/ckeditor/config.js +34 -0
- data/app/assets/vendor/ckeditor/contents.css +135 -0
- data/app/assets/vendor/ckeditor/lang/en.js +5 -0
- data/app/assets/vendor/ckeditor/plugins/about/dialogs/about.js +7 -0
- data/app/assets/vendor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png +0 -0
- data/app/assets/vendor/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/app/assets/vendor/ckeditor/plugins/clipboard/dialogs/paste.js +12 -0
- data/app/assets/vendor/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
- data/app/assets/vendor/ckeditor/plugins/icons.png +0 -0
- data/app/assets/vendor/ckeditor/plugins/icons_hidpi.png +0 -0
- data/app/assets/vendor/ckeditor/plugins/link/dialogs/anchor.js +7 -0
- data/app/assets/vendor/ckeditor/plugins/link/dialogs/link.js +26 -0
- data/app/assets/vendor/ckeditor/plugins/link/images/anchor.png +0 -0
- data/app/assets/vendor/ckeditor/plugins/link/images/hidpi/anchor.png +0 -0
- data/app/assets/vendor/ckeditor/samples/css/samples.css +1640 -0
- data/app/assets/vendor/ckeditor/samples/img/github-top.png +0 -0
- data/app/assets/vendor/ckeditor/samples/img/header-bg.png +0 -0
- data/app/assets/vendor/ckeditor/samples/img/header-separator.png +0 -0
- data/app/assets/vendor/ckeditor/samples/img/logo.png +0 -0
- data/app/assets/vendor/ckeditor/samples/img/navigation-tip.png +0 -0
- data/app/assets/vendor/ckeditor/samples/index.html +128 -0
- data/app/assets/vendor/ckeditor/samples/js/sample.js +53 -0
- data/app/assets/vendor/ckeditor/samples/js/sf.js +17 -0
- data/app/assets/vendor/ckeditor/samples/old/ajax.html +85 -0
- data/app/assets/vendor/ckeditor/samples/old/api.html +210 -0
- data/app/assets/vendor/ckeditor/samples/old/appendto.html +59 -0
- data/app/assets/vendor/ckeditor/samples/old/assets/inlineall/logo.png +0 -0
- data/app/assets/vendor/ckeditor/samples/old/assets/outputxhtml/outputxhtml.css +204 -0
- data/app/assets/vendor/ckeditor/samples/old/assets/posteddata.php +59 -0
- data/app/assets/vendor/ckeditor/samples/old/assets/sample.jpg +0 -0
- data/app/assets/vendor/ckeditor/samples/old/assets/uilanguages/languages.js +7 -0
- data/app/assets/vendor/ckeditor/samples/old/datafiltering.html +508 -0
- data/app/assets/vendor/ckeditor/samples/old/dialog/assets/my_dialog.js +48 -0
- data/app/assets/vendor/ckeditor/samples/old/dialog/dialog.html +190 -0
- data/app/assets/vendor/ckeditor/samples/old/divreplace.html +144 -0
- data/app/assets/vendor/ckeditor/samples/old/enterkey/enterkey.html +106 -0
- data/app/assets/vendor/ckeditor/samples/old/index.html +122 -0
- data/app/assets/vendor/ckeditor/samples/old/inlineall.html +314 -0
- data/app/assets/vendor/ckeditor/samples/old/inlinebycode.html +124 -0
- data/app/assets/vendor/ckeditor/samples/old/inlinetextarea.html +113 -0
- data/app/assets/vendor/ckeditor/samples/old/jquery.html +103 -0
- data/app/assets/vendor/ckeditor/samples/old/readonly.html +76 -0
- data/app/assets/vendor/ckeditor/samples/old/replacebyclass.html +60 -0
- data/app/assets/vendor/ckeditor/samples/old/replacebycode.html +59 -0
- data/app/assets/vendor/ckeditor/samples/old/sample.css +357 -0
- data/app/assets/vendor/ckeditor/samples/old/sample.js +50 -0
- data/app/assets/vendor/ckeditor/samples/old/sample_posteddata.php +16 -0
- data/app/assets/vendor/ckeditor/samples/old/tabindex.html +78 -0
- data/app/assets/vendor/ckeditor/samples/old/toolbar/toolbar.html +235 -0
- data/app/assets/vendor/ckeditor/samples/old/uicolor.html +72 -0
- data/app/assets/vendor/ckeditor/samples/old/uilanguages.html +122 -0
- data/app/assets/vendor/ckeditor/samples/old/wysiwygarea/fullpage.html +80 -0
- data/app/assets/vendor/ckeditor/samples/old/xhtmlstyle.html +234 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/css/fontello.css +55 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt +10 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/font/config.json +28 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.eot +0 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.svg +14 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.ttf +0 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.woff +0 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/index.html +446 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/js/abstracttoolbarmodifier.js +13 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/js/fulltoolbareditor.js +9 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/js/toolbarmodifier.js +33 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/js/toolbartextmodifier.js +14 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/lib/codemirror/LICENSE +19 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/lib/codemirror/codemirror.css +325 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/lib/codemirror/codemirror.js +288 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/lib/codemirror/javascript.js +25 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/lib/codemirror/neo.css +36 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css +38 -0
- data/app/assets/vendor/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.js +16 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/dialog.css +1 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/dialog_ie.css +1 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/dialog_ie7.css +1 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/dialog_ie8.css +1 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/dialog_iequirks.css +1 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/dialog_opera.css +1 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/editor.css +1 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/editor_gecko.css +1 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/editor_ie.css +1 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/editor_ie7.css +1 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/editor_ie8.css +1 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/editor_iequirks.css +1 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/icons.png +0 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/icons_hidpi.png +0 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/images/arrow.png +0 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/images/close.png +0 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/images/hidpi/close.png +0 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/images/hidpi/lock-open.png +0 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/images/hidpi/lock.png +0 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/images/hidpi/refresh.png +0 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/images/lock-open.png +0 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/images/lock.png +0 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/images/refresh.png +0 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/readme.md +35 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/sample/bootstrapck-sample.html +127 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/sample/css/bootstrapck-sample.css +1 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/sample/js/analytics.js +4 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/sample/js/jquery-1.11.0.min.js +189 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/gecko/editor_gecko.scss +25 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie/dialog_ie.scss +62 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie/editor_ie.scss +71 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie7/dialog_ie7.scss +68 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie7/editor_ie7.scss +213 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie8/dialog_ie8.scss +24 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/ie8/editor_ie8.scss +27 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks/dialog_iequirks.scss +21 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/iequirks/editor_iequirks.scss +79 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/browser-specific/opera/dialog_opera.scss +31 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/components/_colorpanel.scss +119 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/components/_elementspath.scss +66 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/components/_mainui.scss +189 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/components/_menu.scss +182 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/components/_panel.scss +199 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/components/_presets.scss +32 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/components/_reset.scss +107 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/components/_richcombo.scss +174 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/components/_toolbar.scss +317 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/components/editor.scss +66 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/config/_colors.scss +61 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/config/_config.scss +9 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/config/_defaults.scss +37 -0
- data/app/assets/vendor/ckeditor/skins/bootstrapck/scss/dialog/dialog.scss +822 -0
- data/app/assets/vendor/ckeditor/styles.js +111 -0
- data/app/controllers/geri/admin/admin_users_controller.rb +56 -0
- data/app/controllers/geri/admin/dashboard_controller.rb +8 -0
- data/app/controllers/geri/admin/editor_controller.rb +33 -0
- data/app/controllers/geri/admin/password_resets_controller.rb +21 -0
- data/app/controllers/geri/admin/sessions_controller.rb +24 -0
- data/app/controllers/geri/admin_controller.rb +19 -0
- data/app/controllers/geri/application_controller.rb +5 -0
- data/app/controllers/geri/pages_controller.rb +34 -0
- data/app/helpers/geri/admin/dashboard_helper.rb +4 -0
- data/app/helpers/geri/admin/editor_helper.rb +4 -0
- data/app/helpers/geri/admin/pages_helper.rb +45 -0
- data/app/helpers/geri/admin/partials_helper.rb +4 -0
- data/app/helpers/geri/admin/password_resets_helper.rb +4 -0
- data/app/helpers/geri/admin/sessions_helper.rb +4 -0
- data/app/helpers/geri/admin_helper.rb +24 -0
- data/app/helpers/geri/admin_users_helper.rb +4 -0
- data/app/helpers/geri/application_helper.rb +26 -0
- data/app/helpers/geri/meta_helper.rb +32 -0
- data/app/mailers/application_mailer.rb +4 -0
- data/app/mailers/geri/admin_user_mailer.rb +11 -0
- data/app/models/geri/admin_user.rb +14 -0
- data/app/models/geri/content.rb +6 -0
- data/app/models/geri/password_reset.rb +17 -0
- data/app/models/geri/session.rb +20 -0
- data/app/views/geri/admin/admin_users/_form.html.erb +5 -0
- data/app/views/geri/admin/admin_users/edit.html.erb +27 -0
- data/app/views/geri/admin/admin_users/index.html.erb +45 -0
- data/app/views/geri/admin/admin_users/new.html.erb +17 -0
- data/app/views/geri/admin/dashboard/index.html.erb +1 -0
- data/app/views/geri/admin/editor/template.html.erb +17 -0
- data/app/views/geri/admin/password_resets/new.html.erb +17 -0
- data/app/views/geri/admin/sessions/new.html.erb +23 -0
- data/app/views/geri/admin/shared/_aside.html.erb +16 -0
- data/app/views/geri/admin/shared/_header.html.erb +31 -0
- data/app/views/geri/admin/shared/_menu_item.html.erb +17 -0
- data/app/views/geri/admin_user_mailer/reset_password_email.text.erb +7 -0
- data/app/views/layouts/geri/admin.html.erb +24 -0
- data/app/views/layouts/geri/admin/sessions.html.erb +21 -0
- data/app/views/layouts/mailer.html.erb +5 -0
- data/app/views/layouts/mailer.text.erb +1 -0
- data/config/initializers/geri.rb +7 -0
- data/config/initializers/sorcery.rb +463 -0
- data/config/locales/devise.en.yml +62 -0
- data/config/locales/en.yml +13 -0
- data/config/routes.rb +23 -0
- data/db/migrate/20160409151523_create_geri_contents.rb +8 -0
- data/db/migrate/20160411205412_sorcery_core.rb +20 -0
- data/lib/generators/geri/install/USAGE +8 -0
- data/lib/generators/geri/install/install_generator.rb +54 -0
- data/lib/generators/geri/install/templates/bower.json +8 -0
- data/lib/generators/geri/install/templates/index.html.erb +46 -0
- data/lib/generators/geri/install/templates/initializer.rb +12 -0
- data/lib/generators/geri/install/templates/layout.html.erb +11 -0
- data/lib/generators/geri/install/templates/site.css.less +1 -0
- data/lib/generators/geri/install/templates/site.js +1 -0
- data/lib/geri.rb +7 -0
- data/lib/geri/cli.rb +6 -0
- data/lib/geri/cli/base.rb +23 -0
- data/lib/geri/cli/extension.rb +18 -0
- data/lib/geri/config.rb +29 -0
- data/lib/geri/config/menu_item.rb +35 -0
- data/lib/geri/engine.rb +34 -0
- data/lib/geri/tasks.rb +3 -0
- data/lib/geri/tasks/create_admin_user.rb +40 -0
- data/lib/geri/version.rb +3 -0
- data/lib/tasks/geri_tasks.rake +15 -0
- metadata +449 -0
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or http://ckeditor.com/license
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
// Tool scripts for the sample pages.
|
|
7
|
+
// This file can be ignored and is not required to make use of CKEditor.
|
|
8
|
+
|
|
9
|
+
( function() {
|
|
10
|
+
CKEDITOR.on( 'instanceReady', function( ev ) {
|
|
11
|
+
// Check for sample compliance.
|
|
12
|
+
var editor = ev.editor,
|
|
13
|
+
meta = CKEDITOR.document.$.getElementsByName( 'ckeditor-sample-required-plugins' ),
|
|
14
|
+
requires = meta.length ? CKEDITOR.dom.element.get( meta[ 0 ] ).getAttribute( 'content' ).split( ',' ) : [],
|
|
15
|
+
missing = [],
|
|
16
|
+
i;
|
|
17
|
+
|
|
18
|
+
if ( requires.length ) {
|
|
19
|
+
for ( i = 0; i < requires.length; i++ ) {
|
|
20
|
+
if ( !editor.plugins[ requires[ i ] ] )
|
|
21
|
+
missing.push( '<code>' + requires[ i ] + '</code>' );
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
if ( missing.length ) {
|
|
25
|
+
var warn = CKEDITOR.dom.element.createFromHtml(
|
|
26
|
+
'<div class="warning">' +
|
|
27
|
+
'<span>To fully experience this demo, the ' + missing.join( ', ' ) + ' plugin' + ( missing.length > 1 ? 's are' : ' is' ) + ' required.</span>' +
|
|
28
|
+
'</div>'
|
|
29
|
+
);
|
|
30
|
+
warn.insertBefore( editor.container );
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// Set icons.
|
|
35
|
+
var doc = new CKEDITOR.dom.document( document ),
|
|
36
|
+
icons = doc.find( '.button_icon' );
|
|
37
|
+
|
|
38
|
+
for ( i = 0; i < icons.count(); i++ ) {
|
|
39
|
+
var icon = icons.getItem( i ),
|
|
40
|
+
name = icon.getAttribute( 'data-icon' ),
|
|
41
|
+
style = CKEDITOR.skin.getIconStyle( name, ( CKEDITOR.lang.dir == 'rtl' ) );
|
|
42
|
+
|
|
43
|
+
icon.addClass( 'cke_button_icon' );
|
|
44
|
+
icon.addClass( 'cke_button__' + name + '_icon' );
|
|
45
|
+
icon.setAttribute( 'style', style );
|
|
46
|
+
icon.setStyle( 'float', 'none' );
|
|
47
|
+
|
|
48
|
+
}
|
|
49
|
+
} );
|
|
50
|
+
} )();
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?php /* <body><pre>
|
|
2
|
+
|
|
3
|
+
-------------------------------------------------------------------------------------------
|
|
4
|
+
CKEditor - Posted Data
|
|
5
|
+
|
|
6
|
+
We are sorry, but your Web server does not support the PHP language used in this script.
|
|
7
|
+
|
|
8
|
+
Please note that CKEditor can be used with any other server-side language than just PHP.
|
|
9
|
+
To save the content created with CKEditor you need to read the POST data on the server
|
|
10
|
+
side and write it to a file or the database.
|
|
11
|
+
|
|
12
|
+
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
|
13
|
+
For licensing, see LICENSE.md or http://ckeditor.com/license
|
|
14
|
+
-------------------------------------------------------------------------------------------
|
|
15
|
+
|
|
16
|
+
</pre><div style="display:none"></body> */ include "assets/posteddata.php"; ?>
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<!--
|
|
3
|
+
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
|
4
|
+
For licensing, see LICENSE.md or http://ckeditor.com/license
|
|
5
|
+
-->
|
|
6
|
+
<html>
|
|
7
|
+
<head>
|
|
8
|
+
<meta charset="utf-8">
|
|
9
|
+
<title>TAB Key-Based Navigation — CKEditor Sample</title>
|
|
10
|
+
<script src="../../ckeditor.js"></script>
|
|
11
|
+
<link href="sample.css" rel="stylesheet">
|
|
12
|
+
<style>
|
|
13
|
+
|
|
14
|
+
.cke_focused,
|
|
15
|
+
.cke_editable.cke_focused
|
|
16
|
+
{
|
|
17
|
+
outline: 3px dotted blue !important;
|
|
18
|
+
*border: 3px dotted blue !important; /* For IE7 */
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
</style>
|
|
22
|
+
<script>
|
|
23
|
+
|
|
24
|
+
CKEDITOR.on( 'instanceReady', function( evt ) {
|
|
25
|
+
var editor = evt.editor;
|
|
26
|
+
editor.setData( 'This editor has it\'s tabIndex set to <strong>' + editor.tabIndex + '</strong>' );
|
|
27
|
+
|
|
28
|
+
// Apply focus class name.
|
|
29
|
+
editor.on( 'focus', function() {
|
|
30
|
+
editor.container.addClass( 'cke_focused' );
|
|
31
|
+
});
|
|
32
|
+
editor.on( 'blur', function() {
|
|
33
|
+
editor.container.removeClass( 'cke_focused' );
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
// Put startup focus on the first editor in tab order.
|
|
37
|
+
if ( editor.tabIndex == 1 )
|
|
38
|
+
editor.focus();
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
</script>
|
|
42
|
+
</head>
|
|
43
|
+
<body>
|
|
44
|
+
<h1 class="samples">
|
|
45
|
+
<a href="index.html">CKEditor Samples</a> » TAB Key-Based Navigation
|
|
46
|
+
</h1>
|
|
47
|
+
<div class="warning deprecated">
|
|
48
|
+
This sample is not maintained anymore. Check out its <a href="http://sdk.ckeditor.com/samples/tabindex.html">brand new version in CKEditor SDK</a>.
|
|
49
|
+
</div>
|
|
50
|
+
<div class="description">
|
|
51
|
+
<p>
|
|
52
|
+
This sample shows how tab key navigation among editor instances is
|
|
53
|
+
affected by the <code>tabIndex</code> attribute from
|
|
54
|
+
the original page element. Use TAB key to move between the editors.
|
|
55
|
+
</p>
|
|
56
|
+
</div>
|
|
57
|
+
<p>
|
|
58
|
+
<textarea class="ckeditor" cols="80" id="editor4" rows="10" tabindex="1"></textarea>
|
|
59
|
+
</p>
|
|
60
|
+
<div class="ckeditor" contenteditable="true" id="editor1" tabindex="4"></div>
|
|
61
|
+
<p>
|
|
62
|
+
<textarea class="ckeditor" cols="80" id="editor2" rows="10" tabindex="2"></textarea>
|
|
63
|
+
</p>
|
|
64
|
+
<p>
|
|
65
|
+
<textarea class="ckeditor" cols="80" id="editor3" rows="10" tabindex="3"></textarea>
|
|
66
|
+
</p>
|
|
67
|
+
<div id="footer">
|
|
68
|
+
<hr>
|
|
69
|
+
<p>
|
|
70
|
+
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
|
|
71
|
+
</p>
|
|
72
|
+
<p id="copy">
|
|
73
|
+
Copyright © 2003-2016, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
|
|
74
|
+
Knabben. All rights reserved.
|
|
75
|
+
</p>
|
|
76
|
+
</div>
|
|
77
|
+
</body>
|
|
78
|
+
</html>
|
|
@@ -0,0 +1,235 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<!--
|
|
3
|
+
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
|
4
|
+
For licensing, see LICENSE.md or http://ckeditor.com/license
|
|
5
|
+
-->
|
|
6
|
+
<html>
|
|
7
|
+
<head>
|
|
8
|
+
<meta charset="utf-8">
|
|
9
|
+
<title>Toolbar Configuration — CKEditor Sample</title>
|
|
10
|
+
<meta name="ckeditor-sample-name" content="Toolbar Configurations">
|
|
11
|
+
<meta name="ckeditor-sample-group" content="Advanced Samples">
|
|
12
|
+
<meta name="ckeditor-sample-description" content="Configuring CKEditor to display full or custom toolbar layout.">
|
|
13
|
+
<script src="../../../ckeditor.js"></script>
|
|
14
|
+
<link href="../../../samples/old/sample.css" rel="stylesheet">
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<h1 class="samples">
|
|
18
|
+
<a href="../../../samples/old/index.html">CKEditor Samples</a> » Toolbar Configuration
|
|
19
|
+
</h1>
|
|
20
|
+
<div class="warning deprecated">
|
|
21
|
+
This sample is not maintained anymore. Check out the <a href="../../../samples/toolbarconfigurator/index.html#basic">brand new CKEditor Toolbar Configurator</a>.
|
|
22
|
+
</div>
|
|
23
|
+
<div class="description">
|
|
24
|
+
<p>
|
|
25
|
+
This sample page demonstrates editor with loaded <a href="#fullToolbar">full toolbar</a> (all registered buttons) and, if
|
|
26
|
+
current editor's configuration modifies default settings, also editor with <a href="#currentToolbar">modified toolbar</a>.
|
|
27
|
+
</p>
|
|
28
|
+
|
|
29
|
+
<p>Since CKEditor 4 there are two ways to configure toolbar buttons.</p>
|
|
30
|
+
|
|
31
|
+
<h2 class="samples">By <a href="http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-toolbar">config.toolbar</a></h2>
|
|
32
|
+
|
|
33
|
+
<p>
|
|
34
|
+
You can explicitly define which buttons are displayed in which groups and in which order.
|
|
35
|
+
This is the more precise setting, but less flexible. If newly added plugin adds its
|
|
36
|
+
own button you'll have to add it manually to your <code>config.toolbar</code> setting as well.
|
|
37
|
+
</p>
|
|
38
|
+
|
|
39
|
+
<p>To add a CKEditor instance with custom toolbar setting, insert the following JavaScript call to your code:</p>
|
|
40
|
+
|
|
41
|
+
<pre class="samples">
|
|
42
|
+
CKEDITOR.replace( <em>'textarea_id'</em>, {
|
|
43
|
+
<strong>toolbar:</strong> [
|
|
44
|
+
{ name: 'document', items: [ 'Source', '-', 'NewPage', 'Preview', '-', 'Templates' ] }, // Defines toolbar group with name (used to create voice label) and items in 3 subgroups.
|
|
45
|
+
[ 'Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo' ], // Defines toolbar group without name.
|
|
46
|
+
'/', // Line break - next group will be placed in new line.
|
|
47
|
+
{ name: 'basicstyles', items: [ 'Bold', 'Italic' ] }
|
|
48
|
+
]
|
|
49
|
+
});</pre>
|
|
50
|
+
|
|
51
|
+
<h2 class="samples">By <a href="http://docs.ckeditor.com/#!/api/CKEDITOR.config-cfg-toolbarGroups">config.toolbarGroups</a></h2>
|
|
52
|
+
|
|
53
|
+
<p>
|
|
54
|
+
You can define which groups of buttons (like e.g. <code>basicstyles</code>, <code>clipboard</code>
|
|
55
|
+
and <code>forms</code>) are displayed and in which order. Registered buttons are associated
|
|
56
|
+
with toolbar groups by <code>toolbar</code> property in their definition.
|
|
57
|
+
This setting's advantage is that you don't have to modify toolbar configuration
|
|
58
|
+
when adding/removing plugins which register their own buttons.
|
|
59
|
+
</p>
|
|
60
|
+
|
|
61
|
+
<p>To add a CKEditor instance with custom toolbar groups setting, insert the following JavaScript call to your code:</p>
|
|
62
|
+
|
|
63
|
+
<pre class="samples">
|
|
64
|
+
CKEDITOR.replace( <em>'textarea_id'</em>, {
|
|
65
|
+
<strong>toolbarGroups:</strong> [
|
|
66
|
+
{ name: 'document', groups: [ 'mode', 'document' ] }, // Displays document group with its two subgroups.
|
|
67
|
+
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] }, // Group's name will be used to create voice label.
|
|
68
|
+
'/', // Line break - next group will be placed in new line.
|
|
69
|
+
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
|
|
70
|
+
{ name: 'links' }
|
|
71
|
+
]
|
|
72
|
+
|
|
73
|
+
// NOTE: Remember to leave 'toolbar' property with the default value (null).
|
|
74
|
+
});</pre>
|
|
75
|
+
</div>
|
|
76
|
+
|
|
77
|
+
<div id="currentToolbar" style="display: none">
|
|
78
|
+
<h2 class="samples">Current toolbar configuration</h2>
|
|
79
|
+
<p>Below you can see editor with current toolbar definition.</p>
|
|
80
|
+
<textarea cols="80" id="editorCurrent" name="editorCurrent" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
|
|
81
|
+
<pre id="editorCurrentCfg" class="samples"></pre>
|
|
82
|
+
</div>
|
|
83
|
+
|
|
84
|
+
<div id="fullToolbar">
|
|
85
|
+
<h2 class="samples">Full toolbar configuration</h2>
|
|
86
|
+
<p>Below you can see editor with full toolbar, generated automatically by the editor.</p>
|
|
87
|
+
<p>
|
|
88
|
+
<strong>Note</strong>: To create editor instance with full toolbar you don't have to set anything.
|
|
89
|
+
Just leave <code>toolbar</code> and <code>toolbarGroups</code> with the default, <code>null</code> values.
|
|
90
|
+
</p>
|
|
91
|
+
<textarea cols="80" id="editorFull" name="editorFull" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
|
|
92
|
+
<pre id="editorFullCfg" class="samples"></pre>
|
|
93
|
+
</div>
|
|
94
|
+
|
|
95
|
+
<script>
|
|
96
|
+
|
|
97
|
+
(function() {
|
|
98
|
+
'use strict';
|
|
99
|
+
|
|
100
|
+
var buttonsNames;
|
|
101
|
+
|
|
102
|
+
CKEDITOR.config.extraPlugins = 'toolbar';
|
|
103
|
+
|
|
104
|
+
CKEDITOR.on( 'instanceReady', function( evt ) {
|
|
105
|
+
var editor = evt.editor,
|
|
106
|
+
editorCurrent = editor.name == 'editorCurrent',
|
|
107
|
+
defaultToolbar = !( editor.config.toolbar || editor.config.toolbarGroups || editor.config.removeButtons ),
|
|
108
|
+
pre = CKEDITOR.document.getById( editor.name + 'Cfg' ),
|
|
109
|
+
output = '';
|
|
110
|
+
|
|
111
|
+
if ( editorCurrent ) {
|
|
112
|
+
// If default toolbar configuration has been modified, show "current toolbar" section.
|
|
113
|
+
if ( !defaultToolbar )
|
|
114
|
+
CKEDITOR.document.getById( 'currentToolbar' ).show();
|
|
115
|
+
else
|
|
116
|
+
return;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
if ( !buttonsNames )
|
|
120
|
+
buttonsNames = createButtonsNamesHash( editor.ui.items );
|
|
121
|
+
|
|
122
|
+
// Toolbar isn't set explicitly, so it was created automatically from toolbarGroups.
|
|
123
|
+
if ( !editor.config.toolbar ) {
|
|
124
|
+
output +=
|
|
125
|
+
'// Toolbar configuration generated automatically by the editor based on config.toolbarGroups.\n' +
|
|
126
|
+
dumpToolbarConfiguration( editor ) +
|
|
127
|
+
'\n\n' +
|
|
128
|
+
'// Toolbar groups configuration.\n' +
|
|
129
|
+
dumpToolbarConfiguration( editor, true )
|
|
130
|
+
}
|
|
131
|
+
// Toolbar groups doesn't count in this case - print only toolbar.
|
|
132
|
+
else {
|
|
133
|
+
output += '// Toolbar configuration.\n' +
|
|
134
|
+
dumpToolbarConfiguration( editor );
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
// Recreate to avoid old IE from loosing whitespaces on filling <pre> content.
|
|
138
|
+
var preOutput = pre.getOuterHtml().replace( /(?=<\/)/, output );
|
|
139
|
+
CKEDITOR.dom.element.createFromHtml( preOutput ).replace( pre );
|
|
140
|
+
} );
|
|
141
|
+
|
|
142
|
+
CKEDITOR.replace( 'editorCurrent', { height: 100 } );
|
|
143
|
+
CKEDITOR.replace( 'editorFull', {
|
|
144
|
+
// Reset toolbar settings, so full toolbar will be generated automatically.
|
|
145
|
+
toolbar: null,
|
|
146
|
+
toolbarGroups: null,
|
|
147
|
+
removeButtons: null,
|
|
148
|
+
height: 100
|
|
149
|
+
} );
|
|
150
|
+
|
|
151
|
+
function dumpToolbarConfiguration( editor, printGroups ) {
|
|
152
|
+
var output = [],
|
|
153
|
+
toolbar = editor.toolbar;
|
|
154
|
+
|
|
155
|
+
for ( var i = 0; i < toolbar.length; ++i ) {
|
|
156
|
+
var group = dumpToolbarGroup( toolbar[ i ], printGroups );
|
|
157
|
+
if ( group )
|
|
158
|
+
output.push( group );
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
return 'config.toolbar' + ( printGroups ? 'Groups' : '' ) + ' = [\n\t' + output.join( ',\n\t' ) + '\n];';
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
function dumpToolbarGroup( group, printGroups ) {
|
|
165
|
+
var output = [];
|
|
166
|
+
|
|
167
|
+
if ( typeof group == 'string' )
|
|
168
|
+
return '\'' + group + '\'';
|
|
169
|
+
if ( CKEDITOR.tools.isArray( group ) )
|
|
170
|
+
return dumpToolbarItems( group );
|
|
171
|
+
// Skip group when printing entire toolbar configuration and there are no items in this group.
|
|
172
|
+
if ( !printGroups && !group.items )
|
|
173
|
+
return;
|
|
174
|
+
|
|
175
|
+
if ( group.name )
|
|
176
|
+
output.push( 'name: \'' + group.name + '\'' );
|
|
177
|
+
|
|
178
|
+
if ( group.groups )
|
|
179
|
+
output.push( 'groups: ' + dumpToolbarItems( group.groups ) );
|
|
180
|
+
|
|
181
|
+
if ( !printGroups )
|
|
182
|
+
output.push( 'items: ' + dumpToolbarItems( group.items ) );
|
|
183
|
+
|
|
184
|
+
return '{ ' + output.join( ', ' ) + ' }';
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
function dumpToolbarItems( items ) {
|
|
188
|
+
if ( typeof items == 'string' )
|
|
189
|
+
return '\'' + items + '\'';
|
|
190
|
+
|
|
191
|
+
var names = [],
|
|
192
|
+
i, item;
|
|
193
|
+
|
|
194
|
+
for ( var i = 0; i < items.length; ++i ) {
|
|
195
|
+
item = items[ i ];
|
|
196
|
+
if ( typeof item == 'string' )
|
|
197
|
+
names.push( item );
|
|
198
|
+
else {
|
|
199
|
+
if ( item.type == CKEDITOR.UI_SEPARATOR )
|
|
200
|
+
names.push( '-' );
|
|
201
|
+
else
|
|
202
|
+
names.push( buttonsNames[ item.name ] );
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
return '[ \'' + names.join( '\', \'' ) + '\' ]';
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
// Creates { 'lowercased': 'LowerCased' } buttons names hash.
|
|
210
|
+
function createButtonsNamesHash( items ) {
|
|
211
|
+
var hash = {},
|
|
212
|
+
name;
|
|
213
|
+
|
|
214
|
+
for ( name in items ) {
|
|
215
|
+
hash[ items[ name ].name ] = name;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
return hash;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
})();
|
|
222
|
+
</script>
|
|
223
|
+
|
|
224
|
+
<div id="footer">
|
|
225
|
+
<hr>
|
|
226
|
+
<p>
|
|
227
|
+
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
|
|
228
|
+
</p>
|
|
229
|
+
<p id="copy">
|
|
230
|
+
Copyright © 2003-2016, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
|
|
231
|
+
Knabben. All rights reserved.
|
|
232
|
+
</p>
|
|
233
|
+
</div>
|
|
234
|
+
</body>
|
|
235
|
+
</html>
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<!--
|
|
3
|
+
Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
|
|
4
|
+
For licensing, see LICENSE.md or http://ckeditor.com/license
|
|
5
|
+
-->
|
|
6
|
+
<html>
|
|
7
|
+
<head>
|
|
8
|
+
<meta charset="utf-8">
|
|
9
|
+
<title>UI Color Picker — CKEditor Sample</title>
|
|
10
|
+
<script src="../../ckeditor.js"></script>
|
|
11
|
+
<link rel="stylesheet" href="sample.css">
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<h1 class="samples">
|
|
15
|
+
<a href="index.html">CKEditor Samples</a> » UI Color
|
|
16
|
+
</h1>
|
|
17
|
+
<div class="warning deprecated">
|
|
18
|
+
This sample is not maintained anymore. Check out its <a href="http://sdk.ckeditor.com/samples/uicolor.html">brand new version in CKEditor SDK</a>.
|
|
19
|
+
</div>
|
|
20
|
+
<div class="description">
|
|
21
|
+
<p>
|
|
22
|
+
This sample shows how to automatically replace <code><textarea></code> elements
|
|
23
|
+
with a CKEditor instance with an option to change the color of its user interface.<br>
|
|
24
|
+
<strong>Note:</strong>The UI skin color feature depends on the CKEditor skin
|
|
25
|
+
compatibility. The Moono and Kama skins are examples of skins that work with it.
|
|
26
|
+
</p>
|
|
27
|
+
</div>
|
|
28
|
+
<form action="sample_posteddata.php" method="post">
|
|
29
|
+
<p>
|
|
30
|
+
This editor instance has a UI color value defined in configuration to change the skin color,
|
|
31
|
+
To specify the color of the user interface, set the <code>uiColor</code> property:
|
|
32
|
+
</p>
|
|
33
|
+
<pre class="samples">
|
|
34
|
+
CKEDITOR.replace( '<em>textarea_id</em>', {
|
|
35
|
+
<strong>uiColor: '#14B8C4'</strong>
|
|
36
|
+
});</pre>
|
|
37
|
+
<p>
|
|
38
|
+
Note that <code><em>textarea_id</em></code> in the code above is the <code>id</code> attribute of
|
|
39
|
+
the <code><textarea></code> element to be replaced.
|
|
40
|
+
</p>
|
|
41
|
+
<p>
|
|
42
|
+
<textarea cols="80" id="editor1" name="editor1" rows="10"><p>This is some <strong>sample text</strong>. You are using <a href="http://ckeditor.com/">CKEditor</a>.</p></textarea>
|
|
43
|
+
<script>
|
|
44
|
+
|
|
45
|
+
// Replace the <textarea id="editor"> with an CKEditor
|
|
46
|
+
// instance, using default configurations.
|
|
47
|
+
CKEDITOR.replace( 'editor1', {
|
|
48
|
+
uiColor: '#14B8C4',
|
|
49
|
+
toolbar: [
|
|
50
|
+
[ 'Bold', 'Italic', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
|
|
51
|
+
[ 'FontSize', 'TextColor', 'BGColor' ]
|
|
52
|
+
]
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
</script>
|
|
56
|
+
</p>
|
|
57
|
+
<p>
|
|
58
|
+
<input type="submit" value="Submit">
|
|
59
|
+
</p>
|
|
60
|
+
</form>
|
|
61
|
+
<div id="footer">
|
|
62
|
+
<hr>
|
|
63
|
+
<p>
|
|
64
|
+
CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
|
|
65
|
+
</p>
|
|
66
|
+
<p id="copy">
|
|
67
|
+
Copyright © 2003-2016, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
|
|
68
|
+
Knabben. All rights reserved.
|
|
69
|
+
</p>
|
|
70
|
+
</div>
|
|
71
|
+
</body>
|
|
72
|
+
</html>
|