typo 5.3 → 5.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +30 -627
- data/app/controllers/accounts_controller.rb +28 -8
- data/app/controllers/admin/base_controller.rb +0 -2
- data/app/controllers/admin/blacklist_controller.rb +1 -1
- data/app/controllers/admin/categories_controller.rb +1 -1
- data/app/controllers/admin/content_controller.rb +40 -20
- data/app/controllers/admin/dashboard_controller.rb +2 -0
- data/app/controllers/admin/feedback_controller.rb +5 -4
- data/app/controllers/admin/pages_controller.rb +1 -3
- data/app/controllers/admin/previews_controller.rb +10 -0
- data/app/controllers/admin/profiles_controller.rb +9 -27
- data/app/controllers/admin/resources_controller.rb +1 -4
- data/app/controllers/admin/settings_controller.rb +11 -5
- data/app/controllers/admin/tags_controller.rb +1 -1
- data/app/controllers/admin/themes_controller.rb +2 -0
- data/app/controllers/admin/users_controller.rb +6 -15
- data/app/controllers/application_controller.rb +76 -0
- data/app/controllers/articles_controller.rb +4 -8
- data/app/controllers/authors_controller.rb +21 -0
- data/app/controllers/backend_controller.rb +0 -1
- data/app/controllers/content_controller.rb +1 -5
- data/app/controllers/feedback_controller.rb +0 -1
- data/app/controllers/grouping_controller.rb +29 -7
- data/app/controllers/previews_controller.rb +10 -0
- data/app/controllers/redirect_controller.rb +3 -1
- data/app/controllers/theme_controller.rb +0 -4
- data/app/controllers/xml_controller.rb +7 -5
- data/app/helpers/admin/base_helper.rb +19 -13
- data/app/helpers/admin/users_helper.rb +12 -0
- data/app/helpers/application_helper.rb +20 -58
- data/app/helpers/articles_helper.rb +2 -2
- data/app/helpers/authors_helper.rb +5 -0
- data/app/models/article.rb +14 -28
- data/app/models/blog.rb +6 -38
- data/app/models/category.rb +2 -6
- data/app/models/content.rb +24 -18
- data/app/models/page.rb +0 -2
- data/app/models/page_cache.rb +4 -7
- data/app/models/sidebar.rb +6 -6
- data/app/models/text_filter.rb +1 -6
- data/app/models/theme.rb +7 -2
- data/app/models/trackback.rb +1 -5
- data/app/models/user.rb +13 -3
- data/app/views/accounts/confirm.html.erb +16 -0
- data/app/views/accounts/login.html.erb +30 -7
- data/app/views/accounts/signup.html.erb +16 -31
- data/app/views/admin/blacklist/_blacklist_patterns.html.erb +2 -1
- data/app/views/admin/blacklist/_form.html.erb +1 -1
- data/app/views/admin/blacklist/destroy.html.erb +7 -7
- data/app/views/admin/categories/_categories.html.erb +0 -4
- data/app/views/admin/categories/_form.html.erb +18 -20
- data/app/views/admin/categories/new.html.erb +5 -8
- data/app/views/admin/content/_article_list.html.erb +1 -5
- data/app/views/admin/content/_drafts.html.erb +4 -4
- data/app/views/admin/content/_form.html.erb +97 -87
- data/app/views/admin/content/_simple_editor.html.erb +4 -4
- data/app/views/admin/content/_visual_editor.html.erb +6 -5
- data/app/views/admin/content/index.html.erb +3 -5
- data/app/views/admin/content/new.html.erb +1 -1
- data/app/views/admin/dashboard/_comments.html.erb +2 -3
- data/app/views/admin/dashboard/_inbound.html.erb +2 -5
- data/app/views/admin/dashboard/_popular.html.erb +1 -1
- data/app/views/admin/dashboard/_posts.html.erb +1 -2
- data/app/views/admin/dashboard/_sysinfo.html.erb +4 -6
- data/app/views/admin/dashboard/_typo_dev.html.erb +4 -4
- data/app/views/admin/dashboard/_welcome.html.erb +3 -3
- data/app/views/admin/dashboard/index.html.erb +14 -8
- data/app/views/admin/feedback/_button.html.erb +6 -6
- data/app/views/admin/feedback/_form.html.erb +29 -18
- data/app/views/admin/feedback/article.html.erb +1 -1
- data/app/views/admin/feedback/index.html.erb +18 -10
- data/app/views/admin/pages/_form.html.erb +65 -47
- data/app/views/admin/pages/_pages.html.erb +1 -3
- data/app/views/admin/pages/_visual_editor.html.erb +1 -1
- data/app/views/admin/profiles/index.html.erb +6 -0
- data/app/views/admin/resources/_resources.html.erb +3 -6
- data/app/views/admin/resources/index.html.erb +14 -9
- data/app/views/admin/settings/_submit.html.erb +2 -2
- data/app/views/admin/settings/feedback.html.erb +96 -90
- data/app/views/admin/settings/index.html.erb +78 -46
- data/app/views/admin/settings/seo.html.erb +72 -63
- data/app/views/admin/settings/write.html.erb +21 -29
- data/app/views/admin/sidebar/index.html.erb +2 -2
- data/app/views/admin/tags/index.html.erb +18 -9
- data/app/views/admin/themes/catalogue.html.erb +6 -14
- data/app/views/admin/themes/index.html.erb +6 -12
- data/app/views/admin/users/_form.html.erb +181 -63
- data/app/views/admin/users/edit.html.erb +2 -5
- data/app/views/admin/users/index.html.erb +24 -29
- data/app/views/admin/users/new.html.erb +1 -5
- data/app/views/articles/_article.html.erb +15 -1
- data/app/views/articles/_atom_feed.atom.builder +1 -1
- data/app/views/articles/_rss20_feed.rss.builder +4 -2
- data/app/views/articles/read.html.erb +3 -3
- data/app/views/articles/search.html.erb +1 -1
- data/app/views/authors/show.html.erb +37 -0
- data/app/views/layouts/accounts.html.erb +3 -4
- data/app/views/layouts/administration.html.erb +29 -32
- data/app/views/shared/_search.html.erb +10 -0
- data/app/views/xml/_atom10_item_article.atom.builder +1 -3
- data/bin/typo +4 -0
- data/config/boot.rb +3 -2
- data/config/environment.rb +32 -109
- data/config/environments/cucumber.rb +23 -0
- data/config/environments/development.rb +1 -1
- data/config/environments/test.rb +5 -0
- data/config/initializers/access_rules.rb +20 -23
- data/config/locales/nl.rb +103 -0
- data/config/routes.rb +10 -4
- data/db/migrate/001_initial_schema.rb +4 -0
- data/db/migrate/057_add_categorization_model.rb +12 -5
- data/db/migrate/060_cleanup_contents_table.rb +9 -1
- data/db/migrate/067_remove_blog_ids.rb +9 -1
- data/db/migrate/075_move_editor_to_user.rb +1 -11
- data/db/migrate/078_add_textfilter_to_users.rb +1 -5
- data/db/migrate/079_move_editor_as_string.rb +1 -5
- data/db/migrate/080_add_state_to_user.rb +1 -5
- data/db/migrate/082_add_users_options.rb +35 -0
- data/db/migrate/083_add_users_display_perms.rb +19 -0
- data/db/migrate/084_move_users_to_profiles.rb +19 -0
- data/db/migrate/085_add_article_parent_draft.rb +9 -0
- data/db/migrate/086_add_user_last_connection.rb +9 -0
- data/db/schema.rb +18 -2
- data/doc/test_themes.rb +50 -0
- data/lang/fr_FR.rb +593 -538
- data/lang/he_IL.rb +2 -2
- data/lang/ja_JP.rb +449 -295
- data/lang/nl_NL.rb +657 -0
- data/lang/zh_TW.rb +597 -0
- data/lib/stateful.rb +1 -1
- data/lib/tasks/cucumber.rake +20 -0
- data/lib/tasks/release.rake +9 -5
- data/lib/tasks/rspec.rake +69 -44
- data/lib/tasks/sweep_cache.rake +0 -1
- data/lib/typo_version.rb +1 -1
- data/public/images/admin/blue_block_bottom_left.jpg +0 -0
- data/public/images/admin/blue_block_bottom_right.jpg +0 -0
- data/public/images/admin/blue_block_top_left.jpg +0 -0
- data/public/images/admin/blue_block_top_right.jpg +0 -0
- data/public/images/admin/editor_active_top_left.jpg +0 -0
- data/public/images/admin/editor_active_top_right.jpg +0 -0
- data/public/images/admin/editor_bottom_left.jpg +0 -0
- data/public/images/admin/editor_bottom_right.jpg +0 -0
- data/public/images/admin/input_text_left.jpg +0 -0
- data/public/images/admin/input_text_right.jpg +0 -0
- data/public/images/admin/input_text_small_left.jpg +0 -0
- data/public/images/admin/input_text_small_right.jpg +0 -0
- data/public/images/admin/publisher_bottom.jpg +0 -0
- data/public/images/admin/publisher_top.jpg +0 -0
- data/public/images/close.gif +0 -0
- data/public/images/loading.gif +0 -0
- data/public/images/nextlabel.gif +0 -0
- data/public/images/prevlabel.gif +0 -0
- data/public/javascripts/administration.js +1 -10
- data/public/javascripts/builder.js +136 -0
- data/public/javascripts/ckcustom.js +27 -0
- data/public/javascripts/ckeditor/.htaccess +24 -0
- data/public/javascripts/ckeditor/CHANGES.html +254 -0
- data/public/javascripts/ckeditor/INSTALL.html +92 -0
- data/public/javascripts/ckeditor/LICENSE.html +1334 -0
- data/public/javascripts/ckeditor/ckeditor.js +108 -0
- data/public/javascripts/ckeditor/ckeditor.pack +199 -0
- data/public/javascripts/ckeditor/ckeditor_basic.js +8 -0
- data/public/javascripts/ckeditor/ckeditor_basic_source.js +20 -0
- data/public/javascripts/ckeditor/ckeditor_source.js +25 -0
- data/public/javascripts/ckeditor/config.bak +11 -0
- data/public/javascripts/ckeditor/config.js +27 -0
- data/public/javascripts/ckeditor/contents.css +35 -0
- data/public/javascripts/{fckeditor/editor → ckeditor}/images/spacer.gif +0 -0
- data/public/javascripts/ckeditor/lang/_languages.js +6 -0
- data/public/javascripts/ckeditor/lang/_translationstatus.txt +59 -0
- data/public/javascripts/ckeditor/lang/af.js +6 -0
- data/public/javascripts/ckeditor/lang/ar.js +6 -0
- data/public/javascripts/ckeditor/lang/bg.js +6 -0
- data/public/javascripts/ckeditor/lang/bn.js +6 -0
- data/public/javascripts/ckeditor/lang/bs.js +6 -0
- data/public/javascripts/ckeditor/lang/ca.js +6 -0
- data/public/javascripts/ckeditor/lang/cs.js +6 -0
- data/public/javascripts/ckeditor/lang/da.js +6 -0
- data/public/javascripts/ckeditor/lang/de.js +6 -0
- data/public/javascripts/ckeditor/lang/el.js +6 -0
- data/public/javascripts/ckeditor/lang/en-au.js +6 -0
- data/public/javascripts/ckeditor/lang/en-ca.js +6 -0
- data/public/javascripts/ckeditor/lang/en-uk.js +6 -0
- data/public/javascripts/ckeditor/lang/en.js +6 -0
- data/public/javascripts/ckeditor/lang/eo.js +6 -0
- data/public/javascripts/ckeditor/lang/es.js +6 -0
- data/public/javascripts/ckeditor/lang/et.js +6 -0
- data/public/javascripts/ckeditor/lang/eu.js +6 -0
- data/public/javascripts/ckeditor/lang/fa.js +6 -0
- data/public/javascripts/ckeditor/lang/fi.js +6 -0
- data/public/javascripts/ckeditor/lang/fo.js +6 -0
- data/public/javascripts/ckeditor/lang/fr-ca.js +6 -0
- data/public/javascripts/ckeditor/lang/fr.js +6 -0
- data/public/javascripts/ckeditor/lang/gl.js +6 -0
- data/public/javascripts/ckeditor/lang/gu.js +6 -0
- data/public/javascripts/ckeditor/lang/he.js +6 -0
- data/public/javascripts/ckeditor/lang/hi.js +6 -0
- data/public/javascripts/ckeditor/lang/hr.js +6 -0
- data/public/javascripts/ckeditor/lang/hu.js +6 -0
- data/public/javascripts/ckeditor/lang/is.js +6 -0
- data/public/javascripts/ckeditor/lang/it.js +6 -0
- data/public/javascripts/ckeditor/lang/ja.js +6 -0
- data/public/javascripts/ckeditor/lang/km.js +6 -0
- data/public/javascripts/ckeditor/lang/ko.js +6 -0
- data/public/javascripts/ckeditor/lang/lt.js +6 -0
- data/public/javascripts/ckeditor/lang/lv.js +6 -0
- data/public/javascripts/ckeditor/lang/mn.js +6 -0
- data/public/javascripts/ckeditor/lang/ms.js +6 -0
- data/public/javascripts/ckeditor/lang/nb.js +6 -0
- data/public/javascripts/ckeditor/lang/nl.js +6 -0
- data/public/javascripts/ckeditor/lang/no.js +6 -0
- data/public/javascripts/ckeditor/lang/pl.js +6 -0
- data/public/javascripts/ckeditor/lang/pt-br.js +6 -0
- data/public/javascripts/ckeditor/lang/pt.js +6 -0
- data/public/javascripts/ckeditor/lang/ro.js +6 -0
- data/public/javascripts/ckeditor/lang/ru.js +6 -0
- data/public/javascripts/ckeditor/lang/sk.js +6 -0
- data/public/javascripts/ckeditor/lang/sl.js +6 -0
- data/public/javascripts/ckeditor/lang/sr-latn.js +6 -0
- data/public/javascripts/ckeditor/lang/sr.js +6 -0
- data/public/javascripts/ckeditor/lang/sv.js +6 -0
- data/public/javascripts/ckeditor/lang/th.js +6 -0
- data/public/javascripts/ckeditor/lang/tr.js +6 -0
- data/public/javascripts/ckeditor/lang/uk.js +6 -0
- data/public/javascripts/ckeditor/lang/vi.js +6 -0
- data/public/javascripts/ckeditor/lang/zh-cn.js +6 -0
- data/public/javascripts/ckeditor/lang/zh.js +6 -0
- data/public/javascripts/ckeditor/plugins/about/dialogs/about.js +6 -0
- data/public/javascripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/public/javascripts/ckeditor/plugins/about/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/basicstyles/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/blockquote/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/button/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
- data/public/javascripts/ckeditor/plugins/clipboard/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/colorbutton/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js +6 -0
- data/public/javascripts/ckeditor/plugins/colordialog/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/contextmenu/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
- data/public/javascripts/ckeditor/plugins/dialog/plugin.js +17 -0
- data/public/javascripts/ckeditor/plugins/dialogui/plugin.js +11 -0
- data/public/javascripts/ckeditor/plugins/domiterator/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/editingblock/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/elementspath/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/enterkey/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/entities/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/fakeobjects/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/filebrowser/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/find/dialogs/find.js +9 -0
- data/public/javascripts/ckeditor/plugins/find/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/flash/dialogs/flash.js +9 -0
- data/public/javascripts/ckeditor/plugins/flash/images/placeholder.png +0 -0
- data/public/javascripts/ckeditor/plugins/flash/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/floatpanel/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/font/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/format/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/forms/dialogs/button.js +6 -0
- data/public/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
- data/public/javascripts/ckeditor/plugins/forms/dialogs/form.js +6 -0
- data/public/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
- data/public/javascripts/ckeditor/plugins/forms/dialogs/radio.js +6 -0
- data/public/javascripts/ckeditor/plugins/forms/dialogs/select.js +9 -0
- data/public/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
- data/public/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +6 -0
- data/public/javascripts/ckeditor/plugins/forms/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/horizontalrule/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/htmldataprocessor/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/htmlwriter/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/iframedialog/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/image/dialogs/image.js +12 -0
- data/public/javascripts/ckeditor/plugins/image/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/indent/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/justify/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/keystrokes/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/link/dialogs/anchor.js +6 -0
- data/public/javascripts/ckeditor/plugins/link/dialogs/link.js +11 -0
- data/public/javascripts/{fckeditor/editor → ckeditor/plugins/link}/images/anchor.gif +0 -0
- data/public/javascripts/ckeditor/plugins/link/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/list/plugin.js +9 -0
- data/public/javascripts/ckeditor/plugins/listblock/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/maximize/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/menu/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/menubutton/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/newpage/plugin.js +6 -0
- data/public/javascripts/{fckeditor/editor/css/images/fck_pagebreak.gif → ckeditor/plugins/pagebreak/images/pagebreak.gif} +0 -0
- data/public/javascripts/ckeditor/plugins/pagebreak/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/panel/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/panelbutton/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/pastefromword/dialogs/pastefromword.js +8 -0
- data/public/javascripts/ckeditor/plugins/pastefromword/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
- data/public/javascripts/ckeditor/plugins/pastetext/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/popup/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/preview/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/print/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/removeformat/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/resize/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/richcombo/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/save/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/scayt/dialogs/options.js +8 -0
- data/public/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
- data/public/javascripts/ckeditor/plugins/scayt/plugin.js +8 -0
- data/public/javascripts/ckeditor/plugins/selection/plugin.js +9 -0
- data/public/javascripts/{fckeditor/editor/css → ckeditor/plugins/showblocks}/images/block_address.png +0 -0
- data/public/javascripts/{fckeditor/editor/css → ckeditor/plugins/showblocks}/images/block_blockquote.png +0 -0
- data/public/javascripts/{fckeditor/editor/css → ckeditor/plugins/showblocks}/images/block_div.png +0 -0
- data/public/javascripts/{fckeditor/editor/css → ckeditor/plugins/showblocks}/images/block_h1.png +0 -0
- data/public/javascripts/{fckeditor/editor/css → ckeditor/plugins/showblocks}/images/block_h2.png +0 -0
- data/public/javascripts/{fckeditor/editor/css → ckeditor/plugins/showblocks}/images/block_h3.png +0 -0
- data/public/javascripts/{fckeditor/editor/css → ckeditor/plugins/showblocks}/images/block_h4.png +0 -0
- data/public/javascripts/{fckeditor/editor/css → ckeditor/plugins/showblocks}/images/block_h5.png +0 -0
- data/public/javascripts/{fckeditor/editor/css → ckeditor/plugins/showblocks}/images/block_h6.png +0 -0
- data/public/javascripts/{fckeditor/editor/css → ckeditor/plugins/showblocks}/images/block_p.png +0 -0
- data/public/javascripts/{fckeditor/editor/css → ckeditor/plugins/showblocks}/images/block_pre.png +0 -0
- data/public/javascripts/ckeditor/plugins/showblocks/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/envelope.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/heart.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/kiss.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
- data/public/javascripts/ckeditor/plugins/smiley/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/sourcearea/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
- data/public/javascripts/ckeditor/plugins/specialchar/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/styles/plugin.js +10 -0
- data/public/javascripts/ckeditor/plugins/stylescombo/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/stylescombo/styles/default.js +6 -0
- data/public/javascripts/ckeditor/plugins/tab/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/table/dialogs/table.js +8 -0
- data/public/javascripts/ckeditor/plugins/table/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +7 -0
- data/public/javascripts/ckeditor/plugins/tabletools/plugin.js +9 -0
- data/public/javascripts/ckeditor/plugins/templates/dialogs/templates.js +6 -0
- data/public/javascripts/ckeditor/plugins/templates/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/templates/templates/default.js +6 -0
- data/public/javascripts/{fckeditor/editor/dialog/fck_template → ckeditor/plugins/templates/templates}/images/template1.gif +0 -0
- data/public/javascripts/{fckeditor/editor/dialog/fck_template → ckeditor/plugins/templates/templates}/images/template2.gif +0 -0
- data/public/javascripts/{fckeditor/editor/dialog/fck_template → ckeditor/plugins/templates/templates}/images/template3.gif +0 -0
- data/public/javascripts/ckeditor/plugins/toolbar/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
- data/public/javascripts/ckeditor/plugins/uicolor/lang/en.js +6 -0
- data/public/javascripts/ckeditor/plugins/uicolor/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/uicolor/uicolor.gif +0 -0
- data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/public/javascripts/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
- data/public/javascripts/ckeditor/plugins/uicolor/yui/yui.js +76 -0
- data/public/javascripts/ckeditor/plugins/undo/plugin.js +7 -0
- data/public/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
- data/public/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
- data/public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
- data/public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
- data/public/javascripts/ckeditor/plugins/wsc/plugin.js +6 -0
- data/public/javascripts/ckeditor/plugins/wysiwygarea/plugin.js +8 -0
- data/public/javascripts/ckeditor/skins/kama/dialog.css +9 -0
- data/public/javascripts/ckeditor/skins/kama/editor.css +12 -0
- data/public/javascripts/ckeditor/skins/kama/icons.png +0 -0
- data/public/javascripts/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
- data/public/javascripts/ckeditor/skins/kama/images/dialog_sides.png +0 -0
- data/public/javascripts/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/public/javascripts/ckeditor/skins/kama/images/mini.gif +0 -0
- data/public/javascripts/ckeditor/skins/kama/images/noimage.png +0 -0
- data/public/javascripts/ckeditor/skins/kama/images/sprites.png +0 -0
- data/public/javascripts/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
- data/public/javascripts/{fckeditor/editor/skins/silver/images/toolbar.start.gif → ckeditor/skins/kama/images/toolbar_start.gif} +0 -0
- data/public/javascripts/ckeditor/skins/kama/skin.js +7 -0
- data/public/javascripts/ckeditor/skins/kama/templates.css +6 -0
- data/public/javascripts/ckeditor/skins/office2003/dialog.css +8 -0
- data/public/javascripts/ckeditor/skins/office2003/editor.css +13 -0
- data/public/javascripts/ckeditor/skins/office2003/icons.png +0 -0
- data/public/javascripts/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
- data/public/javascripts/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
- data/public/javascripts/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/public/javascripts/ckeditor/skins/office2003/images/mini.gif +0 -0
- data/public/javascripts/ckeditor/skins/office2003/images/noimage.png +0 -0
- data/public/javascripts/ckeditor/skins/office2003/images/sprites.png +0 -0
- data/public/javascripts/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
- data/public/javascripts/ckeditor/skins/office2003/skin.js +6 -0
- data/public/javascripts/ckeditor/skins/office2003/templates.css +6 -0
- data/public/javascripts/ckeditor/skins/v2/dialog.css +8 -0
- data/public/javascripts/ckeditor/skins/v2/editor.css +12 -0
- data/public/javascripts/ckeditor/skins/v2/icons.png +0 -0
- data/public/javascripts/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
- data/public/javascripts/ckeditor/skins/v2/images/dialog_sides.png +0 -0
- data/public/javascripts/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/public/javascripts/ckeditor/skins/v2/images/mini.gif +0 -0
- data/public/javascripts/ckeditor/skins/v2/images/noimage.png +0 -0
- data/public/javascripts/ckeditor/skins/v2/images/sprites.png +0 -0
- data/public/javascripts/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
- data/public/javascripts/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
- data/public/javascripts/ckeditor/skins/v2/skin.js +6 -0
- data/public/javascripts/ckeditor/skins/v2/templates.css +6 -0
- data/public/javascripts/ckeditor/themes/default/theme.js +7 -0
- data/public/javascripts/controls.js +72 -72
- data/public/javascripts/dragdrop.js +165 -164
- data/public/javascripts/effects.js +173 -165
- data/public/javascripts/lang/nl_NL.js +21 -0
- data/public/javascripts/lang/zh_TW.js +17 -0
- data/public/javascripts/lightbox.js +470 -175
- data/public/stylesheets/administration.css +404 -656
- data/public/stylesheets/border-radius-ie8.htc +34 -0
- data/public/stylesheets/lightbox.css +21 -56
- data/public/stylesheets/user-styles.css +4 -2
- data/script/autospec +1 -0
- data/script/spec +9 -3
- data/script/spec_server +5 -112
- data/spec/controllers/accounts_controller_spec.rb +30 -16
- data/spec/controllers/admin/blacklist_controller_spec.rb +7 -12
- data/spec/controllers/admin/cache_controller_spec.rb +0 -5
- data/spec/controllers/admin/categories_controller_spec.rb +11 -16
- data/spec/controllers/admin/content_controller_spec.rb +14 -19
- data/spec/controllers/admin/feedback_controller_spec.rb +12 -1
- data/spec/controllers/admin/pages_controller_spec.rb +20 -17
- data/spec/controllers/admin/profiles_controller_spec.rb +17 -8
- data/spec/controllers/admin/resources_controller_spec.rb +3 -14
- data/spec/controllers/admin/settings_controller_spec.rb +0 -5
- data/spec/controllers/admin/tags_controller_spec.rb +1 -7
- data/spec/controllers/admin/textfilters_controller_spec.rb +0 -5
- data/spec/controllers/admin/themes_controller_spec.rb +3 -3
- data/spec/controllers/admin/users_controller_spec.rb +59 -41
- data/spec/controllers/application_controller_spec.rb +18 -0
- data/spec/controllers/articles_controller_spec.rb +88 -39
- data/spec/controllers/authors_controller_spec.rb +42 -0
- data/spec/controllers/backend_controller_spec.rb +30 -35
- data/spec/controllers/categories_controller_spec.rb +20 -22
- data/spec/controllers/comments_controller_spec.rb +3 -3
- data/spec/controllers/previews_controller_spec.rb +28 -0
- data/spec/controllers/redirect_controller_spec.rb +36 -35
- data/spec/controllers/tags_controller_spec.rb +15 -10
- data/spec/controllers/textfilter_controller_spec.rb +11 -72
- data/spec/controllers/theme_controller_spec.rb +8 -12
- data/spec/controllers/xml_controller_spec.rb +59 -101
- data/spec/factories.rb +25 -0
- data/spec/models/article_closing_spec.rb +4 -4
- data/spec/models/article_spec.rb +119 -30
- data/spec/models/blacklist_pattern_spec.rb +1 -1
- data/spec/models/blog_spec.rb +0 -1
- data/spec/models/comment_spec.rb +0 -4
- data/spec/models/configuration_spec.rb +1 -1
- data/spec/models/content_state/feedback_states_spec.rb +4 -4
- data/spec/models/notification_spec.rb +2 -2
- data/spec/models/ping_pinger_spec.rb +3 -3
- data/spec/models/ping_spec.rb +34 -47
- data/spec/models/route_cache_spec.rb +2 -2
- data/spec/models/sidebar_spec.rb +2 -2
- data/spec/models/theme_spec.rb +4 -4
- data/spec/models/trigger_spec.rb +1 -0
- data/spec/models/user_spec.rb +92 -39
- data/spec/rcov.opts +2 -0
- data/spec/spec_helper.rb +92 -19
- data/spec/views/articles/index_spec.rb +2 -2
- data/spec/views/articles/read_spec.rb +16 -0
- data/spec/views/comments/html_sanitization_spec.rb +16 -0
- data/test/fixtures/contents.yml +28 -11
- data/test/fixtures/feedback.yml +14 -0
- data/test/fixtures/profiles.yml +1 -0
- data/test/fixtures/users.yml +9 -1
- data/test/test_helper.rb +2 -151
- data/themes/dirtylicious/layouts/default.html.erb +1 -1
- data/themes/dirtylicious/views/articles/_article.html.erb +14 -10
- data/themes/dirtylicious/views/articles/_comment_form.html.erb +1 -1
- data/themes/dirtylicious/views/articles/read.html.erb +4 -4
- data/themes/scribbish/layouts/default.html.erb +1 -1
- data/themes/scribbish/views/articles/_article.html.erb +13 -9
- data/themes/scribbish/views/articles/_comment_form.html.erb +1 -1
- data/themes/scribbish/views/articles/read.html.erb +4 -4
- data/themes/standard_issue/layouts/default.html.erb +1 -1
- data/themes/standard_issue/views/articles/_article.html.erb +13 -9
- data/themes/standard_issue/views/articles/_comment_form.html.erb +1 -1
- data/themes/standard_issue/views/articles/read.html.erb +4 -4
- data/themes/true-blue-3/README +3 -0
- data/themes/true-blue-3/about.markdown +3 -0
- data/themes/true-blue-3/helpers/theme_helper.rb +85 -0
- data/themes/true-blue-3/images/background.gif +0 -0
- data/themes/true-blue-3/images/bg_input.jpg +0 -0
- data/themes/true-blue-3/images/bullet.jpg +0 -0
- data/themes/true-blue-3/images/comment.gif +0 -0
- data/themes/true-blue-3/images/comment.jpg +0 -0
- data/themes/true-blue-3/images/comment_bottom.gif +0 -0
- data/themes/true-blue-3/images/comment_fdv.gif +0 -0
- data/themes/true-blue-3/images/find.png +0 -0
- data/themes/true-blue-3/images/fleche1.png +0 -0
- data/themes/true-blue-3/images/fleche2.png +0 -0
- data/themes/true-blue-3/images/frederic-de-villamil.jpg +0 -0
- data/themes/true-blue-3/images/rss.png +0 -0
- data/themes/true-blue-3/images/searchform.png +0 -0
- data/themes/true-blue-3/images/textarea_bg.jpg +0 -0
- data/themes/true-blue-3/images/twitter.jpg +0 -0
- data/themes/true-blue-3/images/twitter.png +0 -0
- data/themes/true-blue-3/layouts/default.html.erb +52 -0
- data/themes/true-blue-3/preview.png +0 -0
- data/themes/true-blue-3/psd/true-blue-3.psd +0 -0
- data/themes/true-blue-3/psd/true-blue-3_article.psd +0 -0
- data/themes/true-blue-3/stylesheets/style.css +555 -0
- data/themes/true-blue-3/views/articles/_article.html.erb +21 -0
- data/themes/true-blue-3/views/articles/_comment.html.erb +14 -0
- data/themes/true-blue-3/views/articles/_comment_form.html.erb +23 -0
- data/themes/true-blue-3/views/articles/_comment_list.html.erb +8 -0
- data/themes/true-blue-3/views/articles/_trackback.html.erb +9 -0
- data/themes/true-blue-3/views/articles/comment_preview.html.erb +10 -0
- data/themes/true-blue-3/views/articles/index.html.erb +5 -0
- data/themes/true-blue-3/views/articles/read.html.erb +38 -0
- data/themes/true-blue-3/views/articles/search.html.erb +29 -0
- data/themes/true-blue-3/views/articles/view_page.html.erb +4 -0
- data/themes/true-blue-3/views/categories/_article.html.erb +22 -0
- data/themes/true-blue-3/views/categories/index.html.erb +13 -0
- data/themes/true-blue-3/views/categories/show.html.erb +7 -0
- data/themes/true-blue-3/views/tags/_article.html.erb +22 -0
- data/themes/true-blue-3/views/tags/show.html.erb +6 -0
- data/themes/typographic/layouts/default.html.erb +1 -1
- data/themes/typographic/views/articles/_article.html.erb +13 -9
- data/themes/typographic/views/articles/_comment_form.html.erb +1 -1
- data/themes/typographic/views/articles/_comment_list.html.erb +1 -1
- data/themes/typographic/views/articles/read.html.erb +4 -4
- data/vendor/flickr/flickr.rb +3 -3
- data/vendor/plugins/archives_sidebar/views/content.rhtml +1 -1
- data/vendor/plugins/authors_sidebar/Rakefile +22 -0
- data/vendor/plugins/authors_sidebar/init.rb +4 -0
- data/vendor/plugins/authors_sidebar/lib/authors_sidebar.rb +10 -0
- data/vendor/plugins/authors_sidebar/test/authors_sidebar_test.rb +8 -0
- data/vendor/plugins/authors_sidebar/views/content.rhtml +11 -0
- data/vendor/plugins/category_sidebar/views/content.rhtml +2 -2
- data/vendor/plugins/easy-ckeditor/CHANGELOG +15 -0
- data/vendor/plugins/easy-ckeditor/LICENSE +16 -0
- data/vendor/plugins/easy-ckeditor/README.textile +164 -0
- data/vendor/plugins/easy-ckeditor/Rakefile +72 -0
- data/vendor/plugins/easy-ckeditor/app/controllers/ckeditor_controller.rb +225 -0
- data/vendor/plugins/easy-ckeditor/app/helpers/ckeditor_helper.rb +2 -0
- data/vendor/plugins/easy-ckeditor/init.rb +33 -0
- data/vendor/plugins/easy-ckeditor/install.rb +12 -0
- data/vendor/plugins/easy-ckeditor/lib/ckeditor.rb +113 -0
- data/vendor/plugins/easy-ckeditor/lib/ckeditor_file_utils.rb +108 -0
- data/vendor/plugins/easy-ckeditor/lib/ckeditor_version.rb +9 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckcustom.js +16 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/.htaccess +24 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/CHANGES.html +254 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/INSTALL.html +92 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/LICENSE.html +1334 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/ckeditor.js +108 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/ckeditor.pack +199 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/ckeditor_basic.js +8 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/ckeditor_basic_source.js +20 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/ckeditor_source.js +25 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/config.js +11 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/contents.css +35 -0
- data/{public/javascripts/fckeditor/editor/skins/silver/images/toolbar.end.gif → vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/images/spacer.gif} +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/_languages.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/_translationstatus.txt +59 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/af.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/ar.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/bg.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/bn.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/bs.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/ca.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/cs.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/da.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/de.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/el.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/en-au.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/en-ca.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/en-uk.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/en.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/eo.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/es.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/et.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/eu.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/fa.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/fi.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/fo.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/fr-ca.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/fr.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/gl.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/gu.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/he.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/hi.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/hr.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/hu.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/is.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/it.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/ja.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/km.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/ko.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/lt.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/lv.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/mn.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/ms.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/nb.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/nl.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/no.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/pl.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/pt-br.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/pt.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/ro.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/ru.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/sk.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/sl.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/sr-latn.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/sr.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/sv.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/th.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/tr.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/uk.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/vi.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/zh-cn.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/zh.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/about/dialogs/about.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/about/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/basicstyles/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/blockquote/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/button/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/clipboard/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/colorbutton/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/contextmenu/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/dialog/dialogDefinition.js +4 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/dialog/plugin.js +17 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/dialogui/plugin.js +11 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/domiterator/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/editingblock/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/elementspath/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/enterkey/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/entities/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/fakeobjects/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/filebrowser/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/find/dialogs/find.js +9 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/find/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/flash/dialogs/flash.js +9 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/flash/images/placeholder.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/flash/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/floatpanel/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/font/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/format/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/button.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/form.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/radio.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/select.js +9 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/textarea.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/textfield.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/horizontalrule/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/htmldataprocessor/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/htmlwriter/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/iframedialog/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/image/dialogs/image.js +12 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/image/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/indent/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/justify/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/keystrokes/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/link/dialogs/anchor.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/link/dialogs/link.js +11 -0
- data/{public/javascripts/fckeditor/editor/css/images/fck_anchor.gif → vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/link/images/anchor.gif} +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/link/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/list/plugin.js +9 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/listblock/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/maximize/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/menu/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/menubutton/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/newpage/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/pagebreak/images/pagebreak.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/pagebreak/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/panel/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/panelbutton/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/pastefromword/dialogs/pastefromword.js +8 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/pastefromword/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/pastetext/dialogs/pastetext.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/pastetext/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/popup/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/preview/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/print/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/removeformat/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/resize/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/richcombo/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/save/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/scayt/dialogs/options.js +8 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/scayt/plugin.js +8 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/selection/plugin.js +9 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_address.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_blockquote.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_div.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_h1.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_h2.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_h3.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_h4.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_h5.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_h6.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_p.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_pre.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/angel_smile.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/angry_smile.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/broken_heart.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/confused_smile.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/cry_smile.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/devil_smile.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/embaressed_smile.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/envelope.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/heart.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/kiss.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/lightbulb.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/omg_smile.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/regular_smile.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/sad_smile.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/shades_smile.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/teeth_smile.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/thumbs_down.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/thumbs_up.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/tounge_smile.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/wink_smile.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/sourcearea/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/specialchar/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/styles/plugin.js +10 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/stylescombo/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/stylescombo/styles/default.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/tab/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/table/dialogs/table.js +8 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/table/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/tabletools/plugin.js +9 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/templates/dialogs/templates.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/templates/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/templates/templates/default.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/templates/templates/images/template1.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/templates/templates/images/template2.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/templates/templates/images/template3.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/toolbar/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/dialogs/uicolor.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/lang/en.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/uicolor.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_bg.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_mask.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/yui/assets/yui.css +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/yui/yui.js +76 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/undo/plugin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html +49 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html +52 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/wsc/plugin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/wysiwygarea/plugin.js +8 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/dialog.css +9 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/editor.css +12 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/icons.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/dialog_sides.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/dialog_sides.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/dialog_sides_rtl.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/mini.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/noimage.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/sprites.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/sprites_ie6.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/toolbar_start.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/skin.js +7 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/templates.css +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/dialog.css +8 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/editor.css +13 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/icons.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/images/dialog_sides.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/images/dialog_sides.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/images/dialog_sides_rtl.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/images/mini.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/images/noimage.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/images/sprites.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/images/sprites_ie6.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/skin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/templates.css +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/dialog.css +8 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/editor.css +12 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/icons.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/dialog_sides.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/dialog_sides.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/dialog_sides_rtl.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/mini.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/noimage.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/sprites.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/sprites_ie6.png +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/toolbar_start.gif +0 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/skin.js +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/templates.css +6 -0
- data/vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/themes/default/theme.js +7 -0
- data/vendor/plugins/easy-ckeditor/tasks/ckeditor_tasks.rake +108 -0
- data/vendor/plugins/easy-ckeditor/uninstall.rb +8 -0
- data/vendor/plugins/livesearch_sidebar/views/content.rhtml +1 -1
- data/vendor/plugins/page_sidebar/lib/page_sidebar.rb +1 -1
- data/vendor/plugins/typo_converter/Rakefile +7 -8
- data/vendor/plugins/typo_converter/db/wp25_schema.rb +152 -0
- data/vendor/plugins/typo_converter/lib/converters/base.rb +41 -2
- data/vendor/plugins/typo_converter/lib/converters/wp25.rb +59 -4
- data/vendor/plugins/typo_converter/lib/converters/wp25/comment.rb +1 -0
- data/vendor/plugins/typo_converter/lib/converters/wp25/option.rb +11 -0
- data/vendor/plugins/typo_converter/spec/converters/wp25_spec.rb +192 -0
- data/vendor/plugins/typo_converter/spec/factories/wp25_factories.rb +77 -0
- data/vendor/plugins/typo_converter/spec/spec_helper.rb +19 -0
- data/vendor/plugins/typo_converter/spec/typo_converter_spec.rb +2 -0
- data/vendor/plugins/typo_converter/tasks/typo_converters_tasks.rake +1 -4
- data/vendor/plugins/typo_textfilter_code/init.rb +7 -2
- data/vendor/plugins/typo_textfilter_code/lib/typo_textfilter_code.rb +2 -0
- data/vendor/plugins/typo_textfilter_lightbox/lib/typo_textfilter_lightbox.rb +4 -2
- data/vendor/plugins/typo_textfilter_textile/lib/typo_textfilter_textile.rb +1 -1
- data/vendor/plugins/xml_sidebar/lib/xml_sidebar.rb +3 -0
- data/vendor/plugins/xml_sidebar/views/content.rhtml +15 -1
- metadata +684 -1280
- data/app/controllers/application.rb +0 -90
- data/app/models/simple_cache.rb +0 -37
- data/app/views/admin/resources/new.html.erb +0 -16
- data/app/views/admin/settings/read.html.erb +0 -35
- data/app/views/admin/tags/_tags.html.erb +0 -18
- data/app/views/shared/_loginform.html.erb +0 -20
- data/config/initializers/active_record_hacks.rb +0 -17
- data/config/initializers/benchmark_hacks.rb +0 -9
- data/doc/typo-5.3-release-notes.txt +0 -105
- data/lib/memory_profiler.rb +0 -60
- data/lib/typo_deprecated.rb +0 -30
- data/lib/xmlrpc_fix.rb +0 -13
- data/public/javascripts/fckcustom.js +0 -28
- data/public/javascripts/fckeditor/editor/_source/classes/fckcontextmenu.js +0 -214
- data/public/javascripts/fckeditor/editor/_source/classes/fckdataprocessor.js +0 -119
- data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js +0 -46
- data/public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js +0 -58
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange.js +0 -918
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_gecko.js +0 -104
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrange_ie.js +0 -199
- data/public/javascripts/fckeditor/editor/_source/classes/fckdomrangeiterator.js +0 -327
- data/public/javascripts/fckeditor/editor/_source/classes/fckeditingarea.js +0 -362
- data/public/javascripts/fckeditor/editor/_source/classes/fckelementpath.js +0 -89
- data/public/javascripts/fckeditor/editor/_source/classes/fckenterkey.js +0 -667
- data/public/javascripts/fckeditor/editor/_source/classes/fckevents.js +0 -71
- data/public/javascripts/fckeditor/editor/_source/classes/fckhtmliterator.js +0 -142
- data/public/javascripts/fckeditor/editor/_source/classes/fckicon.js +0 -103
- data/public/javascripts/fckeditor/editor/_source/classes/fckiecleanup.js +0 -68
- data/public/javascripts/fckeditor/editor/_source/classes/fckimagepreloader.js +0 -64
- data/public/javascripts/fckeditor/editor/_source/classes/fckkeystrokehandler.js +0 -141
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenublock.js +0 -153
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenublockpanel.js +0 -54
- data/public/javascripts/fckeditor/editor/_source/classes/fckmenuitem.js +0 -161
- data/public/javascripts/fckeditor/editor/_source/classes/fckpanel.js +0 -385
- data/public/javascripts/fckeditor/editor/_source/classes/fckplugin.js +0 -56
- data/public/javascripts/fckeditor/editor/_source/classes/fckspecialcombo.js +0 -376
- data/public/javascripts/fckeditor/editor/_source/classes/fckstyle.js +0 -1443
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbar.js +0 -103
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js +0 -36
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js +0 -38
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbutton.js +0 -81
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js +0 -198
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js +0 -139
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js +0 -98
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js +0 -76
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js +0 -103
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js +0 -146
- data/public/javascripts/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js +0 -200
- data/public/javascripts/fckeditor/editor/_source/classes/fckw3crange.js +0 -451
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml.js +0 -108
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml_gecko.js +0 -102
- data/public/javascripts/fckeditor/editor/_source/classes/fckxml_ie.js +0 -88
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fck_othercommands.js +0 -518
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js +0 -250
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js +0 -61
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckfitwindow.js +0 -180
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckindentcommands.js +0 -282
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckjustifycommands.js +0 -173
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcklistcommands.js +0 -382
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcknamedcommand.js +0 -39
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js +0 -40
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js +0 -40
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js +0 -45
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckshowblocks.js +0 -74
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js +0 -41
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js +0 -69
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fckstylecommand.js +0 -60
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktablecommand.js +0 -106
- data/public/javascripts/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js +0 -201
- data/public/javascripts/fckeditor/editor/_source/fckconstants.js +0 -56
- data/public/javascripts/fckeditor/editor/_source/fckeditorapi.js +0 -176
- data/public/javascripts/fckeditor/editor/_source/fckjscoreextensions.js +0 -166
- data/public/javascripts/fckeditor/editor/_source/fckscriptloader.js +0 -122
- data/public/javascripts/fckeditor/editor/_source/internals/fck.js +0 -1175
- data/public/javascripts/fckeditor/editor/_source/internals/fck_contextmenu.js +0 -325
- data/public/javascripts/fckeditor/editor/_source/internals/fck_gecko.js +0 -456
- data/public/javascripts/fckeditor/editor/_source/internals/fck_ie.js +0 -453
- data/public/javascripts/fckeditor/editor/_source/internals/fckbrowserinfo.js +0 -61
- data/public/javascripts/fckeditor/editor/_source/internals/fckcodeformatter.js +0 -100
- data/public/javascripts/fckeditor/editor/_source/internals/fckcommands.js +0 -167
- data/public/javascripts/fckeditor/editor/_source/internals/fckconfig.js +0 -238
- data/public/javascripts/fckeditor/editor/_source/internals/fckdebug.js +0 -56
- data/public/javascripts/fckeditor/editor/_source/internals/fckdialog.js +0 -234
- data/public/javascripts/fckeditor/editor/_source/internals/fckdialog_gecko.js +0 -103
- data/public/javascripts/fckeditor/editor/_source/internals/fckdialog_ie.js +0 -48
- data/public/javascripts/fckeditor/editor/_source/internals/fckdocumentprocessor.js +0 -249
- data/public/javascripts/fckeditor/editor/_source/internals/fckdomtools.js +0 -1024
- data/public/javascripts/fckeditor/editor/_source/internals/fcklanguagemanager.js +0 -163
- data/public/javascripts/fckeditor/editor/_source/internals/fcklisthandler.js +0 -152
- data/public/javascripts/fckeditor/editor/_source/internals/fcklistslib.js +0 -63
- data/public/javascripts/fckeditor/editor/_source/internals/fckplugins.js +0 -46
- data/public/javascripts/fckeditor/editor/_source/internals/fckregexlib.js +0 -99
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection.js +0 -42
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection_gecko.js +0 -220
- data/public/javascripts/fckeditor/editor/_source/internals/fckselection_ie.js +0 -275
- data/public/javascripts/fckeditor/editor/_source/internals/fckstyles.js +0 -381
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler.js +0 -858
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_gecko.js +0 -56
- data/public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_ie.js +0 -64
- data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbaritems.js +0 -123
- data/public/javascripts/fckeditor/editor/_source/internals/fcktoolbarset.js +0 -399
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools.js +0 -740
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools_gecko.js +0 -282
- data/public/javascripts/fckeditor/editor/_source/internals/fcktools_ie.js +0 -233
- data/public/javascripts/fckeditor/editor/_source/internals/fckundo.js +0 -223
- data/public/javascripts/fckeditor/editor/_source/internals/fckurlparams.js +0 -39
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml.js +0 -515
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_gecko.js +0 -101
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtml_ie.js +0 -203
- data/public/javascripts/fckeditor/editor/_source/internals/fckxhtmlentities.js +0 -354
- data/public/javascripts/fckeditor/editor/css/behaviors/disablehandles.htc +0 -15
- data/public/javascripts/fckeditor/editor/css/behaviors/showtableborders.htc +0 -36
- data/public/javascripts/fckeditor/editor/css/fck_editorarea.css +0 -92
- data/public/javascripts/fckeditor/editor/css/fck_internal.css +0 -199
- data/public/javascripts/fckeditor/editor/css/fck_showtableborders_gecko.css +0 -49
- 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_plugin.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.css +0 -85
- data/public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.js +0 -338
- 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 +0 -161
- 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_about/sponsors/spellchecker_net.gif +0 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_anchor.html +0 -212
- data/public/javascripts/fckeditor/editor/dialog/fck_button.html +0 -104
- data/public/javascripts/fckeditor/editor/dialog/fck_checkbox.html +0 -104
- data/public/javascripts/fckeditor/editor/dialog/fck_colorselector.html +0 -172
- data/public/javascripts/fckeditor/editor/dialog/fck_docprops.html +0 -600
- data/public/javascripts/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html +0 -113
- data/public/javascripts/fckeditor/editor/dialog/fck_find.html +0 -173
- data/public/javascripts/fckeditor/editor/dialog/fck_flash.html +0 -152
- data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash.js +0 -292
- data/public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html +0 -50
- data/public/javascripts/fckeditor/editor/dialog/fck_form.html +0 -109
- data/public/javascripts/fckeditor/editor/dialog/fck_hiddenfield.html +0 -115
- data/public/javascripts/fckeditor/editor/dialog/fck_image.html +0 -258
- data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image.js +0 -504
- data/public/javascripts/fckeditor/editor/dialog/fck_image/fck_image_preview.html +0 -72
- data/public/javascripts/fckeditor/editor/dialog/fck_link.html +0 -293
- data/public/javascripts/fckeditor/editor/dialog/fck_link/fck_link.js +0 -736
- data/public/javascripts/fckeditor/editor/dialog/fck_listprop.html +0 -120
- data/public/javascripts/fckeditor/editor/dialog/fck_paste.html +0 -339
- data/public/javascripts/fckeditor/editor/dialog/fck_radiobutton.html +0 -104
- data/public/javascripts/fckeditor/editor/dialog/fck_replace.html +0 -530
- data/public/javascripts/fckeditor/editor/dialog/fck_select.html +0 -180
- data/public/javascripts/fckeditor/editor/dialog/fck_select/fck_select.js +0 -194
- data/public/javascripts/fckeditor/editor/dialog/fck_smiley.html +0 -111
- data/public/javascripts/fckeditor/editor/dialog/fck_source.html +0 -68
- data/public/javascripts/fckeditor/editor/dialog/fck_specialchar.html +0 -121
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages.html +0 -65
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html +0 -0
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js +0 -87
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html +0 -153
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm +0 -148
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php +0 -199
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl +0 -181
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js +0 -461
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html +0 -71
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css +0 -49
- data/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js +0 -272
- data/public/javascripts/fckeditor/editor/dialog/fck_table.html +0 -298
- data/public/javascripts/fckeditor/editor/dialog/fck_tablecell.html +0 -257
- data/public/javascripts/fckeditor/editor/dialog/fck_template.html +0 -242
- data/public/javascripts/fckeditor/editor/dialog/fck_textarea.html +0 -94
- data/public/javascripts/fckeditor/editor/dialog/fck_textfield.html +0 -136
- data/public/javascripts/fckeditor/editor/dtd/fck_dtd_test.html +0 -41
- data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10strict.js +0 -116
- data/public/javascripts/fckeditor/editor/dtd/fck_xhtml10transitional.js +0 -140
- data/public/javascripts/fckeditor/editor/fckdebug.html +0 -153
- data/public/javascripts/fckeditor/editor/fckdialog.html +0 -783
- data/public/javascripts/fckeditor/editor/fckeditor.html +0 -278
- data/public/javascripts/fckeditor/editor/fckeditor.original.html +0 -385
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.css +0 -89
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/browser.html +0 -198
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmactualfolder.html +0 -99
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html +0 -113
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmfolders.html +0 -197
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourceslist.html +0 -168
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourcetype.html +0 -65
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/frmupload.html +0 -115
- 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 +0 -87
- data/public/javascripts/fckeditor/editor/filemanager/browser/default/js/fckxml.js +0 -129
- data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/connector.aspx +0 -32
- data/public/javascripts/fckeditor/editor/filemanager/connectors/aspx/upload.aspx +0 -32
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/basexml.pl +0 -63
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/commands.pl +0 -214
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/connector.cgi +0 -136
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/io.pl +0 -141
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload.cgi +0 -117
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload_fck.pl +0 -686
- data/public/javascripts/fckeditor/editor/filemanager/connectors/perl/util.pl +0 -68
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/config.py +0 -146
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/connector.py +0 -118
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckcommands.py +0 -198
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckconnector.py +0 -90
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckoutput.py +0 -142
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/fckutil.py +0 -126
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/htaccess.txt +0 -23
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/upload.py +0 -88
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/wsgi.py +0 -58
- data/public/javascripts/fckeditor/editor/filemanager/connectors/py/zope.py +0 -188
- data/public/javascripts/fckeditor/editor/filemanager/connectors/test.html +0 -210
- data/public/javascripts/fckeditor/editor/filemanager/connectors/uploadtest.html +0 -192
- 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/public/javascripts/fckeditor/editor/js/fckadobeair.js +0 -176
- data/public/javascripts/fckeditor/editor/js/fckeditorcode_gecko.js +0 -108
- data/public/javascripts/fckeditor/editor/js/fckeditorcode_ie.js +0 -109
- data/public/javascripts/fckeditor/editor/lang/_translationstatus.txt +0 -77
- data/public/javascripts/fckeditor/editor/lang/af.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/ar.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/bg.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/bn.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/bs.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/ca.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/cs.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/da.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/de.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/el.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/en-au.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/en-ca.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/en-uk.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/en.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/eo.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/es.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/et.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/eu.js +0 -516
- data/public/javascripts/fckeditor/editor/lang/fa.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/fi.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/fo.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/fr-ca.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/fr.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/gl.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/he.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/hi.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/hr.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/hu.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/it.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/ja.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/km.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/ko.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/lt.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/lv.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/mn.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/ms.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/nb.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/nl.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/no.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/pl.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/pt-br.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/pt.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/ro.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/ru.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/sk.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/sl.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/sr-latn.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/sr.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/sv.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/th.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/tr.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/uk.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/vi.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/zh-cn.js +0 -515
- data/public/javascripts/fckeditor/editor/lang/zh.js +0 -515
- data/public/javascripts/fckeditor/editor/plugins/autogrow/fckplugin.js +0 -99
- data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.config.js +0 -26
- data/public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.html +0 -67
- data/public/javascripts/fckeditor/editor/plugins/bbcode/fckplugin.js +0 -123
- data/public/javascripts/fckeditor/editor/plugins/dragresizetable/fckplugin.js +0 -527
- data/public/javascripts/fckeditor/editor/plugins/placeholder/fck_placeholder.html +0 -105
- data/public/javascripts/fckeditor/editor/plugins/placeholder/fckplugin.js +0 -187
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/de.js +0 -27
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/en.js +0 -27
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/es.js +0 -27
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/fr.js +0 -27
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/it.js +0 -27
- data/public/javascripts/fckeditor/editor/plugins/placeholder/lang/pl.js +0 -27
- data/public/javascripts/fckeditor/editor/plugins/placeholder/placeholder.gif +0 -0
- data/public/javascripts/fckeditor/editor/plugins/simplecommands/fckplugin.js +0 -29
- data/public/javascripts/fckeditor/editor/plugins/tablecommands/fckplugin.js +0 -33
- data/public/javascripts/fckeditor/editor/skins/_fckviewstrips.html +0 -121
- data/public/javascripts/fckeditor/editor/skins/silver/fck_dialog.css +0 -402
- data/public/javascripts/fckeditor/editor/skins/silver/fck_editor.css +0 -473
- 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.expand.gif +0 -0
- data/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.separator.gif +0 -0
- data/public/javascripts/fckeditor/fckconfig.js +0 -316
- data/public/javascripts/fckeditor/fckeditor.js +0 -303
- data/public/javascripts/fckeditor/fckeditor.py +0 -160
- data/public/javascripts/fckeditor/fckpackager.xml +0 -262
- data/public/javascripts/fckeditor/fckstyles.xml +0 -111
- data/public/javascripts/fckeditor/fcktemplates.xml +0 -103
- data/public/javascripts/fckeditor/license.txt +0 -1246
- data/public/sources/javascripts/administration.js +0 -12
- data/public/sources/javascripts/application.js +0 -2
- data/public/sources/javascripts/codecollapse.js +0 -8
- data/public/sources/javascripts/controls.js +0 -963
- data/public/sources/javascripts/cookies.js +0 -60
- data/public/sources/javascripts/dragdrop.js +0 -972
- data/public/sources/javascripts/effects.js +0 -1120
- data/public/sources/javascripts/fckcustom.js +0 -28
- data/public/sources/javascripts/lang/default.js +0 -21
- data/public/sources/javascripts/lang/en_US.js +0 -21
- data/public/sources/javascripts/lang/fr_FR.js +0 -21
- data/public/sources/javascripts/lightbox.js +0 -202
- data/public/sources/javascripts/prototype.js +0 -4320
- data/public/sources/javascripts/quicktags.js +0 -511
- data/public/sources/javascripts/scriptaculous.js +0 -58
- data/public/sources/javascripts/slider.js +0 -258
- data/public/sources/javascripts/typo.js +0 -136
- data/public/sources/stylesheets/administration.css +0 -955
- data/public/sources/stylesheets/administration_rtl.css +0 -1026
- data/public/sources/stylesheets/codecollapse.css +0 -3
- data/public/sources/stylesheets/coderay.css +0 -126
- data/public/sources/stylesheets/lightbox.css +0 -62
- data/public/sources/stylesheets/rss.css +0 -54
- data/public/sources/stylesheets/textmate/dawn.css +0 -209
- data/public/sources/stylesheets/textmate/iplastic.css +0 -142
- data/public/sources/stylesheets/textmate/space_cadet.css +0 -99
- data/public/sources/stylesheets/textmate/textmate.css +0 -48
- data/public/sources/stylesheets/textmate/twilight.css +0 -227
- data/public/sources/stylesheets/user-styles.css +0 -22
- data/spec/controllers/admin/article_preview_spec.rb +0 -20
- data/spec/models/typo_deprecated_spec.rb +0 -18
- data/vendor/actionwebservice/CHANGELOG +0 -320
- data/vendor/actionwebservice/MIT-LICENSE +0 -21
- data/vendor/actionwebservice/README +0 -381
- data/vendor/actionwebservice/Rakefile +0 -173
- data/vendor/actionwebservice/TODO +0 -32
- data/vendor/actionwebservice/examples/googlesearch/README +0 -143
- data/vendor/actionwebservice/examples/googlesearch/autoloading/google_search_api.rb +0 -50
- data/vendor/actionwebservice/examples/googlesearch/autoloading/google_search_controller.rb +0 -57
- data/vendor/actionwebservice/examples/googlesearch/delegated/google_search_service.rb +0 -108
- data/vendor/actionwebservice/examples/googlesearch/delegated/search_controller.rb +0 -7
- data/vendor/actionwebservice/examples/googlesearch/direct/google_search_api.rb +0 -50
- data/vendor/actionwebservice/examples/googlesearch/direct/search_controller.rb +0 -58
- data/vendor/actionwebservice/examples/metaWeblog/README +0 -17
- data/vendor/actionwebservice/examples/metaWeblog/apis/blogger_api.rb +0 -60
- data/vendor/actionwebservice/examples/metaWeblog/apis/blogger_service.rb +0 -34
- data/vendor/actionwebservice/examples/metaWeblog/apis/meta_weblog_api.rb +0 -67
- data/vendor/actionwebservice/examples/metaWeblog/apis/meta_weblog_service.rb +0 -48
- data/vendor/actionwebservice/examples/metaWeblog/controllers/xmlrpc_controller.rb +0 -16
- data/vendor/actionwebservice/generators/web_service/USAGE +0 -28
- data/vendor/actionwebservice/generators/web_service/templates/api_definition.rb +0 -5
- data/vendor/actionwebservice/generators/web_service/templates/controller.rb +0 -8
- data/vendor/actionwebservice/generators/web_service/templates/functional_test.rb +0 -19
- data/vendor/actionwebservice/generators/web_service/web_service_generator.rb +0 -29
- data/vendor/actionwebservice/lib/action_web_service.rb +0 -66
- data/vendor/actionwebservice/lib/action_web_service/api.rb +0 -297
- data/vendor/actionwebservice/lib/action_web_service/base.rb +0 -38
- data/vendor/actionwebservice/lib/action_web_service/casting.rb +0 -144
- data/vendor/actionwebservice/lib/action_web_service/client.rb +0 -3
- data/vendor/actionwebservice/lib/action_web_service/client/base.rb +0 -28
- data/vendor/actionwebservice/lib/action_web_service/client/soap_client.rb +0 -113
- data/vendor/actionwebservice/lib/action_web_service/client/xmlrpc_client.rb +0 -58
- data/vendor/actionwebservice/lib/action_web_service/container.rb +0 -3
- data/vendor/actionwebservice/lib/action_web_service/container/action_controller_container.rb +0 -93
- data/vendor/actionwebservice/lib/action_web_service/container/delegated_container.rb +0 -86
- data/vendor/actionwebservice/lib/action_web_service/container/direct_container.rb +0 -69
- data/vendor/actionwebservice/lib/action_web_service/dispatcher.rb +0 -2
- data/vendor/actionwebservice/lib/action_web_service/dispatcher/abstract.rb +0 -207
- data/vendor/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb +0 -379
- data/vendor/actionwebservice/lib/action_web_service/invocation.rb +0 -202
- data/vendor/actionwebservice/lib/action_web_service/protocol.rb +0 -4
- data/vendor/actionwebservice/lib/action_web_service/protocol/abstract.rb +0 -112
- data/vendor/actionwebservice/lib/action_web_service/protocol/discovery.rb +0 -37
- data/vendor/actionwebservice/lib/action_web_service/protocol/soap_protocol.rb +0 -176
- data/vendor/actionwebservice/lib/action_web_service/protocol/soap_protocol/marshaler.rb +0 -242
- data/vendor/actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb +0 -122
- data/vendor/actionwebservice/lib/action_web_service/scaffolding.rb +0 -281
- data/vendor/actionwebservice/lib/action_web_service/struct.rb +0 -64
- data/vendor/actionwebservice/lib/action_web_service/support/class_inheritable_options.rb +0 -26
- data/vendor/actionwebservice/lib/action_web_service/support/signature_types.rb +0 -226
- data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/layout.html.erb +0 -65
- data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/methods.html.erb +0 -6
- data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/parameters.html.erb +0 -29
- data/vendor/actionwebservice/lib/action_web_service/templates/scaffolds/result.html.erb +0 -30
- data/vendor/actionwebservice/lib/action_web_service/test_invoke.rb +0 -110
- data/vendor/actionwebservice/lib/action_web_service/version.rb +0 -9
- data/vendor/actionwebservice/lib/actionwebservice.rb +0 -1
- data/vendor/actionwebservice/setup.rb +0 -1379
- data/vendor/actionwebservice/test/abstract_client.rb +0 -183
- data/vendor/actionwebservice/test/abstract_dispatcher.rb +0 -547
- data/vendor/actionwebservice/test/abstract_unit.rb +0 -33
- data/vendor/actionwebservice/test/api_test.rb +0 -102
- data/vendor/actionwebservice/test/apis/auto_load_api.rb +0 -3
- data/vendor/actionwebservice/test/apis/broken_auto_load_api.rb +0 -2
- data/vendor/actionwebservice/test/base_test.rb +0 -42
- data/vendor/actionwebservice/test/casting_test.rb +0 -86
- data/vendor/actionwebservice/test/client_soap_test.rb +0 -155
- data/vendor/actionwebservice/test/client_xmlrpc_test.rb +0 -153
- data/vendor/actionwebservice/test/container_test.rb +0 -73
- data/vendor/actionwebservice/test/dispatcher_action_controller_soap_test.rb +0 -137
- data/vendor/actionwebservice/test/dispatcher_action_controller_xmlrpc_test.rb +0 -59
- data/vendor/actionwebservice/test/fixtures/db_definitions/mysql.sql +0 -8
- data/vendor/actionwebservice/test/fixtures/users.yml +0 -12
- data/vendor/actionwebservice/test/gencov +0 -3
- data/vendor/actionwebservice/test/invocation_test.rb +0 -185
- data/vendor/actionwebservice/test/run +0 -6
- data/vendor/actionwebservice/test/scaffolded_controller_test.rb +0 -146
- data/vendor/actionwebservice/test/struct_test.rb +0 -52
- data/vendor/actionwebservice/test/test_invoke_test.rb +0 -112
- data/vendor/bluecloth/CHANGES +0 -366
- data/vendor/bluecloth/LICENSE +0 -340
- data/vendor/bluecloth/README +0 -99
- data/vendor/bluecloth/bin/bluecloth +0 -83
- data/vendor/bluecloth/install.rb +0 -150
- data/vendor/bluecloth/lib/bluecloth.rb +0 -1144
- data/vendor/bluecloth/test.rb +0 -117
- data/vendor/bluecloth/tests/00_Class.tests.rb +0 -71
- data/vendor/bluecloth/tests/05_Markdown.tests.rb +0 -1527
- data/vendor/bluecloth/tests/10_Bug.tests.rb +0 -57
- data/vendor/bluecloth/tests/15_Contrib.tests.rb +0 -132
- data/vendor/bluecloth/tests/bctestcase.rb +0 -274
- data/vendor/bluecloth/tests/data/antsugar.txt +0 -34
- data/vendor/bluecloth/tests/data/ml-announce.txt +0 -17
- data/vendor/bluecloth/tests/data/re-overflow.txt +0 -67
- data/vendor/bluecloth/tests/data/re-overflow2.txt +0 -281
- data/vendor/bluecloth/utils.rb +0 -553
- data/vendor/cached_model/History.txt +0 -30
- data/vendor/cached_model/LICENSE.txt +0 -30
- data/vendor/cached_model/Manifest.txt +0 -7
- data/vendor/cached_model/README.txt +0 -96
- data/vendor/cached_model/Rakefile +0 -25
- data/vendor/cached_model/lib/cached_model.rb +0 -287
- data/vendor/cached_model/test/test_cached_model.rb +0 -593
- data/vendor/gems/calendar_date_select-1.15/.specification +0 -56
- data/vendor/gems/calendar_date_select-1.15/History.txt +0 -237
- data/vendor/gems/calendar_date_select-1.15/MIT-LICENSE +0 -20
- data/vendor/gems/calendar_date_select-1.15/Manifest.txt +0 -42
- data/vendor/gems/calendar_date_select-1.15/Rakefile +0 -31
- data/vendor/gems/calendar_date_select-1.15/Readme.txt +0 -16
- data/vendor/gems/calendar_date_select-1.15/init.rb +0 -1
- data/vendor/gems/calendar_date_select-1.15/js_test/functional/cds_test.html +0 -334
- data/vendor/gems/calendar_date_select-1.15/js_test/prototype.js +0 -4184
- data/vendor/gems/calendar_date_select-1.15/js_test/test.css +0 -40
- data/vendor/gems/calendar_date_select-1.15/js_test/unit/cds_helper_methods.html +0 -46
- data/vendor/gems/calendar_date_select-1.15/js_test/unittest.js +0 -564
- data/vendor/gems/calendar_date_select-1.15/lib/calendar_date_select.rb +0 -33
- data/vendor/gems/calendar_date_select-1.15/lib/calendar_date_select/calendar_date_select.rb +0 -116
- data/vendor/gems/calendar_date_select-1.15/lib/calendar_date_select/form_helpers.rb +0 -225
- data/vendor/gems/calendar_date_select-1.15/lib/calendar_date_select/includes_helper.rb +0 -29
- data/vendor/gems/calendar_date_select-1.15/public/blank_iframe.html +0 -2
- data/vendor/gems/calendar_date_select-1.15/public/images/calendar_date_select/calendar.gif +0 -0
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/calendar_date_select.js +0 -443
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_american.js +0 -34
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_db.js +0 -27
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_euro_24hr.js +0 -7
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_euro_24hr_ymd.js +0 -7
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_finnish.js +0 -32
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_hyphen_ampm.js +0 -37
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_iso_date.js +0 -46
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_italian.js +0 -24
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/de.js +0 -11
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/fi.js +0 -10
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/fr.js +0 -10
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/pl.js +0 -10
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/pt.js +0 -11
- data/vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/ru.js +0 -10
- data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/blue.css +0 -130
- data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/default.css +0 -135
- data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/plain.css +0 -128
- data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/red.css +0 -135
- data/vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/silver.css +0 -133
- data/vendor/gems/calendar_date_select-1.15/spec/calendar_date_select/calendar_date_select_spec.rb +0 -14
- data/vendor/gems/calendar_date_select-1.15/spec/calendar_date_select/form_helpers_spec.rb +0 -166
- data/vendor/gems/calendar_date_select-1.15/spec/spec_helper.rb +0 -26
- data/vendor/gems/coderay-0.8.260/.specification +0 -115
- data/vendor/gems/coderay-0.8.260/FOLDERS +0 -53
- data/vendor/gems/coderay-0.8.260/LICENSE +0 -504
- data/vendor/gems/coderay-0.8.260/README +0 -128
- data/vendor/gems/coderay-0.8.260/bin/coderay +0 -82
- data/vendor/gems/coderay-0.8.260/bin/coderay_stylesheet +0 -4
- data/vendor/gems/coderay-0.8.260/lib/coderay.rb +0 -321
- data/vendor/gems/coderay-0.8.260/lib/coderay/duo.rb +0 -87
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoder.rb +0 -182
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/_map.rb +0 -9
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/count.rb +0 -21
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/debug.rb +0 -49
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/div.rb +0 -20
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/html.rb +0 -287
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/html/css.rb +0 -70
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/html/numerization.rb +0 -124
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/html/output.rb +0 -197
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/null.rb +0 -26
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/page.rb +0 -21
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/span.rb +0 -20
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/statistic.rb +0 -77
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/text.rb +0 -32
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/tokens.rb +0 -44
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/xml.rb +0 -70
- data/vendor/gems/coderay-0.8.260/lib/coderay/encoders/yaml.rb +0 -22
- data/vendor/gems/coderay-0.8.260/lib/coderay/for_redcloth.rb +0 -72
- data/vendor/gems/coderay-0.8.260/lib/coderay/helpers/file_type.rb +0 -211
- data/vendor/gems/coderay-0.8.260/lib/coderay/helpers/gzip_simple.rb +0 -123
- data/vendor/gems/coderay-0.8.260/lib/coderay/helpers/plugin.rb +0 -333
- data/vendor/gems/coderay-0.8.260/lib/coderay/helpers/word_list.rb +0 -123
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanner.rb +0 -255
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/_map.rb +0 -15
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/c.rb +0 -165
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/css.rb +0 -181
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/debug.rb +0 -61
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/delphi.rb +0 -150
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/diff.rb +0 -104
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/html.rb +0 -177
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/java.rb +0 -179
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/java/builtin_types.rb +0 -419
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/java_script.rb +0 -187
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/json.rb +0 -106
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/nitro_xhtml.rb +0 -134
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/plaintext.rb +0 -18
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/rhtml.rb +0 -73
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/ruby.rb +0 -381
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/ruby/patterns.rb +0 -226
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/scheme.rb +0 -142
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/sql.Keith.rb +0 -143
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/sql.rb +0 -154
- data/vendor/gems/coderay-0.8.260/lib/coderay/scanners/xml.rb +0 -19
- data/vendor/gems/coderay-0.8.260/lib/coderay/style.rb +0 -20
- data/vendor/gems/coderay-0.8.260/lib/coderay/styles/_map.rb +0 -7
- data/vendor/gems/coderay-0.8.260/lib/coderay/styles/cycnus.rb +0 -146
- data/vendor/gems/coderay-0.8.260/lib/coderay/styles/murphy.rb +0 -132
- data/vendor/gems/coderay-0.8.260/lib/coderay/token_classes.rb +0 -82
- data/vendor/gems/coderay-0.8.260/lib/coderay/tokens.rb +0 -387
- data/vendor/gems/coderay-0.8.260/lib/term/ansicolor.rb +0 -220
- data/vendor/gems/htmlentities-4.0.0/.specification +0 -68
- data/vendor/gems/htmlentities-4.0.0/COPYING.txt +0 -21
- data/vendor/gems/htmlentities-4.0.0/History.txt +0 -47
- data/vendor/gems/htmlentities-4.0.0/README.txt +0 -44
- data/vendor/gems/htmlentities-4.0.0/lib/htmlentities.rb +0 -165
- data/vendor/gems/htmlentities-4.0.0/lib/htmlentities/html4.rb +0 -257
- data/vendor/gems/htmlentities-4.0.0/lib/htmlentities/legacy.rb +0 -27
- data/vendor/gems/htmlentities-4.0.0/lib/htmlentities/string.rb +0 -26
- data/vendor/gems/htmlentities-4.0.0/lib/htmlentities/xhtml1.rb +0 -258
- data/vendor/gems/htmlentities-4.0.0/test/entities_test.rb +0 -206
- data/vendor/gems/htmlentities-4.0.0/test/html4_test.rb +0 -24
- data/vendor/gems/htmlentities-4.0.0/test/legacy_test.rb +0 -34
- data/vendor/gems/htmlentities-4.0.0/test/roundtrip_test.rb +0 -94
- data/vendor/gems/htmlentities-4.0.0/test/string_test.rb +0 -24
- data/vendor/gems/htmlentities-4.0.0/test/test_all.rb +0 -3
- data/vendor/gems/htmlentities-4.0.0/test/xhtml1_test.rb +0 -23
- data/vendor/gems/json-1.1.3/.require_paths +0 -4
- data/vendor/gems/json-1.1.3/.specification +0 -58
- data/vendor/gems/json-1.1.3/CHANGES +0 -93
- data/vendor/gems/json-1.1.3/GPL +0 -340
- data/vendor/gems/json-1.1.3/README +0 -78
- data/vendor/gems/json-1.1.3/RUBY +0 -58
- data/vendor/gems/json-1.1.3/Rakefile +0 -309
- data/vendor/gems/json-1.1.3/TODO +0 -1
- data/vendor/gems/json-1.1.3/VERSION +0 -1
- data/vendor/gems/json-1.1.3/benchmarks/benchmark.txt +0 -133
- data/vendor/gems/json-1.1.3/benchmarks/benchmark_generator.rb +0 -48
- data/vendor/gems/json-1.1.3/benchmarks/benchmark_parser.rb +0 -26
- data/vendor/gems/json-1.1.3/benchmarks/benchmark_rails.rb +0 -26
- data/vendor/gems/json-1.1.3/bin/edit_json.rb +0 -10
- data/vendor/gems/json-1.1.3/bin/prettify_json.rb +0 -76
- data/vendor/gems/json-1.1.3/data/example.json +0 -1
- data/vendor/gems/json-1.1.3/data/index.html +0 -38
- data/vendor/gems/json-1.1.3/data/prototype.js +0 -4184
- data/vendor/gems/json-1.1.3/ext/json/ext/generator.bundle +0 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/Makefile +0 -149
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/extconf.rb +0 -9
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/generator.bundle +0 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/generator.c +0 -875
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/generator.o +0 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/unicode.c +0 -182
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/unicode.h +0 -53
- data/vendor/gems/json-1.1.3/ext/json/ext/generator/unicode.o +0 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/parser.bundle +0 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/Makefile +0 -149
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/extconf.rb +0 -9
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/parser.bundle +0 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/parser.c +0 -1758
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/parser.o +0 -0
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/parser.rl +0 -638
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/unicode.c +0 -154
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/unicode.h +0 -58
- data/vendor/gems/json-1.1.3/ext/json/ext/parser/unicode.o +0 -0
- data/vendor/gems/json-1.1.3/install.rb +0 -26
- data/vendor/gems/json-1.1.3/lib/json.rb +0 -235
- data/vendor/gems/json-1.1.3/lib/json/Array.xpm +0 -21
- data/vendor/gems/json-1.1.3/lib/json/FalseClass.xpm +0 -21
- data/vendor/gems/json-1.1.3/lib/json/Hash.xpm +0 -21
- data/vendor/gems/json-1.1.3/lib/json/Key.xpm +0 -73
- data/vendor/gems/json-1.1.3/lib/json/NilClass.xpm +0 -21
- data/vendor/gems/json-1.1.3/lib/json/Numeric.xpm +0 -28
- data/vendor/gems/json-1.1.3/lib/json/String.xpm +0 -96
- data/vendor/gems/json-1.1.3/lib/json/TrueClass.xpm +0 -21
- data/vendor/gems/json-1.1.3/lib/json/add/core.rb +0 -135
- data/vendor/gems/json-1.1.3/lib/json/add/rails.rb +0 -58
- data/vendor/gems/json-1.1.3/lib/json/common.rb +0 -354
- data/vendor/gems/json-1.1.3/lib/json/editor.rb +0 -1362
- data/vendor/gems/json-1.1.3/lib/json/ext.rb +0 -13
- data/vendor/gems/json-1.1.3/lib/json/json.xpm +0 -1499
- data/vendor/gems/json-1.1.3/lib/json/pure.rb +0 -75
- data/vendor/gems/json-1.1.3/lib/json/pure/generator.rb +0 -394
- data/vendor/gems/json-1.1.3/lib/json/pure/parser.rb +0 -259
- data/vendor/gems/json-1.1.3/lib/json/version.rb +0 -9
- data/vendor/gems/json-1.1.3/tests/fixtures/fail1.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail10.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail11.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail12.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail13.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail14.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail18.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail19.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail2.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail20.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail21.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail22.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail23.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail24.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail25.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail27.json +0 -2
- data/vendor/gems/json-1.1.3/tests/fixtures/fail28.json +0 -2
- data/vendor/gems/json-1.1.3/tests/fixtures/fail3.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail4.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail5.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail6.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail7.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail8.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/fail9.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/pass1.json +0 -56
- data/vendor/gems/json-1.1.3/tests/fixtures/pass15.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/pass16.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/pass17.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/pass2.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/pass26.json +0 -1
- data/vendor/gems/json-1.1.3/tests/fixtures/pass3.json +0 -6
- data/vendor/gems/json-1.1.3/tests/runner.rb +0 -25
- data/vendor/gems/json-1.1.3/tests/test_json.rb +0 -293
- data/vendor/gems/json-1.1.3/tests/test_json_addition.rb +0 -161
- data/vendor/gems/json-1.1.3/tests/test_json_fixtures.rb +0 -30
- data/vendor/gems/json-1.1.3/tests/test_json_generate.rb +0 -100
- data/vendor/gems/json-1.1.3/tests/test_json_rails.rb +0 -118
- data/vendor/gems/json-1.1.3/tests/test_json_unicode.rb +0 -61
- data/vendor/gems/json-1.1.3/tools/fuzz.rb +0 -140
- data/vendor/gems/json-1.1.3/tools/server.rb +0 -62
- data/vendor/memcache-client/History.txt +0 -25
- data/vendor/memcache-client/LICENSE.txt +0 -30
- data/vendor/memcache-client/Manifest.txt +0 -8
- data/vendor/memcache-client/README.txt +0 -46
- data/vendor/memcache-client/Rakefile +0 -23
- data/vendor/memcache-client/lib/memcache.rb +0 -490
- data/vendor/memcache-client/lib/memcache_util.rb +0 -71
- data/vendor/memcache-client/test/test_mem_cache.rb +0 -284
- data/vendor/plugins/datestamped_resources/README +0 -4
- data/vendor/plugins/datestamped_resources/Rakefile +0 -22
- data/vendor/plugins/datestamped_resources/init.rb +0 -2
- data/vendor/plugins/datestamped_resources/install.rb +0 -1
- data/vendor/plugins/datestamped_resources/lib/datestamped_resources.rb +0 -203
- data/vendor/plugins/datestamped_resources/tasks/datestamped_resources_tasks.rake +0 -4
- data/vendor/plugins/datestamped_resources/test/datestamped_resources_test.rb +0 -8
- data/vendor/plugins/datestamped_resources/uninstall.rb +0 -1
- data/vendor/plugins/fckeditor/CHANGELOG +0 -3
- data/vendor/plugins/fckeditor/README +0 -118
- data/vendor/plugins/fckeditor/app/controllers/fckeditor_controller.rb +0 -159
- data/vendor/plugins/fckeditor/app/helpers/fckeditor_helper.rb +0 -2
- data/vendor/plugins/fckeditor/app/views/fckeditor/spell_check.rhtml +0 -52
- data/vendor/plugins/fckeditor/init.rb +0 -35
- data/vendor/plugins/fckeditor/install.rb +0 -12
- data/vendor/plugins/fckeditor/lib/fckeditor.rb +0 -101
- data/vendor/plugins/fckeditor/lib/fckeditor_file_utils.rb +0 -81
- data/vendor/plugins/fckeditor/lib/fckeditor_spell_check.rb +0 -43
- data/vendor/plugins/fckeditor/lib/fckeditor_version.rb +0 -9
- data/vendor/plugins/fckeditor/tasks/fckeditor_tasks.rake +0 -97
- data/vendor/plugins/fckeditor/test/fckeditor_test.rb +0 -8
- data/vendor/plugins/will_paginate/CHANGELOG.rdoc +0 -110
- data/vendor/plugins/will_paginate/LICENSE +0 -18
- data/vendor/plugins/will_paginate/README.rdoc +0 -107
- data/vendor/plugins/will_paginate/Rakefile +0 -62
- data/vendor/plugins/will_paginate/examples/apple-circle.gif +0 -0
- data/vendor/plugins/will_paginate/examples/index.haml +0 -69
- data/vendor/plugins/will_paginate/examples/index.html +0 -92
- data/vendor/plugins/will_paginate/examples/pagination.css +0 -90
- data/vendor/plugins/will_paginate/examples/pagination.sass +0 -91
- data/vendor/plugins/will_paginate/init.rb +0 -1
- data/vendor/plugins/will_paginate/lib/will_paginate.rb +0 -82
- data/vendor/plugins/will_paginate/lib/will_paginate/array.rb +0 -16
- data/vendor/plugins/will_paginate/lib/will_paginate/collection.rb +0 -146
- data/vendor/plugins/will_paginate/lib/will_paginate/core_ext.rb +0 -32
- data/vendor/plugins/will_paginate/lib/will_paginate/finder.rb +0 -260
- data/vendor/plugins/will_paginate/lib/will_paginate/named_scope.rb +0 -170
- data/vendor/plugins/will_paginate/lib/will_paginate/named_scope_patch.rb +0 -37
- data/vendor/plugins/will_paginate/lib/will_paginate/version.rb +0 -9
- data/vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb +0 -383
- data/vendor/plugins/will_paginate/test/boot.rb +0 -21
- data/vendor/plugins/will_paginate/test/collection_test.rb +0 -143
- data/vendor/plugins/will_paginate/test/console +0 -8
- data/vendor/plugins/will_paginate/test/database.yml +0 -22
- data/vendor/plugins/will_paginate/test/finder_test.rb +0 -476
- data/vendor/plugins/will_paginate/test/fixtures/admin.rb +0 -3
- data/vendor/plugins/will_paginate/test/fixtures/developer.rb +0 -14
- data/vendor/plugins/will_paginate/test/fixtures/developers_projects.yml +0 -13
- data/vendor/plugins/will_paginate/test/fixtures/project.rb +0 -15
- data/vendor/plugins/will_paginate/test/fixtures/projects.yml +0 -6
- data/vendor/plugins/will_paginate/test/fixtures/replies.yml +0 -29
- data/vendor/plugins/will_paginate/test/fixtures/reply.rb +0 -7
- data/vendor/plugins/will_paginate/test/fixtures/schema.rb +0 -38
- data/vendor/plugins/will_paginate/test/fixtures/topic.rb +0 -10
- data/vendor/plugins/will_paginate/test/fixtures/topics.yml +0 -30
- data/vendor/plugins/will_paginate/test/fixtures/user.rb +0 -2
- data/vendor/plugins/will_paginate/test/fixtures/users.yml +0 -35
- data/vendor/plugins/will_paginate/test/helper.rb +0 -37
- data/vendor/plugins/will_paginate/test/lib/activerecord_test_case.rb +0 -36
- data/vendor/plugins/will_paginate/test/lib/activerecord_test_connector.rb +0 -73
- data/vendor/plugins/will_paginate/test/lib/load_fixtures.rb +0 -11
- data/vendor/plugins/will_paginate/test/lib/view_test_process.rb +0 -165
- data/vendor/plugins/will_paginate/test/tasks.rake +0 -59
- data/vendor/plugins/will_paginate/test/view_test.rb +0 -363
- data/vendor/plugins/will_paginate/will_paginate.gemspec +0 -22
- data/vendor/redcloth/RedCloth.gemspec +0 -52
- data/vendor/redcloth/bin/redcloth +0 -3
- data/vendor/redcloth/doc/CHANGELOG +0 -160
- data/vendor/redcloth/doc/COPYING +0 -25
- data/vendor/redcloth/doc/README +0 -106
- data/vendor/redcloth/doc/REFERENCE +0 -216
- data/vendor/redcloth/doc/make.rb +0 -359
- data/vendor/redcloth/install.rb +0 -1032
- data/vendor/redcloth/lib/redcloth.rb +0 -1130
- data/vendor/redcloth/run-tests.rb +0 -28
- data/vendor/redcloth/setup.rb +0 -1376
- data/vendor/redcloth/tests/code.yml +0 -105
- data/vendor/redcloth/tests/hard_breaks.yml +0 -26
- data/vendor/redcloth/tests/images.yml +0 -171
- data/vendor/redcloth/tests/instiki.yml +0 -39
- data/vendor/redcloth/tests/links.yml +0 -155
- data/vendor/redcloth/tests/lists.yml +0 -77
- data/vendor/redcloth/tests/markdown.yml +0 -218
- data/vendor/redcloth/tests/poignant.yml +0 -64
- data/vendor/redcloth/tests/table.yml +0 -198
- data/vendor/redcloth/tests/textism.yml +0 -406
- data/vendor/sparklines/README.txt +0 -47
- data/vendor/sparklines/USAGE +0 -14
- data/vendor/sparklines/lib/sparklines.rb +0 -435
- data/vendor/sparklines/samples/sparklinestest.rb +0 -26
- data/vendor/sparklines/sparklines_generator.rb +0 -9
- data/vendor/sparklines/templates/sparklines_controller.rb +0 -30
- data/vendor/sparklines/templates/sparklines_helper.rb +0 -30
@@ -4,6 +4,7 @@ module WP25
|
|
4
4
|
set_primary_key 'comment_ID'
|
5
5
|
set_table_name 'wp_comments'
|
6
6
|
belongs_to :post, :foreign_key => 'comment_parent', :class_name => 'WP25::Post'
|
7
|
+
belongs_to :user, :class_name => 'WP25::User'
|
7
8
|
|
8
9
|
def self.prefix=(prefix)
|
9
10
|
set_table_name "#{prefix}_comments"
|
@@ -0,0 +1,192 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../spec_helper'
|
2
|
+
|
3
|
+
# These are integration tests. They are not comprehensive. If you're
|
4
|
+
# hacking on the converter, please add tests first.
|
5
|
+
|
6
|
+
describe "WordPress 2.5 converter" do
|
7
|
+
before :each do
|
8
|
+
# Fixtures aren't being rolled back in the WP DB, so we delete them all before
|
9
|
+
# each test. This is a simple hack, but slows things down.
|
10
|
+
[
|
11
|
+
WP25::Option, WP25::User, WP25::Post, WP25::Comment,
|
12
|
+
WP25::Term, WP25::TermTaxonomy, WP25::TermRelationship
|
13
|
+
].each do |model_class|
|
14
|
+
model_class.delete_all
|
15
|
+
end
|
16
|
+
|
17
|
+
Factory('WP25/option',
|
18
|
+
:option_name => 'blogname', :option_value => 'My WordPress Blog')
|
19
|
+
Factory('WP25/option',
|
20
|
+
:option_name => 'blogdescription', :option_value => 'WordPress blog description')
|
21
|
+
end
|
22
|
+
|
23
|
+
it "runs without crashing" do
|
24
|
+
run_converter
|
25
|
+
end
|
26
|
+
|
27
|
+
describe "given a user" do
|
28
|
+
before :each do
|
29
|
+
@poster = Factory('WP25/user',
|
30
|
+
:display_name => 'A. User',
|
31
|
+
:user_email => 'auser@notfound.com',
|
32
|
+
:user_login => 'auser',
|
33
|
+
:user_pass => 'not a valid password'
|
34
|
+
)
|
35
|
+
end
|
36
|
+
|
37
|
+
it "creates a user" do
|
38
|
+
lambda { run_converter }.should change(User, :count).by(1)
|
39
|
+
end
|
40
|
+
|
41
|
+
describe "and a post" do
|
42
|
+
before :each do
|
43
|
+
# TODO: figure out if we're handling GMT conversion correctly
|
44
|
+
@post = Factory('WP25/post',
|
45
|
+
:post_author => @poster.ID
|
46
|
+
)
|
47
|
+
end
|
48
|
+
|
49
|
+
it "creates an article" do
|
50
|
+
lambda { run_converter }.should change(Article, :count).by(1)
|
51
|
+
end
|
52
|
+
|
53
|
+
it "assigns the article's author" do
|
54
|
+
run_converter
|
55
|
+
@article = Article.find(:first, :order => 'created_at DESC')
|
56
|
+
# NOTE: Article.author is from User.login; Comment.author is from User.name
|
57
|
+
@article.author.should == @poster.user_login
|
58
|
+
@article.user.login.should == @poster.user_login
|
59
|
+
end
|
60
|
+
|
61
|
+
describe "with an owned comment" do
|
62
|
+
before :each do
|
63
|
+
@commenter = Factory('WP25/user',
|
64
|
+
:display_name => 'A. Commenter',
|
65
|
+
:user_email => 'acommenter@notfound.com',
|
66
|
+
:user_login => 'acommenter',
|
67
|
+
:user_pass => 'not a valid password'
|
68
|
+
)
|
69
|
+
@comment = Factory('WP25/comment',
|
70
|
+
:comment_post_ID => @post.ID,
|
71
|
+
:user => @commenter
|
72
|
+
)
|
73
|
+
end
|
74
|
+
|
75
|
+
it "creates a comment" do
|
76
|
+
lambda { run_converter }.should change(Comment, :count).by(1)
|
77
|
+
end
|
78
|
+
|
79
|
+
it "assigns the comment's author" do
|
80
|
+
run_converter
|
81
|
+
@typo_comment = Comment.find(:first, :order => 'created_at DESC')
|
82
|
+
# NOTE: Article.author is from User.login; Comment.author is from User.name
|
83
|
+
@typo_comment.author.should == @commenter.display_name
|
84
|
+
@typo_comment.user.login.should == @commenter.user_login
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
describe "with an anonymous comment" do
|
89
|
+
before :each do
|
90
|
+
@comment = Factory('WP25/comment',
|
91
|
+
:comment_post_ID => @post.ID,
|
92
|
+
:comment_author => 'Anonymous Commenter'
|
93
|
+
)
|
94
|
+
end
|
95
|
+
|
96
|
+
it "does not assign the comment's author" do
|
97
|
+
run_converter
|
98
|
+
@typo_comment = Comment.find(:first, :order => 'created_at DESC')
|
99
|
+
@typo_comment.author.should == @comment.comment_author
|
100
|
+
@typo_comment.user.should == nil
|
101
|
+
end
|
102
|
+
|
103
|
+
describe "that is spam" do
|
104
|
+
before :each do
|
105
|
+
@comment.update_attribute(:comment_approved, 'spam')
|
106
|
+
end
|
107
|
+
|
108
|
+
it "marks the created comment as spam" do
|
109
|
+
run_converter
|
110
|
+
@typo_comment = Comment.find(:first, :order => 'created_at DESC')
|
111
|
+
@typo_comment.should be_spam
|
112
|
+
end
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
describe "with tags" do
|
117
|
+
before :each do
|
118
|
+
@tag = Factory('WP25/tag')
|
119
|
+
@taxonomy = Factory('WP25/term_taxonomy',
|
120
|
+
:term_id => @tag.term_id,
|
121
|
+
:taxonomy => 'post_tag',
|
122
|
+
:count => 1)
|
123
|
+
@relationship = Factory('WP25/term_relationship',
|
124
|
+
# TODO: use post association
|
125
|
+
:object_id => @post.id,
|
126
|
+
:term_taxonomy => @taxonomy)
|
127
|
+
end
|
128
|
+
|
129
|
+
it "applies the tags to the created post" do
|
130
|
+
run_converter
|
131
|
+
@article = Article.find(:first, :order => 'created_at DESC')
|
132
|
+
@article.tags.count.should == 1
|
133
|
+
@article.tags.first.name == @tag.name
|
134
|
+
end
|
135
|
+
end
|
136
|
+
|
137
|
+
describe "with a category" do
|
138
|
+
before :each do
|
139
|
+
@category = Factory('WP25/category')
|
140
|
+
@taxonomy = Factory('WP25/term_taxonomy',
|
141
|
+
:term_id => @category.term_id,
|
142
|
+
:taxonomy => 'category',
|
143
|
+
:count => 1)
|
144
|
+
@relationship = Factory('WP25/term_relationship',
|
145
|
+
# TODO: use post association
|
146
|
+
:object_id => @post.id,
|
147
|
+
:term_taxonomy => @taxonomy)
|
148
|
+
end
|
149
|
+
|
150
|
+
it "places the created post in the category" do
|
151
|
+
run_converter
|
152
|
+
@article = Article.find(:first, :order => 'created_at DESC')
|
153
|
+
@article.categories.count.should == 1
|
154
|
+
@article.categories.first.name == @category.name
|
155
|
+
end
|
156
|
+
end
|
157
|
+
end
|
158
|
+
|
159
|
+
describe "and a page" do
|
160
|
+
before :each do
|
161
|
+
# TODO: figure out if we're handling GMT conversion correctly
|
162
|
+
@page = Factory('WP25/page',
|
163
|
+
:post_author => @poster.ID
|
164
|
+
)
|
165
|
+
end
|
166
|
+
|
167
|
+
it "creates a page" do
|
168
|
+
lambda { run_converter }.should change(Page, :count).by(1)
|
169
|
+
end
|
170
|
+
|
171
|
+
it "assigns the page's author" do
|
172
|
+
run_converter
|
173
|
+
@typo_page = Page.find(:first, :order => 'created_at DESC')
|
174
|
+
# NOTE: Page.author is from User.login; Comment.author is from User.name
|
175
|
+
@typo_page.author.should == @poster.user_login
|
176
|
+
@typo_page.user.login.should == @poster.user_login
|
177
|
+
end
|
178
|
+
end
|
179
|
+
end
|
180
|
+
|
181
|
+
protected
|
182
|
+
|
183
|
+
def run_converter(options = {})
|
184
|
+
real_stdout = $stdout
|
185
|
+
begin
|
186
|
+
$stdout = StringIO.new unless options[:verbose]
|
187
|
+
TypoPlugins.convert_from :wp25
|
188
|
+
ensure
|
189
|
+
$stdout = real_stdout
|
190
|
+
end
|
191
|
+
end
|
192
|
+
end
|
@@ -0,0 +1,77 @@
|
|
1
|
+
# TODO: refactor this list (duplicated from wp25.rb)
|
2
|
+
require 'converters/wp25/option'
|
3
|
+
require 'converters/wp25/post'
|
4
|
+
require 'converters/wp25/comment'
|
5
|
+
require 'converters/wp25/term'
|
6
|
+
require 'converters/wp25/term_relationship'
|
7
|
+
require 'converters/wp25/term_taxonomy'
|
8
|
+
require 'converters/wp25/user'
|
9
|
+
|
10
|
+
# TODO: factory_girl can guess WP25::Option from 'WP25/option', but it tries
|
11
|
+
# to look up the class with const_get, which doesn't work for classes in modules.
|
12
|
+
Factory.define 'WP25/option', :class => WP25::Option do |c| end
|
13
|
+
|
14
|
+
Factory.define 'WP25/user', :class => WP25::User do |u|
|
15
|
+
u.user_registered true
|
16
|
+
end
|
17
|
+
|
18
|
+
# Don't use this one, it's just an abstract superclass.
|
19
|
+
Factory.define 'WP25/content', :class => WP25::Post do |p|
|
20
|
+
now = Time.now
|
21
|
+
p.post_date now
|
22
|
+
# TODO: figure out how to handle GMT conversion
|
23
|
+
p.post_date_gmt {|p| p.post_date }
|
24
|
+
p.post_modified {|p| p.post_date }
|
25
|
+
p.post_modified_gmt {|p| p.post_modified }
|
26
|
+
p.to_ping '' # TODO: ?
|
27
|
+
p.pinged '' # TODO: ?
|
28
|
+
p.post_content_filtered {|p| p.post_content + ' [filtered]'} # TODO: ?
|
29
|
+
end
|
30
|
+
|
31
|
+
Factory.define 'WP25/post', :parent => 'WP25/content' do |p|
|
32
|
+
p.post_type 'post'
|
33
|
+
p.post_title 'Default Title'
|
34
|
+
p.post_content 'This is default content.'
|
35
|
+
p.post_excerpt 'Default excerpt.'
|
36
|
+
end
|
37
|
+
|
38
|
+
Factory.sequence(:page) {|n| n} # dur
|
39
|
+
|
40
|
+
Factory.define 'WP25/page', :parent => 'WP25/content' do |p|
|
41
|
+
p.post_type 'page'
|
42
|
+
p.post_title 'Default Page Title'
|
43
|
+
p.post_content 'This is default page content.'
|
44
|
+
p.post_excerpt 'Default page excerpt.'
|
45
|
+
p.post_name {|p| "#{Factory.next(:page)}-#{p.post_title.to_url}"}
|
46
|
+
end
|
47
|
+
|
48
|
+
Factory.define 'WP25/comment', :class => WP25::Comment do |c|
|
49
|
+
now = Time.now
|
50
|
+
c.comment_author {|c| c.user ? c.user.display_name : nil}
|
51
|
+
c.comment_date now
|
52
|
+
# TODO: figure out how to handle GMT conversion
|
53
|
+
c.comment_date_gmt {|c| c.comment_date}
|
54
|
+
c.comment_content 'This is my comment.'
|
55
|
+
end
|
56
|
+
|
57
|
+
Factory.define 'WP25/term', :class => WP25::Term do |t|
|
58
|
+
t.slug {|t| t.name.to_url}
|
59
|
+
end
|
60
|
+
|
61
|
+
Factory.define 'WP25/tag', :parent => 'WP25/term' do |t|
|
62
|
+
t.name 'A Tag'
|
63
|
+
# TODO: use associations to place tags in the taxonomy
|
64
|
+
end
|
65
|
+
|
66
|
+
Factory.define 'WP25/category', :parent => 'WP25/term' do |t|
|
67
|
+
t.name 'A Category'
|
68
|
+
# TODO: use associations to place categories in the taxonomy
|
69
|
+
end
|
70
|
+
|
71
|
+
Factory.define 'WP25/term_taxonomy', :class => WP25::TermTaxonomy do |tt|
|
72
|
+
tt.description ''
|
73
|
+
end
|
74
|
+
|
75
|
+
Factory.define 'WP25/term_relationship', :class => WP25::TermRelationship do |tr|
|
76
|
+
|
77
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
begin
|
2
|
+
require File.dirname(__FILE__) + '/../../../../spec/spec_helper'
|
3
|
+
rescue LoadError
|
4
|
+
puts "You need to install rspec in your base app"
|
5
|
+
exit
|
6
|
+
end
|
7
|
+
|
8
|
+
plugin_spec_dir = File.dirname(__FILE__)
|
9
|
+
ActiveRecord::Base.logger = Logger.new(plugin_spec_dir + "/debug.log")
|
10
|
+
|
11
|
+
config = ActiveRecord::Base.configurations['wp25_test']
|
12
|
+
ActiveRecord::Base.configurations['wp25'] = config
|
13
|
+
ActiveRecord::Base.establish_connection config
|
14
|
+
file = "#{File.dirname(__FILE__)}/../db/wp25_schema.rb"
|
15
|
+
load(file)
|
16
|
+
ActiveRecord::Base.establish_connection
|
17
|
+
|
18
|
+
require 'factory_girl'
|
19
|
+
Dir[File.join(File.dirname(__FILE__), 'factories', '*.rb')].each {|f| require f}
|
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'coderay'
|
2
|
+
require 'htmlentities'
|
2
3
|
|
3
4
|
class Typo
|
4
5
|
class Textfilter
|
@@ -51,6 +52,7 @@ have syntax highlighting.
|
|
51
52
|
begin
|
52
53
|
text = CodeRay.scan(text, lang.to_sym).span(options)
|
53
54
|
rescue
|
55
|
+
text = HTMLEntities.new("xhtml1").encode(text)
|
54
56
|
end
|
55
57
|
text = "<notextile>#{text}</notextile>"
|
56
58
|
|
@@ -68,6 +68,8 @@ Common attributes:
|
|
68
68
|
caption = attrib['caption']
|
69
69
|
title = attrib['title']
|
70
70
|
alt = attrib['alt']
|
71
|
+
thumburl = ''
|
72
|
+
displayurl = ''
|
71
73
|
|
72
74
|
img = attrib['img']
|
73
75
|
if img
|
@@ -91,8 +93,8 @@ Common attributes:
|
|
91
93
|
title ||= flickrimage.title
|
92
94
|
alt ||= title
|
93
95
|
else
|
94
|
-
thumburl = attrib['thumbsrc']
|
95
|
-
displayurl = attrib['src']
|
96
|
+
thumburl = attrib['thumbsrc'] unless attrib['thumbsrc'].nil?
|
97
|
+
displayurl = attrib['src'] unless attrib['src'].nil?
|
96
98
|
|
97
99
|
if thumburl.empty?
|
98
100
|
thumburl = displayurl
|
@@ -5,6 +5,9 @@ class XmlSidebar < Sidebar
|
|
5
5
|
setting :articles, true, :input_type => :checkbox
|
6
6
|
setting :comments, true, :input_type => :checkbox
|
7
7
|
setting :trackbacks, false, :input_type => :checkbox
|
8
|
+
setting :article_comments, true, :input_type => :checkbox
|
9
|
+
setting :category_feeds, false, :input_type => :checkbox
|
10
|
+
setting :tag_feeds, false, :input_type => :checkbox
|
8
11
|
|
9
12
|
setting :format, 'atom', :input_type => :radio,
|
10
13
|
:choices => [["rss", "RSS"], ["atom", "Atom"]]
|
@@ -4,9 +4,23 @@
|
|
4
4
|
<li><a href="<%= url_for :controller => 'articles', :action => 'index', :format => @sidebar.format_strip %>" title="Articles feed"><%= _("Articles")%></a></li>
|
5
5
|
<% end %>
|
6
6
|
<% if @sidebar.comments -%>
|
7
|
-
<li><a href="<%=
|
7
|
+
<li><a href="<%= admin_comments_url(:format=>@sidebar.format_strip) %>" title="Comments feed" test="<%= @sidebar.format_strip%>"><%= _("Comments")%></a></li>
|
8
8
|
<% end %>
|
9
9
|
<% if @sidebar.trackbacks -%>
|
10
10
|
<li><a href="<%= url_for :controller=>'xml', :action=>'feed', :format => @sidebar.format_strip, :type => 'trackbacks' %>" title="Trackbacks feed"><%= _("Trackbacks")%></a></li>
|
11
11
|
<% end %>
|
12
|
+
<% if @sidebar.category_feeds and controller.controller_name == 'categories' and controller.action_name == 'show' %>
|
13
|
+
<% format = (@sidebar.format_strip == 'rss') ? @auto_discovery_url_rss : @auto_discovery_url_atom %>
|
14
|
+
<%= content_tag(:li, _("Category %s", link_to(@grouping.display_name, format))) %>
|
15
|
+
<% end %>
|
16
|
+
<% if @sidebar.tag_feeds and controller.controller_name == 'tags' and controller.action_name == 'show' %>
|
17
|
+
<% format = (@sidebar.format_strip == 'rss') ? @auto_discovery_url_rss : @auto_discovery_url_atom %>
|
18
|
+
<%= content_tag(:li, _("Tag %s", link_to(@grouping.display_name, format))) %>
|
19
|
+
<% end %>
|
20
|
+
<% if @sidebar.article_comments and controller.controller_name == 'redirect' %>
|
21
|
+
<% format = (@sidebar.format_strip == 'rss') ? @auto_discovery_url_rss : @auto_discovery_url_atom %>
|
22
|
+
<%= content_tag(:li, link_to(@article.title, format)) %>
|
23
|
+
<% end %>
|
24
|
+
|
25
|
+
|
12
26
|
</ul>
|
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.
|
4
|
+
version: "5.4"
|
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: 2009-
|
12
|
+
date: 2009-12-19 00:00:00 +01:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -20,67 +20,107 @@ dependencies:
|
|
20
20
|
requirements:
|
21
21
|
- - "="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 2.
|
23
|
+
version: 2.3.5
|
24
24
|
version:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
|
-
name:
|
26
|
+
name: rails-app-installer
|
27
27
|
type: :runtime
|
28
28
|
version_requirement:
|
29
29
|
version_requirements: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 0.2.0
|
34
34
|
version:
|
35
35
|
- !ruby/object:Gem::Dependency
|
36
|
-
name:
|
36
|
+
name: ruby-debug
|
37
37
|
type: :runtime
|
38
38
|
version_requirement:
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
40
40
|
requirements:
|
41
41
|
- - ">="
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version:
|
43
|
+
version: 0.10.3
|
44
44
|
version:
|
45
45
|
- !ruby/object:Gem::Dependency
|
46
|
-
name:
|
46
|
+
name: flexmock
|
47
47
|
type: :runtime
|
48
48
|
version_requirement:
|
49
49
|
version_requirements: !ruby/object:Gem::Requirement
|
50
50
|
requirements:
|
51
51
|
- - ">="
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 0.
|
53
|
+
version: 0.8.3
|
54
54
|
version:
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
|
-
name:
|
56
|
+
name: rspec-rails
|
57
|
+
type: :runtime
|
58
|
+
version_requirement:
|
59
|
+
version_requirements: !ruby/object:Gem::Requirement
|
60
|
+
requirements:
|
61
|
+
- - "="
|
62
|
+
- !ruby/object:Gem::Version
|
63
|
+
version: 1.2.7.1
|
64
|
+
version:
|
65
|
+
- !ruby/object:Gem::Dependency
|
66
|
+
name: bluecloth
|
67
|
+
type: :runtime
|
68
|
+
version_requirement:
|
69
|
+
version_requirements: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ~>
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
version: 2.0.5
|
74
|
+
version:
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: htmlentities
|
57
77
|
type: :runtime
|
58
78
|
version_requirement:
|
59
79
|
version_requirements: !ruby/object:Gem::Requirement
|
60
80
|
requirements:
|
61
81
|
- - ">="
|
62
82
|
- !ruby/object:Gem::Version
|
63
|
-
version: 0
|
83
|
+
version: "0"
|
64
84
|
version:
|
65
85
|
- !ruby/object:Gem::Dependency
|
66
|
-
name:
|
86
|
+
name: json
|
67
87
|
type: :runtime
|
68
88
|
version_requirement:
|
69
89
|
version_requirements: !ruby/object:Gem::Requirement
|
70
90
|
requirements:
|
71
91
|
- - ">="
|
72
92
|
- !ruby/object:Gem::Version
|
73
|
-
version: 0
|
93
|
+
version: "0"
|
74
94
|
version:
|
75
95
|
- !ruby/object:Gem::Dependency
|
76
|
-
name:
|
96
|
+
name: calendar_date_select
|
77
97
|
type: :runtime
|
78
98
|
version_requirement:
|
79
99
|
version_requirements: !ruby/object:Gem::Requirement
|
80
100
|
requirements:
|
81
|
-
- - "
|
101
|
+
- - ">="
|
82
102
|
- !ruby/object:Gem::Version
|
83
|
-
version:
|
103
|
+
version: "0"
|
104
|
+
version:
|
105
|
+
- !ruby/object:Gem::Dependency
|
106
|
+
name: coderay
|
107
|
+
type: :runtime
|
108
|
+
version_requirement:
|
109
|
+
version_requirements: !ruby/object:Gem::Requirement
|
110
|
+
requirements:
|
111
|
+
- - ~>
|
112
|
+
- !ruby/object:Gem::Version
|
113
|
+
version: "0.8"
|
114
|
+
version:
|
115
|
+
- !ruby/object:Gem::Dependency
|
116
|
+
name: RedCloth
|
117
|
+
type: :runtime
|
118
|
+
version_requirement:
|
119
|
+
version_requirements: !ruby/object:Gem::Requirement
|
120
|
+
requirements:
|
121
|
+
- - ~>
|
122
|
+
- !ruby/object:Gem::Version
|
123
|
+
version: 4.2.2
|
84
124
|
version:
|
85
125
|
description:
|
86
126
|
email: frederic@de-villamil.com
|
@@ -91,15 +131,11 @@ extensions: []
|
|
91
131
|
extra_rdoc_files: []
|
92
132
|
|
93
133
|
files:
|
94
|
-
- app
|
95
|
-
- app/apis
|
96
134
|
- app/apis/blogger_service.rb
|
97
135
|
- app/apis/meta_weblog_service.rb
|
98
136
|
- app/apis/movable_type_service.rb
|
99
137
|
- app/apis/typo_web_service.rb
|
100
|
-
- app/controllers
|
101
138
|
- app/controllers/accounts_controller.rb
|
102
|
-
- app/controllers/admin
|
103
139
|
- app/controllers/admin/base_controller.rb
|
104
140
|
- app/controllers/admin/blacklist_controller.rb
|
105
141
|
- app/controllers/admin/cache_controller.rb
|
@@ -108,6 +144,7 @@ files:
|
|
108
144
|
- app/controllers/admin/dashboard_controller.rb
|
109
145
|
- app/controllers/admin/feedback_controller.rb
|
110
146
|
- app/controllers/admin/pages_controller.rb
|
147
|
+
- app/controllers/admin/previews_controller.rb
|
111
148
|
- app/controllers/admin/profiles_controller.rb
|
112
149
|
- app/controllers/admin/resources_controller.rb
|
113
150
|
- app/controllers/admin/settings_controller.rb
|
@@ -116,23 +153,23 @@ files:
|
|
116
153
|
- app/controllers/admin/textfilters_controller.rb
|
117
154
|
- app/controllers/admin/themes_controller.rb
|
118
155
|
- app/controllers/admin/users_controller.rb
|
119
|
-
- app/controllers/
|
156
|
+
- app/controllers/application_controller.rb
|
120
157
|
- app/controllers/articles_controller.rb
|
158
|
+
- app/controllers/authors_controller.rb
|
121
159
|
- app/controllers/backend_controller.rb
|
122
160
|
- app/controllers/categories_controller.rb
|
123
161
|
- app/controllers/comments_controller.rb
|
124
162
|
- app/controllers/content_controller.rb
|
125
163
|
- app/controllers/feedback_controller.rb
|
126
164
|
- app/controllers/grouping_controller.rb
|
165
|
+
- app/controllers/previews_controller.rb
|
127
166
|
- app/controllers/redirect_controller.rb
|
128
167
|
- app/controllers/tags_controller.rb
|
129
168
|
- app/controllers/textfilter_controller.rb
|
130
169
|
- app/controllers/theme_controller.rb
|
131
170
|
- app/controllers/trackbacks_controller.rb
|
132
171
|
- app/controllers/xml_controller.rb
|
133
|
-
- app/helpers
|
134
172
|
- app/helpers/accounts_helper.rb
|
135
|
-
- app/helpers/admin
|
136
173
|
- app/helpers/admin/base_helper.rb
|
137
174
|
- app/helpers/admin/blacklist_helper.rb
|
138
175
|
- app/helpers/admin/cache_helper.rb
|
@@ -159,15 +196,12 @@ files:
|
|
159
196
|
- app/helpers/mail_helper.rb
|
160
197
|
- app/helpers/redirect_helper.rb
|
161
198
|
- app/helpers/sidebar_helper.rb
|
162
|
-
- app/helpers/sidebars
|
163
199
|
- app/helpers/sidebars/plugin_helper.rb
|
164
200
|
- app/helpers/tags_helper.rb
|
165
201
|
- app/helpers/text_filter_plugin_helper.rb
|
166
202
|
- app/helpers/textfilter_helper.rb
|
167
203
|
- app/helpers/theme_helper.rb
|
168
204
|
- app/helpers/xml_helper.rb
|
169
|
-
- app/models
|
170
|
-
- app/models/article
|
171
205
|
- app/models/article/states.rb
|
172
206
|
- app/models/article.rb
|
173
207
|
- app/models/blacklist_pattern.rb
|
@@ -180,7 +214,6 @@ files:
|
|
180
214
|
- app/models/config_manager.rb
|
181
215
|
- app/models/content.rb
|
182
216
|
- app/models/email_notifier.rb
|
183
|
-
- app/models/feedback
|
184
217
|
- app/models/feedback/states.rb
|
185
218
|
- app/models/feedback.rb
|
186
219
|
- app/models/notification.rb
|
@@ -193,7 +226,6 @@ files:
|
|
193
226
|
- app/models/resource.rb
|
194
227
|
- app/models/right.rb
|
195
228
|
- app/models/sidebar.rb
|
196
|
-
- app/models/simple_cache.rb
|
197
229
|
- app/models/tag.rb
|
198
230
|
- app/models/text_filter.rb
|
199
231
|
- app/models/theme.rb
|
@@ -201,29 +233,23 @@ files:
|
|
201
233
|
- app/models/trigger.rb
|
202
234
|
- app/models/user.rb
|
203
235
|
- app/models/web_notifier.rb
|
204
|
-
- app/views
|
205
|
-
- app/views/accounts
|
236
|
+
- app/views/accounts/confirm.html.erb
|
206
237
|
- app/views/accounts/login.html.erb
|
207
238
|
- app/views/accounts/signup.html.erb
|
208
|
-
- app/views/admin
|
209
|
-
- app/views/admin/base
|
210
239
|
- app/views/admin/base/_recent_comments.html.erb
|
211
240
|
- app/views/admin/base/_recent_trackbacks.html.erb
|
212
|
-
- app/views/admin/blacklist
|
213
241
|
- app/views/admin/blacklist/_blacklist_patterns.html.erb
|
214
242
|
- app/views/admin/blacklist/_form.html.erb
|
215
243
|
- app/views/admin/blacklist/_quick_post.html.erb
|
216
244
|
- app/views/admin/blacklist/destroy.html.erb
|
217
245
|
- app/views/admin/blacklist/edit.html.erb
|
218
246
|
- app/views/admin/blacklist/index.html.erb
|
219
|
-
- app/views/admin/categories
|
220
247
|
- app/views/admin/categories/_categories.html.erb
|
221
248
|
- app/views/admin/categories/_form.html.erb
|
222
249
|
- app/views/admin/categories/destroy.html.erb
|
223
250
|
- app/views/admin/categories/index.html.erb
|
224
251
|
- app/views/admin/categories/new.html.erb
|
225
252
|
- app/views/admin/categories/reorder.html.erb
|
226
|
-
- app/views/admin/content
|
227
253
|
- app/views/admin/content/_article_list.html.erb
|
228
254
|
- app/views/admin/content/_attachment.html.erb
|
229
255
|
- app/views/admin/content/_drafts.html.erb
|
@@ -234,7 +260,6 @@ files:
|
|
234
260
|
- app/views/admin/content/destroy.html.erb
|
235
261
|
- app/views/admin/content/index.html.erb
|
236
262
|
- app/views/admin/content/new.html.erb
|
237
|
-
- app/views/admin/dashboard
|
238
263
|
- app/views/admin/dashboard/_comments.html.erb
|
239
264
|
- app/views/admin/dashboard/_inbound.html.erb
|
240
265
|
- app/views/admin/dashboard/_overview.html.erb
|
@@ -244,14 +269,12 @@ files:
|
|
244
269
|
- app/views/admin/dashboard/_typo_dev.html.erb
|
245
270
|
- app/views/admin/dashboard/_welcome.html.erb
|
246
271
|
- app/views/admin/dashboard/index.html.erb
|
247
|
-
- app/views/admin/feedback
|
248
272
|
- app/views/admin/feedback/_button.html.erb
|
249
273
|
- app/views/admin/feedback/_form.html.erb
|
250
274
|
- app/views/admin/feedback/_item.html.erb
|
251
275
|
- app/views/admin/feedback/article.html.erb
|
252
276
|
- app/views/admin/feedback/edit.html.erb
|
253
277
|
- app/views/admin/feedback/index.html.erb
|
254
|
-
- app/views/admin/pages
|
255
278
|
- app/views/admin/pages/_form.html.erb
|
256
279
|
- app/views/admin/pages/_pages.html.erb
|
257
280
|
- app/views/admin/pages/_simple_editor.html.erb
|
@@ -261,7 +284,7 @@ files:
|
|
261
284
|
- app/views/admin/pages/index.html.erb
|
262
285
|
- app/views/admin/pages/new.html.erb
|
263
286
|
- app/views/admin/pages/show.html.erb
|
264
|
-
- app/views/admin/
|
287
|
+
- app/views/admin/profiles/index.html.erb
|
265
288
|
- app/views/admin/resources/_itunes_category_add.html.erb
|
266
289
|
- app/views/admin/resources/_itunes_category_edit.html.erb
|
267
290
|
- app/views/admin/resources/_metadata_add.html.erb
|
@@ -271,18 +294,13 @@ files:
|
|
271
294
|
- app/views/admin/resources/_resources.html.erb
|
272
295
|
- app/views/admin/resources/destroy.html.erb
|
273
296
|
- app/views/admin/resources/index.html.erb
|
274
|
-
- app/views/admin/resources/new.html.erb
|
275
|
-
- app/views/admin/settings
|
276
297
|
- app/views/admin/settings/_submit.html.erb
|
277
298
|
- app/views/admin/settings/feedback.html.erb
|
278
299
|
- app/views/admin/settings/index.html.erb
|
279
|
-
- app/views/admin/settings/read.html.erb
|
280
300
|
- app/views/admin/settings/seo.html.erb
|
281
301
|
- app/views/admin/settings/update_database.html.erb
|
282
302
|
- app/views/admin/settings/write.html.erb
|
283
|
-
- app/views/admin/shared
|
284
303
|
- app/views/admin/shared/_edit.html.erb
|
285
|
-
- app/views/admin/sidebar
|
286
304
|
- app/views/admin/sidebar/_active.html.erb
|
287
305
|
- app/views/admin/sidebar/_actives.html.erb
|
288
306
|
- app/views/admin/sidebar/_available.html.erb
|
@@ -293,23 +311,18 @@ files:
|
|
293
311
|
- app/views/admin/sidebar/publish.rjs
|
294
312
|
- app/views/admin/sidebar/remove.rjs
|
295
313
|
- app/views/admin/sidebar/set_active.rjs
|
296
|
-
- app/views/admin/tags
|
297
314
|
- app/views/admin/tags/_form.html.erb
|
298
|
-
- app/views/admin/tags/_tags.html.erb
|
299
315
|
- app/views/admin/tags/destroy.html.erb
|
300
316
|
- app/views/admin/tags/edit.html.erb
|
301
317
|
- app/views/admin/tags/index.html.erb
|
302
|
-
- app/views/admin/themes
|
303
318
|
- app/views/admin/themes/catalogue.html.erb
|
304
319
|
- app/views/admin/themes/editor.html.erb
|
305
320
|
- app/views/admin/themes/index.html.erb
|
306
|
-
- app/views/admin/users
|
307
321
|
- app/views/admin/users/_form.html.erb
|
308
322
|
- app/views/admin/users/destroy.html.erb
|
309
323
|
- app/views/admin/users/edit.html.erb
|
310
324
|
- app/views/admin/users/index.html.erb
|
311
325
|
- app/views/admin/users/new.html.erb
|
312
|
-
- app/views/articles
|
313
326
|
- app/views/articles/_article.html.erb
|
314
327
|
- app/views/articles/_atom_feed.atom.builder
|
315
328
|
- app/views/articles/_comment.html.erb
|
@@ -328,35 +341,27 @@ files:
|
|
328
341
|
- app/views/articles/search.html.erb
|
329
342
|
- app/views/articles/trackback.xml.builder
|
330
343
|
- app/views/articles/view_page.html.erb
|
331
|
-
- app/views/
|
344
|
+
- app/views/authors/show.html.erb
|
332
345
|
- app/views/comments/index.html.erb
|
333
346
|
- app/views/comments/show.html.erb
|
334
|
-
- app/views/layouts
|
335
347
|
- app/views/layouts/accounts.html.erb
|
336
348
|
- app/views/layouts/administration.html.erb
|
337
349
|
- app/views/layouts/sidebar.html.erb
|
338
|
-
- app/views/notification_mailer
|
339
350
|
- app/views/notification_mailer/_mail_footer.html.erb
|
340
351
|
- app/views/notification_mailer/_mail_header.html.erb
|
341
352
|
- app/views/notification_mailer/article.html.erb
|
342
353
|
- app/views/notification_mailer/comment.html.erb
|
343
354
|
- app/views/notification_mailer/notif_user.html.erb
|
344
355
|
- app/views/notification_mailer/trackback.html.erb
|
345
|
-
- app/views/settings
|
346
356
|
- app/views/settings/done.html.erb
|
347
357
|
- app/views/settings/install.html.erb
|
348
|
-
- app/views/shared
|
349
|
-
- app/views/shared/_loginform.html.erb
|
350
|
-
- app/views/sidebar
|
358
|
+
- app/views/shared/_search.html.erb
|
351
359
|
- app/views/sidebar/_row.html.erb
|
352
360
|
- app/views/sidebar/_sidebar.html.erb
|
353
361
|
- app/views/sidebar/display_plugins.html.erb
|
354
362
|
- app/views/sidebar/show.html.erb
|
355
|
-
- app/views/theme
|
356
363
|
- app/views/theme/static_view_test.html.erb
|
357
|
-
- app/views/trackbacks
|
358
364
|
- app/views/trackbacks/trackback.xml.builder
|
359
|
-
- app/views/xml
|
360
365
|
- app/views/xml/_atom10_item_article.atom.builder
|
361
366
|
- app/views/xml/_atom10_item_comment.atom.builder
|
362
367
|
- app/views/xml/_atom10_item_trackback.atom.builder
|
@@ -374,36 +379,29 @@ files:
|
|
374
379
|
- app/views/xml/itunes_feed.rss.builder
|
375
380
|
- app/views/xml/rsd.rsd.builder
|
376
381
|
- app/views/xml/rsd.rxml
|
377
|
-
- bin
|
378
382
|
- bin/typo
|
379
383
|
- CHANGELOG
|
380
|
-
- config
|
381
384
|
- config/boot.rb
|
382
385
|
- config/database.yml.example
|
383
386
|
- config/environment.rb
|
384
|
-
- config/environments
|
387
|
+
- config/environments/cucumber.rb
|
385
388
|
- config/environments/development.rb
|
386
389
|
- config/environments/production.rb
|
387
390
|
- config/environments/test.rb
|
388
|
-
- config/initializers
|
389
391
|
- config/initializers/access_rules.rb
|
390
|
-
- config/initializers/active_record_hacks.rb
|
391
|
-
- config/initializers/benchmark_hacks.rb
|
392
392
|
- config/initializers/inflector.rb
|
393
393
|
- config/initializers/mime_types.rb
|
394
394
|
- config/iTunes.yml
|
395
395
|
- config/lighttpd.conf
|
396
|
+
- config/locales/nl.rb
|
396
397
|
- config/mail.yml.example
|
397
398
|
- config/routes.rb
|
398
|
-
- db
|
399
|
-
- db/converters
|
400
399
|
- db/converters/feed.rb
|
401
400
|
- db/converters/mt3.rb
|
402
401
|
- db/converters/README
|
403
402
|
- db/converters/rss.rb
|
404
403
|
- db/converters/s9y.rb
|
405
404
|
- db/converters/textpattern.rb
|
406
|
-
- db/migrate
|
407
405
|
- db/migrate/001_initial_schema.rb
|
408
406
|
- db/migrate/002_add_user_email.rb
|
409
407
|
- db/migrate/003_add_article_user_id.rb
|
@@ -485,6 +483,11 @@ files:
|
|
485
483
|
- db/migrate/079_move_editor_as_string.rb
|
486
484
|
- db/migrate/080_add_state_to_user.rb
|
487
485
|
- db/migrate/081_create_cache_informations.rb
|
486
|
+
- db/migrate/082_add_users_options.rb
|
487
|
+
- db/migrate/083_add_users_display_perms.rb
|
488
|
+
- db/migrate/084_move_users_to_profiles.rb
|
489
|
+
- db/migrate/085_add_article_parent_draft.rb
|
490
|
+
- db/migrate/086_add_user_last_connection.rb
|
488
491
|
- db/schema.mysql-v3.sql
|
489
492
|
- db/schema.mysql.sql
|
490
493
|
- db/schema.postgresql.sql
|
@@ -492,20 +495,15 @@ files:
|
|
492
495
|
- db/schema.sqlite.sql
|
493
496
|
- db/schema.sqlserver.sql
|
494
497
|
- db/schema_version
|
495
|
-
- db/scripts
|
496
498
|
- db/scripts/fix_permalinks.rb
|
497
|
-
- db/updates
|
498
499
|
- db/updates/update.168.to.200.mysql.sql
|
499
500
|
- db/updates/update.168.to.200.psql.sql
|
500
|
-
- doc
|
501
501
|
- doc/Installer.txt
|
502
|
-
- doc/
|
503
|
-
- installer
|
502
|
+
- doc/test_themes.rb
|
504
503
|
- installer/apache13.conf.example.template
|
505
504
|
- installer/apache20.conf.example.template
|
506
505
|
- installer/lighttpd.conf.example.template
|
507
506
|
- installer/rails_installer_defaults.yml
|
508
|
-
- lang
|
509
507
|
- lang/de_DE.rb
|
510
508
|
- lang/en_US.rb
|
511
509
|
- lang/es_MX.rb
|
@@ -513,49 +511,40 @@ files:
|
|
513
511
|
- lang/he_IL.rb
|
514
512
|
- lang/it_IT.rb
|
515
513
|
- lang/ja_JP.rb
|
514
|
+
- lang/nl_NL.rb
|
516
515
|
- lang/pl_PL.rb
|
517
516
|
- lang/ro_RO.rb
|
518
|
-
-
|
517
|
+
- lang/zh_TW.rb
|
519
518
|
- lib/backpack_api.rb
|
520
519
|
- lib/bare_migration.rb
|
521
520
|
- lib/email_notify.rb
|
522
521
|
- lib/format.rb
|
523
|
-
- lib/generators
|
524
|
-
- lib/generators/sidebar
|
525
522
|
- lib/generators/sidebar/sidebar_generator.rb
|
526
|
-
- lib/generators/sidebar/templates
|
527
523
|
- lib/generators/sidebar/templates/content.html.erb
|
528
524
|
- lib/generators/sidebar/templates/init.rb
|
529
525
|
- lib/generators/sidebar/templates/Rakefile
|
530
526
|
- lib/generators/sidebar/templates/sidebar.rb
|
531
527
|
- lib/generators/sidebar/templates/unit_test.rb
|
532
|
-
- lib/memory_profiler.rb
|
533
528
|
- lib/migrator.rb
|
534
|
-
- lib/rails_patch
|
535
529
|
- lib/rails_patch/active_record.rb
|
536
530
|
- lib/route_cache.rb
|
537
|
-
- lib/sidebars
|
538
531
|
- lib/sidebars/component_plugin.rb
|
539
532
|
- lib/sidebars/consolidated_plugin.rb
|
540
533
|
- lib/sidebars/plugin.rb
|
541
534
|
- lib/spam_protection.rb
|
542
535
|
- lib/stateful.rb
|
543
|
-
- lib/tasks
|
536
|
+
- lib/tasks/cucumber.rake
|
544
537
|
- lib/tasks/release.rake
|
545
538
|
- lib/tasks/rspec.rake
|
546
539
|
- lib/tasks/schemas.rake
|
547
540
|
- lib/tasks/sweep_cache.rake
|
548
541
|
- lib/text_filter_plugin.rb
|
549
542
|
- lib/transforms.rb
|
550
|
-
- lib/typo_deprecated.rb
|
551
543
|
- lib/typo_guid.rb
|
552
544
|
- lib/typo_plugins.rb
|
553
545
|
- lib/typo_version.rb
|
554
|
-
- lib/xmlrpc_fix.rb
|
555
|
-
- log
|
556
546
|
- MAINTAINERS
|
557
547
|
- MIT-LICENSE
|
558
|
-
- public
|
559
548
|
- public/.htaccess
|
560
549
|
- public/404.html
|
561
550
|
- public/500.html
|
@@ -563,477 +552,306 @@ files:
|
|
563
552
|
- public/dispatch.fcgi
|
564
553
|
- public/dispatch.rb
|
565
554
|
- public/favicon.ico
|
566
|
-
- public/images
|
567
|
-
- public/images/admin
|
555
|
+
- public/images/admin/blue_block_bottom_left.jpg
|
556
|
+
- public/images/admin/blue_block_bottom_right.jpg
|
557
|
+
- public/images/admin/blue_block_top_left.jpg
|
558
|
+
- public/images/admin/blue_block_top_right.jpg
|
559
|
+
- public/images/admin/editor_active_top_left.jpg
|
560
|
+
- public/images/admin/editor_active_top_right.jpg
|
561
|
+
- public/images/admin/editor_bottom_left.jpg
|
562
|
+
- public/images/admin/editor_bottom_right.jpg
|
563
|
+
- public/images/admin/input_text_left.jpg
|
564
|
+
- public/images/admin/input_text_right.jpg
|
565
|
+
- public/images/admin/input_text_small_left.jpg
|
566
|
+
- public/images/admin/input_text_small_right.jpg
|
567
|
+
- public/images/admin/publisher_bottom.jpg
|
568
|
+
- public/images/admin/publisher_top.jpg
|
568
569
|
- public/images/admin/typologo.gif
|
569
|
-
- public/images/calendar_date_select
|
570
570
|
- public/images/calendar_date_select/calendar.gif
|
571
|
+
- public/images/close.gif
|
571
572
|
- public/images/go.png
|
573
|
+
- public/images/loading.gif
|
574
|
+
- public/images/nextlabel.gif
|
572
575
|
- public/images/overlay.png
|
573
576
|
- public/images/powered.gif
|
577
|
+
- public/images/prevlabel.gif
|
574
578
|
- public/images/spinner-blue.gif
|
575
579
|
- public/images/spinner.gif
|
576
|
-
- public/javascripts
|
577
580
|
- public/javascripts/administration.js
|
578
581
|
- public/javascripts/application.js
|
579
|
-
- public/javascripts/
|
582
|
+
- public/javascripts/builder.js
|
580
583
|
- public/javascripts/calendar_date_select/calendar_date_select.js
|
581
584
|
- public/javascripts/calendar_date_select/format_db.js
|
585
|
+
- public/javascripts/ckcustom.js
|
586
|
+
- public/javascripts/ckeditor/.htaccess
|
587
|
+
- public/javascripts/ckeditor/CHANGES.html
|
588
|
+
- public/javascripts/ckeditor/ckeditor.js
|
589
|
+
- public/javascripts/ckeditor/ckeditor.pack
|
590
|
+
- public/javascripts/ckeditor/ckeditor_basic.js
|
591
|
+
- public/javascripts/ckeditor/ckeditor_basic_source.js
|
592
|
+
- public/javascripts/ckeditor/ckeditor_source.js
|
593
|
+
- public/javascripts/ckeditor/config.bak
|
594
|
+
- public/javascripts/ckeditor/config.js
|
595
|
+
- public/javascripts/ckeditor/contents.css
|
596
|
+
- public/javascripts/ckeditor/images/spacer.gif
|
597
|
+
- public/javascripts/ckeditor/INSTALL.html
|
598
|
+
- public/javascripts/ckeditor/lang/_languages.js
|
599
|
+
- public/javascripts/ckeditor/lang/_translationstatus.txt
|
600
|
+
- public/javascripts/ckeditor/lang/af.js
|
601
|
+
- public/javascripts/ckeditor/lang/ar.js
|
602
|
+
- public/javascripts/ckeditor/lang/bg.js
|
603
|
+
- public/javascripts/ckeditor/lang/bn.js
|
604
|
+
- public/javascripts/ckeditor/lang/bs.js
|
605
|
+
- public/javascripts/ckeditor/lang/ca.js
|
606
|
+
- public/javascripts/ckeditor/lang/cs.js
|
607
|
+
- public/javascripts/ckeditor/lang/da.js
|
608
|
+
- public/javascripts/ckeditor/lang/de.js
|
609
|
+
- public/javascripts/ckeditor/lang/el.js
|
610
|
+
- public/javascripts/ckeditor/lang/en-au.js
|
611
|
+
- public/javascripts/ckeditor/lang/en-ca.js
|
612
|
+
- public/javascripts/ckeditor/lang/en-uk.js
|
613
|
+
- public/javascripts/ckeditor/lang/en.js
|
614
|
+
- public/javascripts/ckeditor/lang/eo.js
|
615
|
+
- public/javascripts/ckeditor/lang/es.js
|
616
|
+
- public/javascripts/ckeditor/lang/et.js
|
617
|
+
- public/javascripts/ckeditor/lang/eu.js
|
618
|
+
- public/javascripts/ckeditor/lang/fa.js
|
619
|
+
- public/javascripts/ckeditor/lang/fi.js
|
620
|
+
- public/javascripts/ckeditor/lang/fo.js
|
621
|
+
- public/javascripts/ckeditor/lang/fr-ca.js
|
622
|
+
- public/javascripts/ckeditor/lang/fr.js
|
623
|
+
- public/javascripts/ckeditor/lang/gl.js
|
624
|
+
- public/javascripts/ckeditor/lang/gu.js
|
625
|
+
- public/javascripts/ckeditor/lang/he.js
|
626
|
+
- public/javascripts/ckeditor/lang/hi.js
|
627
|
+
- public/javascripts/ckeditor/lang/hr.js
|
628
|
+
- public/javascripts/ckeditor/lang/hu.js
|
629
|
+
- public/javascripts/ckeditor/lang/is.js
|
630
|
+
- public/javascripts/ckeditor/lang/it.js
|
631
|
+
- public/javascripts/ckeditor/lang/ja.js
|
632
|
+
- public/javascripts/ckeditor/lang/km.js
|
633
|
+
- public/javascripts/ckeditor/lang/ko.js
|
634
|
+
- public/javascripts/ckeditor/lang/lt.js
|
635
|
+
- public/javascripts/ckeditor/lang/lv.js
|
636
|
+
- public/javascripts/ckeditor/lang/mn.js
|
637
|
+
- public/javascripts/ckeditor/lang/ms.js
|
638
|
+
- public/javascripts/ckeditor/lang/nb.js
|
639
|
+
- public/javascripts/ckeditor/lang/nl.js
|
640
|
+
- public/javascripts/ckeditor/lang/no.js
|
641
|
+
- public/javascripts/ckeditor/lang/pl.js
|
642
|
+
- public/javascripts/ckeditor/lang/pt-br.js
|
643
|
+
- public/javascripts/ckeditor/lang/pt.js
|
644
|
+
- public/javascripts/ckeditor/lang/ro.js
|
645
|
+
- public/javascripts/ckeditor/lang/ru.js
|
646
|
+
- public/javascripts/ckeditor/lang/sk.js
|
647
|
+
- public/javascripts/ckeditor/lang/sl.js
|
648
|
+
- public/javascripts/ckeditor/lang/sr-latn.js
|
649
|
+
- public/javascripts/ckeditor/lang/sr.js
|
650
|
+
- public/javascripts/ckeditor/lang/sv.js
|
651
|
+
- public/javascripts/ckeditor/lang/th.js
|
652
|
+
- public/javascripts/ckeditor/lang/tr.js
|
653
|
+
- public/javascripts/ckeditor/lang/uk.js
|
654
|
+
- public/javascripts/ckeditor/lang/vi.js
|
655
|
+
- public/javascripts/ckeditor/lang/zh-cn.js
|
656
|
+
- public/javascripts/ckeditor/lang/zh.js
|
657
|
+
- public/javascripts/ckeditor/LICENSE.html
|
658
|
+
- public/javascripts/ckeditor/plugins/about/dialogs/about.js
|
659
|
+
- public/javascripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png
|
660
|
+
- public/javascripts/ckeditor/plugins/about/plugin.js
|
661
|
+
- public/javascripts/ckeditor/plugins/basicstyles/plugin.js
|
662
|
+
- public/javascripts/ckeditor/plugins/blockquote/plugin.js
|
663
|
+
- public/javascripts/ckeditor/plugins/button/plugin.js
|
664
|
+
- public/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js
|
665
|
+
- public/javascripts/ckeditor/plugins/clipboard/plugin.js
|
666
|
+
- public/javascripts/ckeditor/plugins/colorbutton/plugin.js
|
667
|
+
- public/javascripts/ckeditor/plugins/colordialog/dialogs/colordialog.js
|
668
|
+
- public/javascripts/ckeditor/plugins/colordialog/plugin.js
|
669
|
+
- public/javascripts/ckeditor/plugins/contextmenu/plugin.js
|
670
|
+
- public/javascripts/ckeditor/plugins/dialog/dialogDefinition.js
|
671
|
+
- public/javascripts/ckeditor/plugins/dialog/plugin.js
|
672
|
+
- public/javascripts/ckeditor/plugins/dialogui/plugin.js
|
673
|
+
- public/javascripts/ckeditor/plugins/domiterator/plugin.js
|
674
|
+
- public/javascripts/ckeditor/plugins/editingblock/plugin.js
|
675
|
+
- public/javascripts/ckeditor/plugins/elementspath/plugin.js
|
676
|
+
- public/javascripts/ckeditor/plugins/enterkey/plugin.js
|
677
|
+
- public/javascripts/ckeditor/plugins/entities/plugin.js
|
678
|
+
- public/javascripts/ckeditor/plugins/fakeobjects/plugin.js
|
679
|
+
- public/javascripts/ckeditor/plugins/filebrowser/plugin.js
|
680
|
+
- public/javascripts/ckeditor/plugins/find/dialogs/find.js
|
681
|
+
- public/javascripts/ckeditor/plugins/find/plugin.js
|
682
|
+
- public/javascripts/ckeditor/plugins/flash/dialogs/flash.js
|
683
|
+
- public/javascripts/ckeditor/plugins/flash/images/placeholder.png
|
684
|
+
- public/javascripts/ckeditor/plugins/flash/plugin.js
|
685
|
+
- public/javascripts/ckeditor/plugins/floatpanel/plugin.js
|
686
|
+
- public/javascripts/ckeditor/plugins/font/plugin.js
|
687
|
+
- public/javascripts/ckeditor/plugins/format/plugin.js
|
688
|
+
- public/javascripts/ckeditor/plugins/forms/dialogs/button.js
|
689
|
+
- public/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js
|
690
|
+
- public/javascripts/ckeditor/plugins/forms/dialogs/form.js
|
691
|
+
- public/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js
|
692
|
+
- public/javascripts/ckeditor/plugins/forms/dialogs/radio.js
|
693
|
+
- public/javascripts/ckeditor/plugins/forms/dialogs/select.js
|
694
|
+
- public/javascripts/ckeditor/plugins/forms/dialogs/textarea.js
|
695
|
+
- public/javascripts/ckeditor/plugins/forms/dialogs/textfield.js
|
696
|
+
- public/javascripts/ckeditor/plugins/forms/plugin.js
|
697
|
+
- public/javascripts/ckeditor/plugins/horizontalrule/plugin.js
|
698
|
+
- public/javascripts/ckeditor/plugins/htmldataprocessor/plugin.js
|
699
|
+
- public/javascripts/ckeditor/plugins/htmlwriter/plugin.js
|
700
|
+
- public/javascripts/ckeditor/plugins/iframedialog/plugin.js
|
701
|
+
- public/javascripts/ckeditor/plugins/image/dialogs/image.js
|
702
|
+
- public/javascripts/ckeditor/plugins/image/plugin.js
|
703
|
+
- public/javascripts/ckeditor/plugins/indent/plugin.js
|
704
|
+
- public/javascripts/ckeditor/plugins/justify/plugin.js
|
705
|
+
- public/javascripts/ckeditor/plugins/keystrokes/plugin.js
|
706
|
+
- public/javascripts/ckeditor/plugins/link/dialogs/anchor.js
|
707
|
+
- public/javascripts/ckeditor/plugins/link/dialogs/link.js
|
708
|
+
- public/javascripts/ckeditor/plugins/link/images/anchor.gif
|
709
|
+
- public/javascripts/ckeditor/plugins/link/plugin.js
|
710
|
+
- public/javascripts/ckeditor/plugins/list/plugin.js
|
711
|
+
- public/javascripts/ckeditor/plugins/listblock/plugin.js
|
712
|
+
- public/javascripts/ckeditor/plugins/maximize/plugin.js
|
713
|
+
- public/javascripts/ckeditor/plugins/menu/plugin.js
|
714
|
+
- public/javascripts/ckeditor/plugins/menubutton/plugin.js
|
715
|
+
- public/javascripts/ckeditor/plugins/newpage/plugin.js
|
716
|
+
- public/javascripts/ckeditor/plugins/pagebreak/images/pagebreak.gif
|
717
|
+
- public/javascripts/ckeditor/plugins/pagebreak/plugin.js
|
718
|
+
- public/javascripts/ckeditor/plugins/panel/plugin.js
|
719
|
+
- public/javascripts/ckeditor/plugins/panelbutton/plugin.js
|
720
|
+
- public/javascripts/ckeditor/plugins/pastefromword/dialogs/pastefromword.js
|
721
|
+
- public/javascripts/ckeditor/plugins/pastefromword/plugin.js
|
722
|
+
- public/javascripts/ckeditor/plugins/pastetext/dialogs/pastetext.js
|
723
|
+
- public/javascripts/ckeditor/plugins/pastetext/plugin.js
|
724
|
+
- public/javascripts/ckeditor/plugins/popup/plugin.js
|
725
|
+
- public/javascripts/ckeditor/plugins/preview/plugin.js
|
726
|
+
- public/javascripts/ckeditor/plugins/print/plugin.js
|
727
|
+
- public/javascripts/ckeditor/plugins/removeformat/plugin.js
|
728
|
+
- public/javascripts/ckeditor/plugins/resize/plugin.js
|
729
|
+
- public/javascripts/ckeditor/plugins/richcombo/plugin.js
|
730
|
+
- public/javascripts/ckeditor/plugins/save/plugin.js
|
731
|
+
- public/javascripts/ckeditor/plugins/scayt/dialogs/options.js
|
732
|
+
- public/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css
|
733
|
+
- public/javascripts/ckeditor/plugins/scayt/plugin.js
|
734
|
+
- public/javascripts/ckeditor/plugins/selection/plugin.js
|
735
|
+
- public/javascripts/ckeditor/plugins/showblocks/images/block_address.png
|
736
|
+
- public/javascripts/ckeditor/plugins/showblocks/images/block_blockquote.png
|
737
|
+
- public/javascripts/ckeditor/plugins/showblocks/images/block_div.png
|
738
|
+
- public/javascripts/ckeditor/plugins/showblocks/images/block_h1.png
|
739
|
+
- public/javascripts/ckeditor/plugins/showblocks/images/block_h2.png
|
740
|
+
- public/javascripts/ckeditor/plugins/showblocks/images/block_h3.png
|
741
|
+
- public/javascripts/ckeditor/plugins/showblocks/images/block_h4.png
|
742
|
+
- public/javascripts/ckeditor/plugins/showblocks/images/block_h5.png
|
743
|
+
- public/javascripts/ckeditor/plugins/showblocks/images/block_h6.png
|
744
|
+
- public/javascripts/ckeditor/plugins/showblocks/images/block_p.png
|
745
|
+
- public/javascripts/ckeditor/plugins/showblocks/images/block_pre.png
|
746
|
+
- public/javascripts/ckeditor/plugins/showblocks/plugin.js
|
747
|
+
- public/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js
|
748
|
+
- public/javascripts/ckeditor/plugins/smiley/images/angel_smile.gif
|
749
|
+
- public/javascripts/ckeditor/plugins/smiley/images/angry_smile.gif
|
750
|
+
- public/javascripts/ckeditor/plugins/smiley/images/broken_heart.gif
|
751
|
+
- public/javascripts/ckeditor/plugins/smiley/images/confused_smile.gif
|
752
|
+
- public/javascripts/ckeditor/plugins/smiley/images/cry_smile.gif
|
753
|
+
- public/javascripts/ckeditor/plugins/smiley/images/devil_smile.gif
|
754
|
+
- public/javascripts/ckeditor/plugins/smiley/images/embaressed_smile.gif
|
755
|
+
- public/javascripts/ckeditor/plugins/smiley/images/envelope.gif
|
756
|
+
- public/javascripts/ckeditor/plugins/smiley/images/heart.gif
|
757
|
+
- public/javascripts/ckeditor/plugins/smiley/images/kiss.gif
|
758
|
+
- public/javascripts/ckeditor/plugins/smiley/images/lightbulb.gif
|
759
|
+
- public/javascripts/ckeditor/plugins/smiley/images/omg_smile.gif
|
760
|
+
- public/javascripts/ckeditor/plugins/smiley/images/regular_smile.gif
|
761
|
+
- public/javascripts/ckeditor/plugins/smiley/images/sad_smile.gif
|
762
|
+
- public/javascripts/ckeditor/plugins/smiley/images/shades_smile.gif
|
763
|
+
- public/javascripts/ckeditor/plugins/smiley/images/teeth_smile.gif
|
764
|
+
- public/javascripts/ckeditor/plugins/smiley/images/thumbs_down.gif
|
765
|
+
- public/javascripts/ckeditor/plugins/smiley/images/thumbs_up.gif
|
766
|
+
- public/javascripts/ckeditor/plugins/smiley/images/tounge_smile.gif
|
767
|
+
- public/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif
|
768
|
+
- public/javascripts/ckeditor/plugins/smiley/images/wink_smile.gif
|
769
|
+
- public/javascripts/ckeditor/plugins/smiley/plugin.js
|
770
|
+
- public/javascripts/ckeditor/plugins/sourcearea/plugin.js
|
771
|
+
- public/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js
|
772
|
+
- public/javascripts/ckeditor/plugins/specialchar/plugin.js
|
773
|
+
- public/javascripts/ckeditor/plugins/styles/plugin.js
|
774
|
+
- public/javascripts/ckeditor/plugins/stylescombo/plugin.js
|
775
|
+
- public/javascripts/ckeditor/plugins/stylescombo/styles/default.js
|
776
|
+
- public/javascripts/ckeditor/plugins/tab/plugin.js
|
777
|
+
- public/javascripts/ckeditor/plugins/table/dialogs/table.js
|
778
|
+
- public/javascripts/ckeditor/plugins/table/plugin.js
|
779
|
+
- public/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js
|
780
|
+
- public/javascripts/ckeditor/plugins/tabletools/plugin.js
|
781
|
+
- public/javascripts/ckeditor/plugins/templates/dialogs/templates.js
|
782
|
+
- public/javascripts/ckeditor/plugins/templates/plugin.js
|
783
|
+
- public/javascripts/ckeditor/plugins/templates/templates/default.js
|
784
|
+
- public/javascripts/ckeditor/plugins/templates/templates/images/template1.gif
|
785
|
+
- public/javascripts/ckeditor/plugins/templates/templates/images/template2.gif
|
786
|
+
- public/javascripts/ckeditor/plugins/templates/templates/images/template3.gif
|
787
|
+
- public/javascripts/ckeditor/plugins/toolbar/plugin.js
|
788
|
+
- public/javascripts/ckeditor/plugins/uicolor/dialogs/uicolor.js
|
789
|
+
- public/javascripts/ckeditor/plugins/uicolor/lang/en.js
|
790
|
+
- public/javascripts/ckeditor/plugins/uicolor/plugin.js
|
791
|
+
- public/javascripts/ckeditor/plugins/uicolor/uicolor.gif
|
792
|
+
- public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_bg.png
|
793
|
+
- public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png
|
794
|
+
- public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_mask.png
|
795
|
+
- public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png
|
796
|
+
- public/javascripts/ckeditor/plugins/uicolor/yui/assets/yui.css
|
797
|
+
- public/javascripts/ckeditor/plugins/uicolor/yui/yui.js
|
798
|
+
- public/javascripts/ckeditor/plugins/undo/plugin.js
|
799
|
+
- public/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html
|
800
|
+
- public/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
|
801
|
+
- public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css
|
802
|
+
- public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js
|
803
|
+
- public/javascripts/ckeditor/plugins/wsc/plugin.js
|
804
|
+
- public/javascripts/ckeditor/plugins/wysiwygarea/plugin.js
|
805
|
+
- public/javascripts/ckeditor/skins/kama/dialog.css
|
806
|
+
- public/javascripts/ckeditor/skins/kama/editor.css
|
807
|
+
- public/javascripts/ckeditor/skins/kama/icons.png
|
808
|
+
- public/javascripts/ckeditor/skins/kama/images/dialog_sides.gif
|
809
|
+
- public/javascripts/ckeditor/skins/kama/images/dialog_sides.png
|
810
|
+
- public/javascripts/ckeditor/skins/kama/images/dialog_sides_rtl.png
|
811
|
+
- public/javascripts/ckeditor/skins/kama/images/mini.gif
|
812
|
+
- public/javascripts/ckeditor/skins/kama/images/noimage.png
|
813
|
+
- public/javascripts/ckeditor/skins/kama/images/sprites.png
|
814
|
+
- public/javascripts/ckeditor/skins/kama/images/sprites_ie6.png
|
815
|
+
- public/javascripts/ckeditor/skins/kama/images/toolbar_start.gif
|
816
|
+
- public/javascripts/ckeditor/skins/kama/skin.js
|
817
|
+
- public/javascripts/ckeditor/skins/kama/templates.css
|
818
|
+
- public/javascripts/ckeditor/skins/office2003/dialog.css
|
819
|
+
- public/javascripts/ckeditor/skins/office2003/editor.css
|
820
|
+
- public/javascripts/ckeditor/skins/office2003/icons.png
|
821
|
+
- public/javascripts/ckeditor/skins/office2003/images/dialog_sides.gif
|
822
|
+
- public/javascripts/ckeditor/skins/office2003/images/dialog_sides.png
|
823
|
+
- public/javascripts/ckeditor/skins/office2003/images/dialog_sides_rtl.png
|
824
|
+
- public/javascripts/ckeditor/skins/office2003/images/mini.gif
|
825
|
+
- public/javascripts/ckeditor/skins/office2003/images/noimage.png
|
826
|
+
- public/javascripts/ckeditor/skins/office2003/images/sprites.png
|
827
|
+
- public/javascripts/ckeditor/skins/office2003/images/sprites_ie6.png
|
828
|
+
- public/javascripts/ckeditor/skins/office2003/skin.js
|
829
|
+
- public/javascripts/ckeditor/skins/office2003/templates.css
|
830
|
+
- public/javascripts/ckeditor/skins/v2/dialog.css
|
831
|
+
- public/javascripts/ckeditor/skins/v2/editor.css
|
832
|
+
- public/javascripts/ckeditor/skins/v2/icons.png
|
833
|
+
- public/javascripts/ckeditor/skins/v2/images/dialog_sides.gif
|
834
|
+
- public/javascripts/ckeditor/skins/v2/images/dialog_sides.png
|
835
|
+
- public/javascripts/ckeditor/skins/v2/images/dialog_sides_rtl.png
|
836
|
+
- public/javascripts/ckeditor/skins/v2/images/mini.gif
|
837
|
+
- public/javascripts/ckeditor/skins/v2/images/noimage.png
|
838
|
+
- public/javascripts/ckeditor/skins/v2/images/sprites.png
|
839
|
+
- public/javascripts/ckeditor/skins/v2/images/sprites_ie6.png
|
840
|
+
- public/javascripts/ckeditor/skins/v2/images/toolbar_start.gif
|
841
|
+
- public/javascripts/ckeditor/skins/v2/skin.js
|
842
|
+
- public/javascripts/ckeditor/skins/v2/templates.css
|
843
|
+
- public/javascripts/ckeditor/themes/default/theme.js
|
582
844
|
- public/javascripts/codecollapse.js
|
583
845
|
- public/javascripts/controls.js
|
584
846
|
- public/javascripts/cookies.js
|
585
847
|
- public/javascripts/dragdrop.js
|
586
848
|
- public/javascripts/effects.js
|
587
|
-
- public/javascripts/fckcustom.js
|
588
|
-
- public/javascripts/fckeditor
|
589
|
-
- public/javascripts/fckeditor/editor
|
590
|
-
- public/javascripts/fckeditor/editor/_source
|
591
|
-
- public/javascripts/fckeditor/editor/_source/classes
|
592
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckcontextmenu.js
|
593
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckdataprocessor.js
|
594
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_gecko.js
|
595
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckdocumentfragment_ie.js
|
596
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckdomrange.js
|
597
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckdomrange_gecko.js
|
598
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckdomrange_ie.js
|
599
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckdomrangeiterator.js
|
600
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckeditingarea.js
|
601
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckelementpath.js
|
602
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckenterkey.js
|
603
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckevents.js
|
604
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckhtmliterator.js
|
605
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckicon.js
|
606
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckiecleanup.js
|
607
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckimagepreloader.js
|
608
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckkeystrokehandler.js
|
609
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckmenublock.js
|
610
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckmenublockpanel.js
|
611
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckmenuitem.js
|
612
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckpanel.js
|
613
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckplugin.js
|
614
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckspecialcombo.js
|
615
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckstyle.js
|
616
|
-
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbar.js
|
617
|
-
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js
|
618
|
-
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js
|
619
|
-
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbutton.js
|
620
|
-
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarbuttonui.js
|
621
|
-
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js
|
622
|
-
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js
|
623
|
-
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js
|
624
|
-
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js
|
625
|
-
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js
|
626
|
-
- public/javascripts/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js
|
627
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckw3crange.js
|
628
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckxml.js
|
629
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckxml_gecko.js
|
630
|
-
- public/javascripts/fckeditor/editor/_source/classes/fckxml_ie.js
|
631
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses
|
632
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fck_othercommands.js
|
633
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fckblockquotecommand.js
|
634
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fckcorestylecommand.js
|
635
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fckfitwindow.js
|
636
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fckindentcommands.js
|
637
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fckjustifycommands.js
|
638
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fcklistcommands.js
|
639
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fcknamedcommand.js
|
640
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js
|
641
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js
|
642
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fckremoveformatcommand.js
|
643
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fckshowblocks.js
|
644
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js
|
645
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js
|
646
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fckstylecommand.js
|
647
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fcktablecommand.js
|
648
|
-
- public/javascripts/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js
|
649
|
-
- public/javascripts/fckeditor/editor/_source/fckconstants.js
|
650
|
-
- public/javascripts/fckeditor/editor/_source/fckeditorapi.js
|
651
|
-
- public/javascripts/fckeditor/editor/_source/fckjscoreextensions.js
|
652
|
-
- public/javascripts/fckeditor/editor/_source/fckscriptloader.js
|
653
|
-
- public/javascripts/fckeditor/editor/_source/internals
|
654
|
-
- public/javascripts/fckeditor/editor/_source/internals/fck.js
|
655
|
-
- public/javascripts/fckeditor/editor/_source/internals/fck_contextmenu.js
|
656
|
-
- public/javascripts/fckeditor/editor/_source/internals/fck_gecko.js
|
657
|
-
- public/javascripts/fckeditor/editor/_source/internals/fck_ie.js
|
658
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckbrowserinfo.js
|
659
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckcodeformatter.js
|
660
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckcommands.js
|
661
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckconfig.js
|
662
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckdebug.js
|
663
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckdialog.js
|
664
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckdialog_gecko.js
|
665
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckdialog_ie.js
|
666
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckdocumentprocessor.js
|
667
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckdomtools.js
|
668
|
-
- public/javascripts/fckeditor/editor/_source/internals/fcklanguagemanager.js
|
669
|
-
- public/javascripts/fckeditor/editor/_source/internals/fcklisthandler.js
|
670
|
-
- public/javascripts/fckeditor/editor/_source/internals/fcklistslib.js
|
671
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckplugins.js
|
672
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckregexlib.js
|
673
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckselection.js
|
674
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckselection_gecko.js
|
675
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckselection_ie.js
|
676
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckstyles.js
|
677
|
-
- public/javascripts/fckeditor/editor/_source/internals/fcktablehandler.js
|
678
|
-
- public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_gecko.js
|
679
|
-
- public/javascripts/fckeditor/editor/_source/internals/fcktablehandler_ie.js
|
680
|
-
- public/javascripts/fckeditor/editor/_source/internals/fcktoolbaritems.js
|
681
|
-
- public/javascripts/fckeditor/editor/_source/internals/fcktoolbarset.js
|
682
|
-
- public/javascripts/fckeditor/editor/_source/internals/fcktools.js
|
683
|
-
- public/javascripts/fckeditor/editor/_source/internals/fcktools_gecko.js
|
684
|
-
- public/javascripts/fckeditor/editor/_source/internals/fcktools_ie.js
|
685
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckundo.js
|
686
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckurlparams.js
|
687
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckxhtml.js
|
688
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckxhtml_gecko.js
|
689
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckxhtml_ie.js
|
690
|
-
- public/javascripts/fckeditor/editor/_source/internals/fckxhtmlentities.js
|
691
|
-
- public/javascripts/fckeditor/editor/css
|
692
|
-
- public/javascripts/fckeditor/editor/css/behaviors
|
693
|
-
- public/javascripts/fckeditor/editor/css/behaviors/disablehandles.htc
|
694
|
-
- public/javascripts/fckeditor/editor/css/behaviors/showtableborders.htc
|
695
|
-
- public/javascripts/fckeditor/editor/css/fck_editorarea.css
|
696
|
-
- public/javascripts/fckeditor/editor/css/fck_internal.css
|
697
|
-
- public/javascripts/fckeditor/editor/css/fck_showtableborders_gecko.css
|
698
|
-
- public/javascripts/fckeditor/editor/css/images
|
699
|
-
- public/javascripts/fckeditor/editor/css/images/block_address.png
|
700
|
-
- public/javascripts/fckeditor/editor/css/images/block_blockquote.png
|
701
|
-
- public/javascripts/fckeditor/editor/css/images/block_div.png
|
702
|
-
- public/javascripts/fckeditor/editor/css/images/block_h1.png
|
703
|
-
- public/javascripts/fckeditor/editor/css/images/block_h2.png
|
704
|
-
- public/javascripts/fckeditor/editor/css/images/block_h3.png
|
705
|
-
- public/javascripts/fckeditor/editor/css/images/block_h4.png
|
706
|
-
- public/javascripts/fckeditor/editor/css/images/block_h5.png
|
707
|
-
- public/javascripts/fckeditor/editor/css/images/block_h6.png
|
708
|
-
- public/javascripts/fckeditor/editor/css/images/block_p.png
|
709
|
-
- public/javascripts/fckeditor/editor/css/images/block_pre.png
|
710
|
-
- public/javascripts/fckeditor/editor/css/images/fck_anchor.gif
|
711
|
-
- public/javascripts/fckeditor/editor/css/images/fck_flashlogo.gif
|
712
|
-
- public/javascripts/fckeditor/editor/css/images/fck_hiddenfield.gif
|
713
|
-
- public/javascripts/fckeditor/editor/css/images/fck_pagebreak.gif
|
714
|
-
- public/javascripts/fckeditor/editor/css/images/fck_plugin.gif
|
715
|
-
- public/javascripts/fckeditor/editor/dialog
|
716
|
-
- public/javascripts/fckeditor/editor/dialog/common
|
717
|
-
- public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.css
|
718
|
-
- public/javascripts/fckeditor/editor/dialog/common/fck_dialog_common.js
|
719
|
-
- public/javascripts/fckeditor/editor/dialog/common/images
|
720
|
-
- public/javascripts/fckeditor/editor/dialog/common/images/locked.gif
|
721
|
-
- public/javascripts/fckeditor/editor/dialog/common/images/reset.gif
|
722
|
-
- public/javascripts/fckeditor/editor/dialog/common/images/unlocked.gif
|
723
|
-
- public/javascripts/fckeditor/editor/dialog/fck_about
|
724
|
-
- public/javascripts/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif
|
725
|
-
- public/javascripts/fckeditor/editor/dialog/fck_about/logo_fredck.gif
|
726
|
-
- public/javascripts/fckeditor/editor/dialog/fck_about/sponsors
|
727
|
-
- public/javascripts/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif
|
728
|
-
- public/javascripts/fckeditor/editor/dialog/fck_about.html
|
729
|
-
- public/javascripts/fckeditor/editor/dialog/fck_anchor.html
|
730
|
-
- public/javascripts/fckeditor/editor/dialog/fck_button.html
|
731
|
-
- public/javascripts/fckeditor/editor/dialog/fck_checkbox.html
|
732
|
-
- public/javascripts/fckeditor/editor/dialog/fck_colorselector.html
|
733
|
-
- public/javascripts/fckeditor/editor/dialog/fck_docprops
|
734
|
-
- public/javascripts/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html
|
735
|
-
- public/javascripts/fckeditor/editor/dialog/fck_docprops.html
|
736
|
-
- public/javascripts/fckeditor/editor/dialog/fck_find.html
|
737
|
-
- public/javascripts/fckeditor/editor/dialog/fck_flash
|
738
|
-
- public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash.js
|
739
|
-
- public/javascripts/fckeditor/editor/dialog/fck_flash/fck_flash_preview.html
|
740
|
-
- public/javascripts/fckeditor/editor/dialog/fck_flash.html
|
741
|
-
- public/javascripts/fckeditor/editor/dialog/fck_form.html
|
742
|
-
- public/javascripts/fckeditor/editor/dialog/fck_hiddenfield.html
|
743
|
-
- public/javascripts/fckeditor/editor/dialog/fck_image
|
744
|
-
- public/javascripts/fckeditor/editor/dialog/fck_image/fck_image.js
|
745
|
-
- public/javascripts/fckeditor/editor/dialog/fck_image/fck_image_preview.html
|
746
|
-
- public/javascripts/fckeditor/editor/dialog/fck_image.html
|
747
|
-
- public/javascripts/fckeditor/editor/dialog/fck_link
|
748
|
-
- public/javascripts/fckeditor/editor/dialog/fck_link/fck_link.js
|
749
|
-
- public/javascripts/fckeditor/editor/dialog/fck_link.html
|
750
|
-
- public/javascripts/fckeditor/editor/dialog/fck_listprop.html
|
751
|
-
- public/javascripts/fckeditor/editor/dialog/fck_paste.html
|
752
|
-
- public/javascripts/fckeditor/editor/dialog/fck_radiobutton.html
|
753
|
-
- public/javascripts/fckeditor/editor/dialog/fck_replace.html
|
754
|
-
- public/javascripts/fckeditor/editor/dialog/fck_select
|
755
|
-
- public/javascripts/fckeditor/editor/dialog/fck_select/fck_select.js
|
756
|
-
- public/javascripts/fckeditor/editor/dialog/fck_select.html
|
757
|
-
- public/javascripts/fckeditor/editor/dialog/fck_smiley.html
|
758
|
-
- public/javascripts/fckeditor/editor/dialog/fck_source.html
|
759
|
-
- public/javascripts/fckeditor/editor/dialog/fck_specialchar.html
|
760
|
-
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages
|
761
|
-
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages
|
762
|
-
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html
|
763
|
-
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html
|
764
|
-
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js
|
765
|
-
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts
|
766
|
-
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm
|
767
|
-
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php
|
768
|
-
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl
|
769
|
-
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html
|
770
|
-
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js
|
771
|
-
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css
|
772
|
-
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js
|
773
|
-
- public/javascripts/fckeditor/editor/dialog/fck_spellerpages.html
|
774
|
-
- public/javascripts/fckeditor/editor/dialog/fck_table.html
|
775
|
-
- public/javascripts/fckeditor/editor/dialog/fck_tablecell.html
|
776
|
-
- public/javascripts/fckeditor/editor/dialog/fck_template
|
777
|
-
- public/javascripts/fckeditor/editor/dialog/fck_template/images
|
778
|
-
- public/javascripts/fckeditor/editor/dialog/fck_template/images/template1.gif
|
779
|
-
- public/javascripts/fckeditor/editor/dialog/fck_template/images/template2.gif
|
780
|
-
- public/javascripts/fckeditor/editor/dialog/fck_template/images/template3.gif
|
781
|
-
- public/javascripts/fckeditor/editor/dialog/fck_template.html
|
782
|
-
- public/javascripts/fckeditor/editor/dialog/fck_textarea.html
|
783
|
-
- public/javascripts/fckeditor/editor/dialog/fck_textfield.html
|
784
|
-
- public/javascripts/fckeditor/editor/dtd
|
785
|
-
- public/javascripts/fckeditor/editor/dtd/fck_dtd_test.html
|
786
|
-
- public/javascripts/fckeditor/editor/dtd/fck_xhtml10strict.js
|
787
|
-
- public/javascripts/fckeditor/editor/dtd/fck_xhtml10transitional.js
|
788
|
-
- public/javascripts/fckeditor/editor/fckdebug.html
|
789
|
-
- public/javascripts/fckeditor/editor/fckdialog.html
|
790
|
-
- public/javascripts/fckeditor/editor/fckeditor.html
|
791
|
-
- public/javascripts/fckeditor/editor/fckeditor.original.html
|
792
|
-
- public/javascripts/fckeditor/editor/filemanager
|
793
|
-
- public/javascripts/fckeditor/editor/filemanager/browser
|
794
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default
|
795
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/browser.css
|
796
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/browser.html
|
797
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/frmactualfolder.html
|
798
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html
|
799
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/frmfolders.html
|
800
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourceslist.html
|
801
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/frmresourcetype.html
|
802
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/frmupload.html
|
803
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images
|
804
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif
|
805
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/Folder.gif
|
806
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/Folder32.gif
|
807
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif
|
808
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif
|
809
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif
|
810
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons
|
811
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32
|
812
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif
|
813
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif
|
814
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif
|
815
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif
|
816
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif
|
817
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif
|
818
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif
|
819
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif
|
820
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif
|
821
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif
|
822
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif
|
823
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif
|
824
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif
|
825
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif
|
826
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif
|
827
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif
|
828
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif
|
829
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/png.gif
|
830
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif
|
831
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif
|
832
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif
|
833
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif
|
834
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif
|
835
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif
|
836
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif
|
837
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif
|
838
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif
|
839
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif
|
840
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif
|
841
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif
|
842
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif
|
843
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif
|
844
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif
|
845
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif
|
846
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif
|
847
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif
|
848
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif
|
849
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif
|
850
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/html.gif
|
851
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif
|
852
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/js.gif
|
853
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif
|
854
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif
|
855
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif
|
856
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/png.gif
|
857
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif
|
858
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif
|
859
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif
|
860
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif
|
861
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif
|
862
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif
|
863
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif
|
864
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif
|
865
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif
|
866
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/images/spacer.gif
|
867
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/js
|
868
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/js/common.js
|
869
|
-
- public/javascripts/fckeditor/editor/filemanager/browser/default/js/fckxml.js
|
870
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors
|
871
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/aspx
|
872
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/aspx/connector.aspx
|
873
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/aspx/upload.aspx
|
874
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/perl
|
875
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/perl/basexml.pl
|
876
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/perl/commands.pl
|
877
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/perl/connector.cgi
|
878
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/perl/io.pl
|
879
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload.cgi
|
880
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/perl/upload_fck.pl
|
881
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/perl/util.pl
|
882
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/py
|
883
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/py/config.py
|
884
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/py/connector.py
|
885
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/py/fckcommands.py
|
886
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/py/fckconnector.py
|
887
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/py/fckoutput.py
|
888
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/py/fckutil.py
|
889
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/py/htaccess.txt
|
890
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/py/upload.py
|
891
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/py/wsgi.py
|
892
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/py/zope.py
|
893
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/test.html
|
894
|
-
- public/javascripts/fckeditor/editor/filemanager/connectors/uploadtest.html
|
895
|
-
- public/javascripts/fckeditor/editor/images
|
896
|
-
- public/javascripts/fckeditor/editor/images/anchor.gif
|
897
|
-
- public/javascripts/fckeditor/editor/images/arrow_ltr.gif
|
898
|
-
- public/javascripts/fckeditor/editor/images/arrow_rtl.gif
|
899
|
-
- public/javascripts/fckeditor/editor/images/smiley
|
900
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn
|
901
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/angel_smile.gif
|
902
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/angry_smile.gif
|
903
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/broken_heart.gif
|
904
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/cake.gif
|
905
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/confused_smile.gif
|
906
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/cry_smile.gif
|
907
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/devil_smile.gif
|
908
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/embaressed_smile.gif
|
909
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/envelope.gif
|
910
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/heart.gif
|
911
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/kiss.gif
|
912
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/lightbulb.gif
|
913
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/omg_smile.gif
|
914
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/regular_smile.gif
|
915
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/sad_smile.gif
|
916
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/shades_smile.gif
|
917
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/teeth_smile.gif
|
918
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/thumbs_down.gif
|
919
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/thumbs_up.gif
|
920
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/tounge_smile.gif
|
921
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif
|
922
|
-
- public/javascripts/fckeditor/editor/images/smiley/msn/wink_smile.gif
|
923
|
-
- public/javascripts/fckeditor/editor/images/spacer.gif
|
924
|
-
- public/javascripts/fckeditor/editor/js
|
925
|
-
- public/javascripts/fckeditor/editor/js/fckadobeair.js
|
926
|
-
- public/javascripts/fckeditor/editor/js/fckeditorcode_gecko.js
|
927
|
-
- public/javascripts/fckeditor/editor/js/fckeditorcode_ie.js
|
928
|
-
- public/javascripts/fckeditor/editor/lang
|
929
|
-
- public/javascripts/fckeditor/editor/lang/_translationstatus.txt
|
930
|
-
- public/javascripts/fckeditor/editor/lang/af.js
|
931
|
-
- public/javascripts/fckeditor/editor/lang/ar.js
|
932
|
-
- public/javascripts/fckeditor/editor/lang/bg.js
|
933
|
-
- public/javascripts/fckeditor/editor/lang/bn.js
|
934
|
-
- public/javascripts/fckeditor/editor/lang/bs.js
|
935
|
-
- public/javascripts/fckeditor/editor/lang/ca.js
|
936
|
-
- public/javascripts/fckeditor/editor/lang/cs.js
|
937
|
-
- public/javascripts/fckeditor/editor/lang/da.js
|
938
|
-
- public/javascripts/fckeditor/editor/lang/de.js
|
939
|
-
- public/javascripts/fckeditor/editor/lang/el.js
|
940
|
-
- public/javascripts/fckeditor/editor/lang/en-au.js
|
941
|
-
- public/javascripts/fckeditor/editor/lang/en-ca.js
|
942
|
-
- public/javascripts/fckeditor/editor/lang/en-uk.js
|
943
|
-
- public/javascripts/fckeditor/editor/lang/en.js
|
944
|
-
- public/javascripts/fckeditor/editor/lang/eo.js
|
945
|
-
- public/javascripts/fckeditor/editor/lang/es.js
|
946
|
-
- public/javascripts/fckeditor/editor/lang/et.js
|
947
|
-
- public/javascripts/fckeditor/editor/lang/eu.js
|
948
|
-
- public/javascripts/fckeditor/editor/lang/fa.js
|
949
|
-
- public/javascripts/fckeditor/editor/lang/fi.js
|
950
|
-
- public/javascripts/fckeditor/editor/lang/fo.js
|
951
|
-
- public/javascripts/fckeditor/editor/lang/fr-ca.js
|
952
|
-
- public/javascripts/fckeditor/editor/lang/fr.js
|
953
|
-
- public/javascripts/fckeditor/editor/lang/gl.js
|
954
|
-
- public/javascripts/fckeditor/editor/lang/he.js
|
955
|
-
- public/javascripts/fckeditor/editor/lang/hi.js
|
956
|
-
- public/javascripts/fckeditor/editor/lang/hr.js
|
957
|
-
- public/javascripts/fckeditor/editor/lang/hu.js
|
958
|
-
- public/javascripts/fckeditor/editor/lang/it.js
|
959
|
-
- public/javascripts/fckeditor/editor/lang/ja.js
|
960
|
-
- public/javascripts/fckeditor/editor/lang/km.js
|
961
|
-
- public/javascripts/fckeditor/editor/lang/ko.js
|
962
|
-
- public/javascripts/fckeditor/editor/lang/lt.js
|
963
|
-
- public/javascripts/fckeditor/editor/lang/lv.js
|
964
|
-
- public/javascripts/fckeditor/editor/lang/mn.js
|
965
|
-
- public/javascripts/fckeditor/editor/lang/ms.js
|
966
|
-
- public/javascripts/fckeditor/editor/lang/nb.js
|
967
|
-
- public/javascripts/fckeditor/editor/lang/nl.js
|
968
|
-
- public/javascripts/fckeditor/editor/lang/no.js
|
969
|
-
- public/javascripts/fckeditor/editor/lang/pl.js
|
970
|
-
- public/javascripts/fckeditor/editor/lang/pt-br.js
|
971
|
-
- public/javascripts/fckeditor/editor/lang/pt.js
|
972
|
-
- public/javascripts/fckeditor/editor/lang/ro.js
|
973
|
-
- public/javascripts/fckeditor/editor/lang/ru.js
|
974
|
-
- public/javascripts/fckeditor/editor/lang/sk.js
|
975
|
-
- public/javascripts/fckeditor/editor/lang/sl.js
|
976
|
-
- public/javascripts/fckeditor/editor/lang/sr-latn.js
|
977
|
-
- public/javascripts/fckeditor/editor/lang/sr.js
|
978
|
-
- public/javascripts/fckeditor/editor/lang/sv.js
|
979
|
-
- public/javascripts/fckeditor/editor/lang/th.js
|
980
|
-
- public/javascripts/fckeditor/editor/lang/tr.js
|
981
|
-
- public/javascripts/fckeditor/editor/lang/uk.js
|
982
|
-
- public/javascripts/fckeditor/editor/lang/vi.js
|
983
|
-
- public/javascripts/fckeditor/editor/lang/zh-cn.js
|
984
|
-
- public/javascripts/fckeditor/editor/lang/zh.js
|
985
|
-
- public/javascripts/fckeditor/editor/plugins
|
986
|
-
- public/javascripts/fckeditor/editor/plugins/autogrow
|
987
|
-
- public/javascripts/fckeditor/editor/plugins/autogrow/fckplugin.js
|
988
|
-
- public/javascripts/fckeditor/editor/plugins/bbcode
|
989
|
-
- public/javascripts/fckeditor/editor/plugins/bbcode/_sample
|
990
|
-
- public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.config.js
|
991
|
-
- public/javascripts/fckeditor/editor/plugins/bbcode/_sample/sample.html
|
992
|
-
- public/javascripts/fckeditor/editor/plugins/bbcode/fckplugin.js
|
993
|
-
- public/javascripts/fckeditor/editor/plugins/dragresizetable
|
994
|
-
- public/javascripts/fckeditor/editor/plugins/dragresizetable/fckplugin.js
|
995
|
-
- public/javascripts/fckeditor/editor/plugins/placeholder
|
996
|
-
- public/javascripts/fckeditor/editor/plugins/placeholder/fck_placeholder.html
|
997
|
-
- public/javascripts/fckeditor/editor/plugins/placeholder/fckplugin.js
|
998
|
-
- public/javascripts/fckeditor/editor/plugins/placeholder/lang
|
999
|
-
- public/javascripts/fckeditor/editor/plugins/placeholder/lang/de.js
|
1000
|
-
- public/javascripts/fckeditor/editor/plugins/placeholder/lang/en.js
|
1001
|
-
- public/javascripts/fckeditor/editor/plugins/placeholder/lang/es.js
|
1002
|
-
- public/javascripts/fckeditor/editor/plugins/placeholder/lang/fr.js
|
1003
|
-
- public/javascripts/fckeditor/editor/plugins/placeholder/lang/it.js
|
1004
|
-
- public/javascripts/fckeditor/editor/plugins/placeholder/lang/pl.js
|
1005
|
-
- public/javascripts/fckeditor/editor/plugins/placeholder/placeholder.gif
|
1006
|
-
- public/javascripts/fckeditor/editor/plugins/simplecommands
|
1007
|
-
- public/javascripts/fckeditor/editor/plugins/simplecommands/fckplugin.js
|
1008
|
-
- public/javascripts/fckeditor/editor/plugins/tablecommands
|
1009
|
-
- public/javascripts/fckeditor/editor/plugins/tablecommands/fckplugin.js
|
1010
|
-
- public/javascripts/fckeditor/editor/skins
|
1011
|
-
- public/javascripts/fckeditor/editor/skins/_fckviewstrips.html
|
1012
|
-
- public/javascripts/fckeditor/editor/skins/silver
|
1013
|
-
- public/javascripts/fckeditor/editor/skins/silver/fck_dialog.css
|
1014
|
-
- public/javascripts/fckeditor/editor/skins/silver/fck_editor.css
|
1015
|
-
- public/javascripts/fckeditor/editor/skins/silver/fck_strip.gif
|
1016
|
-
- public/javascripts/fckeditor/editor/skins/silver/images
|
1017
|
-
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif
|
1018
|
-
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif
|
1019
|
-
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif
|
1020
|
-
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.collapse.gif
|
1021
|
-
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.end.gif
|
1022
|
-
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.expand.gif
|
1023
|
-
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.separator.gif
|
1024
|
-
- public/javascripts/fckeditor/editor/skins/silver/images/toolbar.start.gif
|
1025
|
-
- public/javascripts/fckeditor/fckconfig.js
|
1026
|
-
- public/javascripts/fckeditor/fckeditor.js
|
1027
|
-
- public/javascripts/fckeditor/fckeditor.py
|
1028
|
-
- public/javascripts/fckeditor/fckpackager.xml
|
1029
|
-
- public/javascripts/fckeditor/fckstyles.xml
|
1030
|
-
- public/javascripts/fckeditor/fcktemplates.xml
|
1031
|
-
- public/javascripts/fckeditor/license.txt
|
1032
849
|
- public/javascripts/growler.js
|
1033
|
-
- public/javascripts/lang
|
1034
850
|
- public/javascripts/lang/default.js
|
1035
851
|
- public/javascripts/lang/en_US.js
|
1036
852
|
- public/javascripts/lang/fr_FR.js
|
853
|
+
- public/javascripts/lang/nl_NL.js
|
854
|
+
- public/javascripts/lang/zh_TW.js
|
1037
855
|
- public/javascripts/lightbox.js
|
1038
856
|
- public/javascripts/prototype.js
|
1039
857
|
- public/javascripts/quicktags.js
|
@@ -1041,51 +859,15 @@ files:
|
|
1041
859
|
- public/javascripts/slider.js
|
1042
860
|
- public/javascripts/typo.js
|
1043
861
|
- public/robots.txt
|
1044
|
-
- public/sources
|
1045
|
-
- public/sources/javascripts
|
1046
|
-
- public/sources/javascripts/administration.js
|
1047
|
-
- public/sources/javascripts/application.js
|
1048
|
-
- public/sources/javascripts/codecollapse.js
|
1049
|
-
- public/sources/javascripts/controls.js
|
1050
|
-
- public/sources/javascripts/cookies.js
|
1051
|
-
- public/sources/javascripts/dragdrop.js
|
1052
|
-
- public/sources/javascripts/effects.js
|
1053
|
-
- public/sources/javascripts/fckcustom.js
|
1054
|
-
- public/sources/javascripts/lang
|
1055
|
-
- public/sources/javascripts/lang/default.js
|
1056
|
-
- public/sources/javascripts/lang/en_US.js
|
1057
|
-
- public/sources/javascripts/lang/fr_FR.js
|
1058
|
-
- public/sources/javascripts/lightbox.js
|
1059
|
-
- public/sources/javascripts/prototype.js
|
1060
|
-
- public/sources/javascripts/quicktags.js
|
1061
|
-
- public/sources/javascripts/scriptaculous.js
|
1062
|
-
- public/sources/javascripts/slider.js
|
1063
|
-
- public/sources/javascripts/typo.js
|
1064
|
-
- public/sources/stylesheets
|
1065
|
-
- public/sources/stylesheets/administration.css
|
1066
|
-
- public/sources/stylesheets/administration_rtl.css
|
1067
|
-
- public/sources/stylesheets/codecollapse.css
|
1068
|
-
- public/sources/stylesheets/coderay.css
|
1069
|
-
- public/sources/stylesheets/lightbox.css
|
1070
|
-
- public/sources/stylesheets/rss.css
|
1071
|
-
- public/sources/stylesheets/textmate
|
1072
|
-
- public/sources/stylesheets/textmate/dawn.css
|
1073
|
-
- public/sources/stylesheets/textmate/iplastic.css
|
1074
|
-
- public/sources/stylesheets/textmate/space_cadet.css
|
1075
|
-
- public/sources/stylesheets/textmate/textmate.css
|
1076
|
-
- public/sources/stylesheets/textmate/twilight.css
|
1077
|
-
- public/sources/stylesheets/user-styles.css
|
1078
|
-
- public/stylesheets
|
1079
862
|
- public/stylesheets/administration.css
|
1080
863
|
- public/stylesheets/administration_rtl.css
|
1081
|
-
- public/stylesheets/
|
864
|
+
- public/stylesheets/border-radius-ie8.htc
|
1082
865
|
- public/stylesheets/calendar_date_select/default.css
|
1083
866
|
- public/stylesheets/codecollapse.css
|
1084
867
|
- public/stylesheets/coderay.css
|
1085
868
|
- public/stylesheets/growler.css
|
1086
869
|
- public/stylesheets/lightbox.css
|
1087
870
|
- public/stylesheets/rss.css
|
1088
|
-
- public/stylesheets/textmate
|
1089
871
|
- public/stylesheets/textmate/dawn.css
|
1090
872
|
- public/stylesheets/textmate/iplastic.css
|
1091
873
|
- public/stylesheets/textmate/space_cadet.css
|
@@ -1094,7 +876,6 @@ files:
|
|
1094
876
|
- public/stylesheets/user-styles.css
|
1095
877
|
- Rakefile
|
1096
878
|
- README
|
1097
|
-
- script
|
1098
879
|
- script/about
|
1099
880
|
- script/autospec
|
1100
881
|
- script/benchmarker
|
@@ -1106,12 +887,10 @@ files:
|
|
1106
887
|
- script/lighttpd
|
1107
888
|
- script/logreport
|
1108
889
|
- script/migrate
|
1109
|
-
- script/performance
|
1110
890
|
- script/performance/benchmarker
|
1111
891
|
- script/performance/profiler
|
1112
892
|
- script/performance/request
|
1113
893
|
- script/plugin
|
1114
|
-
- script/process
|
1115
894
|
- script/process/inspector
|
1116
895
|
- script/process/reaper
|
1117
896
|
- script/process/spawner
|
@@ -1122,11 +901,7 @@ files:
|
|
1122
901
|
- script/spacecheck
|
1123
902
|
- script/spec
|
1124
903
|
- script/spec_server
|
1125
|
-
- spec
|
1126
|
-
- spec/controllers
|
1127
904
|
- spec/controllers/accounts_controller_spec.rb
|
1128
|
-
- spec/controllers/admin
|
1129
|
-
- spec/controllers/admin/article_preview_spec.rb
|
1130
905
|
- spec/controllers/admin/blacklist_controller_spec.rb
|
1131
906
|
- spec/controllers/admin/cache_controller_spec.rb
|
1132
907
|
- spec/controllers/admin/categories_controller_spec.rb
|
@@ -1140,12 +915,14 @@ files:
|
|
1140
915
|
- spec/controllers/admin/textfilters_controller_spec.rb
|
1141
916
|
- spec/controllers/admin/themes_controller_spec.rb
|
1142
917
|
- spec/controllers/admin/users_controller_spec.rb
|
918
|
+
- spec/controllers/application_controller_spec.rb
|
1143
919
|
- spec/controllers/articles_controller_spec.rb
|
920
|
+
- spec/controllers/authors_controller_spec.rb
|
1144
921
|
- spec/controllers/backend_controller_spec.rb
|
1145
922
|
- spec/controllers/categories_controller_spec.rb
|
1146
923
|
- spec/controllers/comments_controller_spec.rb
|
924
|
+
- spec/controllers/previews_controller_spec.rb
|
1147
925
|
- spec/controllers/redirect_controller_spec.rb
|
1148
|
-
- spec/controllers/routes
|
1149
926
|
- spec/controllers/routes/articles_routing_spec.rb
|
1150
927
|
- spec/controllers/routes/xml_routing_spec.rb
|
1151
928
|
- spec/controllers/tags_controller_spec.rb
|
@@ -1153,12 +930,9 @@ files:
|
|
1153
930
|
- spec/controllers/theme_controller_spec.rb
|
1154
931
|
- spec/controllers/xml_controller_spec.rb
|
1155
932
|
- spec/factories.rb
|
1156
|
-
- spec/helpers
|
1157
933
|
- spec/helpers/application_helper_spec.rb
|
1158
934
|
- spec/helpers/content_helper_spec.rb
|
1159
|
-
- spec/lib
|
1160
935
|
- spec/lib/text_filter_plugin_spec.rb
|
1161
|
-
- spec/models
|
1162
936
|
- spec/models/amazon_sidebar_spec.rb
|
1163
937
|
- spec/models/article_closing_spec.rb
|
1164
938
|
- spec/models/article_spec.rb
|
@@ -1169,7 +943,6 @@ files:
|
|
1169
943
|
- spec/models/category_spec.rb
|
1170
944
|
- spec/models/comment_spec.rb
|
1171
945
|
- spec/models/configuration_spec.rb
|
1172
|
-
- spec/models/content_state
|
1173
946
|
- spec/models/content_state/feedback_states_spec.rb
|
1174
947
|
- spec/models/notification_spec.rb
|
1175
948
|
- spec/models/page_cache_spec.rb
|
@@ -1186,26 +959,19 @@ files:
|
|
1186
959
|
- spec/models/theme_spec.rb
|
1187
960
|
- spec/models/trackback_spec.rb
|
1188
961
|
- spec/models/trigger_spec.rb
|
1189
|
-
- spec/models/typo_deprecated_spec.rb
|
1190
962
|
- spec/models/user_spec.rb
|
1191
|
-
- spec/
|
963
|
+
- spec/rcov.opts
|
1192
964
|
- spec/spec.opts
|
1193
965
|
- spec/spec_helper.rb
|
1194
|
-
- spec/views
|
1195
|
-
- spec/views/articles
|
1196
966
|
- spec/views/articles/index_spec.rb
|
1197
967
|
- spec/views/articles/read_spec.rb
|
1198
|
-
- spec/views/comments
|
1199
968
|
- spec/views/comments/html_sanitization_spec.rb
|
1200
|
-
- test
|
1201
|
-
- test/fixtures
|
1202
969
|
- test/fixtures/blacklist_patterns.yml
|
1203
970
|
- test/fixtures/blogs.yml
|
1204
971
|
- test/fixtures/categories.yml
|
1205
972
|
- test/fixtures/categorizations.yml
|
1206
973
|
- test/fixtures/contents.yml
|
1207
974
|
- test/fixtures/feedback.yml
|
1208
|
-
- test/fixtures/notification_mailer
|
1209
975
|
- test/fixtures/notification_mailer/article
|
1210
976
|
- test/fixtures/notification_mailer/comment
|
1211
977
|
- test/fixtures/notification_mailer/trackback
|
@@ -1219,23 +985,15 @@ files:
|
|
1219
985
|
- test/fixtures/text_filters.yml
|
1220
986
|
- test/fixtures/triggers.yml
|
1221
987
|
- test/fixtures/users.yml
|
1222
|
-
- test/mocks
|
1223
|
-
- test/mocks/test
|
1224
988
|
- test/mocks/test/dns_mock.rb
|
1225
989
|
- test/mocks/test/flickr_mock.rb
|
1226
990
|
- test/mocks/test/http_mock.rb
|
1227
991
|
- test/mocks/test/theme_mock.rb
|
1228
992
|
- test/mocks/test/xmlrpc_mock.rb
|
1229
|
-
- test/mocks/themes
|
1230
|
-
- test/mocks/themes/123-numbers-in-path
|
1231
993
|
- test/mocks/themes/123-numbers-in-path/about.markdown
|
1232
|
-
- test/mocks/themes/CamelCaseDirectory
|
1233
994
|
- test/mocks/themes/CamelCaseDirectory/about.markdown
|
1234
|
-
- test/mocks/themes/i-have-special-chars
|
1235
995
|
- test/mocks/themes/i-have-special-chars/about.markdown
|
1236
|
-
- test/mocks/themes/typographic
|
1237
996
|
- test/mocks/themes/typographic/about.markdown
|
1238
|
-
- test/mocks/themes/typographic/images
|
1239
997
|
- test/mocks/themes/typographic/images/accept.png
|
1240
998
|
- test/mocks/themes/typographic/images/accept50.png
|
1241
999
|
- test/mocks/themes/typographic/images/bg_body.jpg
|
@@ -1254,16 +1012,12 @@ files:
|
|
1254
1012
|
- test/mocks/themes/typographic/images/user50.png
|
1255
1013
|
- test/mocks/themes/typographic/images/world_link.png
|
1256
1014
|
- test/mocks/themes/typographic/images/world_link50.png
|
1257
|
-
- test/mocks/themes/typographic/layouts
|
1258
1015
|
- test/mocks/themes/typographic/layouts/default.html.erb
|
1259
1016
|
- test/mocks/themes/typographic/preview.png
|
1260
|
-
- test/mocks/themes/typographic/stylesheets
|
1261
1017
|
- test/mocks/themes/typographic/stylesheets/colors.css
|
1262
1018
|
- test/mocks/themes/typographic/stylesheets/layout.css
|
1263
1019
|
- test/mocks/themes/typographic/stylesheets/reset.css
|
1264
1020
|
- test/mocks/themes/typographic/stylesheets/style.css
|
1265
|
-
- test/mocks/themes/typographic/views
|
1266
|
-
- test/mocks/themes/typographic/views/articles
|
1267
1021
|
- test/mocks/themes/typographic/views/articles/_article.html.erb
|
1268
1022
|
- test/mocks/themes/typographic/views/articles/_comment.html.erb
|
1269
1023
|
- test/mocks/themes/typographic/views/articles/_comment_form.html.erb
|
@@ -1272,15 +1026,10 @@ files:
|
|
1272
1026
|
- test/mocks/themes/typographic/views/articles/comment_preview.html.erb
|
1273
1027
|
- test/mocks/themes/typographic/views/articles/index.html.erb
|
1274
1028
|
- test/mocks/themes/typographic/views/articles/read.html.erb
|
1275
|
-
- test/mocks/themes/typographic/views/shared
|
1276
1029
|
- test/mocks/themes/typographic/views/shared/_search.html.erb
|
1277
|
-
- test/mocks/themes/typographic/views/theme
|
1278
1030
|
- test/mocks/themes/typographic/views/theme/static_view_test.html.erb
|
1279
1031
|
- test/test_helper.rb
|
1280
|
-
- themes
|
1281
|
-
- themes/dirtylicious
|
1282
1032
|
- themes/dirtylicious/about.markdown
|
1283
|
-
- themes/dirtylicious/images
|
1284
1033
|
- themes/dirtylicious/images/body.jpg
|
1285
1034
|
- themes/dirtylicious/images/container.jpg
|
1286
1035
|
- themes/dirtylicious/images/gravatar.gif
|
@@ -1290,13 +1039,9 @@ files:
|
|
1290
1039
|
- themes/dirtylicious/images/nav.gif
|
1291
1040
|
- themes/dirtylicious/images/quote.gif
|
1292
1041
|
- themes/dirtylicious/images/spinner.gif
|
1293
|
-
- themes/dirtylicious/layouts
|
1294
1042
|
- themes/dirtylicious/layouts/default.html.erb
|
1295
1043
|
- themes/dirtylicious/preview.png
|
1296
|
-
- themes/dirtylicious/stylesheets
|
1297
1044
|
- themes/dirtylicious/stylesheets/application.css
|
1298
|
-
- themes/dirtylicious/views
|
1299
|
-
- themes/dirtylicious/views/articles
|
1300
1045
|
- themes/dirtylicious/views/articles/_article.html.erb
|
1301
1046
|
- themes/dirtylicious/views/articles/_comment.html.erb
|
1302
1047
|
- themes/dirtylicious/views/articles/_comment_form.html.erb
|
@@ -1305,23 +1050,17 @@ files:
|
|
1305
1050
|
- themes/dirtylicious/views/articles/comment_preview.html.erb
|
1306
1051
|
- themes/dirtylicious/views/articles/index.html.erb
|
1307
1052
|
- themes/dirtylicious/views/articles/read.html.erb
|
1308
|
-
- themes/scribbish
|
1309
1053
|
- themes/scribbish/about.markdown
|
1310
1054
|
- themes/scribbish/CONTRIBUTORS
|
1311
|
-
- themes/scribbish/images
|
1312
1055
|
- themes/scribbish/images/background.gif
|
1313
1056
|
- themes/scribbish/images/gravatar.gif
|
1314
1057
|
- themes/scribbish/images/header_shadow.gif
|
1315
1058
|
- themes/scribbish/images/spinner.gif
|
1316
|
-
- themes/scribbish/layouts
|
1317
1059
|
- themes/scribbish/layouts/default.html.erb
|
1318
1060
|
- themes/scribbish/preview.png
|
1319
|
-
- themes/scribbish/stylesheets
|
1320
1061
|
- themes/scribbish/stylesheets/application.css
|
1321
1062
|
- themes/scribbish/stylesheets/content.css
|
1322
1063
|
- themes/scribbish/stylesheets/layout.css
|
1323
|
-
- themes/scribbish/views
|
1324
|
-
- themes/scribbish/views/articles
|
1325
1064
|
- themes/scribbish/views/articles/_article.html.erb
|
1326
1065
|
- themes/scribbish/views/articles/_comment.html.erb
|
1327
1066
|
- themes/scribbish/views/articles/_comment_form.html.erb
|
@@ -1330,9 +1069,7 @@ files:
|
|
1330
1069
|
- themes/scribbish/views/articles/comment_preview.html.erb
|
1331
1070
|
- themes/scribbish/views/articles/index.html.erb
|
1332
1071
|
- themes/scribbish/views/articles/read.html.erb
|
1333
|
-
- themes/standard_issue
|
1334
1072
|
- themes/standard_issue/about.markdown
|
1335
|
-
- themes/standard_issue/images
|
1336
1073
|
- themes/standard_issue/images/img01.gif
|
1337
1074
|
- themes/standard_issue/images/img02.gif
|
1338
1075
|
- themes/standard_issue/images/img03.gif
|
@@ -1345,13 +1082,9 @@ files:
|
|
1345
1082
|
- themes/standard_issue/images/img10.gif
|
1346
1083
|
- themes/standard_issue/images/spacer.gif
|
1347
1084
|
- themes/standard_issue/images/spinner.gif
|
1348
|
-
- themes/standard_issue/layouts
|
1349
1085
|
- themes/standard_issue/layouts/default.html.erb
|
1350
1086
|
- themes/standard_issue/preview.png
|
1351
|
-
- themes/standard_issue/stylesheets
|
1352
1087
|
- themes/standard_issue/stylesheets/application.css
|
1353
|
-
- themes/standard_issue/views
|
1354
|
-
- themes/standard_issue/views/articles
|
1355
1088
|
- themes/standard_issue/views/articles/_article.html.erb
|
1356
1089
|
- themes/standard_issue/views/articles/_comment.html.erb
|
1357
1090
|
- themes/standard_issue/views/articles/_comment_form.html.erb
|
@@ -1360,11 +1093,47 @@ files:
|
|
1360
1093
|
- themes/standard_issue/views/articles/comment_preview.html.erb
|
1361
1094
|
- themes/standard_issue/views/articles/index.html.erb
|
1362
1095
|
- themes/standard_issue/views/articles/read.html.erb
|
1363
|
-
- themes/standard_issue/views/theme
|
1364
1096
|
- themes/standard_issue/views/theme/static_view_test.html.erb
|
1365
|
-
- themes/
|
1097
|
+
- themes/true-blue-3/about.markdown
|
1098
|
+
- themes/true-blue-3/helpers/theme_helper.rb
|
1099
|
+
- themes/true-blue-3/images/background.gif
|
1100
|
+
- themes/true-blue-3/images/bg_input.jpg
|
1101
|
+
- themes/true-blue-3/images/bullet.jpg
|
1102
|
+
- themes/true-blue-3/images/comment.gif
|
1103
|
+
- themes/true-blue-3/images/comment.jpg
|
1104
|
+
- themes/true-blue-3/images/comment_bottom.gif
|
1105
|
+
- themes/true-blue-3/images/comment_fdv.gif
|
1106
|
+
- themes/true-blue-3/images/find.png
|
1107
|
+
- themes/true-blue-3/images/fleche1.png
|
1108
|
+
- themes/true-blue-3/images/fleche2.png
|
1109
|
+
- themes/true-blue-3/images/frederic-de-villamil.jpg
|
1110
|
+
- themes/true-blue-3/images/rss.png
|
1111
|
+
- themes/true-blue-3/images/searchform.png
|
1112
|
+
- themes/true-blue-3/images/textarea_bg.jpg
|
1113
|
+
- themes/true-blue-3/images/twitter.jpg
|
1114
|
+
- themes/true-blue-3/images/twitter.png
|
1115
|
+
- themes/true-blue-3/layouts/default.html.erb
|
1116
|
+
- themes/true-blue-3/preview.png
|
1117
|
+
- themes/true-blue-3/psd/true-blue-3.psd
|
1118
|
+
- themes/true-blue-3/psd/true-blue-3_article.psd
|
1119
|
+
- themes/true-blue-3/README
|
1120
|
+
- themes/true-blue-3/stylesheets/style.css
|
1121
|
+
- themes/true-blue-3/views/articles/_article.html.erb
|
1122
|
+
- themes/true-blue-3/views/articles/_comment.html.erb
|
1123
|
+
- themes/true-blue-3/views/articles/_comment_form.html.erb
|
1124
|
+
- themes/true-blue-3/views/articles/_comment_list.html.erb
|
1125
|
+
- themes/true-blue-3/views/articles/_trackback.html.erb
|
1126
|
+
- themes/true-blue-3/views/articles/comment_preview.html.erb
|
1127
|
+
- themes/true-blue-3/views/articles/index.html.erb
|
1128
|
+
- themes/true-blue-3/views/articles/read.html.erb
|
1129
|
+
- themes/true-blue-3/views/articles/search.html.erb
|
1130
|
+
- themes/true-blue-3/views/articles/view_page.html.erb
|
1131
|
+
- themes/true-blue-3/views/categories/_article.html.erb
|
1132
|
+
- themes/true-blue-3/views/categories/index.html.erb
|
1133
|
+
- themes/true-blue-3/views/categories/show.html.erb
|
1134
|
+
- themes/true-blue-3/views/tags/_article.html.erb
|
1135
|
+
- themes/true-blue-3/views/tags/show.html.erb
|
1366
1136
|
- themes/typographic/about.markdown
|
1367
|
-
- themes/typographic/images
|
1368
1137
|
- themes/typographic/images/accept.gif
|
1369
1138
|
- themes/typographic/images/accept.png
|
1370
1139
|
- themes/typographic/images/accept50.gif
|
@@ -1399,17 +1168,13 @@ files:
|
|
1399
1168
|
- themes/typographic/images/world_link.png
|
1400
1169
|
- themes/typographic/images/world_link50.gif
|
1401
1170
|
- themes/typographic/images/world_link50.png
|
1402
|
-
- themes/typographic/layouts
|
1403
1171
|
- themes/typographic/layouts/default.html.erb
|
1404
1172
|
- themes/typographic/preview.png
|
1405
|
-
- themes/typographic/stylesheets
|
1406
1173
|
- themes/typographic/stylesheets/colors.css
|
1407
1174
|
- themes/typographic/stylesheets/ie6.css
|
1408
1175
|
- themes/typographic/stylesheets/layout.css
|
1409
1176
|
- themes/typographic/stylesheets/reset.css
|
1410
1177
|
- themes/typographic/stylesheets/style.css
|
1411
|
-
- themes/typographic/views
|
1412
|
-
- themes/typographic/views/articles
|
1413
1178
|
- themes/typographic/views/articles/_article.html.erb
|
1414
1179
|
- themes/typographic/views/articles/_comment.html.erb
|
1415
1180
|
- themes/typographic/views/articles/_comment_form.html.erb
|
@@ -1418,581 +1183,356 @@ files:
|
|
1418
1183
|
- themes/typographic/views/articles/comment_preview.html.erb
|
1419
1184
|
- themes/typographic/views/articles/index.html.erb
|
1420
1185
|
- themes/typographic/views/articles/read.html.erb
|
1421
|
-
- themes/typographic/views/theme
|
1422
1186
|
- themes/typographic/views/theme/static_view_test.html.erb
|
1423
|
-
- tmp
|
1424
|
-
- tmp/cache
|
1425
|
-
- tmp/pids
|
1426
|
-
- tmp/sessions
|
1427
|
-
- tmp/sockets
|
1428
1187
|
- UPGRADE
|
1429
|
-
- vendor
|
1430
|
-
- vendor/actionwebservice
|
1431
|
-
- vendor/actionwebservice/CHANGELOG
|
1432
|
-
- vendor/actionwebservice/examples
|
1433
|
-
- vendor/actionwebservice/examples/googlesearch
|
1434
|
-
- vendor/actionwebservice/examples/googlesearch/autoloading
|
1435
|
-
- vendor/actionwebservice/examples/googlesearch/autoloading/google_search_api.rb
|
1436
|
-
- vendor/actionwebservice/examples/googlesearch/autoloading/google_search_controller.rb
|
1437
|
-
- vendor/actionwebservice/examples/googlesearch/delegated
|
1438
|
-
- vendor/actionwebservice/examples/googlesearch/delegated/google_search_service.rb
|
1439
|
-
- vendor/actionwebservice/examples/googlesearch/delegated/search_controller.rb
|
1440
|
-
- vendor/actionwebservice/examples/googlesearch/direct
|
1441
|
-
- vendor/actionwebservice/examples/googlesearch/direct/google_search_api.rb
|
1442
|
-
- vendor/actionwebservice/examples/googlesearch/direct/search_controller.rb
|
1443
|
-
- vendor/actionwebservice/examples/googlesearch/README
|
1444
|
-
- vendor/actionwebservice/examples/metaWeblog
|
1445
|
-
- vendor/actionwebservice/examples/metaWeblog/apis
|
1446
|
-
- vendor/actionwebservice/examples/metaWeblog/apis/blogger_api.rb
|
1447
|
-
- vendor/actionwebservice/examples/metaWeblog/apis/blogger_service.rb
|
1448
|
-
- vendor/actionwebservice/examples/metaWeblog/apis/meta_weblog_api.rb
|
1449
|
-
- vendor/actionwebservice/examples/metaWeblog/apis/meta_weblog_service.rb
|
1450
|
-
- vendor/actionwebservice/examples/metaWeblog/controllers
|
1451
|
-
- vendor/actionwebservice/examples/metaWeblog/controllers/xmlrpc_controller.rb
|
1452
|
-
- vendor/actionwebservice/examples/metaWeblog/README
|
1453
|
-
- vendor/actionwebservice/generators
|
1454
|
-
- vendor/actionwebservice/generators/web_service
|
1455
|
-
- vendor/actionwebservice/generators/web_service/templates
|
1456
|
-
- vendor/actionwebservice/generators/web_service/templates/api_definition.rb
|
1457
|
-
- vendor/actionwebservice/generators/web_service/templates/controller.rb
|
1458
|
-
- vendor/actionwebservice/generators/web_service/templates/functional_test.rb
|
1459
|
-
- vendor/actionwebservice/generators/web_service/USAGE
|
1460
|
-
- vendor/actionwebservice/generators/web_service/web_service_generator.rb
|
1461
|
-
- vendor/actionwebservice/lib
|
1462
|
-
- vendor/actionwebservice/lib/action_web_service
|
1463
|
-
- vendor/actionwebservice/lib/action_web_service/api.rb
|
1464
|
-
- vendor/actionwebservice/lib/action_web_service/base.rb
|
1465
|
-
- vendor/actionwebservice/lib/action_web_service/casting.rb
|
1466
|
-
- vendor/actionwebservice/lib/action_web_service/client
|
1467
|
-
- vendor/actionwebservice/lib/action_web_service/client/base.rb
|
1468
|
-
- vendor/actionwebservice/lib/action_web_service/client/soap_client.rb
|
1469
|
-
- vendor/actionwebservice/lib/action_web_service/client/xmlrpc_client.rb
|
1470
|
-
- vendor/actionwebservice/lib/action_web_service/client.rb
|
1471
|
-
- vendor/actionwebservice/lib/action_web_service/container
|
1472
|
-
- vendor/actionwebservice/lib/action_web_service/container/action_controller_container.rb
|
1473
|
-
- vendor/actionwebservice/lib/action_web_service/container/delegated_container.rb
|
1474
|
-
- vendor/actionwebservice/lib/action_web_service/container/direct_container.rb
|
1475
|
-
- vendor/actionwebservice/lib/action_web_service/container.rb
|
1476
|
-
- vendor/actionwebservice/lib/action_web_service/dispatcher
|
1477
|
-
- vendor/actionwebservice/lib/action_web_service/dispatcher/abstract.rb
|
1478
|
-
- vendor/actionwebservice/lib/action_web_service/dispatcher/action_controller_dispatcher.rb
|
1479
|
-
- vendor/actionwebservice/lib/action_web_service/dispatcher.rb
|
1480
|
-
- vendor/actionwebservice/lib/action_web_service/invocation.rb
|
1481
|
-
- vendor/actionwebservice/lib/action_web_service/protocol
|
1482
|
-
- vendor/actionwebservice/lib/action_web_service/protocol/abstract.rb
|
1483
|
-
- vendor/actionwebservice/lib/action_web_service/protocol/discovery.rb
|
1484
|
-
- vendor/actionwebservice/lib/action_web_service/protocol/soap_protocol
|
1485
|
-
- vendor/actionwebservice/lib/action_web_service/protocol/soap_protocol/marshaler.rb
|
1486
|
-
- vendor/actionwebservice/lib/action_web_service/protocol/soap_protocol.rb
|
1487
|
-
- vendor/actionwebservice/lib/action_web_service/protocol/xmlrpc_protocol.rb
|
1488
|
-
- vendor/actionwebservice/lib/action_web_service/protocol.rb
|
1489
|
-
- vendor/actionwebservice/lib/action_web_service/scaffolding.rb
|
1490
|
-
- vendor/actionwebservice/lib/action_web_service/struct.rb
|
1491
|
-
- vendor/actionwebservice/lib/action_web_service/support
|
1492
|
-
- vendor/actionwebservice/lib/action_web_service/support/class_inheritable_options.rb
|
1493
|
-
- vendor/actionwebservice/lib/action_web_service/support/signature_types.rb
|
1494
|
-
- vendor/actionwebservice/lib/action_web_service/templates
|
1495
|
-
- vendor/actionwebservice/lib/action_web_service/templates/scaffolds
|
1496
|
-
- vendor/actionwebservice/lib/action_web_service/templates/scaffolds/layout.html.erb
|
1497
|
-
- vendor/actionwebservice/lib/action_web_service/templates/scaffolds/methods.html.erb
|
1498
|
-
- vendor/actionwebservice/lib/action_web_service/templates/scaffolds/parameters.html.erb
|
1499
|
-
- vendor/actionwebservice/lib/action_web_service/templates/scaffolds/result.html.erb
|
1500
|
-
- vendor/actionwebservice/lib/action_web_service/test_invoke.rb
|
1501
|
-
- vendor/actionwebservice/lib/action_web_service/version.rb
|
1502
|
-
- vendor/actionwebservice/lib/action_web_service.rb
|
1503
|
-
- vendor/actionwebservice/lib/actionwebservice.rb
|
1504
|
-
- vendor/actionwebservice/MIT-LICENSE
|
1505
|
-
- vendor/actionwebservice/Rakefile
|
1506
|
-
- vendor/actionwebservice/README
|
1507
|
-
- vendor/actionwebservice/setup.rb
|
1508
|
-
- vendor/actionwebservice/test
|
1509
|
-
- vendor/actionwebservice/test/abstract_client.rb
|
1510
|
-
- vendor/actionwebservice/test/abstract_dispatcher.rb
|
1511
|
-
- vendor/actionwebservice/test/abstract_unit.rb
|
1512
|
-
- vendor/actionwebservice/test/api_test.rb
|
1513
|
-
- vendor/actionwebservice/test/apis
|
1514
|
-
- vendor/actionwebservice/test/apis/auto_load_api.rb
|
1515
|
-
- vendor/actionwebservice/test/apis/broken_auto_load_api.rb
|
1516
|
-
- vendor/actionwebservice/test/base_test.rb
|
1517
|
-
- vendor/actionwebservice/test/casting_test.rb
|
1518
|
-
- vendor/actionwebservice/test/client_soap_test.rb
|
1519
|
-
- vendor/actionwebservice/test/client_xmlrpc_test.rb
|
1520
|
-
- vendor/actionwebservice/test/container_test.rb
|
1521
|
-
- vendor/actionwebservice/test/dispatcher_action_controller_soap_test.rb
|
1522
|
-
- vendor/actionwebservice/test/dispatcher_action_controller_xmlrpc_test.rb
|
1523
|
-
- vendor/actionwebservice/test/fixtures
|
1524
|
-
- vendor/actionwebservice/test/fixtures/db_definitions
|
1525
|
-
- vendor/actionwebservice/test/fixtures/db_definitions/mysql.sql
|
1526
|
-
- vendor/actionwebservice/test/fixtures/users.yml
|
1527
|
-
- vendor/actionwebservice/test/gencov
|
1528
|
-
- vendor/actionwebservice/test/invocation_test.rb
|
1529
|
-
- vendor/actionwebservice/test/run
|
1530
|
-
- vendor/actionwebservice/test/scaffolded_controller_test.rb
|
1531
|
-
- vendor/actionwebservice/test/struct_test.rb
|
1532
|
-
- vendor/actionwebservice/test/test_invoke_test.rb
|
1533
|
-
- vendor/actionwebservice/TODO
|
1534
|
-
- vendor/akismet
|
1535
1188
|
- vendor/akismet/akismet.rb
|
1536
|
-
- vendor/bluecloth
|
1537
|
-
- vendor/bluecloth/bin
|
1538
|
-
- vendor/bluecloth/bin/bluecloth
|
1539
|
-
- vendor/bluecloth/CHANGES
|
1540
|
-
- vendor/bluecloth/install.rb
|
1541
|
-
- vendor/bluecloth/lib
|
1542
|
-
- vendor/bluecloth/lib/bluecloth.rb
|
1543
|
-
- vendor/bluecloth/LICENSE
|
1544
|
-
- vendor/bluecloth/README
|
1545
|
-
- vendor/bluecloth/test.rb
|
1546
|
-
- vendor/bluecloth/tests
|
1547
|
-
- vendor/bluecloth/tests/00_Class.tests.rb
|
1548
|
-
- vendor/bluecloth/tests/05_Markdown.tests.rb
|
1549
|
-
- vendor/bluecloth/tests/10_Bug.tests.rb
|
1550
|
-
- vendor/bluecloth/tests/15_Contrib.tests.rb
|
1551
|
-
- vendor/bluecloth/tests/bctestcase.rb
|
1552
|
-
- vendor/bluecloth/tests/data
|
1553
|
-
- vendor/bluecloth/tests/data/antsugar.txt
|
1554
|
-
- vendor/bluecloth/tests/data/ml-announce.txt
|
1555
|
-
- vendor/bluecloth/tests/data/re-overflow.txt
|
1556
|
-
- vendor/bluecloth/tests/data/re-overflow2.txt
|
1557
|
-
- vendor/bluecloth/utils.rb
|
1558
|
-
- vendor/cached_model
|
1559
|
-
- vendor/cached_model/History.txt
|
1560
|
-
- vendor/cached_model/lib
|
1561
|
-
- vendor/cached_model/lib/cached_model.rb
|
1562
|
-
- vendor/cached_model/LICENSE.txt
|
1563
|
-
- vendor/cached_model/Manifest.txt
|
1564
|
-
- vendor/cached_model/Rakefile
|
1565
|
-
- vendor/cached_model/README.txt
|
1566
|
-
- vendor/cached_model/test
|
1567
|
-
- vendor/cached_model/test/test_cached_model.rb
|
1568
|
-
- vendor/flickr
|
1569
1189
|
- vendor/flickr/flickr.rb
|
1570
1190
|
- vendor/flickr/index.html
|
1571
1191
|
- vendor/flickr/Rakefile
|
1572
1192
|
- vendor/flickr/test_flickr.rb
|
1573
|
-
- vendor/gems
|
1574
|
-
- vendor/gems/calendar_date_select-1.15
|
1575
|
-
- vendor/gems/calendar_date_select-1.15/.specification
|
1576
|
-
- vendor/gems/calendar_date_select-1.15/History.txt
|
1577
|
-
- vendor/gems/calendar_date_select-1.15/init.rb
|
1578
|
-
- vendor/gems/calendar_date_select-1.15/js_test
|
1579
|
-
- vendor/gems/calendar_date_select-1.15/js_test/functional
|
1580
|
-
- vendor/gems/calendar_date_select-1.15/js_test/functional/cds_test.html
|
1581
|
-
- vendor/gems/calendar_date_select-1.15/js_test/prototype.js
|
1582
|
-
- vendor/gems/calendar_date_select-1.15/js_test/test.css
|
1583
|
-
- vendor/gems/calendar_date_select-1.15/js_test/unit
|
1584
|
-
- vendor/gems/calendar_date_select-1.15/js_test/unit/cds_helper_methods.html
|
1585
|
-
- vendor/gems/calendar_date_select-1.15/js_test/unittest.js
|
1586
|
-
- vendor/gems/calendar_date_select-1.15/lib
|
1587
|
-
- vendor/gems/calendar_date_select-1.15/lib/calendar_date_select
|
1588
|
-
- vendor/gems/calendar_date_select-1.15/lib/calendar_date_select/calendar_date_select.rb
|
1589
|
-
- vendor/gems/calendar_date_select-1.15/lib/calendar_date_select/form_helpers.rb
|
1590
|
-
- vendor/gems/calendar_date_select-1.15/lib/calendar_date_select/includes_helper.rb
|
1591
|
-
- vendor/gems/calendar_date_select-1.15/lib/calendar_date_select.rb
|
1592
|
-
- vendor/gems/calendar_date_select-1.15/Manifest.txt
|
1593
|
-
- vendor/gems/calendar_date_select-1.15/MIT-LICENSE
|
1594
|
-
- vendor/gems/calendar_date_select-1.15/public
|
1595
|
-
- vendor/gems/calendar_date_select-1.15/public/blank_iframe.html
|
1596
|
-
- vendor/gems/calendar_date_select-1.15/public/images
|
1597
|
-
- vendor/gems/calendar_date_select-1.15/public/images/calendar_date_select
|
1598
|
-
- vendor/gems/calendar_date_select-1.15/public/images/calendar_date_select/calendar.gif
|
1599
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts
|
1600
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select
|
1601
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/calendar_date_select.js
|
1602
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_american.js
|
1603
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_db.js
|
1604
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_euro_24hr.js
|
1605
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_euro_24hr_ymd.js
|
1606
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_finnish.js
|
1607
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_hyphen_ampm.js
|
1608
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_iso_date.js
|
1609
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/format_italian.js
|
1610
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale
|
1611
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/de.js
|
1612
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/fi.js
|
1613
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/fr.js
|
1614
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/pl.js
|
1615
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/pt.js
|
1616
|
-
- vendor/gems/calendar_date_select-1.15/public/javascripts/calendar_date_select/locale/ru.js
|
1617
|
-
- vendor/gems/calendar_date_select-1.15/public/stylesheets
|
1618
|
-
- vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select
|
1619
|
-
- vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/blue.css
|
1620
|
-
- vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/default.css
|
1621
|
-
- vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/plain.css
|
1622
|
-
- vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/red.css
|
1623
|
-
- vendor/gems/calendar_date_select-1.15/public/stylesheets/calendar_date_select/silver.css
|
1624
|
-
- vendor/gems/calendar_date_select-1.15/Rakefile
|
1625
|
-
- vendor/gems/calendar_date_select-1.15/Readme.txt
|
1626
|
-
- vendor/gems/calendar_date_select-1.15/spec
|
1627
|
-
- vendor/gems/calendar_date_select-1.15/spec/calendar_date_select
|
1628
|
-
- vendor/gems/calendar_date_select-1.15/spec/calendar_date_select/calendar_date_select_spec.rb
|
1629
|
-
- vendor/gems/calendar_date_select-1.15/spec/calendar_date_select/form_helpers_spec.rb
|
1630
|
-
- vendor/gems/calendar_date_select-1.15/spec/spec_helper.rb
|
1631
|
-
- vendor/gems/coderay-0.8.260
|
1632
|
-
- vendor/gems/coderay-0.8.260/.specification
|
1633
|
-
- vendor/gems/coderay-0.8.260/bin
|
1634
|
-
- vendor/gems/coderay-0.8.260/bin/coderay
|
1635
|
-
- vendor/gems/coderay-0.8.260/bin/coderay_stylesheet
|
1636
|
-
- vendor/gems/coderay-0.8.260/FOLDERS
|
1637
|
-
- vendor/gems/coderay-0.8.260/lib
|
1638
|
-
- vendor/gems/coderay-0.8.260/lib/coderay
|
1639
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/duo.rb
|
1640
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoder.rb
|
1641
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders
|
1642
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/_map.rb
|
1643
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/count.rb
|
1644
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/debug.rb
|
1645
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/div.rb
|
1646
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/html
|
1647
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/html/css.rb
|
1648
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/html/numerization.rb
|
1649
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/html/output.rb
|
1650
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/html.rb
|
1651
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/null.rb
|
1652
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/page.rb
|
1653
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/span.rb
|
1654
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/statistic.rb
|
1655
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/text.rb
|
1656
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/tokens.rb
|
1657
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/xml.rb
|
1658
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/encoders/yaml.rb
|
1659
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/for_redcloth.rb
|
1660
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/helpers
|
1661
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/helpers/file_type.rb
|
1662
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/helpers/gzip_simple.rb
|
1663
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/helpers/plugin.rb
|
1664
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/helpers/word_list.rb
|
1665
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanner.rb
|
1666
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners
|
1667
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/_map.rb
|
1668
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/c.rb
|
1669
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/css.rb
|
1670
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/debug.rb
|
1671
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/delphi.rb
|
1672
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/diff.rb
|
1673
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/html.rb
|
1674
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/java
|
1675
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/java/builtin_types.rb
|
1676
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/java.rb
|
1677
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/java_script.rb
|
1678
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/json.rb
|
1679
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/nitro_xhtml.rb
|
1680
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/plaintext.rb
|
1681
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/rhtml.rb
|
1682
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/ruby
|
1683
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/ruby/patterns.rb
|
1684
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/ruby.rb
|
1685
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/scheme.rb
|
1686
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/sql.Keith.rb
|
1687
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/sql.rb
|
1688
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/scanners/xml.rb
|
1689
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/style.rb
|
1690
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/styles
|
1691
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/styles/_map.rb
|
1692
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/styles/cycnus.rb
|
1693
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/styles/murphy.rb
|
1694
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/token_classes.rb
|
1695
|
-
- vendor/gems/coderay-0.8.260/lib/coderay/tokens.rb
|
1696
|
-
- vendor/gems/coderay-0.8.260/lib/coderay.rb
|
1697
|
-
- vendor/gems/coderay-0.8.260/lib/term
|
1698
|
-
- vendor/gems/coderay-0.8.260/lib/term/ansicolor.rb
|
1699
|
-
- vendor/gems/coderay-0.8.260/LICENSE
|
1700
|
-
- vendor/gems/coderay-0.8.260/README
|
1701
|
-
- vendor/gems/htmlentities-4.0.0
|
1702
|
-
- vendor/gems/htmlentities-4.0.0/.specification
|
1703
|
-
- vendor/gems/htmlentities-4.0.0/COPYING.txt
|
1704
|
-
- vendor/gems/htmlentities-4.0.0/History.txt
|
1705
|
-
- vendor/gems/htmlentities-4.0.0/lib
|
1706
|
-
- vendor/gems/htmlentities-4.0.0/lib/htmlentities
|
1707
|
-
- vendor/gems/htmlentities-4.0.0/lib/htmlentities/html4.rb
|
1708
|
-
- vendor/gems/htmlentities-4.0.0/lib/htmlentities/legacy.rb
|
1709
|
-
- vendor/gems/htmlentities-4.0.0/lib/htmlentities/string.rb
|
1710
|
-
- vendor/gems/htmlentities-4.0.0/lib/htmlentities/xhtml1.rb
|
1711
|
-
- vendor/gems/htmlentities-4.0.0/lib/htmlentities.rb
|
1712
|
-
- vendor/gems/htmlentities-4.0.0/README.txt
|
1713
|
-
- vendor/gems/htmlentities-4.0.0/test
|
1714
|
-
- vendor/gems/htmlentities-4.0.0/test/entities_test.rb
|
1715
|
-
- vendor/gems/htmlentities-4.0.0/test/html4_test.rb
|
1716
|
-
- vendor/gems/htmlentities-4.0.0/test/legacy_test.rb
|
1717
|
-
- vendor/gems/htmlentities-4.0.0/test/roundtrip_test.rb
|
1718
|
-
- vendor/gems/htmlentities-4.0.0/test/string_test.rb
|
1719
|
-
- vendor/gems/htmlentities-4.0.0/test/test_all.rb
|
1720
|
-
- vendor/gems/htmlentities-4.0.0/test/xhtml1_test.rb
|
1721
|
-
- vendor/gems/json-1.1.3
|
1722
|
-
- vendor/gems/json-1.1.3/.require_paths
|
1723
|
-
- vendor/gems/json-1.1.3/.specification
|
1724
|
-
- vendor/gems/json-1.1.3/benchmarks
|
1725
|
-
- vendor/gems/json-1.1.3/benchmarks/benchmark.txt
|
1726
|
-
- vendor/gems/json-1.1.3/benchmarks/benchmark_generator.rb
|
1727
|
-
- vendor/gems/json-1.1.3/benchmarks/benchmark_parser.rb
|
1728
|
-
- vendor/gems/json-1.1.3/benchmarks/benchmark_rails.rb
|
1729
|
-
- vendor/gems/json-1.1.3/bin
|
1730
|
-
- vendor/gems/json-1.1.3/bin/edit_json.rb
|
1731
|
-
- vendor/gems/json-1.1.3/bin/prettify_json.rb
|
1732
|
-
- vendor/gems/json-1.1.3/CHANGES
|
1733
|
-
- vendor/gems/json-1.1.3/data
|
1734
|
-
- vendor/gems/json-1.1.3/data/example.json
|
1735
|
-
- vendor/gems/json-1.1.3/data/index.html
|
1736
|
-
- vendor/gems/json-1.1.3/data/prototype.js
|
1737
|
-
- vendor/gems/json-1.1.3/ext
|
1738
|
-
- vendor/gems/json-1.1.3/ext/json
|
1739
|
-
- vendor/gems/json-1.1.3/ext/json/ext
|
1740
|
-
- vendor/gems/json-1.1.3/ext/json/ext/generator
|
1741
|
-
- vendor/gems/json-1.1.3/ext/json/ext/generator/extconf.rb
|
1742
|
-
- vendor/gems/json-1.1.3/ext/json/ext/generator/generator.bundle
|
1743
|
-
- vendor/gems/json-1.1.3/ext/json/ext/generator/generator.c
|
1744
|
-
- vendor/gems/json-1.1.3/ext/json/ext/generator/generator.o
|
1745
|
-
- vendor/gems/json-1.1.3/ext/json/ext/generator/Makefile
|
1746
|
-
- vendor/gems/json-1.1.3/ext/json/ext/generator/unicode.c
|
1747
|
-
- vendor/gems/json-1.1.3/ext/json/ext/generator/unicode.h
|
1748
|
-
- vendor/gems/json-1.1.3/ext/json/ext/generator/unicode.o
|
1749
|
-
- vendor/gems/json-1.1.3/ext/json/ext/generator.bundle
|
1750
|
-
- vendor/gems/json-1.1.3/ext/json/ext/parser
|
1751
|
-
- vendor/gems/json-1.1.3/ext/json/ext/parser/extconf.rb
|
1752
|
-
- vendor/gems/json-1.1.3/ext/json/ext/parser/Makefile
|
1753
|
-
- vendor/gems/json-1.1.3/ext/json/ext/parser/parser.bundle
|
1754
|
-
- vendor/gems/json-1.1.3/ext/json/ext/parser/parser.c
|
1755
|
-
- vendor/gems/json-1.1.3/ext/json/ext/parser/parser.o
|
1756
|
-
- vendor/gems/json-1.1.3/ext/json/ext/parser/parser.rl
|
1757
|
-
- vendor/gems/json-1.1.3/ext/json/ext/parser/unicode.c
|
1758
|
-
- vendor/gems/json-1.1.3/ext/json/ext/parser/unicode.h
|
1759
|
-
- vendor/gems/json-1.1.3/ext/json/ext/parser/unicode.o
|
1760
|
-
- vendor/gems/json-1.1.3/ext/json/ext/parser.bundle
|
1761
|
-
- vendor/gems/json-1.1.3/GPL
|
1762
|
-
- vendor/gems/json-1.1.3/install.rb
|
1763
|
-
- vendor/gems/json-1.1.3/lib
|
1764
|
-
- vendor/gems/json-1.1.3/lib/json
|
1765
|
-
- vendor/gems/json-1.1.3/lib/json/add
|
1766
|
-
- vendor/gems/json-1.1.3/lib/json/add/core.rb
|
1767
|
-
- vendor/gems/json-1.1.3/lib/json/add/rails.rb
|
1768
|
-
- vendor/gems/json-1.1.3/lib/json/Array.xpm
|
1769
|
-
- vendor/gems/json-1.1.3/lib/json/common.rb
|
1770
|
-
- vendor/gems/json-1.1.3/lib/json/editor.rb
|
1771
|
-
- vendor/gems/json-1.1.3/lib/json/ext.rb
|
1772
|
-
- vendor/gems/json-1.1.3/lib/json/FalseClass.xpm
|
1773
|
-
- vendor/gems/json-1.1.3/lib/json/Hash.xpm
|
1774
|
-
- vendor/gems/json-1.1.3/lib/json/json.xpm
|
1775
|
-
- vendor/gems/json-1.1.3/lib/json/Key.xpm
|
1776
|
-
- vendor/gems/json-1.1.3/lib/json/NilClass.xpm
|
1777
|
-
- vendor/gems/json-1.1.3/lib/json/Numeric.xpm
|
1778
|
-
- vendor/gems/json-1.1.3/lib/json/pure
|
1779
|
-
- vendor/gems/json-1.1.3/lib/json/pure/generator.rb
|
1780
|
-
- vendor/gems/json-1.1.3/lib/json/pure/parser.rb
|
1781
|
-
- vendor/gems/json-1.1.3/lib/json/pure.rb
|
1782
|
-
- vendor/gems/json-1.1.3/lib/json/String.xpm
|
1783
|
-
- vendor/gems/json-1.1.3/lib/json/TrueClass.xpm
|
1784
|
-
- vendor/gems/json-1.1.3/lib/json/version.rb
|
1785
|
-
- vendor/gems/json-1.1.3/lib/json.rb
|
1786
|
-
- vendor/gems/json-1.1.3/Rakefile
|
1787
|
-
- vendor/gems/json-1.1.3/README
|
1788
|
-
- vendor/gems/json-1.1.3/RUBY
|
1789
|
-
- vendor/gems/json-1.1.3/tests
|
1790
|
-
- vendor/gems/json-1.1.3/tests/fixtures
|
1791
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail1.json
|
1792
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail10.json
|
1793
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail11.json
|
1794
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail12.json
|
1795
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail13.json
|
1796
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail14.json
|
1797
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail18.json
|
1798
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail19.json
|
1799
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail2.json
|
1800
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail20.json
|
1801
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail21.json
|
1802
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail22.json
|
1803
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail23.json
|
1804
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail24.json
|
1805
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail25.json
|
1806
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail27.json
|
1807
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail28.json
|
1808
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail3.json
|
1809
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail4.json
|
1810
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail5.json
|
1811
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail6.json
|
1812
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail7.json
|
1813
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail8.json
|
1814
|
-
- vendor/gems/json-1.1.3/tests/fixtures/fail9.json
|
1815
|
-
- vendor/gems/json-1.1.3/tests/fixtures/pass1.json
|
1816
|
-
- vendor/gems/json-1.1.3/tests/fixtures/pass15.json
|
1817
|
-
- vendor/gems/json-1.1.3/tests/fixtures/pass16.json
|
1818
|
-
- vendor/gems/json-1.1.3/tests/fixtures/pass17.json
|
1819
|
-
- vendor/gems/json-1.1.3/tests/fixtures/pass2.json
|
1820
|
-
- vendor/gems/json-1.1.3/tests/fixtures/pass26.json
|
1821
|
-
- vendor/gems/json-1.1.3/tests/fixtures/pass3.json
|
1822
|
-
- vendor/gems/json-1.1.3/tests/runner.rb
|
1823
|
-
- vendor/gems/json-1.1.3/tests/test_json.rb
|
1824
|
-
- vendor/gems/json-1.1.3/tests/test_json_addition.rb
|
1825
|
-
- vendor/gems/json-1.1.3/tests/test_json_fixtures.rb
|
1826
|
-
- vendor/gems/json-1.1.3/tests/test_json_generate.rb
|
1827
|
-
- vendor/gems/json-1.1.3/tests/test_json_rails.rb
|
1828
|
-
- vendor/gems/json-1.1.3/tests/test_json_unicode.rb
|
1829
|
-
- vendor/gems/json-1.1.3/TODO
|
1830
|
-
- vendor/gems/json-1.1.3/tools
|
1831
|
-
- vendor/gems/json-1.1.3/tools/fuzz.rb
|
1832
|
-
- vendor/gems/json-1.1.3/tools/server.rb
|
1833
|
-
- vendor/gems/json-1.1.3/VERSION
|
1834
|
-
- vendor/memcache-client
|
1835
|
-
- vendor/memcache-client/History.txt
|
1836
|
-
- vendor/memcache-client/lib
|
1837
|
-
- vendor/memcache-client/lib/memcache.rb
|
1838
|
-
- vendor/memcache-client/lib/memcache_util.rb
|
1839
|
-
- vendor/memcache-client/LICENSE.txt
|
1840
|
-
- vendor/memcache-client/Manifest.txt
|
1841
|
-
- vendor/memcache-client/Rakefile
|
1842
|
-
- vendor/memcache-client/README.txt
|
1843
|
-
- vendor/memcache-client/test
|
1844
|
-
- vendor/memcache-client/test/test_mem_cache.rb
|
1845
|
-
- vendor/plugins
|
1846
|
-
- vendor/plugins/acts_as_list
|
1847
1193
|
- vendor/plugins/acts_as_list/init.rb
|
1848
|
-
- vendor/plugins/acts_as_list/lib
|
1849
|
-
- vendor/plugins/acts_as_list/lib/active_record
|
1850
|
-
- vendor/plugins/acts_as_list/lib/active_record/acts
|
1851
1194
|
- vendor/plugins/acts_as_list/lib/active_record/acts/list.rb
|
1852
1195
|
- vendor/plugins/acts_as_list/README
|
1853
|
-
- vendor/plugins/acts_as_list/test
|
1854
1196
|
- vendor/plugins/acts_as_list/test/list_test.rb
|
1855
|
-
- vendor/plugins/acts_as_tree
|
1856
1197
|
- vendor/plugins/acts_as_tree/init.rb
|
1857
|
-
- vendor/plugins/acts_as_tree/lib
|
1858
|
-
- vendor/plugins/acts_as_tree/lib/active_record
|
1859
|
-
- vendor/plugins/acts_as_tree/lib/active_record/acts
|
1860
1198
|
- vendor/plugins/acts_as_tree/lib/active_record/acts/tree.rb
|
1861
1199
|
- vendor/plugins/acts_as_tree/Rakefile
|
1862
1200
|
- vendor/plugins/acts_as_tree/README
|
1863
|
-
- vendor/plugins/acts_as_tree/test
|
1864
1201
|
- vendor/plugins/acts_as_tree/test/abstract_unit.rb
|
1865
1202
|
- vendor/plugins/acts_as_tree/test/acts_as_tree_test.rb
|
1866
1203
|
- vendor/plugins/acts_as_tree/test/database.yml
|
1867
|
-
- vendor/plugins/acts_as_tree/test/fixtures
|
1868
1204
|
- vendor/plugins/acts_as_tree/test/fixtures/mixin.rb
|
1869
1205
|
- vendor/plugins/acts_as_tree/test/fixtures/mixins.yml
|
1870
1206
|
- vendor/plugins/acts_as_tree/test/schema.rb
|
1871
|
-
- vendor/plugins/amazon_sidebar
|
1872
1207
|
- vendor/plugins/amazon_sidebar/init.rb
|
1873
|
-
- vendor/plugins/amazon_sidebar/lib
|
1874
1208
|
- vendor/plugins/amazon_sidebar/lib/amazon_sidebar.rb
|
1875
|
-
- vendor/plugins/amazon_sidebar/views
|
1876
1209
|
- vendor/plugins/amazon_sidebar/views/content.rhtml
|
1877
|
-
- vendor/plugins/archives_sidebar
|
1878
1210
|
- vendor/plugins/archives_sidebar/init.rb
|
1879
|
-
- vendor/plugins/archives_sidebar/lib
|
1880
1211
|
- vendor/plugins/archives_sidebar/lib/archives_sidebar.rb
|
1881
1212
|
- vendor/plugins/archives_sidebar/Rakefile
|
1882
|
-
- vendor/plugins/archives_sidebar/test
|
1883
1213
|
- vendor/plugins/archives_sidebar/test/archives_sidebar_test.rb
|
1884
|
-
- vendor/plugins/archives_sidebar/views
|
1885
1214
|
- vendor/plugins/archives_sidebar/views/content.rhtml
|
1886
|
-
- vendor/plugins/
|
1215
|
+
- vendor/plugins/authors_sidebar/init.rb
|
1216
|
+
- vendor/plugins/authors_sidebar/lib/authors_sidebar.rb
|
1217
|
+
- vendor/plugins/authors_sidebar/Rakefile
|
1218
|
+
- vendor/plugins/authors_sidebar/test/authors_sidebar_test.rb
|
1219
|
+
- vendor/plugins/authors_sidebar/views/content.rhtml
|
1887
1220
|
- vendor/plugins/category_sidebar/init.rb
|
1888
|
-
- vendor/plugins/category_sidebar/lib
|
1889
1221
|
- vendor/plugins/category_sidebar/lib/category_sidebar.rb
|
1890
1222
|
- vendor/plugins/category_sidebar/Rakefile
|
1891
|
-
- vendor/plugins/category_sidebar/test
|
1892
1223
|
- vendor/plugins/category_sidebar/test/category_sidebar_test.rb
|
1893
|
-
- vendor/plugins/category_sidebar/views
|
1894
1224
|
- vendor/plugins/category_sidebar/views/content.rhtml
|
1895
|
-
- vendor/plugins/
|
1896
|
-
- vendor/plugins/
|
1897
|
-
- vendor/plugins/
|
1898
|
-
- vendor/plugins/
|
1899
|
-
- vendor/plugins/
|
1900
|
-
- vendor/plugins/
|
1901
|
-
- vendor/plugins/
|
1902
|
-
- vendor/plugins/
|
1903
|
-
- vendor/plugins/
|
1904
|
-
- vendor/plugins/
|
1905
|
-
- vendor/plugins/
|
1906
|
-
- vendor/plugins/
|
1907
|
-
- vendor/plugins/
|
1908
|
-
- vendor/plugins/
|
1909
|
-
- vendor/plugins/
|
1910
|
-
- vendor/plugins/
|
1911
|
-
- vendor/plugins/
|
1912
|
-
- vendor/plugins/
|
1913
|
-
- vendor/plugins/
|
1914
|
-
- vendor/plugins/
|
1915
|
-
- vendor/plugins/
|
1916
|
-
- vendor/plugins/
|
1917
|
-
- vendor/plugins/
|
1918
|
-
- vendor/plugins/
|
1919
|
-
- vendor/plugins/
|
1920
|
-
- vendor/plugins/
|
1921
|
-
- vendor/plugins/
|
1922
|
-
- vendor/plugins/
|
1923
|
-
- vendor/plugins/
|
1924
|
-
- vendor/plugins/
|
1925
|
-
- vendor/plugins/
|
1926
|
-
- vendor/plugins/
|
1927
|
-
- vendor/plugins/
|
1928
|
-
- vendor/plugins/
|
1929
|
-
- vendor/plugins/
|
1225
|
+
- vendor/plugins/easy-ckeditor/app/controllers/ckeditor_controller.rb
|
1226
|
+
- vendor/plugins/easy-ckeditor/app/helpers/ckeditor_helper.rb
|
1227
|
+
- vendor/plugins/easy-ckeditor/CHANGELOG
|
1228
|
+
- vendor/plugins/easy-ckeditor/init.rb
|
1229
|
+
- vendor/plugins/easy-ckeditor/install.rb
|
1230
|
+
- vendor/plugins/easy-ckeditor/lib/ckeditor.rb
|
1231
|
+
- vendor/plugins/easy-ckeditor/lib/ckeditor_file_utils.rb
|
1232
|
+
- vendor/plugins/easy-ckeditor/lib/ckeditor_version.rb
|
1233
|
+
- vendor/plugins/easy-ckeditor/LICENSE
|
1234
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckcustom.js
|
1235
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/.htaccess
|
1236
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/CHANGES.html
|
1237
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/ckeditor.js
|
1238
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/ckeditor.pack
|
1239
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/ckeditor_basic.js
|
1240
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/ckeditor_basic_source.js
|
1241
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/ckeditor_source.js
|
1242
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/config.js
|
1243
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/contents.css
|
1244
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/images/spacer.gif
|
1245
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/INSTALL.html
|
1246
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/_languages.js
|
1247
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/_translationstatus.txt
|
1248
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/af.js
|
1249
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/ar.js
|
1250
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/bg.js
|
1251
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/bn.js
|
1252
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/bs.js
|
1253
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/ca.js
|
1254
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/cs.js
|
1255
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/da.js
|
1256
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/de.js
|
1257
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/el.js
|
1258
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/en-au.js
|
1259
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/en-ca.js
|
1260
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/en-uk.js
|
1261
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/en.js
|
1262
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/eo.js
|
1263
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/es.js
|
1264
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/et.js
|
1265
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/eu.js
|
1266
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/fa.js
|
1267
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/fi.js
|
1268
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/fo.js
|
1269
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/fr-ca.js
|
1270
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/fr.js
|
1271
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/gl.js
|
1272
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/gu.js
|
1273
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/he.js
|
1274
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/hi.js
|
1275
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/hr.js
|
1276
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/hu.js
|
1277
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/is.js
|
1278
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/it.js
|
1279
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/ja.js
|
1280
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/km.js
|
1281
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/ko.js
|
1282
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/lt.js
|
1283
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/lv.js
|
1284
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/mn.js
|
1285
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/ms.js
|
1286
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/nb.js
|
1287
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/nl.js
|
1288
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/no.js
|
1289
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/pl.js
|
1290
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/pt-br.js
|
1291
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/pt.js
|
1292
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/ro.js
|
1293
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/ru.js
|
1294
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/sk.js
|
1295
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/sl.js
|
1296
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/sr-latn.js
|
1297
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/sr.js
|
1298
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/sv.js
|
1299
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/th.js
|
1300
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/tr.js
|
1301
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/uk.js
|
1302
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/vi.js
|
1303
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/zh-cn.js
|
1304
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/lang/zh.js
|
1305
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/LICENSE.html
|
1306
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/about/dialogs/about.js
|
1307
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/about/dialogs/logo_ckeditor.png
|
1308
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/about/plugin.js
|
1309
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/basicstyles/plugin.js
|
1310
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/blockquote/plugin.js
|
1311
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/button/plugin.js
|
1312
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/clipboard/dialogs/paste.js
|
1313
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/clipboard/plugin.js
|
1314
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/colorbutton/plugin.js
|
1315
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/contextmenu/plugin.js
|
1316
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/dialog/dialogDefinition.js
|
1317
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/dialog/plugin.js
|
1318
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/dialogui/plugin.js
|
1319
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/domiterator/plugin.js
|
1320
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/editingblock/plugin.js
|
1321
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/elementspath/plugin.js
|
1322
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/enterkey/plugin.js
|
1323
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/entities/plugin.js
|
1324
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/fakeobjects/plugin.js
|
1325
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/filebrowser/plugin.js
|
1326
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/find/dialogs/find.js
|
1327
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/find/plugin.js
|
1328
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/flash/dialogs/flash.js
|
1329
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/flash/images/placeholder.png
|
1330
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/flash/plugin.js
|
1331
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/floatpanel/plugin.js
|
1332
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/font/plugin.js
|
1333
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/format/plugin.js
|
1334
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/button.js
|
1335
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/checkbox.js
|
1336
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/form.js
|
1337
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/hiddenfield.js
|
1338
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/radio.js
|
1339
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/select.js
|
1340
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/textarea.js
|
1341
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/dialogs/textfield.js
|
1342
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/forms/plugin.js
|
1343
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/horizontalrule/plugin.js
|
1344
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/htmldataprocessor/plugin.js
|
1345
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/htmlwriter/plugin.js
|
1346
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/iframedialog/plugin.js
|
1347
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/image/dialogs/image.js
|
1348
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/image/plugin.js
|
1349
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/indent/plugin.js
|
1350
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/justify/plugin.js
|
1351
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/keystrokes/plugin.js
|
1352
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/link/dialogs/anchor.js
|
1353
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/link/dialogs/link.js
|
1354
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/link/images/anchor.gif
|
1355
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/link/plugin.js
|
1356
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/list/plugin.js
|
1357
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/listblock/plugin.js
|
1358
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/maximize/plugin.js
|
1359
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/menu/plugin.js
|
1360
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/menubutton/plugin.js
|
1361
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/newpage/plugin.js
|
1362
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/pagebreak/images/pagebreak.gif
|
1363
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/pagebreak/plugin.js
|
1364
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/panel/plugin.js
|
1365
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/panelbutton/plugin.js
|
1366
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/pastefromword/dialogs/pastefromword.js
|
1367
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/pastefromword/plugin.js
|
1368
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/pastetext/dialogs/pastetext.js
|
1369
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/pastetext/plugin.js
|
1370
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/popup/plugin.js
|
1371
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/preview/plugin.js
|
1372
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/print/plugin.js
|
1373
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/removeformat/plugin.js
|
1374
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/resize/plugin.js
|
1375
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/richcombo/plugin.js
|
1376
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/save/plugin.js
|
1377
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/scayt/dialogs/options.js
|
1378
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/scayt/dialogs/toolbar.css
|
1379
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/scayt/plugin.js
|
1380
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/selection/plugin.js
|
1381
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_address.png
|
1382
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_blockquote.png
|
1383
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_div.png
|
1384
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_h1.png
|
1385
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_h2.png
|
1386
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_h3.png
|
1387
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_h4.png
|
1388
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_h5.png
|
1389
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_h6.png
|
1390
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_p.png
|
1391
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/images/block_pre.png
|
1392
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/showblocks/plugin.js
|
1393
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/dialogs/smiley.js
|
1394
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/angel_smile.gif
|
1395
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/angry_smile.gif
|
1396
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/broken_heart.gif
|
1397
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/confused_smile.gif
|
1398
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/cry_smile.gif
|
1399
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/devil_smile.gif
|
1400
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/embaressed_smile.gif
|
1401
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/envelope.gif
|
1402
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/heart.gif
|
1403
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/kiss.gif
|
1404
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/lightbulb.gif
|
1405
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/omg_smile.gif
|
1406
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/regular_smile.gif
|
1407
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/sad_smile.gif
|
1408
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/shades_smile.gif
|
1409
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/teeth_smile.gif
|
1410
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/thumbs_down.gif
|
1411
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/thumbs_up.gif
|
1412
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/tounge_smile.gif
|
1413
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif
|
1414
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/images/wink_smile.gif
|
1415
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/smiley/plugin.js
|
1416
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/sourcearea/plugin.js
|
1417
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/specialchar/dialogs/specialchar.js
|
1418
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/specialchar/plugin.js
|
1419
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/styles/plugin.js
|
1420
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/stylescombo/plugin.js
|
1421
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/stylescombo/styles/default.js
|
1422
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/tab/plugin.js
|
1423
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/table/dialogs/table.js
|
1424
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/table/plugin.js
|
1425
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/tabletools/dialogs/tableCell.js
|
1426
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/tabletools/plugin.js
|
1427
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/templates/dialogs/templates.js
|
1428
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/templates/plugin.js
|
1429
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/templates/templates/default.js
|
1430
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/templates/templates/images/template1.gif
|
1431
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/templates/templates/images/template2.gif
|
1432
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/templates/templates/images/template3.gif
|
1433
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/toolbar/plugin.js
|
1434
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/dialogs/uicolor.js
|
1435
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/lang/en.js
|
1436
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/plugin.js
|
1437
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/uicolor.gif
|
1438
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_bg.png
|
1439
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png
|
1440
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_mask.png
|
1441
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png
|
1442
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/yui/assets/yui.css
|
1443
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/uicolor/yui/yui.js
|
1444
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/undo/plugin.js
|
1445
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/wsc/dialogs/ciframe.html
|
1446
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
|
1447
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.css
|
1448
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/wsc/dialogs/wsc.js
|
1449
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/wsc/plugin.js
|
1450
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/plugins/wysiwygarea/plugin.js
|
1451
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/dialog.css
|
1452
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/editor.css
|
1453
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/icons.png
|
1454
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/dialog_sides.gif
|
1455
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/dialog_sides.png
|
1456
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/dialog_sides_rtl.png
|
1457
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/mini.gif
|
1458
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/noimage.png
|
1459
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/sprites.png
|
1460
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/sprites_ie6.png
|
1461
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/images/toolbar_start.gif
|
1462
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/skin.js
|
1463
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/kama/templates.css
|
1464
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/dialog.css
|
1465
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/editor.css
|
1466
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/icons.png
|
1467
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/images/dialog_sides.gif
|
1468
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/images/dialog_sides.png
|
1469
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/images/dialog_sides_rtl.png
|
1470
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/images/mini.gif
|
1471
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/images/noimage.png
|
1472
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/images/sprites.png
|
1473
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/images/sprites_ie6.png
|
1474
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/skin.js
|
1475
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/office2003/templates.css
|
1476
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/dialog.css
|
1477
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/editor.css
|
1478
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/icons.png
|
1479
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/dialog_sides.gif
|
1480
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/dialog_sides.png
|
1481
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/dialog_sides_rtl.png
|
1482
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/mini.gif
|
1483
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/noimage.png
|
1484
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/sprites.png
|
1485
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/sprites_ie6.png
|
1486
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/images/toolbar_start.gif
|
1487
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/skin.js
|
1488
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/skins/v2/templates.css
|
1489
|
+
- vendor/plugins/easy-ckeditor/public/javascripts/ckeditor/themes/default/theme.js
|
1490
|
+
- vendor/plugins/easy-ckeditor/Rakefile
|
1491
|
+
- vendor/plugins/easy-ckeditor/README.textile
|
1492
|
+
- vendor/plugins/easy-ckeditor/tasks/ckeditor_tasks.rake
|
1493
|
+
- vendor/plugins/easy-ckeditor/uninstall.rb
|
1930
1494
|
- vendor/plugins/livesearch_sidebar/init.rb
|
1931
|
-
- vendor/plugins/livesearch_sidebar/lib
|
1932
1495
|
- vendor/plugins/livesearch_sidebar/lib/livesearch_sidebar.rb
|
1933
|
-
- vendor/plugins/livesearch_sidebar/views
|
1934
1496
|
- vendor/plugins/livesearch_sidebar/views/content.rhtml
|
1935
|
-
- vendor/plugins/localization
|
1936
|
-
- vendor/plugins/localization/bin
|
1937
1497
|
- vendor/plugins/localization/bin/make_language.rb
|
1938
1498
|
- vendor/plugins/localization/CHANGELOG
|
1939
1499
|
- vendor/plugins/localization/init.rb
|
1940
|
-
- vendor/plugins/localization/lib
|
1941
1500
|
- vendor/plugins/localization/lib/localization.rb
|
1942
1501
|
- vendor/plugins/localization/README
|
1943
|
-
- vendor/plugins/page_sidebar
|
1944
1502
|
- vendor/plugins/page_sidebar/init.rb
|
1945
|
-
- vendor/plugins/page_sidebar/lib
|
1946
1503
|
- vendor/plugins/page_sidebar/lib/page_sidebar.rb
|
1947
1504
|
- vendor/plugins/page_sidebar/Rakefile
|
1948
|
-
- vendor/plugins/page_sidebar/test
|
1949
1505
|
- vendor/plugins/page_sidebar/test/page_sidebar_test.rb
|
1950
|
-
- vendor/plugins/page_sidebar/views
|
1951
1506
|
- vendor/plugins/page_sidebar/views/content.rhtml
|
1952
|
-
- vendor/plugins/search_sidebar
|
1953
1507
|
- vendor/plugins/search_sidebar/init.rb
|
1954
|
-
- vendor/plugins/search_sidebar/lib
|
1955
1508
|
- vendor/plugins/search_sidebar/lib/search_sidebar.rb
|
1956
1509
|
- vendor/plugins/search_sidebar/Rakefile
|
1957
|
-
- vendor/plugins/search_sidebar/test
|
1958
1510
|
- vendor/plugins/search_sidebar/test/search_sidebar_test.rb
|
1959
|
-
- vendor/plugins/search_sidebar/views
|
1960
1511
|
- vendor/plugins/search_sidebar/views/content.rhtml
|
1961
|
-
- vendor/plugins/static_sidebar
|
1962
1512
|
- vendor/plugins/static_sidebar/init.rb
|
1963
|
-
- vendor/plugins/static_sidebar/lib
|
1964
1513
|
- vendor/plugins/static_sidebar/lib/static_sidebar.rb
|
1965
|
-
- vendor/plugins/static_sidebar/views
|
1966
1514
|
- vendor/plugins/static_sidebar/views/content.rhtml
|
1967
|
-
- vendor/plugins/tag_sidebar
|
1968
1515
|
- vendor/plugins/tag_sidebar/init.rb
|
1969
|
-
- vendor/plugins/tag_sidebar/lib
|
1970
1516
|
- vendor/plugins/tag_sidebar/lib/tag_sidebar.rb
|
1971
1517
|
- vendor/plugins/tag_sidebar/Rakefile
|
1972
|
-
- vendor/plugins/tag_sidebar/test
|
1973
1518
|
- vendor/plugins/tag_sidebar/test/tag_sidebar_test.rb
|
1974
|
-
- vendor/plugins/tag_sidebar/views
|
1975
1519
|
- vendor/plugins/tag_sidebar/views/content.rhtml
|
1976
|
-
- vendor/plugins/typo_converter
|
1520
|
+
- vendor/plugins/typo_converter/db/wp25_schema.rb
|
1977
1521
|
- vendor/plugins/typo_converter/init.rb
|
1978
|
-
- vendor/plugins/typo_converter/lib
|
1979
|
-
- vendor/plugins/typo_converter/lib/converters
|
1980
1522
|
- vendor/plugins/typo_converter/lib/converters/base.rb
|
1981
|
-
- vendor/plugins/typo_converter/lib/converters/dotclear
|
1982
1523
|
- vendor/plugins/typo_converter/lib/converters/dotclear/category.rb
|
1983
1524
|
- vendor/plugins/typo_converter/lib/converters/dotclear/comment.rb
|
1984
1525
|
- vendor/plugins/typo_converter/lib/converters/dotclear/post.rb
|
1985
1526
|
- vendor/plugins/typo_converter/lib/converters/dotclear/user.rb
|
1986
1527
|
- vendor/plugins/typo_converter/lib/converters/dotclear.rb
|
1987
|
-
- vendor/plugins/typo_converter/lib/converters/dotclear_2
|
1988
1528
|
- vendor/plugins/typo_converter/lib/converters/dotclear_2/category.rb
|
1989
1529
|
- vendor/plugins/typo_converter/lib/converters/dotclear_2/comment.rb
|
1990
1530
|
- vendor/plugins/typo_converter/lib/converters/dotclear_2/post.rb
|
1991
1531
|
- vendor/plugins/typo_converter/lib/converters/dotclear_2/tag.rb
|
1992
1532
|
- vendor/plugins/typo_converter/lib/converters/dotclear_2/user.rb
|
1993
1533
|
- vendor/plugins/typo_converter/lib/converters/dotclear_2.rb
|
1994
|
-
- vendor/plugins/typo_converter/lib/converters/wp25
|
1995
1534
|
- vendor/plugins/typo_converter/lib/converters/wp25/comment.rb
|
1535
|
+
- vendor/plugins/typo_converter/lib/converters/wp25/option.rb
|
1996
1536
|
- vendor/plugins/typo_converter/lib/converters/wp25/post.rb
|
1997
1537
|
- vendor/plugins/typo_converter/lib/converters/wp25/term.rb
|
1998
1538
|
- vendor/plugins/typo_converter/lib/converters/wp25/term_relationship.rb
|
@@ -2001,222 +1541,97 @@ files:
|
|
2001
1541
|
- vendor/plugins/typo_converter/lib/converters/wp25.rb
|
2002
1542
|
- vendor/plugins/typo_converter/Rakefile
|
2003
1543
|
- vendor/plugins/typo_converter/README
|
2004
|
-
- vendor/plugins/typo_converter/
|
1544
|
+
- vendor/plugins/typo_converter/spec/converters/wp25_spec.rb
|
1545
|
+
- vendor/plugins/typo_converter/spec/factories/wp25_factories.rb
|
1546
|
+
- vendor/plugins/typo_converter/spec/spec_helper.rb
|
1547
|
+
- vendor/plugins/typo_converter/spec/typo_converter_spec.rb
|
2005
1548
|
- vendor/plugins/typo_converter/tasks/typo_converters_tasks.rake
|
2006
|
-
- vendor/plugins/typo_login_system
|
2007
1549
|
- vendor/plugins/typo_login_system/init.rb
|
2008
|
-
- vendor/plugins/typo_login_system/lib
|
2009
1550
|
- vendor/plugins/typo_login_system/lib/access_control.rb
|
2010
1551
|
- vendor/plugins/typo_login_system/lib/login_system.rb
|
2011
|
-
- vendor/plugins/typo_textfilter_code
|
2012
1552
|
- vendor/plugins/typo_textfilter_code/init.rb
|
2013
1553
|
- vendor/plugins/typo_textfilter_code/install.rb
|
2014
|
-
- vendor/plugins/typo_textfilter_code/lib
|
2015
1554
|
- vendor/plugins/typo_textfilter_code/lib/typo_textfilter_code.rb
|
2016
1555
|
- vendor/plugins/typo_textfilter_code/Rakefile
|
2017
1556
|
- vendor/plugins/typo_textfilter_code/README
|
2018
|
-
- vendor/plugins/typo_textfilter_code/tasks
|
2019
1557
|
- vendor/plugins/typo_textfilter_code/tasks/typo_textfilter_code_tasks.rake
|
2020
|
-
- vendor/plugins/typo_textfilter_code/test
|
2021
1558
|
- vendor/plugins/typo_textfilter_code/test/typo_textfilter_code_test.rb
|
2022
|
-
- vendor/plugins/typo_textfilter_flickr
|
2023
1559
|
- vendor/plugins/typo_textfilter_flickr/init.rb
|
2024
1560
|
- vendor/plugins/typo_textfilter_flickr/install.rb
|
2025
|
-
- vendor/plugins/typo_textfilter_flickr/lib
|
2026
1561
|
- vendor/plugins/typo_textfilter_flickr/lib/typo_textfilter_flickr.rb
|
2027
1562
|
- vendor/plugins/typo_textfilter_flickr/Rakefile
|
2028
1563
|
- vendor/plugins/typo_textfilter_flickr/README
|
2029
|
-
- vendor/plugins/typo_textfilter_flickr/tasks
|
2030
1564
|
- vendor/plugins/typo_textfilter_flickr/tasks/typo_textfilter_flickr_tasks.rake
|
2031
|
-
- vendor/plugins/typo_textfilter_flickr/test
|
2032
1565
|
- vendor/plugins/typo_textfilter_flickr/test/typo_textfilter_flickr_test.rb
|
2033
|
-
- vendor/plugins/typo_textfilter_htmlfilter
|
2034
1566
|
- vendor/plugins/typo_textfilter_htmlfilter/init.rb
|
2035
1567
|
- vendor/plugins/typo_textfilter_htmlfilter/install.rb
|
2036
|
-
- vendor/plugins/typo_textfilter_htmlfilter/lib
|
2037
1568
|
- vendor/plugins/typo_textfilter_htmlfilter/lib/typo_textfilter_htmlfilter.rb
|
2038
1569
|
- vendor/plugins/typo_textfilter_htmlfilter/Rakefile
|
2039
1570
|
- vendor/plugins/typo_textfilter_htmlfilter/README
|
2040
|
-
- vendor/plugins/typo_textfilter_htmlfilter/tasks
|
2041
1571
|
- vendor/plugins/typo_textfilter_htmlfilter/tasks/typo_textfilter_htmlfilter_tasks.rake
|
2042
|
-
- vendor/plugins/typo_textfilter_htmlfilter/test
|
2043
1572
|
- vendor/plugins/typo_textfilter_htmlfilter/test/typo_textfilter_htmlfilter_test.rb
|
2044
|
-
- vendor/plugins/typo_textfilter_lightbox
|
2045
1573
|
- vendor/plugins/typo_textfilter_lightbox/init.rb
|
2046
1574
|
- vendor/plugins/typo_textfilter_lightbox/install.rb
|
2047
|
-
- vendor/plugins/typo_textfilter_lightbox/lib
|
2048
1575
|
- vendor/plugins/typo_textfilter_lightbox/lib/typo_textfilter_lightbox.rb
|
2049
1576
|
- vendor/plugins/typo_textfilter_lightbox/Rakefile
|
2050
1577
|
- vendor/plugins/typo_textfilter_lightbox/README
|
2051
|
-
- vendor/plugins/typo_textfilter_lightbox/tasks
|
2052
1578
|
- vendor/plugins/typo_textfilter_lightbox/tasks/typo_textfilter_lightbox_tasks.rake
|
2053
|
-
- vendor/plugins/typo_textfilter_lightbox/test
|
2054
1579
|
- vendor/plugins/typo_textfilter_lightbox/test/typo_textfilter_lightbox_test.rb
|
2055
|
-
- vendor/plugins/typo_textfilter_markdown
|
2056
1580
|
- vendor/plugins/typo_textfilter_markdown/init.rb
|
2057
1581
|
- vendor/plugins/typo_textfilter_markdown/install.rb
|
2058
|
-
- vendor/plugins/typo_textfilter_markdown/lib
|
2059
1582
|
- vendor/plugins/typo_textfilter_markdown/lib/typo_textfilter_markdown.rb
|
2060
1583
|
- vendor/plugins/typo_textfilter_markdown/Rakefile
|
2061
1584
|
- vendor/plugins/typo_textfilter_markdown/README
|
2062
|
-
- vendor/plugins/typo_textfilter_markdown/tasks
|
2063
1585
|
- vendor/plugins/typo_textfilter_markdown/tasks/typo_textfilter_markdown_tasks.rake
|
2064
|
-
- vendor/plugins/typo_textfilter_markdown/test
|
2065
1586
|
- vendor/plugins/typo_textfilter_markdown/test/typo_textfilter_markdown_test.rb
|
2066
|
-
- vendor/plugins/typo_textfilter_none
|
2067
1587
|
- vendor/plugins/typo_textfilter_none/init.rb
|
2068
1588
|
- vendor/plugins/typo_textfilter_none/install.rb
|
2069
|
-
- vendor/plugins/typo_textfilter_none/lib
|
2070
1589
|
- vendor/plugins/typo_textfilter_none/lib/typo_textfilter_none.rb
|
2071
1590
|
- vendor/plugins/typo_textfilter_none/Rakefile
|
2072
1591
|
- vendor/plugins/typo_textfilter_none/README
|
2073
|
-
- vendor/plugins/typo_textfilter_none/tasks
|
2074
1592
|
- vendor/plugins/typo_textfilter_none/tasks/typo_textfilter_none_tasks.rake
|
2075
|
-
- vendor/plugins/typo_textfilter_none/test
|
2076
1593
|
- vendor/plugins/typo_textfilter_none/test/typo_textfilter_none_test.rb
|
2077
|
-
- vendor/plugins/typo_textfilter_smartypants
|
2078
1594
|
- vendor/plugins/typo_textfilter_smartypants/init.rb
|
2079
1595
|
- vendor/plugins/typo_textfilter_smartypants/install.rb
|
2080
|
-
- vendor/plugins/typo_textfilter_smartypants/lib
|
2081
1596
|
- vendor/plugins/typo_textfilter_smartypants/lib/typo_textfilter_smartypants.rb
|
2082
1597
|
- vendor/plugins/typo_textfilter_smartypants/Rakefile
|
2083
1598
|
- vendor/plugins/typo_textfilter_smartypants/README
|
2084
|
-
- vendor/plugins/typo_textfilter_smartypants/tasks
|
2085
1599
|
- vendor/plugins/typo_textfilter_smartypants/tasks/typo_textfilter_smartypants_tasks.rake
|
2086
|
-
- vendor/plugins/typo_textfilter_smartypants/test
|
2087
1600
|
- vendor/plugins/typo_textfilter_smartypants/test/typo_textfilter_smartypants_test.rb
|
2088
|
-
- vendor/plugins/typo_textfilter_textile
|
2089
1601
|
- vendor/plugins/typo_textfilter_textile/init.rb
|
2090
1602
|
- vendor/plugins/typo_textfilter_textile/install.rb
|
2091
|
-
- vendor/plugins/typo_textfilter_textile/lib
|
2092
1603
|
- vendor/plugins/typo_textfilter_textile/lib/typo_textfilter_textile.rb
|
2093
1604
|
- vendor/plugins/typo_textfilter_textile/Rakefile
|
2094
1605
|
- vendor/plugins/typo_textfilter_textile/README
|
2095
|
-
- vendor/plugins/typo_textfilter_textile/tasks
|
2096
1606
|
- vendor/plugins/typo_textfilter_textile/tasks/typo_textfilter_textile_tasks.rake
|
2097
|
-
- vendor/plugins/typo_textfilter_textile/test
|
2098
1607
|
- vendor/plugins/typo_textfilter_textile/test/typo_textfilter_textile_test.rb
|
2099
|
-
- vendor/plugins/typo_textfilter_textile_and_markdown
|
2100
1608
|
- vendor/plugins/typo_textfilter_textile_and_markdown/init.rb
|
2101
1609
|
- vendor/plugins/typo_textfilter_textile_and_markdown/install.rb
|
2102
|
-
- vendor/plugins/typo_textfilter_textile_and_markdown/lib
|
2103
1610
|
- vendor/plugins/typo_textfilter_textile_and_markdown/lib/typo_textfilter_textile_and_markdown.rb
|
2104
1611
|
- vendor/plugins/typo_textfilter_textile_and_markdown/Rakefile
|
2105
1612
|
- vendor/plugins/typo_textfilter_textile_and_markdown/README
|
2106
|
-
- vendor/plugins/typo_textfilter_textile_and_markdown/tasks
|
2107
1613
|
- vendor/plugins/typo_textfilter_textile_and_markdown/tasks/typo_textfilter_textile_and_markdown_tasks.rake
|
2108
|
-
- vendor/plugins/typo_textfilter_textile_and_markdown/test
|
2109
1614
|
- vendor/plugins/typo_textfilter_textile_and_markdown/test/typo_textfilter_textile_and_markdown_test.rb
|
2110
|
-
- vendor/plugins/upload_progress
|
2111
1615
|
- vendor/plugins/upload_progress/CHANGELOG
|
2112
1616
|
- vendor/plugins/upload_progress/init.rb
|
2113
|
-
- vendor/plugins/upload_progress/lib
|
2114
1617
|
- vendor/plugins/upload_progress/lib/multipart_progress.rb
|
2115
1618
|
- vendor/plugins/upload_progress/lib/progress.rb
|
2116
1619
|
- vendor/plugins/upload_progress/lib/upload_progress.rb
|
2117
1620
|
- vendor/plugins/upload_progress/lib/upload_progress_helper.rb
|
2118
1621
|
- vendor/plugins/upload_progress/MIT-LICENSE
|
2119
|
-
- vendor/plugins/upload_progress/public
|
2120
|
-
- vendor/plugins/upload_progress/public/stylesheets
|
2121
1622
|
- vendor/plugins/upload_progress/public/stylesheets/upload_progress.css
|
2122
1623
|
- vendor/plugins/upload_progress/Rakefile
|
2123
1624
|
- vendor/plugins/upload_progress/README
|
2124
|
-
- vendor/plugins/upload_progress/test
|
2125
1625
|
- vendor/plugins/upload_progress/test/multipart_progress_testx.rb
|
2126
1626
|
- vendor/plugins/upload_progress/test/upload_progress_helper_testx.rb
|
2127
1627
|
- vendor/plugins/upload_progress/test/upload_progress_testx.rb
|
2128
|
-
- vendor/plugins/will_paginate
|
2129
|
-
- vendor/plugins/will_paginate/CHANGELOG.rdoc
|
2130
|
-
- vendor/plugins/will_paginate/examples
|
2131
|
-
- vendor/plugins/will_paginate/examples/apple-circle.gif
|
2132
|
-
- vendor/plugins/will_paginate/examples/index.haml
|
2133
|
-
- vendor/plugins/will_paginate/examples/index.html
|
2134
|
-
- vendor/plugins/will_paginate/examples/pagination.css
|
2135
|
-
- vendor/plugins/will_paginate/examples/pagination.sass
|
2136
|
-
- vendor/plugins/will_paginate/init.rb
|
2137
|
-
- vendor/plugins/will_paginate/lib
|
2138
|
-
- vendor/plugins/will_paginate/lib/will_paginate
|
2139
|
-
- vendor/plugins/will_paginate/lib/will_paginate/array.rb
|
2140
|
-
- vendor/plugins/will_paginate/lib/will_paginate/collection.rb
|
2141
|
-
- vendor/plugins/will_paginate/lib/will_paginate/core_ext.rb
|
2142
|
-
- vendor/plugins/will_paginate/lib/will_paginate/finder.rb
|
2143
|
-
- vendor/plugins/will_paginate/lib/will_paginate/named_scope.rb
|
2144
|
-
- vendor/plugins/will_paginate/lib/will_paginate/named_scope_patch.rb
|
2145
|
-
- vendor/plugins/will_paginate/lib/will_paginate/version.rb
|
2146
|
-
- vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb
|
2147
|
-
- vendor/plugins/will_paginate/lib/will_paginate.rb
|
2148
|
-
- vendor/plugins/will_paginate/LICENSE
|
2149
|
-
- vendor/plugins/will_paginate/Rakefile
|
2150
|
-
- vendor/plugins/will_paginate/README.rdoc
|
2151
|
-
- vendor/plugins/will_paginate/test
|
2152
|
-
- vendor/plugins/will_paginate/test/boot.rb
|
2153
|
-
- vendor/plugins/will_paginate/test/collection_test.rb
|
2154
|
-
- vendor/plugins/will_paginate/test/console
|
2155
|
-
- vendor/plugins/will_paginate/test/database.yml
|
2156
|
-
- vendor/plugins/will_paginate/test/finder_test.rb
|
2157
|
-
- vendor/plugins/will_paginate/test/fixtures
|
2158
|
-
- vendor/plugins/will_paginate/test/fixtures/admin.rb
|
2159
|
-
- vendor/plugins/will_paginate/test/fixtures/developer.rb
|
2160
|
-
- vendor/plugins/will_paginate/test/fixtures/developers_projects.yml
|
2161
|
-
- vendor/plugins/will_paginate/test/fixtures/project.rb
|
2162
|
-
- vendor/plugins/will_paginate/test/fixtures/projects.yml
|
2163
|
-
- vendor/plugins/will_paginate/test/fixtures/replies.yml
|
2164
|
-
- vendor/plugins/will_paginate/test/fixtures/reply.rb
|
2165
|
-
- vendor/plugins/will_paginate/test/fixtures/schema.rb
|
2166
|
-
- vendor/plugins/will_paginate/test/fixtures/topic.rb
|
2167
|
-
- vendor/plugins/will_paginate/test/fixtures/topics.yml
|
2168
|
-
- vendor/plugins/will_paginate/test/fixtures/user.rb
|
2169
|
-
- vendor/plugins/will_paginate/test/fixtures/users.yml
|
2170
|
-
- vendor/plugins/will_paginate/test/helper.rb
|
2171
|
-
- vendor/plugins/will_paginate/test/lib
|
2172
|
-
- vendor/plugins/will_paginate/test/lib/activerecord_test_case.rb
|
2173
|
-
- vendor/plugins/will_paginate/test/lib/activerecord_test_connector.rb
|
2174
|
-
- vendor/plugins/will_paginate/test/lib/load_fixtures.rb
|
2175
|
-
- vendor/plugins/will_paginate/test/lib/view_test_process.rb
|
2176
|
-
- vendor/plugins/will_paginate/test/tasks.rake
|
2177
|
-
- vendor/plugins/will_paginate/test/view_test.rb
|
2178
|
-
- vendor/plugins/will_paginate/will_paginate.gemspec
|
2179
|
-
- vendor/plugins/xml_sidebar
|
2180
1628
|
- vendor/plugins/xml_sidebar/init.rb
|
2181
|
-
- vendor/plugins/xml_sidebar/lib
|
2182
1629
|
- vendor/plugins/xml_sidebar/lib/xml_sidebar.rb
|
2183
1630
|
- vendor/plugins/xml_sidebar/Rakefile
|
2184
|
-
- vendor/plugins/xml_sidebar/test
|
2185
1631
|
- vendor/plugins/xml_sidebar/test/xml_sidebar_test.rb
|
2186
|
-
- vendor/plugins/xml_sidebar/views
|
2187
1632
|
- vendor/plugins/xml_sidebar/views/content.rhtml
|
2188
|
-
- vendor/redcloth
|
2189
|
-
- vendor/redcloth/bin
|
2190
|
-
- vendor/redcloth/bin/redcloth
|
2191
|
-
- vendor/redcloth/doc
|
2192
|
-
- vendor/redcloth/doc/CHANGELOG
|
2193
|
-
- vendor/redcloth/doc/COPYING
|
2194
|
-
- vendor/redcloth/doc/make.rb
|
2195
|
-
- vendor/redcloth/doc/README
|
2196
|
-
- vendor/redcloth/doc/REFERENCE
|
2197
|
-
- vendor/redcloth/install.rb
|
2198
|
-
- vendor/redcloth/lib
|
2199
|
-
- vendor/redcloth/lib/redcloth.rb
|
2200
|
-
- vendor/redcloth/RedCloth.gemspec
|
2201
|
-
- vendor/redcloth/run-tests.rb
|
2202
|
-
- vendor/redcloth/setup.rb
|
2203
|
-
- vendor/redcloth/tests
|
2204
|
-
- vendor/redcloth/tests/code.yml
|
2205
|
-
- vendor/redcloth/tests/hard_breaks.yml
|
2206
|
-
- vendor/redcloth/tests/images.yml
|
2207
|
-
- vendor/redcloth/tests/instiki.yml
|
2208
|
-
- vendor/redcloth/tests/links.yml
|
2209
|
-
- vendor/redcloth/tests/lists.yml
|
2210
|
-
- vendor/redcloth/tests/markdown.yml
|
2211
|
-
- vendor/redcloth/tests/poignant.yml
|
2212
|
-
- vendor/redcloth/tests/table.yml
|
2213
|
-
- vendor/redcloth/tests/textism.yml
|
2214
|
-
- vendor/rubypants
|
2215
|
-
- vendor/rubypants/html
|
2216
|
-
- vendor/rubypants/html/classes
|
2217
1633
|
- vendor/rubypants/html/classes/RubyPants.html
|
2218
1634
|
- vendor/rubypants/html/created.rid
|
2219
|
-
- vendor/rubypants/html/files
|
2220
1635
|
- vendor/rubypants/html/files/README.html
|
2221
1636
|
- vendor/rubypants/html/files/rubypants_rb.html
|
2222
1637
|
- vendor/rubypants/html/fr_class_index.html
|
@@ -2229,26 +1644,15 @@ files:
|
|
2229
1644
|
- vendor/rubypants/README
|
2230
1645
|
- vendor/rubypants/rubypants.rb
|
2231
1646
|
- vendor/rubypants/test_rubypants.rb
|
2232
|
-
- vendor/sparklines
|
2233
|
-
- vendor/sparklines/lib
|
2234
|
-
- vendor/sparklines/lib/sparklines.rb
|
2235
|
-
- vendor/sparklines/README.txt
|
2236
|
-
- vendor/sparklines/samples
|
2237
|
-
- vendor/sparklines/samples/sparklinestest.rb
|
2238
|
-
- vendor/sparklines/sparklines_generator.rb
|
2239
|
-
- vendor/sparklines/templates
|
2240
|
-
- vendor/sparklines/templates/sparklines_controller.rb
|
2241
|
-
- vendor/sparklines/templates/sparklines_helper.rb
|
2242
|
-
- vendor/sparklines/USAGE
|
2243
|
-
- vendor/uuidtools
|
2244
1647
|
- vendor/uuidtools/CHANGELOG
|
2245
1648
|
- vendor/uuidtools/install.rb
|
2246
|
-
- vendor/uuidtools/lib
|
2247
1649
|
- vendor/uuidtools/lib/uuidtools.rb
|
2248
1650
|
- vendor/uuidtools/rakefile
|
2249
1651
|
- vendor/uuidtools/README
|
2250
|
-
has_rdoc:
|
1652
|
+
has_rdoc: true
|
2251
1653
|
homepage: http://typosphere.org
|
1654
|
+
licenses: []
|
1655
|
+
|
2252
1656
|
post_install_message:
|
2253
1657
|
rdoc_options: []
|
2254
1658
|
|
@@ -2269,9 +1673,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
2269
1673
|
requirements: []
|
2270
1674
|
|
2271
1675
|
rubyforge_project: typo
|
2272
|
-
rubygems_version: 1.3.
|
1676
|
+
rubygems_version: 1.3.5
|
2273
1677
|
signing_key:
|
2274
|
-
specification_version:
|
1678
|
+
specification_version: 3
|
2275
1679
|
summary: Modern weblog engine.
|
2276
1680
|
test_files: []
|
2277
1681
|
|