~ubuntu-branches/ubuntu/natty/fckeditor/natty-updates

« back to all changes in this revision

Viewing changes to editor/_source/internals/fckdocumentprocessor.js

  • Committer: Bazaar Package Importer
  • Author(s): Frank Habermann
  • Date: 2009-02-01 22:12:00 UTC
  • mfrom: (1.1.6 upstream) (3.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090201221200-74z035seclpp4vaq
Tags: 1:2.6.4-1
* new upstream release
  - integration with "WebSpellChecker"
  - in the table dialog it's possible to create header cells
  - table dialog allows switching between normal data cells or header cells
  - new language file for icelandic
  - fixed several javascript editor handling problems
* changed path of spellchecker to linux one instead of using windows one
* debian/control: Recommend aspell
* added config.php that load config from /etc/fckeditor
* changed compat and debhelper to version 7
* cleanup debian/rules
* convert debian/copyright to machine readable format

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 
 * Copyright (C) 2003-2008 Frederico Caldeira Knabben
 
3
 * Copyright (C) 2003-2009 Frederico Caldeira Knabben
4
4
 *
5
5
 * == BEGIN LICENSE ==
6
6
 *
27
27
FCKDocumentProcessor.AppendNew = function()
28
28
{
29
29
        var oNewItem = new Object() ;
30
 
        this._Items.AddItem( oNewItem ) ;
 
30
        this._Items.push( oNewItem ) ;
31
31
        return oNewItem ;
32
32
}
33
33
 
122
122
}
123
123
 
124
124
// EMBED and OBJECT tags.
125
 
FCKEmbedAndObjectProcessor = (function()
 
125
var FCKEmbedAndObjectProcessor = (function()
126
126
{
127
127
        var customProcessors = [] ;
128
128