typo 3.99.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.DS_Store +0 -0
- data/CHANGELOG +718 -0
- data/MAINTAINERS +30 -0
- data/MIT-LICENSE +21 -0
- data/README +92 -0
- data/Rakefile +10 -0
- data/app/apis/blogger_service.rb +94 -0
- data/app/apis/meta_weblog_service.rb +197 -0
- data/app/apis/movable_type_service.rb +150 -0
- data/app/apis/typo_web_service.rb +26 -0
- data/app/controllers/accounts_controller.rb +52 -0
- data/app/controllers/admin/base_controller.rb +21 -0
- data/app/controllers/admin/blacklist_controller.rb +50 -0
- data/app/controllers/admin/cache_controller.rb +31 -0
- data/app/controllers/admin/categories_controller.rb +64 -0
- data/app/controllers/admin/comments_controller.rb +57 -0
- data/app/controllers/admin/content_controller.rb +147 -0
- data/app/controllers/admin/general_controller.rb +42 -0
- data/app/controllers/admin/pages_controller.rb +50 -0
- data/app/controllers/admin/resources_controller.rb +98 -0
- data/app/controllers/admin/sidebar_controller.rb +74 -0
- data/app/controllers/admin/textfilters_controller.rb +104 -0
- data/app/controllers/admin/themes_controller.rb +20 -0
- data/app/controllers/admin/trackbacks_controller.rb +54 -0
- data/app/controllers/admin/users_controller.rb +41 -0
- data/app/controllers/application.rb +66 -0
- data/app/controllers/articles_controller.rb +218 -0
- data/app/controllers/backend_controller.rb +11 -0
- data/app/controllers/content_controller.rb +98 -0
- data/app/controllers/live_controller.rb +10 -0
- data/app/controllers/redirect_controller.rb +16 -0
- data/app/controllers/sidebar_controller.rb +50 -0
- data/app/controllers/textfilter_controller.rb +22 -0
- data/app/controllers/theme_controller.rb +52 -0
- data/app/controllers/xml_controller.rb +111 -0
- data/app/helpers/accounts_helper.rb +2 -0
- data/app/helpers/admin/base_helper.rb +124 -0
- data/app/helpers/admin/blacklist_helper.rb +2 -0
- data/app/helpers/admin/cache_helper.rb +2 -0
- data/app/helpers/admin/comments_helper.rb +2 -0
- data/app/helpers/admin/content_helper.rb +2 -0
- data/app/helpers/admin/general_helper.rb +2 -0
- data/app/helpers/admin/pages_helper.rb +2 -0
- data/app/helpers/admin/resources_helper.rb +2 -0
- data/app/helpers/admin/sidebar_helper.rb +2 -0
- data/app/helpers/admin/textfilters_helper.rb +2 -0
- data/app/helpers/admin/themes_helper.rb +2 -0
- data/app/helpers/admin/trackbacks_helper.rb +2 -0
- data/app/helpers/admin/users_helper.rb +2 -0
- data/app/helpers/application_helper.rb +92 -0
- data/app/helpers/articles_helper.rb +163 -0
- data/app/helpers/backend_helper.rb +2 -0
- data/app/helpers/content_helper.rb +3 -0
- data/app/helpers/mail_helper.rb +6 -0
- data/app/helpers/redirect_helper.rb +2 -0
- data/app/helpers/sidebar_helper.rb +22 -0
- data/app/helpers/sidebars/plugin_helper.rb +2 -0
- data/app/helpers/text_filter_plugin_helper.rb +2 -0
- data/app/helpers/textfilter_helper.rb +2 -0
- data/app/helpers/theme_helper.rb +23 -0
- data/app/helpers/xml_helper.rb +21 -0
- data/app/models/aggregations/audioscrobbler.rb +54 -0
- data/app/models/aggregations/backpack.rb +57 -0
- data/app/models/aggregations/delicious.rb +57 -0
- data/app/models/aggregations/flickr.rb +89 -0
- data/app/models/aggregations/fortythree.rb +62 -0
- data/app/models/aggregations/magnolia.rb +81 -0
- data/app/models/aggregations/tada.rb +75 -0
- data/app/models/aggregations/technorati.rb +51 -0
- data/app/models/aggregations/upcoming.rb +74 -0
- data/app/models/article.rb +211 -0
- data/app/models/blacklist_pattern.rb +22 -0
- data/app/models/blog.rb +162 -0
- data/app/models/blog_sweeper.rb +23 -0
- data/app/models/category.rb +62 -0
- data/app/models/comment.rb +76 -0
- data/app/models/config_manager.rb +80 -0
- data/app/models/content.rb +222 -0
- data/app/models/content_observer.rb +5 -0
- data/app/models/content_state/base.rb +51 -0
- data/app/models/content_state/draft.rb +40 -0
- data/app/models/content_state/factory.rb +16 -0
- data/app/models/content_state/just_published.rb +47 -0
- data/app/models/content_state/new.rb +45 -0
- data/app/models/content_state/publication_pending.rb +43 -0
- data/app/models/content_state/published.rb +35 -0
- data/app/models/email_notifier.rb +9 -0
- data/app/models/notification_mailer.rb +34 -0
- data/app/models/page.rb +20 -0
- data/app/models/page_cache.rb +29 -0
- data/app/models/ping.rb +129 -0
- data/app/models/redirect.rb +3 -0
- data/app/models/resource.rb +76 -0
- data/app/models/sidebar.rb +32 -0
- data/app/models/simple_cache.rb +37 -0
- data/app/models/tag.rb +63 -0
- data/app/models/text_filter.rb +111 -0
- data/app/models/theme.rb +44 -0
- data/app/models/trackback.rb +51 -0
- data/app/models/trigger.rb +31 -0
- data/app/models/user.rb +113 -0
- data/app/models/web_notifier.rb +7 -0
- data/app/views/accounts/login.rhtml +24 -0
- data/app/views/accounts/logout.rhtml +12 -0
- data/app/views/accounts/signup.rhtml +26 -0
- data/app/views/accounts/welcome.rhtml +13 -0
- data/app/views/admin/base/_recent_comments.rhtml +10 -0
- data/app/views/admin/base/_recent_trackbacks.rhtml +10 -0
- data/app/views/admin/blacklist/_blacklist_patterns.rhtml +16 -0
- data/app/views/admin/blacklist/_form.rhtml +15 -0
- data/app/views/admin/blacklist/_quick_post.rhtml +16 -0
- data/app/views/admin/blacklist/destroy.rhtml +10 -0
- data/app/views/admin/blacklist/edit.rhtml +14 -0
- data/app/views/admin/blacklist/list.rhtml +13 -0
- data/app/views/admin/cache/list.rhtml +8 -0
- data/app/views/admin/categories/_categories.rhtml +14 -0
- data/app/views/admin/categories/_form.rhtml +7 -0
- data/app/views/admin/categories/_quick_post.rhtml +11 -0
- data/app/views/admin/categories/destroy.rhtml +10 -0
- data/app/views/admin/categories/edit.rhtml +13 -0
- data/app/views/admin/categories/list.rhtml +15 -0
- data/app/views/admin/categories/reorder.rhtml +9 -0
- data/app/views/admin/categories/show.rhtml +18 -0
- data/app/views/admin/comments/_form.rhtml +19 -0
- data/app/views/admin/comments/comments.rhtml +4 -0
- data/app/views/admin/comments/destroy.rhtml +11 -0
- data/app/views/admin/comments/edit.rhtml +18 -0
- data/app/views/admin/comments/list.rhtml +31 -0
- data/app/views/admin/comments/new.rhtml +15 -0
- data/app/views/admin/comments/show.rhtml +10 -0
- data/app/views/admin/content/_articles.rhtml +20 -0
- data/app/views/admin/content/_attachment.rhtml +17 -0
- data/app/views/admin/content/_form.rhtml +51 -0
- data/app/views/admin/content/_pages.rhtml +3 -0
- data/app/views/admin/content/_quick_post.rhtml +20 -0
- data/app/views/admin/content/_show_categories.rhtml +9 -0
- data/app/views/admin/content/_show_resources.rhtml +9 -0
- data/app/views/admin/content/destroy.rhtml +11 -0
- data/app/views/admin/content/edit.rhtml +28 -0
- data/app/views/admin/content/list.rhtml +20 -0
- data/app/views/admin/content/new.rhtml +27 -0
- data/app/views/admin/content/preview.rhtml +3 -0
- data/app/views/admin/content/show.rhtml +25 -0
- data/app/views/admin/general/index.rhtml +216 -0
- data/app/views/admin/general/update_database.rhtml +44 -0
- data/app/views/admin/pages/_form.rhtml +19 -0
- data/app/views/admin/pages/_pages.rhtml +18 -0
- data/app/views/admin/pages/_quick_post.rhtml +21 -0
- data/app/views/admin/pages/destroy.rhtml +11 -0
- data/app/views/admin/pages/edit.rhtml +28 -0
- data/app/views/admin/pages/list.rhtml +13 -0
- data/app/views/admin/pages/new.rhtml +24 -0
- data/app/views/admin/pages/preview.rhtml +1 -0
- data/app/views/admin/pages/show.rhtml +14 -0
- data/app/views/admin/resources/_itunes_category_add.rhtml +11 -0
- data/app/views/admin/resources/_itunes_category_edit.rhtml +32 -0
- data/app/views/admin/resources/_metadata_add.rhtml +22 -0
- data/app/views/admin/resources/_metadata_edit.rhtml +22 -0
- data/app/views/admin/resources/_mime_edit.rhtml +8 -0
- data/app/views/admin/resources/_pages.rhtml +3 -0
- data/app/views/admin/resources/_resources.rhtml +40 -0
- data/app/views/admin/resources/destroy.rhtml +11 -0
- data/app/views/admin/resources/list.rhtml +9 -0
- data/app/views/admin/resources/new.rhtml +12 -0
- data/app/views/admin/sidebar/_active.rhtml +14 -0
- data/app/views/admin/sidebar/_actives.rhtml +9 -0
- data/app/views/admin/sidebar/_available.rhtml +5 -0
- data/app/views/admin/sidebar/_availables.rhtml +5 -0
- data/app/views/admin/sidebar/_publish.rhtml +2 -0
- data/app/views/admin/sidebar/_target.rhtml +1 -0
- data/app/views/admin/sidebar/index.rhtml +34 -0
- data/app/views/admin/sidebar/publish.rjs +6 -0
- data/app/views/admin/sidebar/remove.rjs +5 -0
- data/app/views/admin/sidebar/set_active.rjs +10 -0
- data/app/views/admin/textfilters/_form.rhtml +45 -0
- data/app/views/admin/textfilters/_macros.rhtml +16 -0
- data/app/views/admin/textfilters/_textfilters.rhtml +20 -0
- data/app/views/admin/textfilters/destroy.rhtml +10 -0
- data/app/views/admin/textfilters/edit.rhtml +17 -0
- data/app/views/admin/textfilters/list.rhtml +15 -0
- data/app/views/admin/textfilters/macro_help.rhtml +3 -0
- data/app/views/admin/textfilters/new.rhtml +15 -0
- data/app/views/admin/textfilters/preview.rhtml +3 -0
- data/app/views/admin/textfilters/show.rhtml +34 -0
- data/app/views/admin/textfilters/show_help.rhtml +8 -0
- data/app/views/admin/themes/index.rhtml +12 -0
- data/app/views/admin/trackbacks/_form.rhtml +19 -0
- data/app/views/admin/trackbacks/destroy.rhtml +6 -0
- data/app/views/admin/trackbacks/edit.rhtml +14 -0
- data/app/views/admin/trackbacks/list.rhtml +31 -0
- data/app/views/admin/trackbacks/new.rhtml +15 -0
- data/app/views/admin/trackbacks/show.rhtml +14 -0
- data/app/views/admin/users/_form.rhtml +48 -0
- data/app/views/admin/users/_user.rhtml +9 -0
- data/app/views/admin/users/destroy.rhtml +14 -0
- data/app/views/admin/users/edit.rhtml +14 -0
- data/app/views/admin/users/list.rhtml +9 -0
- data/app/views/admin/users/new.rhtml +15 -0
- data/app/views/admin/users/show.rhtml +18 -0
- data/app/views/articles/_article.rhtml +4 -0
- data/app/views/articles/_comment.rhtml +7 -0
- data/app/views/articles/_comment_box.rhtml +43 -0
- data/app/views/articles/_comment_error.rhtml +1 -0
- data/app/views/articles/_trackback.rhtml +7 -0
- data/app/views/articles/archives.rhtml +22 -0
- data/app/views/articles/comment_preview.rhtml +3 -0
- data/app/views/articles/error.rhtml +3 -0
- data/app/views/articles/groupings.rhtml +14 -0
- data/app/views/articles/index.rhtml +11 -0
- data/app/views/articles/read.rhtml +70 -0
- data/app/views/articles/trackback.rxml +5 -0
- data/app/views/articles/view_page.rhtml +3 -0
- data/app/views/layouts/accounts.rhtml +22 -0
- data/app/views/layouts/administration.rhtml +75 -0
- data/app/views/layouts/sidebar.rhtml +40 -0
- data/app/views/live/search.rhtml +10 -0
- data/app/views/notification_mailer/_mail_footer.rhtml +7 -0
- data/app/views/notification_mailer/_mail_header.rhtml +1 -0
- data/app/views/notification_mailer/article.rhtml +6 -0
- data/app/views/notification_mailer/comment.rhtml +11 -0
- data/app/views/notification_mailer/trackback.rhtml +3 -0
- data/app/views/settings/done.rhtml +2 -0
- data/app/views/settings/install.rhtml +12 -0
- data/app/views/shared/_search.rhtml +10 -0
- data/app/views/sidebar/_row.rhtml +1 -0
- data/app/views/sidebar/_sidebar.rhtml +5 -0
- data/app/views/sidebar/display_plugins.rhtml +5 -0
- data/app/views/sidebar/show.rhtml +1 -0
- data/app/views/theme/static_view_test.rhtml +1 -0
- data/app/views/xml/_atom10_item_article.rxml +39 -0
- data/app/views/xml/_atom10_item_comment.rxml +13 -0
- data/app/views/xml/_atom10_item_trackback.rxml +16 -0
- data/app/views/xml/_itunes_item_resource.rxml +30 -0
- data/app/views/xml/_rss20_item_article.rxml +35 -0
- data/app/views/xml/_rss20_item_comment.rxml +7 -0
- data/app/views/xml/_rss20_item_trackback.rxml +7 -0
- data/app/views/xml/atom10_feed.rxml +18 -0
- data/app/views/xml/itunes_feed.rxml +29 -0
- data/app/views/xml/rsd.rxml +19 -0
- data/app/views/xml/rss20_feed.rxml +18 -0
- data/bin/typo +12 -0
- data/cache/META/DATA/ACTION_PARAM/localhost.3000/articles/index/.cache +540 -0
- data/cache/META/DATA/ACTION_PARAM/localhost.3000/articles/permalink/day=09&month=09&title=i-need-a-new-keyboard-and-mouse&year=2005.cache +414 -0
- data/cache/META/META/ACTION_PARAM/localhost.3000/articles/index/.cache +3 -0
- data/cache/META/META/ACTION_PARAM/localhost.3000/articles/permalink/day=09&month=09&title=i-need-a-new-keyboard-and-mouse&year=2005.cache +3 -0
- data/components/plugins/sidebars/aimpresence/content.rhtml +4 -0
- data/components/plugins/sidebars/aimpresence_controller.rb +10 -0
- data/components/plugins/sidebars/amazon/content.rhtml +4 -0
- data/components/plugins/sidebars/amazon_controller.rb +17 -0
- data/components/plugins/sidebars/archives/content.rhtml +11 -0
- data/components/plugins/sidebars/archives_controller.rb +24 -0
- data/components/plugins/sidebars/audioscrobbler/content.rhtml +10 -0
- data/components/plugins/sidebars/audioscrobbler_controller.rb +10 -0
- data/components/plugins/sidebars/backpack/content.rhtml +12 -0
- data/components/plugins/sidebars/backpack_controller.rb +17 -0
- data/components/plugins/sidebars/category/content.rhtml +10 -0
- data/components/plugins/sidebars/category_controller.rb +13 -0
- data/components/plugins/sidebars/delicious/content.rhtml +20 -0
- data/components/plugins/sidebars/delicious_controller.rb +29 -0
- data/components/plugins/sidebars/flickr/content.rhtml +15 -0
- data/components/plugins/sidebars/flickr_controller.rb +16 -0
- data/components/plugins/sidebars/fortythree/content.rhtml +8 -0
- data/components/plugins/sidebars/fortythree_controller.rb +12 -0
- data/components/plugins/sidebars/fortythreeplaces/content.rhtml +8 -0
- data/components/plugins/sidebars/fortythreeplaces_controller.rb +12 -0
- data/components/plugins/sidebars/magnolia/content.rhtml +12 -0
- data/components/plugins/sidebars/magnolia_controller.rb +17 -0
- data/components/plugins/sidebars/recent_comments/content.rhtml +12 -0
- data/components/plugins/sidebars/recent_comments_controller.rb +23 -0
- data/components/plugins/sidebars/static/content.rhtml +2 -0
- data/components/plugins/sidebars/static_controller.rb +23 -0
- data/components/plugins/sidebars/tada/content.rhtml +12 -0
- data/components/plugins/sidebars/tada_controller.rb +12 -0
- data/components/plugins/sidebars/tag/content.rhtml +8 -0
- data/components/plugins/sidebars/tag_controller.rb +18 -0
- data/components/plugins/sidebars/technorati/content.rhtml +8 -0
- data/components/plugins/sidebars/technorati_controller.rb +12 -0
- data/components/plugins/sidebars/upcoming/content.rhtml +8 -0
- data/components/plugins/sidebars/upcoming_controller.rb +11 -0
- data/components/plugins/sidebars/xbox/content.rhtml +2 -0
- data/components/plugins/sidebars/xbox_controller.rb +6 -0
- data/components/plugins/sidebars/xml/content.rhtml +12 -0
- data/components/plugins/sidebars/xml_controller.rb +11 -0
- data/components/plugins/textfilters/amazon_controller.rb +39 -0
- data/components/plugins/textfilters/code_controller.rb +59 -0
- data/components/plugins/textfilters/flickr_controller.rb +75 -0
- data/components/plugins/textfilters/htmlfilter_controller.rb +8 -0
- data/components/plugins/textfilters/lightbox_controller.rb +122 -0
- data/components/plugins/textfilters/macropost_controller.rb +14 -0
- data/components/plugins/textfilters/macropre_controller.rb +14 -0
- data/components/plugins/textfilters/markdown_controller.rb +32 -0
- data/components/plugins/textfilters/none_controller.rb +8 -0
- data/components/plugins/textfilters/smartypants_controller.rb +8 -0
- data/components/plugins/textfilters/sparkline_controller.rb +87 -0
- data/components/plugins/textfilters/textile_controller.rb +8 -0
- data/components/sidebars/README +36 -0
- data/config/boot.rb +44 -0
- data/config/database.yml +17 -0
- data/config/database.yml-pgsql +17 -0
- data/config/database.yml.example +18 -0
- data/config/environment.rb +145 -0
- data/config/environments/development.rb +17 -0
- data/config/environments/production.rb +19 -0
- data/config/environments/test.rb +26 -0
- data/config/iTunes.yml +72 -0
- data/config/lighttpd.conf +46 -0
- data/config/mail.yml +8 -0
- data/config/mail.yml.example +8 -0
- data/config/routes.rb +92 -0
- data/db/DB +0 -0
- data/db/DB.test +0 -0
- data/db/converters/README +14 -0
- data/db/converters/feed.rb +68 -0
- data/db/converters/mt-import.rb +72 -0
- data/db/converters/mt3.rb +172 -0
- data/db/converters/rss.rb +67 -0
- data/db/converters/s9y.rb +182 -0
- data/db/converters/textpattern.rb +137 -0
- data/db/converters/wordpress.rb +187 -0
- data/db/development_structure.sql +691 -0
- data/db/migrate/001_initial_schema.rb +127 -0
- data/db/migrate/002_add_user_email.rb +17 -0
- data/db/migrate/003_add_article_user_id.rb +20 -0
- data/db/migrate/004_add_sidebars.rb +31 -0
- data/db/migrate/005_add_cache_table.rb +20 -0
- data/db/migrate/006_add_pages.rb +17 -0
- data/db/migrate/007_add_permalink.rb +36 -0
- data/db/migrate/008_add_page_title.rb +9 -0
- data/db/migrate/009_add_article_guid.rb +10 -0
- data/db/migrate/010_add_tags.rb +19 -0
- data/db/migrate/011_add_article_id.rb +17 -0
- data/db/migrate/012_enlarge_settings.rb +11 -0
- data/db/migrate/013_add_textfilters.rb +33 -0
- data/db/migrate/014_move_text_filter_to_text_filter_id.rb +43 -0
- data/db/migrate/015_convert_mysql_to_innodb.rb +19 -0
- data/db/migrate/016_fix_is_primary_postgres.rb +19 -0
- data/db/migrate/017_add_comment_user_id.rb +23 -0
- data/db/migrate/018_add_guids.rb +13 -0
- data/db/migrate/019_add_whiteboards_to_content.rb +15 -0
- data/db/migrate/020_superclass_articles.rb +167 -0
- data/db/migrate/021_superclass_comments.rb +94 -0
- data/db/migrate/022_superclass_trackbacks.rb +71 -0
- data/db/migrate/023_superclass_pages.rb +64 -0
- data/db/migrate/024_cleanup_contents.rb +54 -0
- data/db/migrate/025_add_itunes_metadata.rb +29 -0
- data/db/migrate/026_add_redirect_table.rb +13 -0
- data/db/migrate/027_set_comment_published_flag.rb +19 -0
- data/db/migrate/028_rename_redirect_to.rb +12 -0
- data/db/migrate/029_add_user_notification.rb +29 -0
- data/db/migrate/030_index_sessions.rb +9 -0
- data/db/migrate/031_add_notifications_table.rb +14 -0
- data/db/migrate/032_add_jabber_notification.rb +11 -0
- data/db/migrate/033_add_count_caching.rb +34 -0
- data/db/migrate/034_boolify_published.rb +36 -0
- data/db/migrate/035_boolify_content_allow_foo.rb +36 -0
- data/db/migrate/036_add_tag_display_name.rb +53 -0
- data/db/migrate/037_enlarge_ip_field.rb +9 -0
- data/db/migrate/038_add_blog_object.rb +52 -0
- data/db/migrate/039_serialize_blog_attributes.rb +160 -0
- data/db/migrate/040_attach_content_to_blog.rb +28 -0
- data/db/migrate/041_fixup_default_sidebars.rb +18 -0
- data/db/migrate/042_remove_sidebar_staged_config.rb +22 -0
- data/db/migrate/043_create_triggers.rb +14 -0
- data/db/migrate/044_add_published_at_to_content.rb +18 -0
- data/db/migrate/045_fix_contents_published_default.rb +9 -0
- data/db/migrate/046_fixup_forthcoming_publications.rb +40 -0
- data/db/schema.mysql-v3.sql +218 -0
- data/db/schema.mysql.sql +218 -0
- data/db/schema.postgresql.sql +218 -0
- data/db/schema.rb +169 -0
- data/db/schema.sqlite.sql +218 -0
- data/db/schema.sqlserver.sql +232 -0
- data/db/schema_version +1 -0
- data/db/scripts/fix_permalinks.rb +5 -0
- data/db/updates/update.168.to.200.mysql.sql +33 -0
- data/db/updates/update.168.to.200.psql.sql +30 -0
- data/doc/Installer.txt +55 -0
- data/doc/README_FOR_APP +2 -0
- data/installer/rails-installer.rb +488 -0
- data/installer/rails_installer_defaults.yml +4 -0
- data/installer/typo-installer.rb +35 -0
- data/lib/backpack_api.rb +202 -0
- data/lib/bare_migration.rb +142 -0
- data/lib/email_notify.rb +32 -0
- data/lib/format.rb +19 -0
- data/lib/generators/sidebar/sidebar_generator.rb +13 -0
- data/lib/generators/sidebar/templates/components/plugins/sidebars/controller_template.rb +20 -0
- data/lib/generators/sidebar/templates/components/plugins/sidebars/views/content_template.rhtml +4 -0
- data/lib/jabber_notify.rb +32 -0
- data/lib/login_system.rb +85 -0
- data/lib/migrator.rb +28 -0
- data/lib/rails_patch/active_record.rb +36 -0
- data/lib/rails_patch/components.rb +14 -0
- data/lib/sidebars/component_plugin.rb +5 -0
- data/lib/sidebars/plugin.rb +241 -0
- data/lib/spam_protection.rb +126 -0
- data/lib/tasks/release.rake +171 -0
- data/lib/tasks/schemas.rake +6 -0
- data/lib/tasks/sweep_cache.rake +6 -0
- data/lib/text_filter_plugin.rb +97 -0
- data/lib/transforms.rb +26 -0
- data/lib/typo_guid.rb +10 -0
- data/lib/typo_plugins.rb +19 -0
- data/lib/typo_version.rb +1 -0
- data/lib/xmlrpc_fix.rb +13 -0
- data/public/.htaccess +34 -0
- data/public/404.html +8 -0
- data/public/500.html +8 -0
- data/public/dispatch.cgi +10 -0
- data/public/dispatch.fcgi +24 -0
- data/public/dispatch.rb +10 -0
- data/public/favicon.ico +0 -0
- data/public/images/admin/dot-vertical.gif +0 -0
- data/public/images/admin/h-tile.gif +0 -0
- data/public/images/admin/hdr-tile.gif +0 -0
- data/public/images/admin/toggle.gif +0 -0
- data/public/images/bg.jpg +0 -0
- data/public/images/bgcolor.jpg +0 -0
- data/public/images/body_bg.png +0 -0
- data/public/images/branding_bg.png +0 -0
- data/public/images/branding_logo.png +0 -0
- data/public/images/checked.gif +0 -0
- data/public/images/content_bg.png +0 -0
- data/public/images/delete.png +0 -0
- data/public/images/footer.jpg +0 -0
- data/public/images/footer.png +0 -0
- data/public/images/global_bg.png +0 -0
- data/public/images/global_logo.png +0 -0
- data/public/images/go.png +0 -0
- data/public/images/header.jpg +0 -0
- data/public/images/loading.gif +0 -0
- data/public/images/not-checked copy.gif +0 -0
- data/public/images/not-checked.gif +0 -0
- data/public/images/overlay.png +0 -0
- data/public/images/powered.gif +0 -0
- data/public/images/section_bg.png +0 -0
- data/public/images/sections_bg.png +0 -0
- data/public/images/sections_hilite.png +0 -0
- data/public/images/sections_hover.png +0 -0
- data/public/images/spinner-blue.gif +0 -0
- data/public/images/spinner.gif +0 -0
- data/public/images/spot-header.gif +0 -0
- data/public/images/spot-title.gif +0 -0
- data/public/images/x-ed.gif +0 -0
- data/public/javascripts/application.js +2 -0
- data/public/javascripts/controls.js +815 -0
- data/public/javascripts/cookies.js +60 -0
- data/public/javascripts/dragdrop.js +724 -0
- data/public/javascripts/effects.js +953 -0
- data/public/javascripts/lightbox.js +348 -0
- data/public/javascripts/prototype.js +1985 -0
- data/public/javascripts/scriptaculous.js +47 -0
- data/public/javascripts/slider.js +258 -0
- data/public/javascripts/typo.js +85 -0
- data/public/robots.txt +2 -0
- data/public/stylesheets/administration.css +585 -0
- data/public/stylesheets/lightbox.css +22 -0
- data/public/stylesheets/rss.css +54 -0
- data/public/stylesheets/user-styles.css +0 -0
- data/script/about +3 -0
- data/script/benchmarker +19 -0
- data/script/breakpointer +3 -0
- data/script/console +3 -0
- data/script/destroy +3 -0
- data/script/generate +3 -0
- data/script/lighttpd +2 -0
- data/script/logreport +79 -0
- data/script/migrate +31 -0
- data/script/performance/benchmarker +3 -0
- data/script/performance/profiler +3 -0
- data/script/plugin +3 -0
- data/script/process/reaper +3 -0
- data/script/process/spawner +3 -0
- data/script/process/spinner +3 -0
- data/script/profiler +34 -0
- data/script/runner +3 -0
- data/script/server +3 -0
- data/script/spacecheck +40 -0
- data/test/fixtures/articles_categories.yml +31 -0
- data/test/fixtures/articles_tags.yml +19 -0
- data/test/fixtures/blacklist_patterns.yml +10 -0
- data/test/fixtures/blogs.yml +74 -0
- data/test/fixtures/categories.yml +35 -0
- data/test/fixtures/contents.yml +297 -0
- data/test/fixtures/notification_mailer/article +3 -0
- data/test/fixtures/notification_mailer/comment +3 -0
- data/test/fixtures/notification_mailer/trackback +3 -0
- data/test/fixtures/notifications.yml +0 -0
- data/test/fixtures/page_caches.yml +7 -0
- data/test/fixtures/redirects.yml +13 -0
- data/test/fixtures/resources.yml +24 -0
- data/test/fixtures/sidebars.yml +5 -0
- data/test/fixtures/tags.yml +13 -0
- data/test/fixtures/text_filters.yml +42 -0
- data/test/fixtures/triggers.yml +1 -0
- data/test/fixtures/users.yml +56 -0
- data/test/functional/accounts_controller_test.rb +82 -0
- data/test/functional/admin/article_preview_test.rb +67 -0
- data/test/functional/admin/blacklist_controller_test.rb +63 -0
- data/test/functional/admin/categories_controller_test.rb +112 -0
- data/test/functional/admin/comments_controller_test.rb +78 -0
- data/test/functional/admin/content_controller_test.rb +234 -0
- data/test/functional/admin/general_controller_test.rb +26 -0
- data/test/functional/admin/pages_controller_test.rb +103 -0
- data/test/functional/admin/resources_controller_test.rb +49 -0
- data/test/functional/admin/textfilters_controller_test.rb +29 -0
- data/test/functional/admin/themes_controller_test.rb +34 -0
- data/test/functional/admin/trackbacks_controller_test.rb +76 -0
- data/test/functional/admin/users_controller_test.rb +72 -0
- data/test/functional/articles_controller_test.rb +525 -0
- data/test/functional/backend_controller_test.rb +273 -0
- data/test/functional/redirect_controller_test.rb +40 -0
- data/test/functional/textfilter_controller_test.rb +275 -0
- data/test/functional/theme_controller_test.rb +45 -0
- data/test/functional/xml_controller_test.rb +353 -0
- data/test/mocks/test/dns_mock.rb +13 -0
- data/test/mocks/test/flickr_mock.rb +30 -0
- data/test/mocks/test/http_mock.rb +38 -0
- data/test/mocks/test/theme_mock.rb +5 -0
- data/test/mocks/test/xmlrpc_mock.rb +27 -0
- data/test/mocks/themes/123-numbers-in-path/about.markdown +0 -0
- data/test/mocks/themes/CamelCaseDirectory/about.markdown +0 -0
- data/test/mocks/themes/azure/about.markdown +5 -0
- data/test/mocks/themes/azure/layouts/default.rhtml +50 -0
- data/test/mocks/themes/azure/preview.png +0 -0
- data/test/mocks/themes/azure/views/theme/static_view_test.rhtml +1 -0
- data/test/mocks/themes/i-have-special-chars/about.markdown +0 -0
- data/test/test_helper.rb +95 -0
- data/test/unit/article_test.rb +245 -0
- data/test/unit/assumptions_tests.rb +54 -0
- data/test/unit/audioscrobbler_test.rb +132 -0
- data/test/unit/blacklist_pattern_test.rb +14 -0
- data/test/unit/blog_test.rb +83 -0
- data/test/unit/category_test.rb +37 -0
- data/test/unit/comment_test.rb +117 -0
- data/test/unit/configuration_test.rb +21 -0
- data/test/unit/content_state/factory_test.rb +84 -0
- data/test/unit/delicious_test.rb +96 -0
- data/test/unit/flickr_test.rb +134 -0
- data/test/unit/fortythree_test.rb +66 -0
- data/test/unit/magnolia_test.rb +87 -0
- data/test/unit/metafragment_test.rb +63 -0
- data/test/unit/notification_mailer_test.rb +55 -0
- data/test/unit/observer_test.rb +40 -0
- data/test/unit/page_cache_test.rb +34 -0
- data/test/unit/page_test.rb +25 -0
- data/test/unit/ping_test.rb +111 -0
- data/test/unit/redirect_test.rb +19 -0
- data/test/unit/resource_test.rb +71 -0
- data/test/unit/sidebar_test.rb +14 -0
- data/test/unit/tag_test.rb +66 -0
- data/test/unit/text_filter_test.rb +126 -0
- data/test/unit/theme_test.rb +44 -0
- data/test/unit/trackback_test.rb +45 -0
- data/test/unit/trigger_test.rb +40 -0
- data/test/unit/user_test.rb +111 -0
- data/themes/azure/about.markdown +5 -0
- data/themes/azure/images/bg-tile.gif +0 -0
- data/themes/azure/images/bracket.gif +0 -0
- data/themes/azure/images/bullet.gif +0 -0
- data/themes/azure/images/hdr.gif +0 -0
- data/themes/azure/images/q-close.gif +0 -0
- data/themes/azure/images/q-open.gif +0 -0
- data/themes/azure/images/sbar-tile.gif +0 -0
- data/themes/azure/images/spinner.gif +0 -0
- data/themes/azure/images/xlink.gif +0 -0
- data/themes/azure/layouts/default.rhtml +50 -0
- data/themes/azure/preview.png +0 -0
- data/themes/azure/stylesheets/azure.css +436 -0
- data/themes/azure/stylesheets/print.css +30 -0
- data/themes/azure/views/theme/static_view_test.rhtml +1 -0
- data/vendor/akismet/Akismet.rb +140 -0
- data/vendor/bluecloth/CHANGES +366 -0
- data/vendor/bluecloth/LICENSE +340 -0
- data/vendor/bluecloth/README +99 -0
- data/vendor/bluecloth/bin/bluecloth +83 -0
- data/vendor/bluecloth/install.rb +150 -0
- data/vendor/bluecloth/lib/bluecloth.rb +1144 -0
- data/vendor/bluecloth/test.rb +117 -0
- data/vendor/bluecloth/tests/00_Class.tests.rb +71 -0
- data/vendor/bluecloth/tests/05_Markdown.tests.rb +1527 -0
- data/vendor/bluecloth/tests/10_Bug.tests.rb +57 -0
- data/vendor/bluecloth/tests/15_Contrib.tests.rb +132 -0
- data/vendor/bluecloth/tests/bctestcase.rb +274 -0
- data/vendor/bluecloth/tests/data/antsugar.txt +34 -0
- data/vendor/bluecloth/tests/data/ml-announce.txt +17 -0
- data/vendor/bluecloth/tests/data/re-overflow.txt +67 -0
- data/vendor/bluecloth/tests/data/re-overflow2.txt +281 -0
- data/vendor/bluecloth/utils.rb +553 -0
- data/vendor/flickr/Rakefile +36 -0
- data/vendor/flickr/flickr.rb +490 -0
- data/vendor/flickr/index.html +129 -0
- data/vendor/flickr/test_flickr.rb +173 -0
- data/vendor/jabber4r/CHANGES +8 -0
- data/vendor/jabber4r/LICENSE.txt +12 -0
- data/vendor/jabber4r/README +180 -0
- data/vendor/jabber4r/Rakefile.rb +143 -0
- data/vendor/jabber4r/lib/jabber4r/jabber4r.rb +22 -0
- data/vendor/jabber4r/lib/jabber4r/jid.rb +93 -0
- data/vendor/jabber4r/lib/jabber4r/protocol.rb +1384 -0
- data/vendor/jabber4r/lib/jabber4r/rexml_1.8_patch.rb +16 -0
- data/vendor/jabber4r/lib/jabber4r/roster.rb +322 -0
- data/vendor/jabber4r/lib/jabber4r/session.rb +615 -0
- data/vendor/jabber4r/lib/jabber4r/vcard.rb +42 -0
- data/vendor/plugins/expiring_action_cache/init.rb +2 -0
- data/vendor/plugins/expiring_action_cache/lib/actionparamcache.rb +113 -0
- data/vendor/plugins/expiring_action_cache/lib/metafragment.rb +46 -0
- data/vendor/plugins/upload_progress/CHANGELOG +3 -0
- data/vendor/plugins/upload_progress/MIT-LICENSE +20 -0
- data/vendor/plugins/upload_progress/README +45 -0
- data/vendor/plugins/upload_progress/Rakefile +23 -0
- data/vendor/plugins/upload_progress/init.rb +7 -0
- data/vendor/plugins/upload_progress/lib/multipart_progress.rb +169 -0
- data/vendor/plugins/upload_progress/lib/progress.rb +145 -0
- data/vendor/plugins/upload_progress/lib/upload_progress.rb +303 -0
- data/vendor/plugins/upload_progress/lib/upload_progress_helper.rb +424 -0
- data/vendor/plugins/upload_progress/public/stylesheets/upload_progress.css +21 -0
- data/vendor/plugins/upload_progress/test/multipart_progress_testx.rb +364 -0
- data/vendor/plugins/upload_progress/test/upload_progress_helper_testx.rb +134 -0
- data/vendor/plugins/upload_progress/test/upload_progress_testx.rb +88 -0
- data/vendor/redcloth/RedCloth.gemspec +52 -0
- data/vendor/redcloth/bin/redcloth +3 -0
- data/vendor/redcloth/doc/CHANGELOG +160 -0
- data/vendor/redcloth/doc/COPYING +25 -0
- data/vendor/redcloth/doc/README +106 -0
- data/vendor/redcloth/doc/REFERENCE +216 -0
- data/vendor/redcloth/doc/make.rb +359 -0
- data/vendor/redcloth/install.rb +1032 -0
- data/vendor/redcloth/lib/redcloth.rb +1130 -0
- data/vendor/redcloth/run-tests.rb +28 -0
- data/vendor/redcloth/setup.rb +1376 -0
- data/vendor/redcloth/tests/code.yml +105 -0
- data/vendor/redcloth/tests/hard_breaks.yml +26 -0
- data/vendor/redcloth/tests/images.yml +171 -0
- data/vendor/redcloth/tests/instiki.yml +39 -0
- data/vendor/redcloth/tests/links.yml +155 -0
- data/vendor/redcloth/tests/lists.yml +77 -0
- data/vendor/redcloth/tests/markdown.yml +218 -0
- data/vendor/redcloth/tests/poignant.yml +64 -0
- data/vendor/redcloth/tests/table.yml +198 -0
- data/vendor/redcloth/tests/textism.yml +406 -0
- data/vendor/ruby-mp3info/lib/mp3info.rb +720 -0
- data/vendor/rubypants/README +114 -0
- data/vendor/rubypants/Rakefile +55 -0
- data/vendor/rubypants/html/classes/RubyPants.html +924 -0
- data/vendor/rubypants/html/created.rid +1 -0
- data/vendor/rubypants/html/files/README.html +248 -0
- data/vendor/rubypants/html/files/rubypants_rb.html +125 -0
- data/vendor/rubypants/html/fr_class_index.html +27 -0
- data/vendor/rubypants/html/fr_file_index.html +28 -0
- data/vendor/rubypants/html/fr_method_index.html +38 -0
- data/vendor/rubypants/html/index.html +24 -0
- data/vendor/rubypants/html/rdoc-style.css +172 -0
- data/vendor/rubypants/install.rb +9 -0
- data/vendor/rubypants/rubypants.rb +490 -0
- data/vendor/rubypants/test_rubypants.rb +162 -0
- data/vendor/sparklines/README.txt +47 -0
- data/vendor/sparklines/USAGE +14 -0
- data/vendor/sparklines/lib/sparklines.rb +435 -0
- data/vendor/sparklines/samples/sparklinestest.rb +26 -0
- data/vendor/sparklines/sparklines_generator.rb +9 -0
- data/vendor/sparklines/templates/sparklines_controller.rb +30 -0
- data/vendor/sparklines/templates/sparklines_helper.rb +30 -0
- data/vendor/syntax/LICENSE +27 -0
- data/vendor/syntax/NEWS +16 -0
- data/vendor/syntax/README +38 -0
- data/vendor/syntax/Rakefile +194 -0
- data/vendor/syntax/api/classes/Syntax.html +173 -0
- data/vendor/syntax/api/classes/Syntax/Convertors.html +91 -0
- data/vendor/syntax/api/classes/Syntax/Convertors/Abstract.html +159 -0
- data/vendor/syntax/api/classes/Syntax/Convertors/HTML.html +149 -0
- data/vendor/syntax/api/classes/Syntax/Default.html +123 -0
- data/vendor/syntax/api/classes/Syntax/Ruby.html +319 -0
- data/vendor/syntax/api/classes/Syntax/Token.html +151 -0
- data/vendor/syntax/api/classes/Syntax/Tokenizer.html +324 -0
- data/vendor/syntax/api/classes/Syntax/Version.html +109 -0
- data/vendor/syntax/api/classes/Syntax/XML.html +205 -0
- data/vendor/syntax/api/classes/Syntax/YAML.html +189 -0
- data/vendor/syntax/api/created.rid +1 -0
- data/vendor/syntax/api/files/README.html +155 -0
- data/vendor/syntax/api/files/lib/syntax/common_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/convertors/abstract_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/convertors/html_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/lang/ruby_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/lang/xml_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/lang/yaml_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/version_rb.html +92 -0
- data/vendor/syntax/api/files/lib/syntax_rb.html +96 -0
- data/vendor/syntax/api/fr_class_index.html +56 -0
- data/vendor/syntax/api/fr_file_index.html +54 -0
- data/vendor/syntax/api/fr_method_index.html +65 -0
- data/vendor/syntax/api/index.html +26 -0
- data/vendor/syntax/api/rdoc-style.css +175 -0
- data/vendor/syntax/doc/manual-html/chapter-1.html +198 -0
- data/vendor/syntax/doc/manual-html/chapter-2.html +262 -0
- data/vendor/syntax/doc/manual-html/chapter-3.html +266 -0
- data/vendor/syntax/doc/manual-html/chapter-4.html +267 -0
- data/vendor/syntax/doc/manual-html/index.html +152 -0
- data/vendor/syntax/doc/manual-html/stylesheets/manual.css +270 -0
- data/vendor/syntax/doc/manual-html/stylesheets/ruby.css +17 -0
- data/vendor/syntax/doc/manual/chapter.erb +38 -0
- data/vendor/syntax/doc/manual/example.erb +18 -0
- data/vendor/syntax/doc/manual/index.erb +29 -0
- data/vendor/syntax/doc/manual/manual.rb +311 -0
- data/vendor/syntax/doc/manual/manual.yml +43 -0
- data/vendor/syntax/doc/manual/page.erb +87 -0
- data/vendor/syntax/doc/manual/parts/0000.txt +5 -0
- data/vendor/syntax/doc/manual/parts/0001.txt +16 -0
- data/vendor/syntax/doc/manual/parts/0002.txt +24 -0
- data/vendor/syntax/doc/manual/parts/0003.txt +6 -0
- data/vendor/syntax/doc/manual/parts/0004.txt +32 -0
- data/vendor/syntax/doc/manual/parts/0005.txt +18 -0
- data/vendor/syntax/doc/manual/parts/0006.txt +62 -0
- data/vendor/syntax/doc/manual/parts/0007.txt +3 -0
- data/vendor/syntax/doc/manual/parts/0008.txt +5 -0
- data/vendor/syntax/doc/manual/parts/0009.txt +29 -0
- data/vendor/syntax/doc/manual/parts/0010.txt +21 -0
- data/vendor/syntax/doc/manual/stylesheets/manual.css +270 -0
- data/vendor/syntax/doc/manual/stylesheets/ruby.css +17 -0
- data/vendor/syntax/doc/manual/tutorial.erb +30 -0
- data/vendor/syntax/lib/syntax.rb +38 -0
- data/vendor/syntax/lib/syntax/common.rb +163 -0
- data/vendor/syntax/lib/syntax/convertors/abstract.rb +27 -0
- data/vendor/syntax/lib/syntax/convertors/html.rb +51 -0
- data/vendor/syntax/lib/syntax/lang/ruby.rb +317 -0
- data/vendor/syntax/lib/syntax/lang/xml.rb +108 -0
- data/vendor/syntax/lib/syntax/lang/yaml.rb +105 -0
- data/vendor/syntax/lib/syntax/version.rb +9 -0
- data/vendor/syntax/setup.rb +1331 -0
- data/vendor/syntax/syntax.gemspec +24 -0
- data/vendor/syntax/test/ALL-TESTS.rb +5 -0
- data/vendor/syntax/test/syntax/tc_ruby.rb +871 -0
- data/vendor/syntax/test/syntax/tc_xml.rb +202 -0
- data/vendor/syntax/test/syntax/tc_yaml.rb +228 -0
- data/vendor/syntax/test/syntax/tokenizer_testcase.rb +40 -0
- data/vendor/syntax/test/tc_syntax.rb +22 -0
- data/vendor/uuidtools/CHANGELOG +4 -0
- data/vendor/uuidtools/README +13 -0
- data/vendor/uuidtools/install.rb +30 -0
- data/vendor/uuidtools/lib/uuidtools.rb +555 -0
- data/vendor/uuidtools/rakefile +112 -0
- metadata +1022 -0
@@ -0,0 +1,117 @@
|
|
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
|
+
|
@@ -0,0 +1,71 @@
|
|
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
|
+
|
@@ -0,0 +1,1527 @@
|
|
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
|
+
|