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
@@ -0,0 +1,19 @@
|
|
1
|
+
class MoveUsersToProfiles < ActiveRecord::Migration
|
2
|
+
class Profile < ActiveRecord::Base
|
3
|
+
include BareMigration
|
4
|
+
|
5
|
+
serialize :profiles
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.up
|
9
|
+
Profile.find_by_label("publisher").update_attributes(:modules => [:dashboard, :write, :content, :feedback, :profile ])
|
10
|
+
Profile.find_by_label("contributor").update_attributes(:modules => [:dashboard, :profile ])
|
11
|
+
Profile.find_by_label("admin").update_attributes(:modules => [:dashboard, :write, :content, :feedback, :themes, :sidebar, :users, :settings, :profile])
|
12
|
+
end
|
13
|
+
|
14
|
+
def self.down
|
15
|
+
Profile.find_by_label("publisher").update_attributes(:modules => [:dashboard, :write, :content, :feedback, :users ])
|
16
|
+
Profile.find_by_label("contributor").update_attributes(:modules => [:dashboard, :users ])
|
17
|
+
Profile.find_by_label("admin").update_attributes(:modules => [:dashboard, :write, :content, :feedback, :themes, :sidebar, :users, :settings ])
|
18
|
+
end
|
19
|
+
end
|
data/db/schema.rb
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
#
|
10
10
|
# It's strongly recommended to check this file into your version control system.
|
11
11
|
|
12
|
-
ActiveRecord::Schema.define(:version =>
|
12
|
+
ActiveRecord::Schema.define(:version => 86) do
|
13
13
|
|
14
14
|
create_table "articles_tags", :id => false, :force => true do |t|
|
15
15
|
t.integer "article_id"
|
@@ -74,6 +74,7 @@ ActiveRecord::Schema.define(:version => 81) do
|
|
74
74
|
t.boolean "allow_comments"
|
75
75
|
t.datetime "published_at"
|
76
76
|
t.string "state"
|
77
|
+
t.integer "parent_id"
|
77
78
|
end
|
78
79
|
|
79
80
|
add_index "contents", ["published"], :name => "index_contents_on_published"
|
@@ -221,7 +222,6 @@ ActiveRecord::Schema.define(:version => 81) do
|
|
221
222
|
t.boolean "notify_on_new_articles"
|
222
223
|
t.boolean "notify_on_comments"
|
223
224
|
t.boolean "notify_watch_my_articles"
|
224
|
-
t.boolean "notify_via_jabber"
|
225
225
|
t.string "jabber"
|
226
226
|
t.integer "profile_id"
|
227
227
|
t.string "remember_token"
|
@@ -229,6 +229,22 @@ ActiveRecord::Schema.define(:version => 81) do
|
|
229
229
|
t.string "text_filter_id", :default => "1"
|
230
230
|
t.string "editor", :default => "simple"
|
231
231
|
t.string "state", :default => "active"
|
232
|
+
t.string "firstname"
|
233
|
+
t.string "lastname"
|
234
|
+
t.string "nickname"
|
235
|
+
t.string "url"
|
236
|
+
t.string "msn"
|
237
|
+
t.string "aim"
|
238
|
+
t.string "yahoo"
|
239
|
+
t.string "twitter"
|
240
|
+
t.text "description"
|
241
|
+
t.boolean "show_url"
|
242
|
+
t.boolean "show_msn"
|
243
|
+
t.boolean "show_aim"
|
244
|
+
t.boolean "show_yahoo"
|
245
|
+
t.boolean "show_twitter"
|
246
|
+
t.boolean "show_jabber"
|
247
|
+
t.datetime "last_connection"
|
232
248
|
end
|
233
249
|
|
234
250
|
end
|
data/doc/test_themes.rb
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'watir'
|
3
|
+
require "test/unit"
|
4
|
+
require 'watir/ie'
|
5
|
+
|
6
|
+
@browser = Watir::IE.new
|
7
|
+
@browser.speed = :slow
|
8
|
+
|
9
|
+
TYPO_TEST="http://localhost:3000"
|
10
|
+
LOGIN="admin"
|
11
|
+
PASSWORD="admin"
|
12
|
+
TEXT="My Shiny Weblog!"
|
13
|
+
|
14
|
+
@browser.goto("#{TYPO_TEST}/admin")
|
15
|
+
Watir::Waiter.wait_until{ @browser.button(:id, 'submit').exists? }
|
16
|
+
|
17
|
+
@browser.text_field(:id, 'user_login').set(LOGIN)
|
18
|
+
@browser.text_field(:id, 'user_password').set(PASSWORD)
|
19
|
+
@browser.button(:id, 'submit').click
|
20
|
+
|
21
|
+
Watir::Waiter.wait_until{ @browser.div(:id, 'footer').exists? }
|
22
|
+
|
23
|
+
@browser.goto("#{TYPO_TEST}/admin/themes")
|
24
|
+
Watir::Waiter.wait_until{ @browser.div(:id, 'footer').exists? }
|
25
|
+
|
26
|
+
links = []
|
27
|
+
@browser.divs(:class, /theme/).each do |div|
|
28
|
+
links << div.link(:index, 1).href
|
29
|
+
end
|
30
|
+
|
31
|
+
links.each do |link|
|
32
|
+
@browser.goto(link)
|
33
|
+
Watir::Waiter.wait_until{ @browser.div(:id, 'footer').exists? }
|
34
|
+
|
35
|
+
@browser.goto(TYPO_TEST)
|
36
|
+
Watir::Waiter.wait_until{ @browser.text.downcase.include?("my shiny weblog") }
|
37
|
+
|
38
|
+
@browser.goto("#{TYPO_TEST}/2009/12/13/hello-world")
|
39
|
+
Watir::Waiter.wait_until{ @browser.text.downcase.include?("my shiny weblog") }
|
40
|
+
|
41
|
+
@browser.goto("#{TYPO_TEST}/pages/about")
|
42
|
+
Watir::Waiter.wait_until{ @browser.text.downcase.include?("my shiny weblog") }
|
43
|
+
|
44
|
+
@browser.goto("#{TYPO_TEST}/tag/default")
|
45
|
+
Watir::Waiter.wait_until{ @browser.text.downcase.include?("my shiny weblog") }
|
46
|
+
|
47
|
+
@browser.goto("#{TYPO_TEST}/category/default")
|
48
|
+
Watir::Waiter.wait_until{ @browser.text.downcase.include?("my shiny weblog") }
|
49
|
+
|
50
|
+
end
|
data/lang/fr_FR.rb
CHANGED
@@ -1,653 +1,681 @@
|
|
1
|
-
Localization.define(
|
2
|
-
|
3
|
-
|
4
|
-
l.store "
|
5
|
-
l.store "
|
6
|
-
l.store "
|
7
|
-
l.store "
|
8
|
-
l.store "
|
9
|
-
l.store "
|
10
|
-
|
11
|
-
|
12
|
-
l.store "
|
13
|
-
l.store "with %s AER OS XK iconset iconset %s", "avec %s les icônes AER OS XK iconset %s"
|
14
|
-
|
15
|
-
#accounts/login.rhtml
|
16
|
-
l.store "Administration", "Administration"
|
17
|
-
l.store "Username", "Identifiant"
|
1
|
+
Localization.define("fr_FR") do |l|
|
2
|
+
|
3
|
+
# app/views/accounts/confirm.html.erb
|
4
|
+
l.store "You have successfully signed up", "Vous vous %etes inscrit avec succès"
|
5
|
+
l.store "Login %s", "Identifiant %s"
|
6
|
+
l.store "Password %s", "Mot de passe %"
|
7
|
+
l.store "Don't lose the mail sent at %s or you won't be able to login anymore", "Ne perdez pas l'email que nous venons de vous envoyer à l'adresse %s ou vous ne pourrez plus vous connecter à l'application"
|
8
|
+
l.store "Proceed to", "Connectez-vous à"
|
9
|
+
l.store "admin", "l'administration"
|
10
|
+
|
11
|
+
# app/views/accounts/login.html.erb
|
12
|
+
l.store "Login", "Identifiant"
|
18
13
|
l.store "Password", "Mot de passe"
|
19
|
-
l.store "
|
14
|
+
l.store "Remember me", "Rester connecté"
|
20
15
|
l.store "Back to ", "Revenir à "
|
21
|
-
l.store "Login unsuccessful", "Échec de la connexion"
|
22
|
-
l.store "Login successful", "Connexion réussie"
|
23
16
|
|
24
|
-
#
|
25
|
-
l.store "
|
26
|
-
|
27
|
-
# admin/signup.rhtml
|
17
|
+
# app/views/accounts/signup.html.erb
|
18
|
+
l.store "Username", "Identifiant"
|
19
|
+
l.store "Email", "Email"
|
28
20
|
l.store "Signup", "S'inscrire"
|
29
|
-
|
30
|
-
|
31
|
-
l.store "Email", "Courriel"
|
32
|
-
l.store "Choose password", "Mot de passe"
|
33
|
-
l.store "Confirm password", "Confirmez le mot de passe"
|
34
|
-
l.store "Signup successful", "Inscription réussie"
|
35
|
-
|
36
|
-
# admin/dashboard/index.rhtml
|
37
|
-
l.store "What can you do ?", "Vous pouvez"
|
38
|
-
l.store "Write a post", "Écrire un billet"
|
39
|
-
l.store "Write a page", "Écrire une page"
|
40
|
-
l.store "Update your profile or change your password", "Mettre votre profil à jour ou changer votre mot de passe"
|
41
|
-
l.store "Change your blog presentation", "Changer l'apparence de votre blog"
|
42
|
-
l.store "Enable plugins", "Ajouter des greffons"
|
43
|
-
l.store "Last Comments", "Derniers commentaires"
|
44
|
-
l.store "Last posts", "Derniers billets"
|
45
|
-
l.store "Most popular", "Billets les plus populaires"
|
46
|
-
l.store "Typo documentation", "Accéder à la documentation officielle de Typo"
|
47
|
-
l.store "No comments yet", "Aucun commentaire"
|
48
|
-
l.store "Nothing to show yet", "Rien à déclarer"
|
49
|
-
l.store "No posts yet, why don't you start and write one", "Vous n'avez encore écrit aucun billet, pourquoi ne pas commencer par là"
|
50
|
-
l.store "You have no internet connection", "Vous n'avez pas de connection à internet"
|
51
|
-
|
52
|
-
#admin/base/recent_comments.rhtml
|
21
|
+
|
22
|
+
# app/views/admin/base/_recent_comments.html.erb
|
53
23
|
l.store "Recent comments", "Derniers commentaires"
|
54
24
|
|
55
|
-
#admin/base/
|
25
|
+
# app/views/admin/base/_recent_trackbacks.html.erb
|
56
26
|
l.store "Recent trackbacks", "Derniers rétroliens"
|
57
|
-
|
58
|
-
#admin/blacklist/
|
27
|
+
|
28
|
+
# app/views/admin/blacklist/_blacklist_patterns.html.erb
|
59
29
|
l.store "Pattern", "Motif"
|
60
30
|
l.store "Type", "Type"
|
61
|
-
l.store "Edit", "Éditer"
|
62
31
|
l.store "Delete", "Supprimer"
|
63
|
-
|
64
|
-
#admin/blacklist/_form.
|
32
|
+
|
33
|
+
# app/views/admin/blacklist/_form.html.erb
|
65
34
|
l.store "String", "Chaîne de caractères"
|
66
35
|
l.store "Regex", "Expression rationnelle"
|
67
|
-
|
68
|
-
#admin/blacklist/_quick_post.
|
69
|
-
l.store "Add pattern", "Ajouter le motif"
|
36
|
+
|
37
|
+
# app/views/admin/blacklist/_quick_post.html.erb
|
70
38
|
l.store "Cancel", "Annuler"
|
71
39
|
l.store "or", "ou"
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
l.store "Show this pattern", "Voir ce motif"
|
40
|
+
l.store "Save", "Sauver"
|
41
|
+
|
42
|
+
# app/views/admin/blacklist/destroy.html.erb
|
76
43
|
l.store "Are you sure you want to delete this item?", "Êtes vous certain de vouloir supprimer cette entrée ?"
|
77
|
-
|
78
|
-
|
44
|
+
l.store "Blacklist Patterns", "Liste noire"
|
45
|
+
|
46
|
+
# app/views/admin/blacklist/edit.html.erb
|
79
47
|
l.store "Editing pattern", "Éditer un motif"
|
80
|
-
|
81
|
-
#admin/blacklist/
|
82
|
-
l.store "
|
83
|
-
|
84
|
-
#admin/
|
85
|
-
l.store "Cache", "Cache"
|
86
|
-
|
87
|
-
#admin/categories/_categories.rhtml
|
88
|
-
l.store "Category title", "Nom de la catégorie"
|
89
|
-
l.store "%d Articles", ["Un Billet", "%d Billets"]
|
90
|
-
|
91
|
-
#admin/categories/_form.rhtml
|
92
|
-
l.store "Name", "Titre"
|
93
|
-
|
94
|
-
#admin/categories/_quick_post.rhtml
|
48
|
+
|
49
|
+
# app/views/admin/blacklist/index.html.erb
|
50
|
+
l.store "add new", "nouveau"
|
51
|
+
|
52
|
+
# app/views/admin/categories/_categories.html.erb
|
95
53
|
l.store "Title", "Titre"
|
96
|
-
l.store "
|
97
|
-
|
98
|
-
|
99
|
-
l.store "%d
|
100
|
-
|
54
|
+
l.store "Posts", "Articles"
|
55
|
+
l.store "no articles", "aucun article"
|
56
|
+
l.store "1 article", "1 article"
|
57
|
+
l.store "%d articles", "%d articles"
|
58
|
+
|
59
|
+
# app/views/admin/categories/_form.html.erb
|
60
|
+
l.store "Name", "Titre"
|
61
|
+
l.store "Keywords", "Mots clés"
|
62
|
+
l.store "Description", "Déscription"
|
63
|
+
|
64
|
+
# app/views/admin/categories/destroy.html.erb
|
65
|
+
l.store "Are you sure you want to delete the category ", "Êtes vous certain de vouloir supprimer cette catégorie "
|
101
66
|
l.store "Delete this category", "Supprimer cette catégorie"
|
102
|
-
l.store "
|
67
|
+
l.store "Categories", "Catégories"
|
103
68
|
|
104
|
-
#admin/
|
105
|
-
l.store "add new", "ajouter nouveau"
|
106
|
-
|
107
|
-
#admin/category/edit.rhtml
|
108
|
-
l.store "Editing category", "Modifier une catégorie"
|
109
|
-
|
110
|
-
#admin/category/list.rhtml
|
111
|
-
l.store "Manage Categories", "Gérer les catégories"
|
112
|
-
l.store "Create new category", "Ajouter une catégorie"
|
69
|
+
# app/views/admin/categories/index.html.erb
|
113
70
|
l.store "Reorder", "Trier"
|
114
71
|
l.store "Sort alphabetically", "Trier par ordre alphabétique"
|
115
|
-
l.store "Manage Articles", "Gérer les billets"
|
116
|
-
l.store "Manage Pages", "Gérer les pages"
|
117
|
-
l.store "Manage Resources", "Gérer les ressources"
|
118
|
-
|
119
|
-
#admin/category/reorder.rhtml
|
120
|
-
l.store "(Done)", "(Terminé)"
|
121
|
-
|
122
|
-
#admin/category/show
|
123
|
-
l.store "Edit this category", "Modifier cette catégorie"
|
124
|
-
l.store "Articles in", "Billets contenus dans"
|
125
72
|
|
126
|
-
#admin/
|
127
|
-
l.store "
|
128
|
-
l.store "Url", "Site"
|
129
|
-
l.store "Body", "Contenu du message"
|
130
|
-
|
131
|
-
#admin/comments/comments.rhtml
|
132
|
-
l.store "on", "sur"
|
73
|
+
# app/views/admin/categories/new.html.erb
|
74
|
+
l.store "%s Category", "%s catégories"
|
133
75
|
|
134
|
-
#admin/
|
135
|
-
l.store "
|
136
|
-
|
137
|
-
#admin/
|
138
|
-
l.store "Show this comment", "Afficher ce commentaire"
|
139
|
-
l.store "View comment on your blog", "Voir ce commentaire sur votre blog"
|
140
|
-
l.store "Editing comment", "Modifier un commentaire"
|
141
|
-
|
142
|
-
#admin/comments/list.rhtml
|
143
|
-
l.store "IP", "Adresse IP"
|
144
|
-
l.store "Posted date", "Envoyé le"
|
145
|
-
|
146
|
-
#admin/comments/new.rhtml
|
147
|
-
l.store "Creating comment", "Ajouter un commentaire"
|
148
|
-
|
149
|
-
#admin/content/list.rhtml
|
150
|
-
l.store "Manage posts", "Administrer les billets"
|
151
|
-
l.store "Manage uploads", "Administrer les pièces jointes"
|
152
|
-
l.store "Manage categories", "Administrer les catégories"
|
153
|
-
l.store "Manage pages", "Administrer les pages"
|
154
|
-
l.store "Post title", "Titre du billet"
|
155
|
-
l.store "Posted at", "Date de publication"
|
156
|
-
l.store "Posted on", "Publié le"
|
157
|
-
l.store "%d Comments", ["Un commentaire", "%d Commentaires"]
|
158
|
-
l.store "%d Trackbacks", ["Un rétrolien", "%d Rétroliens"]
|
159
|
-
l.store "View", "Voir"
|
160
|
-
l.store "Status", "État"
|
161
|
-
l.store "Offline", "Hors ligne"
|
162
|
-
l.store "Online", "En ligne"
|
163
|
-
l.store "no trackbacks", "aucun rétrolien"
|
164
|
-
l.store "no comments", "aucun commentaire"
|
165
|
-
l.store "Posts", "Billets"
|
166
|
-
l.store "Comments", "Commentaires"
|
167
|
-
l.store "Categories", "Catégories"
|
168
|
-
|
169
|
-
#admin/content/_attachment.rhtml
|
76
|
+
# app/views/admin/categories/reorder.html.erb
|
77
|
+
l.store "(Done)", "(Terminé)"
|
78
|
+
|
79
|
+
# app/views/admin/content/_attachment.html.erb
|
170
80
|
l.store "Remove", "Supprimer"
|
81
|
+
l.store "Currently this article has the following resources", "Les fichiers suivants sont actuellement liés à ce billet"
|
82
|
+
l.store "You can associate the following resources", "Vous pouvez y lier les fichiers suivants"
|
171
83
|
l.store "Really delete attachment", "Voulez-vous vraiment supprimer la pièce jointe"
|
172
84
|
l.store "Add Another Attachment", "Ajouter une autre pièce jointe"
|
173
|
-
|
174
|
-
#admin/content/
|
175
|
-
l.store "
|
176
|
-
|
177
|
-
|
178
|
-
l.store "Article Content", "Contenu du billet"
|
179
|
-
l.store "Extended Content", "Contenu étendu"
|
180
|
-
l.store "Tags", "Mots clés"
|
181
|
-
l.store "Save", "Sauver"
|
182
|
-
l.store "Article Attachments", "Pièces Jointes"
|
183
|
-
l.store "Article Options", "Options du billet"
|
184
|
-
l.store "Permalink", "Lien permanent"
|
85
|
+
|
86
|
+
# app/views/admin/content/_drafts.html.erb
|
87
|
+
l.store "Drafts:", "Brouillons"
|
88
|
+
|
89
|
+
# app/views/admin/content/_form.html.erb
|
185
90
|
l.store "Allow comments", "Autoriser les commentaires"
|
186
91
|
l.store "Allow trackbacks", "Autoriser les rétroliens"
|
187
|
-
l.store "
|
92
|
+
l.store "Published", "Publié"
|
93
|
+
l.store "Publish", "Publier"
|
94
|
+
l.store "Tags", "Mots clés"
|
95
|
+
l.store "Excerpt", "Extraît"
|
96
|
+
l.store "Uploads", "Pièces jointes"
|
97
|
+
l.store "Post settings", "Paramètres de l'article"
|
188
98
|
l.store "Publish at", "Publié le"
|
189
|
-
l.store "
|
190
|
-
l.store "
|
191
|
-
l.store "
|
192
|
-
|
193
|
-
#admin/content/
|
194
|
-
l.store "
|
195
|
-
l.store "Next page", "Page suivante"
|
196
|
-
|
197
|
-
#admin/content/_show_categories.rhtml
|
198
|
-
l.store "Currently this article is listed in following categories", "Cet article est actuellement lié aux catégories suivantes"
|
199
|
-
l.store "You can add it to the following categories", "Vous pouvez le lier aux catégories suivantes"
|
200
|
-
|
201
|
-
#admin/content/_show_ressources.rhtml
|
202
|
-
l.store "Currently this article has the following resources", "Les fichiers suivants sont actuellement liés à ce billet"
|
203
|
-
l.store "You can associate the following resources", "Vous pouvez y lier les fichiers suivants"
|
204
|
-
|
205
|
-
#admin/content/destroy.rhtml
|
206
|
-
l.store "Show this article", "Voir ce billet"
|
207
|
-
l.store "Are you sure you want to delete this article", "Êtes-vous certain de vouloir supprimer ce billet"
|
99
|
+
l.store "Permalink", "Lien permanent"
|
100
|
+
l.store "Article filter", "Mise en forme des billets"
|
101
|
+
l.store "Save as draft", "Sauver comme brouillon"
|
102
|
+
|
103
|
+
# app/views/admin/content/destroy.html.erb
|
104
|
+
l.store "Are you sure you want to delete this article", "Êtes-vous certain de vouloir supprimer cet article"
|
208
105
|
l.store "Delete this article", "Supprimer ce billet"
|
209
|
-
|
210
|
-
#admin/content/edit.rhtml
|
211
|
-
l.store "Edit Article", "Éditer un billet"
|
212
|
-
l.store "View article on your blog", "Voir ce billet sur votre blog"
|
106
|
+
l.store "Articles", "Articles"
|
213
107
|
|
214
|
-
#admin/content/
|
215
|
-
l.store "
|
216
|
-
|
217
|
-
|
218
|
-
l.store "
|
219
|
-
l.store "
|
220
|
-
l.store "
|
221
|
-
l.store "
|
222
|
-
|
223
|
-
#admin/feedback/list.rhtml
|
224
|
-
l.store "Limit to spam", "Afficher le spam"
|
225
|
-
l.store "Limit to unconfirmed", "Afficher les commentaires en attente"
|
226
|
-
l.store "Limit to unconfirmed spam", "Afficher les commentaires douteux"
|
227
|
-
l.store "Blacklist", "Liste noire"
|
228
|
-
l.store "Feedback Search", "Rechercher dans les discussions"
|
229
|
-
l.store "Comments and Trackbacks for", "Commentaires et rétroliens pour"
|
108
|
+
# app/views/admin/content/index.html.erb
|
109
|
+
l.store "Search articles that contains...", "Chercher les articles contenant..."
|
110
|
+
l.store "Search", "Chercher"
|
111
|
+
l.store "Date", "Date"
|
112
|
+
l.store "Author", "Auteur"
|
113
|
+
l.store "Status", "État"
|
114
|
+
l.store "Feedback", "Commentaires"
|
115
|
+
l.store "Filter", "Filtrer"
|
116
|
+
l.store "Manage articles", "Gérer les articles"
|
230
117
|
|
231
|
-
#admin/
|
232
|
-
l.store "
|
233
|
-
|
234
|
-
|
118
|
+
# app/views/admin/dashboard/_comments.html.erb
|
119
|
+
l.store "Latest Comments", "Derniers commentaires"
|
120
|
+
l.store "No comments yet", "Aucun commentaire"
|
121
|
+
l.store "by %s on %s", "par %s sur %s"
|
122
|
+
|
123
|
+
# app/views/admin/dashboard/_inbound.html.erb
|
124
|
+
l.store "Inbound links", "Liens entrants"
|
125
|
+
l.store "No one made a link to you yet", "Personne n'a fait de lien vers votre blog"
|
126
|
+
l.store " made a link to you saying ", " a fait un lien vers vous disant "
|
127
|
+
l.store "You have no internet connection", "Vous n'avez pas de connection à internet"
|
128
|
+
|
129
|
+
# app/views/admin/dashboard/_overview.html.erb
|
130
|
+
l.store "This place gives you a quick overview of what happens on your Typo blog and what you can do. Maybe will you want to %s, %s or %s.", ""
|
131
|
+
l.store "update your profile or change your password", "mettre votre profil à jour ou changer votre mot de passe"
|
132
|
+
l.store "You can also do a bit of design, %s or %s.", "Vous pouvez également faire un peu de personnalisation, %s, %s"
|
133
|
+
l.store "change your blog presentation", "changer l'apparence de votre blog"
|
134
|
+
l.store "enable plugins", "activer des plugins"
|
135
|
+
l.store "write a post", "écrire un article"
|
136
|
+
l.store "write a page", "publier une page statique"
|
137
|
+
|
138
|
+
# app/views/admin/dashboard/_popular.html.erb
|
139
|
+
l.store "Most popular", "Billets les plus populaires"
|
140
|
+
l.store "Nothing to show yet", "Rien à déclarer"
|
141
|
+
|
142
|
+
# app/views/admin/dashboard/_posts.html.erb
|
143
|
+
l.store "Latest posts", "Derniers articles"
|
144
|
+
l.store "No posts yet, why don't you start and write one", "Vous n'avez encore écrit aucun billet, pourquoi ne pas commencer par là"
|
145
|
+
|
146
|
+
# app/views/admin/dashboard/_sysinfo.html.erb
|
147
|
+
l.store "System information", "Informations systèmes"
|
148
|
+
l.store "You're running Typo %s", "Vous utilisez Typo %s"
|
149
|
+
l.store "Statistics", "Statistiques"
|
150
|
+
l.store "Total posts : %d", "Nombre total d'articles : %d"
|
151
|
+
l.store "Your posts : %d", "Vous avez publié : %d articles "
|
152
|
+
l.store "Total comments : %d", "Nombre total de commentaires : %d"
|
153
|
+
l.store "Spam comments : %d", "Nombre total de spam : %d"
|
154
|
+
|
155
|
+
# app/views/admin/dashboard/_typo_dev.html.erb
|
156
|
+
l.store "Latest news from the Typo development blog", "Dernières nouvelles du blog officiel de Typo"
|
157
|
+
l.store "Oh no, nothing new", "Rien à déclarer"
|
158
|
+
|
159
|
+
# app/views/admin/dashboard/_welcome.html.erb
|
160
|
+
l.store "Welcome back, %s!", "Bienvenue, %s !"
|
161
|
+
|
162
|
+
# app/views/admin/feedback/_button.html.erb
|
163
|
+
l.store "Delete Checked Items", "Supprimer les commentaires sélectionnés"
|
164
|
+
l.store "Mark Checked Items as Ham", "Valider ces commentaires"
|
165
|
+
l.store "Mark Checked Items as Spam", "Marquer ces commentaires comme du spam"
|
166
|
+
l.store "Confirm Classification of Checked Items", "Confirmer la classification des commentaires"
|
167
|
+
l.store "Delete all spam", "Supprimer tout le spam"
|
168
|
+
|
169
|
+
# app/views/admin/feedback/_form.html.erb
|
170
|
+
l.store "Url", "Site"
|
171
|
+
l.store "Content", "Contenu"
|
172
|
+
|
173
|
+
# app/views/admin/feedback/article.html.erb
|
174
|
+
l.store "Comments for %s (%s)", "Commentaires sur l'article %s (%s)"
|
175
|
+
l.store "Edit", "Éditer"
|
176
|
+
l.store "Are you sure?", "Êtes-vous certain ?"
|
177
|
+
l.store "add a comment", "Ajouter un commentaire"
|
235
178
|
l.store "All comments", "Tous les commentaires"
|
179
|
+
l.store "Limit to ham", "Uniquement les commentaires valides"
|
180
|
+
l.store "Limit to spam", "Afficher le spam"
|
236
181
|
|
237
|
-
#admin/feedback/
|
238
|
-
l.store "
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
l.store "
|
243
|
-
l.store "
|
244
|
-
l.store "
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
l.store "
|
249
|
-
l.store "
|
250
|
-
l.store "
|
251
|
-
|
252
|
-
|
253
|
-
l.store "
|
254
|
-
l.store "
|
255
|
-
|
256
|
-
|
257
|
-
l.store "Cache", "Cache"
|
258
|
-
l.store "Blog name", "Titre du blog"
|
259
|
-
l.store "Blog subtitle", "Sous-titre du blog"
|
260
|
-
l.store "Language", "Langue"
|
261
|
-
l.store "Blog URL", "Adresse du blog"
|
262
|
-
l.store "Latitude, Longitude", "Latitude, Longitude"
|
263
|
-
l.store "Display", "Afficher"
|
264
|
-
l.store "your lattitude and longitude", "votre lattitude et votre longitude"
|
265
|
-
l.store "exemple", "par exemple"
|
266
|
-
l.store "Search Engine Optimisation", "Optimisation pour les moteurs de recherche"
|
267
|
-
l.store "Show blog name", "Afficher le titre du blog"
|
268
|
-
l.store "At the beginning of page title", "Au début du titre de la page"
|
269
|
-
l.store "At the end of page title", "À la fin du titre de la page"
|
270
|
-
l.store "Don't show blog name in page title", "Ne pas afficher le nom du blog dans le titre de la page"
|
271
|
-
l.store "Save Settings", "Enregistrer les options"
|
272
|
-
l.store "articles on my homepage by default", "billet sur ma page d'accueil"
|
273
|
-
l.store "articles in my news feed by default", "billets dans mon flux RSS"
|
274
|
-
l.store "Show full article on feed", "Afficher la totalité du billet dans le flux RSS"
|
275
|
-
l.store "Article filter", "Mise en forme des billets"
|
276
|
-
l.store "Comments filter", "Mise en forme des commentaires"
|
277
|
-
l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "Quand vous publiez un billet sur Typo, vous pouvez envoyer un rétrolien aux sites que vous liez. Cette fonctionnalité devrait être désactivée pour les blogs privée puisqu'elle permet de donner des informations à leur sujet à des tiers. Ceci ne s'impose cependant pas pour un blog public."
|
278
|
-
l.store "Send trackbacks", "Envoyer des rétroliens"
|
279
|
-
l.store "URLs to ping automatically", "Sites à alerter automatiquement"
|
280
|
-
l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "Cette option vous permet de désactiver totalement les rétroliens sur votre blog. Ceci ne supprimera pas les rétroliens existants, mais empêchera tout nouveau rétrolien d'être créé"
|
281
|
-
l.store "Disable trackbacks site-wide" ,"Désactiver globalement les rétroliens"
|
282
|
-
l.store "Enable Trackbacks by default", "Activer les rétroliens par défaut"
|
283
|
-
l.store "You can enable site wide feeback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "Vous pouvez activez la modération des commentaires sur l'ensemble de votre site. Si vous le faites, aucun commentaire ou rétrolien ne sera publié sans une validation de votre part"
|
284
|
-
l.store "Enable feedback moderation", "Activer la modération des commentaires"
|
285
|
-
l.store "Enable comments by default", "Activer les commentaires par défaut"
|
286
|
-
l.store "Show your email address", "Afficher votre adresse courriel"
|
287
|
-
l.store "Enable gravatars", "Activer les gratavars"
|
288
|
-
l.store "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "Vous pouvez désactiver l'envoi des commentaires en AJAX. Typo utilisera toujours l'AJAX par défaut pour envoyer les commentaires si Javascript est activé. Désactiver l'AJAX sert donc aux gens ne disposant pas de Javascript et aux robots spammeurs"
|
289
|
-
l.store "Allow non-ajax comments", "Autoriser l'envoi de commentaires sans AJAX"
|
290
|
-
l.store "Disable comments after", "Désactiver les commentaires au bout de "
|
291
|
-
l.store "Set to 0 to never disable comments", "Mettez cette option à 0 pour ne jamais désactiver les commentaires dans le temps"
|
292
|
-
l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Typo rejettera automatiquement les commentaires et les rétroliens contenant un certain nombre de liens"
|
293
|
-
l.store "Max Links", "Nombre de liens maximum"
|
294
|
-
l.store "Set to 0 to never reject comments", "Mettez cette option à 0 pour ne jamais rejeter les commentaires"
|
295
|
-
l.store "Typo can notify you when new articles or comments are posted", "Typo peut vous alerter quand de nouveaux articles et commentaires sont publiés"
|
296
|
-
l.store "Source Email", "Adresse courriel source"
|
297
|
-
l.store "Email address used by Typo to send notifications", "Adresse courriel utilisée par Typo pour l'envoi d'alertes"
|
298
|
-
l.store "Jabber account", "Compte Jabber"
|
299
|
-
l.store "Spam protection", "Protection contre le spam"
|
300
|
-
l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "La protection contre le spam permettra à typo de comparer l'adresse IP des commentateurs ainsi que le contenu de leurs commentaires avec une liste noire distante"
|
301
|
-
l.store "Enable spam protection", "Activer la protection contre le spam"
|
302
|
-
l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "Typo peut utiliser le service de lutte contre le spam %s. Vous devez vous enregistrer afin de pouvoir utiliser les services d'Akismet. Si vous possédez une clé Akismet, ajoutez là ici"
|
303
|
-
l.store "Akismet Key", "Clé Akismet"
|
304
|
-
l.store "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata", "Les options suivantes seront ajoutées automatiquement quand vous publierez des enclosures contenant des métadonnées iTunes"
|
305
|
-
l.store "Subtitle", "Sous-titre"
|
306
|
-
l.store "Summary", "Résumé"
|
307
|
-
l.store "Setting for channel", "Options des canaux"
|
308
|
-
l.store "Optional Name", "Nom facultatif"
|
309
|
-
l.store "Not published by Apple", "Donnée non publiée par Apple"
|
310
|
-
l.store "Copyright Information", "Informations sur le copyright"
|
311
|
-
l.store "Explicit", "Contenu explicite"
|
312
|
-
l.store "Empty Fragment Cache", "Vider le cache"
|
313
|
-
l.store "Rebuild cached HTML", "Reconstruire le HTML en cache"
|
314
|
-
l.store "days", "jours"
|
315
|
-
l.store "General options", "Options générales"
|
316
|
-
l.store "By default, Typo generates static HTML pages for your posts. However, if you plan to publish posts in the futur, you may want to use semi dynamic caching", "Par défaut, Typo génère des pages HTML statiques. Cependant, si vous prévoyez d'utiliser les fonctionnalités de publication dans le futur, il vous faudra utiliser le cache dynamique"
|
317
|
-
l.store "Use static HTML page caching", "Utiliser le cache statique"
|
318
|
-
l.store "Use semi static caching (default)", "Utiliser le cache dynamique (option par défaut)"
|
319
|
-
l.store "Choose caching methode", "Sélectionnez la méthode de cache"
|
320
|
-
|
321
|
-
#admin/general/update_database
|
322
|
-
l.store "Database migration", "Mise à jour de la base de données"
|
323
|
-
l.store "Information", "Informations"
|
324
|
-
l.store "Current database version", "Version actuelle de la base"
|
325
|
-
l.store "New database version", "Nouvelle version de la base"
|
326
|
-
l.store "Your database supports migrations", "Votre base de données supporte la mise à jour"
|
327
|
-
l.store "yes", "oui"
|
328
|
-
l.store "no", "non"
|
329
|
-
l.store "Needed migrations", "Mise à jour nécessaire"
|
330
|
-
l.store "You are up to date!", "Vous êtes à jour !"
|
331
|
-
l.store "Update database now", "Mettez votre base à jour"
|
332
|
-
l.store "may take a moment", "cela peut prendre un moment"
|
333
|
-
l.store "config updated.", "Configuration mis à jour."
|
334
|
-
|
335
|
-
#admin/pages/_form.rhtml
|
336
|
-
l.store "Page Body", "Contenu de la page"
|
337
|
-
l.store "Page Content", "Contenu de la page"
|
338
|
-
l.store "Location", "Lien permanent"
|
339
|
-
l.store "Page Options", "Options de la page"
|
340
|
-
|
341
|
-
#admin/pages/_pages.rhtml
|
342
|
-
l.store "Action", "Actions"
|
182
|
+
# app/views/admin/feedback/edit.html.erb
|
183
|
+
l.store "Comments for", "Commentaires pour"
|
184
|
+
|
185
|
+
# app/views/admin/feedback/index.html.erb
|
186
|
+
l.store "Feedback for", "Feedback sur"
|
187
|
+
l.store "Search Comments and Trackbacks that contain", "Chercher les commentaires et les trackbacks contenant"
|
188
|
+
l.store "Article", "Article"
|
189
|
+
l.store "Comment Excerpt", "Extrait du commentaire"
|
190
|
+
l.store "IP", "Adresse IP"
|
191
|
+
|
192
|
+
# app/views/admin/pages/_form.html.erb
|
193
|
+
l.store "Options", "Options"
|
194
|
+
l.store "Online", "En ligne"
|
195
|
+
l.store "Page settings", "Paramètres de la page"
|
196
|
+
|
197
|
+
# app/views/admin/pages/_pages.html.erb
|
198
|
+
l.store "Please select", "Sélectionnez"
|
199
|
+
l.store "Unpublished", "Hors ligne"
|
200
|
+
|
201
|
+
# app/views/admin/pages/destroy.html.erb
|
343
202
|
l.store "Pages","Gérer les pages"
|
344
|
-
l.store "Show this page", "Afficher cette page"
|
345
203
|
l.store "Are you sure you want to delete the page", "Voulez-vous vraiment effacer cette page"
|
346
204
|
l.store "Delete this page", "Supprimer cette page"
|
347
|
-
|
348
|
-
#admin/pages/
|
349
|
-
l.store "
|
350
|
-
|
351
|
-
|
352
|
-
l.store "
|
353
|
-
|
354
|
-
#admin/
|
355
|
-
l.store "Edit this page", "Modifier cette page"
|
356
|
-
l.store "by", "par"
|
357
|
-
|
358
|
-
#admin/ressources/_metadata_add.rhtml
|
205
|
+
|
206
|
+
# app/views/admin/pages/index.html.erb
|
207
|
+
l.store "Manage pages", "Administrer les pages"
|
208
|
+
|
209
|
+
# app/views/admin/profiles/index.html.erb
|
210
|
+
l.store "Your profile", "Votre profil"
|
211
|
+
|
212
|
+
# app/views/admin/resources/_metadata_add.html.erb
|
359
213
|
l.store "Resource MetaData", "Méta données des pièces jointes"
|
360
214
|
l.store "Set iTunes metadata for this enclosure", "Ajouter des méta données iTunes pour cette pièce jointe"
|
215
|
+
l.store "Subtitle", "Sous-titre"
|
361
216
|
l.store "Duration", "Durée"
|
217
|
+
l.store "Summary", "Résumé"
|
218
|
+
l.store "Category", "Catégorie"
|
362
219
|
l.store "Key Words", "Mots clé"
|
363
220
|
l.store "seperate with spaces", "séparez-les par des espaces"
|
364
|
-
l.store "
|
221
|
+
l.store "Explicit", "Contenu explicite"
|
365
222
|
|
366
|
-
#admin/resources/_metadata_edit.
|
223
|
+
# app/views/admin/resources/_metadata_edit.html.erb
|
367
224
|
l.store "Remove iTunes Metadata", "Supprimer les méta données iTunes"
|
225
|
+
|
226
|
+
# app/views/admin/resources/_mime_edit.html.erb
|
368
227
|
l.store "Content Type", "Type de contenu"
|
369
|
-
|
370
|
-
#admin/resources/
|
228
|
+
|
229
|
+
# app/views/admin/resources/_pages.html.erb
|
230
|
+
l.store "Previous page", "Page précédente"
|
231
|
+
l.store "Next page", "Page suivante"
|
232
|
+
|
233
|
+
# app/views/admin/resources/_resources.html.erb
|
371
234
|
l.store "Filename", "Fichier"
|
372
|
-
l.store "right-click for link", "clic droit pour le lien"
|
373
235
|
l.store "MetaData", "Méta données"
|
374
236
|
l.store "File Size", "Taille du fichier"
|
375
|
-
l.store "Uploaded", "Ajouté le"
|
376
237
|
l.store "Edit MetaData", "Modifier les méta données"
|
377
238
|
l.store "Add MetaData", "Ajouter des méta données"
|
239
|
+
l.store "delete", "supprimer"
|
240
|
+
l.store "right-click for link", "clic droit pour le lien"
|
378
241
|
|
379
|
-
#admin/resources/destroy.
|
380
|
-
l.store "File Uploads", "Ajout de fichiers"
|
381
|
-
l.store "Upload a new File", "Ajouter un fichier"
|
242
|
+
# app/views/admin/resources/destroy.html.erb
|
382
243
|
l.store "Are you sure you want to delete this file", "Êtes-vous certain de vouloir supprimer ce fichier"
|
383
244
|
l.store "Delete this file from the webserver?", "Supprimer complètement ce fichier du site ?"
|
245
|
+
l.store "File Uploads", "Ajout de fichiers"
|
384
246
|
|
385
|
-
#admin/resources/new.
|
247
|
+
# app/views/admin/resources/new.html.erb
|
386
248
|
l.store "Upload a File to your Site", "Envoyer un fichier sur votre site"
|
387
|
-
l.store "Upload", "Ajouter un fichier joint"
|
388
|
-
l.store "Upload a new Resource", "Ajouter une pièce jointe"
|
389
249
|
l.store "File", "Fichier"
|
390
|
-
|
391
|
-
|
250
|
+
l.store "Upload", "Ajouter un fichier joint"
|
251
|
+
|
252
|
+
# app/views/admin/settings/feedback.html.erb
|
253
|
+
l.store "Enable Trackbacks by default", "Activer les rétroliens par défaut"
|
254
|
+
l.store "Enable comments by default", "Activer les commentaires par défaut"
|
255
|
+
l.store "Enable gravatars", "Activer les gratavars"
|
256
|
+
l.store "This setting allows you to disable trackbacks for every article in your blog. It won't remove existing trackbacks, but it will prevent any further attempt to add a trackback anywhere on your blog.", "Cette option vous permet de désactiver totalement les rétroliens sur votre blog. Ceci ne supprimera pas les rétroliens existants, mais empêchera tout nouveau rétrolien d'être créé"
|
257
|
+
l.store "Disable trackbacks site-wide", "Désactiver les trackbacks"
|
258
|
+
l.store "You can enable site wide feeback moderation. If you do so, no comment or trackback will appear on your blog unless you validate it", "Vous pouvez activez la modération des commentaires sur l'ensemble de votre site. Si vous le faites, aucun commentaire ou rétrolien ne sera publié sans une validation de votre part"
|
259
|
+
l.store "Enable feedback moderation", "Activer la modération des commentaires"
|
260
|
+
l.store "Show your email address", "Afficher votre adresse courriel"
|
261
|
+
l.store "Notification", "Notifications"
|
262
|
+
l.store "Typo can notify you when new articles or comments are posted", "Typo peut vous alerter quand de nouveaux articles et commentaires sont publiés"
|
263
|
+
l.store "Source Email", "Adresse courriel source"
|
264
|
+
l.store "Email address used by Typo to send notifications", "Adresse courriel utilisée par Typo pour l'envoi d'alertes"
|
265
|
+
l.store "Spam", "Spam"
|
266
|
+
l.store "Enabling spam protection will make typo compare the IP address of posters as well as the contents of their posts against local and remote blacklists. Good defense against spam bots", "La protection contre le spam permettra à typo de comparer l'adresse IP des commentateurs ainsi que le contenu de leurs commentaires avec une liste noire distante"
|
267
|
+
l.store "Enable spam protection", "Activer la protection contre le spam"
|
268
|
+
l.store "Typo can (optionally) use the %s spam-filtering service. You need to register with Akismet and receive an API key before you can use their service. If you have an Akismet key, enter it here", "Typo peut utiliser le service de lutte contre le spam %s. Vous devez vous enregistrer afin de pouvoir utiliser les services d'Akismet. Si vous possédez une clé Akismet, ajoutez là ici"
|
269
|
+
l.store "Akismet Key", "Clé Akismet"
|
270
|
+
l.store "You can optionally disable non-Ajax comments. Typo will always use Ajax for comment submission if Javascript is enabled, so non-Ajax comments are either from spammers or users without Javascript.", "Vous pouvez désactiver l'envoi des commentaires en AJAX. Typo utilisera toujours l'AJAX par défaut pour envoyer les commentaires si Javascript est activé. Désactiver l'AJAX sert donc aux gens ne disposant pas de Javascript et aux robots spammeurs"
|
271
|
+
l.store "Allow non-ajax comments", "Autoriser l'envoi de commentaires sans AJAX"
|
272
|
+
l.store "Disable comments after", "Désactiver les commentaires au bout de "
|
273
|
+
l.store "days", "jours"
|
274
|
+
l.store "Set to 0 to never disable comments", "Mettez cette option à 0 pour ne jamais désactiver les commentaires dans le temps"
|
275
|
+
l.store "Typo will automatically reject comments and trackbacks which contain over a certain amount of links in them", "Typo rejettera automatiquement les commentaires et les rétroliens contenant un certain nombre de liens"
|
276
|
+
l.store "Max Links", "Nombre de liens maximum"
|
277
|
+
l.store "Set to 0 to never reject comments", "Mettez cette option à 0 pour ne jamais rejeter les commentaires"
|
278
|
+
|
279
|
+
# app/views/admin/settings/index.html.erb
|
280
|
+
l.store "Your blog", "Votre blog "
|
281
|
+
l.store "Blog name", "Titre du blog"
|
282
|
+
l.store "Blog subtitle", "Sous-titre du blog"
|
283
|
+
l.store "Blog URL", "Adresse du blog"
|
284
|
+
l.store "Language", "Langue"
|
285
|
+
l.store "You can allow users to register to your blog. By default, they will register as contributors, an unpriviledged account level which grant them no rights but own a profile on the site. If you don't want users to register, you can thus add them by yourself in the users part of this admin.", ""
|
286
|
+
l.store "Allow users to register", "Autoriser les utilisateurs à s'enregistrer"
|
287
|
+
l.store "No", "Non"
|
288
|
+
l.store "Yes", "Oui"
|
289
|
+
l.store "Items to display in admin lists", "Nombre d'éléments à afficher dans les listes"
|
290
|
+
l.store "Cache", "Cache"
|
291
|
+
l.store "Sweep cache", "Vider le cache"
|
292
|
+
l.store "General settings", "Options générales"
|
293
|
+
|
294
|
+
# app/views/admin/settings/read.html.erb
|
295
|
+
l.store "Display", "Afficher"
|
296
|
+
l.store "articles on my homepage by default", "billet sur ma page d'accueil"
|
297
|
+
l.store "articles in my news feed by default", "billets dans mon flux RSS"
|
298
|
+
l.store "Show full article on feed", "Afficher la totalité du billet dans le flux RSS"
|
299
|
+
l.store "Feedburner ID", "Identifiant Feedburner"
|
300
|
+
l.store "Read", "Lire"
|
301
|
+
l.store 'You can use your Google Feedburner account instead of Typo feed URL. To enable this, fill this form with your Feedburner ID.',"Vous pouvez utiliser votre compte Google Feedburner au lieu de vos feeds Typo. Pour l'activer, remplisser ce formulaire avec votre identifiant Feedburner."
|
302
|
+
|
303
|
+
# app/views/admin/settings/seo.html.erb
|
304
|
+
l.store "Search Engine Optimisation", "Optimisation pour les moteurs de recherche"
|
305
|
+
l.store "Show blog name", "Afficher le titre du blog"
|
306
|
+
l.store "At the beginning of page title", "Au début du titre de la page"
|
307
|
+
l.store "At the end of page title", "À la fin du titre de la page"
|
308
|
+
l.store "Don't show blog name in page title", "Ne pas afficher le nom du blog dans le titre de la page"
|
309
|
+
l.store "Format of permalink", ""
|
310
|
+
l.store "Google Analytics", ""
|
311
|
+
l.store "Meta description", ""
|
312
|
+
l.store "Meta keywords", ""
|
313
|
+
l.store "Use RSS description", ""
|
314
|
+
l.store "Index categories", ""
|
315
|
+
l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every category page, removing them from search engines and preventing duplicate content issues", ""
|
316
|
+
l.store "Index tags", ""
|
317
|
+
l.store "Unchecking this box will add <code>noindex, follow</code> meta tags in every tags page, removing them from search engines and preventing duplicate content issues", ""
|
318
|
+
l.store "Robots.txt", ""
|
319
|
+
l.store "You robots.txt file is not writeable. Typo won't be able to write it", ""
|
320
|
+
l.store "Search Engine Optimization", ""
|
321
|
+
l.store "This will display", "Cela affichera"
|
322
|
+
l.store "Original article writen by", "Article original écrit par"
|
323
|
+
l.store "and published on", "et publié sur"
|
324
|
+
l.store "direct link to this article", "lien direct vers cet article"
|
325
|
+
l.store "If you are reading this article elsewhere than", "Si vous lisez cet article ailleurs que sur"
|
326
|
+
l.store "it has been illegally reproduced and without proper authorization", "c'est qu'il a été reproduit illégalement et sans autorisation"
|
327
|
+
l.store "at the bottom of each of your post in the RSS feed", "en bas de chacun de vos articles sur le flux RSS"
|
328
|
+
|
329
|
+
# app/views/admin/settings/update_database.html.erb
|
330
|
+
l.store "Information", "Informations"
|
331
|
+
l.store "Current database version", "Version actuelle de la base"
|
332
|
+
l.store "New database version", "Nouvelle version de la base"
|
333
|
+
l.store "Your database supports migrations", "Votre base de données supporte la mise à jour"
|
334
|
+
l.store "Needed migrations", "Mise à jour nécessaire"
|
335
|
+
l.store "You are up to date!", "Vous êtes à jour !"
|
336
|
+
l.store "Update database now", "Mettez votre base à jour"
|
337
|
+
l.store "may take a moment", "cela peut prendre un moment"
|
338
|
+
l.store "Database migration", "Mise à jour de la base de données"
|
339
|
+
l.store "yes", "oui"
|
340
|
+
l.store "no", "non"
|
341
|
+
|
342
|
+
# app/views/admin/settings/write.html.erb
|
343
|
+
l.store "Write", "Écrire"
|
344
|
+
l.store "Comments filter", "Mise en forme des commentaires"
|
345
|
+
l.store "When publishing articles, Typo can send trackbacks to websites that you link to. This should be disabled for private blogs as it will leak non-public information to sites that you're discussing. For public blogs, there's no real point in disabling this.", "Quand vous publiez un billet sur Typo, vous pouvez envoyer un rétrolien aux sites que vous liez. Cette fonctionnalité devrait être désactivée pour les blogs privée puisqu'elle permet de donner des informations à leur sujet à des tiers. Ceci ne s'impose cependant pas pour un blog public."
|
346
|
+
l.store "Send trackbacks", "Envoyer des rétroliens"
|
347
|
+
l.store "URLs to ping automatically", "Sites à alerter automatiquement"
|
348
|
+
l.store "Latitude, Longitude", "Latitude, Longitude"
|
349
|
+
l.store "your lattitude and longitude", "votre lattitude et votre longitude"
|
350
|
+
l.store "exemple", "par exemple"
|
351
|
+
l.store "Podcasts", "Podcasts"
|
352
|
+
l.store "The below settings act as defaults when you choose to publish an enclosure with iTunes metadata", "Les options suivantes seront ajoutées automatiquement quand vous publierez des enclosures contenant des métadonnées iTunes"
|
353
|
+
l.store "Setting for channel", "Options des canaux"
|
354
|
+
l.store "Optional Name", "Nom facultatif"
|
355
|
+
l.store "Not published by Apple", "Donnée non publiée par Apple"
|
356
|
+
l.store "Copyright Information", "Informations sur le copyright"
|
357
|
+
|
358
|
+
# app/views/admin/sidebar/_availables.html.erb
|
392
359
|
l.store "You have no plugins installed", "Aucun greffon n'est disponible"
|
393
|
-
|
394
|
-
#admin/sidebar/_publish.
|
360
|
+
|
361
|
+
# app/views/admin/sidebar/_publish.html.erb
|
395
362
|
l.store "Changes published", "Modifications effectuées"
|
396
|
-
|
397
|
-
#admin/sidebar/_target.
|
363
|
+
|
364
|
+
# app/views/admin/sidebar/_target.html.erb
|
398
365
|
l.store "Drag some plugins here to fill your sidebar", "Déplacez des greffons dans cet espace afin de remplir votre sidebar"
|
399
|
-
|
400
|
-
#admin/sidebar/index.
|
401
|
-
l.store "Choose a theme", "Sélectionnez un thème"
|
366
|
+
|
367
|
+
# app/views/admin/sidebar/index.html.erb
|
402
368
|
l.store "Drag and drop to change the sidebar items displayed on this blog. To remove items from the sidebar just click remove Changes are saved immediately, but not activated until you click the 'Publish' button", "Glissez / déplacez des éléments pour changer la sidebar de votre blog. Pour supprimer un élément de votre sidebar, cliquez simplement sur 'supprimer'. Les changements sont effectués immédiatement, mais ne seront pas actifs tant que vous n'aurez pas cliqué sur le bouton 'Publier'."
|
403
|
-
l.store "Publish changes", "Publier les modifications"
|
404
369
|
l.store "Available Items", "Éléments disponibles"
|
405
370
|
l.store "Active Sidebar items", "Éléments utilisés"
|
371
|
+
l.store "Get more plugins", "Télécharger d'autres plugins"
|
372
|
+
l.store "Sidebar", "Plugins"
|
373
|
+
l.store "Publish changes", "Publier les modifications"
|
406
374
|
|
407
|
-
#admin/
|
408
|
-
l.store "
|
409
|
-
|
410
|
-
|
411
|
-
l.store "
|
412
|
-
|
413
|
-
#admin/
|
414
|
-
l.store "
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
l.store "
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
l.store "
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
l.store "
|
427
|
-
|
428
|
-
#admin/
|
429
|
-
l.store "Create new text filter", "Ajouter une mise en forme de texte"
|
430
|
-
l.store "Customize Sidebar", "Personnaliser la sidebar"
|
431
|
-
l.store "Macros", "Macros"
|
432
|
-
|
433
|
-
#admin/textfilters/macro_help.rhtml
|
434
|
-
l.store "Macro Filter Help", "Aide des macros de filtrage"
|
435
|
-
l.store "Creating text filter", "Ajouter une nouvelle mise en forme de texte"
|
436
|
-
|
437
|
-
#admin/textfilters/show.rhtml
|
438
|
-
l.store "Text Filter Details", "Détails de la mise en forme"
|
439
|
-
l.store "Edit this filter", "Modifier cette mise en forme"
|
440
|
-
l.store "See help text for this filter", "Afficher l'aide de ce filtre"
|
441
|
-
|
442
|
-
#admin/themes/index.rhtml
|
443
|
-
l.store "Choose theme", "Choisissez un thème"
|
375
|
+
# app/views/admin/tags/_form.html.erb
|
376
|
+
l.store "Display name", "Nom affiché sur le site"
|
377
|
+
|
378
|
+
# app/views/admin/tags/_tags.html.erb
|
379
|
+
l.store "Display Name", "Nom affiché"
|
380
|
+
|
381
|
+
# app/views/admin/tags/destroy.html.erb
|
382
|
+
l.store "Are you sure you want to delete the tag", "Êtes-vous certain de vouloir supprimer le tag"
|
383
|
+
l.store "Delete this tag", "Supprimer ce tag"
|
384
|
+
|
385
|
+
# app/views/admin/tags/edit.html.erb
|
386
|
+
l.store "Editing ", "Vous éditez"
|
387
|
+
l.store "Back to tags list", "Revenir à la liste des tags"
|
388
|
+
|
389
|
+
# app/views/admin/tags/index.html.erb
|
390
|
+
l.store "Manage tags", "Gérer les tags"
|
391
|
+
|
392
|
+
# app/views/admin/themes/catalogue.html.erb
|
393
|
+
l.store "Sorry the theme catalogue is not available", "Désolé le catalogue de thèmes n'est pas disponible"
|
394
|
+
l.store "Theme catalogue", "Catalogue de thèmes"
|
395
|
+
|
396
|
+
# app/views/admin/themes/editor.html.erb
|
444
397
|
l.store "Theme editor", "Éditeur de thèmes"
|
445
|
-
l.store "
|
398
|
+
l.store "save", "Sauver"
|
399
|
+
|
400
|
+
# app/views/admin/themes/index.html.erb
|
446
401
|
l.store "Active theme", "Thème actif"
|
402
|
+
l.store "Get more themes", "Téléchargez d'autres thèmes"
|
447
403
|
l.store "You can download third party themes from officially supported %s ", "Vous pouvez télécharger des thèmes officiellement supportés sur %s "
|
448
|
-
l.store "
|
404
|
+
l.store "Typogarden", "Typogarden"
|
405
|
+
l.store "To install a theme you just need to upload the theme folder into your themes directory. Once a theme is uploaded, you should see it on this page.", ""
|
406
|
+
l.store "Choose a theme", "Sélectionnez un thème"
|
449
407
|
|
450
|
-
#admin/
|
451
|
-
l.store "
|
452
|
-
l.store "
|
453
|
-
|
454
|
-
|
455
|
-
l.store "
|
456
|
-
l.store "Editing trackback", "Modifier un rétrolien"
|
457
|
-
|
458
|
-
#admin/trackbacks/new.rhtml
|
459
|
-
l.store "Creating trackback", "Ajouter un rétrolien"
|
460
|
-
l.store "Edit this trackback", "Modifier ce rétrolien"
|
461
|
-
|
462
|
-
#admin/users/_form.rhtml
|
463
|
-
l.store "Jabber", "Jabber"
|
464
|
-
l.store "Password Confirmation", "Confirmer le mot de passe"
|
465
|
-
l.store "Send notification messages via email", "Envoyer des alertes par courriel"
|
466
|
-
l.store "Send notification messages when new articles are posted", "Envoyer des alertes à la publication de nouveaux billets"
|
467
|
-
l.store "Send notification messages when comments are posted", "Envoyer des alertes à la publication de nouveaux commentaires"
|
468
|
-
l.store "Login", "Login"
|
408
|
+
# app/views/admin/users/_form.html.erb
|
409
|
+
l.store "Personal information", "Informations personnelles"
|
410
|
+
l.store "Firstname", "Prénom"
|
411
|
+
l.store "Lastname", "Nom"
|
412
|
+
l.store "Nickname", "Surnom"
|
413
|
+
l.store "Blog settings", "Configuration du blog"
|
469
414
|
l.store "Profile", "Profil"
|
470
|
-
l.store "
|
471
|
-
l.store "
|
472
|
-
l.store "
|
415
|
+
l.store "State", "État"
|
416
|
+
l.store "Active", "Actif"
|
417
|
+
l.store "Inactive", "Inactif"
|
418
|
+
l.store "Mandatory", "Obligatoire"
|
473
419
|
l.store "Password confirmation", "Confirmation du mot de passe"
|
420
|
+
l.store "Editor", "Éditeur"
|
421
|
+
l.store "Use visual rich editor", "Utiliser l'éditeur visuel"
|
422
|
+
l.store "Use simple editor", "Utiliser l'éditeur simplifié"
|
474
423
|
l.store "Send notification messages via email", "Envoi de notification des messages par email"
|
475
424
|
l.store "Send notification messages when new articles are posted", "Envoi de notification de messages quand de nouveaux articles sont postés"
|
476
425
|
l.store "Send notification messages when comments are posted", "Envoi de notification de messages quand des commentaires sont postés"
|
426
|
+
l.store "Contact options", "Options de contact"
|
427
|
+
l.store "Your site", "Votre site"
|
428
|
+
l.store "display url on public profile", "Afficher votre site sur votre profil public"
|
429
|
+
l.store "Your MSN", "Adresse MSN"
|
430
|
+
l.store "display MSN ID on public profile", "Afficher votre adresse MSN sur votre profil public"
|
431
|
+
l.store "Your Yahoo ID", "Identifiant Yahoo"
|
432
|
+
l.store "display Yahoo! ID on public profile", "Afficher votre identifiant Yahoo sur votre profil public"
|
433
|
+
l.store "Your Jabber ID", "Votre identifiant Jabber"
|
434
|
+
l.store "display Jabber ID on public profile", "Afficher votre identifiant Jabber sur votre profil public"
|
435
|
+
l.store "Your AIM id", "Identifiant AIM"
|
436
|
+
l.store "display AIM ID on public profile", "Afficher votre identifiant AIM sur votre profil public"
|
437
|
+
l.store "Your Twitter username", "Identifiant Twitter"
|
438
|
+
l.store "display twitter on public profile", "Afficher votre identifiant Twitter sur votre profil public"
|
439
|
+
l.store "Tell us more about you", "Dites nous en plus à votre sujet"
|
477
440
|
|
478
|
-
#admin/
|
479
|
-
l.store "Add User", "Ajout d'utilisateur"
|
480
|
-
l.store "Users", "Utilisateurs"
|
481
|
-
|
482
|
-
#admin/user/_user.rhtml
|
483
|
-
l.store "Number of Articles", "Nombre de billets"
|
484
|
-
l.store "Number of Comments", "Nombre de commentaires"
|
485
|
-
l.store "Notified", "Alerté"
|
486
|
-
l.store "via email", "par email"
|
487
|
-
|
488
|
-
#admin/user/destroy.rhtml
|
489
|
-
l.store "Show this user", "Voir cet utilisateur"
|
441
|
+
# app/views/admin/users/destroy.html.erb
|
490
442
|
l.store "Really delete user", "Vraiment supprimer cet utilisateur"
|
491
|
-
|
492
|
-
|
443
|
+
l.store "Users", "Utilisateurs"
|
444
|
+
|
445
|
+
# app/views/admin/users/edit.html.erb
|
493
446
|
l.store "Edit User", "Modifier un utilisateur"
|
494
|
-
|
495
|
-
|
496
|
-
l.store "
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
l.store "
|
504
|
-
l.store "
|
505
|
-
|
506
|
-
|
507
|
-
#articles/_comment.rhtml
|
447
|
+
|
448
|
+
# app/views/admin/users/index.html.erb
|
449
|
+
l.store "Comments", "Commentaires"
|
450
|
+
l.store "%s user", "%s"
|
451
|
+
|
452
|
+
# app/views/admin/users/new.html.erb
|
453
|
+
l.store "Add User", "Ajouter un utilisateur"
|
454
|
+
|
455
|
+
# app/views/articles/_article.html.erb
|
456
|
+
l.store "Posted by", "Publié par"
|
457
|
+
l.store "Continue reading...", "Lire la suite..."
|
458
|
+
|
459
|
+
# app/views/articles/_comment.html.erb
|
508
460
|
l.store "said", "a dit"
|
509
461
|
l.store "This comment has been flagged for moderator approval. It won't appear on this blog until the author approves it", "Ce commentaire a été envoyé à la modération. Il ne sera affiché qu'une fois approuvé par un modérateur"
|
510
|
-
|
511
|
-
#articles/_comment_box.
|
462
|
+
|
463
|
+
# app/views/articles/_comment_box.html.erb
|
512
464
|
l.store "Your name", "Votre nom "
|
513
|
-
l.store "
|
465
|
+
l.store "(leave url/email »)", ""
|
514
466
|
l.store "Your email", "Votre courriel"
|
515
467
|
l.store "Your message", "Votre commentaire"
|
516
468
|
l.store "Comment Markup Help", "Aide sur le balisage des commentaires"
|
517
469
|
l.store "Preview comment", "Prévisualiser le commentaire"
|
518
|
-
|
519
|
-
#articles/
|
470
|
+
|
471
|
+
# app/views/articles/_comment_failed.html.erb
|
472
|
+
l.store "Oops, something wrong happened, the comment could not be saved", ""
|
473
|
+
|
474
|
+
# app/views/articles/_trackback.html.erb
|
520
475
|
l.store "From", "De"
|
521
|
-
|
522
|
-
#articles/archives.
|
476
|
+
|
477
|
+
# app/views/articles/archives.html.erb
|
523
478
|
l.store "No articles found", "Aucun article ne correspond à la recherche"
|
524
|
-
|
525
|
-
|
479
|
+
l.store "posted in", "publié dans"
|
480
|
+
|
481
|
+
# app/views/articles/comment_preview.html.erb
|
526
482
|
l.store "is about to say", "va dire"
|
527
|
-
|
528
|
-
#articles/groupings.
|
483
|
+
|
484
|
+
# app/views/articles/groupings.html.erb
|
529
485
|
l.store "There are", "Il y a"
|
530
|
-
|
531
|
-
#articles/index.
|
486
|
+
|
487
|
+
# app/views/articles/index.html.erb
|
532
488
|
l.store "Read more", "Lire la suite"
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
l.store "
|
537
|
-
l.store "Use the following link to trackback from your own site", "Utilisez le lien
|
489
|
+
|
490
|
+
# app/views/articles/read.html.erb
|
491
|
+
l.store "Leave a response", "Réagir à ce billet"
|
492
|
+
l.store "Trackbacks", ""
|
493
|
+
l.store "Use the following link to trackback from your own site", "Utilisez le lien ci-dessous pour envoyer un trackback depuis votre site"
|
538
494
|
l.store "RSS feed for this post", "Flux RSS de ce billet"
|
539
495
|
l.store "trackback uri", "URL de rétrolien"
|
540
496
|
l.store "Comments are disabled", "Les commentaires sont désactivés"
|
541
|
-
|
542
|
-
l.store "Pictures from", "Images de"
|
543
|
-
|
544
|
-
#vendor/plugins/aimpresence_sidebar/aimpresence_sidebar.rb
|
545
|
-
l.store "AIM Presence", "Statut AIM"
|
546
|
-
|
547
|
-
#vendor/plugins/aimpresence_sidebar/views/content.rb
|
548
|
-
l.store "AIM Status", "Statut AIM"
|
549
|
-
|
550
|
-
#vendor/plugins/xml_sidebar/xml_sidebar.rb
|
551
|
-
l.store "XML Syndication", "Syndication XML"
|
552
|
-
|
553
|
-
#vendor/plugins/xml_sidebar/xml_sidebar.rb
|
554
|
-
l.store "Syndicate", "Suivre ce blog"
|
555
|
-
|
556
|
-
#vendor/plugins/archives_sidebar/views/content.rb
|
557
|
-
l.store "Archives", "Archives"
|
558
|
-
|
559
|
-
#app/helpers/admin/base_helper.rb
|
560
|
-
l.store "Back to overview", "Revenir à la liste"
|
561
|
-
l.store "log out", "déconnexion"
|
562
|
-
|
563
|
-
#app/controller/admin/cache_controller.rb
|
564
|
-
l.store "Cache was cleared", "Le cache est vidé"
|
565
|
-
l.store "HTML was cleared", "l'HTML est vidé"
|
566
497
|
|
567
|
-
#app/
|
568
|
-
l.store "
|
569
|
-
l.store "
|
570
|
-
l.store "
|
498
|
+
# app/views/authors/show.html.erb
|
499
|
+
l.store "Web site:", "Site web:"
|
500
|
+
l.store "MSN:", "MSN :"
|
501
|
+
l.store "Yahoo:", "Yahoo :"
|
502
|
+
l.store "Jabber:", "Jabber :"
|
503
|
+
l.store "AIM:", "AIM :"
|
504
|
+
l.store "Twitter:", "Twitter :"
|
505
|
+
l.store "About %s", "À propos de %s"
|
506
|
+
l.store "This author has not published any article yet", "Cet utilisateur n'a publié aucun article"
|
571
507
|
|
572
|
-
#app/
|
573
|
-
l.store "
|
574
|
-
l.store "A new message was posted to ", "Une nouveau message a été posté sur "
|
575
|
-
|
576
|
-
#app/helper/application_helper.rb
|
577
|
-
l.store "no ", "aucun "
|
578
|
-
|
579
|
-
#app/controller/admin/resource_controller.rb
|
580
|
-
l.store "File uploaded: ", "Fichier uploader: "
|
581
|
-
l.store "Unable to upload", "impossible d'uploader"
|
582
|
-
l.store "Metadata was successfully removed.", "Les Metadata ont été supprimé avec succès."
|
583
|
-
l.store "Metadata was successfully updated.", "Les Metadata ont été mis à jour avec succès."
|
584
|
-
l.store "Not all metadata was defined correctly.", "Aucun metada n'a été défini correctement."
|
585
|
-
l.store "Content Type was successfully updated.", "Le type du contenu a été mis à jour avec succès."
|
586
|
-
l.store "Error occurred while updating Content Type.", "Une erreur est survenue lors de la mise à jour du type du contenu."
|
587
|
-
l.store "complete", "complet"
|
588
|
-
|
589
|
-
#app/controller/admin/user_controller.rb
|
590
|
-
l.store "User was successfully updated.", "L'utilisateur a été mis à jour avec succès."
|
591
|
-
l.store "User was successfully created.", "L'utilisateur a été créé avec succès."
|
508
|
+
# app/views/comments/show.html.erb
|
509
|
+
l.store "This comment has been flagged for moderator approval.", "Ce commentaire est en attente de modération"
|
592
510
|
|
511
|
+
# app/views/layouts/administration.html.erb
|
512
|
+
l.store "log out", "déconnexion"
|
513
|
+
l.store "your blog", "votre blog"
|
514
|
+
l.store "Dashboard", "Tableau de bord"
|
593
515
|
|
594
|
-
|
595
|
-
# Themes
|
596
|
-
l.store "Home", "Accueil"
|
597
|
-
l.store "About", "À propos"
|
598
|
-
l.store "Designed by %s ported to typo by %s ", "Design par %s porté sous Typo par %s"
|
516
|
+
# test/mocks/themes/typographic/layouts/default.html.erb
|
599
517
|
l.store "Powered by %s", "Propulsé par %s"
|
600
|
-
l.store "
|
601
|
-
|
602
|
-
|
603
|
-
l.store "Posted by", "Publié par"
|
604
|
-
l.store "January", "Janvier"
|
605
|
-
l.store "February", "Février"
|
606
|
-
l.store "March", "Mars"
|
607
|
-
l.store "April", "Avril"
|
608
|
-
l.store "May", "Mai"
|
609
|
-
l.store "June", "Juin"
|
610
|
-
l.store "July", "Juillet"
|
611
|
-
l.store "August", "Août"
|
612
|
-
l.store "September", "Septembre"
|
613
|
-
l.store "October", "Octobre"
|
614
|
-
l.store "November", "Novembre"
|
615
|
-
l.store "December", "Décembre"
|
518
|
+
l.store "Designed by %s ", "Design par %s"
|
519
|
+
|
520
|
+
# test/mocks/themes/typographic/views/articles/_article.html.erb
|
616
521
|
l.store "This entry was posted on %s", "Ce billet a été posté le %s"
|
617
|
-
l.store "Posted in", "Publié sous"
|
618
522
|
l.store "and %s", "et %s"
|
619
|
-
l.store "Atom feed", "flux Atom"
|
620
523
|
l.store "You can follow any any response to this entry through the %s", "Vous pouvez suivre la discussion autour de cet article via le %s"
|
524
|
+
l.store "Atom feed", "flux Atom"
|
621
525
|
l.store "You can leave a %s", "Vous pouvez déposer un %s"
|
622
526
|
l.store "or a %s from your own site", "ou un %s depuis votre site"
|
527
|
+
l.store "Read full article", "Lien permanent"
|
528
|
+
l.store "comment", "commentaire"
|
529
|
+
l.store "trackback", "trackback"
|
530
|
+
l.store "no comments", "aucun commentaire"
|
531
|
+
l.store "1 comment", "1 commentaire"
|
532
|
+
l.store "%d comments", "%d commentaires"
|
533
|
+
|
534
|
+
# test/mocks/themes/typographic/views/articles/_comment.html.erb
|
623
535
|
l.store "later", "plus tard"
|
536
|
+
|
537
|
+
# test/mocks/themes/typographic/views/articles/_comment_form.html.erb
|
624
538
|
l.store "Leave a comment", "laisser un commentaire"
|
625
539
|
l.store "Name %s", "Votre nom %s"
|
626
|
-
l.store "required", "obligatoire"
|
627
|
-
l.store "Preview", "Prévisualiser "
|
628
540
|
l.store "enabled", "activés"
|
629
541
|
l.store "never displayed", "jamais affiché"
|
630
|
-
l.store "Comments", "Commentaires"
|
631
542
|
l.store "Website", "Votre site"
|
632
543
|
l.store "Textile enabled", "Textile activé"
|
633
544
|
l.store "Markdown enabled", "Markdown activé"
|
545
|
+
l.store "required", "obligatoire"
|
546
|
+
l.store "Preview", "Prévisualiser "
|
634
547
|
l.store "Submit", "Envoyer"
|
635
|
-
|
636
|
-
|
637
|
-
l.store "
|
638
|
-
|
639
|
-
|
548
|
+
|
549
|
+
# test/mocks/themes/typographic/views/articles/_comment_list.html.erb
|
550
|
+
l.store "No comments", "Pas de commentaires"
|
551
|
+
|
552
|
+
# test/mocks/themes/typographic/views/shared/_search.html.erb
|
640
553
|
l.store "Searching", "Recherche en cours"
|
554
|
+
|
555
|
+
# themes/dirtylicious/layouts/default.html.erb
|
556
|
+
l.store "Home", "Accueil"
|
557
|
+
l.store "About", "À propos"
|
558
|
+
l.store "Designed by %s ported to typo by %s ", "Design par %s porté sous Typo par %s"
|
559
|
+
|
560
|
+
# themes/scribbish/layouts/default.html.erb
|
561
|
+
l.store "styled with %s", "stylé avec %s"
|
562
|
+
|
563
|
+
# themes/scribbish/views/articles/_article.html.erb
|
564
|
+
l.store "Meta", "Méta"
|
641
565
|
l.store "permalink", "lien permanent"
|
642
|
-
|
566
|
+
|
567
|
+
# themes/scribbish/views/articles/_comment_form.html.erb
|
643
568
|
l.store "leave url/email", "laissez votre url/courriel"
|
644
|
-
|
645
|
-
|
646
|
-
l.store "
|
647
|
-
|
648
|
-
|
649
|
-
l.store "
|
650
|
-
|
569
|
+
|
570
|
+
# vendor/plugins/archives_sidebar/views/content.rhtml
|
571
|
+
l.store "Archives", "Archives"
|
572
|
+
|
573
|
+
# vendor/plugins/authors_sidebar/views/content.rhtml
|
574
|
+
l.store "Authors", "Auteurs"
|
575
|
+
|
576
|
+
# vendor/plugins/xml_sidebar/views/content.rhtml
|
577
|
+
l.store "Syndicate", "Suivre ce blog"
|
578
|
+
|
579
|
+
# app/controllers/accounts_controller.rb
|
580
|
+
l.store "Login successful", "Connexion réussie"
|
581
|
+
l.store "Login unsuccessful", "Échec de la connexion"
|
582
|
+
l.store "Successfully logged out", "Vous êtes maintenant déconnecté"
|
583
|
+
l.store "login", "identifiant"
|
584
|
+
l.store "signup", "s'identifier"
|
585
|
+
|
586
|
+
# app/controllers/admin/blacklist_controller.rb
|
587
|
+
l.store "Blacklist Pattern was successfully created.", "Cette entrée a été créée avec succès"
|
588
|
+
l.store "Blacklist Pattern could not be created.", "Cette entrée n'a pas pu être créée"
|
589
|
+
l.store "BlacklistPattern was successfully updated.", "Cette entrée a été mise à jour avec succès"
|
590
|
+
l.store "Blacklist Pattern could not be updated.", "Cette entrée n'a pas pu être mise à jour"
|
591
|
+
|
592
|
+
# app/controllers/admin/cache_controller.rb
|
593
|
+
l.store "HTML was cleared", "le cache a est vidé"
|
594
|
+
|
595
|
+
# app/controllers/admin/categories_controller.rb
|
596
|
+
l.store "Category was successfully saved.", "La catégorie a été enregistrée avec succès"
|
597
|
+
l.store "Category could not be saved.", "La catégorie n'a pas pu être sauvée"
|
598
|
+
|
599
|
+
# app/controllers/admin/content_controller.rb
|
600
|
+
l.store "Error, you are not allowed to perform this action", "Erreur, vous n'avez pas les droits requis pour effectuer cette action"
|
601
|
+
l.store "Article was successfully created", "Cet article a été créé avec succès"
|
602
|
+
l.store "Article was successfully updated.", "Cet article a été mis à jour avec succès"
|
603
|
+
|
604
|
+
# app/controllers/admin/feedback_controller.rb
|
605
|
+
l.store "Deleted", "Supprimé"
|
606
|
+
l.store "Not found", "Introuvable"
|
607
|
+
l.store "Deleted %d item(s)", "%d commentaires ont été supprimés"
|
608
|
+
l.store "Marked %d item(s) as Ham", "%d commentaires ont été validés"
|
609
|
+
l.store "Marked %d item(s) as Spam", "%d commentaires ont été marqués comme spam"
|
610
|
+
l.store "Confirmed classification of %s item(s)", "La classification de %d commentaires a été validée"
|
611
|
+
l.store "Not implemented", "Non implémenté"
|
612
|
+
l.store "All spam have been deleted", "Tout le spam a été supprimé"
|
613
|
+
l.store "Comment was successfully created.", "Commentaire crée avec succès."
|
614
|
+
l.store "Comment was successfully updated.", "Commentaire mis à jour avec succès."
|
615
|
+
|
616
|
+
# app/controllers/admin/pages_controller.rb
|
617
|
+
l.store "Page was successfully created.", "Cette page a été créée avec succès"
|
618
|
+
l.store "Page was successfully updated.", "Cette page a été mise à jour avec succès"
|
619
|
+
|
620
|
+
# app/controllers/admin/profiles_controller.rb
|
621
|
+
l.store "User was successfully updated.", "L'utilisateur a été mis à jour avec succès."
|
622
|
+
|
623
|
+
# app/controllers/admin/resources_controller.rb
|
624
|
+
l.store "Error occurred while updating Content Type.", "Une erreur est survenue lors de la mise à jour du type du contenu."
|
625
|
+
l.store "complete", "complet"
|
626
|
+
l.store "File uploaded: ", "Fichier uploader: "
|
627
|
+
l.store "Unable to upload", "impossible d'uploader"
|
628
|
+
l.store "Metadata was successfully removed.", "Les Metadata ont été supprimé avec succès."
|
629
|
+
l.store "Metadata was successfully updated.", "Les Metadata ont été mis à jour avec succès."
|
630
|
+
l.store "Not all metadata was defined correctly.", "Aucun metada n'a été défini correctement."
|
631
|
+
l.store "Content Type was successfully updated.", "Le type du contenu a été mis à jour avec succès."
|
632
|
+
|
633
|
+
# app/controllers/admin/settings_controller.rb
|
634
|
+
l.store "Settings", "Configurations"
|
635
|
+
l.store "Please review and save the settings before continuing", "S'il vérifiez et enregistrer votre configuration avant de continuer"
|
636
|
+
l.store "config updated.", "Configuration mis à jour."
|
637
|
+
|
638
|
+
# app/controllers/admin/sidebar_controller.rb
|
639
|
+
l.store "It seems something went wrong. Maybe some of your sidebars are actually missing and you should either reinstall them or remove them manually", "Une erreur s'est produite. Un ou plusieurs plugins sont probablement manquants ou en erreur. Peut-être devriez-vous les supprimer ou les réinstaller"
|
640
|
+
|
641
|
+
# app/controllers/admin/tags_controller.rb
|
642
|
+
l.store "Tag was successfully updated.", "Le tag a été mis à jour avec succès"
|
643
|
+
|
644
|
+
# app/controllers/admin/themes_controller.rb
|
645
|
+
l.store "Theme changed successfully", "Le thème a été changé avec succès"
|
646
|
+
l.store "You are not authorized to open this file", "Vous n'êtes pas autorisé à ouvrir ce fichier"
|
647
|
+
l.store "File saved successfully", "Le fichier a été enregistré avec succès"
|
648
|
+
l.store "Unable to write file", "Impossible d'écrire le fichier"
|
649
|
+
|
650
|
+
# app/controllers/admin/users_controller.rb
|
651
|
+
l.store "User was successfully created.", "L'utilisateur a été créé avec succès."
|
652
|
+
|
653
|
+
# app/controllers/articles_controller.rb
|
654
|
+
l.store "No posts found...", "Aucun article n'a été trouvé"
|
655
|
+
l.store "Archives for", "Archives de"
|
656
|
+
l.store "Archives for ", "Archives de"
|
657
|
+
l.store ", Articles for ", ", articles pour "
|
658
|
+
|
659
|
+
# app/controllers/grouping_controller.rb
|
660
|
+
l.store "page", "page"
|
661
|
+
l.store "everything about", "tout sur"
|
662
|
+
|
663
|
+
# app/helpers/admin/base_helper.rb
|
664
|
+
l.store "Store", "Stocker"
|
665
|
+
l.store "show", "afficher"
|
666
|
+
l.store "Show content", "Afficher le contenu"
|
667
|
+
l.store "Delete content", "Supprimer le contenu"
|
668
|
+
l.store "There is no %s yet. Why don't you start and create one?", "Il n'y a aucun %s, pourquoi n'en créeriez-vous pas ?"
|
669
|
+
l.store "published", "publié"
|
670
|
+
l.store "unpublished", "hors ligne"
|
671
|
+
l.store "Show help on Typo macros", "Afficher l'aide sur les macros Typo"
|
672
|
+
l.store "Back to overview", "Revenir à la liste"
|
673
|
+
l.store "Tag", "Tag"
|
674
|
+
|
675
|
+
# app/helpers/admin/content_helper.rb
|
676
|
+
l.store "Destroy this draft", "Supprimer ce brouillon"
|
677
|
+
|
678
|
+
# app/helpers/application_helper.rb
|
651
679
|
# Dates
|
652
680
|
l.store "Mon", "Lun"
|
653
681
|
l.store "Tue", "Mar"
|
@@ -690,6 +718,10 @@ Localization.define('fr_FR') do |l|
|
|
690
718
|
l.store "%%a, %%d %%b %%Y %%H:%%M:%%S GMT", Proc.new {|date|
|
691
719
|
sprintf( date.strftime("%%s %d %%s %Y %H:%M:%S GMT"), _(date.strftime("%a")), _(date.strftime("%b")).downcase )
|
692
720
|
}
|
721
|
+
l.store "%%a, %%d %%b %%Y %%H:%%M", Proc.new {|date|
|
722
|
+
sprintf( date.strftime("%%s %d %%s %Y %H:%M"), _(date.strftime("%a")), _(date.strftime("%b")).downcase )
|
723
|
+
}
|
724
|
+
|
693
725
|
l.store "%%d. %%b", Proc.new {|date|
|
694
726
|
sprintf( date.strftime("%d. %%s"), _(date.strftime("%b")).downcase )
|
695
727
|
}
|
@@ -702,4 +734,27 @@ Localization.define('fr_FR') do |l|
|
|
702
734
|
l.store "at the bottom of each of your post in the RSS feed", "en bas de chacun de vos articles sur le flux RSS"
|
703
735
|
l.store "for", "pour"
|
704
736
|
l.store "everything about", "tout sur"
|
737
|
+
|
738
|
+
l.store "no trackbacks", "aucun rétrolien"
|
739
|
+
l.store "1 trackback", "1 rétrolien"
|
740
|
+
l.store "%d trackbacks", "%d rétroliens"
|
741
|
+
|
742
|
+
# app/helpers/content_helper.rb
|
743
|
+
l.store "Posted in", "Publié sous"
|
744
|
+
l.store "no posts", "aucun article"
|
745
|
+
l.store "1 post", "1 article"
|
746
|
+
l.store "%d posts", "%d articles"
|
747
|
+
|
748
|
+
# app/models/blog.rb
|
749
|
+
l.store "Can't end in .rss or .atom. These are reserved to be used for feed URLs", "Ne peut pas se terminer par .rss ou .atom. Cette extension est réservée aux flux de syndication"
|
750
|
+
l.store "You need a permalink format with an identifier : %%month%%, %%year%%, %%day%%, %%title%%", "Vous devez spécifier un identifiant : %%month%%, %%year%%, %%day%%, %%title%%"
|
751
|
+
|
752
|
+
# app/models/feedback/states.rb
|
753
|
+
l.store "Unclassified", ""
|
754
|
+
l.store "Just Presumed Ham", ""
|
755
|
+
l.store "Ham?", ""
|
756
|
+
l.store "Just Marked As Ham", ""
|
757
|
+
l.store "Ham", ""
|
758
|
+
l.store "Spam?", ""
|
759
|
+
l.store "Just Marked As Spam", ""
|
705
760
|
end
|