code stringlengths 1 2.01M | repo_name stringlengths 3 62 | path stringlengths 1 267 | language stringclasses 231
values | license stringclasses 13
values | size int64 1 2.01M |
|---|---|---|---|---|---|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_samples/index.html | HTML | gpl3 | 5,543 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
html, body, h1, h2, h3, h4, h5, h6, div, span, blockquote, p, address, form, fieldset, img, ul, ol, dl, dt, dd, li, hr, table, td, th, strong, em, sup, sub, dfn, ins, de... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_samples/sample.css | CSS | gpl3 | 2,421 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_samples/ui_color.html | HTML | gpl3 | 4,720 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_samples/api_dialog.html | HTML | gpl3 | 6,907 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html xmlns="http://www.w3.org/1999/xhtml">
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/CHANGES.html | HTML | gpl3 | 166,815 |
<?php
/*
* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* \brief CKEditor class that can be used to create editor
* instances in PHP pages on server side.
* @see http://ckeditor.com
*
* Sample usage:
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/ckeditor_php5.php | PHP | gpl3 | 15,333 |
<?php
/*
* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/*! \mainpage CKEditor - PHP server side intergation
* \section intro_sec CKEditor
* Visit <a href="http://ckeditor.com">CKEditor web site</a> to find ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/ckeditor.php | PHP | gpl3 | 962 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
== BEGIN TEXT ONLY VERSION ==
Software License Agreement
==========================
CKEditor - The text editor for Internet - http://ckeditor.com
Copyright (c) 2003-2012, CKSource -... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/LICENSE.html | HTML | gpl3 | 70,729 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'button',
{
beforeInit : function( editor )
{
editor.ui.addHandler( CKEDITOR.UI_BUTTON, CKEDITOR.ui.button.handler );
}
});
/**
* ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/button/plugin.js | JavaScript | gpl3 | 7,612 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
function protectFormStyles( formElement )
{
if ( !formElement || formElement.type != CKEDITOR.NODE_ELEMENT || formElement.getName() != 'form' )
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/maximize/plugin.js | JavaScript | gpl3 | 11,442 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview Defines the {@link CKEDITOR.xml} class, which represents a
* loaded XML document.
*/
(function()
{
CKEDITOR.plugins.add( 'xml', {});
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/xml/plugin.js | JavaScript | gpl3 | 5,253 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'smiley', function( editor )
{
var config = editor.config,
lang = editor.lang.smiley,
images = config.smiley_images,
columns = config.s... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/smiley/dialogs/smiley.js | JavaScript | gpl3 | 6,028 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview The "sourcearea" plugin. It registers the "source" editing
* mode, which displays the raw data being edited in the editor.
*/
CKEDITOR.plu... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/sourcearea/plugin.js | JavaScript | gpl3 | 5,613 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/** @fileoverview The "dialogui" plugin. */
CKEDITOR.plugins.add( 'dialogui' );
(function()
{
var initPrivateObject = function( elementDefinition )
{
this... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/dialogui/plugin.js | JavaScript | gpl3 | 51,361 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
// Register a plugin named "sample".
CKEDITOR.plugins.add( 'keystrokes',
{
beforeInit : function( editor )
{
/**
* Controls keystrokes typing in this edito... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/keystrokes/plugin.js | JavaScript | gpl3 | 6,299 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Blockquote.
*/
(function()
{
function getState( editor, path )
{
var firstBlock = path.block || path.blockLimit;
if ( !firstBlock || fir... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/blockquote/plugin.js | JavaScript | gpl3 | 8,767 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Spell checker
*/
// Register a plugin named "wsc".
CKEDITOR.plugins.add( 'wsc',
{
requires : [ 'dialog' ],
init : function( editor )
{
var... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/wsc/plugin.js | JavaScript | gpl3 | 1,082 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'checkspell', function( editor )
{
var number = CKEDITOR.tools.getNextNumber(),
iframeId = 'cke_frame_' + number,
textareaId = 'cke_data_'... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/wsc/dialogs/wsc.js | JavaScript | gpl3 | 5,893 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/wsc/dialogs/ciframe.html | HTML | gpl3 | 1,120 |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<!--
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
-->
<html>
<head>
<title></title>
<meta http-equiv="Content-Type... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/wsc/dialogs/tmpFrameset.html | HTML | gpl3 | 1,935 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'contextmenu',
{
requires : [ 'menu' ],
// Make sure the base class (CKEDITOR.menu) is loaded before it (#3318).
onLoad : function()
{
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/contextmenu/plugin.js | JavaScript | gpl3 | 5,353 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'basicstyles',
{
requires : [ 'styles', 'button' ],
init : function( editor )
{
// All buttons use the same code to register. So, to a... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/basicstyles/plugin.js | JavaScript | gpl3 | 4,074 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview The "div" plugin. It wraps the selected block level elements with a 'div' element with specified styles and attributes.
*
*/
(function()
{... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/div/plugin.js | JavaScript | gpl3 | 2,944 |
/*
* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
/**
* Add to collection with DUP examination.
* @param {Object} collection
* @param {Object} element
* @param {Object} database
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/div/dialogs/div.js | JavaScript | gpl3 | 14,886 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'find',
{
init : function( editor )
{
var forms = CKEDITOR.plugins.find;
editor.ui.addButton( 'Find',
{
label : editor.lang.fi... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/find/plugin.js | JavaScript | gpl3 | 1,483 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
var isReplace;
function findEvaluator( node )
{
return node.type == CKEDITOR.NODE_TEXT && node.getLength() > 0 && ( !isReplace || !node.isRead... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/find/dialogs/find.js | JavaScript | gpl3 | 24,690 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'removeformat',
{
requires : [ 'selection' ],
init : function( editor )
{
editor.addCommand( 'removeFormat', CKEDITOR.plugins.removefo... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/removeformat/plugin.js | JavaScript | gpl3 | 6,147 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
CKEDITOR.plugins.add( 'enterkey',
{
requires : [ 'keystrokes', 'indent' ],
init : function( editor )
{
editor.addCommand( 'enter', {
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/enterkey/plugin.js | JavaScript | gpl3 | 12,826 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Insert and remove numbered and bulleted lists.
*/
(function()
{
var listNodeNames = { ol : 1, ul : 1 },
emptyTextRegex = /^[\n\r\t ]*$/;
va... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/list/plugin.js | JavaScript | gpl3 | 32,352 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file AutoGrow plugin
*/
(function(){
// Actual content height, figured out by appending check the last element's document position.
function contentHe... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/autogrow/plugin.js | JavaScript | gpl3 | 4,658 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview The "toolbar" plugin. Renders the default toolbar interface in
* the editor.
*/
(function()
{
var toolbox = function()
{
this.toolb... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/toolbar/plugin.js | JavaScript | gpl3 | 17,132 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
// Regex to scan for at the end of blocks, which are actually placeholders.
// Safari transforms the to \xa0. (#4172)
var tailNbspReg... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/htmldataprocessor/plugin.js | JavaScript | gpl3 | 18,781 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
var eventNameList = [ 'click', 'keydown', 'mousedown', 'keypress', 'mouseover', 'mouseout' ];
// Inline event callbacks assigned via innerHTML/oute... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/adobeair/plugin.js | JavaScript | gpl3 | 6,679 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
CKEDITOR.plugins.add( 'stylescombo',
{
requires : [ 'richcombo', 'styles' ],
init : function( editor )
{
var config = editor.config,
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/stylescombo/plugin.js | JavaScript | gpl3 | 5,515 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
var cellNodeRegex = /^(?:td|th)$/;
function getSelectedCells( selection )
{
var ranges = selection.getRanges();
var retval = [];
var dat... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/tabletools/plugin.js | JavaScript | gpl3 | 32,174 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'cellProperties', function( editor )
{
var langTable = editor.lang.table,
langCell = langTable.cell,
langCommon = editor.lang.common,
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/tabletools/dialogs/tableCell.js | JavaScript | gpl3 | 16,433 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file Forms Plugin
*/
CKEDITOR.plugins.add( 'forms',
{
init : function( editor )
{
var lang = editor.lang;
editor.addCss(
'form' +
'{'... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/forms/plugin.js | JavaScript | gpl3 | 7,438 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'textarea', function( editor )
{
return {
title : editor.lang.textarea.title,
minWidth : 350,
minHeight : 220,
onShow : function()
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/forms/dialogs/textarea.js | JavaScript | gpl3 | 3,527 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'textfield', function( editor )
{
var autoAttributes =
{
value : 1,
size : 1,
maxLength : 1
};
var acceptedTypes =
{
text : ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/forms/dialogs/textfield.js | JavaScript | gpl3 | 4,962 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'checkbox', function( editor )
{
return {
title : editor.lang.checkboxAndRadio.checkboxTitle,
minWidth : 350,
minHeight : 140,
onShow ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/forms/dialogs/checkbox.js | JavaScript | gpl3 | 4,267 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'hiddenfield', function( editor )
{
return {
title : editor.lang.hidden.title,
hiddenField : null,
minWidth : 350,
minHeight : 110,
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/forms/dialogs/hiddenfield.js | JavaScript | gpl3 | 2,811 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'form', function( editor )
{
var autoAttributes =
{
action : 1,
id : 1,
method : 1,
enctype : 1,
target : 1
};
return {
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/forms/dialogs/form.js | JavaScript | gpl3 | 4,016 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'select', function( editor )
{
// Add a new option to a SELECT object (combo or list).
function addOption( combo, optionText, optionValue, docum... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/forms/dialogs/select.js | JavaScript | gpl3 | 17,251 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'radio', function( editor )
{
return {
title : editor.lang.checkboxAndRadio.radioTitle,
minWidth : 350,
minHeight : 140,
onShow : func... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/forms/dialogs/radio.js | JavaScript | gpl3 | 3,596 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.dialog.add( 'button', function( editor )
{
function commitAttributes( element )
{
var val = this.getValue();
if ( val )
{
element.attributes[ t... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/forms/dialogs/button.js | JavaScript | gpl3 | 3,007 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview The "filebrowser" plugin that adds support for file uploads and
* browsing.
*
* When a file is uploaded or selected inside the... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/filebrowser/plugin.js | JavaScript | gpl3 | 17,560 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
var meta =
{
editorFocus : false,
modes : { wysiwyg:1, source:1 }
};
var blurCommand =
{
exec : function( editor )
{
edit... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/tab/plugin.js | JavaScript | gpl3 | 10,104 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'listblock',
{
requires : [ 'panel' ],
onLoad : function()
{
CKEDITOR.ui.panel.prototype.addListBlock = function( name, definition )
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/listblock/plugin.js | JavaScript | gpl3 | 6,772 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @file DOM iterator, which iterates over list items, lines and paragraphs.
*/
CKEDITOR.plugins.add( 'domiterator' );
(function()
{
/**
* @name CKED... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/domiterator/plugin.js | JavaScript | gpl3 | 12,003 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
/**
* @fileOverview The "placeholder" plugin.
*
*/
(function()
{
var placeholderReplaceRegex = /\[\[[^\]]+\]\]/g;
CKEDITOR.plugins.add( 'placeholder',
{... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/plugin.js | JavaScript | gpl3 | 4,308 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'cy',
{
placeholder :
{
title : 'Priodweddau\'r Daliwr Geiriau',
toolbar : 'Creu Daliwr Geiriau',
text : 'Test... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/cy.js | JavaScript | gpl3 | 461 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'tr',
{
placeholder :
{
title : 'Yer tutucu özellikleri',
toolbar : 'Yer tutucu oluşturun',
text : 'Yer tutucu... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/tr.js | JavaScript | gpl3 | 430 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'nb',
{
placeholder :
{
title : 'Egenskaper for plassholder',
toolbar : 'Opprett plassholder',
text : 'Tekst f... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/nb.js | JavaScript | gpl3 | 437 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'fr',
{
placeholder :
{
title : 'Propriétés de l\'Espace réservé',
toolbar : 'Créer l\'Espace réservé',
text :... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/fr.js | JavaScript | gpl3 | 478 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'fa',
{
placeholder :
{
title : 'ویژگیهای محل نگهداری',
toolbar : 'ایجاد یک محل نگهداری',
text : 'متن محل نگهد... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/fa.js | JavaScript | gpl3 | 513 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'eo',
{
placeholder :
{
title : 'Atributoj de la rezervita spaco',
toolbar : 'Krei la rezervitan spacon',
text ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/eo.js | JavaScript | gpl3 | 468 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'uk',
{
placeholder :
{
title : 'Налаштування Заповнювача',
toolbar : 'Створити Заповнювач',
text : 'Текст Зап... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/uk.js | JavaScript | gpl3 | 538 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'he',
{
placeholder :
{
title : 'מאפייני שומר מקום',
toolbar : 'צור שומר מקום',
text : 'תוכן שומר המקום',
e... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/he.js | JavaScript | gpl3 | 477 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'de',
{
placeholder :
{
title : 'Platzhalter Einstellungen',
toolbar : 'Platzhalter erstellen',
text : 'Platzh... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/de.js | JavaScript | gpl3 | 445 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'no',
{
placeholder :
{
title : 'Egenskaper for plassholder',
toolbar : 'Opprett plassholder',
text : 'Tekst f... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/no.js | JavaScript | gpl3 | 437 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'el',
{
placeholder :
{
title : 'Ιδιότητες Υποκατάστατου Κειμένου',
toolbar : 'Δημιουργία Υποκατάσταστου Κειμένου'... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/el.js | JavaScript | gpl3 | 634 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'vi',
{
placeholder :
{
title : 'Thuộc tính đặt chỗ',
toolbar : 'Tạo đặt chỗ',
text : 'Văn bản đặt chỗ',
ed... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/vi.js | JavaScript | gpl3 | 457 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'it',
{
placeholder :
{
title : 'Proprietà segnaposto',
toolbar : 'Crea segnaposto',
text : 'Testo segnaposto'... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/it.js | JavaScript | gpl3 | 428 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'nl',
{
placeholder :
{
title : 'Eigenschappen placeholder',
toolbar : 'Placeholder aanmaken',
text : 'Placeho... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/nl.js | JavaScript | gpl3 | 435 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'da',
{
placeholder :
{
title : 'Egenskaber for pladsholder',
toolbar : 'Opret pladsholder',
text : 'Tekst til... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/da.js | JavaScript | gpl3 | 433 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'et',
{
placeholder :
{
title : 'Kohahoidja omadused',
toolbar : 'Kohahoidja loomine',
text : 'Kohahoidja teks... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/et.js | JavaScript | gpl3 | 423 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'pl',
{
placeholder :
{
title : 'Właściwości wypełniacza',
toolbar : 'Utwórz wypełniacz',
text : 'Tekst wypełn... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/pl.js | JavaScript | gpl3 | 442 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'cs',
{
placeholder :
{
title : 'Vlastnosti vyhrazeného prostoru',
toolbar : 'Vytvořit vyhrazený prostor',
text... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/cs.js | JavaScript | gpl3 | 459 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'hr',
{
placeholder :
{
title : 'Svojstva rezerviranog mjesta',
toolbar : 'Napravi rezervirano mjesto',
text :... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/hr.js | JavaScript | gpl3 | 463 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'fi',
{
placeholder :
{
title : 'Paikkamerkin ominaisuudet',
toolbar : 'Luo paikkamerkki',
text : 'Paikkamerki... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/fi.js | JavaScript | gpl3 | 441 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'ug',
{
placeholder :
{
title : 'ئورۇن بەلگە خاسلىقى',
toolbar : 'ئورۇن بەلگە قۇر',
text : 'ئورۇن بەلگە تېكىست... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/ug.js | JavaScript | gpl3 | 529 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'zh-cn',
{
placeholder :
{
title : '占位符属性',
toolbar : '创建占位符',
text : '占位符文字',
edit : '编辑占位符',
textMiss... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/zh-cn.js | JavaScript | gpl3 | 411 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'bg',
{
placeholder :
{
title : 'Настройки на контейнера',
toolbar : 'Нов контейнер',
text : 'Текст за контейн... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/bg.js | JavaScript | gpl3 | 526 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'placeholder', 'en',
{
placeholder :
{
title : 'Placeholder Properties',
toolbar : 'Create Placeholder',
text : 'Placeholder ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/lang/en.js | JavaScript | gpl3 | 424 |
/*
* Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
function placeholderDialog( editor, isEdit )
{
var lang = editor.lang.placeholder,
generalLabel = editor.lang.common.generalTab;
r... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/placeholder/dialogs/placeholder.js | JavaScript | gpl3 | 1,704 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'floatpanel',
{
requires : [ 'panel' ]
});
(function()
{
var panels = {};
var isShowing = false;
function getPanel( editor, doc, p... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/floatpanel/plugin.js | JavaScript | gpl3 | 14,660 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.add( 'panel',
{
beforeInit : function( editor )
{
editor.ui.addHandler( CKEDITOR.UI_PANEL, CKEDITOR.ui.panel.handler );
}
});
/**
* Pan... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/panel/plugin.js | JavaScript | gpl3 | 9,711 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
// Base HTML entities.
var htmlbase = 'nbsp,gt,lt,amp';
var entities =
// Latin-1 Entities
'quot,iexcl,cent,pound,curren,yen,brvbar,sect,um... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/entities/plugin.js | JavaScript | gpl3 | 8,499 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
CKEDITOR.plugins.add( 'iframe',
{
requires : [ 'dialog', 'fakeobjects' ],
init : function( editor )
{
var pluginName = 'iframe',
la... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/iframe/plugin.js | JavaScript | gpl3 | 2,143 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
// Map 'true' and 'false' values to match W3C's specifications
// http://www.w3.org/TR/REC-html40/present/frames.html#h-16.5
var checkboxValues =
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/iframe/dialogs/iframe.js | JavaScript | gpl3 | 6,454 |
/*
Copyright (c) 2003-2012, 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 : { cs:1, cy:1, de:1, en:1... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/plugin.js | JavaScript | gpl3 | 3,368 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'cy',
{
euro: 'Arwydd yr Ewro',
lsquo: 'Dyfynnod chwith unigol',
rsquo: 'Dyfynnod dde unigol',
ldquo: 'Dyfynnod chwith... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/cy.js | JavaScript | gpl3 | 5,352 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'tr',
{
euro: 'Euro işareti',
lsquo: 'Sol tek tırnak işareti',
rsquo: 'Sağ tek tırnak işareti',
ldquo: 'Sol çift tırna... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/tr.js | JavaScript | gpl3 | 4,966 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'nb',
{
euro: 'Eurosymbol',
lsquo: 'Venstre enkelt anførselstegn',
rsquo: 'Høyre enkelt anførselstegn',
ldquo: 'Venstr... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/nb.js | JavaScript | gpl3 | 3,920 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'fr',
{
euro: 'Symbole Euro',
lsquo: 'Guillemet simple ouvrant',
rsquo: 'Guillemet simple fermant',
ldquo: 'Guillemet ... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/fr.js | JavaScript | gpl3 | 4,338 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'fa',
{
euro: 'نشان یورو',
lsquo: 'علامت نقل قول تکی چپ',
rsquo: 'علامت نقل قول تکی راست',
ldquo: 'علامت دوتایی نقل قو... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/fa.js | JavaScript | gpl3 | 6,350 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'eo',
{
euro: 'Eŭrosigno',
lsquo: 'Supra 6-citilo',
rsquo: 'Supra 9-citilo',
ldquo: 'Supra 66-citilo',
rdquo: 'Supra... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/eo.js | JavaScript | gpl3 | 4,555 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'de',
{
euro: 'Euro Zeichen',
lsquo: 'Hochkomma links',
rsquo: 'Hochkomma rechts',
ldquo: 'Anführungszeichen links',
... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/de.js | JavaScript | gpl3 | 5,207 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'no',
{
euro: 'Eurosymbol',
lsquo: 'Venstre enkelt anførselstegn',
rsquo: 'Høyre enkelt anførselstegn',
ldquo: 'Venstr... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/no.js | JavaScript | gpl3 | 3,920 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'it',
{
euro: 'Simbolo Euro',
lsquo: 'Virgoletta singola sinistra',
rsquo: 'Virgoletta singola destra',
ldquo: 'Virgol... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/it.js | JavaScript | gpl3 | 5,505 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'nl',
{
euro: 'Euro-teken',
lsquo: 'Linker enkel aanhalingsteken',
rsquo: 'Rechter enkel aanhalingsteken',
ldquo: 'Lin... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/nl.js | JavaScript | gpl3 | 5,211 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'et',
{
euro: 'Euromärk',
lsquo: 'Alustav ühekordne jutumärk',
rsquo: 'Lõpetav ühekordne jutumärk',
ldquo: 'Alustav ka... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/et.js | JavaScript | gpl3 | 5,945 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'cs',
{
euro: 'Znak eura',
lsquo: 'Počáteční uvozovka jednoduchá',
rsquo: 'Koncová uvozovka jednoduchá',
ldquo: 'Počát... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/cs.js | JavaScript | gpl3 | 5,457 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'hr',
{
euro: 'Euro znak',
lsquo: 'Lijevi jednostruki navodnik',
rsquo: 'Desni jednostruki navodnik',
ldquo: 'Lijevi d... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/hr.js | JavaScript | gpl3 | 6,048 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'fi',
{
euro: 'Euron merkki',
lsquo: 'Vasen yksittäinen lainausmerkki',
rsquo: 'Oikea yksittäinen lainausmerkki',
ldqu... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/fi.js | JavaScript | gpl3 | 6,116 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'ug',
{
euro: 'ياۋرو بەلگىسى',
lsquo: 'يالاڭ پەش سول',
rsquo: 'يالاڭ پەش ئوڭ',
ldquo: 'قوش پەش سول',
rdquo: 'قوش پەش... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/ug.js | JavaScript | gpl3 | 6,302 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'zh-cn',
{
euro: '欧元符号',
lsquo: '左单引号',
rsquo: '右单引号',
ldquo: '左双引号',
rdquo: '右双引号',
ndash: '短划线',
mdash: '破折号',... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/zh-cn.js | JavaScript | gpl3 | 4,871 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
CKEDITOR.plugins.setLang( 'specialchar', 'en',
{
euro: 'Euro sign',
lsquo: 'Left single quotation mark',
rsquo: 'Right single quotation mark',
ldquo: 'Left dou... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/lang/en.js | JavaScript | gpl3 | 5,033 |
/*
Copyright (c) 2003-2012, 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,... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/specialchar/dialogs/specialchar.js | JavaScript | gpl3 | 9,816 |
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
(function()
{
CKEDITOR.plugins.liststyle =
{
requires : [ 'dialog' ],
init : function( editor )
{
editor.addCommand( 'numberedListStyle', new CKEDITOR... | 10-ptud-v1 | trunk/ 10-ptud-v1/admin/includes/ckeditor/_source/plugins/liststyle/plugin.js | JavaScript | gpl3 | 1,822 |