code
stringlengths
1
2.08M
language
stringclasses
1 value
/* * A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined * in FIPS 180-1 * Version 2.2 Copyright Paul Johnston 2000 - 2009. * Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet * Distributed under the BSD License * See http://pajhome.org.uk/crypt/md5 for details. */ /* * Conf...
JavaScript
function authentify() { var password = document.getElementById("password").value; password = b64_sha1(password); document.getElementById("password").value = password; document.forms[0].submit(); } function enterKey(e) { var key; if(window.event) key = window.event.keyCode; //IE else ...
JavaScript
function updateList() { db.transaction(function(tx) { tx.executeSql("SELECT * FROM RssList", [], readSuccess, errorCB); }, errorCB); } function readSuccess(tx, result) { var updatenum = 0; var rowsLen = result.rows.length $.each(result.rows, function(index) { var row = result.rows.item(index); $....
JavaScript
/* * JQuery URL Parser plugin * Developed and maintanined by Mark Perkins, mark@allmarkedup.com * Source repository: https://github.com/allmarkedup/jQuery-URL-Parser * Licensed under an MIT-style license. See https://github.com/allmarkedup/jQuery-URL-Parser/blob/master/LICENSE for details. */ ;(function($, undef...
JavaScript
/** * Plugin: jquery.zRSSFeed * * Version: 1.1.6 (c) Copyright 2010-2012, Zazar Ltd * * Description: jQuery plugin for display of RSS feeds via Google Feed API * (Based on original plugin jGFeed by jQuery HowTo. Filesize function by Cary * Dunn.) * * History: 1.1.6 - Added sort options 1.1.5 - Targ...
JavaScript
var db; var menuOpen = false; var menuDiv = ""; var theme; function onDeviceReady() { menuDiv = document.querySelector(".menu"); theme = window.localStorage.getItem("theme"); $('.jqm-page').trigger('refresh', theme); document.addEventListener("menubutton", onMenuKeyDown, false); try { var DbName ...
JavaScript
function element_theme_refresh(element, oldTheme, newTheme) { /* Update the page's new data theme. */ if ($(element).attr('data-theme')) { $(element).attr('data-theme', newTheme); } if ($(element).attr('class')) { /* Theme classes end in "-[a-z]$", so match that */ var classPattern = new RegExp('-' + o...
JavaScript
/* * jQuery Mobile Framework 1.1.0 db342b1f315c282692791aa870455901fdb46a55 * http://jquerymobile.com * * Copyright 2011 (c) jQuery Project * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * */ (function ( root, doc, factory ) { if ( typeof define === "function" && define.amd ) { ...
JavaScript
if(!window.plugins) { window.plugins = {}; } window.plugins.PGLoadingDialog= { show: function(options, callback) { window.PhoneGap.exec(callback,null,'PGLoadingDialog','showLoading', [options]); }, hide: function(callback) { window.PhoneGap.exec(callback, null, 'PGLoadingDialog', ...
JavaScript
/*$(function(){ var $li =$("#skin li"); $li.click(function(){ switchSkin( this.id ); }); if(window.localStorage){ var cookie_skin = localStorage.getItem("nowskin"); }else{ ...
JavaScript
//collapse page navs after use $(function(){ $('body').delegate('.content-secondary .ui-collapsible-content', 'click', function(){ $(this).trigger("collapse"); }); }); // Turn off AJAX for local file browsing if ( location.protocol.substr(0,4) === 'file' || location.protocol.substr(0,11) === '*-extension' ...
JavaScript
/* jFeed : jQuery feed parser plugin * Copyright (C) 2007 Jean-François Hovinne - http://www.hovinne.com/ * Dual licensed under the MIT (MIT-license.txt) * and GPL (GPL-license.txt) licenses. */ jQuery.getFeed = function(options) { options = jQuery.extend({ url : null, data : null, cache : true, success...
JavaScript
function SetCookie(name, value) { var argv = SetCookie.arguments; var argc = SetCookie.arguments.length; var expires = (2 < argc) ? argv[2] : null; var path = (3 < argc) ? argv[3] : null; var domain = (4 < argc) ? argv[4] : null; var secure = (5 < argc) ? argv[5] : false; document.cookie = name + "=" + es...
JavaScript
function Coin(id, points, marker) { this.id = id; this.points = points; this.marker = marker; } function Question(id, points, marker, question, option1, option2, option3, rightAnswer, associatedBonuses) { this.id = id; this.points = points; this.marker = marker; this.question = question; this.option1 = option1;...
JavaScript
var map; $(document).ready(function() { /** * Map initialization */ geocoder = new google.maps.Geocoder(); var latlng = new google.maps.LatLng(43.380126326682316, -8.392455154418936); var myOptions = { zoom: 12, center: latlng, mapTypeId: google.maps.MapTypeId.ROADMAP, mapTypeControl: true, navigation...
JavaScript
var map; var game; var selectedItem; var infowindow; var geocoder; var selectedCity; var selectedLatitude; var selectedLongitude; var selectedOnClickAction; /** * Paths to item images */ var coinImage = '${COIN_IMG}'; var questionImage = '${QUESTION_IMG}'; var bonusImage = '${BONUS_IMG}'; var createURL = '${CREA...
JavaScript
var map; var game; var image1Id = 2130837508; var image2Id = 2130837508; var image3Id = 2130837514; /** * Extending the Game Object * */ function Player(login, points, imageId, numberOfItems, marker) { this.login = login; this.points = points; this.imageId = imageId; this.numberOfItems = numberOfItems; this...
JavaScript
var T={"All":"Все", "AlreadyExists":"Уже существует", "Append":"Добавить", "Battery":"Аккумулятор", "Cancel":"Отмена", "CanvasNotSupported":"Ваш браузер не поддерживает тега canvas", "Charging":"Зарядка", "Close":"Закрыть", "CmdNote":"Внимание к типу команд <code>top</code>. Они могут длиться долгое время. ;-)", "Cold"...
JavaScript
var fm_uploader; function fm_uploadFiles(_dir, _input) { files = _input.files; _input.files = null; if (files != null && files.length > 0) { fm_uploader = new fm_Uploader(_dir, files); setTimeout("fm_uploader.goBaby();", 10); } } function fm_Uploader(_dir, _fileList) { this.MAX_SLICE = 2048 * 1024; this.MIN...
JavaScript
var contacts_rawDetailsSet = new Array(); var contacts_detailsPopup; var contacts_confirmedData; /* * Container, which creates and holds all the values from the raw contact. */ function contacts_RawDetails(_json) { // alert(debugObject(_json.availGroups)); this.editables = new Array(); this.simpleValue = function...
JavaScript
/* * Commandline functions */ var cmd_sentTime; var cmd_tab; var cmd_content; var cmd_output; var cmd_command; var cmd_history = new Array(); var cmd_historyIndex = -1; function cmd_onKeyPress(event) { var code = event.keyCode; switch (code) { case 9: break; case 13: cmd_send(); break; case 38: cmd_disp...
JavaScript
var fm_listingTable; var fm_sentTime; var fm_pendingListings = 0; // Fm var fm_content; var fm_tab; var fm_popupOverwrite; var fm_popupNoSlicing; var fm_popupFileSelect; var fm_list; var fm_legend; var fm_bThrash; var fm_bUp; var fm_bInvert; var fm_bNew; var fm_currentList; var fm_requiredPath; var ic_folder = new Imag...
JavaScript
/* * background tasks */ var tasks_content; var tasks_tab; var tasks_tasks; function tasks_init() { tasks_content = document.getElementById("tasks_content"); tasks_tab = main_createTab("tasks_content", _T("Tasks")); main_contents.push(tasks_content); tasks_tasks = new Array(); } function tasks_close(_index) { ...
JavaScript
var T={"All":"Všechny", "AlreadyExists":"Již existuje", "Append":"Připojit", "Battery":"Baterie", "Cancel":"Storno", "CanvasNotSupported":"Váš prohlížeč nepodporuje tag canvas", "Charging":"Nabíjení", "Close":"Zavřít", "CmdNote":"Pozor na příkazy typu <code>top</code>. Může trvat dlouho než skončí ;-)", "Cold":"Chladná...
JavaScript
var main_MAXW = 800; var main_MAXH = 600; var main_content; var main_tabsdiv; var contentWidth; var notActivated = true; var autorefresh; var loadingMsg; var main_toolbar; var main_statusLine; var main_tabs = new Array(); var main_contents = new Array(); var sizeUnits = new Array("B", "KB", "MB", "GB", "TB", "PB"); // ...
JavaScript
/* * Manipulate with popup windows */ var popup_windows = new Array(); var popup_positions = new Array(); var popup_mouseStartX; var popup_mouseStartY; var popup_windowStartX; var popup_windowStartY; var popup_dragged; var popup_handle; var popup_canResize; var popup_resizing; var popup_moving; var popup_dialogActive...
JavaScript
var logcat_apps; var logcat_sentTime; var logcat_knownProcesses = []; logcat_knownProcesses.all = true; var logcat_selected = []; logcat_selected.all = true; var logcat_lock = false; var logcat_paused = false; var logcat_lastRow; var logcat_content; var logcat_sFilter; var logcat_tab; var logcat_table; var logcat_bPaus...
JavaScript
var info_sentTime; var info_content; var info_tab; var info_model; var info_cpuUsage; var info_ramUsage; var info_intUsage; var info_extUsage; var info_battInfo; var info_battDesc; function info_init() { info_tab = main_createTab("info_content",_T("Info")); info_content = document.getElementById("info_content"); ma...
JavaScript
var login_password = "implicit"; var login_input; var login_lock; var login_warning; var login_animationInterval; var login_popupId=""; function login_show() { if (login_warning) { main_statusLine.removeChild(login_warning); clearInterval(login_animationInterval); login_warning=null; } if (login_password == "...
JavaScript
var contacts_sent; var contacts_dirty = true; var contacts_content; var contacts_tab; var contacts_bNew; var contacts_bUpdate; var contacts_accounts; var contacts_newGroup; var contacts_NEWPOPUP="contacts_newPopup"; function contacts_init() { contacts_content = document.getElementById("contacts_content"); contacts_t...
JavaScript
var fm_deleter; var fm_filesToDelete; function fm_deleteSelected() { fm_filesToDelete = new Array(); for (item in fm_currentList.ls) { if (fm_currentList.ls[item].selected) { fm_filesToDelete.push(fm_currentList.ls[item].path); } } var content = document.createElement("div"); content.textContent = _T("Item...
JavaScript
var T={"All":"All", "AlreadyExists":"Already exists", "Append":"Append", "Battery":"Battery", "Cancel":"Cancel", "CanvasNotSupported":"Your browser does not support the HTML5 canvas tag.", "Charging":"Charging", "Close":"Close", "CmdNote":"Beware of neverending commands such as the <code>top</code> is. They can take a ...
JavaScript
/* * RC4, Adler32, Base64 and UTF-8 implementations. Simple and strong ;-) */ //RC4 Cipher algorithm function RC4(_key) { // Swap function this.swapS = function(_i, _j) { temp = this.s[_i]; this.s[_i] = this.s[_j]; this.s[_j] = temp; } // Encrypting/decrypting this.proceed = function(_data) { var result ...
JavaScript
var fm_mimes=new Array(); fm_mimes['mp3']="ic_audio.png"; fm_mimes['wav']="ic_audio.png";
JavaScript
/** * o------------------------------------------------------------------------------o * | This file is part of the RGraph package - you can learn more at: | * | | * | http://www.rgraph....
JavaScript
/** * o------------------------------------------------------------------------------o * | This file is part of the RGraph package - you can learn more at: | * | | * | http://www.rgraph....
JavaScript
// -------------- function myDrawPie( title , labels , values){ var pie = new RGraph.Pie('pie', values); pie.Set('chart.colors', ['#009933','#ff3300','#3333FF']); pie.Set('chart.key', labels); pie.Set('chart.key.position', 'gutter'); pie.Set('chart.gutter', 20); pie.Set('chart.linewidth', 2); ...
JavaScript
/** * o------------------------------------------------------------------------------o * | This file is part of the RGraph package - you can learn more at: | * | | * | http://www.rgraph....
JavaScript
/** * Creates a new level control. * @constructor * @param {IoMap} iomap the IO map controller. * @param {Array.<string>} levels the levels to create switchers for. */ function LevelControl(iomap, levels) { var that = this; this.iomap_ = iomap; this.el_ = this.initDom_(levels); google.maps.event.addList...
JavaScript
// Copyright 2011 Google /** * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in wri...
JavaScript
/** * Creates a new Floor. * @constructor * @param {google.maps.Map=} opt_map */ function Floor(opt_map) { /** * @type Array.<google.maps.MVCObject> */ this.overlays_ = []; /** * @type boolean */ this.shown_ = true; if (opt_map) { this.setMap(opt_map); } } /** * @param {google.maps.M...
JavaScript
/** * @license * * Copyright 2011 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable l...
JavaScript
var Android = function() { this._callbacks = [], this._id = 0, this._call = function(method, params) { this._id += 1; var request = JSON.stringify({'id': this._id, 'method': method, 'params': params}); var response = _rpc_wrapper.call(request); return eval("(" + response + ")"); }, th...
JavaScript
var deviceInfo = function() { document.getElementById("platform").innerHTML = device.platform; document.getElementById("version").innerHTML = device.version; document.getElementById("uuid").innerHTML = device.uuid; document.getElementById("name").innerHTML = device.name; document.getElementById("wid...
JavaScript
/* * PhoneGap is available under *either* the terms of the modified BSD license *or* the * MIT License (2008). See http://opensource.org/licenses/alphabetical for full text. * * Copyright (c) 2005-2010, Nitobi Software Inc. * Copyright (c) 2010-2011, IBM Corporation */ if (typeof PhoneGap === "undefined") { /**...
JavaScript
/* * artDialog 3.0.6 * Date: 2010-05-31 * http://code.google.com/p/artdialog/ * (c) 2009-2010 TangBin, http://www.planeArt.cn * * This is licensed under the GNU LGPL, version 2.1 or later. * For details, see: http://creativecommons.org/licenses/LGPL/2.1/ */ //-------------“art” 微型DOM引擎模块 (function...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript
/* * FCKeditor - The text editor for Internet - http://www.fckeditor.net * Copyright (C) 2003-2008 Frederico Caldeira Knabben * * == BEGIN LICENSE == * * Licensed under the terms of any of the following licenses at your * choice: * * - GNU General Public License Version 2 or later (the "GPL") * ...
JavaScript