typo 5.0.3.98.1 → 5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES-5.1 +54 -0
- data/app/apis/meta_weblog_service.rb +7 -6
- data/app/controllers/accounts_controller.rb +2 -1
- data/app/controllers/admin/content_controller.rb +45 -3
- data/app/controllers/admin/pages_controller.rb +1 -1
- data/app/controllers/admin/textfilters_controller.rb +4 -4
- data/app/controllers/admin/users_controller.rb +14 -2
- data/app/controllers/application.rb +4 -1
- data/app/controllers/articles_controller.rb +1 -3
- data/app/controllers/backend_controller.rb +2 -0
- data/app/controllers/comments_controller.rb +6 -0
- data/app/helpers/admin/base_helper.rb +24 -26
- data/app/helpers/admin/feedback_helper.rb +0 -20
- data/app/helpers/application_helper.rb +1 -0
- data/app/models/article.rb +2 -0
- data/app/models/blog.rb +1 -0
- data/app/models/blog_sweeper.rb +8 -9
- data/app/models/page_cache.rb +1 -0
- data/app/models/tag.rb +2 -2
- data/app/models/user.rb +5 -1
- data/app/views/admin/blacklist/destroy.html.erb +1 -1
- data/app/views/admin/categories/destroy.html.erb +1 -1
- data/app/views/admin/comments/destroy.html.erb +1 -1
- data/app/views/admin/content/_articles.html.erb +4 -4
- data/app/views/admin/content/_attachment.html.erb +6 -7
- data/app/views/admin/content/_drafts.html.erb +6 -0
- data/app/views/admin/content/_form.html.erb +47 -34
- data/app/views/admin/content/destroy.html.erb +1 -1
- data/app/views/admin/content/edit.html.erb +1 -1
- data/app/views/admin/content/index.html.erb +1 -6
- data/app/views/admin/content/new.html.erb +1 -1
- data/app/views/admin/pages/_form.html.erb +4 -3
- data/app/views/admin/pages/_pages.html.erb +3 -3
- data/app/views/admin/pages/destroy.html.erb +1 -1
- data/app/views/admin/resources/destroy.html.erb +1 -1
- data/app/views/admin/settings/index.html.erb +10 -0
- data/app/views/admin/shared/_edit.html.erb +1 -6
- data/app/views/admin/textfilters/destroy.html.erb +3 -0
- data/app/views/admin/textfilters/edit.html.erb +3 -1
- data/app/views/admin/textfilters/index.html.erb +1 -1
- data/app/views/admin/textfilters/new.html.erb +3 -1
- data/app/views/admin/trackbacks/show.html.erb +1 -1
- data/app/views/admin/users/destroy.html.erb +1 -1
- data/app/views/admin/users/edit.html.erb +1 -5
- data/app/views/admin/users/index.html.erb +1 -1
- data/app/views/articles/_comment_failed.html.erb +3 -0
- data/config/initializers/access_rules.rb +3 -3
- data/db/migrate/070_add_users_to_non_admins.rb +17 -0
- data/installer/rails_installer_defaults.yml +1 -1
- data/lib/tasks/release.rake +3 -3
- data/lib/typo_version.rb +1 -1
- data/public/images/admin/cancel.png +0 -0
- data/public/images/admin/checked.png +0 -0
- data/public/images/admin/delete.png +0 -0
- data/public/images/admin/edit.png +0 -0
- data/public/images/admin/show.png +0 -0
- data/public/javascripts/controls.js +2 -0
- data/public/javascripts/dragdrop.js +2 -0
- data/public/javascripts/effects.js +6 -4
- data/public/javascripts/fckeditor/editor/_source/classes/fckcontextmenu.js +13 -8
- data/public/javascripts/fckeditor/editor/_source/classes/fckdataprocessor.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange.js +189 -79
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_gecko.js +4 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_ie.js +16 -15
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrangeiterator.js +30 -9
- data/public/javascripts/fckeditor/editor/_source/classes/fckeditingarea.js +108 -90
- data/public/javascripts/fckeditor/editor/_source/classes/fckelementpath.js +22 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fckenterkey.js +76 -38
- data/public/javascripts/fckeditor/editor/_source/classes/fckevents.js +7 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckhtmliterator.js +142 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckicon.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckiecleanup.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fckimagepreloader.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckkeystrokehandler.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenublock.js +8 -5
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenublockpanel.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenuitem.js +6 -5
- data/public/javascripts/fckeditor/editor/_source/classes/fckpanel.js +85 -38
- data/public/javascripts/fckeditor/editor/_source/classes/fckplugin.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckspecialcombo.js +7 -8
- data/public/javascripts/fckeditor/editor/_source/classes/fckstyle.js +180 -17
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbar.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbutton.js +9 -4
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js +5 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js +15 -4
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js +5 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js +13 -13
- data/public/javascripts/fckeditor/editor/_source/classes/fckw3crange.js +17 -13
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml_gecko.js +28 -13
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml_ie.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fck_othercommands.js +75 -19
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js +64 -8
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js +3 -1
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckfitwindow.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckindentcommands.js +5 -3
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckjustifycommands.js +6 -6
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcklistcommands.js +4 -4
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcknamedcommand.js +3 -1
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js +3 -1
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckshowblocks.js +7 -9
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js +4 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js +4 -2
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckstylecommand.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktablecommand.js +4 -4
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js +28 -10
- data/public/javascripts/fckeditor/editor/_source/fckconstants.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/fckeditorapi.js +21 -13
- data/public/javascripts/fckeditor/editor/_source/fckjscoreextensions.js +5 -5
- data/public/javascripts/fckeditor/editor/_source/fckscriptloader.js +4 -4
- data/public/javascripts/fckeditor/editor/_source/internals/fck.js +148 -38
- data/public/javascripts/fckeditor/editor/_source/internals/fck_contextmenu.js +4 -4
- data/public/javascripts/fckeditor/editor/_source/internals/fck_gecko.js +45 -47
- data/public/javascripts/fckeditor/editor/_source/internals/fck_ie.js +50 -17
- data/public/javascripts/fckeditor/editor/_source/internals/fckbrowserinfo.js +4 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckcodeformatter.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckcommands.js +28 -28
- data/public/javascripts/fckeditor/editor/_source/internals/fckconfig.js +12 -13
- data/public/javascripts/fckeditor/editor/_source/internals/fckdebug.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckdialog.js +211 -15
- data/public/javascripts/fckeditor/editor/_source/internals/fckdocumentprocessor.js +63 -39
- data/public/javascripts/fckeditor/editor/_source/internals/fckdomtools.js +177 -37
- data/public/javascripts/fckeditor/editor/_source/internals/fcklanguagemanager.js +2 -1
- data/public/javascripts/fckeditor/editor/_source/internals/fcklisthandler.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fcklistslib.js +5 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckplugins.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckregexlib.js +5 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection.js +3 -3
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection_gecko.js +36 -27
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection_ie.js +91 -17
- data/public/javascripts/fckeditor/editor/_source/internals/fckstyles.js +22 -13
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler.js +15 -15
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_gecko.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_ie.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbaritems.js +1 -1
- data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbarset.js +32 -6
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools.js +181 -22
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools_gecko.js +19 -7
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools_ie.js +8 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckundo.js +8 -5
- data/public/javascripts/fckeditor/editor/_source/internals/fckurlparams.js +2 -2
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml.js +116 -61
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_gecko.js +6 -10
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_ie.js +51 -56
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtmlentities.js +1 -1
- data/public/javascripts/fckeditor/editor/css/fck_editorarea.css +3 -2
- data/public/javascripts/fckeditor/editor/css/fck_internal.css +19 -2
- data/public/javascripts/fckeditor/editor/css/fck_showtableborders_gecko.css +8 -1
- data/public/javascripts/fckeditor/editor/css/images/fck_plugin.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.css +8 -1
- data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.js +199 -26
- data/public/javascripts/fckeditor/editor/dialog/fck_about.html +20 -14
- data/public/javascripts/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_anchor.html +15 -10
- data/public/javascripts/fckeditor/editor/dialog/fck_button.html +9 -14
- data/public/javascripts/fckeditor/editor/dialog/fck_checkbox.html +8 -13
- data/public/javascripts/fckeditor/editor/dialog/fck_colorselector.html +4 -3
- data/public/javascripts/fckeditor/editor/dialog/fck_docprops.html +6 -6
- data/public/javascripts/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html +1 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_flash.html +9 -3
- data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash.js +18 -11
- data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html +7 -3
- data/public/javascripts/fckeditor/editor/dialog/fck_form.html +7 -4
- data/public/javascripts/fckeditor/editor/dialog/fck_hiddenfield.html +12 -15
- data/public/javascripts/fckeditor/editor/dialog/fck_image.html +9 -3
- data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image.js +24 -12
- data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image_preview.html +24 -18
- data/public/javascripts/fckeditor/editor/dialog/fck_link.html +1 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_link/fck_link.js +41 -20
- data/public/javascripts/fckeditor/editor/dialog/fck_listprop.html +8 -4
- data/public/javascripts/fckeditor/editor/dialog/fck_paste.html +53 -54
- data/public/javascripts/fckeditor/editor/dialog/fck_radiobutton.html +8 -13
- data/public/javascripts/fckeditor/editor/dialog/fck_replace.html +157 -79
- data/public/javascripts/fckeditor/editor/dialog/fck_select.html +14 -11
- data/public/javascripts/fckeditor/editor/dialog/fck_select/fck_select.js +2 -2
- data/public/javascripts/fckeditor/editor/dialog/fck_smiley.html +9 -4
- data/public/javascripts/fckeditor/editor/dialog/fck_source.html +5 -2
- data/public/javascripts/fckeditor/editor/dialog/fck_specialchar.html +9 -6
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages.html +2 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm +3 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php +5 -2
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl +2 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js +0 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css +1 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_table.html +10 -5
- data/public/javascripts/fckeditor/editor/dialog/fck_tablecell.html +8 -6
- data/public/javascripts/fckeditor/editor/dialog/fck_template.html +1 -1
- data/public/javascripts/fckeditor/editor/dialog/fck_textarea.html +10 -11
- data/public/javascripts/fckeditor/editor/dialog/fck_textfield.html +10 -14
- data/public/javascripts/fckeditor/editor/dtd/fck_dtd_test.html +0 -2
- data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10strict.js +2 -2
- data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10transitional.js +3 -3
- data/public/javascripts/fckeditor/editor/fckdebug.html +1 -1
- data/public/javascripts/fckeditor/editor/fckdialog.html +660 -213
- data/public/javascripts/fckeditor/editor/fckeditor.html +66 -16
- data/public/javascripts/fckeditor/editor/fckeditor.original.html +70 -16
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.css +2 -2
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.html +37 -2
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmactualfolder.html +33 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html +1 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmfolders.html +2 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourceslist.html +3 -2
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourcetype.html +1 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmupload.html +2 -1
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/common.js +34 -2
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/fckxml.js +3 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/connector.aspx +5 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/upload.aspx +5 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/basexml.pl +1 -1
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/commands.pl +50 -4
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/connector.cgi +2 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/io.pl +14 -4
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload.cgi +2 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload_fck.pl +23 -4
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/util.pl +1 -1
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/config.py +43 -32
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/connector.py +16 -16
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckcommands.py +26 -9
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckconnector.py +2 -2
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckoutput.py +40 -9
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckutil.py +20 -21
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/htaccess.txt +2 -2
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/upload.py +13 -13
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/wsgi.py +3 -3
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/zope.py +4 -5
- data/public/javascripts/fckeditor/editor/filemanager/connectors/test.html +34 -1
- data/public/javascripts/fckeditor/editor/filemanager/connectors/uploadtest.html +47 -4
- data/public/javascripts/fckeditor/editor/js/fckadobeair.js +176 -0
- data/public/javascripts/fckeditor/editor/js/fckeditorcode_gecko.js +77 -77
- data/public/javascripts/fckeditor/editor/js/fckeditorcode_ie.js +74 -74
- data/public/javascripts/fckeditor/editor/lang/_translationstatus.txt +55 -54
- data/public/javascripts/fckeditor/editor/lang/af.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ar.js +16 -17
- data/public/javascripts/fckeditor/editor/lang/bg.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/bn.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/bs.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ca.js +27 -28
- data/public/javascripts/fckeditor/editor/lang/cs.js +18 -19
- data/public/javascripts/fckeditor/editor/lang/da.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/de.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/el.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/en-au.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/en-ca.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/en-uk.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/en.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/eo.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/es.js +34 -35
- data/public/javascripts/fckeditor/editor/lang/et.js +32 -33
- data/public/javascripts/fckeditor/editor/lang/eu.js +32 -33
- data/public/javascripts/fckeditor/editor/lang/fa.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/fi.js +15 -16
- data/public/javascripts/fckeditor/editor/lang/fo.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/fr-ca.js +515 -0
- data/public/javascripts/fckeditor/editor/lang/fr.js +5 -6
- data/public/javascripts/fckeditor/editor/lang/gl.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/he.js +15 -16
- data/public/javascripts/fckeditor/editor/lang/hi.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/hr.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/hu.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/it.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ja.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/km.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ko.js +25 -26
- data/public/javascripts/fckeditor/editor/lang/lt.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/lv.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/mn.js +199 -200
- data/public/javascripts/fckeditor/editor/lang/ms.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/nb.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/nl.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/no.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/pl.js +51 -52
- data/public/javascripts/fckeditor/editor/lang/pt-br.js +16 -17
- data/public/javascripts/fckeditor/editor/lang/pt.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ro.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/ru.js +31 -32
- data/public/javascripts/fckeditor/editor/lang/sk.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/sl.js +39 -40
- data/public/javascripts/fckeditor/editor/lang/sr-latn.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/sr.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/sv.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/th.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/tr.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/uk.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/vi.js +1 -2
- data/public/javascripts/fckeditor/editor/lang/zh-cn.js +2 -3
- data/public/javascripts/fckeditor/editor/lang/zh.js +1 -2
- data/public/javascripts/fckeditor/editor/plugins/autogrow/fckplugin.js +9 -2
- data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.config.js +1 -1
- data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.html +1 -1
- data/public/javascripts/fckeditor/editor/plugins/bbcode/fckplugin.js +2 -2
- data/public/javascripts/fckeditor/editor/plugins/dragresizetable/fckplugin.js +35 -11
- data/public/javascripts/fckeditor/editor/plugins/placeholder/fck_placeholder.html +10 -5
- data/public/javascripts/fckeditor/editor/plugins/placeholder/fckplugin.js +3 -3
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/de.js +2 -2
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/en.js +2 -2
- data/public/javascripts/fckeditor/editor/{filemanager/connectors/cfm/upload.cfm → plugins/placeholder/lang/es.js} +9 -13
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/fr.js +1 -1
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/it.js +1 -1
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/pl.js +2 -2
- data/public/javascripts/fckeditor/editor/plugins/simplecommands/fckplugin.js +1 -1
- data/public/javascripts/fckeditor/editor/plugins/tablecommands/fckplugin.js +1 -1
- data/public/javascripts/fckeditor/editor/skins/_fckviewstrips.html +1 -1
- data/public/javascripts/fckeditor/editor/skins/default/fck_dialog.css +271 -8
- data/public/javascripts/fckeditor/editor/skins/default/fck_editor.css +2 -2
- data/public/javascripts/fckeditor/editor/skins/office2003/fck_dialog.css +270 -8
- data/public/javascripts/fckeditor/editor/skins/office2003/fck_editor.css +2 -2
- data/public/javascripts/fckeditor/editor/skins/silver/fck_dialog.css +270 -11
- data/public/javascripts/fckeditor/editor/skins/silver/fck_editor.css +2 -2
- data/public/javascripts/fckeditor/fckconfig.js +58 -55
- data/public/javascripts/fckeditor/fckeditor.js +99 -8
- data/public/javascripts/fckeditor/fckeditor.py +2 -4
- data/public/javascripts/fckeditor/fckpackager.xml +12 -12
- data/public/javascripts/fckeditor/fckstyles.xml +2 -5
- data/public/javascripts/fckeditor/fcktemplates.xml +1 -1
- data/public/javascripts/fckeditor/license.txt +1 -2
- data/public/javascripts/prototype.js +46 -101
- data/public/javascripts/scriptaculous.js +28 -17
- data/public/stylesheets/administration.css +5 -1
- data/themes/dirtylicious/about.markdown +3 -0
- data/themes/dirtylicious/images/body.jpg +0 -0
- data/themes/dirtylicious/images/container.jpg +0 -0
- data/themes/dirtylicious/images/gravatar.gif +0 -0
- data/themes/dirtylicious/images/header.jpg +0 -0
- data/themes/dirtylicious/images/li.gif +0 -0
- data/themes/dirtylicious/images/main.gif +0 -0
- data/themes/dirtylicious/images/nav.gif +0 -0
- data/themes/dirtylicious/images/quote.gif +0 -0
- data/themes/dirtylicious/images/spinner.gif +0 -0
- data/themes/dirtylicious/layouts/default.html.erb +60 -0
- data/themes/dirtylicious/preview.png +0 -0
- data/themes/dirtylicious/stylesheets/application.css +327 -0
- data/themes/dirtylicious/views/articles/_article.html.erb +33 -0
- data/themes/dirtylicious/views/articles/_comment.html.erb +14 -0
- data/themes/dirtylicious/views/articles/_comment_form.html.erb +37 -0
- data/themes/dirtylicious/views/articles/_comment_list.html.erb +7 -0
- data/themes/dirtylicious/views/articles/_trackback.html.erb +9 -0
- data/themes/dirtylicious/views/articles/comment_preview.html.erb +10 -0
- data/themes/dirtylicious/views/articles/index.html.erb +5 -0
- data/themes/dirtylicious/views/articles/read.html.erb +42 -0
- data/themes/dirtylicious/views/shared/_search.html.erb +16 -0
- data/themes/standard_issue/about.markdown +5 -0
- data/themes/standard_issue/images/img01.gif +0 -0
- data/themes/standard_issue/images/img02.gif +0 -0
- data/themes/standard_issue/images/img03.gif +0 -0
- data/themes/standard_issue/images/img04.jpg +0 -0
- data/themes/standard_issue/images/img05.gif +0 -0
- data/themes/standard_issue/images/img06.gif +0 -0
- data/themes/standard_issue/images/img07.gif +0 -0
- data/themes/standard_issue/images/img08.gif +0 -0
- data/themes/standard_issue/images/img09.gif +0 -0
- data/themes/standard_issue/images/img10.gif +0 -0
- data/themes/standard_issue/images/spacer.gif +0 -0
- data/themes/standard_issue/images/spinner.gif +0 -0
- data/themes/standard_issue/layouts/default.html.erb +59 -0
- data/themes/standard_issue/preview.png +0 -0
- data/themes/standard_issue/stylesheets/application.css +461 -0
- data/themes/standard_issue/views/articles/_article.html.erb +37 -0
- data/themes/standard_issue/views/articles/_comment.html.erb +12 -0
- data/themes/standard_issue/views/articles/_comment_form.html.erb +48 -0
- data/themes/standard_issue/views/articles/_comment_list.html.erb +7 -0
- data/themes/standard_issue/views/articles/_trackback.html.erb +9 -0
- data/themes/standard_issue/views/articles/comment_preview.html.erb +10 -0
- data/themes/standard_issue/views/articles/index.html.erb +5 -0
- data/themes/standard_issue/views/articles/read.html.erb +42 -0
- data/themes/standard_issue/views/shared/_search.html.erb +17 -0
- data/themes/standard_issue/views/theme/static_view_test.html.erb +1 -0
- data/themes/typographic/images/accept.gif +0 -0
- data/themes/typographic/images/accept50.gif +0 -0
- data/themes/typographic/images/bg_white.gif +0 -0
- data/themes/typographic/images/bg_wrapper.gif +0 -0
- data/themes/typographic/images/bullet_bottom.gif +0 -0
- data/themes/typographic/images/bullet_right.gif +0 -0
- data/themes/typographic/images/email_open.gif +0 -0
- data/themes/typographic/images/email_open50.gif +0 -0
- data/themes/typographic/images/meta.gif +0 -0
- data/themes/typographic/images/page_edit.gif +0 -0
- data/themes/typographic/images/page_edit50.gif +0 -0
- data/themes/typographic/images/spinner.gif +0 -0
- data/themes/typographic/images/tag.gif +0 -0
- data/themes/typographic/images/user.gif +0 -0
- data/themes/typographic/images/user50.gif +0 -0
- data/themes/typographic/images/world_link.gif +0 -0
- data/themes/typographic/images/world_link50.gif +0 -0
- data/themes/typographic/layouts/default.html.erb +5 -2
- data/themes/typographic/stylesheets/ie6.css +86 -0
- data/themes/typographic/views/articles/_article.html.erb +2 -2
- data/vendor/plugins/fckeditor/README +0 -7
- data/vendor/plugins/fckeditor/app/helpers/fckeditor_helper.rb +1 -3
- data/vendor/plugins/fckeditor/lib/fckeditor_version.rb +2 -2
- data/vendor/plugins/fckeditor/tasks/fckeditor_tasks.rake +1 -1
- data/vendor/plugins/fckeditor/test/fckeditor_test.rb +8 -0
- metadata +98 -66
- data/CHANGES-5.0.4 +0 -33
- data/SIDEBARS +0 -39
- data/app/views/admin/content/_quick_post.html.erb +0 -20
- data/db/schema.rb +0 -224
- data/public/.DS_Store +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/basexml.asp +0 -62
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/class_upload.asp +0 -353
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/commands.asp +0 -198
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/config.asp +0 -128
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/connector.asp +0 -88
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/io.asp +0 -222
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/upload.asp +0 -61
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/util.asp +0 -55
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/ImageObject.cfc +0 -273
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_connector.cfm +0 -315
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_upload.cfm +0 -296
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_basexml.cfm +0 -68
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_commands.cfm +0 -225
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_connector.cfm +0 -89
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_io.cfm +0 -288
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_upload.cfm +0 -68
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_util.cfm +0 -132
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/config.cfm +0 -183
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/connector.cfm +0 -31
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/image.cfc +0 -1325
- data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/config.lasso +0 -65
- data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/connector.lasso +0 -257
- data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/upload.lasso +0 -157
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/basexml.php +0 -93
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/commands.php +0 -245
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/config.php +0 -140
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/connector.php +0 -87
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/io.php +0 -272
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/phpcompat.php +0 -17
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/upload.php +0 -59
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/util.php +0 -185
- data/public/javascripts/fckeditor/fckeditor.afp +0 -161
- data/public/javascripts/fckeditor/fckeditor.asp +0 -235
- data/public/javascripts/fckeditor/fckeditor.cfc +0 -273
- data/public/javascripts/fckeditor/fckeditor.cfm +0 -210
- data/public/javascripts/fckeditor/fckeditor.lasso +0 -112
- data/test/mocks/themes/typographic/.DS_Store +0 -0
- data/themes/typographic/.DS_Store +0 -0
- data/vendor/plugins/audioscrobbler_sidebar/MAINTAINERS +0 -26
- data/vendor/plugins/audioscrobbler_sidebar/MIT-LICENSE +0 -21
- data/vendor/plugins/audioscrobbler_sidebar/README +0 -27
- data/vendor/plugins/audioscrobbler_sidebar/Rakefile +0 -22
- data/vendor/plugins/audioscrobbler_sidebar/init.rb +0 -5
- data/vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler.rb +0 -54
- data/vendor/plugins/audioscrobbler_sidebar/lib/audioscrobbler_sidebar.rb +0 -13
- data/vendor/plugins/audioscrobbler_sidebar/test/audioscrobbler_sidebar_test.rb +0 -8
- data/vendor/plugins/audioscrobbler_sidebar/views/content.rhtml +0 -10
@@ -1,7 +1,7 @@
|
|
1
1
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
2
2
|
<!--
|
3
3
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
4
|
-
* Copyright (C) 2003-
|
4
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
5
5
|
*
|
6
6
|
* == BEGIN LICENSE ==
|
7
7
|
*
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
2
2
|
<!--
|
3
3
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
4
|
-
* Copyright (C) 2003-
|
4
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
5
5
|
*
|
6
6
|
* == BEGIN LICENSE ==
|
7
7
|
*
|
@@ -24,6 +24,7 @@
|
|
24
24
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
25
25
|
<head>
|
26
26
|
<title>File Upload</title>
|
27
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
27
28
|
<link href="browser.css" type="text/css" rel="stylesheet" />
|
28
29
|
<script type="text/javascript" src="js/common.js"></script>
|
29
30
|
<script type="text/javascript">
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
* Copyright (C) 2003-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -22,6 +22,38 @@
|
|
22
22
|
* File Browser dialog window.
|
23
23
|
*/
|
24
24
|
|
25
|
+
// Automatically detect the correct document.domain (#1919).
|
26
|
+
(function()
|
27
|
+
{
|
28
|
+
var d = document.domain ;
|
29
|
+
|
30
|
+
while ( true )
|
31
|
+
{
|
32
|
+
// Test if we can access a parent property.
|
33
|
+
try
|
34
|
+
{
|
35
|
+
var test = window.top.opener.document.domain ;
|
36
|
+
break ;
|
37
|
+
}
|
38
|
+
catch( e ) {}
|
39
|
+
|
40
|
+
// Remove a domain part: www.mytest.example.com => mytest.example.com => example.com ...
|
41
|
+
d = d.replace( /.*?(?:\.|$)/, '' ) ;
|
42
|
+
|
43
|
+
if ( d.length == 0 )
|
44
|
+
break ; // It was not able to detect the domain.
|
45
|
+
|
46
|
+
try
|
47
|
+
{
|
48
|
+
document.domain = d ;
|
49
|
+
}
|
50
|
+
catch (e)
|
51
|
+
{
|
52
|
+
break ;
|
53
|
+
}
|
54
|
+
}
|
55
|
+
})() ;
|
56
|
+
|
25
57
|
function AddSelectOption( selectElement, optionText, optionValue )
|
26
58
|
{
|
27
59
|
var oOption = document.createElement("OPTION") ;
|
@@ -52,4 +84,4 @@ StringBuilder.prototype.Append = function( value )
|
|
52
84
|
StringBuilder.prototype.ToString = function()
|
53
85
|
{
|
54
86
|
return this._Strings.join( '' ) ;
|
55
|
-
}
|
87
|
+
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*
|
2
2
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
* Copyright (C) 2003-
|
3
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
*
|
5
5
|
* == BEGIN LICENSE ==
|
6
6
|
*
|
@@ -31,8 +31,8 @@ var FCKXml = function()
|
|
31
31
|
FCKXml.prototype.GetHttpRequest = function()
|
32
32
|
{
|
33
33
|
// Gecko / IE7
|
34
|
-
|
35
|
-
|
34
|
+
try { return new XMLHttpRequest(); }
|
35
|
+
catch(e) {}
|
36
36
|
|
37
37
|
// IE6
|
38
38
|
try { return new ActiveXObject( 'Msxml2.XMLHTTP' ) ; }
|
@@ -1,7 +1,8 @@
|
|
1
|
-
<%@ Page
|
1
|
+
<%@ Page Language="c#" Trace="false" Inherits="FredCK.FCKeditorV2.FileBrowser.Connector" AutoEventWireup="false" %>
|
2
|
+
<%@ Register Src="config.ascx" TagName="Config" TagPrefix="FCKeditor" %>
|
2
3
|
<%--
|
3
4
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
4
|
-
* Copyright (C) 2003-
|
5
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
5
6
|
*
|
6
7
|
* == BEGIN LICENSE ==
|
7
8
|
*
|
@@ -27,4 +28,5 @@
|
|
27
28
|
*
|
28
29
|
* To download the FCKeditor.Net package, go to our official web site:
|
29
30
|
* http://www.fckeditor.net
|
30
|
-
--%>
|
31
|
+
--%>
|
32
|
+
<FCKeditor:Config id="Config" runat="server"></FCKeditor:Config>
|
@@ -1,7 +1,8 @@
|
|
1
|
-
<%@ Page
|
1
|
+
<%@ Page Language="c#" Trace="false" Inherits="FredCK.FCKeditorV2.FileBrowser.Uploader" AutoEventWireup="false" %>
|
2
|
+
<%@ Register Src="config.ascx" TagName="Config" TagPrefix="FCKeditor" %>
|
2
3
|
<%--
|
3
4
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
4
|
-
* Copyright (C) 2003-
|
5
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
5
6
|
*
|
6
7
|
* == BEGIN LICENSE ==
|
7
8
|
*
|
@@ -27,4 +28,5 @@
|
|
27
28
|
*
|
28
29
|
* To download the FCKeditor.Net package, go to our official web site:
|
29
30
|
* http://www.fckeditor.net
|
30
|
-
--%>
|
31
|
+
--%>
|
32
|
+
<FCKeditor:Config id="Config" runat="server"></FCKeditor:Config>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#####
|
2
2
|
# FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
# Copyright (C) 2003-
|
3
|
+
# Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
#
|
5
5
|
# == BEGIN LICENSE ==
|
6
6
|
#
|
@@ -91,6 +91,7 @@ sub CreateFolder
|
|
91
91
|
|
92
92
|
if($FORM{'NewFolderName'} ne "") {
|
93
93
|
$sNewFolderName = $FORM{'NewFolderName'};
|
94
|
+
$sNewFolderName =~ s/\.|\\|\/|\||\:|\?|\*|\"|<|>|[[:cntrl:]]/_/g;
|
94
95
|
# Map the virtual path to the local server path of the current folder.
|
95
96
|
$sServerDir = &ServerMapFolder($resourceType, $currentFolder);
|
96
97
|
if(-w $sServerDir) {
|
@@ -128,6 +129,7 @@ eval("use File::Copy;");
|
|
128
129
|
|
129
130
|
# Get the uploaded file name.
|
130
131
|
$sFileName = $new_fname;
|
132
|
+
$sFileName =~ s/\\|\/|\||\:|\?|\*|\"|<|>|[[:cntrl:]]/_/g;
|
131
133
|
$sOriginalFileName = $sFileName;
|
132
134
|
|
133
135
|
$iCounter = 0;
|
@@ -140,7 +142,16 @@ eval("use File::Copy;");
|
|
140
142
|
$sErrorNumber = '201';
|
141
143
|
} else {
|
142
144
|
copy("$img_dir/$new_fname","$sFilePath");
|
143
|
-
|
145
|
+
if (defined $CHMOD_ON_UPLOAD) {
|
146
|
+
if ($CHMOD_ON_UPLOAD) {
|
147
|
+
umask(000);
|
148
|
+
chmod($CHMOD_ON_UPLOAD,$sFilePath);
|
149
|
+
}
|
150
|
+
}
|
151
|
+
else {
|
152
|
+
umask(000);
|
153
|
+
chmod(0777,$sFilePath);
|
154
|
+
}
|
144
155
|
unlink("$img_dir/$new_fname");
|
145
156
|
last;
|
146
157
|
}
|
@@ -158,8 +169,43 @@ sub SendUploadResults
|
|
158
169
|
|
159
170
|
local($sErrorNumber, $sFileUrl, $sFileName, $customMsg) = @_;
|
160
171
|
|
161
|
-
print
|
162
|
-
|
172
|
+
print <<EOF;
|
173
|
+
Content-type: text/html
|
174
|
+
|
175
|
+
<script type="text/javascript">
|
176
|
+
// Automatically detect the correct document.domain (#1919).
|
177
|
+
(function()
|
178
|
+
{
|
179
|
+
var d = document.domain ;
|
180
|
+
|
181
|
+
while ( true )
|
182
|
+
{
|
183
|
+
// Test if we can access a parent property.
|
184
|
+
try
|
185
|
+
{
|
186
|
+
var test = window.top.opener.document.domain ;
|
187
|
+
break ;
|
188
|
+
}
|
189
|
+
catch( e ) {}
|
190
|
+
|
191
|
+
// Remove a domain part: www.mytest.example.com => mytest.example.com => example.com ...
|
192
|
+
d = d.replace( /.*?(?:\\.|\$)/, '' ) ;
|
193
|
+
|
194
|
+
if ( d.length == 0 )
|
195
|
+
break ; // It was not able to detect the domain.
|
196
|
+
|
197
|
+
try
|
198
|
+
{
|
199
|
+
document.domain = d ;
|
200
|
+
}
|
201
|
+
catch (e)
|
202
|
+
{
|
203
|
+
break ;
|
204
|
+
}
|
205
|
+
}
|
206
|
+
})() ;
|
207
|
+
|
208
|
+
EOF
|
163
209
|
print 'window.parent.OnUploadCompleted(' . $sErrorNumber . ',"' . JS_cnv($sFileUrl) . '","' . JS_cnv($sFileName) . '","' . JS_cnv($customMsg) . '") ;';
|
164
210
|
print '</script>';
|
165
211
|
exit ;
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
#####
|
4
4
|
# FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
5
|
-
# Copyright (C) 2003-
|
5
|
+
# Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
6
6
|
#
|
7
7
|
# == BEGIN LICENSE ==
|
8
8
|
#
|
@@ -101,7 +101,7 @@ sub DoResponse
|
|
101
101
|
}
|
102
102
|
|
103
103
|
# Check for invalid folder paths (..)
|
104
|
-
if ( $sCurrentFolder =~
|
104
|
+
if ( $sCurrentFolder =~ /(?:\.\.|\\)/ ) {
|
105
105
|
SendError( 102, "" ) ;
|
106
106
|
}
|
107
107
|
|
@@ -134,4 +134,3 @@ _HTML_HEAD_
|
|
134
134
|
|
135
135
|
exit ;
|
136
136
|
}
|
137
|
-
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#####
|
2
2
|
# FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
# Copyright (C) 2003-
|
3
|
+
# Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
#
|
5
5
|
# == BEGIN LICENSE ==
|
6
6
|
#
|
@@ -87,9 +87,19 @@ sub CreateServerFolder
|
|
87
87
|
}
|
88
88
|
}
|
89
89
|
if(!(-e $folderPath)) {
|
90
|
-
|
91
|
-
|
92
|
-
|
90
|
+
if (defined $CHMOD_ON_FOLDER_CREATE && !$CHMOD_ON_FOLDER_CREATE) {
|
91
|
+
mkdir("$folderPath");
|
92
|
+
}
|
93
|
+
else {
|
94
|
+
umask(000);
|
95
|
+
if (defined $CHMOD_ON_FOLDER_CREATE) {
|
96
|
+
mkdir("$folderPath",$CHMOD_ON_FOLDER_CREATE);
|
97
|
+
}
|
98
|
+
else {
|
99
|
+
mkdir("$folderPath",0777);
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
93
103
|
return(0);
|
94
104
|
} else {
|
95
105
|
return(1);
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
#####
|
4
4
|
# FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
5
|
-
# Copyright (C) 2003-
|
5
|
+
# Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
6
6
|
#
|
7
7
|
# == BEGIN LICENSE ==
|
8
8
|
#
|
@@ -104,7 +104,7 @@ sub DoResponse
|
|
104
104
|
}
|
105
105
|
|
106
106
|
# Check for invalid folder paths (..)
|
107
|
-
if ( $sCurrentFolder =~
|
107
|
+
if ( $sCurrentFolder =~ /(?:\.\.|\\)/ ) {
|
108
108
|
SendError( 102, "" ) ;
|
109
109
|
}
|
110
110
|
|
@@ -115,4 +115,3 @@ sub DoResponse
|
|
115
115
|
}
|
116
116
|
|
117
117
|
}
|
118
|
-
|
@@ -1,6 +1,6 @@
|
|
1
1
|
#####
|
2
2
|
# FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
3
|
-
# Copyright (C) 2003-
|
3
|
+
# Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
4
4
|
#
|
5
5
|
# == BEGIN LICENSE ==
|
6
6
|
#
|
@@ -28,6 +28,16 @@ $img_dir = './temp/';
|
|
28
28
|
# File size max(unit KB)
|
29
29
|
$MAX_CONTENT_SIZE = 30000;
|
30
30
|
|
31
|
+
# After file is uploaded, sometimes it is required to change its permissions
|
32
|
+
# so that it was possible to access it at the later time.
|
33
|
+
# If possible, it is recommended to set more restrictive permissions, like 0755.
|
34
|
+
# Set to 0 to disable this feature.
|
35
|
+
$CHMOD_ON_UPLOAD = 0777;
|
36
|
+
|
37
|
+
# See comments above.
|
38
|
+
# Used when creating folders that does not exist.
|
39
|
+
$CHMOD_ON_FOLDER_CREATE = 0755;
|
40
|
+
|
31
41
|
# Filelock (1=use,0=not use)
|
32
42
|
$PM{'flock'} = '1';
|
33
43
|
|
@@ -124,9 +134,18 @@ eval("use File::Path;");
|
|
124
134
|
|
125
135
|
my ($FORM) = @_;
|
126
136
|
|
127
|
-
|
128
|
-
|
129
|
-
|
137
|
+
if (defined $CHMOD_ON_FOLDER_CREATE && !$CHMOD_ON_FOLDER_CREATE) {
|
138
|
+
mkdir("$img_dir");
|
139
|
+
}
|
140
|
+
else {
|
141
|
+
umask(000);
|
142
|
+
if (defined $CHMOD_ON_FOLDER_CREATE) {
|
143
|
+
mkdir("$img_dir",$CHMOD_ON_FOLDER_CREATE);
|
144
|
+
}
|
145
|
+
else {
|
146
|
+
mkdir("$img_dir",0777);
|
147
|
+
}
|
148
|
+
}
|
130
149
|
|
131
150
|
undef $img_data_exists;
|
132
151
|
undef @NEWFNAMES;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
"""
|
3
3
|
* FCKeditor - The text editor for Internet - http://www.fckeditor.net
|
4
|
-
* Copyright (C) 2003-
|
4
|
+
* Copyright (C) 2003-2008 Frederico Caldeira Knabben
|
5
5
|
*
|
6
6
|
* == BEGIN LICENSE ==
|
7
7
|
*
|
@@ -19,51 +19,62 @@
|
|
19
19
|
*
|
20
20
|
* == END LICENSE ==
|
21
21
|
*
|
22
|
-
* Configuration file for the File Manager Connector for Python
|
22
|
+
* Configuration file for the File Manager Connector for Python
|
23
23
|
"""
|
24
24
|
|
25
|
-
# INSTALLATION NOTE: You must set up your server
|
25
|
+
# INSTALLATION NOTE: You must set up your server environment accordingly to run
|
26
26
|
# python scripts. This connector requires Python 2.4 or greater.
|
27
|
-
#
|
28
|
-
# Supported operation modes:
|
29
|
-
# * WSGI (recommended): You'll need apache + mod_python + modpython_gateway
|
27
|
+
#
|
28
|
+
# Supported operation modes:
|
29
|
+
# * WSGI (recommended): You'll need apache + mod_python + modpython_gateway
|
30
30
|
# or any web server capable of the WSGI python standard
|
31
|
-
# * Plain Old CGI: Any server capable of running
|
31
|
+
# * Plain Old CGI: Any server capable of running standard python scripts
|
32
32
|
# (although mod_python is recommended for performance)
|
33
33
|
# This was the previous connector version operation mode
|
34
34
|
#
|
35
|
-
# If you're using Apache web server, replace the htaccess.txt to to .htaccess,
|
35
|
+
# If you're using Apache web server, replace the htaccess.txt to to .htaccess,
|
36
36
|
# and set the proper options and paths.
|
37
37
|
# For WSGI and mod_python, you may need to download modpython_gateway from:
|
38
|
-
# http://projects.amor.org/misc/svn/modpython_gateway.py and copy it in this
|
38
|
+
# http://projects.amor.org/misc/svn/modpython_gateway.py and copy it in this
|
39
39
|
# directory.
|
40
40
|
|
41
|
-
|
42
|
-
# SECURITY: You must
|
43
|
-
# WARNING: don't just set "ConfigIsEnabled = True", you must be sure that only
|
41
|
+
|
42
|
+
# SECURITY: You must explicitly enable this "connector". (Set it to "True").
|
43
|
+
# WARNING: don't just set "ConfigIsEnabled = True", you must be sure that only
|
44
44
|
# authenticated users can access this file or use some kind of session checking.
|
45
45
|
Enabled = False
|
46
46
|
|
47
47
|
# Path to user files relative to the document root.
|
48
|
-
UserFilesPath = '/userfiles/'
|
48
|
+
UserFilesPath = '/userfiles/'
|
49
49
|
|
50
50
|
# Fill the following value it you prefer to specify the absolute path for the
|
51
|
-
# user files directory.
|
51
|
+
# user files directory. Useful if you are using a virtual directory, symbolic
|
52
52
|
# link or alias. Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'.
|
53
53
|
# Attention: The above 'UserFilesPath' must point to the same directory.
|
54
54
|
# WARNING: GetRootPath may not work in virtual or mod_python configurations, and
|
55
55
|
# may not be thread safe. Use this configuration parameter instead.
|
56
|
-
UserFilesAbsolutePath = ''
|
56
|
+
UserFilesAbsolutePath = ''
|
57
57
|
|
58
|
-
# Due to security issues with Apache modules, it is
|
58
|
+
# Due to security issues with Apache modules, it is recommended to leave the
|
59
59
|
# following setting enabled.
|
60
|
-
ForceSingleExtension = True
|
60
|
+
ForceSingleExtension = True
|
61
61
|
|
62
62
|
# What the user can do with this connector
|
63
|
-
ConfigAllowedCommands = [ 'QuickUpload', 'FileUpload', 'GetFolders', 'GetFoldersAndFiles', 'CreateFolder' ]
|
63
|
+
ConfigAllowedCommands = [ 'QuickUpload', 'FileUpload', 'GetFolders', 'GetFoldersAndFiles', 'CreateFolder' ]
|
64
64
|
|
65
65
|
# Allowed Resource Types
|
66
|
-
ConfigAllowedTypes = ['File', 'Image', 'Flash', 'Media']
|
66
|
+
ConfigAllowedTypes = ['File', 'Image', 'Flash', 'Media']
|
67
|
+
|
68
|
+
# After file is uploaded, sometimes it is required to change its permissions
|
69
|
+
# so that it was possible to access it at the later time.
|
70
|
+
# If possible, it is recommended to set more restrictive permissions, like 0755.
|
71
|
+
# Set to 0 to disable this feature.
|
72
|
+
# Note: not needed on Windows-based servers.
|
73
|
+
ChmodOnUpload = 0755
|
74
|
+
|
75
|
+
# See comments above.
|
76
|
+
# Used when creating folders that does not exist.
|
77
|
+
ChmodOnFolderCreate = 0755
|
67
78
|
|
68
79
|
# Do not touch this 3 lines, see "Configuration settings for each Resource Type"
|
69
80
|
AllowedExtensions = {}; DeniedExtensions = {};
|
@@ -72,55 +83,55 @@ QuickUploadPath = {}; QuickUploadAbsolutePath = {};
|
|
72
83
|
|
73
84
|
# Configuration settings for each Resource Type
|
74
85
|
#
|
75
|
-
# - AllowedExtensions: the possible extensions that can be allowed.
|
86
|
+
# - AllowedExtensions: the possible extensions that can be allowed.
|
76
87
|
# If it is empty then any file type can be uploaded.
|
77
|
-
# - DeniedExtensions: The extensions that won't be allowed.
|
88
|
+
# - DeniedExtensions: The extensions that won't be allowed.
|
78
89
|
# If it is empty then no restrictions are done here.
|
79
90
|
#
|
80
|
-
# For a file to be uploaded it has to
|
91
|
+
# For a file to be uploaded it has to fulfill both the AllowedExtensions
|
81
92
|
# and DeniedExtensions (that's it: not being denied) conditions.
|
82
93
|
#
|
83
94
|
# - FileTypesPath: the virtual folder relative to the document root where
|
84
|
-
# these resources will be located.
|
95
|
+
# these resources will be located.
|
85
96
|
# Attention: It must start and end with a slash: '/'
|
86
97
|
#
|
87
98
|
# - FileTypesAbsolutePath: the physical path to the above folder. It must be
|
88
|
-
# an absolute path.
|
99
|
+
# an absolute path.
|
89
100
|
# If it's an empty string then it will be autocalculated.
|
90
|
-
#
|
101
|
+
# Useful if you are using a virtual directory, symbolic link or alias.
|
91
102
|
# Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'.
|
92
103
|
# Attention: The above 'FileTypesPath' must point to the same directory.
|
93
104
|
# Attention: It must end with a slash: '/'
|
94
105
|
#
|
95
106
|
#
|
96
107
|
# - QuickUploadPath: the virtual folder relative to the document root where
|
97
|
-
# these resources will be uploaded using the Upload tab in the resources
|
108
|
+
# these resources will be uploaded using the Upload tab in the resources
|
98
109
|
# dialogs.
|
99
110
|
# Attention: It must start and end with a slash: '/'
|
100
111
|
#
|
101
112
|
# - QuickUploadAbsolutePath: the physical path to the above folder. It must be
|
102
|
-
# an absolute path.
|
113
|
+
# an absolute path.
|
103
114
|
# If it's an empty string then it will be autocalculated.
|
104
|
-
#
|
115
|
+
# Useful if you are using a virtual directory, symbolic link or alias.
|
105
116
|
# Examples: 'C:\\MySite\\userfiles\\' or '/root/mysite/userfiles/'.
|
106
117
|
# Attention: The above 'QuickUploadPath' must point to the same directory.
|
107
118
|
# Attention: It must end with a slash: '/'
|
108
119
|
|
109
120
|
AllowedExtensions['File'] = ['7z','aiff','asf','avi','bmp','csv','doc','fla','flv','gif','gz','gzip','jpeg','jpg','mid','mov','mp3','mp4','mpc','mpeg','mpg','ods','odt','pdf','png','ppt','pxd','qt','ram','rar','rm','rmi','rmvb','rtf','sdc','sitd','swf','sxc','sxw','tar','tgz','tif','tiff','txt','vsd','wav','wma','wmv','xls','xml','zip']
|
110
121
|
DeniedExtensions['File'] = []
|
111
|
-
FileTypesPath['File'] = UserFilesPath + 'file/'
|
122
|
+
FileTypesPath['File'] = UserFilesPath + 'file/'
|
112
123
|
FileTypesAbsolutePath['File'] = (not UserFilesAbsolutePath == '') and (UserFilesAbsolutePath + 'file/') or ''
|
113
124
|
QuickUploadPath['File'] = FileTypesPath['File']
|
114
125
|
QuickUploadAbsolutePath['File'] = FileTypesAbsolutePath['File']
|
115
126
|
|
116
|
-
AllowedExtensions['Image'] = ['bmp','gif','jpeg','jpg','png'
|
127
|
+
AllowedExtensions['Image'] = ['bmp','gif','jpeg','jpg','png']
|
117
128
|
DeniedExtensions['Image'] = []
|
118
|
-
FileTypesPath['Image'] = UserFilesPath + 'image/'
|
129
|
+
FileTypesPath['Image'] = UserFilesPath + 'image/'
|
119
130
|
FileTypesAbsolutePath['Image'] = (not UserFilesAbsolutePath == '') and UserFilesAbsolutePath + 'image/' or ''
|
120
131
|
QuickUploadPath['Image'] = FileTypesPath['Image']
|
121
132
|
QuickUploadAbsolutePath['Image']= FileTypesAbsolutePath['Image']
|
122
133
|
|
123
|
-
AllowedExtensions['Flash'] = ['swf','
|
134
|
+
AllowedExtensions['Flash'] = ['swf','flv']
|
124
135
|
DeniedExtensions['Flash'] = []
|
125
136
|
FileTypesPath['Flash'] = UserFilesPath + 'flash/'
|
126
137
|
FileTypesAbsolutePath['Flash'] = ( not UserFilesAbsolutePath == '') and UserFilesAbsolutePath + 'flash/' or ''
|