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
data/vendor/bluecloth/test.rb
DELETED
@@ -1,117 +0,0 @@
|
|
1
|
-
#!/usr/bin/ruby
|
2
|
-
#
|
3
|
-
# Test suite for BlueCloth classes
|
4
|
-
# $Id$
|
5
|
-
#
|
6
|
-
|
7
|
-
BEGIN {
|
8
|
-
$basedir = File::dirname( __FILE__ )
|
9
|
-
["lib", "tests", "redist"].each do |subdir|
|
10
|
-
$LOAD_PATH.unshift File::join( $basedir, subdir )
|
11
|
-
end
|
12
|
-
|
13
|
-
require "#{$basedir}/utils"
|
14
|
-
include UtilityFunctions
|
15
|
-
}
|
16
|
-
|
17
|
-
verboseOff {
|
18
|
-
require 'bctestcase'
|
19
|
-
require 'find'
|
20
|
-
require 'test/unit'
|
21
|
-
require 'test/unit/testsuite'
|
22
|
-
require 'test/unit/ui/console/testrunner'
|
23
|
-
require 'optparse'
|
24
|
-
}
|
25
|
-
|
26
|
-
# Turn off output buffering
|
27
|
-
$stderr.sync = $stdout.sync = true
|
28
|
-
$DebugPattern = nil
|
29
|
-
|
30
|
-
# Initialize variables
|
31
|
-
safelevel = 0
|
32
|
-
patterns = []
|
33
|
-
requires = []
|
34
|
-
|
35
|
-
# Parse command-line switches
|
36
|
-
ARGV.options {|oparser|
|
37
|
-
oparser.banner = "Usage: #$0 [options] [TARGETS]\n"
|
38
|
-
|
39
|
-
oparser.on( "--debug[=PATTERN]", "-d[=PATTERN]", String,
|
40
|
-
"Turn debugging on (for tests which match PATTERN)" ) {|arg|
|
41
|
-
if arg
|
42
|
-
$DebugPattern = Regexp::new( arg )
|
43
|
-
puts "Turned debugging on for %p." % $DebugPattern
|
44
|
-
else
|
45
|
-
$DEBUG = true
|
46
|
-
debugMsg "Turned debugging on globally."
|
47
|
-
end
|
48
|
-
}
|
49
|
-
|
50
|
-
oparser.on( "--verbose", "-v", TrueClass, "Make progress verbose" ) {
|
51
|
-
$VERBOSE = true
|
52
|
-
debugMsg "Turned verbose on."
|
53
|
-
}
|
54
|
-
|
55
|
-
# Handle the 'help' option
|
56
|
-
oparser.on( "--help", "-h", "Display this text." ) {
|
57
|
-
$stderr.puts oparser
|
58
|
-
exit!(0)
|
59
|
-
}
|
60
|
-
|
61
|
-
oparser.parse!
|
62
|
-
}
|
63
|
-
|
64
|
-
# Parse test patterns
|
65
|
-
ARGV.each {|pat| patterns << Regexp::new( pat, Regexp::IGNORECASE )}
|
66
|
-
$stderr.puts "#{patterns.length} patterns given on the command line"
|
67
|
-
|
68
|
-
### Load all the tests from the tests dir
|
69
|
-
Find.find("#{$basedir}/tests") {|file|
|
70
|
-
Find.prune if /\/\./ =~ file or /~$/ =~ file
|
71
|
-
Find.prune if /TEMPLATE/ =~ file
|
72
|
-
next if File.stat( file ).directory?
|
73
|
-
|
74
|
-
unless patterns.empty?
|
75
|
-
Find.prune unless patterns.find {|pat| pat =~ file}
|
76
|
-
end
|
77
|
-
|
78
|
-
debugMsg "Considering '%s': " % file
|
79
|
-
next unless file =~ /\.tests.rb$/
|
80
|
-
debugMsg "Requiring '%s'..." % file
|
81
|
-
require "#{file}"
|
82
|
-
requires << file
|
83
|
-
}
|
84
|
-
|
85
|
-
$stderr.puts "Required #{requires.length} files."
|
86
|
-
unless patterns.empty?
|
87
|
-
$stderr.puts "[" + requires.sort.join( ", " ) + "]"
|
88
|
-
end
|
89
|
-
|
90
|
-
# Build the test suite
|
91
|
-
class BlueClothTests
|
92
|
-
class << self
|
93
|
-
def suite
|
94
|
-
suite = Test::Unit::TestSuite.new( "BlueCloth" )
|
95
|
-
|
96
|
-
if suite.respond_to?( :add )
|
97
|
-
ObjectSpace.each_object( Class ) {|klass|
|
98
|
-
suite.add( klass.suite ) if klass < BlueCloth::TestCase
|
99
|
-
}
|
100
|
-
else
|
101
|
-
ObjectSpace.each_object( Class ) {|klass|
|
102
|
-
suite << klass.suite if klass < BlueCloth::TestCase
|
103
|
-
}
|
104
|
-
end
|
105
|
-
|
106
|
-
return suite
|
107
|
-
end
|
108
|
-
end
|
109
|
-
end
|
110
|
-
|
111
|
-
# Run tests
|
112
|
-
$SAFE = safelevel
|
113
|
-
Test::Unit::UI::Console::TestRunner.new( BlueClothTests ).start
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
@@ -1,71 +0,0 @@
|
|
1
|
-
#!/usr/bin/ruby
|
2
|
-
#
|
3
|
-
# Unit test for the BlueCloth class object
|
4
|
-
# $Id: TEMPLATE.rb.tpl,v 1.2 2003/09/11 04:59:51 deveiant Exp $
|
5
|
-
#
|
6
|
-
# Copyright (c) 2004 The FaerieMUD Consortium.
|
7
|
-
#
|
8
|
-
|
9
|
-
if !defined?( BlueCloth ) || !defined?( BlueCloth::TestCase )
|
10
|
-
basedir = File::dirname( __FILE__ )
|
11
|
-
require File::join( basedir, 'bctestcase' )
|
12
|
-
end
|
13
|
-
|
14
|
-
|
15
|
-
### This test case tests ...
|
16
|
-
class BlueClothClassTestCase < BlueCloth::TestCase
|
17
|
-
|
18
|
-
TestString = "foo"
|
19
|
-
|
20
|
-
def test_00_class_constant
|
21
|
-
printTestHeader "BlueCloth: Class Constant"
|
22
|
-
|
23
|
-
assert Object::constants.include?( "BlueCloth" ),
|
24
|
-
"No BlueCloth constant in Object"
|
25
|
-
assert_instance_of Class, BlueCloth
|
26
|
-
end
|
27
|
-
|
28
|
-
def test_01_instantiation
|
29
|
-
printTestHeader "BlueCloth: Instantiation"
|
30
|
-
rval = nil
|
31
|
-
|
32
|
-
# With no argument... ("")
|
33
|
-
assert_nothing_raised {
|
34
|
-
rval = BlueCloth::new
|
35
|
-
}
|
36
|
-
assert_instance_of BlueCloth, rval
|
37
|
-
assert_kind_of String, rval
|
38
|
-
assert_equal "", rval
|
39
|
-
|
40
|
-
# String argument
|
41
|
-
assert_nothing_raised {
|
42
|
-
rval = BlueCloth::new TestString
|
43
|
-
}
|
44
|
-
assert_instance_of BlueCloth, rval
|
45
|
-
assert_kind_of String, rval
|
46
|
-
assert_equal TestString, rval
|
47
|
-
|
48
|
-
addSetupBlock {
|
49
|
-
debugMsg "Creating a new BlueCloth"
|
50
|
-
@obj = BlueCloth::new( TestString )
|
51
|
-
}
|
52
|
-
addTeardownBlock {
|
53
|
-
@obj = nil
|
54
|
-
}
|
55
|
-
end
|
56
|
-
|
57
|
-
def test_02_duplication
|
58
|
-
printTestHeader "BlueCloth: Duplication"
|
59
|
-
rval = nil
|
60
|
-
|
61
|
-
assert_nothing_raised {
|
62
|
-
rval = @obj.dup
|
63
|
-
}
|
64
|
-
assert_instance_of BlueCloth, rval
|
65
|
-
assert_kind_of String, rval
|
66
|
-
assert_equal TestString, rval
|
67
|
-
end
|
68
|
-
|
69
|
-
|
70
|
-
end
|
71
|
-
|
@@ -1,1527 +0,0 @@
|
|
1
|
-
#!/usr/bin/ruby
|
2
|
-
#
|
3
|
-
# Test case for BlueCloth Markdown transforms.
|
4
|
-
# $Id: TEMPLATE.rb.tpl,v 1.2 2003/09/11 04:59:51 deveiant Exp $
|
5
|
-
#
|
6
|
-
# Copyright (c) 2004 The FaerieMUD Consortium.
|
7
|
-
#
|
8
|
-
|
9
|
-
if !defined?( BlueCloth ) || !defined?( BlueCloth::TestCase )
|
10
|
-
basedir = File::dirname( __FILE__ )
|
11
|
-
require File::join( basedir, 'bctestcase' )
|
12
|
-
end
|
13
|
-
|
14
|
-
|
15
|
-
### This test case tests ...
|
16
|
-
class SubfunctionsTestCase < BlueCloth::TestCase
|
17
|
-
|
18
|
-
### Test email address output
|
19
|
-
Emails = %w[
|
20
|
-
address@example.com
|
21
|
-
foo-list-admin@bar.com
|
22
|
-
fu@bar.COM
|
23
|
-
baz@ruby-lang.org
|
24
|
-
foo-tim-bazzle@bar-hop.co.uk
|
25
|
-
littlestar@twinkle.twinkle.band.CO.ZA
|
26
|
-
ll@lll.lllll.ll
|
27
|
-
Ull@Ulll.Ulllll.ll
|
28
|
-
UUUU1@UU1.UU1UUU.UU
|
29
|
-
l@ll.ll
|
30
|
-
Ull.Ullll@llll.ll
|
31
|
-
Ulll-Ull.Ulllll@ll.ll
|
32
|
-
1@111.ll
|
33
|
-
]
|
34
|
-
# I can't see a way to handle IDNs clearly yet, so these will have to wait.
|
35
|
-
# info@�ko.de
|
36
|
-
# jemand@b�ro.de
|
37
|
-
# irgendwo-interre�ant@d�gta.se
|
38
|
-
#]
|
39
|
-
|
40
|
-
def test_10_email_address
|
41
|
-
printTestHeader "BlueCloth: Inline email address"
|
42
|
-
rval = match = nil
|
43
|
-
|
44
|
-
Emails.each {|addr|
|
45
|
-
assert_nothing_raised {
|
46
|
-
rval = BlueCloth::new( "<#{addr}>" ).to_html
|
47
|
-
}
|
48
|
-
|
49
|
-
match = %r{<p><a href="([^\"]+)">[^<]+</a></p>}.match( rval )
|
50
|
-
assert_not_nil match, "Match against output #{rval}"
|
51
|
-
assert_equal "mailto:#{addr}", decode( match[1] )
|
52
|
-
}
|
53
|
-
end
|
54
|
-
|
55
|
-
|
56
|
-
def decode( str )
|
57
|
-
str.gsub( /&#(x[a-f0-9]+|\d{3});/i ) {|match|
|
58
|
-
code = $1
|
59
|
-
debugMsg "Decoding %p" % code
|
60
|
-
|
61
|
-
case code
|
62
|
-
when /^x([a-f0-9]+)/i
|
63
|
-
debugMsg " (hex) = %p" % $1.to_i(16).chr
|
64
|
-
$1.to_i(16).chr
|
65
|
-
when /\d{3}/
|
66
|
-
debugMsg " (oct) = %p" % code.to_i.chr
|
67
|
-
code.to_i.chr
|
68
|
-
else
|
69
|
-
raise "Hmmm... malformed entity %p" % code
|
70
|
-
end
|
71
|
-
}
|
72
|
-
end
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
#################################################################
|
77
|
-
### A U T O - G E N E R A T E D T E S T S
|
78
|
-
#################################################################
|
79
|
-
|
80
|
-
# Parse the data section into a hash of test specifications
|
81
|
-
TestSets = {}
|
82
|
-
begin
|
83
|
-
seenEnd = false
|
84
|
-
inMetaSection = true
|
85
|
-
inInputSection = true
|
86
|
-
section, description, input, output = '', '', '', ''
|
87
|
-
linenum = 0
|
88
|
-
|
89
|
-
# Read this file, skipping lines until the __END__ token. Then start
|
90
|
-
# reading the tests.
|
91
|
-
File::foreach( __FILE__ ) {|line|
|
92
|
-
linenum += 1
|
93
|
-
if /^__END__/ =~ line then seenEnd = true; next end
|
94
|
-
debugMsg "#{linenum}: #{line.chomp}"
|
95
|
-
next unless seenEnd
|
96
|
-
|
97
|
-
# Start off in the meta section, which has sections and
|
98
|
-
# descriptions.
|
99
|
-
if inMetaSection
|
100
|
-
|
101
|
-
case line
|
102
|
-
|
103
|
-
# Left angles switch into data section for the current section
|
104
|
-
# and description.
|
105
|
-
when /^<<</
|
106
|
-
inMetaSection = false
|
107
|
-
next
|
108
|
-
|
109
|
-
# Section headings look like:
|
110
|
-
# ### [Code blocks]
|
111
|
-
when /^### \[([^\]]+)\]/
|
112
|
-
section = $1.chomp
|
113
|
-
TestSets[ section ] ||= {}
|
114
|
-
|
115
|
-
# Descriptions look like:
|
116
|
-
# # Para plus code block
|
117
|
-
when /^# (.*)/
|
118
|
-
description = $1.chomp
|
119
|
-
TestSets[ section ][ description ] ||= {
|
120
|
-
:line => linenum,
|
121
|
-
:sets => [],
|
122
|
-
}
|
123
|
-
|
124
|
-
end
|
125
|
-
|
126
|
-
# Data section has input and expected output parts
|
127
|
-
else
|
128
|
-
|
129
|
-
case line
|
130
|
-
|
131
|
-
# Right angles terminate a data section, at which point we
|
132
|
-
# should have enough data to add a test.
|
133
|
-
when /^>>>/
|
134
|
-
TestSets[ section ][ description ][:sets] << [ input.chomp, output.chomp ]
|
135
|
-
|
136
|
-
inMetaSection = true
|
137
|
-
inInputSection = true
|
138
|
-
input = ''; output = ''
|
139
|
-
|
140
|
-
# 3-Dashed divider with text divides input from output
|
141
|
-
when /^--- (.+)/
|
142
|
-
inInputSection = false
|
143
|
-
|
144
|
-
# Anything else adds to either input or output
|
145
|
-
else
|
146
|
-
if inInputSection
|
147
|
-
input += line
|
148
|
-
else
|
149
|
-
output += line
|
150
|
-
end
|
151
|
-
end
|
152
|
-
end
|
153
|
-
}
|
154
|
-
end
|
155
|
-
|
156
|
-
debugMsg "Test sets: %p" % TestSets
|
157
|
-
|
158
|
-
# Auto-generate tests out of the test specifications
|
159
|
-
TestSets.each {|sname, section|
|
160
|
-
|
161
|
-
# Generate a test method for each section
|
162
|
-
section.each do |desc, test|
|
163
|
-
methname = "test_%03d_%s" %
|
164
|
-
[ test[:line], desc.gsub(/\W+/, '_').downcase ]
|
165
|
-
|
166
|
-
# Header
|
167
|
-
code = %{
|
168
|
-
def #{methname}
|
169
|
-
printTestHeader "BlueCloth: #{desc}"
|
170
|
-
rval = nil
|
171
|
-
}
|
172
|
-
|
173
|
-
# An assertion for each input/output pair
|
174
|
-
test[:sets].each {|input, output|
|
175
|
-
code << %{
|
176
|
-
assert_nothing_raised {
|
177
|
-
obj = BlueCloth::new(%p)
|
178
|
-
rval = obj.to_html
|
179
|
-
}
|
180
|
-
assert_equal %p, rval
|
181
|
-
|
182
|
-
} % [ input, output ]
|
183
|
-
}
|
184
|
-
|
185
|
-
code << %{
|
186
|
-
end
|
187
|
-
}
|
188
|
-
|
189
|
-
|
190
|
-
debugMsg "--- %s [%s]:\n%s\n---\n" % [sname, desc, code]
|
191
|
-
eval code
|
192
|
-
end
|
193
|
-
|
194
|
-
}
|
195
|
-
|
196
|
-
end
|
197
|
-
|
198
|
-
|
199
|
-
__END__
|
200
|
-
|
201
|
-
### [Paragraphs and Line Breaks]
|
202
|
-
|
203
|
-
# Paragraphs
|
204
|
-
<<<
|
205
|
-
This is some stuff that should all be
|
206
|
-
put in one paragraph
|
207
|
-
even though
|
208
|
-
it occurs over several lines.
|
209
|
-
|
210
|
-
And this is a another
|
211
|
-
one.
|
212
|
-
--- Should become:
|
213
|
-
<p>This is some stuff that should all be
|
214
|
-
put in one paragraph
|
215
|
-
even though
|
216
|
-
it occurs over several lines.</p>
|
217
|
-
|
218
|
-
<p>And this is a another
|
219
|
-
one.</p>
|
220
|
-
>>>
|
221
|
-
|
222
|
-
# Line breaks
|
223
|
-
<<<
|
224
|
-
Mostly the same kind of thing
|
225
|
-
with two spaces at the end
|
226
|
-
of each line
|
227
|
-
should result in
|
228
|
-
line breaks, though.
|
229
|
-
|
230
|
-
And this is a another
|
231
|
-
one.
|
232
|
-
--- Should become:
|
233
|
-
<p>Mostly the same kind of thing<br/>
|
234
|
-
with two spaces at the end<br/>
|
235
|
-
of each line<br/>
|
236
|
-
should result in<br/>
|
237
|
-
line breaks, though.</p>
|
238
|
-
|
239
|
-
<p>And this is a another<br/>
|
240
|
-
one.</p>
|
241
|
-
>>>
|
242
|
-
|
243
|
-
# Escaping special characters
|
244
|
-
<<<
|
245
|
-
The left shift operator, which is written as <<, is often used & greatly admired.
|
246
|
-
--- Should become:
|
247
|
-
<p>The left shift operator, which is written as <<, is often used & greatly admired.</p>
|
248
|
-
>>>
|
249
|
-
|
250
|
-
# Preservation of named entities
|
251
|
-
<<<
|
252
|
-
The left shift operator, which is written as <<, is often used & greatly admired.
|
253
|
-
--- Should become:
|
254
|
-
<p>The left shift operator, which is written as <<, is often used & greatly admired.</p>
|
255
|
-
>>>
|
256
|
-
|
257
|
-
# Preservation of decimal-encoded entities
|
258
|
-
<<<
|
259
|
-
The left shift operator, which is written as <<, is often used & greatly admired.
|
260
|
-
--- Should become:
|
261
|
-
<p>The left shift operator, which is written as <<, is often used & greatly admired.</p>
|
262
|
-
>>>
|
263
|
-
|
264
|
-
# Preservation of hex-encoded entities
|
265
|
-
<<<
|
266
|
-
The left shift operator, which is written as <<, is often used & greatly admired.
|
267
|
-
--- Should become:
|
268
|
-
<p>The left shift operator, which is written as <<, is often used & greatly admired.</p>
|
269
|
-
>>>
|
270
|
-
|
271
|
-
# Inline HTML - table tags
|
272
|
-
<<<
|
273
|
-
This is a regular paragraph.
|
274
|
-
|
275
|
-
<table>
|
276
|
-
<tr>
|
277
|
-
<td>Foo</td>
|
278
|
-
</tr>
|
279
|
-
</table>
|
280
|
-
|
281
|
-
This is another regular paragraph.
|
282
|
-
--- Should become:
|
283
|
-
<p>This is a regular paragraph.</p>
|
284
|
-
|
285
|
-
<table>
|
286
|
-
<tr>
|
287
|
-
<td>Foo</td>
|
288
|
-
</tr>
|
289
|
-
</table>
|
290
|
-
|
291
|
-
<p>This is another regular paragraph.</p>
|
292
|
-
>>>
|
293
|
-
|
294
|
-
# Inline HTML - div tags
|
295
|
-
<<<
|
296
|
-
This is a regular paragraph.
|
297
|
-
|
298
|
-
<div>
|
299
|
-
Something
|
300
|
-
</div>
|
301
|
-
Something else.
|
302
|
-
--- Should become:
|
303
|
-
<p>This is a regular paragraph.</p>
|
304
|
-
|
305
|
-
<div>
|
306
|
-
Something
|
307
|
-
</div>
|
308
|
-
|
309
|
-
<p>Something else.</p>
|
310
|
-
>>>
|
311
|
-
|
312
|
-
|
313
|
-
# Inline HTML - Plain HR
|
314
|
-
<<<
|
315
|
-
This is a regular paragraph.
|
316
|
-
|
317
|
-
<hr />
|
318
|
-
|
319
|
-
Something else.
|
320
|
-
--- Should become:
|
321
|
-
<p>This is a regular paragraph.</p>
|
322
|
-
|
323
|
-
<hr />
|
324
|
-
|
325
|
-
<p>Something else.</p>
|
326
|
-
>>>
|
327
|
-
|
328
|
-
|
329
|
-
# Inline HTML - Fancy HR
|
330
|
-
<<<
|
331
|
-
This is a regular paragraph.
|
332
|
-
|
333
|
-
<hr class="publishers-mark" id="first-hrule" />
|
334
|
-
|
335
|
-
Something else.
|
336
|
-
--- Should become:
|
337
|
-
<p>This is a regular paragraph.</p>
|
338
|
-
|
339
|
-
<hr class="publishers-mark" id="first-hrule" />
|
340
|
-
|
341
|
-
<p>Something else.</p>
|
342
|
-
>>>
|
343
|
-
|
344
|
-
|
345
|
-
# Inline HTML - Iframe
|
346
|
-
<<<
|
347
|
-
This is a regular paragraph.
|
348
|
-
|
349
|
-
<iframe src="foo.html" id="foo-frame"></iframe>
|
350
|
-
|
351
|
-
Something else.
|
352
|
-
--- Should become:
|
353
|
-
<p>This is a regular paragraph.</p>
|
354
|
-
|
355
|
-
<iframe src="foo.html" id="foo-frame"></iframe>
|
356
|
-
|
357
|
-
<p>Something else.</p>
|
358
|
-
>>>
|
359
|
-
|
360
|
-
|
361
|
-
# Inline HTML - mathml
|
362
|
-
<<<
|
363
|
-
Examples
|
364
|
-
--------
|
365
|
-
|
366
|
-
Now that we have met some of the key players, it is time to see what we can
|
367
|
-
do. Here are some examples and comments which illustrate the use of the basic
|
368
|
-
layout and token elements. Consider the expression x2 + 4x + 4 = 0. A basic
|
369
|
-
MathML presentation encoding for this would be:
|
370
|
-
|
371
|
-
<math>
|
372
|
-
<mrow>
|
373
|
-
<msup>
|
374
|
-
<mi>x</mi>
|
375
|
-
<mn>2</mn>
|
376
|
-
</msup>
|
377
|
-
<mo>+</mo>
|
378
|
-
<mn>4</mn>
|
379
|
-
<mi>x</mi>
|
380
|
-
<mo>+</mo>
|
381
|
-
<mn>4</mn>
|
382
|
-
<mo>=</mo>
|
383
|
-
<mn>0</mn>
|
384
|
-
</mrow>
|
385
|
-
</math>
|
386
|
-
|
387
|
-
This encoding will display as you would expect. However, if we were interested
|
388
|
-
in reusing this expression in unknown situations, we would likely want to spend
|
389
|
-
a little more effort analyzing and encoding the logical expression structure.
|
390
|
-
|
391
|
-
--- Should become:
|
392
|
-
<h2>Examples</h2>
|
393
|
-
|
394
|
-
<p>Now that we have met some of the key players, it is time to see what we can
|
395
|
-
do. Here are some examples and comments which illustrate the use of the basic
|
396
|
-
layout and token elements. Consider the expression x2 + 4x + 4 = 0. A basic
|
397
|
-
MathML presentation encoding for this would be:</p>
|
398
|
-
|
399
|
-
<math>
|
400
|
-
<mrow>
|
401
|
-
<msup>
|
402
|
-
<mi>x</mi>
|
403
|
-
<mn>2</mn>
|
404
|
-
</msup>
|
405
|
-
<mo>+</mo>
|
406
|
-
<mn>4</mn>
|
407
|
-
<mi>x</mi>
|
408
|
-
<mo>+</mo>
|
409
|
-
<mn>4</mn>
|
410
|
-
<mo>=</mo>
|
411
|
-
<mn>0</mn>
|
412
|
-
</mrow>
|
413
|
-
</math>
|
414
|
-
|
415
|
-
<p>This encoding will display as you would expect. However, if we were interested
|
416
|
-
in reusing this expression in unknown situations, we would likely want to spend
|
417
|
-
a little more effort analyzing and encoding the logical expression structure.</p>
|
418
|
-
>>>
|
419
|
-
|
420
|
-
|
421
|
-
# Span-level HTML
|
422
|
-
<<<
|
423
|
-
This is some stuff with a <span class="foo">spanned bit of text</span> in
|
424
|
-
it. And <del>this *should* be a bit of deleted text</del> which should be
|
425
|
-
preserved, and part of it emphasized.
|
426
|
-
--- Should become:
|
427
|
-
<p>This is some stuff with a <span class="foo">spanned bit of text</span> in
|
428
|
-
it. And <del>this <em>should</em> be a bit of deleted text</del> which should be
|
429
|
-
preserved, and part of it emphasized.</p>
|
430
|
-
>>>
|
431
|
-
|
432
|
-
# Inline HTML (Case-sensitivity)
|
433
|
-
<<<
|
434
|
-
This is a regular paragraph.
|
435
|
-
|
436
|
-
<TABLE>
|
437
|
-
<TR>
|
438
|
-
<TD>Foo</TD>
|
439
|
-
</TR>
|
440
|
-
</TABLE>
|
441
|
-
|
442
|
-
This is another regular paragraph.
|
443
|
-
--- Should become:
|
444
|
-
<p>This is a regular paragraph.</p>
|
445
|
-
|
446
|
-
<TABLE>
|
447
|
-
<TR>
|
448
|
-
<TD>Foo</TD>
|
449
|
-
</TR>
|
450
|
-
</TABLE>
|
451
|
-
|
452
|
-
<p>This is another regular paragraph.</p>
|
453
|
-
>>>
|
454
|
-
|
455
|
-
# Span-level HTML (Case-sensitivity)
|
456
|
-
<<<
|
457
|
-
This is some stuff with a <SPAN CLASS="foo">spanned bit of text</SPAN> in
|
458
|
-
it. And <DEL>this *should* be a bit of deleted text</DEL> which should be
|
459
|
-
preserved, and part of it emphasized.
|
460
|
-
--- Should become:
|
461
|
-
<p>This is some stuff with a <SPAN CLASS="foo">spanned bit of text</SPAN> in
|
462
|
-
it. And <DEL>this <em>should</em> be a bit of deleted text</DEL> which should be
|
463
|
-
preserved, and part of it emphasized.</p>
|
464
|
-
>>>
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
### [Code spans]
|
469
|
-
|
470
|
-
# Single backtick
|
471
|
-
<<<
|
472
|
-
Making `code` work for you
|
473
|
-
--- Should become:
|
474
|
-
<p>Making <code>code</code> work for you</p>
|
475
|
-
>>>
|
476
|
-
|
477
|
-
# Literal backtick with doubling
|
478
|
-
<<<
|
479
|
-
Making `` `code` `` work for you
|
480
|
-
--- Should become:
|
481
|
-
<p>Making <code>`code`</code> work for you</p>
|
482
|
-
>>>
|
483
|
-
|
484
|
-
# Many repetitions
|
485
|
-
<<<
|
486
|
-
Making `````code````` work for you
|
487
|
-
--- Should become:
|
488
|
-
<p>Making <code>code</code> work for you</p>
|
489
|
-
>>>
|
490
|
-
|
491
|
-
# Two in a row
|
492
|
-
<<<
|
493
|
-
This `thing` should be `two` spans.
|
494
|
-
--- Should become:
|
495
|
-
<p>This <code>thing</code> should be <code>two</code> spans.</p>
|
496
|
-
>>>
|
497
|
-
|
498
|
-
# At the beginning of a newline
|
499
|
-
<<<
|
500
|
-
I should think that the
|
501
|
-
`tar` command would be universal.
|
502
|
-
--- Should become:
|
503
|
-
<p>I should think that the
|
504
|
-
<code>tar</code> command would be universal.</p>
|
505
|
-
>>>
|
506
|
-
|
507
|
-
# Entity escaping
|
508
|
-
<<<
|
509
|
-
The left angle-bracket (`<`) can also be written as a decimal-encoded
|
510
|
-
(`<`) or hex-encoded (`<`) entity.
|
511
|
-
--- Should become:
|
512
|
-
<p>The left angle-bracket (<code>&lt;</code>) can also be written as a decimal-encoded
|
513
|
-
(<code>&#060;</code>) or hex-encoded (<code>&#x3c;</code>) entity.</p>
|
514
|
-
>>>
|
515
|
-
|
516
|
-
# At the beginning of a document (Bug #525)
|
517
|
-
<<<
|
518
|
-
`world` views
|
519
|
-
--- Should become:
|
520
|
-
<p><code>world</code> views</p>
|
521
|
-
>>>
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
### [Code blocks]
|
527
|
-
|
528
|
-
# Para plus code block (literal tab)
|
529
|
-
<<<
|
530
|
-
This is a chunk of code:
|
531
|
-
|
532
|
-
some.code > some.other_code
|
533
|
-
|
534
|
-
Some stuff.
|
535
|
-
--- Should become:
|
536
|
-
<p>This is a chunk of code:</p>
|
537
|
-
|
538
|
-
<pre><code>some.code > some.other_code
|
539
|
-
</code></pre>
|
540
|
-
|
541
|
-
<p>Some stuff.</p>
|
542
|
-
>>>
|
543
|
-
|
544
|
-
# Para plus code block (literal tab, no colon)
|
545
|
-
<<<
|
546
|
-
This is a chunk of code
|
547
|
-
|
548
|
-
some.code > some.other_code
|
549
|
-
|
550
|
-
Some stuff.
|
551
|
-
--- Should become:
|
552
|
-
<p>This is a chunk of code</p>
|
553
|
-
|
554
|
-
<pre><code>some.code > some.other_code
|
555
|
-
</code></pre>
|
556
|
-
|
557
|
-
<p>Some stuff.</p>
|
558
|
-
>>>
|
559
|
-
|
560
|
-
# Para plus code block (tab-width spaces)
|
561
|
-
<<<
|
562
|
-
This is a chunk of code:
|
563
|
-
|
564
|
-
some.code > some.other_code
|
565
|
-
|
566
|
-
Some stuff.
|
567
|
-
--- Should become:
|
568
|
-
<p>This is a chunk of code:</p>
|
569
|
-
|
570
|
-
<pre><code>some.code > some.other_code
|
571
|
-
</code></pre>
|
572
|
-
|
573
|
-
<p>Some stuff.</p>
|
574
|
-
>>>
|
575
|
-
|
576
|
-
# Para plus code block (tab-width spaces, no colon)
|
577
|
-
<<<
|
578
|
-
This is a chunk of code
|
579
|
-
|
580
|
-
some.code > some.other_code
|
581
|
-
|
582
|
-
Some stuff.
|
583
|
-
--- Should become:
|
584
|
-
<p>This is a chunk of code</p>
|
585
|
-
|
586
|
-
<pre><code>some.code > some.other_code
|
587
|
-
</code></pre>
|
588
|
-
|
589
|
-
<p>Some stuff.</p>
|
590
|
-
>>>
|
591
|
-
|
592
|
-
# Colon with preceeding space
|
593
|
-
<<<
|
594
|
-
A regular paragraph, without a colon. :
|
595
|
-
|
596
|
-
This is a code block.
|
597
|
-
|
598
|
-
Some stuff.
|
599
|
-
--- Should become:
|
600
|
-
<p>A regular paragraph, without a colon. :</p>
|
601
|
-
|
602
|
-
<pre><code>This is a code block.
|
603
|
-
</code></pre>
|
604
|
-
|
605
|
-
<p>Some stuff.</p>
|
606
|
-
>>>
|
607
|
-
|
608
|
-
# Single colon
|
609
|
-
<<<
|
610
|
-
:
|
611
|
-
|
612
|
-
some.code > some.other_code
|
613
|
-
|
614
|
-
Some stuff.
|
615
|
-
--- Should become:
|
616
|
-
<p>:</p>
|
617
|
-
|
618
|
-
<pre><code>some.code > some.other_code
|
619
|
-
</code></pre>
|
620
|
-
|
621
|
-
<p>Some stuff.</p>
|
622
|
-
>>>
|
623
|
-
|
624
|
-
# Preserve leading whitespace (Bug #541)
|
625
|
-
<<<
|
626
|
-
Examples:
|
627
|
-
|
628
|
-
# (Waste character because first line is flush left !!!)
|
629
|
-
# Example script1
|
630
|
-
x = 1
|
631
|
-
x += 1
|
632
|
-
puts x
|
633
|
-
|
634
|
-
Some stuff.
|
635
|
-
--- Should become:
|
636
|
-
<p>Examples:</p>
|
637
|
-
|
638
|
-
<pre><code> # (Waste character because first line is flush left !!!)
|
639
|
-
# Example script1
|
640
|
-
x = 1
|
641
|
-
x += 1
|
642
|
-
puts x
|
643
|
-
</code></pre>
|
644
|
-
|
645
|
-
<p>Some stuff.</p>
|
646
|
-
>>>
|
647
|
-
|
648
|
-
|
649
|
-
### [Horizontal Rules]
|
650
|
-
|
651
|
-
# Hrule 1
|
652
|
-
<<<
|
653
|
-
* * *
|
654
|
-
--- Should become:
|
655
|
-
<hr/>
|
656
|
-
>>>
|
657
|
-
|
658
|
-
# Hrule 2
|
659
|
-
<<<
|
660
|
-
***
|
661
|
-
--- Should become:
|
662
|
-
<hr/>
|
663
|
-
>>>
|
664
|
-
|
665
|
-
# Hrule 3
|
666
|
-
<<<
|
667
|
-
*****
|
668
|
-
--- Should become:
|
669
|
-
<hr/>
|
670
|
-
>>>
|
671
|
-
|
672
|
-
# Hrule 4
|
673
|
-
<<<
|
674
|
-
- - -
|
675
|
-
--- Should become:
|
676
|
-
<hr/>
|
677
|
-
>>>
|
678
|
-
|
679
|
-
# Hrule 5
|
680
|
-
<<<
|
681
|
-
---------------------------------------
|
682
|
-
--- Should become:
|
683
|
-
<hr/>
|
684
|
-
>>>
|
685
|
-
|
686
|
-
|
687
|
-
### [Titles]
|
688
|
-
|
689
|
-
# setext-style h1
|
690
|
-
<<<
|
691
|
-
Title Text
|
692
|
-
=
|
693
|
-
--- Should become:
|
694
|
-
<h1>Title Text</h1>
|
695
|
-
>>>
|
696
|
-
|
697
|
-
<<<
|
698
|
-
Title Text
|
699
|
-
===
|
700
|
-
--- Should become:
|
701
|
-
<h1>Title Text</h1>
|
702
|
-
>>>
|
703
|
-
|
704
|
-
<<<
|
705
|
-
Title Text
|
706
|
-
==========
|
707
|
-
--- Should become:
|
708
|
-
<h1>Title Text</h1>
|
709
|
-
>>>
|
710
|
-
|
711
|
-
# setext-style h2
|
712
|
-
<<<
|
713
|
-
Title Text
|
714
|
-
-
|
715
|
-
--- Should become:
|
716
|
-
<h2>Title Text</h2>
|
717
|
-
>>>
|
718
|
-
|
719
|
-
<<<
|
720
|
-
Title Text
|
721
|
-
---
|
722
|
-
--- Should become:
|
723
|
-
<h2>Title Text</h2>
|
724
|
-
>>>
|
725
|
-
|
726
|
-
<<<
|
727
|
-
Title Text
|
728
|
-
----------
|
729
|
-
--- Should become:
|
730
|
-
<h2>Title Text</h2>
|
731
|
-
>>>
|
732
|
-
|
733
|
-
# ATX-style h1
|
734
|
-
<<<
|
735
|
-
# Title Text
|
736
|
-
--- Should become:
|
737
|
-
<h1>Title Text</h1>
|
738
|
-
>>>
|
739
|
-
|
740
|
-
<<<
|
741
|
-
# Title Text #
|
742
|
-
--- Should become:
|
743
|
-
<h1>Title Text</h1>
|
744
|
-
>>>
|
745
|
-
|
746
|
-
<<<
|
747
|
-
# Title Text ###
|
748
|
-
--- Should become:
|
749
|
-
<h1>Title Text</h1>
|
750
|
-
>>>
|
751
|
-
|
752
|
-
<<<
|
753
|
-
# Title Text #####
|
754
|
-
--- Should become:
|
755
|
-
<h1>Title Text</h1>
|
756
|
-
>>>
|
757
|
-
|
758
|
-
# ATX-style h2
|
759
|
-
<<<
|
760
|
-
## Title Text
|
761
|
-
--- Should become:
|
762
|
-
<h2>Title Text</h2>
|
763
|
-
>>>
|
764
|
-
|
765
|
-
<<<
|
766
|
-
## Title Text #
|
767
|
-
--- Should become:
|
768
|
-
<h2>Title Text</h2>
|
769
|
-
>>>
|
770
|
-
|
771
|
-
<<<
|
772
|
-
## Title Text ###
|
773
|
-
--- Should become:
|
774
|
-
<h2>Title Text</h2>
|
775
|
-
>>>
|
776
|
-
|
777
|
-
<<<
|
778
|
-
## Title Text #####
|
779
|
-
--- Should become:
|
780
|
-
<h2>Title Text</h2>
|
781
|
-
>>>
|
782
|
-
|
783
|
-
# ATX-style h3
|
784
|
-
<<<
|
785
|
-
### Title Text
|
786
|
-
--- Should become:
|
787
|
-
<h3>Title Text</h3>
|
788
|
-
>>>
|
789
|
-
|
790
|
-
<<<
|
791
|
-
### Title Text #
|
792
|
-
--- Should become:
|
793
|
-
<h3>Title Text</h3>
|
794
|
-
>>>
|
795
|
-
|
796
|
-
<<<
|
797
|
-
### Title Text ###
|
798
|
-
--- Should become:
|
799
|
-
<h3>Title Text</h3>
|
800
|
-
>>>
|
801
|
-
|
802
|
-
<<<
|
803
|
-
### Title Text #####
|
804
|
-
--- Should become:
|
805
|
-
<h3>Title Text</h3>
|
806
|
-
>>>
|
807
|
-
|
808
|
-
# ATX-style h4
|
809
|
-
<<<
|
810
|
-
#### Title Text
|
811
|
-
--- Should become:
|
812
|
-
<h4>Title Text</h4>
|
813
|
-
>>>
|
814
|
-
|
815
|
-
<<<
|
816
|
-
#### Title Text #
|
817
|
-
--- Should become:
|
818
|
-
<h4>Title Text</h4>
|
819
|
-
>>>
|
820
|
-
|
821
|
-
<<<
|
822
|
-
#### Title Text ###
|
823
|
-
--- Should become:
|
824
|
-
<h4>Title Text</h4>
|
825
|
-
>>>
|
826
|
-
|
827
|
-
<<<
|
828
|
-
#### Title Text #####
|
829
|
-
--- Should become:
|
830
|
-
<h4>Title Text</h4>
|
831
|
-
>>>
|
832
|
-
|
833
|
-
# ATX-style h5
|
834
|
-
<<<
|
835
|
-
##### Title Text
|
836
|
-
--- Should become:
|
837
|
-
<h5>Title Text</h5>
|
838
|
-
>>>
|
839
|
-
|
840
|
-
<<<
|
841
|
-
##### Title Text #
|
842
|
-
--- Should become:
|
843
|
-
<h5>Title Text</h5>
|
844
|
-
>>>
|
845
|
-
|
846
|
-
<<<
|
847
|
-
##### Title Text ###
|
848
|
-
--- Should become:
|
849
|
-
<h5>Title Text</h5>
|
850
|
-
>>>
|
851
|
-
|
852
|
-
<<<
|
853
|
-
##### Title Text #####
|
854
|
-
--- Should become:
|
855
|
-
<h5>Title Text</h5>
|
856
|
-
>>>
|
857
|
-
|
858
|
-
# ATX-style h6
|
859
|
-
<<<
|
860
|
-
###### Title Text
|
861
|
-
--- Should become:
|
862
|
-
<h6>Title Text</h6>
|
863
|
-
>>>
|
864
|
-
|
865
|
-
<<<
|
866
|
-
###### Title Text #
|
867
|
-
--- Should become:
|
868
|
-
<h6>Title Text</h6>
|
869
|
-
>>>
|
870
|
-
|
871
|
-
<<<
|
872
|
-
###### Title Text ###
|
873
|
-
--- Should become:
|
874
|
-
<h6>Title Text</h6>
|
875
|
-
>>>
|
876
|
-
|
877
|
-
<<<
|
878
|
-
###### Title Text #####
|
879
|
-
--- Should become:
|
880
|
-
<h6>Title Text</h6>
|
881
|
-
>>>
|
882
|
-
|
883
|
-
|
884
|
-
### [Blockquotes]
|
885
|
-
|
886
|
-
# Regular 1-level blockquotes
|
887
|
-
<<<
|
888
|
-
> Email-style angle brackets
|
889
|
-
> are used for blockquotes.
|
890
|
-
--- Should become:
|
891
|
-
<blockquote>
|
892
|
-
<p>Email-style angle brackets
|
893
|
-
are used for blockquotes.</p>
|
894
|
-
</blockquote>
|
895
|
-
>>>
|
896
|
-
|
897
|
-
# Doubled blockquotes
|
898
|
-
<<<
|
899
|
-
> > And, they can be nested.
|
900
|
-
--- Should become:
|
901
|
-
<blockquote>
|
902
|
-
<blockquote>
|
903
|
-
<p>And, they can be nested.</p>
|
904
|
-
</blockquote>
|
905
|
-
</blockquote>
|
906
|
-
>>>
|
907
|
-
|
908
|
-
# Nested blockquotes
|
909
|
-
<<<
|
910
|
-
> Email-style angle brackets
|
911
|
-
> are used for blockquotes.
|
912
|
-
|
913
|
-
> > And, they can be nested.
|
914
|
-
--- Should become:
|
915
|
-
<blockquote>
|
916
|
-
<p>Email-style angle brackets
|
917
|
-
are used for blockquotes.</p>
|
918
|
-
|
919
|
-
<blockquote>
|
920
|
-
<p>And, they can be nested.</p>
|
921
|
-
</blockquote>
|
922
|
-
</blockquote>
|
923
|
-
>>>
|
924
|
-
|
925
|
-
# Lazy blockquotes
|
926
|
-
<<<
|
927
|
-
> This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
|
928
|
-
consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
|
929
|
-
Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.
|
930
|
-
|
931
|
-
> Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse
|
932
|
-
id sem consectetuer libero luctus adipiscing.
|
933
|
-
--- Should become:
|
934
|
-
<blockquote>
|
935
|
-
<p>This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet,
|
936
|
-
consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus.
|
937
|
-
Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.</p>
|
938
|
-
|
939
|
-
<p>Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse
|
940
|
-
id sem consectetuer libero luctus adipiscing.</p>
|
941
|
-
</blockquote>
|
942
|
-
>>>
|
943
|
-
|
944
|
-
|
945
|
-
# Blockquotes containing other markdown elements
|
946
|
-
<<<
|
947
|
-
> ## This is a header.
|
948
|
-
>
|
949
|
-
> 1. This is the first list item.
|
950
|
-
> 2. This is the second list item.
|
951
|
-
>
|
952
|
-
> Here's some example code:
|
953
|
-
>
|
954
|
-
> return shell_exec("echo $input | $markdown_script");
|
955
|
-
--- Should become:
|
956
|
-
<blockquote>
|
957
|
-
<h2>This is a header.</h2>
|
958
|
-
|
959
|
-
<ol>
|
960
|
-
<li>This is the first list item.</li>
|
961
|
-
<li>This is the second list item.</li>
|
962
|
-
</ol>
|
963
|
-
|
964
|
-
<p>Here's some example code:</p>
|
965
|
-
|
966
|
-
<pre><code>return shell_exec("echo $input | $markdown_script");
|
967
|
-
</code></pre>
|
968
|
-
</blockquote>
|
969
|
-
>>>
|
970
|
-
|
971
|
-
# Blockquotes with a <pre> section
|
972
|
-
<<<
|
973
|
-
> The best approximation of the problem is the following code:
|
974
|
-
>
|
975
|
-
> <pre>
|
976
|
-
> foo + bar; foo.factorize; foo.display
|
977
|
-
> </pre>
|
978
|
-
>
|
979
|
-
> This should result in an error on any little-endian platform.
|
980
|
-
--- Should become:
|
981
|
-
<blockquote>
|
982
|
-
<p>The best approximation of the problem is the following code:</p>
|
983
|
-
|
984
|
-
<pre>
|
985
|
-
foo + bar; foo.factorize; foo.display
|
986
|
-
</pre>
|
987
|
-
|
988
|
-
<p>This should result in an error on any little-endian platform.</p>
|
989
|
-
</blockquote>
|
990
|
-
>>>
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
### [Images]
|
995
|
-
|
996
|
-
# Inline image with title
|
997
|
-
<<<
|
998
|
-
![alt text](/path/img.jpg "Title")
|
999
|
-
--- Should become:
|
1000
|
-
<p><img src="/path/img.jpg" alt="alt text" title="Title"/></p>
|
1001
|
-
>>>
|
1002
|
-
|
1003
|
-
# Inline image with title (single-quotes)
|
1004
|
-
<<<
|
1005
|
-
![alt text](/path/img.jpg 'Title')
|
1006
|
-
--- Should become:
|
1007
|
-
<p><img src="/path/img.jpg" alt="alt text" title="Title"/></p>
|
1008
|
-
>>>
|
1009
|
-
|
1010
|
-
# Inline image with title (with embedded quotes)
|
1011
|
-
<<<
|
1012
|
-
![alt text](/path/img.jpg 'The "Title" Image')
|
1013
|
-
--- Should become:
|
1014
|
-
<p><img src="/path/img.jpg" alt="alt text" title="The "Title" Image"/></p>
|
1015
|
-
>>>
|
1016
|
-
|
1017
|
-
# Inline image without title
|
1018
|
-
<<<
|
1019
|
-
![alt text](/path/img.jpg)
|
1020
|
-
--- Should become:
|
1021
|
-
<p><img src="/path/img.jpg" alt="alt text"/></p>
|
1022
|
-
>>>
|
1023
|
-
|
1024
|
-
# Inline image with quoted alt text
|
1025
|
-
<<<
|
1026
|
-
![the "alt text"](/path/img.jpg)
|
1027
|
-
--- Should become:
|
1028
|
-
<p><img src="/path/img.jpg" alt="the "alt text""/></p>
|
1029
|
-
>>>
|
1030
|
-
|
1031
|
-
|
1032
|
-
# Reference image
|
1033
|
-
<<<
|
1034
|
-
![alt text][id]
|
1035
|
-
|
1036
|
-
[id]: /url/to/img.jpg "Title"
|
1037
|
-
--- Should become:
|
1038
|
-
<p><img src="/url/to/img.jpg" alt="alt text" title="Title"/></p>
|
1039
|
-
>>>
|
1040
|
-
|
1041
|
-
|
1042
|
-
|
1043
|
-
### [Emphasis]
|
1044
|
-
|
1045
|
-
# Emphasis (<em>) with asterisks
|
1046
|
-
<<<
|
1047
|
-
Use *single splats* for emphasis.
|
1048
|
-
--- Should become:
|
1049
|
-
<p>Use <em>single splats</em> for emphasis.</p>
|
1050
|
-
>>>
|
1051
|
-
|
1052
|
-
# Emphasis (<em>) with underscores
|
1053
|
-
<<<
|
1054
|
-
Use *underscores* for emphasis.
|
1055
|
-
--- Should become:
|
1056
|
-
<p>Use <em>underscores</em> for emphasis.</p>
|
1057
|
-
>>>
|
1058
|
-
|
1059
|
-
# Strong emphasis (<strong>) with asterisks
|
1060
|
-
<<<
|
1061
|
-
Use **double splats** for more emphasis.
|
1062
|
-
--- Should become:
|
1063
|
-
<p>Use <strong>double splats</strong> for more emphasis.</p>
|
1064
|
-
>>>
|
1065
|
-
|
1066
|
-
# Strong emphasis (<strong>) with underscores
|
1067
|
-
<<<
|
1068
|
-
Use __doubled underscores__ for more emphasis.
|
1069
|
-
--- Should become:
|
1070
|
-
<p>Use <strong>doubled underscores</strong> for more emphasis.</p>
|
1071
|
-
>>>
|
1072
|
-
|
1073
|
-
# Combined emphasis types 1
|
1074
|
-
<<<
|
1075
|
-
Use *single splats* or _single unders_ for normal emphasis.
|
1076
|
-
--- Should become:
|
1077
|
-
<p>Use <em>single splats</em> or <em>single unders</em> for normal emphasis.</p>
|
1078
|
-
>>>
|
1079
|
-
|
1080
|
-
# Combined emphasis types 2
|
1081
|
-
<<<
|
1082
|
-
Use _single unders_ for normal emphasis
|
1083
|
-
or __double them__ for strong emphasis.
|
1084
|
-
--- Should become:
|
1085
|
-
<p>Use <em>single unders</em> for normal emphasis
|
1086
|
-
or <strong>double them</strong> for strong emphasis.</p>
|
1087
|
-
>>>
|
1088
|
-
|
1089
|
-
# Emphasis containing escaped metachars
|
1090
|
-
<<<
|
1091
|
-
You can include literal *\*splats\** by escaping them.
|
1092
|
-
--- Should become:
|
1093
|
-
<p>You can include literal <em>*splats*</em> by escaping them.</p>
|
1094
|
-
>>>
|
1095
|
-
|
1096
|
-
# Two instances of asterisked emphasis on one line
|
1097
|
-
<<<
|
1098
|
-
If there's *two* splatted parts on a *single line* it should still work.
|
1099
|
-
--- Should become:
|
1100
|
-
<p>If there's <em>two</em> splatted parts on a <em>single line</em> it should still work.</p>
|
1101
|
-
>>>
|
1102
|
-
|
1103
|
-
# Two instances of double asterisked emphasis on one line
|
1104
|
-
<<<
|
1105
|
-
This **doubled** one should **work too**.
|
1106
|
-
--- Should become:
|
1107
|
-
<p>This <strong>doubled</strong> one should <strong>work too</strong>.</p>
|
1108
|
-
>>>
|
1109
|
-
|
1110
|
-
# Two instances of underscore emphasis on one line
|
1111
|
-
<<<
|
1112
|
-
If there's _two_ underbarred parts on a _single line_ it should still work.
|
1113
|
-
--- Should become:
|
1114
|
-
<p>If there's <em>two</em> underbarred parts on a <em>single line</em> it should still work.</p>
|
1115
|
-
>>>
|
1116
|
-
|
1117
|
-
# Two instances of doubled underscore emphasis on one line
|
1118
|
-
<<<
|
1119
|
-
This __doubled__ one should __work too__.
|
1120
|
-
--- Should become:
|
1121
|
-
<p>This <strong>doubled</strong> one should <strong>work too</strong>.</p>
|
1122
|
-
>>>
|
1123
|
-
|
1124
|
-
# Initial emphasis (asterisk)
|
1125
|
-
<<<
|
1126
|
-
*Something* like this should be bold.
|
1127
|
-
--- Should become:
|
1128
|
-
<p><em>Something</em> like this should be bold.</p>
|
1129
|
-
>>>
|
1130
|
-
|
1131
|
-
# Initial emphasis (underscore)
|
1132
|
-
<<<
|
1133
|
-
_Something_ like this should be bold.
|
1134
|
-
--- Should become:
|
1135
|
-
<p><em>Something</em> like this should be bold.</p>
|
1136
|
-
>>>
|
1137
|
-
|
1138
|
-
# Initial strong emphasis (asterisk)
|
1139
|
-
<<<
|
1140
|
-
**Something** like this should be bold.
|
1141
|
-
--- Should become:
|
1142
|
-
<p><strong>Something</strong> like this should be bold.</p>
|
1143
|
-
>>>
|
1144
|
-
|
1145
|
-
# Initial strong emphasis (underscore)
|
1146
|
-
<<<
|
1147
|
-
__Something__ like this should be bold.
|
1148
|
-
--- Should become:
|
1149
|
-
<p><strong>Something</strong> like this should be bold.</p>
|
1150
|
-
>>>
|
1151
|
-
|
1152
|
-
# Partial-word emphasis (Bug #568)
|
1153
|
-
<<<
|
1154
|
-
**E**xtended **TURN**
|
1155
|
-
--- Should become:
|
1156
|
-
<p><strong>E</strong>xtended <strong>TURN</strong></p>
|
1157
|
-
>>>
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
### [Links]
|
1162
|
-
|
1163
|
-
# Inline link, no title
|
1164
|
-
<<<
|
1165
|
-
An [example](http://url.com/).
|
1166
|
-
--- Should become:
|
1167
|
-
<p>An <a href="http://url.com/">example</a>.</p>
|
1168
|
-
>>>
|
1169
|
-
|
1170
|
-
# Inline link with title
|
1171
|
-
<<<
|
1172
|
-
An [example](http://url.com/ "Check out url.com!").
|
1173
|
-
--- Should become:
|
1174
|
-
<p>An <a href="http://url.com/" title="Check out url.com!">example</a>.</p>
|
1175
|
-
>>>
|
1176
|
-
|
1177
|
-
# Reference-style link, no title
|
1178
|
-
<<<
|
1179
|
-
An [example][ex] reference-style link.
|
1180
|
-
|
1181
|
-
[ex]: http://www.bluefi.com/
|
1182
|
-
--- Should become:
|
1183
|
-
<p>An <a href="http://www.bluefi.com/">example</a> reference-style link.</p>
|
1184
|
-
>>>
|
1185
|
-
|
1186
|
-
# Reference-style link with quoted title
|
1187
|
-
<<<
|
1188
|
-
An [example][ex] reference-style link.
|
1189
|
-
|
1190
|
-
[ex]: http://www.bluefi.com/ "Check out our air."
|
1191
|
-
--- Should become:
|
1192
|
-
<p>An <a href="http://www.bluefi.com/" title="Check out our air.">example</a> reference-style link.</p>
|
1193
|
-
>>>
|
1194
|
-
|
1195
|
-
# Reference-style link with paren title
|
1196
|
-
<<<
|
1197
|
-
An [example][ex] reference-style link.
|
1198
|
-
|
1199
|
-
[ex]: http://www.bluefi.com/ (Check out our air.)
|
1200
|
-
--- Should become:
|
1201
|
-
<p>An <a href="http://www.bluefi.com/" title="Check out our air.">example</a> reference-style link.</p>
|
1202
|
-
>>>
|
1203
|
-
|
1204
|
-
# Reference-style link with one of each (hehe)
|
1205
|
-
<<<
|
1206
|
-
An [example][ex] reference-style link.
|
1207
|
-
|
1208
|
-
[ex]: http://www.bluefi.com/ "Check out our air.)
|
1209
|
-
--- Should become:
|
1210
|
-
<p>An <a href="http://www.bluefi.com/" title="Check out our air.">example</a> reference-style link.</p>
|
1211
|
-
>>>
|
1212
|
-
|
1213
|
-
" <- For syntax highlighting
|
1214
|
-
|
1215
|
-
# Reference-style link with intervening space
|
1216
|
-
<<<
|
1217
|
-
You can split the [linked part] [ex] from
|
1218
|
-
the reference part with a single space.
|
1219
|
-
|
1220
|
-
[ex]: http://www.treefrog.com/ "for some reason"
|
1221
|
-
--- Should become:
|
1222
|
-
<p>You can split the <a href="http://www.treefrog.com/" title="for some reason">linked part</a> from
|
1223
|
-
the reference part with a single space.</p>
|
1224
|
-
>>>
|
1225
|
-
|
1226
|
-
# Reference-style link with intervening space
|
1227
|
-
<<<
|
1228
|
-
You can split the [linked part]
|
1229
|
-
[ex] from the reference part
|
1230
|
-
with a newline in case your editor wraps it there, I guess.
|
1231
|
-
|
1232
|
-
[ex]: http://www.treefrog.com/
|
1233
|
-
--- Should become:
|
1234
|
-
<p>You can split the <a href="http://www.treefrog.com/">linked part</a> from the reference part
|
1235
|
-
with a newline in case your editor wraps it there, I guess.</p>
|
1236
|
-
>>>
|
1237
|
-
|
1238
|
-
# Reference-style anchors
|
1239
|
-
<<<
|
1240
|
-
I get 10 times more traffic from [Google] [1] than from
|
1241
|
-
[Yahoo] [2] or [MSN] [3].
|
1242
|
-
|
1243
|
-
[1]: http://google.com/ "Google"
|
1244
|
-
[2]: http://search.yahoo.com/ "Yahoo Search"
|
1245
|
-
[3]: http://search.msn.com/ "MSN Search"
|
1246
|
-
--- Should become:
|
1247
|
-
<p>I get 10 times more traffic from <a href="http://google.com/" title="Google">Google</a> than from
|
1248
|
-
<a href="http://search.yahoo.com/" title="Yahoo Search">Yahoo</a> or <a href="http://search.msn.com/" title="MSN Search">MSN</a>.</p>
|
1249
|
-
>>>
|
1250
|
-
|
1251
|
-
# Implicit name-link shortcut anchors
|
1252
|
-
<<<
|
1253
|
-
I get 10 times more traffic from [Google][] than from
|
1254
|
-
[Yahoo][] or [MSN][].
|
1255
|
-
|
1256
|
-
[google]: http://google.com/ "Google"
|
1257
|
-
[yahoo]: http://search.yahoo.com/ "Yahoo Search"
|
1258
|
-
[msn]: http://search.msn.com/ "MSN Search"
|
1259
|
-
--- Should become:
|
1260
|
-
<p>I get 10 times more traffic from <a href="http://google.com/" title="Google">Google</a> than from
|
1261
|
-
<a href="http://search.yahoo.com/" title="Yahoo Search">Yahoo</a> or <a href="http://search.msn.com/" title="MSN Search">MSN</a>.</p>
|
1262
|
-
>>>
|
1263
|
-
|
1264
|
-
# Inline anchors
|
1265
|
-
<<<
|
1266
|
-
I get 10 times more traffic from [Google](http://google.com/ "Google")
|
1267
|
-
than from [Yahoo](http://search.yahoo.com/ "Yahoo Search") or
|
1268
|
-
[MSN](http://search.msn.com/ "MSN Search").
|
1269
|
-
--- Should become:
|
1270
|
-
<p>I get 10 times more traffic from <a href="http://google.com/" title="Google">Google</a>
|
1271
|
-
than from <a href="http://search.yahoo.com/" title="Yahoo Search">Yahoo</a> or
|
1272
|
-
<a href="http://search.msn.com/" title="MSN Search">MSN</a>.</p>
|
1273
|
-
>>>
|
1274
|
-
|
1275
|
-
# Graceful fail for unclosed brackets (and bug #524)
|
1276
|
-
<<<
|
1277
|
-
This is just a [bracket opener; it should fail gracefully.
|
1278
|
-
--- Should become:
|
1279
|
-
<p>This is just a [bracket opener; it should fail gracefully.</p>
|
1280
|
-
>>>
|
1281
|
-
|
1282
|
-
# Unresolved reference-style links (Bug #620)
|
1283
|
-
<<<
|
1284
|
-
This is an unresolved [url][1].
|
1285
|
-
--- Should become:
|
1286
|
-
<p>This is an unresolved [url][1].</p>
|
1287
|
-
>>>
|
1288
|
-
|
1289
|
-
|
1290
|
-
### [Auto-links]
|
1291
|
-
|
1292
|
-
# Plain HTTP link
|
1293
|
-
<<<
|
1294
|
-
This is a reference to <http://www.FaerieMUD.org/>. You should follow it.
|
1295
|
-
--- Should become:
|
1296
|
-
<p>This is a reference to <a href="http://www.FaerieMUD.org/">http://www.FaerieMUD.org/</a>. You should follow it.</p>
|
1297
|
-
>>>
|
1298
|
-
|
1299
|
-
# FTP link
|
1300
|
-
<<<
|
1301
|
-
Why not download your very own chandelier from <ftp://ftp.usuc.edu/pub/foof/mir/>?
|
1302
|
-
--- Should become:
|
1303
|
-
<p>Why not download your very own chandelier from <a href="ftp://ftp.usuc.edu/pub/foof/mir/">ftp://ftp.usuc.edu/pub/foof/mir/</a>?</p>
|
1304
|
-
>>>
|
1305
|
-
|
1306
|
-
|
1307
|
-
### [Lists]
|
1308
|
-
|
1309
|
-
# Unordered list
|
1310
|
-
<<<
|
1311
|
-
* Red
|
1312
|
-
* Green
|
1313
|
-
* Blue
|
1314
|
-
--- Should become:
|
1315
|
-
<ul>
|
1316
|
-
<li>Red</li>
|
1317
|
-
<li>Green</li>
|
1318
|
-
<li>Blue</li>
|
1319
|
-
</ul>
|
1320
|
-
>>>
|
1321
|
-
|
1322
|
-
# Unordered list w/alt bullets
|
1323
|
-
<<<
|
1324
|
-
- Red
|
1325
|
-
- Green
|
1326
|
-
- Blue
|
1327
|
-
--- Should become:
|
1328
|
-
<ul>
|
1329
|
-
<li>Red</li>
|
1330
|
-
<li>Green</li>
|
1331
|
-
<li>Blue</li>
|
1332
|
-
</ul>
|
1333
|
-
>>>
|
1334
|
-
|
1335
|
-
# Unordered list w/alt bullets 2
|
1336
|
-
<<<
|
1337
|
-
+ Red
|
1338
|
-
+ Green
|
1339
|
-
+ Blue
|
1340
|
-
--- Should become:
|
1341
|
-
<ul>
|
1342
|
-
<li>Red</li>
|
1343
|
-
<li>Green</li>
|
1344
|
-
<li>Blue</li>
|
1345
|
-
</ul>
|
1346
|
-
>>>
|
1347
|
-
|
1348
|
-
# Unordered list w/mixed bullets
|
1349
|
-
<<<
|
1350
|
-
+ Red
|
1351
|
-
- Green
|
1352
|
-
* Blue
|
1353
|
-
--- Should become:
|
1354
|
-
<ul>
|
1355
|
-
<li>Red</li>
|
1356
|
-
<li>Green</li>
|
1357
|
-
<li>Blue</li>
|
1358
|
-
</ul>
|
1359
|
-
>>>
|
1360
|
-
|
1361
|
-
# Ordered list
|
1362
|
-
<<<
|
1363
|
-
1. Bird
|
1364
|
-
2. McHale
|
1365
|
-
3. Parish
|
1366
|
-
--- Should become:
|
1367
|
-
<ol>
|
1368
|
-
<li>Bird</li>
|
1369
|
-
<li>McHale</li>
|
1370
|
-
<li>Parish</li>
|
1371
|
-
</ol>
|
1372
|
-
>>>
|
1373
|
-
|
1374
|
-
# Ordered list, any numbers
|
1375
|
-
<<<
|
1376
|
-
1. Bird
|
1377
|
-
1. McHale
|
1378
|
-
1. Parish
|
1379
|
-
--- Should become:
|
1380
|
-
<ol>
|
1381
|
-
<li>Bird</li>
|
1382
|
-
<li>McHale</li>
|
1383
|
-
<li>Parish</li>
|
1384
|
-
</ol>
|
1385
|
-
>>>
|
1386
|
-
|
1387
|
-
# Ordered list, any numbers 2
|
1388
|
-
<<<
|
1389
|
-
3. Bird
|
1390
|
-
1. McHale
|
1391
|
-
8. Parish
|
1392
|
-
--- Should become:
|
1393
|
-
<ol>
|
1394
|
-
<li>Bird</li>
|
1395
|
-
<li>McHale</li>
|
1396
|
-
<li>Parish</li>
|
1397
|
-
</ol>
|
1398
|
-
>>>
|
1399
|
-
|
1400
|
-
# Hanging indents
|
1401
|
-
<<<
|
1402
|
-
* Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
|
1403
|
-
Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,
|
1404
|
-
viverra nec, fringilla in, laoreet vitae, risus.
|
1405
|
-
* Donec sit amet nisl. Aliquam semper ipsum sit amet velit.
|
1406
|
-
Suspendisse id sem consectetuer libero luctus adipiscing.
|
1407
|
-
--- Should become:
|
1408
|
-
<ul>
|
1409
|
-
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
|
1410
|
-
Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,
|
1411
|
-
viverra nec, fringilla in, laoreet vitae, risus.</li>
|
1412
|
-
<li>Donec sit amet nisl. Aliquam semper ipsum sit amet velit.
|
1413
|
-
Suspendisse id sem consectetuer libero luctus adipiscing.</li>
|
1414
|
-
</ul>
|
1415
|
-
>>>
|
1416
|
-
|
1417
|
-
# Lazy indents
|
1418
|
-
<<<
|
1419
|
-
* Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
|
1420
|
-
Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,
|
1421
|
-
viverra nec, fringilla in, laoreet vitae, risus.
|
1422
|
-
* Donec sit amet nisl. Aliquam semper ipsum sit amet velit.
|
1423
|
-
Suspendisse id sem consectetuer libero luctus adipiscing.
|
1424
|
-
--- Should become:
|
1425
|
-
<ul>
|
1426
|
-
<li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
|
1427
|
-
Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,
|
1428
|
-
viverra nec, fringilla in, laoreet vitae, risus.</li>
|
1429
|
-
<li>Donec sit amet nisl. Aliquam semper ipsum sit amet velit.
|
1430
|
-
Suspendisse id sem consectetuer libero luctus adipiscing.</li>
|
1431
|
-
</ul>
|
1432
|
-
>>>
|
1433
|
-
|
1434
|
-
# Paragraph wrapped list items
|
1435
|
-
<<<
|
1436
|
-
* Bird
|
1437
|
-
|
1438
|
-
* Magic
|
1439
|
-
--- Should become:
|
1440
|
-
<ul>
|
1441
|
-
<li><p>Bird</p></li>
|
1442
|
-
<li><p>Magic</p></li>
|
1443
|
-
</ul>
|
1444
|
-
>>>
|
1445
|
-
|
1446
|
-
# Multi-paragraph list items
|
1447
|
-
<<<
|
1448
|
-
1. This is a list item with two paragraphs. Lorem ipsum dolor
|
1449
|
-
sit amet, consectetuer adipiscing elit. Aliquam hendrerit
|
1450
|
-
mi posuere lectus.
|
1451
|
-
|
1452
|
-
Vestibulum enim wisi, viverra nec, fringilla in, laoreet
|
1453
|
-
vitae, risus. Donec sit amet nisl. Aliquam semper ipsum
|
1454
|
-
sit amet velit.
|
1455
|
-
|
1456
|
-
2. Suspendisse id sem consectetuer libero luctus adipiscing.
|
1457
|
-
--- Should become:
|
1458
|
-
<ol>
|
1459
|
-
<li><p>This is a list item with two paragraphs. Lorem ipsum dolor
|
1460
|
-
sit amet, consectetuer adipiscing elit. Aliquam hendrerit
|
1461
|
-
mi posuere lectus.</p>
|
1462
|
-
|
1463
|
-
<p>Vestibulum enim wisi, viverra nec, fringilla in, laoreet
|
1464
|
-
vitae, risus. Donec sit amet nisl. Aliquam semper ipsum
|
1465
|
-
sit amet velit.</p></li>
|
1466
|
-
<li><p>Suspendisse id sem consectetuer libero luctus adipiscing.</p></li>
|
1467
|
-
</ol>
|
1468
|
-
>>>
|
1469
|
-
|
1470
|
-
# Lazy multi-paragraphs
|
1471
|
-
<<<
|
1472
|
-
* This is a list item with two paragraphs.
|
1473
|
-
|
1474
|
-
This is the second paragraph in the list item. You're
|
1475
|
-
only required to indent the first line. Lorem ipsum dolor
|
1476
|
-
sit amet, consectetuer adipiscing elit.
|
1477
|
-
|
1478
|
-
* Another item in the same list.
|
1479
|
-
--- Should become:
|
1480
|
-
<ul>
|
1481
|
-
<li><p>This is a list item with two paragraphs.</p>
|
1482
|
-
|
1483
|
-
<p>This is the second paragraph in the list item. You're
|
1484
|
-
only required to indent the first line. Lorem ipsum dolor
|
1485
|
-
sit amet, consectetuer adipiscing elit.</p></li>
|
1486
|
-
<li><p>Another item in the same list.</p></li>
|
1487
|
-
</ul>
|
1488
|
-
>>>
|
1489
|
-
|
1490
|
-
# Blockquote in list item
|
1491
|
-
<<<
|
1492
|
-
* A list item with a blockquote:
|
1493
|
-
|
1494
|
-
> This is a blockquote
|
1495
|
-
> inside a list item.
|
1496
|
-
--- Should become:
|
1497
|
-
<ul>
|
1498
|
-
<li><p>A list item with a blockquote:</p>
|
1499
|
-
|
1500
|
-
<blockquote>
|
1501
|
-
<p>This is a blockquote
|
1502
|
-
inside a list item.</p>
|
1503
|
-
</blockquote></li>
|
1504
|
-
</ul>
|
1505
|
-
>>>
|
1506
|
-
|
1507
|
-
# Code block in list item
|
1508
|
-
<<<
|
1509
|
-
* A list item with a code block:
|
1510
|
-
|
1511
|
-
<code goes here>
|
1512
|
-
--- Should become:
|
1513
|
-
<ul>
|
1514
|
-
<li><p>A list item with a code block:</p>
|
1515
|
-
|
1516
|
-
<pre><code><code goes here>
|
1517
|
-
</code></pre></li>
|
1518
|
-
</ul>
|
1519
|
-
>>>
|
1520
|
-
|
1521
|
-
# Backslash-escaped number-period-space
|
1522
|
-
<<<
|
1523
|
-
1986\. What a great season.
|
1524
|
-
--- Should become:
|
1525
|
-
<p>1986. What a great season.</p>
|
1526
|
-
>>>
|
1527
|
-
|