typo 5.0.2 → 5.0.3.98
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES-5.0.4 +33 -0
- data/MAINTAINERS +4 -8
- data/README +10 -8
- data/{README.SIDEBARS → SIDEBARS} +0 -0
- data/app/apis/blogger_service.rb +2 -3
- data/app/apis/meta_weblog_service.rb +6 -7
- data/app/apis/movable_type_service.rb +6 -6
- data/app/controllers/accounts_controller.rb +9 -9
- data/app/controllers/admin/base_controller.rb +3 -22
- data/app/controllers/admin/blacklist_controller.rb +4 -4
- data/app/controllers/admin/cache_controller.rb +0 -9
- data/app/controllers/admin/categories_controller.rb +4 -8
- data/app/controllers/admin/comments_controller.rb +4 -4
- data/app/controllers/admin/content_controller.rb +44 -44
- data/app/controllers/admin/dashboard_controller.rb +8 -0
- data/app/controllers/admin/feedback_controller.rb +1 -2
- data/app/controllers/admin/pages_controller.rb +49 -24
- data/app/controllers/admin/resources_controller.rb +5 -5
- data/app/controllers/admin/settings_controller.rb +7 -0
- data/app/controllers/admin/sidebar_controller.rb +5 -8
- data/app/controllers/admin/tags_controller.rb +43 -0
- data/app/controllers/admin/themes_controller.rb +1 -0
- data/app/controllers/admin/trackbacks_controller.rb +4 -13
- data/app/controllers/admin/users_controller.rb +7 -13
- data/app/controllers/application.rb +2 -24
- data/app/controllers/articles_controller.rb +28 -23
- data/app/controllers/comments_controller.rb +4 -6
- data/app/controllers/content_controller.rb +1 -4
- data/app/controllers/feedback_controller.rb +12 -2
- data/app/controllers/grouping_controller.rb +7 -1
- data/app/controllers/redirect_controller.rb +6 -0
- data/app/controllers/theme_controller.rb +2 -3
- data/app/controllers/trackbacks_controller.rb +4 -6
- data/app/controllers/xml_controller.rb +1 -1
- data/app/helpers/admin/base_helper.rb +58 -9
- data/app/helpers/admin/content_helper.rb +7 -0
- data/app/helpers/admin/pages_helper.rb +21 -0
- data/app/helpers/admin/settings_helper.rb +1 -1
- data/app/helpers/application_helper.rb +11 -9
- data/app/helpers/content_helper.rb +5 -14
- data/app/helpers/sidebar_helper.rb +1 -1
- data/app/models/article.rb +81 -68
- data/app/models/blog.rb +14 -44
- data/app/models/blog_sweeper.rb +30 -10
- data/app/models/category.rb +1 -1
- data/app/models/comment.rb +0 -7
- data/app/models/content.rb +40 -18
- data/app/models/feedback.rb +8 -0
- data/app/models/notification_mailer.rb +8 -1
- data/app/models/page.rb +5 -0
- data/app/models/page_cache.rb +22 -7
- data/app/models/profile.rb +10 -0
- data/app/models/right.rb +4 -0
- data/app/models/sidebar.rb +10 -3
- data/app/models/tag.rb +20 -8
- data/app/models/trackback.rb +1 -1
- data/app/models/url_policy.rb +179 -0
- data/app/models/user.rb +30 -0
- data/app/views/accounts/login.html.erb +1 -1
- data/app/views/accounts/logout.html.erb +1 -1
- data/app/views/accounts/signup.html.erb +1 -1
- data/app/views/admin/blacklist/_blacklist_patterns.html.erb +2 -2
- data/app/views/admin/blacklist/_form.html.erb +13 -14
- data/app/views/admin/blacklist/_quick_post.html.erb +4 -13
- data/app/views/admin/blacklist/edit.html.erb +8 -11
- data/app/views/admin/blacklist/index.html.erb +10 -0
- data/app/views/admin/categories/_categories.html.erb +8 -8
- data/app/views/admin/categories/_form.html.erb +8 -3
- data/app/views/admin/categories/_quick_post.html.erb +1 -1
- data/app/views/admin/categories/edit.html.erb +3 -7
- data/app/views/admin/categories/index.html.erb +15 -0
- data/app/views/admin/comments/_form.html.erb +19 -18
- data/app/views/admin/comments/edit.html.erb +3 -7
- data/app/views/admin/comments/index.html.erb +30 -0
- data/app/views/admin/comments/show.html.erb +24 -8
- data/app/views/admin/content/_articles.html.erb +31 -10
- data/app/views/admin/content/_attachment.html.erb +18 -2
- data/app/views/admin/content/_form.html.erb +76 -86
- data/app/views/admin/content/_pages.html.erb +3 -3
- data/app/views/admin/content/edit.html.erb +2 -9
- data/app/views/admin/content/index.html.erb +17 -0
- data/app/views/admin/content/new.html.erb +1 -4
- data/app/views/admin/content/show.html.erb +2 -23
- data/app/views/admin/dashboard/_comments.html.erb +17 -0
- data/app/views/admin/dashboard/_overview.html.erb +4 -0
- data/app/views/admin/dashboard/_popular.html.erb +12 -0
- data/app/views/admin/dashboard/_posts.html.erb +15 -0
- data/app/views/admin/dashboard/_sysinfo.html.erb +13 -0
- data/app/views/admin/dashboard/_welcome.html.erb +3 -0
- data/app/views/admin/dashboard/index.html.erb +13 -57
- data/app/views/admin/feedback/index.html.erb +41 -0
- data/app/views/admin/pages/_form.html.erb +31 -35
- data/app/views/admin/pages/_pages.html.erb +48 -23
- data/app/views/admin/pages/edit.html.erb +3 -8
- data/app/views/admin/pages/index.html.erb +6 -0
- data/app/views/admin/pages/new.html.erb +2 -5
- data/app/views/admin/pages/show.html.erb +2 -12
- data/app/views/admin/resources/_resources.html.erb +6 -5
- data/app/views/admin/resources/index.html.erb +12 -0
- data/app/views/admin/settings/feedback.html.erb +1 -19
- data/app/views/admin/settings/index.html.erb +3 -23
- data/app/views/admin/settings/podcast.html.erb +1 -10
- data/app/views/admin/settings/read.html.erb +1 -10
- data/app/views/admin/settings/spam.html.erb +1 -10
- data/app/views/admin/settings/write.html.erb +2 -14
- data/app/views/admin/shared/_edit.html.erb +1 -4
- data/app/views/admin/sidebar/index.html.erb +11 -8
- data/app/views/admin/tags/_form.html.erb +4 -0
- data/app/views/admin/tags/_tags.html.erb +19 -0
- data/app/views/admin/tags/destroy.html.erb +11 -0
- data/app/views/admin/tags/edit.html.erb +13 -0
- data/app/views/admin/tags/index.html.erb +12 -0
- data/app/views/admin/textfilters/edit.html.erb +3 -5
- data/app/views/admin/textfilters/index.html.erb +12 -0
- data/app/views/admin/textfilters/macro_help.html.erb +1 -1
- data/app/views/admin/textfilters/new.html.erb +2 -8
- data/app/views/admin/textfilters/show.html.erb +1 -6
- data/app/views/admin/textfilters/show_help.html.erb +1 -5
- data/app/views/admin/themes/index.html.erb +19 -15
- data/app/views/admin/trackbacks/edit.html.erb +1 -4
- data/app/views/admin/trackbacks/index.html.erb +22 -0
- data/app/views/admin/users/_form.html.erb +0 -10
- data/app/views/admin/users/edit.html.erb +3 -6
- data/app/views/admin/users/index.html.erb +29 -0
- data/app/views/admin/users/new.html.erb +1 -4
- data/app/views/articles/_atom_feed.atom.builder +1 -1
- data/app/views/articles/archives.html.erb +2 -2
- data/app/views/articles/groupings.html.erb +1 -1
- data/app/views/layouts/administration.html.erb +44 -51
- data/app/views/notification_mailer/_mail_footer.html.erb +1 -1
- data/app/views/notification_mailer/article.html.erb +1 -1
- data/app/views/notification_mailer/comment.html.erb +1 -1
- data/app/views/notification_mailer/notif_user.html.erb +12 -0
- data/app/views/xml/_googlesitemap_item_category.googlesitemap.builder +1 -1
- data/config/environment.rb +0 -1
- data/config/environments/development.rb +5 -0
- data/config/initializers/access_rules.rb +110 -0
- data/config/initializers/active_record_hacks.rb +17 -0
- data/config/initializers/benchmark_hacks.rb +9 -0
- data/config/routes.rb +36 -15
- data/db/converters/README +2 -2
- data/db/migrate/004_add_sidebars.rb +8 -9
- data/db/migrate/067_remove_blog_ids.rb +22 -0
- data/db/migrate/068_fix_grants.rb +113 -0
- data/db/migrate/069_add_modules_to_profile.rb +18 -0
- data/db/schema.mysql-v3.sql +3 -217
- data/db/schema.mysql.sql +3 -217
- data/db/schema.postgresql.sql +3 -217
- data/db/schema.rb +32 -29
- data/db/schema.sqlite.sql +3 -217
- data/db/schema.sqlserver.sql +3 -231
- data/db/schema_version +1 -1
- data/lang/de_DE.rb +6 -9
- data/lang/en_US.rb +3 -0
- data/lang/es_MX.rb +556 -0
- data/lang/fr_FR.rb +171 -45
- data/lang/it_IT.rb +566 -0
- data/lang/ja_JP.rb +553 -0
- data/lang/pl_PL.rb +553 -0
- data/lang/ro_RO.rb +6 -10
- data/lib/sidebars/plugin.rb +1 -3
- data/lib/stateful.rb +6 -2
- data/lib/tasks/release.rake +3 -8
- data/lib/typo_version.rb +1 -1
- data/public/.DS_Store +0 -0
- data/public/.htaccess +1 -1
- data/public/images/admin/arrow_comment_group.gif +0 -0
- data/public/images/admin/typologo.gif +0 -0
- data/public/javascripts/controls.js +484 -354
- data/public/javascripts/dragdrop.js +88 -58
- data/public/javascripts/effects.js +396 -364
- data/public/javascripts/fckcustom.js +27 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckcontextmenu.js +209 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckdataprocessor.js +119 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js +46 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js +58 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange.js +808 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_gecko.js +103 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_ie.js +198 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrangeiterator.js +306 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckeditingarea.js +344 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckelementpath.js +70 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckenterkey.js +629 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckevents.js +66 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckicon.js +103 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckiecleanup.js +68 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckimagepreloader.js +64 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckkeystrokehandler.js +141 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenublock.js +150 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenublockpanel.js +54 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenuitem.js +160 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckpanel.js +338 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckplugin.js +56 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckspecialcombo.js +377 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckstyle.js +1280 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbar.js +103 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js +36 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js +38 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbutton.js +76 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js +194 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js +139 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js +98 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js +76 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js +92 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js +143 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js +200 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckw3crange.js +447 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml.js +108 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml_gecko.js +87 -0
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml_ie.js +88 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fck_othercommands.js +462 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js +194 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js +59 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckfitwindow.js +180 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckindentcommands.js +280 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckjustifycommands.js +173 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcklistcommands.js +382 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcknamedcommand.js +37 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js +38 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js +40 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js +45 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckshowblocks.js +76 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js +39 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js +67 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckstylecommand.js +60 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktablecommand.js +106 -0
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js +183 -0
- data/public/javascripts/fckeditor/editor/_source/fckconstants.js +56 -0
- data/public/javascripts/fckeditor/editor/_source/fckeditorapi.js +168 -0
- data/public/javascripts/fckeditor/editor/_source/fckjscoreextensions.js +166 -0
- data/public/javascripts/fckeditor/editor/_source/fckscriptloader.js +122 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fck.js +1065 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fck_contextmenu.js +325 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fck_gecko.js +458 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fck_ie.js +420 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckbrowserinfo.js +59 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckcodeformatter.js +100 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckcommands.js +167 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckconfig.js +239 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckdebug.js +56 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckdialog.js +38 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckdialog_gecko.js +103 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckdialog_ie.js +48 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckdocumentprocessor.js +225 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckdomtools.js +884 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fcklanguagemanager.js +162 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fcklisthandler.js +152 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fcklistslib.js +60 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckplugins.js +46 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckregexlib.js +96 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection.js +42 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection_gecko.js +211 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection_ie.js +201 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckstyles.js +372 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler.js +858 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_gecko.js +56 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_ie.js +64 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbaritems.js +123 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbarset.js +373 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools.js +581 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools_gecko.js +270 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools_ie.js +227 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckundo.js +220 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckurlparams.js +39 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml.js +460 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_gecko.js +105 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_ie.js +208 -0
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtmlentities.js +354 -0
- data/public/javascripts/fckeditor/editor/css/behaviors/disablehandles.htc +15 -0
- data/public/javascripts/fckeditor/editor/css/behaviors/showtableborders.htc +36 -0
- data/public/javascripts/fckeditor/editor/css/fck_editorarea.css +91 -0
- data/public/javascripts/fckeditor/editor/css/fck_internal.css +182 -0
- data/public/javascripts/fckeditor/editor/css/fck_showtableborders_gecko.css +42 -0
- data/public/javascripts/fckeditor/editor/css/images/block_address.png +0 -0
- data/public/javascripts/fckeditor/editor/css/images/block_blockquote.png +0 -0
- data/public/javascripts/fckeditor/editor/css/images/block_div.png +0 -0
- data/public/javascripts/fckeditor/editor/css/images/block_h1.png +0 -0
- data/public/javascripts/fckeditor/editor/css/images/block_h2.png +0 -0
- data/public/javascripts/fckeditor/editor/css/images/block_h3.png +0 -0
- data/public/javascripts/fckeditor/editor/css/images/block_h4.png +0 -0
- data/public/javascripts/fckeditor/editor/css/images/block_h5.png +0 -0
- data/public/javascripts/fckeditor/editor/css/images/block_h6.png +0 -0
- data/public/javascripts/fckeditor/editor/css/images/block_p.png +0 -0
- data/public/javascripts/fckeditor/editor/css/images/block_pre.png +0 -0
- data/public/javascripts/fckeditor/editor/css/images/fck_anchor.gif +0 -0
- data/public/javascripts/fckeditor/editor/css/images/fck_flashlogo.gif +0 -0
- data/public/javascripts/fckeditor/editor/css/images/fck_hiddenfield.gif +0 -0
- data/public/javascripts/fckeditor/editor/css/images/fck_pagebreak.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.css +78 -0
- data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.js +165 -0
- data/public/javascripts/fckeditor/editor/dialog/common/images/locked.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/common/images/reset.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/common/images/unlocked.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_about.html +155 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_about/logo_fredck.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_anchor.html +207 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_button.html +109 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_checkbox.html +109 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_colorselector.html +171 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_docprops.html +600 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html +113 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_find.html +173 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_flash.html +146 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash.js +285 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html +46 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_form.html +106 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_hiddenfield.html +118 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_image.html +252 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image.js +492 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image_preview.html +66 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_link.html +293 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_link/fck_link.js +715 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_listprop.html +116 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_paste.html +340 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_radiobutton.html +109 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_replace.html +452 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_select.html +177 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_select/fck_select.js +194 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_smiley.html +106 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_source.html +65 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_specialchar.html +118 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages.html +64 -0
- data/{spec/fixtures/notifications.yml → public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html} +0 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js +87 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html +153 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm +146 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php +196 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl +180 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js +462 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html +71 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css +49 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js +272 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_table.html +293 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_tablecell.html +255 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_template.html +242 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_template/images/template1.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_template/images/template2.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_template/images/template3.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_textarea.html +95 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_textfield.html +140 -0
- data/public/javascripts/fckeditor/editor/dtd/fck_dtd_test.html +43 -0
- data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10strict.js +116 -0
- data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10transitional.js +140 -0
- data/public/javascripts/fckeditor/editor/fckdebug.html +153 -0
- data/public/javascripts/fckeditor/editor/fckdialog.html +336 -0
- data/public/javascripts/fckeditor/editor/fckeditor.html +228 -0
- data/public/javascripts/fckeditor/editor/fckeditor.original.html +331 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.css +89 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.html +163 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmactualfolder.html +67 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html +113 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmfolders.html +196 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourceslist.html +167 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourcetype.html +65 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmupload.html +114 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/Folder.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/Folder32.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/html.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/js.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/png.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/images/spacer.gif +0 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/common.js +55 -0
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/fckxml.js +129 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/basexml.asp +62 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/class_upload.asp +353 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/commands.asp +198 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/config.asp +128 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/connector.asp +88 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/io.asp +222 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/upload.asp +61 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/asp/util.asp +55 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/connector.aspx +30 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/upload.aspx +30 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/ImageObject.cfc +273 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_connector.cfm +315 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_upload.cfm +296 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_basexml.cfm +68 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_commands.cfm +225 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_connector.cfm +89 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_io.cfm +288 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_upload.cfm +68 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_util.cfm +132 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/config.cfm +183 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/connector.cfm +31 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/image.cfc +1325 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/cfm/upload.cfm +31 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/config.lasso +65 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/connector.lasso +257 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/lasso/upload.lasso +157 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/basexml.pl +63 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/commands.pl +168 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/connector.cgi +137 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/io.pl +131 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload.cgi +118 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload_fck.pl +667 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/util.pl +68 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/basexml.php +93 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/commands.php +245 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/config.php +140 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/connector.php +87 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/io.php +272 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/phpcompat.php +17 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/upload.php +59 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/php/util.php +185 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/config.py +135 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/connector.py +118 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckcommands.py +181 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckconnector.py +90 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckoutput.py +111 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckutil.py +127 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/htaccess.txt +23 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/upload.py +88 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/wsgi.py +58 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/zope.py +189 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/test.html +177 -0
- data/public/javascripts/fckeditor/editor/filemanager/connectors/uploadtest.html +149 -0
- data/public/javascripts/fckeditor/editor/images/anchor.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/arrow_ltr.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/arrow_rtl.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/angel_smile.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/angry_smile.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/broken_heart.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/cake.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/confused_smile.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/cry_smile.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/devil_smile.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/embaressed_smile.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/envelope.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/heart.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/kiss.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/lightbulb.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/omg_smile.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/regular_smile.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/sad_smile.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/shades_smile.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/teeth_smile.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/thumbs_down.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/thumbs_up.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/tounge_smile.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif +0 -0
- data/public/javascripts/fckeditor/editor/images/smiley/msn/wink_smile.gif +0 -0
- data/{test/mocks/themes/standard_issue → public/javascripts/fckeditor/editor}/images/spacer.gif +0 -0
- data/public/javascripts/fckeditor/editor/js/fckeditorcode_gecko.js +108 -0
- data/public/javascripts/fckeditor/editor/js/fckeditorcode_ie.js +109 -0
- data/public/javascripts/fckeditor/editor/lang/_translationstatus.txt +76 -0
- data/public/javascripts/fckeditor/editor/lang/af.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/ar.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/bg.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/bn.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/bs.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/ca.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/cs.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/da.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/de.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/el.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/en-au.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/en-ca.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/en-uk.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/en.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/eo.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/es.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/et.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/eu.js +517 -0
- data/public/javascripts/fckeditor/editor/lang/fa.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/fi.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/fo.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/fr.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/gl.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/he.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/hi.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/hr.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/hu.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/it.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/ja.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/km.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/ko.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/lt.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/lv.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/mn.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/ms.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/nb.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/nl.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/no.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/pl.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/pt-br.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/pt.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/ro.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/ru.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/sk.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/sl.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/sr-latn.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/sr.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/sv.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/th.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/tr.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/uk.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/vi.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/zh-cn.js +516 -0
- data/public/javascripts/fckeditor/editor/lang/zh.js +516 -0
- data/public/javascripts/fckeditor/editor/plugins/autogrow/fckplugin.js +92 -0
- data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.config.js +26 -0
- data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.html +67 -0
- data/public/javascripts/fckeditor/editor/plugins/bbcode/fckplugin.js +123 -0
- data/public/javascripts/fckeditor/editor/plugins/dragresizetable/fckplugin.js +503 -0
- data/public/javascripts/fckeditor/editor/plugins/placeholder/fck_placeholder.html +100 -0
- data/public/javascripts/fckeditor/editor/plugins/placeholder/fckplugin.js +187 -0
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/de.js +27 -0
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/en.js +27 -0
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/fr.js +27 -0
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/it.js +27 -0
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/pl.js +27 -0
- data/public/javascripts/fckeditor/editor/plugins/placeholder/placeholder.gif +0 -0
- data/public/javascripts/fckeditor/editor/plugins/simplecommands/fckplugin.js +29 -0
- data/public/javascripts/fckeditor/editor/plugins/tablecommands/fckplugin.js +33 -0
- data/public/javascripts/fckeditor/editor/skins/_fckviewstrips.html +121 -0
- data/public/javascripts/fckeditor/editor/skins/default/fck_dialog.css +139 -0
- data/public/javascripts/fckeditor/editor/skins/default/fck_editor.css +464 -0
- data/public/javascripts/fckeditor/editor/skins/default/fck_strip.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/default/images/toolbar.arrowright.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/default/images/toolbar.collapse.gif +0 -0
- data/{themes/standard_issue/images/spacer.gif → public/javascripts/fckeditor/editor/skins/default/images/toolbar.end.gif} +0 -0
- data/public/javascripts/fckeditor/editor/skins/default/images/toolbar.expand.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/default/images/toolbar.separator.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/default/images/toolbar.start.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/office2003/fck_dialog.css +140 -0
- data/public/javascripts/fckeditor/editor/skins/office2003/fck_editor.css +476 -0
- data/public/javascripts/fckeditor/editor/skins/office2003/fck_strip.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.bg.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.end.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.expand.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.separator.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.start.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/silver/fck_dialog.css +143 -0
- data/public/javascripts/fckeditor/editor/skins/silver/fck_editor.css +473 -0
- data/public/javascripts/fckeditor/editor/skins/silver/fck_strip.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.collapse.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.end.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.expand.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.separator.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.start.gif +0 -0
- data/public/javascripts/fckeditor/fckconfig.js +306 -0
- data/public/javascripts/fckeditor/fckeditor.afp +161 -0
- data/public/javascripts/fckeditor/fckeditor.asp +235 -0
- data/public/javascripts/fckeditor/fckeditor.cfc +273 -0
- data/public/javascripts/fckeditor/fckeditor.cfm +210 -0
- data/public/javascripts/fckeditor/fckeditor.js +212 -0
- data/public/javascripts/fckeditor/fckeditor.lasso +112 -0
- data/public/javascripts/fckeditor/fckeditor.py +162 -0
- data/public/javascripts/fckeditor/fckpackager.xml +262 -0
- data/public/javascripts/fckeditor/fckstyles.xml +114 -0
- data/public/javascripts/fckeditor/fcktemplates.xml +103 -0
- data/public/javascripts/fckeditor/license.txt +1247 -0
- data/public/javascripts/lang/default.js +21 -0
- data/public/javascripts/lang/fr_FR.js +21 -0
- data/public/javascripts/lightbox.js +169 -315
- data/public/javascripts/prototype.js +2817 -1107
- data/public/javascripts/typo.js +51 -11
- data/public/stylesheets/administration.css +170 -94
- data/public/stylesheets/lightbox.css +59 -19
- data/public/stylesheets/typo_code.css +62 -0
- data/public/stylesheets/user-styles.css +16 -0
- data/spec/controllers/accounts_controller_spec.rb +2 -7
- data/spec/controllers/admin/article_preview_spec.rb +20 -0
- data/spec/controllers/admin/blacklist_controller_spec.rb +59 -0
- data/spec/controllers/admin/categories_controller_spec.rb +97 -0
- data/spec/controllers/admin/comments_controller_spec.rb +74 -0
- data/spec/controllers/admin/content_controller_spec.rb +212 -0
- data/spec/controllers/admin/feedback_controller_spec.rb +45 -0
- data/spec/controllers/admin/pages_controller_spec.rb +83 -0
- data/spec/controllers/admin/profiles_controller_spec.rb +13 -0
- data/spec/controllers/admin/resources_controller_spec.rb +46 -0
- data/spec/controllers/admin/settings_controller_spec.rb +22 -0
- data/spec/controllers/admin/textfilters_controller_spec.rb +24 -0
- data/spec/controllers/admin/themes_controller_spec.rb +30 -0
- data/spec/controllers/admin/trackbacks_controller_spec.rb +57 -0
- data/spec/controllers/admin/users_controller_spec.rb +65 -0
- data/spec/controllers/articles_controller_spec.rb +4 -8
- data/spec/controllers/authors_controller_spec.rb +2 -2
- data/spec/controllers/backend_controller_spec.rb +318 -0
- data/spec/controllers/categories_controller_spec.rb +2 -2
- data/spec/controllers/comments_controller_spec.rb +8 -20
- data/spec/controllers/redirect_controller_spec.rb +35 -0
- data/spec/controllers/tags_controller_spec.rb +2 -2
- data/spec/controllers/textfilter_controller_spec.rb +264 -0
- data/spec/controllers/theme_controller_spec.rb +43 -0
- data/spec/controllers/xml_controller_spec.rb +232 -0
- data/spec/models/article_closing_spec.rb +38 -0
- data/spec/models/article_spec.rb +285 -9
- data/spec/models/blacklist_pattern_spec.rb +12 -0
- data/spec/models/blog_spec.rb +10 -4
- data/spec/models/cache_support_spec.rb +0 -4
- data/spec/models/category_spec.rb +1 -5
- data/spec/models/comment_spec.rb +186 -0
- data/spec/models/configuration_spec.rb +7 -9
- data/spec/models/content_state/feedback_states_spec.rb +64 -0
- data/spec/models/notification_spec.rb +8 -0
- data/spec/models/page_spec.rb +2 -10
- data/spec/models/ping_pinger_spec.rb +33 -0
- data/spec/models/ping_spec.rb +2 -9
- data/spec/models/resource_spec.rb +0 -2
- data/spec/models/route_cache_spec.rb +11 -0
- data/spec/models/sidebar_spec.rb +7 -0
- data/spec/models/tag_spec.rb +19 -8
- data/spec/models/theme_spec.rb +6 -7
- data/spec/models/trackback_spec.rb +1 -1
- data/spec/models/trigger_spec.rb +0 -2
- data/spec/models/typo_deprecated_spec.rb +18 -0
- data/spec/models/url_policy_spec.rb +65 -0
- data/spec/models/user_spec.rb +9 -4
- data/spec/spec.opts +2 -5
- data/spec/spec_helper.rb +5 -2
- data/spec/views/comments/html_sanitization_spec.rb +0 -14
- data/test/fixtures/blacklist_patterns.yml +1 -3
- data/test/fixtures/blogs.yml +2 -44
- data/test/fixtures/categories.yml +0 -6
- data/test/fixtures/categorizations.yml +17 -17
- data/test/fixtures/contents.yml +15 -53
- data/test/fixtures/feedback.yml +11 -31
- data/test/fixtures/profiles.yml +9 -0
- data/test/fixtures/redirects.yml +0 -3
- data/test/fixtures/resources.yml +3 -6
- data/test/fixtures/sidebars.yml +0 -2
- data/test/fixtures/tags.yml +3 -6
- data/test/fixtures/text_filters.yml +1 -6
- data/test/fixtures/users.yml +0 -10
- data/test/mocks/themes/typographic/.DS_Store +0 -0
- data/test/mocks/themes/typographic/about.markdown +7 -0
- data/test/mocks/themes/typographic/images/Thumbs.db +0 -0
- data/test/mocks/themes/typographic/images/accept.png +0 -0
- data/test/mocks/themes/typographic/images/accept50.png +0 -0
- data/test/mocks/themes/typographic/images/bg_body.jpg +0 -0
- data/test/mocks/themes/typographic/images/bg_white.png +0 -0
- data/test/mocks/themes/typographic/images/bg_wrapper.jpg +0 -0
- data/test/mocks/themes/typographic/images/bullet_bottom.png +0 -0
- data/test/mocks/themes/typographic/images/bullet_right.png +0 -0
- data/test/mocks/themes/typographic/images/email_open.png +0 -0
- data/test/mocks/themes/typographic/images/email_open50.png +0 -0
- data/test/mocks/themes/typographic/images/meta.png +0 -0
- data/test/mocks/themes/typographic/images/page_edit.png +0 -0
- data/test/mocks/themes/typographic/images/page_edit50.png +0 -0
- data/test/mocks/themes/typographic/images/tag.png +0 -0
- data/test/mocks/themes/typographic/images/user.png +0 -0
- data/test/mocks/themes/typographic/images/user50.png +0 -0
- data/test/mocks/themes/typographic/images/world_link.png +0 -0
- data/test/mocks/themes/typographic/images/world_link50.png +0 -0
- data/test/mocks/themes/typographic/layouts/default.html.erb +42 -0
- data/test/mocks/themes/typographic/preview.png +0 -0
- data/test/mocks/themes/typographic/stylesheets/colors.css +51 -0
- data/test/mocks/themes/typographic/stylesheets/layout.css +346 -0
- data/test/mocks/themes/typographic/stylesheets/reset.css +5 -0
- data/test/mocks/themes/typographic/stylesheets/style.css +36 -0
- data/test/mocks/themes/typographic/views/articles/_article.html.erb +41 -0
- data/test/mocks/themes/typographic/views/articles/_comment.html.erb +14 -0
- data/test/mocks/themes/typographic/views/articles/_comment_form.html.erb +48 -0
- data/test/mocks/themes/typographic/views/articles/_comment_list.html.erb +7 -0
- data/test/mocks/themes/typographic/views/articles/_trackback.html.erb +9 -0
- data/test/mocks/themes/typographic/views/articles/comment_preview.html.erb +10 -0
- data/test/mocks/themes/typographic/views/articles/index.html.erb +5 -0
- data/test/mocks/themes/typographic/views/articles/read.html.erb +42 -0
- data/test/mocks/themes/typographic/views/shared/_search.html.erb +17 -0
- data/test/mocks/themes/typographic/views/theme/static_view_test.html.erb +1 -0
- data/test/test_helper.rb +4 -0
- data/themes/scribbish/layouts/default.html.erb +4 -2
- data/themes/scribbish/stylesheets/content.css +1 -0
- data/themes/scribbish/views/articles/_article.html.erb +6 -6
- data/themes/scribbish/views/articles/_comment.html.erb +1 -1
- data/themes/scribbish/views/articles/_comment_form.html.erb +10 -10
- data/themes/scribbish/views/articles/_comment_list.html.erb +1 -1
- data/themes/scribbish/views/articles/_trackback.html.erb +1 -1
- data/themes/scribbish/views/articles/comment_preview.html.erb +1 -1
- data/themes/scribbish/views/articles/index.html.erb +1 -1
- data/themes/scribbish/views/articles/read.html.erb +4 -4
- data/themes/scribbish/views/shared/_search.html.erb +1 -1
- data/themes/typographic/.DS_Store +0 -0
- data/themes/typographic/about.markdown +7 -0
- data/themes/typographic/images/accept.png +0 -0
- data/themes/typographic/images/accept50.png +0 -0
- data/themes/typographic/images/bg_body.jpg +0 -0
- data/themes/typographic/images/bg_white.png +0 -0
- data/themes/typographic/images/bg_wrapper.jpg +0 -0
- data/themes/typographic/images/bullet_bottom.png +0 -0
- data/themes/typographic/images/bullet_right.png +0 -0
- data/themes/typographic/images/email_open.png +0 -0
- data/themes/typographic/images/email_open50.png +0 -0
- data/themes/typographic/images/meta.png +0 -0
- data/themes/typographic/images/page_edit.png +0 -0
- data/themes/typographic/images/page_edit50.png +0 -0
- data/themes/typographic/images/tag.png +0 -0
- data/themes/typographic/images/user.png +0 -0
- data/themes/typographic/images/user50.png +0 -0
- data/themes/typographic/images/world_link.png +0 -0
- data/themes/typographic/images/world_link50.png +0 -0
- data/themes/typographic/layouts/default.html.erb +42 -0
- data/themes/typographic/preview.png +0 -0
- data/themes/typographic/stylesheets/colors.css +51 -0
- data/themes/typographic/stylesheets/layout.css +346 -0
- data/themes/typographic/stylesheets/reset.css +5 -0
- data/themes/typographic/stylesheets/style.css +36 -0
- data/themes/typographic/views/articles/_article.html.erb +41 -0
- data/themes/typographic/views/articles/_comment.html.erb +14 -0
- data/themes/typographic/views/articles/_comment_form.html.erb +48 -0
- data/themes/typographic/views/articles/_comment_list.html.erb +7 -0
- data/themes/typographic/views/articles/_trackback.html.erb +9 -0
- data/themes/typographic/views/articles/comment_preview.html.erb +10 -0
- data/themes/typographic/views/articles/index.html.erb +5 -0
- data/themes/typographic/views/articles/read.html.erb +42 -0
- data/themes/typographic/views/shared/_search.html.erb +17 -0
- data/themes/typographic/views/theme/static_view_test.html.erb +1 -0
- data/themes/typographic2/.DS_Store +0 -0
- data/themes/typographic2/about.markdown +7 -0
- data/themes/typographic2/images/Thumbs.db +0 -0
- data/themes/typographic2/images/accept.png +0 -0
- data/themes/typographic2/images/accept50.png +0 -0
- data/themes/typographic2/images/bg_body.jpg +0 -0
- data/themes/typographic2/images/bg_white.png +0 -0
- data/themes/typographic2/images/bg_wrapper.jpg +0 -0
- data/themes/typographic2/images/bullet_bottom.png +0 -0
- data/themes/typographic2/images/bullet_right.png +0 -0
- data/themes/typographic2/images/email_open.png +0 -0
- data/themes/typographic2/images/email_open50.png +0 -0
- data/themes/typographic2/images/meta.png +0 -0
- data/themes/typographic2/images/page_edit.png +0 -0
- data/themes/typographic2/images/page_edit50.png +0 -0
- data/themes/typographic2/images/tag.png +0 -0
- data/themes/typographic2/images/user.png +0 -0
- data/themes/typographic2/images/user50.png +0 -0
- data/themes/typographic2/images/world_link.png +0 -0
- data/themes/typographic2/images/world_link50.png +0 -0
- data/themes/typographic2/layouts/default.html.erb +42 -0
- data/themes/typographic2/preview.png +0 -0
- data/themes/typographic2/stylesheets/colors.css +51 -0
- data/themes/typographic2/stylesheets/layout.css +346 -0
- data/themes/typographic2/stylesheets/reset.css +5 -0
- data/themes/typographic2/stylesheets/style.css +36 -0
- data/themes/typographic2/views/articles/_article.html.erb +41 -0
- data/themes/typographic2/views/articles/_comment.html.erb +14 -0
- data/themes/typographic2/views/articles/_comment_form.html.erb +48 -0
- data/themes/typographic2/views/articles/_comment_list.html.erb +7 -0
- data/themes/typographic2/views/articles/_trackback.html.erb +9 -0
- data/themes/typographic2/views/articles/comment_preview.html.erb +10 -0
- data/themes/typographic2/views/articles/index.html.erb +5 -0
- data/themes/typographic2/views/articles/read.html.erb +42 -0
- data/themes/typographic2/views/shared/_search.html.erb +17 -0
- data/themes/{standard_issue → typographic2}/views/theme/static_view_test.html.erb +0 -0
- data/vendor/plugins/archives_sidebar/lib/archives_sidebar.rb +1 -1
- data/vendor/plugins/auto_complete/README +23 -0
- data/vendor/plugins/auto_complete/Rakefile +22 -0
- data/vendor/plugins/auto_complete/init.rb +2 -0
- data/vendor/plugins/auto_complete/lib/auto_complete.rb +47 -0
- data/vendor/plugins/auto_complete/lib/auto_complete_macros_helper.rb +143 -0
- data/vendor/plugins/auto_complete/test/auto_complete_test.rb +67 -0
- data/vendor/plugins/datestamped_resources/lib/datestamped_resources.rb +2 -1
- data/vendor/plugins/fckeditor/CHANGELOG +3 -0
- data/vendor/plugins/fckeditor/README +125 -0
- data/vendor/plugins/fckeditor/Rakefile +72 -0
- data/vendor/plugins/fckeditor/app/controllers/fckeditor_controller.rb +158 -0
- data/vendor/plugins/fckeditor/app/helpers/fckeditor_helper.rb +4 -0
- data/vendor/plugins/fckeditor/app/views/fckeditor/spell_check.rhtml +52 -0
- data/vendor/plugins/fckeditor/init.rb +35 -0
- data/vendor/plugins/fckeditor/install.rb +12 -0
- data/vendor/plugins/fckeditor/lib/fckeditor.rb +101 -0
- data/vendor/plugins/fckeditor/lib/fckeditor_file_utils.rb +81 -0
- data/vendor/plugins/fckeditor/lib/fckeditor_spell_check.rb +43 -0
- data/vendor/plugins/fckeditor/lib/fckeditor_version.rb +9 -0
- data/vendor/plugins/fckeditor/tasks/fckeditor_tasks.rake +97 -0
- data/vendor/plugins/rspec/.autotest +3 -0
- data/vendor/plugins/rspec/CHANGES +33 -1
- data/vendor/plugins/rspec/README +2 -3
- data/vendor/plugins/rspec/Rakefile +7 -5
- data/vendor/plugins/rspec/bin/spec +1 -0
- data/vendor/plugins/rspec/examples/pure/helper_method_example.rb +9 -6
- data/vendor/plugins/rspec/failing_examples/README.txt +7 -0
- data/vendor/plugins/rspec/failing_examples/failing_autogenerated_docstrings_example.rb +19 -0
- data/vendor/plugins/rspec/lib/autotest/rspec.rb +36 -56
- data/vendor/plugins/rspec/lib/spec.rb +0 -7
- data/vendor/plugins/rspec/lib/spec/example/example_group_methods.rb +10 -4
- data/vendor/plugins/rspec/lib/spec/example/example_methods.rb +13 -8
- data/vendor/plugins/rspec/lib/spec/interop/test.rb +3 -1
- data/vendor/plugins/rspec/lib/spec/interop/test/unit/ui/console/testrunner.rb +1 -0
- data/vendor/plugins/rspec/lib/spec/matchers.rb +1 -7
- data/vendor/plugins/rspec/lib/spec/matchers/be.rb +3 -2
- data/vendor/plugins/rspec/lib/spec/matchers/have.rb +3 -0
- data/vendor/plugins/rspec/lib/spec/matchers/raise_error.rb +19 -15
- data/vendor/plugins/rspec/lib/spec/mocks/message_expectation.rb +10 -3
- data/vendor/plugins/rspec/lib/spec/runner.rb +14 -0
- data/vendor/plugins/rspec/lib/spec/runner/formatter/story/html_formatter.rb +6 -2
- data/vendor/plugins/rspec/lib/spec/runner/formatter/story/plain_text_formatter.rb +15 -7
- data/vendor/plugins/rspec/lib/spec/runner/option_parser.rb +5 -33
- data/vendor/plugins/rspec/lib/spec/runner/options.rb +51 -18
- data/vendor/plugins/rspec/lib/spec/runner/spec_parser.rb +49 -31
- data/vendor/plugins/rspec/lib/spec/story/extensions.rb +2 -0
- data/vendor/plugins/rspec/lib/spec/story/extensions/regexp.rb +9 -0
- data/vendor/plugins/rspec/lib/spec/story/extensions/string.rb +9 -0
- data/vendor/plugins/rspec/lib/spec/story/runner.rb +0 -2
- data/vendor/plugins/rspec/lib/spec/story/runner/story_parser.rb +8 -8
- data/vendor/plugins/rspec/lib/spec/story/runner/story_runner.rb +2 -1
- data/vendor/plugins/rspec/lib/spec/story/step.rb +18 -8
- data/vendor/plugins/rspec/lib/spec/story/world.rb +1 -0
- data/vendor/plugins/rspec/lib/spec/version.rb +22 -22
- data/vendor/plugins/rspec/pre_commit/lib/pre_commit.rb +4 -0
- data/vendor/plugins/rspec/pre_commit/lib/pre_commit/core.rb +50 -0
- data/vendor/plugins/rspec/pre_commit/lib/pre_commit/pre_commit.rb +54 -0
- data/vendor/plugins/rspec/pre_commit/lib/pre_commit/rspec.rb +111 -0
- data/vendor/plugins/rspec/pre_commit/lib/pre_commit/rspec_on_rails.rb +313 -0
- data/vendor/plugins/rspec/pre_commit/spec/pre_commit/pre_commit_spec.rb +15 -0
- data/vendor/plugins/rspec/pre_commit/spec/pre_commit/rspec_on_rails_spec.rb +36 -0
- data/vendor/plugins/rspec/pre_commit/spec/spec_helper.rb +3 -0
- data/vendor/plugins/rspec/pre_commit/spec/spec_suite.rb +11 -0
- data/vendor/plugins/rspec/report.html +4358 -0
- data/vendor/plugins/rspec/spec/README.jruby +1 -0
- data/vendor/plugins/rspec/spec/autotest/rspec_spec.rb +15 -84
- data/vendor/plugins/rspec/spec/autotest_helper.rb +2 -1
- data/vendor/plugins/rspec/spec/autotest_matchers.rb +47 -0
- data/vendor/plugins/rspec/spec/rspec_suite.rb +1 -1
- data/vendor/plugins/rspec/{spec.opts → spec/spec.opts} +0 -0
- data/vendor/plugins/rspec/spec/spec/example/example_group_methods_spec.rb +11 -2
- data/vendor/plugins/rspec/spec/spec/example/example_methods_spec.rb +70 -41
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_fails.rb +10 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_passes.rb +10 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_with_errors.rb +10 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_fails.rb +10 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_passes.rb +10 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_with_errors.rb +10 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb +38 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/spec_spec.rb +45 -0
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/test_unit_spec_helper.rb +1 -1
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/testcase_spec.rb +40 -5
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/testsuite_adapter_spec.rb +2 -2
- data/vendor/plugins/rspec/spec/spec/matchers/have_spec.rb +19 -0
- data/vendor/plugins/rspec/spec/spec/matchers/match_spec.rb +3 -3
- data/vendor/plugins/rspec/spec/spec/matchers/raise_error_spec.rb +7 -1
- data/vendor/plugins/rspec/spec/spec/mocks/bug_report_10263.rb +1 -1
- data/vendor/plugins/rspec/spec/spec/runner/command_line_spec.rb +3 -2
- data/vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html +381 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/story/html_formatter_spec.rb +5 -0
- data/vendor/plugins/rspec/spec/spec/runner/formatter/story/plain_text_formatter_spec.rb +97 -51
- data/vendor/plugins/rspec/spec/spec/runner/option_parser_spec.rb +50 -49
- data/vendor/plugins/rspec/spec/spec/runner/options_spec.rb +72 -2
- data/vendor/plugins/rspec/spec/spec/runner/resources/a_bar.rb +0 -0
- data/vendor/plugins/rspec/spec/spec/runner/resources/a_foo.rb +0 -0
- data/vendor/plugins/rspec/spec/spec/runner/resources/a_spec.rb +1 -0
- data/vendor/plugins/rspec/spec/spec/runner/spec_parser/spec_parser_fixture.rb +70 -0
- data/vendor/plugins/rspec/spec/spec/runner/spec_parser_spec.rb +31 -76
- data/vendor/plugins/rspec/spec/spec/spec_classes.rb +7 -0
- data/vendor/plugins/rspec/spec/spec/story/runner/story_runner_spec.rb +37 -0
- data/vendor/plugins/rspec/spec/spec/story/step_spec.rb +53 -0
- data/vendor/plugins/rspec/spec/spec/story/world_spec.rb +7 -0
- data/vendor/plugins/rspec/stories/example_groups/autogenerated_docstrings +27 -8
- data/vendor/plugins/rspec/stories/example_groups/output +5 -0
- data/vendor/plugins/rspec/stories/interop/test_case_with_should_methods +1 -1
- data/vendor/plugins/rspec/stories/resources/stories/failing_story.rb +15 -0
- data/vendor/plugins/rspec_on_rails/generators/rspec/templates/spec.opts +0 -1
- data/vendor/plugins/rspec_on_rails/generators/rspec_controller/rspec_controller_generator.rb +1 -2
- data/vendor/plugins/rspec_on_rails/generators/rspec_scaffold/rspec_scaffold_generator.rb +1 -3
- data/vendor/plugins/rspec_on_rails/lib/autotest/discover.rb +1 -0
- data/vendor/plugins/rspec_on_rails/lib/autotest/rails_rspec.rb +47 -47
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/controller_example_group.rb +14 -4
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/functional_example_group.rb +4 -4
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/helper_example_group.rb +0 -1
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/rails_example_group.rb +8 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/example/view_example_group.rb +4 -5
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers/have_text.rb +2 -2
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/matchers/render_template.rb +4 -0
- data/vendor/plugins/rspec_on_rails/lib/spec/rails/version.rb +23 -23
- data/vendor/plugins/rspec_on_rails/spec/rails/autotest/mappings_spec.rb +14 -17
- data/vendor/plugins/rspec_on_rails/spec/rails/example/controller_spec_spec.rb +13 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/example/view_spec_spec.rb +15 -1
- data/vendor/plugins/rspec_on_rails/spec/rails/extensions/action_view_base_spec.rb +37 -26
- data/vendor/plugins/rspec_on_rails/spec/rails/matchers/have_text_spec.rb +62 -0
- data/vendor/plugins/rspec_on_rails/spec/rails/matchers/render_spec.rb +73 -36
- data/vendor/plugins/rspec_on_rails/spec_resources/controllers/controller_spec_controller.rb +9 -1
- data/vendor/plugins/rspec_on_rails/spec_resources/controllers/render_spec_controller.rb +4 -0
- data/vendor/plugins/rspec_on_rails/stories/all.rb +4 -0
- data/vendor/plugins/rspec_on_rails/tasks/rspec.rake +10 -8
- data/vendor/plugins/static_sidebar/lib/static_sidebar.rb +4 -8
- data/vendor/plugins/typo_converter/README +71 -0
- data/vendor/plugins/typo_converter/Rakefile +22 -0
- data/vendor/plugins/typo_converter/init.rb +8 -0
- data/vendor/plugins/typo_converter/lib/converters/base.rb +249 -0
- data/vendor/plugins/typo_converter/lib/converters/dotclear.rb +98 -0
- data/vendor/plugins/typo_converter/lib/converters/dotclear/category.rb +7 -0
- data/vendor/plugins/typo_converter/lib/converters/dotclear/comment.rb +8 -0
- data/vendor/plugins/typo_converter/lib/converters/dotclear/post.rb +9 -0
- data/vendor/plugins/typo_converter/lib/converters/dotclear/user.rb +8 -0
- data/vendor/plugins/typo_converter/lib/converters/dotclear_2.rb +122 -0
- data/vendor/plugins/typo_converter/lib/converters/dotclear_2/category.rb +11 -0
- data/vendor/plugins/typo_converter/lib/converters/dotclear_2/comment.rb +13 -0
- data/vendor/plugins/typo_converter/lib/converters/dotclear_2/post.rb +15 -0
- data/vendor/plugins/typo_converter/lib/converters/dotclear_2/tag.rb +13 -0
- data/vendor/plugins/typo_converter/lib/converters/dotclear_2/user.rb +13 -0
- data/vendor/plugins/typo_converter/lib/converters/wp25.rb +128 -0
- data/vendor/plugins/typo_converter/lib/converters/wp25/comment.rb +12 -0
- data/vendor/plugins/typo_converter/lib/converters/wp25/post.rb +37 -0
- data/vendor/plugins/typo_converter/lib/converters/wp25/term.rb +11 -0
- data/vendor/plugins/typo_converter/lib/converters/wp25/term_relationship.rb +13 -0
- data/vendor/plugins/typo_converter/lib/converters/wp25/term_taxonomy.rb +19 -0
- data/vendor/plugins/typo_converter/lib/converters/wp25/user.rb +12 -0
- data/vendor/plugins/typo_converter/tasks/typo_converters_tasks.rake +4 -0
- data/vendor/plugins/typo_login_system/init.rb +2 -0
- data/vendor/plugins/typo_login_system/lib/access_control.rb +159 -0
- data/vendor/plugins/typo_login_system/lib/login_system.rb +90 -0
- data/vendor/plugins/xml_sidebar/lib/xml_sidebar.rb +1 -1
- metadata +823 -527
- data/CHANGES-5.0 +0 -82
- data/TODO.MULTIUSERS +0 -45
- data/app/views/admin/advanced/index.html.erb +0 -20
- data/app/views/admin/blacklist/list.html.erb +0 -13
- data/app/views/admin/cache/list.html.erb +0 -8
- data/app/views/admin/categories/list.html.erb +0 -18
- data/app/views/admin/categories/show.html.erb +0 -37
- data/app/views/admin/comments/comments.html.erb +0 -4
- data/app/views/admin/comments/list.html.erb +0 -37
- data/app/views/admin/comments/new.html.erb +0 -19
- data/app/views/admin/content/_show_categories.html.erb +0 -9
- data/app/views/admin/content/list.html.erb +0 -21
- data/app/views/admin/content/preview.html.erb +0 -10
- data/app/views/admin/feedback/list.html.erb +0 -48
- data/app/views/admin/pages/list.html.erb +0 -12
- data/app/views/admin/pages/preview.html.erb +0 -1
- data/app/views/admin/resources/list.html.erb +0 -17
- data/app/views/admin/textfilters/list.html.erb +0 -16
- data/app/views/admin/trackbacks/list.html.erb +0 -31
- data/app/views/admin/trackbacks/new.html.erb +0 -15
- data/app/views/admin/users/list.html.erb +0 -32
- data/app/views/admin/users/show.html.erb +0 -23
- data/app/views/layouts/minimal.html.erb +0 -145
- data/db/converters/wordpress.rb +0 -187
- data/db/converters/wordpress2.rb +0 -291
- data/lib/jabber_notify.rb +0 -37
- data/lib/login_system.rb +0 -85
- data/lib/tasks/rcov.rake +0 -38
- data/public/images/admin/bgdivider.gif +0 -0
- data/public/images/admin/bgoff2.png +0 -0
- data/public/images/admin/bgon.png +0 -0
- data/public/images/admin/foot.jpg +0 -0
- data/public/images/admin/table-header-last.png +0 -0
- data/public/images/admin/table-header.png +0 -0
- data/public/images/admin/top.gif +0 -0
- data/public/images/admin/typo.gif +0 -0
- data/public/images/admin/typologo.png +0 -0
- data/public/images/bracket.gif +0 -0
- data/public/images/header.jpg +0 -0
- data/public/images/loading.gif +0 -0
- data/public/javascripts/tiny_mce/langs/en.js +0 -154
- data/public/javascripts/tiny_mce/license.txt +0 -504
- data/public/javascripts/tiny_mce/plugins/advimage/css/advimage.css +0 -13
- data/public/javascripts/tiny_mce/plugins/advimage/editor_plugin.js +0 -1
- data/public/javascripts/tiny_mce/plugins/advimage/editor_plugin_src.js +0 -49
- data/public/javascripts/tiny_mce/plugins/advimage/image.htm +0 -237
- data/public/javascripts/tiny_mce/plugins/advimage/img/sample.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/advimage/js/image.js +0 -403
- data/public/javascripts/tiny_mce/plugins/advimage/langs/en_dlg.js +0 -43
- data/public/javascripts/tiny_mce/plugins/advlink/css/advlink.css +0 -8
- data/public/javascripts/tiny_mce/plugins/advlink/editor_plugin.js +0 -1
- data/public/javascripts/tiny_mce/plugins/advlink/editor_plugin_src.js +0 -58
- data/public/javascripts/tiny_mce/plugins/advlink/js/advlink.js +0 -551
- data/public/javascripts/tiny_mce/plugins/advlink/langs/en_dlg.js +0 -52
- data/public/javascripts/tiny_mce/plugins/advlink/link.htm +0 -339
- data/public/javascripts/tiny_mce/plugins/autosave/editor_plugin.js +0 -1
- data/public/javascripts/tiny_mce/plugins/autosave/editor_plugin_src.js +0 -51
- data/public/javascripts/tiny_mce/plugins/contextmenu/editor_plugin.js +0 -1
- data/public/javascripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js +0 -84
- data/public/javascripts/tiny_mce/plugins/emotions/editor_plugin.js +0 -1
- data/public/javascripts/tiny_mce/plugins/emotions/editor_plugin_src.js +0 -40
- data/public/javascripts/tiny_mce/plugins/emotions/emotions.htm +0 -41
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-cool.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-cry.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-frown.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-smile.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-wink.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/img/smiley-yell.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/emotions/js/emotions.js +0 -22
- data/public/javascripts/tiny_mce/plugins/emotions/langs/en_dlg.js +0 -20
- data/public/javascripts/tiny_mce/plugins/media/css/content.css +0 -6
- data/public/javascripts/tiny_mce/plugins/media/css/media.css +0 -68
- data/public/javascripts/tiny_mce/plugins/media/editor_plugin.js +0 -1
- data/public/javascripts/tiny_mce/plugins/media/editor_plugin_src.js +0 -323
- data/public/javascripts/tiny_mce/plugins/media/img/flash.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/media/img/flv_player.swf +0 -0
- data/public/javascripts/tiny_mce/plugins/media/img/quicktime.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/media/img/realmedia.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/media/img/shockwave.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/media/img/trans.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/media/img/windowsmedia.gif +0 -0
- data/public/javascripts/tiny_mce/plugins/media/js/embed.js +0 -73
- data/public/javascripts/tiny_mce/plugins/media/js/media.js +0 -616
- data/public/javascripts/tiny_mce/plugins/media/langs/en_dlg.js +0 -103
- data/public/javascripts/tiny_mce/plugins/media/media.htm +0 -823
- data/public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin.js +0 -1
- data/public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js +0 -50
- data/public/javascripts/tiny_mce/plugins/paste/blank.htm +0 -22
- data/public/javascripts/tiny_mce/plugins/paste/css/blank.css +0 -14
- data/public/javascripts/tiny_mce/plugins/paste/css/pasteword.css +0 -3
- data/public/javascripts/tiny_mce/plugins/paste/editor_plugin.js +0 -1
- data/public/javascripts/tiny_mce/plugins/paste/editor_plugin_src.js +0 -382
- data/public/javascripts/tiny_mce/plugins/paste/js/pastetext.js +0 -42
- data/public/javascripts/tiny_mce/plugins/paste/js/pasteword.js +0 -56
- data/public/javascripts/tiny_mce/plugins/paste/langs/en_dlg.js +0 -5
- data/public/javascripts/tiny_mce/plugins/paste/pastetext.htm +0 -34
- data/public/javascripts/tiny_mce/plugins/paste/pasteword.htm +0 -29
- data/public/javascripts/tiny_mce/plugins/safari/blank.htm +0 -1
- data/public/javascripts/tiny_mce/plugins/safari/editor_plugin.js +0 -1
- data/public/javascripts/tiny_mce/plugins/safari/editor_plugin_src.js +0 -401
- data/public/javascripts/tiny_mce/plugins/save/editor_plugin.js +0 -1
- data/public/javascripts/tiny_mce/plugins/save/editor_plugin_src.js +0 -103
- data/public/javascripts/tiny_mce/themes/advanced/about.htm +0 -56
- data/public/javascripts/tiny_mce/themes/advanced/anchor.htm +0 -32
- data/public/javascripts/tiny_mce/themes/advanced/charmap.htm +0 -53
- data/public/javascripts/tiny_mce/themes/advanced/color_picker.htm +0 -74
- data/public/javascripts/tiny_mce/themes/advanced/editor_template.js +0 -1
- data/public/javascripts/tiny_mce/themes/advanced/editor_template_src.js +0 -990
- data/public/javascripts/tiny_mce/themes/advanced/image.htm +0 -86
- data/public/javascripts/tiny_mce/themes/advanced/img/colorpicker.jpg +0 -0
- data/public/javascripts/tiny_mce/themes/advanced/img/icons.gif +0 -0
- data/public/javascripts/tiny_mce/themes/advanced/js/about.js +0 -76
- data/public/javascripts/tiny_mce/themes/advanced/js/anchor.js +0 -30
- data/public/javascripts/tiny_mce/themes/advanced/js/charmap.js +0 -327
- data/public/javascripts/tiny_mce/themes/advanced/js/color_picker.js +0 -245
- data/public/javascripts/tiny_mce/themes/advanced/js/image.js +0 -232
- data/public/javascripts/tiny_mce/themes/advanced/js/link.js +0 -110
- data/public/javascripts/tiny_mce/themes/advanced/js/source_editor.js +0 -62
- data/public/javascripts/tiny_mce/themes/advanced/langs/en.js +0 -62
- data/public/javascripts/tiny_mce/themes/advanced/langs/en_dlg.js +0 -51
- data/public/javascripts/tiny_mce/themes/advanced/link.htm +0 -64
- data/public/javascripts/tiny_mce/themes/advanced/skins/default/content.css +0 -18
- data/public/javascripts/tiny_mce/themes/advanced/skins/default/dialog.css +0 -111
- data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/buttons.png +0 -0
- data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/items.gif +0 -0
- data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif +0 -0
- data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif +0 -0
- data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/progress.gif +0 -0
- data/public/javascripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif +0 -0
- data/public/javascripts/tiny_mce/themes/advanced/skins/default/ui.css +0 -193
- data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/content.css +0 -18
- data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css +0 -111
- data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png +0 -0
- data/public/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui.css +0 -193
- data/public/javascripts/tiny_mce/themes/advanced/source_editor.htm +0 -32
- data/public/javascripts/tiny_mce/themes/simple/editor_template.js +0 -1
- data/public/javascripts/tiny_mce/themes/simple/editor_template_src.js +0 -85
- data/public/javascripts/tiny_mce/themes/simple/img/icons.gif +0 -0
- data/public/javascripts/tiny_mce/themes/simple/langs/en.js +0 -11
- data/public/javascripts/tiny_mce/themes/simple/skins/default/content.css +0 -25
- data/public/javascripts/tiny_mce/themes/simple/skins/default/ui.css +0 -32
- data/public/javascripts/tiny_mce/themes/simple/skins/o2k7/content.css +0 -17
- data/public/javascripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png +0 -0
- data/public/javascripts/tiny_mce/themes/simple/skins/o2k7/ui.css +0 -35
- data/public/javascripts/tiny_mce/tiny_mce.js +0 -1
- data/public/javascripts/tiny_mce/tiny_mce_popup.js +0 -221
- data/public/javascripts/tiny_mce/tiny_mce_src.js +0 -8803
- data/public/javascripts/tiny_mce/utils/editable_selects.js +0 -61
- data/public/javascripts/tiny_mce/utils/form_utils.js +0 -193
- data/public/javascripts/tiny_mce/utils/mclayer.js +0 -210
- data/public/javascripts/tiny_mce/utils/mctabs.js +0 -74
- data/public/javascripts/tiny_mce/utils/validate.js +0 -219
- data/public/stylesheets/minimal.css +0 -143
- data/spec/fixtures/blacklist_patterns.yml +0 -10
- data/spec/fixtures/blogs.yml +0 -77
- data/spec/fixtures/categories.yml +0 -35
- data/spec/fixtures/categorizations.yml +0 -31
- data/spec/fixtures/contents.yml +0 -205
- data/spec/fixtures/feedback.yml +0 -159
- data/spec/fixtures/page_caches.yml +0 -7
- data/spec/fixtures/profiles.yml +0 -11
- data/spec/fixtures/redirects.yml +0 -13
- data/spec/fixtures/resources.yml +0 -24
- data/spec/fixtures/sidebars.yml +0 -12
- data/spec/fixtures/tags.yml +0 -10
- data/spec/fixtures/text_filters.yml +0 -42
- data/spec/fixtures/triggers.yml +0 -1
- data/spec/fixtures/users.yml +0 -56
- data/spec/helpers/comments_helper_spec.rb +0 -11
- data/test/fixtures/articles_tags.yml +0 -19
- data/test/functional/accounts_controller_test.rb +0 -78
- data/test/functional/admin/article_preview_test.rb +0 -82
- data/test/functional/admin/blacklist_controller_test.rb +0 -63
- data/test/functional/admin/categories_controller_test.rb +0 -106
- data/test/functional/admin/comments_controller_test.rb +0 -78
- data/test/functional/admin/content_controller_test.rb +0 -232
- data/test/functional/admin/feedback_controller_test.rb +0 -59
- data/test/functional/admin/pages_controller_test.rb +0 -88
- data/test/functional/admin/profiles_controller_test.rb +0 -18
- data/test/functional/admin/resources_controller_test.rb +0 -49
- data/test/functional/admin/settings_controller_test.rb +0 -26
- data/test/functional/admin/textfilters_controller_test.rb +0 -29
- data/test/functional/admin/themes_controller_test.rb +0 -34
- data/test/functional/admin/trackbacks_controller_test.rb +0 -76
- data/test/functional/admin/users_controller_test.rb +0 -78
- data/test/functional/articles_controller_test.rb +0 -263
- data/test/functional/backend_controller_test.rb +0 -287
- data/test/functional/redirect_controller_test.rb +0 -40
- data/test/functional/textfilter_controller_test.rb +0 -273
- data/test/functional/theme_controller_test.rb +0 -45
- data/test/functional/xml_controller_test.rb +0 -235
- data/test/mocks/themes/standard_issue/about.markdown +0 -5
- data/test/mocks/themes/standard_issue/images/img01.gif +0 -0
- data/test/mocks/themes/standard_issue/images/img02.gif +0 -0
- data/test/mocks/themes/standard_issue/images/img03.gif +0 -0
- data/test/mocks/themes/standard_issue/images/img04.jpg +0 -0
- data/test/mocks/themes/standard_issue/images/img05.gif +0 -0
- data/test/mocks/themes/standard_issue/images/img06.gif +0 -0
- data/test/mocks/themes/standard_issue/images/img07.gif +0 -0
- data/test/mocks/themes/standard_issue/images/img08.gif +0 -0
- data/test/mocks/themes/standard_issue/images/img09.gif +0 -0
- data/test/mocks/themes/standard_issue/images/img10.gif +0 -0
- data/test/mocks/themes/standard_issue/images/spinner.gif +0 -0
- data/test/mocks/themes/standard_issue/layouts/default.html.erb +0 -61
- data/test/mocks/themes/standard_issue/preview.png +0 -0
- data/test/mocks/themes/standard_issue/stylesheets/application.css +0 -461
- data/test/mocks/themes/standard_issue/views/articles/_article.html.erb +0 -32
- data/test/mocks/themes/standard_issue/views/articles/_comment.html.erb +0 -12
- data/test/mocks/themes/standard_issue/views/articles/_comment_form.html.erb +0 -48
- data/test/mocks/themes/standard_issue/views/articles/_comment_list.html.erb +0 -7
- data/test/mocks/themes/standard_issue/views/articles/_trackback.html.erb +0 -9
- data/test/mocks/themes/standard_issue/views/articles/comment_preview.html.erb +0 -10
- data/test/mocks/themes/standard_issue/views/articles/index.html.erb +0 -5
- data/test/mocks/themes/standard_issue/views/articles/read.html.erb +0 -42
- data/test/mocks/themes/standard_issue/views/shared/_search.html.erb +0 -17
- data/test/mocks/themes/standard_issue/views/theme/static_view_test.rhtml +0 -1
- data/test/unit/amazon_sidebar_test.rb +0 -36
- data/test/unit/article_closing_test.rb +0 -40
- data/test/unit/article_test.rb +0 -304
- data/test/unit/assumptions_tests.rb +0 -54
- data/test/unit/blacklist_pattern_test.rb +0 -14
- data/test/unit/blog_test.rb +0 -52
- data/test/unit/cache_support_test.rb +0 -62
- data/test/unit/category_test.rb +0 -42
- data/test/unit/comment_test.rb +0 -188
- data/test/unit/configuration_test.rb +0 -21
- data/test/unit/content_state/feedback_states_test.rb +0 -67
- data/test/unit/metafragment_test.rb +0 -63
- data/test/unit/notification_mailer_test.rb +0 -55
- data/test/unit/notification_test.rb +0 -10
- data/test/unit/page_test.rb +0 -45
- data/test/unit/ping_pinger_test.rb +0 -30
- data/test/unit/ping_test.rb +0 -127
- data/test/unit/redirect_test.rb +0 -19
- data/test/unit/resource_test.rb +0 -71
- data/test/unit/route_cache_test.rb +0 -11
- data/test/unit/sidebar_test.rb +0 -9
- data/test/unit/static_sidebar_test.rb +0 -19
- data/test/unit/tag_test.rb +0 -71
- data/test/unit/text_filter_test.rb +0 -126
- data/test/unit/theme_test.rb +0 -44
- data/test/unit/trackback_test.rb +0 -22
- data/test/unit/trigger_test.rb +0 -40
- data/test/unit/typo_deprecated_test.rb +0 -22
- data/test/unit/user_test.rb +0 -111
- data/themes/dirtylicious/about.markdown +0 -3
- 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 +0 -60
- data/themes/dirtylicious/preview.png +0 -0
- data/themes/dirtylicious/stylesheets/application.css +0 -327
- data/themes/dirtylicious/views/articles/_article.html.erb +0 -33
- data/themes/dirtylicious/views/articles/_comment.html.erb +0 -14
- data/themes/dirtylicious/views/articles/_comment_form.html.erb +0 -37
- data/themes/dirtylicious/views/articles/_comment_list.html.erb +0 -7
- data/themes/dirtylicious/views/articles/_trackback.html.erb +0 -9
- data/themes/dirtylicious/views/articles/comment_preview.html.erb +0 -10
- data/themes/dirtylicious/views/articles/index.html.erb +0 -5
- data/themes/dirtylicious/views/articles/read.html.erb +0 -42
- data/themes/dirtylicious/views/shared/_search.html.erb +0 -16
- data/themes/standard_issue/about.markdown +0 -5
- 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/spinner.gif +0 -0
- data/themes/standard_issue/layouts/default.html.erb +0 -59
- data/themes/standard_issue/preview.png +0 -0
- data/themes/standard_issue/stylesheets/application.css +0 -461
- data/themes/standard_issue/views/articles/_article.html.erb +0 -32
- data/themes/standard_issue/views/articles/_comment.html.erb +0 -12
- data/themes/standard_issue/views/articles/_comment_form.html.erb +0 -48
- data/themes/standard_issue/views/articles/_comment_list.html.erb +0 -7
- data/themes/standard_issue/views/articles/_trackback.html.erb +0 -9
- data/themes/standard_issue/views/articles/comment_preview.html.erb +0 -10
- data/themes/standard_issue/views/articles/index.html.erb +0 -5
- data/themes/standard_issue/views/articles/read.html.erb +0 -42
- data/themes/standard_issue/views/shared/_search.html.erb +0 -17
- data/vendor/jabber4r/CHANGES +0 -8
- data/vendor/jabber4r/LICENSE.txt +0 -12
- data/vendor/jabber4r/README +0 -180
- data/vendor/jabber4r/Rakefile.rb +0 -143
- data/vendor/jabber4r/lib/jabber4r/jabber4r.rb +0 -22
- data/vendor/jabber4r/lib/jabber4r/jid.rb +0 -93
- data/vendor/jabber4r/lib/jabber4r/protocol.rb +0 -1384
- data/vendor/jabber4r/lib/jabber4r/rexml_1.8_patch.rb +0 -16
- data/vendor/jabber4r/lib/jabber4r/roster.rb +0 -322
- data/vendor/jabber4r/lib/jabber4r/session.rb +0 -615
- data/vendor/jabber4r/lib/jabber4r/vcard.rb +0 -42
- data/vendor/plugins/haml/MIT-LICENSE +0 -20
- data/vendor/plugins/haml/REFERENCE +0 -662
- data/vendor/plugins/haml/Rakefile +0 -171
- data/vendor/plugins/haml/VERSION +0 -1
- data/vendor/plugins/haml/bin/haml +0 -18
- data/vendor/plugins/haml/init.rb +0 -3
- data/vendor/plugins/haml/lib/haml/buffer.rb +0 -224
- data/vendor/plugins/haml/lib/haml/engine.rb +0 -557
- data/vendor/plugins/haml/lib/haml/helpers.rb +0 -220
- data/vendor/plugins/haml/lib/haml/helpers/action_view_mods.rb +0 -54
- data/vendor/plugins/haml/lib/haml/template.rb +0 -138
- data/vendor/plugins/haml/test/benchmark.rb +0 -62
- data/vendor/plugins/haml/test/engine_test.rb +0 -93
- data/vendor/plugins/haml/test/helper_test.rb +0 -105
- data/vendor/plugins/haml/test/mocks/article.rb +0 -6
- data/vendor/plugins/haml/test/profile.rb +0 -45
- data/vendor/plugins/haml/test/results/content_for_layout.xhtml +0 -16
- data/vendor/plugins/haml/test/results/eval_suppressed.xhtml +0 -2
- data/vendor/plugins/haml/test/results/helpers.xhtml +0 -50
- data/vendor/plugins/haml/test/results/helpful.xhtml +0 -5
- data/vendor/plugins/haml/test/results/just_stuff.xhtml +0 -38
- data/vendor/plugins/haml/test/results/list.xhtml +0 -12
- data/vendor/plugins/haml/test/results/original_engine.xhtml +0 -24
- data/vendor/plugins/haml/test/results/partials.xhtml +0 -20
- data/vendor/plugins/haml/test/results/silent_script.xhtml +0 -74
- data/vendor/plugins/haml/test/results/standard.xhtml +0 -42
- data/vendor/plugins/haml/test/results/tag_parsing.xhtml +0 -28
- data/vendor/plugins/haml/test/results/very_basic.xhtml +0 -7
- data/vendor/plugins/haml/test/results/whitespace_handling.xhtml +0 -51
- data/vendor/plugins/haml/test/rhtml/standard.rhtml +0 -51
- data/vendor/plugins/haml/test/runner.rb +0 -15
- data/vendor/plugins/haml/test/template_test.rb +0 -137
- data/vendor/plugins/haml/test/templates/_partial.haml +0 -7
- data/vendor/plugins/haml/test/templates/_text_area.haml +0 -3
- data/vendor/plugins/haml/test/templates/content_for_layout.haml +0 -10
- data/vendor/plugins/haml/test/templates/eval_suppressed.haml +0 -5
- data/vendor/plugins/haml/test/templates/helpers.haml +0 -39
- data/vendor/plugins/haml/test/templates/helpful.haml +0 -6
- data/vendor/plugins/haml/test/templates/just_stuff.haml +0 -34
- data/vendor/plugins/haml/test/templates/list.haml +0 -12
- data/vendor/plugins/haml/test/templates/original_engine.haml +0 -17
- data/vendor/plugins/haml/test/templates/partialize.haml +0 -1
- data/vendor/plugins/haml/test/templates/partials.haml +0 -12
- data/vendor/plugins/haml/test/templates/silent_script.haml +0 -40
- data/vendor/plugins/haml/test/templates/standard.haml +0 -40
- data/vendor/plugins/haml/test/templates/tag_parsing.haml +0 -24
- data/vendor/plugins/haml/test/templates/very_basic.haml +0 -4
- data/vendor/plugins/haml/test/templates/whitespace_handling.haml +0 -66
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/testcase_spec_with_test_unit.rb +0 -20
- data/vendor/plugins/rspec/spec/spec/interop/test/unit/testsuite_adapter_spec_with_test_unit.rb +0 -34
- data/vendor/plugins/rspec_on_rails/generators/helpers/rails_identifier.rb +0 -16
- data/vendor/plugins/tiny_mce/README +0 -10
- data/vendor/plugins/tiny_mce/Rakefile +0 -22
- data/vendor/plugins/tiny_mce/TODO +0 -2
- data/vendor/plugins/tiny_mce/changelog +0 -1017
- data/vendor/plugins/tiny_mce/init.rb +0 -3
- data/vendor/plugins/tiny_mce/install.rb +0 -1
- data/vendor/plugins/tiny_mce/lib/tiny_mce.rb +0 -36
- data/vendor/plugins/tiny_mce/lib/tiny_mce_helper.rb +0 -48
- data/vendor/plugins/tiny_mce/tasks/tiny_mce.rake +0 -40
- data/vendor/plugins/tiny_mce/test/helper_testcase.rb +0 -38
- data/vendor/plugins/tiny_mce/test/tiny_mce_helper_test.rb +0 -67
- data/vendor/plugins/tiny_mce/test/tiny_mce_test.rb +0 -85
- data/vendor/plugins/tiny_mce/tiny_mce_options.yml +0 -121
@@ -0,0 +1,90 @@
|
|
1
|
+
module LoginSystem
|
2
|
+
protected
|
3
|
+
|
4
|
+
def logged_in?
|
5
|
+
current_user != :false
|
6
|
+
end
|
7
|
+
|
8
|
+
def current_user
|
9
|
+
@current_user ||= (login_from_session || login_from_basic_auth || login_from_cookie || :false)
|
10
|
+
end
|
11
|
+
|
12
|
+
def current_user=(new_user)
|
13
|
+
session[:user] = (new_user.nil? || new_user.is_a?(Symbol)) ? nil : new_user.id
|
14
|
+
@current_user = new_user
|
15
|
+
end
|
16
|
+
|
17
|
+
# If the current actions are in our access rule will be verifyed
|
18
|
+
def allowed?
|
19
|
+
return AccessControl.allowed_controllers(current_user.profile.label, current_user.profile.modules).include?(params[:controller])
|
20
|
+
end
|
21
|
+
|
22
|
+
def authorized?
|
23
|
+
logged_in? && allowed?
|
24
|
+
end
|
25
|
+
|
26
|
+
def login_required
|
27
|
+
authorized? || access_denied
|
28
|
+
end
|
29
|
+
|
30
|
+
def access_denied
|
31
|
+
respond_to do |accepts|
|
32
|
+
accepts.html do
|
33
|
+
#store_location
|
34
|
+
session[:return_to] = request.request_uri
|
35
|
+
if User.find(:first)
|
36
|
+
redirect_to :controller => "accounts/login", :action => :index
|
37
|
+
else
|
38
|
+
redirect_to :controller => "accounts/login", :action => :new
|
39
|
+
end
|
40
|
+
end
|
41
|
+
accepts.xml do
|
42
|
+
headers["Status"] = "Unauthorized"
|
43
|
+
headers["WWW-Authenticate"] = %(Basic realm="Web Password")
|
44
|
+
render :text => "Could't authenticate you", :status => '401 Unauthorized'
|
45
|
+
end
|
46
|
+
end
|
47
|
+
false
|
48
|
+
end
|
49
|
+
|
50
|
+
def store_location
|
51
|
+
session[:return_to] = request.request_uri
|
52
|
+
end
|
53
|
+
|
54
|
+
def redirect_back_or_default(default)
|
55
|
+
redirect_to(session[:return_to] || default)
|
56
|
+
session[:return_to] = nil
|
57
|
+
end
|
58
|
+
|
59
|
+
def self.included(base)
|
60
|
+
base.send :helper_method, :current_user, :logged_in?
|
61
|
+
end
|
62
|
+
|
63
|
+
def login_from_session
|
64
|
+
self.current_user = User.find_by_id(session[:user]) if session[:user]
|
65
|
+
end
|
66
|
+
|
67
|
+
def login_from_basic_auth
|
68
|
+
email, passwd = get_auth_data
|
69
|
+
self.current_user = User.authenticate(email, passwd) if email && passwd
|
70
|
+
end
|
71
|
+
|
72
|
+
# Called from #current_user. Finaly, attempt to login by an expiring token in the cookie.
|
73
|
+
def login_from_cookie
|
74
|
+
user = cookies[:auth_token] && User.find_by_remember_token(cookies[:auth_token])
|
75
|
+
if user && user.remember_token?
|
76
|
+
user.remember_me
|
77
|
+
cookies[:auth_token] = { :value => user.remember_token, :expires => user.remember_token_expires_at }
|
78
|
+
self.current_user = user
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
private
|
83
|
+
@@http_auth_headers = %w(X-HTTP_AUTHORIZATION HTTP_AUTHORIZATION Authorization)
|
84
|
+
# gets BASIC auth info
|
85
|
+
def get_auth_data
|
86
|
+
auth_key = @@http_auth_headers.detect { |h| request.env.has_key?(h) }
|
87
|
+
auth_data = request.env[auth_key].to_s.split unless auth_key.blank?
|
88
|
+
return auth_data && auth_data[0] == 'Basic' ? Base64.decode64(auth_data[1]).split(':')[0..1] : [nil, nil]
|
89
|
+
end
|
90
|
+
end
|
@@ -6,6 +6,6 @@ class XmlSidebar < Sidebar
|
|
6
6
|
setting :comments, true, :input_type => :checkbox
|
7
7
|
setting :trackbacks, false, :input_type => :checkbox
|
8
8
|
|
9
|
-
setting :format, '
|
9
|
+
setting :format, 'atom10', :input_type => :radio,
|
10
10
|
:choices => [["rss20", "RSS 2.0"], ["atom10", "Atom 1.0"]]
|
11
11
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: typo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.3.98
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- "Fr\xC3\xA9d\xC3\xA9ric de Villamil"
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-
|
12
|
+
date: 2008-06-29 00:00:00 +02:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -17,7 +17,7 @@ dependencies:
|
|
17
17
|
version_requirement:
|
18
18
|
version_requirements: !ruby/object:Gem::Requirement
|
19
19
|
requirements:
|
20
|
-
- - "
|
20
|
+
- - "="
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.0.2
|
23
23
|
version:
|
@@ -57,51 +57,6 @@ dependencies:
|
|
57
57
|
- !ruby/object:Gem::Version
|
58
58
|
version: 0.2.0
|
59
59
|
version:
|
60
|
-
- !ruby/object:Gem::Dependency
|
61
|
-
name: xmpp4r
|
62
|
-
version_requirement:
|
63
|
-
version_requirements: !ruby/object:Gem::Requirement
|
64
|
-
requirements:
|
65
|
-
- - ">="
|
66
|
-
- !ruby/object:Gem::Version
|
67
|
-
version: 0.3.1
|
68
|
-
version:
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: rcov
|
71
|
-
version_requirement:
|
72
|
-
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
requirements:
|
74
|
-
- - ">="
|
75
|
-
- !ruby/object:Gem::Version
|
76
|
-
version: 0.8.1
|
77
|
-
version:
|
78
|
-
- !ruby/object:Gem::Dependency
|
79
|
-
name: flexmock
|
80
|
-
version_requirement:
|
81
|
-
version_requirements: !ruby/object:Gem::Requirement
|
82
|
-
requirements:
|
83
|
-
- - ">="
|
84
|
-
- !ruby/object:Gem::Version
|
85
|
-
version: 0.8.0
|
86
|
-
version:
|
87
|
-
- !ruby/object:Gem::Dependency
|
88
|
-
name: rspec
|
89
|
-
version_requirement:
|
90
|
-
version_requirements: !ruby/object:Gem::Requirement
|
91
|
-
requirements:
|
92
|
-
- - ">="
|
93
|
-
- !ruby/object:Gem::Version
|
94
|
-
version: 1.1.1
|
95
|
-
version:
|
96
|
-
- !ruby/object:Gem::Dependency
|
97
|
-
name: ruby-debug
|
98
|
-
version_requirement:
|
99
|
-
version_requirements: !ruby/object:Gem::Requirement
|
100
|
-
requirements:
|
101
|
-
- - ">="
|
102
|
-
- !ruby/object:Gem::Version
|
103
|
-
version: 0.10.0
|
104
|
-
version:
|
105
60
|
description:
|
106
61
|
email: frederic@de-villamil.com
|
107
62
|
executables:
|
@@ -134,6 +89,7 @@ files:
|
|
134
89
|
- app/controllers/admin/resources_controller.rb
|
135
90
|
- app/controllers/admin/settings_controller.rb
|
136
91
|
- app/controllers/admin/sidebar_controller.rb
|
92
|
+
- app/controllers/admin/tags_controller.rb
|
137
93
|
- app/controllers/admin/textfilters_controller.rb
|
138
94
|
- app/controllers/admin/themes_controller.rb
|
139
95
|
- app/controllers/admin/trackbacks_controller.rb
|
@@ -214,6 +170,7 @@ files:
|
|
214
170
|
- app/models/profile.rb
|
215
171
|
- app/models/redirect.rb
|
216
172
|
- app/models/resource.rb
|
173
|
+
- app/models/right.rb
|
217
174
|
- app/models/sidebar.rb
|
218
175
|
- app/models/simple_cache.rb
|
219
176
|
- app/models/tag.rb
|
@@ -221,6 +178,7 @@ files:
|
|
221
178
|
- app/models/theme.rb
|
222
179
|
- app/models/trackback.rb
|
223
180
|
- app/models/trigger.rb
|
181
|
+
- app/models/url_policy.rb
|
224
182
|
- app/models/user.rb
|
225
183
|
- app/models/web_notifier.rb
|
226
184
|
- app/views
|
@@ -230,8 +188,6 @@ files:
|
|
230
188
|
- app/views/accounts/signup.html.erb
|
231
189
|
- app/views/accounts/welcome.html.erb
|
232
190
|
- app/views/admin
|
233
|
-
- app/views/admin/advanced
|
234
|
-
- app/views/admin/advanced/index.html.erb
|
235
191
|
- app/views/admin/base
|
236
192
|
- app/views/admin/base/_recent_comments.html.erb
|
237
193
|
- app/views/admin/base/_recent_trackbacks.html.erb
|
@@ -241,25 +197,20 @@ files:
|
|
241
197
|
- app/views/admin/blacklist/_quick_post.html.erb
|
242
198
|
- app/views/admin/blacklist/destroy.html.erb
|
243
199
|
- app/views/admin/blacklist/edit.html.erb
|
244
|
-
- app/views/admin/blacklist/
|
245
|
-
- app/views/admin/cache
|
246
|
-
- app/views/admin/cache/list.html.erb
|
200
|
+
- app/views/admin/blacklist/index.html.erb
|
247
201
|
- app/views/admin/categories
|
248
202
|
- app/views/admin/categories/_categories.html.erb
|
249
203
|
- app/views/admin/categories/_form.html.erb
|
250
204
|
- app/views/admin/categories/_quick_post.html.erb
|
251
205
|
- app/views/admin/categories/destroy.html.erb
|
252
206
|
- app/views/admin/categories/edit.html.erb
|
253
|
-
- app/views/admin/categories/
|
207
|
+
- app/views/admin/categories/index.html.erb
|
254
208
|
- app/views/admin/categories/reorder.html.erb
|
255
|
-
- app/views/admin/categories/show.html.erb
|
256
209
|
- app/views/admin/comments
|
257
210
|
- app/views/admin/comments/_form.html.erb
|
258
|
-
- app/views/admin/comments/comments.html.erb
|
259
211
|
- app/views/admin/comments/destroy.html.erb
|
260
212
|
- app/views/admin/comments/edit.html.erb
|
261
|
-
- app/views/admin/comments/
|
262
|
-
- app/views/admin/comments/new.html.erb
|
213
|
+
- app/views/admin/comments/index.html.erb
|
263
214
|
- app/views/admin/comments/show.html.erb
|
264
215
|
- app/views/admin/content
|
265
216
|
- app/views/admin/content/_articles.html.erb
|
@@ -267,20 +218,24 @@ files:
|
|
267
218
|
- app/views/admin/content/_form.html.erb
|
268
219
|
- app/views/admin/content/_pages.html.erb
|
269
220
|
- app/views/admin/content/_quick_post.html.erb
|
270
|
-
- app/views/admin/content/_show_categories.html.erb
|
271
221
|
- app/views/admin/content/_show_resources.html.erb
|
272
222
|
- app/views/admin/content/destroy.html.erb
|
273
223
|
- app/views/admin/content/edit.html.erb
|
274
|
-
- app/views/admin/content/
|
224
|
+
- app/views/admin/content/index.html.erb
|
275
225
|
- app/views/admin/content/new.html.erb
|
276
|
-
- app/views/admin/content/preview.html.erb
|
277
226
|
- app/views/admin/content/show.html.erb
|
278
227
|
- app/views/admin/dashboard
|
228
|
+
- app/views/admin/dashboard/_comments.html.erb
|
229
|
+
- app/views/admin/dashboard/_overview.html.erb
|
230
|
+
- app/views/admin/dashboard/_popular.html.erb
|
231
|
+
- app/views/admin/dashboard/_posts.html.erb
|
232
|
+
- app/views/admin/dashboard/_sysinfo.html.erb
|
233
|
+
- app/views/admin/dashboard/_welcome.html.erb
|
279
234
|
- app/views/admin/dashboard/index.html.erb
|
280
235
|
- app/views/admin/feedback
|
281
236
|
- app/views/admin/feedback/_button.html.erb
|
282
237
|
- app/views/admin/feedback/_item.html.erb
|
283
|
-
- app/views/admin/feedback/
|
238
|
+
- app/views/admin/feedback/index.html.erb
|
284
239
|
- app/views/admin/general
|
285
240
|
- app/views/admin/general/update_database.html.erb
|
286
241
|
- app/views/admin/pages
|
@@ -289,9 +244,8 @@ files:
|
|
289
244
|
- app/views/admin/pages/_quick_post.html.erb
|
290
245
|
- app/views/admin/pages/destroy.html.erb
|
291
246
|
- app/views/admin/pages/edit.html.erb
|
292
|
-
- app/views/admin/pages/
|
247
|
+
- app/views/admin/pages/index.html.erb
|
293
248
|
- app/views/admin/pages/new.html.erb
|
294
|
-
- app/views/admin/pages/preview.html.erb
|
295
249
|
- app/views/admin/pages/show.html.erb
|
296
250
|
- app/views/admin/resources
|
297
251
|
- app/views/admin/resources/_itunes_category_add.html.erb
|
@@ -302,7 +256,7 @@ files:
|
|
302
256
|
- app/views/admin/resources/_pages.html.erb
|
303
257
|
- app/views/admin/resources/_resources.html.erb
|
304
258
|
- app/views/admin/resources/destroy.html.erb
|
305
|
-
- app/views/admin/resources/
|
259
|
+
- app/views/admin/resources/index.html.erb
|
306
260
|
- app/views/admin/resources/new.html.erb
|
307
261
|
- app/views/admin/settings
|
308
262
|
- app/views/admin/settings/_submit.html.erb
|
@@ -325,13 +279,19 @@ files:
|
|
325
279
|
- app/views/admin/sidebar/publish.rjs
|
326
280
|
- app/views/admin/sidebar/remove.rjs
|
327
281
|
- app/views/admin/sidebar/set_active.rjs
|
282
|
+
- app/views/admin/tags
|
283
|
+
- app/views/admin/tags/_form.html.erb
|
284
|
+
- app/views/admin/tags/_tags.html.erb
|
285
|
+
- app/views/admin/tags/destroy.html.erb
|
286
|
+
- app/views/admin/tags/edit.html.erb
|
287
|
+
- app/views/admin/tags/index.html.erb
|
328
288
|
- app/views/admin/textfilters
|
329
289
|
- app/views/admin/textfilters/_form.html.erb
|
330
290
|
- app/views/admin/textfilters/_macros.html.erb
|
331
291
|
- app/views/admin/textfilters/_textfilters.html.erb
|
332
292
|
- app/views/admin/textfilters/destroy.html.erb
|
333
293
|
- app/views/admin/textfilters/edit.html.erb
|
334
|
-
- app/views/admin/textfilters/
|
294
|
+
- app/views/admin/textfilters/index.html.erb
|
335
295
|
- app/views/admin/textfilters/macro_help.html.erb
|
336
296
|
- app/views/admin/textfilters/new.html.erb
|
337
297
|
- app/views/admin/textfilters/preview.html.erb
|
@@ -344,17 +304,15 @@ files:
|
|
344
304
|
- app/views/admin/trackbacks/_form.html.erb
|
345
305
|
- app/views/admin/trackbacks/destroy.html.erb
|
346
306
|
- app/views/admin/trackbacks/edit.html.erb
|
347
|
-
- app/views/admin/trackbacks/
|
348
|
-
- app/views/admin/trackbacks/new.html.erb
|
307
|
+
- app/views/admin/trackbacks/index.html.erb
|
349
308
|
- app/views/admin/trackbacks/show.html.erb
|
350
309
|
- app/views/admin/users
|
351
310
|
- app/views/admin/users/_form.html.erb
|
352
311
|
- app/views/admin/users/_user.html.erb
|
353
312
|
- app/views/admin/users/destroy.html.erb
|
354
313
|
- app/views/admin/users/edit.html.erb
|
355
|
-
- app/views/admin/users/
|
314
|
+
- app/views/admin/users/index.html.erb
|
356
315
|
- app/views/admin/users/new.html.erb
|
357
|
-
- app/views/admin/users/show.html.erb
|
358
316
|
- app/views/articles
|
359
317
|
- app/views/articles/_article.html.erb
|
360
318
|
- app/views/articles/_atom_feed.atom.builder
|
@@ -378,7 +336,6 @@ files:
|
|
378
336
|
- app/views/layouts
|
379
337
|
- app/views/layouts/accounts.html.erb
|
380
338
|
- app/views/layouts/administration.html.erb
|
381
|
-
- app/views/layouts/minimal.html.erb
|
382
339
|
- app/views/layouts/sidebar.html.erb
|
383
340
|
- app/views/live
|
384
341
|
- app/views/live/search.html.erb
|
@@ -387,6 +344,7 @@ files:
|
|
387
344
|
- app/views/notification_mailer/_mail_header.html.erb
|
388
345
|
- app/views/notification_mailer/article.html.erb
|
389
346
|
- app/views/notification_mailer/comment.html.erb
|
347
|
+
- app/views/notification_mailer/notif_user.html.erb
|
390
348
|
- app/views/notification_mailer/trackback.html.erb
|
391
349
|
- app/views/redirect
|
392
350
|
- app/views/settings
|
@@ -423,8 +381,7 @@ files:
|
|
423
381
|
- app/views/xml/rsd.rxml
|
424
382
|
- bin
|
425
383
|
- bin/typo
|
426
|
-
- CHANGES-5.0
|
427
|
-
- components
|
384
|
+
- CHANGES-5.0.4
|
428
385
|
- config
|
429
386
|
- config/boot.rb
|
430
387
|
- config/database.yml.example
|
@@ -434,6 +391,9 @@ files:
|
|
434
391
|
- config/environments/production.rb
|
435
392
|
- config/environments/test.rb
|
436
393
|
- config/initializers
|
394
|
+
- config/initializers/access_rules.rb
|
395
|
+
- config/initializers/active_record_hacks.rb
|
396
|
+
- config/initializers/benchmark_hacks.rb
|
437
397
|
- config/initializers/mime_types.rb
|
438
398
|
- config/iTunes.yml
|
439
399
|
- config/lighttpd.conf
|
@@ -447,8 +407,6 @@ files:
|
|
447
407
|
- db/converters/rss.rb
|
448
408
|
- db/converters/s9y.rb
|
449
409
|
- db/converters/textpattern.rb
|
450
|
-
- db/converters/wordpress.rb
|
451
|
-
- db/converters/wordpress2.rb
|
452
410
|
- db/migrate
|
453
411
|
- db/migrate/001_initial_schema.rb
|
454
412
|
- db/migrate/002_add_user_email.rb
|
@@ -516,6 +474,9 @@ files:
|
|
516
474
|
- db/migrate/064_add_users_profile.rb
|
517
475
|
- db/migrate/065_add_users_rights.rb
|
518
476
|
- db/migrate/066_fix_profiles.rb
|
477
|
+
- db/migrate/067_remove_blog_ids.rb
|
478
|
+
- db/migrate/068_fix_grants.rb
|
479
|
+
- db/migrate/069_add_modules_to_profile.rb
|
519
480
|
- db/schema.mysql-v3.sql
|
520
481
|
- db/schema.mysql.sql
|
521
482
|
- db/schema.postgresql.sql
|
@@ -538,7 +499,12 @@ files:
|
|
538
499
|
- installer/rails_installer_defaults.yml
|
539
500
|
- lang
|
540
501
|
- lang/de_DE.rb
|
502
|
+
- lang/en_US.rb
|
503
|
+
- lang/es_MX.rb
|
541
504
|
- lang/fr_FR.rb
|
505
|
+
- lang/it_IT.rb
|
506
|
+
- lang/ja_JP.rb
|
507
|
+
- lang/pl_PL.rb
|
542
508
|
- lang/ro_RO.rb
|
543
509
|
- lib
|
544
510
|
- lib/backpack_api.rb
|
@@ -554,8 +520,6 @@ files:
|
|
554
520
|
- lib/generators/sidebar/templates/Rakefile
|
555
521
|
- lib/generators/sidebar/templates/sidebar.rb
|
556
522
|
- lib/generators/sidebar/templates/unit_test.rb
|
557
|
-
- lib/jabber_notify.rb
|
558
|
-
- lib/login_system.rb
|
559
523
|
- lib/memory_profiler.rb
|
560
524
|
- lib/migrator.rb
|
561
525
|
- lib/rails_patch
|
@@ -568,7 +532,6 @@ files:
|
|
568
532
|
- lib/spam_protection.rb
|
569
533
|
- lib/stateful.rb
|
570
534
|
- lib/tasks
|
571
|
-
- lib/tasks/rcov.rake
|
572
535
|
- lib/tasks/release.rake
|
573
536
|
- lib/tasks/schemas.rake
|
574
537
|
- lib/tasks/sweep_cache.rake
|
@@ -583,6 +546,7 @@ files:
|
|
583
546
|
- MAINTAINERS
|
584
547
|
- MIT-LICENSE
|
585
548
|
- public
|
549
|
+
- public/.DS_Store
|
586
550
|
- public/.htaccess
|
587
551
|
- public/404.html
|
588
552
|
- public/500.html
|
@@ -592,33 +556,22 @@ files:
|
|
592
556
|
- public/favicon.ico
|
593
557
|
- public/images
|
594
558
|
- public/images/admin
|
559
|
+
- public/images/admin/arrow_comment_group.gif
|
595
560
|
- public/images/admin/bc-bg.gif
|
596
|
-
- public/images/admin/bgdivider.gif
|
597
561
|
- public/images/admin/bgdivider.png
|
598
562
|
- public/images/admin/bgoff.png
|
599
|
-
- public/images/admin/bgoff2.png
|
600
|
-
- public/images/admin/bgon.png
|
601
563
|
- public/images/admin/bgover.png
|
602
564
|
- public/images/admin/bgselected.png
|
603
565
|
- public/images/admin/cancel.png
|
604
566
|
- public/images/admin/checked.png
|
605
567
|
- public/images/admin/delete.png
|
606
568
|
- public/images/admin/edit.png
|
607
|
-
- public/images/admin/foot.jpg
|
608
569
|
- public/images/admin/help.png
|
609
570
|
- public/images/admin/loginformbg.png
|
610
571
|
- public/images/admin/show.png
|
611
572
|
- public/images/admin/table-header-first.png
|
612
|
-
- public/images/admin/
|
613
|
-
- public/images/admin/table-header.png
|
614
|
-
- public/images/admin/top.gif
|
615
|
-
- public/images/admin/typo.gif
|
616
|
-
- public/images/admin/typologo.png
|
617
|
-
- public/images/azure
|
618
|
-
- public/images/bracket.gif
|
573
|
+
- public/images/admin/typologo.gif
|
619
574
|
- public/images/go.png
|
620
|
-
- public/images/header.jpg
|
621
|
-
- public/images/loading.gif
|
622
575
|
- public/images/overlay.png
|
623
576
|
- public/images/powered.gif
|
624
577
|
- public/images/spinner-blue.gif
|
@@ -630,187 +583,523 @@ files:
|
|
630
583
|
- public/javascripts/cookies.js
|
631
584
|
- public/javascripts/dragdrop.js
|
632
585
|
- public/javascripts/effects.js
|
586
|
+
- public/javascripts/fckcustom.js
|
587
|
+
- public/javascripts/fckeditor
|
588
|
+
- public/javascripts/fckeditor/editor
|
589
|
+
- public/javascripts/fckeditor/editor/_source
|
590
|
+
- public/javascripts/fckeditor/editor/_source/classes
|
591
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckcontextmenu.js
|
592
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckdataprocessor.js
|
593
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js
|
594
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js
|
595
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckdomrange.js
|
596
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckdomrange_gecko.js
|
597
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckdomrange_ie.js
|
598
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckdomrangeiterator.js
|
599
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckeditingarea.js
|
600
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckelementpath.js
|
601
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckenterkey.js
|
602
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckevents.js
|
603
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckicon.js
|
604
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckiecleanup.js
|
605
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckimagepreloader.js
|
606
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckkeystrokehandler.js
|
607
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckmenublock.js
|
608
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckmenublockpanel.js
|
609
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckmenuitem.js
|
610
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckpanel.js
|
611
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckplugin.js
|
612
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckspecialcombo.js
|
613
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckstyle.js
|
614
|
+
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbar.js
|
615
|
+
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js
|
616
|
+
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js
|
617
|
+
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbutton.js
|
618
|
+
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js
|
619
|
+
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js
|
620
|
+
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js
|
621
|
+
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js
|
622
|
+
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js
|
623
|
+
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js
|
624
|
+
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js
|
625
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckw3crange.js
|
626
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckxml.js
|
627
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckxml_gecko.js
|
628
|
+
- public/javascripts/fckeditor/editor/_source/classes/fckxml_ie.js
|
629
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses
|
630
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fck_othercommands.js
|
631
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js
|
632
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js
|
633
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fckfitwindow.js
|
634
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fckindentcommands.js
|
635
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fckjustifycommands.js
|
636
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fcklistcommands.js
|
637
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fcknamedcommand.js
|
638
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js
|
639
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js
|
640
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js
|
641
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fckshowblocks.js
|
642
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js
|
643
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js
|
644
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fckstylecommand.js
|
645
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fcktablecommand.js
|
646
|
+
- public/javascripts/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js
|
647
|
+
- public/javascripts/fckeditor/editor/_source/fckconstants.js
|
648
|
+
- public/javascripts/fckeditor/editor/_source/fckeditorapi.js
|
649
|
+
- public/javascripts/fckeditor/editor/_source/fckjscoreextensions.js
|
650
|
+
- public/javascripts/fckeditor/editor/_source/fckscriptloader.js
|
651
|
+
- public/javascripts/fckeditor/editor/_source/internals
|
652
|
+
- public/javascripts/fckeditor/editor/_source/internals/fck.js
|
653
|
+
- public/javascripts/fckeditor/editor/_source/internals/fck_contextmenu.js
|
654
|
+
- public/javascripts/fckeditor/editor/_source/internals/fck_gecko.js
|
655
|
+
- public/javascripts/fckeditor/editor/_source/internals/fck_ie.js
|
656
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckbrowserinfo.js
|
657
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckcodeformatter.js
|
658
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckcommands.js
|
659
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckconfig.js
|
660
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckdebug.js
|
661
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckdialog.js
|
662
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckdialog_gecko.js
|
663
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckdialog_ie.js
|
664
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckdocumentprocessor.js
|
665
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckdomtools.js
|
666
|
+
- public/javascripts/fckeditor/editor/_source/internals/fcklanguagemanager.js
|
667
|
+
- public/javascripts/fckeditor/editor/_source/internals/fcklisthandler.js
|
668
|
+
- public/javascripts/fckeditor/editor/_source/internals/fcklistslib.js
|
669
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckplugins.js
|
670
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckregexlib.js
|
671
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckselection.js
|
672
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckselection_gecko.js
|
673
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckselection_ie.js
|
674
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckstyles.js
|
675
|
+
- public/javascripts/fckeditor/editor/_source/internals/fcktablehandler.js
|
676
|
+
- public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_gecko.js
|
677
|
+
- public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_ie.js
|
678
|
+
- public/javascripts/fckeditor/editor/_source/internals/fcktoolbaritems.js
|
679
|
+
- public/javascripts/fckeditor/editor/_source/internals/fcktoolbarset.js
|
680
|
+
- public/javascripts/fckeditor/editor/_source/internals/fcktools.js
|
681
|
+
- public/javascripts/fckeditor/editor/_source/internals/fcktools_gecko.js
|
682
|
+
- public/javascripts/fckeditor/editor/_source/internals/fcktools_ie.js
|
683
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckundo.js
|
684
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckurlparams.js
|
685
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckxhtml.js
|
686
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckxhtml_gecko.js
|
687
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckxhtml_ie.js
|
688
|
+
- public/javascripts/fckeditor/editor/_source/internals/fckxhtmlentities.js
|
689
|
+
- public/javascripts/fckeditor/editor/css
|
690
|
+
- public/javascripts/fckeditor/editor/css/behaviors
|
691
|
+
- public/javascripts/fckeditor/editor/css/behaviors/disablehandles.htc
|
692
|
+
- public/javascripts/fckeditor/editor/css/behaviors/showtableborders.htc
|
693
|
+
- public/javascripts/fckeditor/editor/css/fck_editorarea.css
|
694
|
+
- public/javascripts/fckeditor/editor/css/fck_internal.css
|
695
|
+
- public/javascripts/fckeditor/editor/css/fck_showtableborders_gecko.css
|
696
|
+
- public/javascripts/fckeditor/editor/css/images
|
697
|
+
- public/javascripts/fckeditor/editor/css/images/block_address.png
|
698
|
+
- public/javascripts/fckeditor/editor/css/images/block_blockquote.png
|
699
|
+
- public/javascripts/fckeditor/editor/css/images/block_div.png
|
700
|
+
- public/javascripts/fckeditor/editor/css/images/block_h1.png
|
701
|
+
- public/javascripts/fckeditor/editor/css/images/block_h2.png
|
702
|
+
- public/javascripts/fckeditor/editor/css/images/block_h3.png
|
703
|
+
- public/javascripts/fckeditor/editor/css/images/block_h4.png
|
704
|
+
- public/javascripts/fckeditor/editor/css/images/block_h5.png
|
705
|
+
- public/javascripts/fckeditor/editor/css/images/block_h6.png
|
706
|
+
- public/javascripts/fckeditor/editor/css/images/block_p.png
|
707
|
+
- public/javascripts/fckeditor/editor/css/images/block_pre.png
|
708
|
+
- public/javascripts/fckeditor/editor/css/images/fck_anchor.gif
|
709
|
+
- public/javascripts/fckeditor/editor/css/images/fck_flashlogo.gif
|
710
|
+
- public/javascripts/fckeditor/editor/css/images/fck_hiddenfield.gif
|
711
|
+
- public/javascripts/fckeditor/editor/css/images/fck_pagebreak.gif
|
712
|
+
- public/javascripts/fckeditor/editor/dialog
|
713
|
+
- public/javascripts/fckeditor/editor/dialog/common
|
714
|
+
- public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.css
|
715
|
+
- public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.js
|
716
|
+
- public/javascripts/fckeditor/editor/dialog/common/images
|
717
|
+
- public/javascripts/fckeditor/editor/dialog/common/images/locked.gif
|
718
|
+
- public/javascripts/fckeditor/editor/dialog/common/images/reset.gif
|
719
|
+
- public/javascripts/fckeditor/editor/dialog/common/images/unlocked.gif
|
720
|
+
- public/javascripts/fckeditor/editor/dialog/fck_about
|
721
|
+
- public/javascripts/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif
|
722
|
+
- public/javascripts/fckeditor/editor/dialog/fck_about/logo_fredck.gif
|
723
|
+
- public/javascripts/fckeditor/editor/dialog/fck_about.html
|
724
|
+
- public/javascripts/fckeditor/editor/dialog/fck_anchor.html
|
725
|
+
- public/javascripts/fckeditor/editor/dialog/fck_button.html
|
726
|
+
- public/javascripts/fckeditor/editor/dialog/fck_checkbox.html
|
727
|
+
- public/javascripts/fckeditor/editor/dialog/fck_colorselector.html
|
728
|
+
- public/javascripts/fckeditor/editor/dialog/fck_docprops
|
729
|
+
- public/javascripts/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html
|
730
|
+
- public/javascripts/fckeditor/editor/dialog/fck_docprops.html
|
731
|
+
- public/javascripts/fckeditor/editor/dialog/fck_find.html
|
732
|
+
- public/javascripts/fckeditor/editor/dialog/fck_flash
|
733
|
+
- public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash.js
|
734
|
+
- public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html
|
735
|
+
- public/javascripts/fckeditor/editor/dialog/fck_flash.html
|
736
|
+
- public/javascripts/fckeditor/editor/dialog/fck_form.html
|
737
|
+
- public/javascripts/fckeditor/editor/dialog/fck_hiddenfield.html
|
738
|
+
- public/javascripts/fckeditor/editor/dialog/fck_image
|
739
|
+
- public/javascripts/fckeditor/editor/dialog/fck_image/fck_image.js
|
740
|
+
- public/javascripts/fckeditor/editor/dialog/fck_image/fck_image_preview.html
|
741
|
+
- public/javascripts/fckeditor/editor/dialog/fck_image.html
|
742
|
+
- public/javascripts/fckeditor/editor/dialog/fck_link
|
743
|
+
- public/javascripts/fckeditor/editor/dialog/fck_link/fck_link.js
|
744
|
+
- public/javascripts/fckeditor/editor/dialog/fck_link.html
|
745
|
+
- public/javascripts/fckeditor/editor/dialog/fck_listprop.html
|
746
|
+
- public/javascripts/fckeditor/editor/dialog/fck_paste.html
|
747
|
+
- public/javascripts/fckeditor/editor/dialog/fck_radiobutton.html
|
748
|
+
- public/javascripts/fckeditor/editor/dialog/fck_replace.html
|
749
|
+
- public/javascripts/fckeditor/editor/dialog/fck_select
|
750
|
+
- public/javascripts/fckeditor/editor/dialog/fck_select/fck_select.js
|
751
|
+
- public/javascripts/fckeditor/editor/dialog/fck_select.html
|
752
|
+
- public/javascripts/fckeditor/editor/dialog/fck_smiley.html
|
753
|
+
- public/javascripts/fckeditor/editor/dialog/fck_source.html
|
754
|
+
- public/javascripts/fckeditor/editor/dialog/fck_specialchar.html
|
755
|
+
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages
|
756
|
+
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages
|
757
|
+
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html
|
758
|
+
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html
|
759
|
+
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js
|
760
|
+
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts
|
761
|
+
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm
|
762
|
+
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php
|
763
|
+
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl
|
764
|
+
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html
|
765
|
+
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js
|
766
|
+
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css
|
767
|
+
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js
|
768
|
+
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages.html
|
769
|
+
- public/javascripts/fckeditor/editor/dialog/fck_table.html
|
770
|
+
- public/javascripts/fckeditor/editor/dialog/fck_tablecell.html
|
771
|
+
- public/javascripts/fckeditor/editor/dialog/fck_template
|
772
|
+
- public/javascripts/fckeditor/editor/dialog/fck_template/images
|
773
|
+
- public/javascripts/fckeditor/editor/dialog/fck_template/images/template1.gif
|
774
|
+
- public/javascripts/fckeditor/editor/dialog/fck_template/images/template2.gif
|
775
|
+
- public/javascripts/fckeditor/editor/dialog/fck_template/images/template3.gif
|
776
|
+
- public/javascripts/fckeditor/editor/dialog/fck_template.html
|
777
|
+
- public/javascripts/fckeditor/editor/dialog/fck_textarea.html
|
778
|
+
- public/javascripts/fckeditor/editor/dialog/fck_textfield.html
|
779
|
+
- public/javascripts/fckeditor/editor/dtd
|
780
|
+
- public/javascripts/fckeditor/editor/dtd/fck_dtd_test.html
|
781
|
+
- public/javascripts/fckeditor/editor/dtd/fck_xhtml10strict.js
|
782
|
+
- public/javascripts/fckeditor/editor/dtd/fck_xhtml10transitional.js
|
783
|
+
- public/javascripts/fckeditor/editor/fckdebug.html
|
784
|
+
- public/javascripts/fckeditor/editor/fckdialog.html
|
785
|
+
- public/javascripts/fckeditor/editor/fckeditor.html
|
786
|
+
- public/javascripts/fckeditor/editor/fckeditor.original.html
|
787
|
+
- public/javascripts/fckeditor/editor/filemanager
|
788
|
+
- public/javascripts/fckeditor/editor/filemanager/browser
|
789
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default
|
790
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/browser.css
|
791
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/browser.html
|
792
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/frmactualfolder.html
|
793
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html
|
794
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/frmfolders.html
|
795
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourceslist.html
|
796
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourcetype.html
|
797
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/frmupload.html
|
798
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images
|
799
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif
|
800
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/Folder.gif
|
801
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/Folder32.gif
|
802
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif
|
803
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif
|
804
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif
|
805
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons
|
806
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32
|
807
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif
|
808
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif
|
809
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif
|
810
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif
|
811
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif
|
812
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif
|
813
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif
|
814
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif
|
815
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif
|
816
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif
|
817
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif
|
818
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif
|
819
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif
|
820
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif
|
821
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif
|
822
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif
|
823
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif
|
824
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif
|
825
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif
|
826
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif
|
827
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif
|
828
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif
|
829
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif
|
830
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif
|
831
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif
|
832
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif
|
833
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif
|
834
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif
|
835
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif
|
836
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif
|
837
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif
|
838
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif
|
839
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif
|
840
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif
|
841
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif
|
842
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif
|
843
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif
|
844
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif
|
845
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/html.gif
|
846
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif
|
847
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/js.gif
|
848
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif
|
849
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif
|
850
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif
|
851
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/png.gif
|
852
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif
|
853
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif
|
854
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif
|
855
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif
|
856
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif
|
857
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif
|
858
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif
|
859
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif
|
860
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif
|
861
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/spacer.gif
|
862
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/js
|
863
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/js/common.js
|
864
|
+
- public/javascripts/fckeditor/editor/filemanager/browser/default/js/fckxml.js
|
865
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors
|
866
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/asp
|
867
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/asp/basexml.asp
|
868
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/asp/class_upload.asp
|
869
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/asp/commands.asp
|
870
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/asp/config.asp
|
871
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/asp/connector.asp
|
872
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/asp/io.asp
|
873
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/asp/upload.asp
|
874
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/asp/util.asp
|
875
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/aspx
|
876
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/aspx/connector.aspx
|
877
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/aspx/upload.aspx
|
878
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/cfm
|
879
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_connector.cfm
|
880
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf5_upload.cfm
|
881
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_basexml.cfm
|
882
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_commands.cfm
|
883
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_connector.cfm
|
884
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_io.cfm
|
885
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_upload.cfm
|
886
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/cfm/cf_util.cfm
|
887
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/cfm/config.cfm
|
888
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/cfm/connector.cfm
|
889
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/cfm/image.cfc
|
890
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/cfm/ImageObject.cfc
|
891
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/cfm/upload.cfm
|
892
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/lasso
|
893
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/lasso/config.lasso
|
894
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/lasso/connector.lasso
|
895
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/lasso/upload.lasso
|
896
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/perl
|
897
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/perl/basexml.pl
|
898
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/perl/commands.pl
|
899
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/perl/connector.cgi
|
900
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/perl/io.pl
|
901
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload.cgi
|
902
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload_fck.pl
|
903
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/perl/util.pl
|
904
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/php
|
905
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/php/basexml.php
|
906
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/php/commands.php
|
907
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/php/config.php
|
908
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/php/connector.php
|
909
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/php/io.php
|
910
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/php/phpcompat.php
|
911
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/php/upload.php
|
912
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/php/util.php
|
913
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/py
|
914
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/py/config.py
|
915
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/py/connector.py
|
916
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/py/fckcommands.py
|
917
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/py/fckconnector.py
|
918
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/py/fckoutput.py
|
919
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/py/fckutil.py
|
920
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/py/htaccess.txt
|
921
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/py/upload.py
|
922
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/py/wsgi.py
|
923
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/py/zope.py
|
924
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/test.html
|
925
|
+
- public/javascripts/fckeditor/editor/filemanager/connectors/uploadtest.html
|
926
|
+
- public/javascripts/fckeditor/editor/images
|
927
|
+
- public/javascripts/fckeditor/editor/images/anchor.gif
|
928
|
+
- public/javascripts/fckeditor/editor/images/arrow_ltr.gif
|
929
|
+
- public/javascripts/fckeditor/editor/images/arrow_rtl.gif
|
930
|
+
- public/javascripts/fckeditor/editor/images/smiley
|
931
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn
|
932
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/angel_smile.gif
|
933
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/angry_smile.gif
|
934
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/broken_heart.gif
|
935
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/cake.gif
|
936
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/confused_smile.gif
|
937
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/cry_smile.gif
|
938
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/devil_smile.gif
|
939
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/embaressed_smile.gif
|
940
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/envelope.gif
|
941
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/heart.gif
|
942
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/kiss.gif
|
943
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/lightbulb.gif
|
944
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/omg_smile.gif
|
945
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/regular_smile.gif
|
946
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/sad_smile.gif
|
947
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/shades_smile.gif
|
948
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/teeth_smile.gif
|
949
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/thumbs_down.gif
|
950
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/thumbs_up.gif
|
951
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/tounge_smile.gif
|
952
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif
|
953
|
+
- public/javascripts/fckeditor/editor/images/smiley/msn/wink_smile.gif
|
954
|
+
- public/javascripts/fckeditor/editor/images/spacer.gif
|
955
|
+
- public/javascripts/fckeditor/editor/js
|
956
|
+
- public/javascripts/fckeditor/editor/js/fckeditorcode_gecko.js
|
957
|
+
- public/javascripts/fckeditor/editor/js/fckeditorcode_ie.js
|
958
|
+
- public/javascripts/fckeditor/editor/lang
|
959
|
+
- public/javascripts/fckeditor/editor/lang/_translationstatus.txt
|
960
|
+
- public/javascripts/fckeditor/editor/lang/af.js
|
961
|
+
- public/javascripts/fckeditor/editor/lang/ar.js
|
962
|
+
- public/javascripts/fckeditor/editor/lang/bg.js
|
963
|
+
- public/javascripts/fckeditor/editor/lang/bn.js
|
964
|
+
- public/javascripts/fckeditor/editor/lang/bs.js
|
965
|
+
- public/javascripts/fckeditor/editor/lang/ca.js
|
966
|
+
- public/javascripts/fckeditor/editor/lang/cs.js
|
967
|
+
- public/javascripts/fckeditor/editor/lang/da.js
|
968
|
+
- public/javascripts/fckeditor/editor/lang/de.js
|
969
|
+
- public/javascripts/fckeditor/editor/lang/el.js
|
970
|
+
- public/javascripts/fckeditor/editor/lang/en-au.js
|
971
|
+
- public/javascripts/fckeditor/editor/lang/en-ca.js
|
972
|
+
- public/javascripts/fckeditor/editor/lang/en-uk.js
|
973
|
+
- public/javascripts/fckeditor/editor/lang/en.js
|
974
|
+
- public/javascripts/fckeditor/editor/lang/eo.js
|
975
|
+
- public/javascripts/fckeditor/editor/lang/es.js
|
976
|
+
- public/javascripts/fckeditor/editor/lang/et.js
|
977
|
+
- public/javascripts/fckeditor/editor/lang/eu.js
|
978
|
+
- public/javascripts/fckeditor/editor/lang/fa.js
|
979
|
+
- public/javascripts/fckeditor/editor/lang/fi.js
|
980
|
+
- public/javascripts/fckeditor/editor/lang/fo.js
|
981
|
+
- public/javascripts/fckeditor/editor/lang/fr.js
|
982
|
+
- public/javascripts/fckeditor/editor/lang/gl.js
|
983
|
+
- public/javascripts/fckeditor/editor/lang/he.js
|
984
|
+
- public/javascripts/fckeditor/editor/lang/hi.js
|
985
|
+
- public/javascripts/fckeditor/editor/lang/hr.js
|
986
|
+
- public/javascripts/fckeditor/editor/lang/hu.js
|
987
|
+
- public/javascripts/fckeditor/editor/lang/it.js
|
988
|
+
- public/javascripts/fckeditor/editor/lang/ja.js
|
989
|
+
- public/javascripts/fckeditor/editor/lang/km.js
|
990
|
+
- public/javascripts/fckeditor/editor/lang/ko.js
|
991
|
+
- public/javascripts/fckeditor/editor/lang/lt.js
|
992
|
+
- public/javascripts/fckeditor/editor/lang/lv.js
|
993
|
+
- public/javascripts/fckeditor/editor/lang/mn.js
|
994
|
+
- public/javascripts/fckeditor/editor/lang/ms.js
|
995
|
+
- public/javascripts/fckeditor/editor/lang/nb.js
|
996
|
+
- public/javascripts/fckeditor/editor/lang/nl.js
|
997
|
+
- public/javascripts/fckeditor/editor/lang/no.js
|
998
|
+
- public/javascripts/fckeditor/editor/lang/pl.js
|
999
|
+
- public/javascripts/fckeditor/editor/lang/pt-br.js
|
1000
|
+
- public/javascripts/fckeditor/editor/lang/pt.js
|
1001
|
+
- public/javascripts/fckeditor/editor/lang/ro.js
|
1002
|
+
- public/javascripts/fckeditor/editor/lang/ru.js
|
1003
|
+
- public/javascripts/fckeditor/editor/lang/sk.js
|
1004
|
+
- public/javascripts/fckeditor/editor/lang/sl.js
|
1005
|
+
- public/javascripts/fckeditor/editor/lang/sr-latn.js
|
1006
|
+
- public/javascripts/fckeditor/editor/lang/sr.js
|
1007
|
+
- public/javascripts/fckeditor/editor/lang/sv.js
|
1008
|
+
- public/javascripts/fckeditor/editor/lang/th.js
|
1009
|
+
- public/javascripts/fckeditor/editor/lang/tr.js
|
1010
|
+
- public/javascripts/fckeditor/editor/lang/uk.js
|
1011
|
+
- public/javascripts/fckeditor/editor/lang/vi.js
|
1012
|
+
- public/javascripts/fckeditor/editor/lang/zh-cn.js
|
1013
|
+
- public/javascripts/fckeditor/editor/lang/zh.js
|
1014
|
+
- public/javascripts/fckeditor/editor/plugins
|
1015
|
+
- public/javascripts/fckeditor/editor/plugins/autogrow
|
1016
|
+
- public/javascripts/fckeditor/editor/plugins/autogrow/fckplugin.js
|
1017
|
+
- public/javascripts/fckeditor/editor/plugins/bbcode
|
1018
|
+
- public/javascripts/fckeditor/editor/plugins/bbcode/_sample
|
1019
|
+
- public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.config.js
|
1020
|
+
- public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.html
|
1021
|
+
- public/javascripts/fckeditor/editor/plugins/bbcode/fckplugin.js
|
1022
|
+
- public/javascripts/fckeditor/editor/plugins/dragresizetable
|
1023
|
+
- public/javascripts/fckeditor/editor/plugins/dragresizetable/fckplugin.js
|
1024
|
+
- public/javascripts/fckeditor/editor/plugins/placeholder
|
1025
|
+
- public/javascripts/fckeditor/editor/plugins/placeholder/fck_placeholder.html
|
1026
|
+
- public/javascripts/fckeditor/editor/plugins/placeholder/fckplugin.js
|
1027
|
+
- public/javascripts/fckeditor/editor/plugins/placeholder/lang
|
1028
|
+
- public/javascripts/fckeditor/editor/plugins/placeholder/lang/de.js
|
1029
|
+
- public/javascripts/fckeditor/editor/plugins/placeholder/lang/en.js
|
1030
|
+
- public/javascripts/fckeditor/editor/plugins/placeholder/lang/fr.js
|
1031
|
+
- public/javascripts/fckeditor/editor/plugins/placeholder/lang/it.js
|
1032
|
+
- public/javascripts/fckeditor/editor/plugins/placeholder/lang/pl.js
|
1033
|
+
- public/javascripts/fckeditor/editor/plugins/placeholder/placeholder.gif
|
1034
|
+
- public/javascripts/fckeditor/editor/plugins/simplecommands
|
1035
|
+
- public/javascripts/fckeditor/editor/plugins/simplecommands/fckplugin.js
|
1036
|
+
- public/javascripts/fckeditor/editor/plugins/tablecommands
|
1037
|
+
- public/javascripts/fckeditor/editor/plugins/tablecommands/fckplugin.js
|
1038
|
+
- public/javascripts/fckeditor/editor/skins
|
1039
|
+
- public/javascripts/fckeditor/editor/skins/_fckviewstrips.html
|
1040
|
+
- public/javascripts/fckeditor/editor/skins/default
|
1041
|
+
- public/javascripts/fckeditor/editor/skins/default/fck_dialog.css
|
1042
|
+
- public/javascripts/fckeditor/editor/skins/default/fck_editor.css
|
1043
|
+
- public/javascripts/fckeditor/editor/skins/default/fck_strip.gif
|
1044
|
+
- public/javascripts/fckeditor/editor/skins/default/images
|
1045
|
+
- public/javascripts/fckeditor/editor/skins/default/images/toolbar.arrowright.gif
|
1046
|
+
- public/javascripts/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif
|
1047
|
+
- public/javascripts/fckeditor/editor/skins/default/images/toolbar.collapse.gif
|
1048
|
+
- public/javascripts/fckeditor/editor/skins/default/images/toolbar.end.gif
|
1049
|
+
- public/javascripts/fckeditor/editor/skins/default/images/toolbar.expand.gif
|
1050
|
+
- public/javascripts/fckeditor/editor/skins/default/images/toolbar.separator.gif
|
1051
|
+
- public/javascripts/fckeditor/editor/skins/default/images/toolbar.start.gif
|
1052
|
+
- public/javascripts/fckeditor/editor/skins/office2003
|
1053
|
+
- public/javascripts/fckeditor/editor/skins/office2003/fck_dialog.css
|
1054
|
+
- public/javascripts/fckeditor/editor/skins/office2003/fck_editor.css
|
1055
|
+
- public/javascripts/fckeditor/editor/skins/office2003/fck_strip.gif
|
1056
|
+
- public/javascripts/fckeditor/editor/skins/office2003/images
|
1057
|
+
- public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif
|
1058
|
+
- public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.bg.gif
|
1059
|
+
- public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif
|
1060
|
+
- public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif
|
1061
|
+
- public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.end.gif
|
1062
|
+
- public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.expand.gif
|
1063
|
+
- public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.separator.gif
|
1064
|
+
- public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.start.gif
|
1065
|
+
- public/javascripts/fckeditor/editor/skins/silver
|
1066
|
+
- public/javascripts/fckeditor/editor/skins/silver/fck_dialog.css
|
1067
|
+
- public/javascripts/fckeditor/editor/skins/silver/fck_editor.css
|
1068
|
+
- public/javascripts/fckeditor/editor/skins/silver/fck_strip.gif
|
1069
|
+
- public/javascripts/fckeditor/editor/skins/silver/images
|
1070
|
+
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif
|
1071
|
+
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif
|
1072
|
+
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif
|
1073
|
+
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.collapse.gif
|
1074
|
+
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.end.gif
|
1075
|
+
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.expand.gif
|
1076
|
+
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.separator.gif
|
1077
|
+
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.start.gif
|
1078
|
+
- public/javascripts/fckeditor/fckconfig.js
|
1079
|
+
- public/javascripts/fckeditor/fckeditor.afp
|
1080
|
+
- public/javascripts/fckeditor/fckeditor.asp
|
1081
|
+
- public/javascripts/fckeditor/fckeditor.cfc
|
1082
|
+
- public/javascripts/fckeditor/fckeditor.cfm
|
1083
|
+
- public/javascripts/fckeditor/fckeditor.js
|
1084
|
+
- public/javascripts/fckeditor/fckeditor.lasso
|
1085
|
+
- public/javascripts/fckeditor/fckeditor.py
|
1086
|
+
- public/javascripts/fckeditor/fckpackager.xml
|
1087
|
+
- public/javascripts/fckeditor/fckstyles.xml
|
1088
|
+
- public/javascripts/fckeditor/fcktemplates.xml
|
1089
|
+
- public/javascripts/fckeditor/license.txt
|
1090
|
+
- public/javascripts/lang
|
1091
|
+
- public/javascripts/lang/default.js
|
1092
|
+
- public/javascripts/lang/fr_FR.js
|
633
1093
|
- public/javascripts/lightbox.js
|
634
1094
|
- public/javascripts/prototype.js
|
635
1095
|
- public/javascripts/scriptaculous.js
|
636
1096
|
- public/javascripts/slider.js
|
637
|
-
- public/javascripts/tiny_mce
|
638
|
-
- public/javascripts/tiny_mce/langs
|
639
|
-
- public/javascripts/tiny_mce/langs/en.js
|
640
|
-
- public/javascripts/tiny_mce/license.txt
|
641
|
-
- public/javascripts/tiny_mce/plugins
|
642
|
-
- public/javascripts/tiny_mce/plugins/advimage
|
643
|
-
- public/javascripts/tiny_mce/plugins/advimage/css
|
644
|
-
- public/javascripts/tiny_mce/plugins/advimage/css/advimage.css
|
645
|
-
- public/javascripts/tiny_mce/plugins/advimage/editor_plugin.js
|
646
|
-
- public/javascripts/tiny_mce/plugins/advimage/editor_plugin_src.js
|
647
|
-
- public/javascripts/tiny_mce/plugins/advimage/image.htm
|
648
|
-
- public/javascripts/tiny_mce/plugins/advimage/img
|
649
|
-
- public/javascripts/tiny_mce/plugins/advimage/img/sample.gif
|
650
|
-
- public/javascripts/tiny_mce/plugins/advimage/js
|
651
|
-
- public/javascripts/tiny_mce/plugins/advimage/js/image.js
|
652
|
-
- public/javascripts/tiny_mce/plugins/advimage/langs
|
653
|
-
- public/javascripts/tiny_mce/plugins/advimage/langs/en_dlg.js
|
654
|
-
- public/javascripts/tiny_mce/plugins/advlink
|
655
|
-
- public/javascripts/tiny_mce/plugins/advlink/css
|
656
|
-
- public/javascripts/tiny_mce/plugins/advlink/css/advlink.css
|
657
|
-
- public/javascripts/tiny_mce/plugins/advlink/editor_plugin.js
|
658
|
-
- public/javascripts/tiny_mce/plugins/advlink/editor_plugin_src.js
|
659
|
-
- public/javascripts/tiny_mce/plugins/advlink/js
|
660
|
-
- public/javascripts/tiny_mce/plugins/advlink/js/advlink.js
|
661
|
-
- public/javascripts/tiny_mce/plugins/advlink/langs
|
662
|
-
- public/javascripts/tiny_mce/plugins/advlink/langs/en_dlg.js
|
663
|
-
- public/javascripts/tiny_mce/plugins/advlink/link.htm
|
664
|
-
- public/javascripts/tiny_mce/plugins/autosave
|
665
|
-
- public/javascripts/tiny_mce/plugins/autosave/editor_plugin.js
|
666
|
-
- public/javascripts/tiny_mce/plugins/autosave/editor_plugin_src.js
|
667
|
-
- public/javascripts/tiny_mce/plugins/contextmenu
|
668
|
-
- public/javascripts/tiny_mce/plugins/contextmenu/editor_plugin.js
|
669
|
-
- public/javascripts/tiny_mce/plugins/contextmenu/editor_plugin_src.js
|
670
|
-
- public/javascripts/tiny_mce/plugins/emotions
|
671
|
-
- public/javascripts/tiny_mce/plugins/emotions/editor_plugin.js
|
672
|
-
- public/javascripts/tiny_mce/plugins/emotions/editor_plugin_src.js
|
673
|
-
- public/javascripts/tiny_mce/plugins/emotions/emotions.htm
|
674
|
-
- public/javascripts/tiny_mce/plugins/emotions/img
|
675
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-cool.gif
|
676
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-cry.gif
|
677
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif
|
678
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif
|
679
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-frown.gif
|
680
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif
|
681
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif
|
682
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif
|
683
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif
|
684
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif
|
685
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-smile.gif
|
686
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif
|
687
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif
|
688
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif
|
689
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-wink.gif
|
690
|
-
- public/javascripts/tiny_mce/plugins/emotions/img/smiley-yell.gif
|
691
|
-
- public/javascripts/tiny_mce/plugins/emotions/js
|
692
|
-
- public/javascripts/tiny_mce/plugins/emotions/js/emotions.js
|
693
|
-
- public/javascripts/tiny_mce/plugins/emotions/langs
|
694
|
-
- public/javascripts/tiny_mce/plugins/emotions/langs/en_dlg.js
|
695
|
-
- public/javascripts/tiny_mce/plugins/media
|
696
|
-
- public/javascripts/tiny_mce/plugins/media/css
|
697
|
-
- public/javascripts/tiny_mce/plugins/media/css/content.css
|
698
|
-
- public/javascripts/tiny_mce/plugins/media/css/media.css
|
699
|
-
- public/javascripts/tiny_mce/plugins/media/editor_plugin.js
|
700
|
-
- public/javascripts/tiny_mce/plugins/media/editor_plugin_src.js
|
701
|
-
- public/javascripts/tiny_mce/plugins/media/img
|
702
|
-
- public/javascripts/tiny_mce/plugins/media/img/flash.gif
|
703
|
-
- public/javascripts/tiny_mce/plugins/media/img/flv_player.swf
|
704
|
-
- public/javascripts/tiny_mce/plugins/media/img/quicktime.gif
|
705
|
-
- public/javascripts/tiny_mce/plugins/media/img/realmedia.gif
|
706
|
-
- public/javascripts/tiny_mce/plugins/media/img/shockwave.gif
|
707
|
-
- public/javascripts/tiny_mce/plugins/media/img/trans.gif
|
708
|
-
- public/javascripts/tiny_mce/plugins/media/img/windowsmedia.gif
|
709
|
-
- public/javascripts/tiny_mce/plugins/media/js
|
710
|
-
- public/javascripts/tiny_mce/plugins/media/js/embed.js
|
711
|
-
- public/javascripts/tiny_mce/plugins/media/js/media.js
|
712
|
-
- public/javascripts/tiny_mce/plugins/media/langs
|
713
|
-
- public/javascripts/tiny_mce/plugins/media/langs/en_dlg.js
|
714
|
-
- public/javascripts/tiny_mce/plugins/media/media.htm
|
715
|
-
- public/javascripts/tiny_mce/plugins/nonbreaking
|
716
|
-
- public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin.js
|
717
|
-
- public/javascripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js
|
718
|
-
- public/javascripts/tiny_mce/plugins/paste
|
719
|
-
- public/javascripts/tiny_mce/plugins/paste/blank.htm
|
720
|
-
- public/javascripts/tiny_mce/plugins/paste/css
|
721
|
-
- public/javascripts/tiny_mce/plugins/paste/css/blank.css
|
722
|
-
- public/javascripts/tiny_mce/plugins/paste/css/pasteword.css
|
723
|
-
- public/javascripts/tiny_mce/plugins/paste/editor_plugin.js
|
724
|
-
- public/javascripts/tiny_mce/plugins/paste/editor_plugin_src.js
|
725
|
-
- public/javascripts/tiny_mce/plugins/paste/js
|
726
|
-
- public/javascripts/tiny_mce/plugins/paste/js/pastetext.js
|
727
|
-
- public/javascripts/tiny_mce/plugins/paste/js/pasteword.js
|
728
|
-
- public/javascripts/tiny_mce/plugins/paste/langs
|
729
|
-
- public/javascripts/tiny_mce/plugins/paste/langs/en_dlg.js
|
730
|
-
- public/javascripts/tiny_mce/plugins/paste/pastetext.htm
|
731
|
-
- public/javascripts/tiny_mce/plugins/paste/pasteword.htm
|
732
|
-
- public/javascripts/tiny_mce/plugins/safari
|
733
|
-
- public/javascripts/tiny_mce/plugins/safari/blank.htm
|
734
|
-
- public/javascripts/tiny_mce/plugins/safari/editor_plugin.js
|
735
|
-
- public/javascripts/tiny_mce/plugins/safari/editor_plugin_src.js
|
736
|
-
- public/javascripts/tiny_mce/plugins/save
|
737
|
-
- public/javascripts/tiny_mce/plugins/save/editor_plugin.js
|
738
|
-
- public/javascripts/tiny_mce/plugins/save/editor_plugin_src.js
|
739
|
-
- public/javascripts/tiny_mce/themes
|
740
|
-
- public/javascripts/tiny_mce/themes/advanced
|
741
|
-
- public/javascripts/tiny_mce/themes/advanced/about.htm
|
742
|
-
- public/javascripts/tiny_mce/themes/advanced/anchor.htm
|
743
|
-
- public/javascripts/tiny_mce/themes/advanced/charmap.htm
|
744
|
-
- public/javascripts/tiny_mce/themes/advanced/color_picker.htm
|
745
|
-
- public/javascripts/tiny_mce/themes/advanced/editor_template.js
|
746
|
-
- public/javascripts/tiny_mce/themes/advanced/editor_template_src.js
|
747
|
-
- public/javascripts/tiny_mce/themes/advanced/image.htm
|
748
|
-
- public/javascripts/tiny_mce/themes/advanced/img
|
749
|
-
- public/javascripts/tiny_mce/themes/advanced/img/colorpicker.jpg
|
750
|
-
- public/javascripts/tiny_mce/themes/advanced/img/icons.gif
|
751
|
-
- public/javascripts/tiny_mce/themes/advanced/js
|
752
|
-
- public/javascripts/tiny_mce/themes/advanced/js/about.js
|
753
|
-
- public/javascripts/tiny_mce/themes/advanced/js/anchor.js
|
754
|
-
- public/javascripts/tiny_mce/themes/advanced/js/charmap.js
|
755
|
-
- public/javascripts/tiny_mce/themes/advanced/js/color_picker.js
|
756
|
-
- public/javascripts/tiny_mce/themes/advanced/js/image.js
|
757
|
-
- public/javascripts/tiny_mce/themes/advanced/js/link.js
|
758
|
-
- public/javascripts/tiny_mce/themes/advanced/js/source_editor.js
|
759
|
-
- public/javascripts/tiny_mce/themes/advanced/langs
|
760
|
-
- public/javascripts/tiny_mce/themes/advanced/langs/en.js
|
761
|
-
- public/javascripts/tiny_mce/themes/advanced/langs/en_dlg.js
|
762
|
-
- public/javascripts/tiny_mce/themes/advanced/link.htm
|
763
|
-
- public/javascripts/tiny_mce/themes/advanced/skins
|
764
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/default
|
765
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/default/content.css
|
766
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/default/dialog.css
|
767
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/default/img
|
768
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/default/img/buttons.png
|
769
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/default/img/items.gif
|
770
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif
|
771
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif
|
772
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/default/img/progress.gif
|
773
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif
|
774
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/default/ui.css
|
775
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/o2k7
|
776
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/o2k7/content.css
|
777
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/o2k7/dialog.css
|
778
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/o2k7/img
|
779
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png
|
780
|
-
- public/javascripts/tiny_mce/themes/advanced/skins/o2k7/ui.css
|
781
|
-
- public/javascripts/tiny_mce/themes/advanced/source_editor.htm
|
782
|
-
- public/javascripts/tiny_mce/themes/simple
|
783
|
-
- public/javascripts/tiny_mce/themes/simple/editor_template.js
|
784
|
-
- public/javascripts/tiny_mce/themes/simple/editor_template_src.js
|
785
|
-
- public/javascripts/tiny_mce/themes/simple/img
|
786
|
-
- public/javascripts/tiny_mce/themes/simple/img/icons.gif
|
787
|
-
- public/javascripts/tiny_mce/themes/simple/langs
|
788
|
-
- public/javascripts/tiny_mce/themes/simple/langs/en.js
|
789
|
-
- public/javascripts/tiny_mce/themes/simple/skins
|
790
|
-
- public/javascripts/tiny_mce/themes/simple/skins/default
|
791
|
-
- public/javascripts/tiny_mce/themes/simple/skins/default/content.css
|
792
|
-
- public/javascripts/tiny_mce/themes/simple/skins/default/ui.css
|
793
|
-
- public/javascripts/tiny_mce/themes/simple/skins/o2k7
|
794
|
-
- public/javascripts/tiny_mce/themes/simple/skins/o2k7/content.css
|
795
|
-
- public/javascripts/tiny_mce/themes/simple/skins/o2k7/img
|
796
|
-
- public/javascripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png
|
797
|
-
- public/javascripts/tiny_mce/themes/simple/skins/o2k7/ui.css
|
798
|
-
- public/javascripts/tiny_mce/tiny_mce.js
|
799
|
-
- public/javascripts/tiny_mce/tiny_mce_popup.js
|
800
|
-
- public/javascripts/tiny_mce/tiny_mce_src.js
|
801
|
-
- public/javascripts/tiny_mce/utils
|
802
|
-
- public/javascripts/tiny_mce/utils/editable_selects.js
|
803
|
-
- public/javascripts/tiny_mce/utils/form_utils.js
|
804
|
-
- public/javascripts/tiny_mce/utils/mclayer.js
|
805
|
-
- public/javascripts/tiny_mce/utils/mctabs.js
|
806
|
-
- public/javascripts/tiny_mce/utils/validate.js
|
807
1097
|
- public/javascripts/typo.js
|
808
1098
|
- public/robots.txt
|
809
1099
|
- public/stylesheets
|
810
1100
|
- public/stylesheets/administration.css
|
811
1101
|
- public/stylesheets/codecollapse.css
|
812
1102
|
- public/stylesheets/lightbox.css
|
813
|
-
- public/stylesheets/minimal.css
|
814
1103
|
- public/stylesheets/rss.css
|
815
1104
|
- public/stylesheets/textmate
|
816
1105
|
- public/stylesheets/textmate/dawn.css
|
@@ -818,10 +1107,10 @@ files:
|
|
818
1107
|
- public/stylesheets/textmate/space_cadet.css
|
819
1108
|
- public/stylesheets/textmate/textmate.css
|
820
1109
|
- public/stylesheets/textmate/twilight.css
|
1110
|
+
- public/stylesheets/typo_code.css
|
821
1111
|
- public/stylesheets/user-styles.css
|
822
1112
|
- Rakefile
|
823
1113
|
- README
|
824
|
-
- README.SIDEBARS
|
825
1114
|
- script
|
826
1115
|
- script/about
|
827
1116
|
- script/benchmarker
|
@@ -847,53 +1136,67 @@ files:
|
|
847
1136
|
- script/spacecheck
|
848
1137
|
- script/spec
|
849
1138
|
- script/spec_server
|
1139
|
+
- SIDEBARS
|
850
1140
|
- spec
|
851
1141
|
- spec/controllers
|
852
1142
|
- spec/controllers/accounts_controller_spec.rb
|
1143
|
+
- spec/controllers/admin
|
1144
|
+
- spec/controllers/admin/article_preview_spec.rb
|
1145
|
+
- spec/controllers/admin/blacklist_controller_spec.rb
|
1146
|
+
- spec/controllers/admin/categories_controller_spec.rb
|
1147
|
+
- spec/controllers/admin/comments_controller_spec.rb
|
1148
|
+
- spec/controllers/admin/content_controller_spec.rb
|
1149
|
+
- spec/controllers/admin/feedback_controller_spec.rb
|
1150
|
+
- spec/controllers/admin/pages_controller_spec.rb
|
1151
|
+
- spec/controllers/admin/profiles_controller_spec.rb
|
1152
|
+
- spec/controllers/admin/resources_controller_spec.rb
|
1153
|
+
- spec/controllers/admin/settings_controller_spec.rb
|
1154
|
+
- spec/controllers/admin/textfilters_controller_spec.rb
|
1155
|
+
- spec/controllers/admin/themes_controller_spec.rb
|
1156
|
+
- spec/controllers/admin/trackbacks_controller_spec.rb
|
1157
|
+
- spec/controllers/admin/users_controller_spec.rb
|
853
1158
|
- spec/controllers/articles_controller_spec.rb
|
854
1159
|
- spec/controllers/authors_controller_spec.rb
|
1160
|
+
- spec/controllers/backend_controller_spec.rb
|
855
1161
|
- spec/controllers/categories_controller_spec.rb
|
856
1162
|
- spec/controllers/comments_controller_spec.rb
|
1163
|
+
- spec/controllers/redirect_controller_spec.rb
|
857
1164
|
- spec/controllers/tags_controller_spec.rb
|
858
|
-
- spec/
|
859
|
-
- spec/
|
860
|
-
- spec/
|
861
|
-
- spec/fixtures/categories.yml
|
862
|
-
- spec/fixtures/categorizations.yml
|
863
|
-
- spec/fixtures/contents.yml
|
864
|
-
- spec/fixtures/feedback.yml
|
865
|
-
- spec/fixtures/notifications.yml
|
866
|
-
- spec/fixtures/page_caches.yml
|
867
|
-
- spec/fixtures/profiles.yml
|
868
|
-
- spec/fixtures/redirects.yml
|
869
|
-
- spec/fixtures/resources.yml
|
870
|
-
- spec/fixtures/sidebars.yml
|
871
|
-
- spec/fixtures/tags.yml
|
872
|
-
- spec/fixtures/text_filters.yml
|
873
|
-
- spec/fixtures/triggers.yml
|
874
|
-
- spec/fixtures/users.yml
|
1165
|
+
- spec/controllers/textfilter_controller_spec.rb
|
1166
|
+
- spec/controllers/theme_controller_spec.rb
|
1167
|
+
- spec/controllers/xml_controller_spec.rb
|
875
1168
|
- spec/helpers
|
876
1169
|
- spec/helpers/admin_base_helper_spec.rb
|
877
|
-
- spec/helpers/comments_helper_spec.rb
|
878
1170
|
- spec/helpers/content_helper_spec.rb
|
879
1171
|
- spec/models
|
880
1172
|
- spec/models/amazon_sidebar_spec.rb
|
1173
|
+
- spec/models/article_closing_spec.rb
|
881
1174
|
- spec/models/article_spec.rb
|
1175
|
+
- spec/models/blacklist_pattern_spec.rb
|
882
1176
|
- spec/models/blog_spec.rb
|
883
1177
|
- spec/models/cache_support_spec.rb
|
884
1178
|
- spec/models/category_spec.rb
|
1179
|
+
- spec/models/comment_spec.rb
|
885
1180
|
- spec/models/configuration_spec.rb
|
1181
|
+
- spec/models/content_state
|
1182
|
+
- spec/models/content_state/feedback_states_spec.rb
|
886
1183
|
- spec/models/metafragment_spec.rb
|
1184
|
+
- spec/models/notification_spec.rb
|
887
1185
|
- spec/models/page_spec.rb
|
1186
|
+
- spec/models/ping_pinger_spec.rb
|
888
1187
|
- spec/models/ping_spec.rb
|
889
1188
|
- spec/models/redirect_spec.rb
|
890
1189
|
- spec/models/resource_spec.rb
|
1190
|
+
- spec/models/route_cache_spec.rb
|
1191
|
+
- spec/models/sidebar_spec.rb
|
891
1192
|
- spec/models/static_sidebar_spec.rb
|
892
1193
|
- spec/models/tag_spec.rb
|
893
1194
|
- spec/models/text_filter_spec.rb
|
894
1195
|
- spec/models/theme_spec.rb
|
895
1196
|
- spec/models/trackback_spec.rb
|
896
1197
|
- spec/models/trigger_spec.rb
|
1198
|
+
- spec/models/typo_deprecated_spec.rb
|
1199
|
+
- spec/models/url_policy_spec.rb
|
897
1200
|
- spec/models/user_spec.rb
|
898
1201
|
- spec/spec.opts
|
899
1202
|
- spec/spec_helper.rb
|
@@ -902,7 +1205,6 @@ files:
|
|
902
1205
|
- spec/views/comments/html_sanitization_spec.rb
|
903
1206
|
- test
|
904
1207
|
- test/fixtures
|
905
|
-
- test/fixtures/articles_tags.yml
|
906
1208
|
- test/fixtures/blacklist_patterns.yml
|
907
1209
|
- test/fixtures/blogs.yml
|
908
1210
|
- test/fixtures/categories.yml
|
@@ -923,29 +1225,6 @@ files:
|
|
923
1225
|
- test/fixtures/text_filters.yml
|
924
1226
|
- test/fixtures/triggers.yml
|
925
1227
|
- test/fixtures/users.yml
|
926
|
-
- test/functional
|
927
|
-
- test/functional/accounts_controller_test.rb
|
928
|
-
- test/functional/admin
|
929
|
-
- test/functional/admin/article_preview_test.rb
|
930
|
-
- test/functional/admin/blacklist_controller_test.rb
|
931
|
-
- test/functional/admin/categories_controller_test.rb
|
932
|
-
- test/functional/admin/comments_controller_test.rb
|
933
|
-
- test/functional/admin/content_controller_test.rb
|
934
|
-
- test/functional/admin/feedback_controller_test.rb
|
935
|
-
- test/functional/admin/pages_controller_test.rb
|
936
|
-
- test/functional/admin/profiles_controller_test.rb
|
937
|
-
- test/functional/admin/resources_controller_test.rb
|
938
|
-
- test/functional/admin/settings_controller_test.rb
|
939
|
-
- test/functional/admin/textfilters_controller_test.rb
|
940
|
-
- test/functional/admin/themes_controller_test.rb
|
941
|
-
- test/functional/admin/trackbacks_controller_test.rb
|
942
|
-
- test/functional/admin/users_controller_test.rb
|
943
|
-
- test/functional/articles_controller_test.rb
|
944
|
-
- test/functional/backend_controller_test.rb
|
945
|
-
- test/functional/redirect_controller_test.rb
|
946
|
-
- test/functional/textfilter_controller_test.rb
|
947
|
-
- test/functional/theme_controller_test.rb
|
948
|
-
- test/functional/xml_controller_test.rb
|
949
1228
|
- test/mocks
|
950
1229
|
- test/mocks/development
|
951
1230
|
- test/mocks/test
|
@@ -961,102 +1240,52 @@ files:
|
|
961
1240
|
- test/mocks/themes/CamelCaseDirectory/about.markdown
|
962
1241
|
- test/mocks/themes/i-have-special-chars
|
963
1242
|
- test/mocks/themes/i-have-special-chars/about.markdown
|
964
|
-
- test/mocks/themes/
|
965
|
-
- test/mocks/themes/
|
966
|
-
- test/mocks/themes/
|
967
|
-
- test/mocks/themes/
|
968
|
-
- test/mocks/themes/
|
969
|
-
- test/mocks/themes/
|
970
|
-
- test/mocks/themes/
|
971
|
-
- test/mocks/themes/
|
972
|
-
- test/mocks/themes/
|
973
|
-
- test/mocks/themes/
|
974
|
-
- test/mocks/themes/
|
975
|
-
- test/mocks/themes/
|
976
|
-
- test/mocks/themes/
|
977
|
-
- test/mocks/themes/
|
978
|
-
- test/mocks/themes/
|
979
|
-
- test/mocks/themes/
|
980
|
-
- test/mocks/themes/
|
981
|
-
- test/mocks/themes/
|
982
|
-
- test/mocks/themes/
|
983
|
-
- test/mocks/themes/
|
984
|
-
- test/mocks/themes/
|
985
|
-
- test/mocks/themes/
|
986
|
-
- test/mocks/themes/
|
987
|
-
- test/mocks/themes/
|
988
|
-
- test/mocks/themes/
|
989
|
-
- test/mocks/themes/
|
990
|
-
- test/mocks/themes/
|
991
|
-
- test/mocks/themes/
|
992
|
-
- test/mocks/themes/
|
993
|
-
- test/mocks/themes/
|
994
|
-
- test/mocks/themes/
|
995
|
-
- test/mocks/themes/
|
996
|
-
- test/mocks/themes/
|
997
|
-
- test/mocks/themes/
|
1243
|
+
- test/mocks/themes/typographic
|
1244
|
+
- test/mocks/themes/typographic/.DS_Store
|
1245
|
+
- test/mocks/themes/typographic/about.markdown
|
1246
|
+
- test/mocks/themes/typographic/images
|
1247
|
+
- test/mocks/themes/typographic/images/accept.png
|
1248
|
+
- test/mocks/themes/typographic/images/accept50.png
|
1249
|
+
- test/mocks/themes/typographic/images/bg_body.jpg
|
1250
|
+
- test/mocks/themes/typographic/images/bg_white.png
|
1251
|
+
- test/mocks/themes/typographic/images/bg_wrapper.jpg
|
1252
|
+
- test/mocks/themes/typographic/images/bullet_bottom.png
|
1253
|
+
- test/mocks/themes/typographic/images/bullet_right.png
|
1254
|
+
- test/mocks/themes/typographic/images/email_open.png
|
1255
|
+
- test/mocks/themes/typographic/images/email_open50.png
|
1256
|
+
- test/mocks/themes/typographic/images/meta.png
|
1257
|
+
- test/mocks/themes/typographic/images/page_edit.png
|
1258
|
+
- test/mocks/themes/typographic/images/page_edit50.png
|
1259
|
+
- test/mocks/themes/typographic/images/tag.png
|
1260
|
+
- test/mocks/themes/typographic/images/Thumbs.db
|
1261
|
+
- test/mocks/themes/typographic/images/user.png
|
1262
|
+
- test/mocks/themes/typographic/images/user50.png
|
1263
|
+
- test/mocks/themes/typographic/images/world_link.png
|
1264
|
+
- test/mocks/themes/typographic/images/world_link50.png
|
1265
|
+
- test/mocks/themes/typographic/layouts
|
1266
|
+
- test/mocks/themes/typographic/layouts/default.html.erb
|
1267
|
+
- test/mocks/themes/typographic/preview.png
|
1268
|
+
- test/mocks/themes/typographic/stylesheets
|
1269
|
+
- test/mocks/themes/typographic/stylesheets/colors.css
|
1270
|
+
- test/mocks/themes/typographic/stylesheets/layout.css
|
1271
|
+
- test/mocks/themes/typographic/stylesheets/reset.css
|
1272
|
+
- test/mocks/themes/typographic/stylesheets/style.css
|
1273
|
+
- test/mocks/themes/typographic/views
|
1274
|
+
- test/mocks/themes/typographic/views/articles
|
1275
|
+
- test/mocks/themes/typographic/views/articles/_article.html.erb
|
1276
|
+
- test/mocks/themes/typographic/views/articles/_comment.html.erb
|
1277
|
+
- test/mocks/themes/typographic/views/articles/_comment_form.html.erb
|
1278
|
+
- test/mocks/themes/typographic/views/articles/_comment_list.html.erb
|
1279
|
+
- test/mocks/themes/typographic/views/articles/_trackback.html.erb
|
1280
|
+
- test/mocks/themes/typographic/views/articles/comment_preview.html.erb
|
1281
|
+
- test/mocks/themes/typographic/views/articles/index.html.erb
|
1282
|
+
- test/mocks/themes/typographic/views/articles/read.html.erb
|
1283
|
+
- test/mocks/themes/typographic/views/shared
|
1284
|
+
- test/mocks/themes/typographic/views/shared/_search.html.erb
|
1285
|
+
- test/mocks/themes/typographic/views/theme
|
1286
|
+
- test/mocks/themes/typographic/views/theme/static_view_test.html.erb
|
998
1287
|
- test/test_helper.rb
|
999
|
-
- test/unit
|
1000
|
-
- test/unit/amazon_sidebar_test.rb
|
1001
|
-
- test/unit/article_closing_test.rb
|
1002
|
-
- test/unit/article_test.rb
|
1003
|
-
- test/unit/assumptions_tests.rb
|
1004
|
-
- test/unit/blacklist_pattern_test.rb
|
1005
|
-
- test/unit/blog_test.rb
|
1006
|
-
- test/unit/cache_support_test.rb
|
1007
|
-
- test/unit/category_test.rb
|
1008
|
-
- test/unit/comment_test.rb
|
1009
|
-
- test/unit/configuration_test.rb
|
1010
|
-
- test/unit/content_state
|
1011
|
-
- test/unit/content_state/feedback_states_test.rb
|
1012
|
-
- test/unit/metafragment_test.rb
|
1013
|
-
- test/unit/notification_mailer_test.rb
|
1014
|
-
- test/unit/notification_test.rb
|
1015
|
-
- test/unit/page_test.rb
|
1016
|
-
- test/unit/ping_pinger_test.rb
|
1017
|
-
- test/unit/ping_test.rb
|
1018
|
-
- test/unit/redirect_test.rb
|
1019
|
-
- test/unit/resource_test.rb
|
1020
|
-
- test/unit/route_cache_test.rb
|
1021
|
-
- test/unit/sidebar_test.rb
|
1022
|
-
- test/unit/static_sidebar_test.rb
|
1023
|
-
- test/unit/tag_test.rb
|
1024
|
-
- test/unit/text_filter_test.rb
|
1025
|
-
- test/unit/theme_test.rb
|
1026
|
-
- test/unit/trackback_test.rb
|
1027
|
-
- test/unit/trigger_test.rb
|
1028
|
-
- test/unit/typo_deprecated_test.rb
|
1029
|
-
- test/unit/user_test.rb
|
1030
1288
|
- themes
|
1031
|
-
- themes/dirtylicious
|
1032
|
-
- themes/dirtylicious/about.markdown
|
1033
|
-
- themes/dirtylicious/images
|
1034
|
-
- themes/dirtylicious/images/body.jpg
|
1035
|
-
- themes/dirtylicious/images/container.jpg
|
1036
|
-
- themes/dirtylicious/images/gravatar.gif
|
1037
|
-
- themes/dirtylicious/images/header.jpg
|
1038
|
-
- themes/dirtylicious/images/li.gif
|
1039
|
-
- themes/dirtylicious/images/main.gif
|
1040
|
-
- themes/dirtylicious/images/nav.gif
|
1041
|
-
- themes/dirtylicious/images/quote.gif
|
1042
|
-
- themes/dirtylicious/images/spinner.gif
|
1043
|
-
- themes/dirtylicious/layouts
|
1044
|
-
- themes/dirtylicious/layouts/default.html.erb
|
1045
|
-
- themes/dirtylicious/preview.png
|
1046
|
-
- themes/dirtylicious/stylesheets
|
1047
|
-
- themes/dirtylicious/stylesheets/application.css
|
1048
|
-
- themes/dirtylicious/views
|
1049
|
-
- themes/dirtylicious/views/articles
|
1050
|
-
- themes/dirtylicious/views/articles/_article.html.erb
|
1051
|
-
- themes/dirtylicious/views/articles/_comment.html.erb
|
1052
|
-
- themes/dirtylicious/views/articles/_comment_form.html.erb
|
1053
|
-
- themes/dirtylicious/views/articles/_comment_list.html.erb
|
1054
|
-
- themes/dirtylicious/views/articles/_trackback.html.erb
|
1055
|
-
- themes/dirtylicious/views/articles/comment_preview.html.erb
|
1056
|
-
- themes/dirtylicious/views/articles/index.html.erb
|
1057
|
-
- themes/dirtylicious/views/articles/read.html.erb
|
1058
|
-
- themes/dirtylicious/views/shared
|
1059
|
-
- themes/dirtylicious/views/shared/_search.html.erb
|
1060
1289
|
- themes/scribbish
|
1061
1290
|
- themes/scribbish/about.markdown
|
1062
1291
|
- themes/scribbish/CONTRIBUTORS
|
@@ -1084,45 +1313,98 @@ files:
|
|
1084
1313
|
- themes/scribbish/views/articles/read.html.erb
|
1085
1314
|
- themes/scribbish/views/shared
|
1086
1315
|
- themes/scribbish/views/shared/_search.html.erb
|
1087
|
-
- themes/
|
1088
|
-
- themes/
|
1089
|
-
- themes/
|
1090
|
-
- themes/
|
1091
|
-
- themes/
|
1092
|
-
- themes/
|
1093
|
-
- themes/
|
1094
|
-
- themes/
|
1095
|
-
- themes/
|
1096
|
-
- themes/
|
1097
|
-
- themes/
|
1098
|
-
- themes/
|
1099
|
-
- themes/
|
1100
|
-
- themes/
|
1101
|
-
- themes/
|
1102
|
-
- themes/
|
1103
|
-
- themes/
|
1104
|
-
- themes/
|
1105
|
-
- themes/
|
1106
|
-
- themes/
|
1107
|
-
- themes/
|
1108
|
-
- themes/
|
1109
|
-
- themes/
|
1110
|
-
- themes/
|
1111
|
-
- themes/
|
1112
|
-
- themes/
|
1113
|
-
- themes/
|
1114
|
-
- themes/
|
1115
|
-
- themes/
|
1116
|
-
- themes/
|
1117
|
-
- themes/
|
1118
|
-
- themes/
|
1119
|
-
- themes/
|
1120
|
-
- themes/
|
1316
|
+
- themes/typographic
|
1317
|
+
- themes/typographic/.DS_Store
|
1318
|
+
- themes/typographic/about.markdown
|
1319
|
+
- themes/typographic/images
|
1320
|
+
- themes/typographic/images/accept.png
|
1321
|
+
- themes/typographic/images/accept50.png
|
1322
|
+
- themes/typographic/images/bg_body.jpg
|
1323
|
+
- themes/typographic/images/bg_white.png
|
1324
|
+
- themes/typographic/images/bg_wrapper.jpg
|
1325
|
+
- themes/typographic/images/bullet_bottom.png
|
1326
|
+
- themes/typographic/images/bullet_right.png
|
1327
|
+
- themes/typographic/images/email_open.png
|
1328
|
+
- themes/typographic/images/email_open50.png
|
1329
|
+
- themes/typographic/images/meta.png
|
1330
|
+
- themes/typographic/images/page_edit.png
|
1331
|
+
- themes/typographic/images/page_edit50.png
|
1332
|
+
- themes/typographic/images/tag.png
|
1333
|
+
- themes/typographic/images/user.png
|
1334
|
+
- themes/typographic/images/user50.png
|
1335
|
+
- themes/typographic/images/world_link.png
|
1336
|
+
- themes/typographic/images/world_link50.png
|
1337
|
+
- themes/typographic/layouts
|
1338
|
+
- themes/typographic/layouts/default.html.erb
|
1339
|
+
- themes/typographic/preview.png
|
1340
|
+
- themes/typographic/stylesheets
|
1341
|
+
- themes/typographic/stylesheets/colors.css
|
1342
|
+
- themes/typographic/stylesheets/layout.css
|
1343
|
+
- themes/typographic/stylesheets/reset.css
|
1344
|
+
- themes/typographic/stylesheets/style.css
|
1345
|
+
- themes/typographic/views
|
1346
|
+
- themes/typographic/views/articles
|
1347
|
+
- themes/typographic/views/articles/_article.html.erb
|
1348
|
+
- themes/typographic/views/articles/_comment.html.erb
|
1349
|
+
- themes/typographic/views/articles/_comment_form.html.erb
|
1350
|
+
- themes/typographic/views/articles/_comment_list.html.erb
|
1351
|
+
- themes/typographic/views/articles/_trackback.html.erb
|
1352
|
+
- themes/typographic/views/articles/comment_preview.html.erb
|
1353
|
+
- themes/typographic/views/articles/index.html.erb
|
1354
|
+
- themes/typographic/views/articles/read.html.erb
|
1355
|
+
- themes/typographic/views/shared
|
1356
|
+
- themes/typographic/views/shared/_search.html.erb
|
1357
|
+
- themes/typographic/views/theme
|
1358
|
+
- themes/typographic/views/theme/static_view_test.html.erb
|
1359
|
+
- themes/typographic2
|
1360
|
+
- themes/typographic2/.DS_Store
|
1361
|
+
- themes/typographic2/about.markdown
|
1362
|
+
- themes/typographic2/images
|
1363
|
+
- themes/typographic2/images/accept.png
|
1364
|
+
- themes/typographic2/images/accept50.png
|
1365
|
+
- themes/typographic2/images/bg_body.jpg
|
1366
|
+
- themes/typographic2/images/bg_white.png
|
1367
|
+
- themes/typographic2/images/bg_wrapper.jpg
|
1368
|
+
- themes/typographic2/images/bullet_bottom.png
|
1369
|
+
- themes/typographic2/images/bullet_right.png
|
1370
|
+
- themes/typographic2/images/email_open.png
|
1371
|
+
- themes/typographic2/images/email_open50.png
|
1372
|
+
- themes/typographic2/images/meta.png
|
1373
|
+
- themes/typographic2/images/page_edit.png
|
1374
|
+
- themes/typographic2/images/page_edit50.png
|
1375
|
+
- themes/typographic2/images/tag.png
|
1376
|
+
- themes/typographic2/images/Thumbs.db
|
1377
|
+
- themes/typographic2/images/user.png
|
1378
|
+
- themes/typographic2/images/user50.png
|
1379
|
+
- themes/typographic2/images/world_link.png
|
1380
|
+
- themes/typographic2/images/world_link50.png
|
1381
|
+
- themes/typographic2/layouts
|
1382
|
+
- themes/typographic2/layouts/default.html.erb
|
1383
|
+
- themes/typographic2/preview.png
|
1384
|
+
- themes/typographic2/stylesheets
|
1385
|
+
- themes/typographic2/stylesheets/colors.css
|
1386
|
+
- themes/typographic2/stylesheets/layout.css
|
1387
|
+
- themes/typographic2/stylesheets/reset.css
|
1388
|
+
- themes/typographic2/stylesheets/style.css
|
1389
|
+
- themes/typographic2/views
|
1390
|
+
- themes/typographic2/views/articles
|
1391
|
+
- themes/typographic2/views/articles/_article.html.erb
|
1392
|
+
- themes/typographic2/views/articles/_comment.html.erb
|
1393
|
+
- themes/typographic2/views/articles/_comment_form.html.erb
|
1394
|
+
- themes/typographic2/views/articles/_comment_list.html.erb
|
1395
|
+
- themes/typographic2/views/articles/_trackback.html.erb
|
1396
|
+
- themes/typographic2/views/articles/comment_preview.html.erb
|
1397
|
+
- themes/typographic2/views/articles/index.html.erb
|
1398
|
+
- themes/typographic2/views/articles/read.html.erb
|
1399
|
+
- themes/typographic2/views/shared
|
1400
|
+
- themes/typographic2/views/shared/_search.html.erb
|
1401
|
+
- themes/typographic2/views/theme
|
1402
|
+
- themes/typographic2/views/theme/static_view_test.html.erb
|
1121
1403
|
- tmp
|
1122
1404
|
- tmp/cache
|
1405
|
+
- tmp/pids
|
1123
1406
|
- tmp/sessions
|
1124
1407
|
- tmp/sockets
|
1125
|
-
- TODO.MULTIUSERS
|
1126
1408
|
- vendor
|
1127
1409
|
- vendor/actionwebservice
|
1128
1410
|
- vendor/actionwebservice/CHANGELOG
|
@@ -1264,20 +1546,6 @@ files:
|
|
1264
1546
|
- vendor/flickr/index.html
|
1265
1547
|
- vendor/flickr/Rakefile
|
1266
1548
|
- vendor/flickr/test_flickr.rb
|
1267
|
-
- vendor/jabber4r
|
1268
|
-
- vendor/jabber4r/CHANGES
|
1269
|
-
- vendor/jabber4r/lib
|
1270
|
-
- vendor/jabber4r/lib/jabber4r
|
1271
|
-
- vendor/jabber4r/lib/jabber4r/jabber4r.rb
|
1272
|
-
- vendor/jabber4r/lib/jabber4r/jid.rb
|
1273
|
-
- vendor/jabber4r/lib/jabber4r/protocol.rb
|
1274
|
-
- vendor/jabber4r/lib/jabber4r/rexml_1.8_patch.rb
|
1275
|
-
- vendor/jabber4r/lib/jabber4r/roster.rb
|
1276
|
-
- vendor/jabber4r/lib/jabber4r/session.rb
|
1277
|
-
- vendor/jabber4r/lib/jabber4r/vcard.rb
|
1278
|
-
- vendor/jabber4r/LICENSE.txt
|
1279
|
-
- vendor/jabber4r/Rakefile.rb
|
1280
|
-
- vendor/jabber4r/README
|
1281
1549
|
- vendor/memcache-client
|
1282
1550
|
- vendor/memcache-client/History.txt
|
1283
1551
|
- vendor/memcache-client/lib
|
@@ -1321,6 +1589,15 @@ files:
|
|
1321
1589
|
- vendor/plugins/archives_sidebar/test/archives_sidebar_test.rb
|
1322
1590
|
- vendor/plugins/archives_sidebar/views
|
1323
1591
|
- vendor/plugins/archives_sidebar/views/content.rhtml
|
1592
|
+
- vendor/plugins/auto_complete
|
1593
|
+
- vendor/plugins/auto_complete/init.rb
|
1594
|
+
- vendor/plugins/auto_complete/lib
|
1595
|
+
- vendor/plugins/auto_complete/lib/auto_complete.rb
|
1596
|
+
- vendor/plugins/auto_complete/lib/auto_complete_macros_helper.rb
|
1597
|
+
- vendor/plugins/auto_complete/Rakefile
|
1598
|
+
- vendor/plugins/auto_complete/README
|
1599
|
+
- vendor/plugins/auto_complete/test
|
1600
|
+
- vendor/plugins/auto_complete/test/auto_complete_test.rb
|
1324
1601
|
- vendor/plugins/category_sidebar
|
1325
1602
|
- vendor/plugins/category_sidebar/init.rb
|
1326
1603
|
- vendor/plugins/category_sidebar/lib
|
@@ -1373,64 +1650,27 @@ files:
|
|
1373
1650
|
- vendor/plugins/expiring_action_cache/lib
|
1374
1651
|
- vendor/plugins/expiring_action_cache/lib/actionparamcache.rb
|
1375
1652
|
- vendor/plugins/expiring_action_cache/lib/metafragment.rb
|
1376
|
-
- vendor/plugins/
|
1377
|
-
- vendor/plugins/
|
1378
|
-
- vendor/plugins/
|
1379
|
-
- vendor/plugins/
|
1380
|
-
- vendor/plugins/
|
1381
|
-
- vendor/plugins/
|
1382
|
-
- vendor/plugins/
|
1383
|
-
- vendor/plugins/
|
1384
|
-
- vendor/plugins/
|
1385
|
-
- vendor/plugins/
|
1386
|
-
- vendor/plugins/
|
1387
|
-
- vendor/plugins/
|
1388
|
-
- vendor/plugins/
|
1389
|
-
- vendor/plugins/
|
1390
|
-
- vendor/plugins/
|
1391
|
-
- vendor/plugins/
|
1392
|
-
- vendor/plugins/
|
1393
|
-
- vendor/plugins/
|
1394
|
-
- vendor/plugins/
|
1395
|
-
- vendor/plugins/
|
1396
|
-
- vendor/plugins/
|
1397
|
-
- vendor/plugins/haml/test/profile.rb
|
1398
|
-
- vendor/plugins/haml/test/results
|
1399
|
-
- vendor/plugins/haml/test/results/content_for_layout.xhtml
|
1400
|
-
- vendor/plugins/haml/test/results/eval_suppressed.xhtml
|
1401
|
-
- vendor/plugins/haml/test/results/helpers.xhtml
|
1402
|
-
- vendor/plugins/haml/test/results/helpful.xhtml
|
1403
|
-
- vendor/plugins/haml/test/results/just_stuff.xhtml
|
1404
|
-
- vendor/plugins/haml/test/results/list.xhtml
|
1405
|
-
- vendor/plugins/haml/test/results/original_engine.xhtml
|
1406
|
-
- vendor/plugins/haml/test/results/partials.xhtml
|
1407
|
-
- vendor/plugins/haml/test/results/silent_script.xhtml
|
1408
|
-
- vendor/plugins/haml/test/results/standard.xhtml
|
1409
|
-
- vendor/plugins/haml/test/results/tag_parsing.xhtml
|
1410
|
-
- vendor/plugins/haml/test/results/very_basic.xhtml
|
1411
|
-
- vendor/plugins/haml/test/results/whitespace_handling.xhtml
|
1412
|
-
- vendor/plugins/haml/test/rhtml
|
1413
|
-
- vendor/plugins/haml/test/rhtml/standard.rhtml
|
1414
|
-
- vendor/plugins/haml/test/runner.rb
|
1415
|
-
- vendor/plugins/haml/test/template_test.rb
|
1416
|
-
- vendor/plugins/haml/test/templates
|
1417
|
-
- vendor/plugins/haml/test/templates/_partial.haml
|
1418
|
-
- vendor/plugins/haml/test/templates/_text_area.haml
|
1419
|
-
- vendor/plugins/haml/test/templates/content_for_layout.haml
|
1420
|
-
- vendor/plugins/haml/test/templates/eval_suppressed.haml
|
1421
|
-
- vendor/plugins/haml/test/templates/helpers.haml
|
1422
|
-
- vendor/plugins/haml/test/templates/helpful.haml
|
1423
|
-
- vendor/plugins/haml/test/templates/just_stuff.haml
|
1424
|
-
- vendor/plugins/haml/test/templates/list.haml
|
1425
|
-
- vendor/plugins/haml/test/templates/original_engine.haml
|
1426
|
-
- vendor/plugins/haml/test/templates/partialize.haml
|
1427
|
-
- vendor/plugins/haml/test/templates/partials.haml
|
1428
|
-
- vendor/plugins/haml/test/templates/silent_script.haml
|
1429
|
-
- vendor/plugins/haml/test/templates/standard.haml
|
1430
|
-
- vendor/plugins/haml/test/templates/tag_parsing.haml
|
1431
|
-
- vendor/plugins/haml/test/templates/very_basic.haml
|
1432
|
-
- vendor/plugins/haml/test/templates/whitespace_handling.haml
|
1433
|
-
- vendor/plugins/haml/VERSION
|
1653
|
+
- vendor/plugins/fckeditor
|
1654
|
+
- vendor/plugins/fckeditor/app
|
1655
|
+
- vendor/plugins/fckeditor/app/controllers
|
1656
|
+
- vendor/plugins/fckeditor/app/controllers/fckeditor_controller.rb
|
1657
|
+
- vendor/plugins/fckeditor/app/helpers
|
1658
|
+
- vendor/plugins/fckeditor/app/helpers/fckeditor_helper.rb
|
1659
|
+
- vendor/plugins/fckeditor/app/views
|
1660
|
+
- vendor/plugins/fckeditor/app/views/fckeditor
|
1661
|
+
- vendor/plugins/fckeditor/app/views/fckeditor/spell_check.rhtml
|
1662
|
+
- vendor/plugins/fckeditor/CHANGELOG
|
1663
|
+
- vendor/plugins/fckeditor/init.rb
|
1664
|
+
- vendor/plugins/fckeditor/install.rb
|
1665
|
+
- vendor/plugins/fckeditor/lib
|
1666
|
+
- vendor/plugins/fckeditor/lib/fckeditor.rb
|
1667
|
+
- vendor/plugins/fckeditor/lib/fckeditor_file_utils.rb
|
1668
|
+
- vendor/plugins/fckeditor/lib/fckeditor_spell_check.rb
|
1669
|
+
- vendor/plugins/fckeditor/lib/fckeditor_version.rb
|
1670
|
+
- vendor/plugins/fckeditor/Rakefile
|
1671
|
+
- vendor/plugins/fckeditor/README
|
1672
|
+
- vendor/plugins/fckeditor/tasks
|
1673
|
+
- vendor/plugins/fckeditor/tasks/fckeditor_tasks.rake
|
1434
1674
|
- vendor/plugins/localization
|
1435
1675
|
- vendor/plugins/localization/CHANGELOG
|
1436
1676
|
- vendor/plugins/localization/init.rb
|
@@ -1447,6 +1687,7 @@ files:
|
|
1447
1687
|
- vendor/plugins/page_sidebar/views
|
1448
1688
|
- vendor/plugins/page_sidebar/views/content.rhtml
|
1449
1689
|
- vendor/plugins/rspec
|
1690
|
+
- vendor/plugins/rspec/.autotest
|
1450
1691
|
- vendor/plugins/rspec/autotest
|
1451
1692
|
- vendor/plugins/rspec/autotest/discover.rb
|
1452
1693
|
- vendor/plugins/rspec/autotest/rspec.rb
|
@@ -1519,6 +1760,7 @@ files:
|
|
1519
1760
|
- vendor/plugins/rspec/examples/stories/steps/addition_steps.rb
|
1520
1761
|
- vendor/plugins/rspec/failing_examples
|
1521
1762
|
- vendor/plugins/rspec/failing_examples/diffing_spec.rb
|
1763
|
+
- vendor/plugins/rspec/failing_examples/failing_autogenerated_docstrings_example.rb
|
1522
1764
|
- vendor/plugins/rspec/failing_examples/failure_in_setup.rb
|
1523
1765
|
- vendor/plugins/rspec/failing_examples/failure_in_teardown.rb
|
1524
1766
|
- vendor/plugins/rspec/failing_examples/mocking_example.rb
|
@@ -1528,6 +1770,7 @@ files:
|
|
1528
1770
|
- vendor/plugins/rspec/failing_examples/partial_mock_example.rb
|
1529
1771
|
- vendor/plugins/rspec/failing_examples/predicate_example.rb
|
1530
1772
|
- vendor/plugins/rspec/failing_examples/raising_example.rb
|
1773
|
+
- vendor/plugins/rspec/failing_examples/README.txt
|
1531
1774
|
- vendor/plugins/rspec/failing_examples/spec_helper.rb
|
1532
1775
|
- vendor/plugins/rspec/failing_examples/syntax_error_example.rb
|
1533
1776
|
- vendor/plugins/rspec/failing_examples/team_spec.rb
|
@@ -1642,6 +1885,8 @@ files:
|
|
1642
1885
|
- vendor/plugins/rspec/lib/spec/story
|
1643
1886
|
- vendor/plugins/rspec/lib/spec/story/extensions
|
1644
1887
|
- vendor/plugins/rspec/lib/spec/story/extensions/main.rb
|
1888
|
+
- vendor/plugins/rspec/lib/spec/story/extensions/regexp.rb
|
1889
|
+
- vendor/plugins/rspec/lib/spec/story/extensions/string.rb
|
1645
1890
|
- vendor/plugins/rspec/lib/spec/story/extensions.rb
|
1646
1891
|
- vendor/plugins/rspec/lib/spec/story/given_scenario.rb
|
1647
1892
|
- vendor/plugins/rspec/lib/spec/story/runner
|
@@ -1669,6 +1914,20 @@ files:
|
|
1669
1914
|
- vendor/plugins/rspec/plugins/mock_frameworks/mocha.rb
|
1670
1915
|
- vendor/plugins/rspec/plugins/mock_frameworks/rr.rb
|
1671
1916
|
- vendor/plugins/rspec/plugins/mock_frameworks/rspec.rb
|
1917
|
+
- vendor/plugins/rspec/pre_commit
|
1918
|
+
- vendor/plugins/rspec/pre_commit/lib
|
1919
|
+
- vendor/plugins/rspec/pre_commit/lib/pre_commit
|
1920
|
+
- vendor/plugins/rspec/pre_commit/lib/pre_commit/core.rb
|
1921
|
+
- vendor/plugins/rspec/pre_commit/lib/pre_commit/pre_commit.rb
|
1922
|
+
- vendor/plugins/rspec/pre_commit/lib/pre_commit/rspec.rb
|
1923
|
+
- vendor/plugins/rspec/pre_commit/lib/pre_commit/rspec_on_rails.rb
|
1924
|
+
- vendor/plugins/rspec/pre_commit/lib/pre_commit.rb
|
1925
|
+
- vendor/plugins/rspec/pre_commit/spec
|
1926
|
+
- vendor/plugins/rspec/pre_commit/spec/pre_commit
|
1927
|
+
- vendor/plugins/rspec/pre_commit/spec/pre_commit/pre_commit_spec.rb
|
1928
|
+
- vendor/plugins/rspec/pre_commit/spec/pre_commit/rspec_on_rails_spec.rb
|
1929
|
+
- vendor/plugins/rspec/pre_commit/spec/spec_helper.rb
|
1930
|
+
- vendor/plugins/rspec/pre_commit/spec/spec_suite.rb
|
1672
1931
|
- vendor/plugins/rspec/rake_tasks
|
1673
1932
|
- vendor/plugins/rspec/rake_tasks/examples.rake
|
1674
1933
|
- vendor/plugins/rspec/rake_tasks/examples_with_rcov.rake
|
@@ -1676,11 +1935,13 @@ files:
|
|
1676
1935
|
- vendor/plugins/rspec/rake_tasks/verify_rcov.rake
|
1677
1936
|
- vendor/plugins/rspec/Rakefile
|
1678
1937
|
- vendor/plugins/rspec/README
|
1938
|
+
- vendor/plugins/rspec/report.html
|
1679
1939
|
- vendor/plugins/rspec/spec
|
1680
1940
|
- vendor/plugins/rspec/spec/autotest
|
1681
1941
|
- vendor/plugins/rspec/spec/autotest/discover_spec.rb
|
1682
1942
|
- vendor/plugins/rspec/spec/autotest/rspec_spec.rb
|
1683
1943
|
- vendor/plugins/rspec/spec/autotest_helper.rb
|
1944
|
+
- vendor/plugins/rspec/spec/autotest_matchers.rb
|
1684
1945
|
- vendor/plugins/rspec/spec/README.jruby
|
1685
1946
|
- vendor/plugins/rspec/spec/rspec_suite.rb
|
1686
1947
|
- vendor/plugins/rspec/spec/ruby_forker.rb
|
@@ -1711,11 +1972,18 @@ files:
|
|
1711
1972
|
- vendor/plugins/rspec/spec/spec/interop
|
1712
1973
|
- vendor/plugins/rspec/spec/spec/interop/test
|
1713
1974
|
- vendor/plugins/rspec/spec/spec/interop/test/unit
|
1975
|
+
- vendor/plugins/rspec/spec/spec/interop/test/unit/resources
|
1976
|
+
- vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_fails.rb
|
1977
|
+
- vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_that_passes.rb
|
1978
|
+
- vendor/plugins/rspec/spec/spec/interop/test/unit/resources/spec_with_errors.rb
|
1979
|
+
- vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_fails.rb
|
1980
|
+
- vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_that_passes.rb
|
1981
|
+
- vendor/plugins/rspec/spec/spec/interop/test/unit/resources/test_case_with_errors.rb
|
1982
|
+
- vendor/plugins/rspec/spec/spec/interop/test/unit/resources/testsuite_adapter_spec_with_test_unit.rb
|
1983
|
+
- vendor/plugins/rspec/spec/spec/interop/test/unit/spec_spec.rb
|
1714
1984
|
- vendor/plugins/rspec/spec/spec/interop/test/unit/test_unit_spec_helper.rb
|
1715
1985
|
- vendor/plugins/rspec/spec/spec/interop/test/unit/testcase_spec.rb
|
1716
|
-
- vendor/plugins/rspec/spec/spec/interop/test/unit/testcase_spec_with_test_unit.rb
|
1717
1986
|
- vendor/plugins/rspec/spec/spec/interop/test/unit/testsuite_adapter_spec.rb
|
1718
|
-
- vendor/plugins/rspec/spec/spec/interop/test/unit/testsuite_adapter_spec_with_test_unit.rb
|
1719
1987
|
- vendor/plugins/rspec/spec/spec/matchers
|
1720
1988
|
- vendor/plugins/rspec/spec/spec/matchers/be_close_spec.rb
|
1721
1989
|
- vendor/plugins/rspec/spec/spec/matchers/be_spec.rb
|
@@ -1781,6 +2049,7 @@ files:
|
|
1781
2049
|
- vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.4.html
|
1782
2050
|
- vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5-jruby.html
|
1783
2051
|
- vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.5.html
|
2052
|
+
- vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6-jruby.html
|
1784
2053
|
- vendor/plugins/rspec/spec/spec/runner/formatter/html_formatted-1.8.6.html
|
1785
2054
|
- vendor/plugins/rspec/spec/spec/runner/formatter/html_formatter_spec.rb
|
1786
2055
|
- vendor/plugins/rspec/spec/spec/runner/formatter/profile_formatter_spec.rb
|
@@ -1803,7 +2072,13 @@ files:
|
|
1803
2072
|
- vendor/plugins/rspec/spec/spec/runner/output_one_time_spec.rb
|
1804
2073
|
- vendor/plugins/rspec/spec/spec/runner/quiet_backtrace_tweaker_spec.rb
|
1805
2074
|
- vendor/plugins/rspec/spec/spec/runner/reporter_spec.rb
|
2075
|
+
- vendor/plugins/rspec/spec/spec/runner/resources
|
2076
|
+
- vendor/plugins/rspec/spec/spec/runner/resources/a_bar.rb
|
2077
|
+
- vendor/plugins/rspec/spec/spec/runner/resources/a_foo.rb
|
2078
|
+
- vendor/plugins/rspec/spec/spec/runner/resources/a_spec.rb
|
1806
2079
|
- vendor/plugins/rspec/spec/spec/runner/spec.opts
|
2080
|
+
- vendor/plugins/rspec/spec/spec/runner/spec_parser
|
2081
|
+
- vendor/plugins/rspec/spec/spec/runner/spec_parser/spec_parser_fixture.rb
|
1807
2082
|
- vendor/plugins/rspec/spec/spec/runner/spec_parser_spec.rb
|
1808
2083
|
- vendor/plugins/rspec/spec/spec/runner/spec_spaced.opts
|
1809
2084
|
- vendor/plugins/rspec/spec/spec/runner_spec.rb
|
@@ -1830,8 +2105,8 @@ files:
|
|
1830
2105
|
- vendor/plugins/rspec/spec/spec/story/story_spec.rb
|
1831
2106
|
- vendor/plugins/rspec/spec/spec/story/world_spec.rb
|
1832
2107
|
- vendor/plugins/rspec/spec/spec/translator_spec.rb
|
2108
|
+
- vendor/plugins/rspec/spec/spec.opts
|
1833
2109
|
- vendor/plugins/rspec/spec/spec_helper.rb
|
1834
|
-
- vendor/plugins/rspec/spec.opts
|
1835
2110
|
- vendor/plugins/rspec/stories
|
1836
2111
|
- vendor/plugins/rspec/stories/all.rb
|
1837
2112
|
- vendor/plugins/rspec/stories/example_groups
|
@@ -1858,6 +2133,8 @@ files:
|
|
1858
2133
|
- vendor/plugins/rspec/stories/resources/spec/simple_spec.rb
|
1859
2134
|
- vendor/plugins/rspec/stories/resources/steps
|
1860
2135
|
- vendor/plugins/rspec/stories/resources/steps/running_rspec.rb
|
2136
|
+
- vendor/plugins/rspec/stories/resources/stories
|
2137
|
+
- vendor/plugins/rspec/stories/resources/stories/failing_story.rb
|
1861
2138
|
- vendor/plugins/rspec/stories/resources/test
|
1862
2139
|
- vendor/plugins/rspec/stories/resources/test/spec_and_test_together.rb
|
1863
2140
|
- vendor/plugins/rspec/stories/resources/test/test_case_with_should_methods.rb
|
@@ -1885,7 +2162,6 @@ files:
|
|
1885
2162
|
- vendor/plugins/rspec_on_rails
|
1886
2163
|
- vendor/plugins/rspec_on_rails/generators
|
1887
2164
|
- vendor/plugins/rspec_on_rails/generators/helpers
|
1888
|
-
- vendor/plugins/rspec_on_rails/generators/helpers/rails_identifier.rb
|
1889
2165
|
- vendor/plugins/rspec_on_rails/generators/rspec
|
1890
2166
|
- vendor/plugins/rspec_on_rails/generators/rspec/CHANGES
|
1891
2167
|
- vendor/plugins/rspec_on_rails/generators/rspec/rspec_generator.rb
|
@@ -1924,6 +2200,7 @@ files:
|
|
1924
2200
|
- vendor/plugins/rspec_on_rails/init.rb
|
1925
2201
|
- vendor/plugins/rspec_on_rails/lib
|
1926
2202
|
- vendor/plugins/rspec_on_rails/lib/autotest
|
2203
|
+
- vendor/plugins/rspec_on_rails/lib/autotest/discover.rb
|
1927
2204
|
- vendor/plugins/rspec_on_rails/lib/autotest/rails_rspec.rb
|
1928
2205
|
- vendor/plugins/rspec_on_rails/lib/spec
|
1929
2206
|
- vendor/plugins/rspec_on_rails/lib/spec/rails
|
@@ -1991,6 +2268,7 @@ files:
|
|
1991
2268
|
- vendor/plugins/rspec_on_rails/spec/rails/matchers/assert_select_spec.rb
|
1992
2269
|
- vendor/plugins/rspec_on_rails/spec/rails/matchers/description_generation_spec.rb
|
1993
2270
|
- vendor/plugins/rspec_on_rails/spec/rails/matchers/errors_on_spec.rb
|
2271
|
+
- vendor/plugins/rspec_on_rails/spec/rails/matchers/have_text_spec.rb
|
1994
2272
|
- vendor/plugins/rspec_on_rails/spec/rails/matchers/redirect_to_spec.rb
|
1995
2273
|
- vendor/plugins/rspec_on_rails/spec/rails/matchers/render_spec.rb
|
1996
2274
|
- vendor/plugins/rspec_on_rails/spec/rails/mocks
|
@@ -2079,23 +2357,41 @@ files:
|
|
2079
2357
|
- vendor/plugins/tag_sidebar/test/tag_sidebar_test.rb
|
2080
2358
|
- vendor/plugins/tag_sidebar/views
|
2081
2359
|
- vendor/plugins/tag_sidebar/views/content.rhtml
|
2082
|
-
- vendor/plugins/
|
2083
|
-
- vendor/plugins/
|
2084
|
-
- vendor/plugins/
|
2085
|
-
- vendor/plugins/
|
2086
|
-
- vendor/plugins/
|
2087
|
-
- vendor/plugins/
|
2088
|
-
- vendor/plugins/
|
2089
|
-
- vendor/plugins/
|
2090
|
-
- vendor/plugins/
|
2091
|
-
- vendor/plugins/
|
2092
|
-
- vendor/plugins/
|
2093
|
-
- vendor/plugins/
|
2094
|
-
- vendor/plugins/
|
2095
|
-
- vendor/plugins/
|
2096
|
-
- vendor/plugins/
|
2097
|
-
- vendor/plugins/
|
2098
|
-
- vendor/plugins/
|
2360
|
+
- vendor/plugins/typo_converter
|
2361
|
+
- vendor/plugins/typo_converter/init.rb
|
2362
|
+
- vendor/plugins/typo_converter/lib
|
2363
|
+
- vendor/plugins/typo_converter/lib/converters
|
2364
|
+
- vendor/plugins/typo_converter/lib/converters/base.rb
|
2365
|
+
- vendor/plugins/typo_converter/lib/converters/dotclear
|
2366
|
+
- vendor/plugins/typo_converter/lib/converters/dotclear/category.rb
|
2367
|
+
- vendor/plugins/typo_converter/lib/converters/dotclear/comment.rb
|
2368
|
+
- vendor/plugins/typo_converter/lib/converters/dotclear/post.rb
|
2369
|
+
- vendor/plugins/typo_converter/lib/converters/dotclear/user.rb
|
2370
|
+
- vendor/plugins/typo_converter/lib/converters/dotclear.rb
|
2371
|
+
- vendor/plugins/typo_converter/lib/converters/dotclear_2
|
2372
|
+
- vendor/plugins/typo_converter/lib/converters/dotclear_2/category.rb
|
2373
|
+
- vendor/plugins/typo_converter/lib/converters/dotclear_2/comment.rb
|
2374
|
+
- vendor/plugins/typo_converter/lib/converters/dotclear_2/post.rb
|
2375
|
+
- vendor/plugins/typo_converter/lib/converters/dotclear_2/tag.rb
|
2376
|
+
- vendor/plugins/typo_converter/lib/converters/dotclear_2/user.rb
|
2377
|
+
- vendor/plugins/typo_converter/lib/converters/dotclear_2.rb
|
2378
|
+
- vendor/plugins/typo_converter/lib/converters/wp25
|
2379
|
+
- vendor/plugins/typo_converter/lib/converters/wp25/comment.rb
|
2380
|
+
- vendor/plugins/typo_converter/lib/converters/wp25/post.rb
|
2381
|
+
- vendor/plugins/typo_converter/lib/converters/wp25/term.rb
|
2382
|
+
- vendor/plugins/typo_converter/lib/converters/wp25/term_relationship.rb
|
2383
|
+
- vendor/plugins/typo_converter/lib/converters/wp25/term_taxonomy.rb
|
2384
|
+
- vendor/plugins/typo_converter/lib/converters/wp25/user.rb
|
2385
|
+
- vendor/plugins/typo_converter/lib/converters/wp25.rb
|
2386
|
+
- vendor/plugins/typo_converter/Rakefile
|
2387
|
+
- vendor/plugins/typo_converter/README
|
2388
|
+
- vendor/plugins/typo_converter/tasks
|
2389
|
+
- vendor/plugins/typo_converter/tasks/typo_converters_tasks.rake
|
2390
|
+
- vendor/plugins/typo_login_system
|
2391
|
+
- vendor/plugins/typo_login_system/init.rb
|
2392
|
+
- vendor/plugins/typo_login_system/lib
|
2393
|
+
- vendor/plugins/typo_login_system/lib/access_control.rb
|
2394
|
+
- vendor/plugins/typo_login_system/lib/login_system.rb
|
2099
2395
|
- vendor/plugins/typo_textfilter_amazon
|
2100
2396
|
- vendor/plugins/typo_textfilter_amazon/init.rb
|
2101
2397
|
- vendor/plugins/typo_textfilter_amazon/install.rb
|