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,24 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!DOCTYPE html
|
3
|
+
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
|
4
|
+
"DTD/xhtml1-frameset.dtd">
|
5
|
+
|
6
|
+
<!--
|
7
|
+
|
8
|
+
RDoc Documentation
|
9
|
+
|
10
|
+
-->
|
11
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
12
|
+
<head>
|
13
|
+
<title>RDoc Documentation</title>
|
14
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
15
|
+
</head>
|
16
|
+
<frameset rows="20%, 80%">
|
17
|
+
<frameset cols="25%,35%,45%">
|
18
|
+
<frame src="fr_file_index.html" title="Files" name="Files" />
|
19
|
+
<frame src="fr_class_index.html" name="Classes" />
|
20
|
+
<frame src="fr_method_index.html" name="Methods" />
|
21
|
+
</frameset>
|
22
|
+
<frame src="files/README.html" name="docwin" />
|
23
|
+
</frameset>
|
24
|
+
</html>
|
@@ -0,0 +1,172 @@
|
|
1
|
+
|
2
|
+
body {
|
3
|
+
margin: 0;
|
4
|
+
padding: 0;
|
5
|
+
}
|
6
|
+
|
7
|
+
h1,h2,h3,h4 { margin: 0; color: #efefef; background: transparent; }
|
8
|
+
h1 { font-size: 120%; }
|
9
|
+
h2,h3,h4 { margin-top: 1em; }
|
10
|
+
|
11
|
+
a { background: #eef; color: #039; text-decoration: none; }
|
12
|
+
a:hover { background: #039; color: #eef; }
|
13
|
+
|
14
|
+
/* Override the base stylesheet's Anchor inside a table cell */
|
15
|
+
td > a {
|
16
|
+
background: transparent;
|
17
|
+
color: #039;
|
18
|
+
text-decoration: none;
|
19
|
+
}
|
20
|
+
|
21
|
+
/* === Structural elements =================================== */
|
22
|
+
|
23
|
+
div#index {
|
24
|
+
margin: 0;
|
25
|
+
padding: 0;
|
26
|
+
font-size: 0.9em;
|
27
|
+
}
|
28
|
+
|
29
|
+
div#index a {
|
30
|
+
margin-left: 0.7em;
|
31
|
+
}
|
32
|
+
|
33
|
+
div#classHeader {
|
34
|
+
width: auto;
|
35
|
+
background: #039;
|
36
|
+
color: white;
|
37
|
+
padding: 0.5em 1.5em 0.5em 1.5em;
|
38
|
+
margin: 0;
|
39
|
+
border-bottom: 3px solid #006;
|
40
|
+
}
|
41
|
+
|
42
|
+
div#classHeader a {
|
43
|
+
background: inherit;
|
44
|
+
color: white;
|
45
|
+
}
|
46
|
+
|
47
|
+
div#classHeader td {
|
48
|
+
background: inherit;
|
49
|
+
color: white;
|
50
|
+
}
|
51
|
+
|
52
|
+
div#fileHeader {
|
53
|
+
width: auto;
|
54
|
+
background: #039;
|
55
|
+
color: white;
|
56
|
+
padding: 0.5em 1.5em 0.5em 1.5em;
|
57
|
+
margin: 0;
|
58
|
+
border-bottom: 3px solid #006;
|
59
|
+
}
|
60
|
+
|
61
|
+
div#fileHeader a {
|
62
|
+
background: inherit;
|
63
|
+
color: white;
|
64
|
+
}
|
65
|
+
|
66
|
+
div#fileHeader td {
|
67
|
+
background: inherit;
|
68
|
+
color: white;
|
69
|
+
}
|
70
|
+
|
71
|
+
div#bodyContent {
|
72
|
+
padding: 0 1.5em 0 1.5em;
|
73
|
+
}
|
74
|
+
|
75
|
+
div#description {
|
76
|
+
padding: 0.5em 1.5em;
|
77
|
+
background: #efefef;
|
78
|
+
border: 1px dotted #999;
|
79
|
+
}
|
80
|
+
|
81
|
+
div#description h1,h2,h3,h4,h5,h6 {
|
82
|
+
color: black;
|
83
|
+
background: transparent;
|
84
|
+
}
|
85
|
+
|
86
|
+
div#validator-badges {
|
87
|
+
text-align: center;
|
88
|
+
}
|
89
|
+
div#validator-badges img { border: 0; }
|
90
|
+
|
91
|
+
div#copyright {
|
92
|
+
color: #333;
|
93
|
+
background: #efefef;
|
94
|
+
font: 0.75em sans-serif;
|
95
|
+
margin-top: 5em;
|
96
|
+
margin-bottom: 0;
|
97
|
+
padding: 0.5em 2em;
|
98
|
+
}
|
99
|
+
|
100
|
+
|
101
|
+
/* === Classes =================================== */
|
102
|
+
|
103
|
+
table.header-table {
|
104
|
+
color: white;
|
105
|
+
font-size: small;
|
106
|
+
}
|
107
|
+
|
108
|
+
.type-note {
|
109
|
+
font-size: small;
|
110
|
+
color: #DEDEDE;
|
111
|
+
}
|
112
|
+
|
113
|
+
.section-bar {
|
114
|
+
background: #eee;
|
115
|
+
color: #333;
|
116
|
+
padding: 3px;
|
117
|
+
border: 1px solid #999;
|
118
|
+
}
|
119
|
+
|
120
|
+
.top-aligned-row { vertical-align: vertical-align: top }
|
121
|
+
|
122
|
+
/* --- Context section classes ----------------------- */
|
123
|
+
|
124
|
+
.context-row { }
|
125
|
+
.context-item-name { font-family: monospace; font-weight: bold; color: black; }
|
126
|
+
.context-item-value { font-size: x-small; color: #448; }
|
127
|
+
.context-item-desc { background: #efefef; }
|
128
|
+
|
129
|
+
/* --- Method classes -------------------------- */
|
130
|
+
.method-detail {
|
131
|
+
background: #EFEFEF;
|
132
|
+
padding: 0;
|
133
|
+
margin-top: 0.5em;
|
134
|
+
margin-bottom: 0.5em;
|
135
|
+
border: 1px dotted #DDD;
|
136
|
+
}
|
137
|
+
.method-heading {
|
138
|
+
color: black;
|
139
|
+
background: #AAA;
|
140
|
+
border-bottom: 1px solid #666;
|
141
|
+
padding: 0.2em 0.5em 0 0.5em;
|
142
|
+
}
|
143
|
+
.method-signature { color: black; background: inherit; }
|
144
|
+
.method-name { font-weight: bold; }
|
145
|
+
.method-args { font-style: italic; }
|
146
|
+
.method-description { padding: 0 0.5em 0 0.5em; }
|
147
|
+
|
148
|
+
/* --- Source code sections -------------------- */
|
149
|
+
|
150
|
+
a.source-toggle { font-size: 90%; }
|
151
|
+
div.method-source-code {
|
152
|
+
background: #262626;
|
153
|
+
color: #ffdead;
|
154
|
+
margin: 1em;
|
155
|
+
padding: 0.5em;
|
156
|
+
border: 1px dashed #999;
|
157
|
+
overflow: hidden;
|
158
|
+
}
|
159
|
+
|
160
|
+
div.method-source-code pre { color: #ffdead; overflow: hidden; }
|
161
|
+
|
162
|
+
/* --- Ruby keyword styles --------------------- */
|
163
|
+
/* (requires a hacked html_generator.rb to add more class-types) */
|
164
|
+
.ruby-constant { color: #7fffd4; background: transparent; }
|
165
|
+
.ruby-keyword { color: #00ffff; background: transparent; }
|
166
|
+
.ruby-ivar { color: #eedd82; background: transparent; }
|
167
|
+
.ruby-operator { color: #00ffee; background: transparent; }
|
168
|
+
.ruby-identifier { color: #ffdead; background: transparent; }
|
169
|
+
.ruby-node { color: #ffa07a; background: transparent; }
|
170
|
+
.ruby-comment { color: #b22222; font-weight: bold; background: transparent; }
|
171
|
+
.ruby-regexp { color: #ffa07a; background: transparent; }
|
172
|
+
.ruby-value { color: #7fffd4; background: transparent; }
|
@@ -0,0 +1,490 @@
|
|
1
|
+
#
|
2
|
+
# = RubyPants -- SmartyPants ported to Ruby
|
3
|
+
#
|
4
|
+
# Ported by Christian Neukirchen <mailto:chneukirchen@gmail.com>
|
5
|
+
# Copyright (C) 2004 Christian Neukirchen
|
6
|
+
#
|
7
|
+
# Incooporates ideas, comments and documentation by Chad Miller
|
8
|
+
# Copyright (C) 2004 Chad Miller
|
9
|
+
#
|
10
|
+
# Original SmartyPants by John Gruber
|
11
|
+
# Copyright (C) 2003 John Gruber
|
12
|
+
#
|
13
|
+
|
14
|
+
#
|
15
|
+
# = RubyPants -- SmartyPants ported to Ruby
|
16
|
+
#
|
17
|
+
# == Synopsis
|
18
|
+
#
|
19
|
+
# RubyPants is a Ruby port of the smart-quotes library SmartyPants.
|
20
|
+
#
|
21
|
+
# The original "SmartyPants" is a free web publishing plug-in for
|
22
|
+
# Movable Type, Blosxom, and BBEdit that easily translates plain ASCII
|
23
|
+
# punctuation characters into "smart" typographic punctuation HTML
|
24
|
+
# entities.
|
25
|
+
#
|
26
|
+
#
|
27
|
+
# == Description
|
28
|
+
#
|
29
|
+
# RubyPants can perform the following transformations:
|
30
|
+
#
|
31
|
+
# * Straight quotes (<tt>"</tt> and <tt>'</tt>) into "curly" quote
|
32
|
+
# HTML entities
|
33
|
+
# * Backticks-style quotes (<tt>``like this''</tt>) into "curly" quote
|
34
|
+
# HTML entities
|
35
|
+
# * Dashes (<tt>--</tt> and <tt>---</tt>) into en- and em-dash
|
36
|
+
# entities
|
37
|
+
# * Three consecutive dots (<tt>...</tt> or <tt>. . .</tt>) into an
|
38
|
+
# ellipsis entity
|
39
|
+
#
|
40
|
+
# This means you can write, edit, and save your posts using plain old
|
41
|
+
# ASCII straight quotes, plain dashes, and plain dots, but your
|
42
|
+
# published posts (and final HTML output) will appear with smart
|
43
|
+
# quotes, em-dashes, and proper ellipses.
|
44
|
+
#
|
45
|
+
# RubyPants does not modify characters within <tt><pre></tt>,
|
46
|
+
# <tt><code></tt>, <tt><kbd></tt>, <tt><math></tt> or
|
47
|
+
# <tt><script></tt> tag blocks. Typically, these tags are used to
|
48
|
+
# display text where smart quotes and other "smart punctuation" would
|
49
|
+
# not be appropriate, such as source code or example markup.
|
50
|
+
#
|
51
|
+
#
|
52
|
+
# == Backslash Escapes
|
53
|
+
#
|
54
|
+
# If you need to use literal straight quotes (or plain hyphens and
|
55
|
+
# periods), RubyPants accepts the following backslash escape sequences
|
56
|
+
# to force non-smart punctuation. It does so by transforming the
|
57
|
+
# escape sequence into a decimal-encoded HTML entity:
|
58
|
+
#
|
59
|
+
# \\ \" \' \. \- \`
|
60
|
+
#
|
61
|
+
# This is useful, for example, when you want to use straight quotes as
|
62
|
+
# foot and inch marks: 6'2" tall; a 17" iMac. (Use <tt>6\'2\"</tt>
|
63
|
+
# resp. <tt>17\"</tt>.)
|
64
|
+
#
|
65
|
+
#
|
66
|
+
# == Algorithmic Shortcomings
|
67
|
+
#
|
68
|
+
# One situation in which quotes will get curled the wrong way is when
|
69
|
+
# apostrophes are used at the start of leading contractions. For
|
70
|
+
# example:
|
71
|
+
#
|
72
|
+
# 'Twas the night before Christmas.
|
73
|
+
#
|
74
|
+
# In the case above, RubyPants will turn the apostrophe into an
|
75
|
+
# opening single-quote, when in fact it should be a closing one. I
|
76
|
+
# don't think this problem can be solved in the general case--every
|
77
|
+
# word processor I've tried gets this wrong as well. In such cases,
|
78
|
+
# it's best to use the proper HTML entity for closing single-quotes
|
79
|
+
# ("<tt>’</tt>") by hand.
|
80
|
+
#
|
81
|
+
#
|
82
|
+
# == Bugs
|
83
|
+
#
|
84
|
+
# To file bug reports or feature requests (except see above) please
|
85
|
+
# send email to: mailto:chneukirchen@gmail.com
|
86
|
+
#
|
87
|
+
# If the bug involves quotes being curled the wrong way, please send
|
88
|
+
# example text to illustrate.
|
89
|
+
#
|
90
|
+
#
|
91
|
+
# == Authors
|
92
|
+
#
|
93
|
+
# John Gruber did all of the hard work of writing this software in
|
94
|
+
# Perl for Movable Type and almost all of this useful documentation.
|
95
|
+
# Chad Miller ported it to Python to use with Pyblosxom.
|
96
|
+
#
|
97
|
+
# Christian Neukirchen provided the Ruby port, as a general-purpose
|
98
|
+
# library that follows the *Cloth API.
|
99
|
+
#
|
100
|
+
#
|
101
|
+
# == Copyright and License
|
102
|
+
#
|
103
|
+
# === SmartyPants license:
|
104
|
+
#
|
105
|
+
# Copyright (c) 2003 John Gruber
|
106
|
+
# (http://daringfireball.net)
|
107
|
+
# All rights reserved.
|
108
|
+
#
|
109
|
+
# Redistribution and use in source and binary forms, with or without
|
110
|
+
# modification, are permitted provided that the following conditions
|
111
|
+
# are met:
|
112
|
+
#
|
113
|
+
# * Redistributions of source code must retain the above copyright
|
114
|
+
# notice, this list of conditions and the following disclaimer.
|
115
|
+
#
|
116
|
+
# * Redistributions in binary form must reproduce the above copyright
|
117
|
+
# notice, this list of conditions and the following disclaimer in
|
118
|
+
# the documentation and/or other materials provided with the
|
119
|
+
# distribution.
|
120
|
+
#
|
121
|
+
# * Neither the name "SmartyPants" nor the names of its contributors
|
122
|
+
# may be used to endorse or promote products derived from this
|
123
|
+
# software without specific prior written permission.
|
124
|
+
#
|
125
|
+
# This software is provided by the copyright holders and contributors
|
126
|
+
# "as is" and any express or implied warranties, including, but not
|
127
|
+
# limited to, the implied warranties of merchantability and fitness
|
128
|
+
# for a particular purpose are disclaimed. In no event shall the
|
129
|
+
# copyright owner or contributors be liable for any direct, indirect,
|
130
|
+
# incidental, special, exemplary, or consequential damages (including,
|
131
|
+
# but not limited to, procurement of substitute goods or services;
|
132
|
+
# loss of use, data, or profits; or business interruption) however
|
133
|
+
# caused and on any theory of liability, whether in contract, strict
|
134
|
+
# liability, or tort (including negligence or otherwise) arising in
|
135
|
+
# any way out of the use of this software, even if advised of the
|
136
|
+
# possibility of such damage.
|
137
|
+
#
|
138
|
+
# === RubyPants license
|
139
|
+
#
|
140
|
+
# RubyPants is a derivative work of SmartyPants and smartypants.py.
|
141
|
+
#
|
142
|
+
# Redistribution and use in source and binary forms, with or without
|
143
|
+
# modification, are permitted provided that the following conditions
|
144
|
+
# are met:
|
145
|
+
#
|
146
|
+
# * Redistributions of source code must retain the above copyright
|
147
|
+
# notice, this list of conditions and the following disclaimer.
|
148
|
+
#
|
149
|
+
# * Redistributions in binary form must reproduce the above copyright
|
150
|
+
# notice, this list of conditions and the following disclaimer in
|
151
|
+
# the documentation and/or other materials provided with the
|
152
|
+
# distribution.
|
153
|
+
#
|
154
|
+
# This software is provided by the copyright holders and contributors
|
155
|
+
# "as is" and any express or implied warranties, including, but not
|
156
|
+
# limited to, the implied warranties of merchantability and fitness
|
157
|
+
# for a particular purpose are disclaimed. In no event shall the
|
158
|
+
# copyright owner or contributors be liable for any direct, indirect,
|
159
|
+
# incidental, special, exemplary, or consequential damages (including,
|
160
|
+
# but not limited to, procurement of substitute goods or services;
|
161
|
+
# loss of use, data, or profits; or business interruption) however
|
162
|
+
# caused and on any theory of liability, whether in contract, strict
|
163
|
+
# liability, or tort (including negligence or otherwise) arising in
|
164
|
+
# any way out of the use of this software, even if advised of the
|
165
|
+
# possibility of such damage.
|
166
|
+
#
|
167
|
+
#
|
168
|
+
# == Links
|
169
|
+
#
|
170
|
+
# John Gruber:: http://daringfireball.net
|
171
|
+
# SmartyPants:: http://daringfireball.net/projects/smartypants
|
172
|
+
#
|
173
|
+
# Chad Miller:: http://web.chad.org
|
174
|
+
#
|
175
|
+
# Christian Neukirchen:: http://kronavita.de/chris
|
176
|
+
#
|
177
|
+
|
178
|
+
|
179
|
+
class RubyPants < String
|
180
|
+
VERSION = "0.2"
|
181
|
+
|
182
|
+
# Create a new RubyPants instance with the text in +string+.
|
183
|
+
#
|
184
|
+
# Allowed elements in the options array:
|
185
|
+
#
|
186
|
+
# 0 :: do nothing
|
187
|
+
# 1 :: enable all, using only em-dash shortcuts
|
188
|
+
# 2 :: enable all, using old school en- and em-dash shortcuts (*default*)
|
189
|
+
# 3 :: enable all, using inverted old school en and em-dash shortcuts
|
190
|
+
# -1 :: stupefy (translate HTML entities to their ASCII-counterparts)
|
191
|
+
#
|
192
|
+
# If you don't like any of these defaults, you can pass symbols to change
|
193
|
+
# RubyPants' behavior:
|
194
|
+
#
|
195
|
+
# <tt>:quotes</tt> :: quotes
|
196
|
+
# <tt>:backticks</tt> :: backtick quotes (``double'' only)
|
197
|
+
# <tt>:allbackticks</tt> :: backtick quotes (``double'' and `single')
|
198
|
+
# <tt>:dashes</tt> :: dashes
|
199
|
+
# <tt>:oldschool</tt> :: old school dashes
|
200
|
+
# <tt>:inverted</tt> :: inverted old school dashes
|
201
|
+
# <tt>:ellipses</tt> :: ellipses
|
202
|
+
# <tt>:convertquotes</tt> :: convert <tt>"</tt> entities to
|
203
|
+
# <tt>"</tt> for Dreamweaver users
|
204
|
+
# <tt>:stupefy</tt> :: translate RubyPants HTML entities
|
205
|
+
# to their ASCII counterparts.
|
206
|
+
#
|
207
|
+
def initialize(string, options=[2])
|
208
|
+
super string
|
209
|
+
@options = [*options]
|
210
|
+
end
|
211
|
+
|
212
|
+
# Apply SmartyPants transformations.
|
213
|
+
def to_html
|
214
|
+
do_quotes = do_backticks = do_dashes = do_ellipses = do_stupify = nil
|
215
|
+
convert_quotes = false
|
216
|
+
|
217
|
+
if @options.include? 0
|
218
|
+
# Do nothing.
|
219
|
+
return self
|
220
|
+
elsif @options.include? 1
|
221
|
+
# Do everything, turn all options on.
|
222
|
+
do_quotes = do_backticks = do_ellipses = true
|
223
|
+
do_dashes = :normal
|
224
|
+
elsif @options.include? 2
|
225
|
+
# Do everything, turn all options on, use old school dash shorthand.
|
226
|
+
do_quotes = do_backticks = do_ellipses = true
|
227
|
+
do_dashes = :oldschool
|
228
|
+
elsif @options.include? 3
|
229
|
+
# Do everything, turn all options on, use inverted old school
|
230
|
+
# dash shorthand.
|
231
|
+
do_quotes = do_backticks = do_ellipses = true
|
232
|
+
do_dashes = :inverted
|
233
|
+
elsif @options.include?(-1)
|
234
|
+
do_stupefy = true
|
235
|
+
else
|
236
|
+
do_quotes = @options.include? :quotes
|
237
|
+
do_backticks = @options.include? :backticks
|
238
|
+
do_backticks = :both if @options.include? :allbackticks
|
239
|
+
do_dashes = :normal if @options.include? :dashes
|
240
|
+
do_dashes = :oldschool if @options.include? :oldschool
|
241
|
+
do_dashes = :inverted if @options.include? :inverted
|
242
|
+
do_ellipses = @options.include? :ellipses
|
243
|
+
convert_quotes = @options.include? :convertquotes
|
244
|
+
do_stupefy = @options.include? :stupefy
|
245
|
+
end
|
246
|
+
|
247
|
+
# Parse the HTML
|
248
|
+
tokens = tokenize
|
249
|
+
|
250
|
+
# Keep track of when we're inside <pre> or <code> tags.
|
251
|
+
in_pre = false
|
252
|
+
|
253
|
+
# Here is the result stored in.
|
254
|
+
result = ""
|
255
|
+
|
256
|
+
# This is a cheat, used to get some context for one-character
|
257
|
+
# tokens that consist of just a quote char. What we do is remember
|
258
|
+
# the last character of the previous text token, to use as context
|
259
|
+
# to curl single- character quote tokens correctly.
|
260
|
+
prev_token_last_char = nil
|
261
|
+
|
262
|
+
tokens.each { |token|
|
263
|
+
if token.first == :tag
|
264
|
+
result << token[1]
|
265
|
+
if token[1] =~ %r!<(/?)(?:pre|code|kbd|script|math)[\s>]!
|
266
|
+
in_pre = ($1 != "/") # Opening or closing tag?
|
267
|
+
end
|
268
|
+
else
|
269
|
+
t = token[1]
|
270
|
+
|
271
|
+
# Remember last char of this token before processing.
|
272
|
+
last_char = t[-1].chr
|
273
|
+
|
274
|
+
unless in_pre
|
275
|
+
t = process_escapes t
|
276
|
+
|
277
|
+
t.gsub!(/"/, '"') if convert_quotes
|
278
|
+
|
279
|
+
if do_dashes
|
280
|
+
t = educate_dashes t if do_dashes == :normal
|
281
|
+
t = educate_dashes_oldschool t if do_dashes == :oldschool
|
282
|
+
t = educate_dashes_inverted t if do_dashes == :inverted
|
283
|
+
end
|
284
|
+
|
285
|
+
t = educate_ellipses t if do_ellipses
|
286
|
+
|
287
|
+
# Note: backticks need to be processed before quotes.
|
288
|
+
if do_backticks
|
289
|
+
t = educate_backticks t
|
290
|
+
t = educate_single_backticks t if do_backticks == :both
|
291
|
+
end
|
292
|
+
|
293
|
+
if do_quotes
|
294
|
+
if t == "'"
|
295
|
+
# Special case: single-character ' token
|
296
|
+
if prev_token_last_char =~ /\S/
|
297
|
+
t = "’"
|
298
|
+
else
|
299
|
+
t = "‘"
|
300
|
+
end
|
301
|
+
elsif t == '"'
|
302
|
+
# Special case: single-character " token
|
303
|
+
if prev_token_last_char =~ /\S/
|
304
|
+
t = "”"
|
305
|
+
else
|
306
|
+
t = "“"
|
307
|
+
end
|
308
|
+
else
|
309
|
+
# Normal case:
|
310
|
+
t = educate_quotes t
|
311
|
+
end
|
312
|
+
end
|
313
|
+
|
314
|
+
t = stupefy_entities t if do_stupefy
|
315
|
+
end
|
316
|
+
|
317
|
+
prev_token_last_char = last_char
|
318
|
+
result << t
|
319
|
+
end
|
320
|
+
}
|
321
|
+
|
322
|
+
# Done
|
323
|
+
result
|
324
|
+
end
|
325
|
+
|
326
|
+
protected
|
327
|
+
|
328
|
+
# Return the string, with after processing the following backslash
|
329
|
+
# escape sequences. This is useful if you want to force a "dumb" quote
|
330
|
+
# or other character to appear.
|
331
|
+
#
|
332
|
+
# Escaped are:
|
333
|
+
# \\ \" \' \. \- \`
|
334
|
+
#
|
335
|
+
def process_escapes(str)
|
336
|
+
str.gsub('\\\\', '\').
|
337
|
+
gsub('\"', '"').
|
338
|
+
gsub("\\\'", ''').
|
339
|
+
gsub('\.', '.').
|
340
|
+
gsub('\-', '-').
|
341
|
+
gsub('\`', '`')
|
342
|
+
end
|
343
|
+
|
344
|
+
# The string, with each instance of "<tt>--</tt>" translated to an
|
345
|
+
# em-dash HTML entity.
|
346
|
+
#
|
347
|
+
def educate_dashes(str)
|
348
|
+
str.gsub(/--/, '—')
|
349
|
+
end
|
350
|
+
|
351
|
+
# The string, with each instance of "<tt>--</tt>" translated to an
|
352
|
+
# en-dash HTML entity, and each "<tt>---</tt>" translated to an
|
353
|
+
# em-dash HTML entity.
|
354
|
+
#
|
355
|
+
def educate_dashes_oldschool(str)
|
356
|
+
str.gsub(/---/, '—').gsub(/--/, '–')
|
357
|
+
end
|
358
|
+
|
359
|
+
# Return the string, with each instance of "<tt>--</tt>" translated
|
360
|
+
# to an em-dash HTML entity, and each "<tt>---</tt>" translated to
|
361
|
+
# an en-dash HTML entity. Two reasons why: First, unlike the en- and
|
362
|
+
# em-dash syntax supported by +educate_dashes_oldschool+, it's
|
363
|
+
# compatible with existing entries written before SmartyPants 1.1,
|
364
|
+
# back when "<tt>--</tt>" was only used for em-dashes. Second,
|
365
|
+
# em-dashes are more common than en-dashes, and so it sort of makes
|
366
|
+
# sense that the shortcut should be shorter to type. (Thanks to
|
367
|
+
# Aaron Swartz for the idea.)
|
368
|
+
#
|
369
|
+
def educate_dashes_inverted(str)
|
370
|
+
str.gsub(/---/, '–').gsub(/--/, '—')
|
371
|
+
end
|
372
|
+
|
373
|
+
# Return the string, with each instance of "<tt>...</tt>" translated
|
374
|
+
# to an ellipsis HTML entity. Also converts the case where there are
|
375
|
+
# spaces between the dots.
|
376
|
+
#
|
377
|
+
def educate_ellipses(str)
|
378
|
+
str.gsub('...', '…').gsub('. . .', '…')
|
379
|
+
end
|
380
|
+
|
381
|
+
# Return the string, with "<tt>``backticks''</tt>"-style single quotes
|
382
|
+
# translated into HTML curly quote entities.
|
383
|
+
#
|
384
|
+
def educate_backticks(str)
|
385
|
+
str.gsub("``", '“').gsub("''", '”')
|
386
|
+
end
|
387
|
+
|
388
|
+
# Return the string, with "<tt>`backticks'</tt>"-style single quotes
|
389
|
+
# translated into HTML curly quote entities.
|
390
|
+
#
|
391
|
+
def educate_single_backticks(str)
|
392
|
+
str.gsub("`", '‘').gsub("'", '’')
|
393
|
+
end
|
394
|
+
|
395
|
+
# Return the string, with "educated" curly quote HTML entities.
|
396
|
+
#
|
397
|
+
def educate_quotes(str)
|
398
|
+
punct_class = '[!"#\$\%\'()*+,\-.\/:;<=>?\@\[\\\\\]\^_`{|}~]'
|
399
|
+
|
400
|
+
str = str.dup
|
401
|
+
|
402
|
+
# Special case if the very first character is a quote followed by
|
403
|
+
# punctuation at a non-word-break. Close the quotes by brute
|
404
|
+
# force:
|
405
|
+
str.gsub!(/^'(?=#{punct_class}\B)/, '’')
|
406
|
+
str.gsub!(/^"(?=#{punct_class}\B)/, '”')
|
407
|
+
|
408
|
+
# Special case for double sets of quotes, e.g.:
|
409
|
+
# <p>He said, "'Quoted' words in a larger quote."</p>
|
410
|
+
str.gsub!(/"'(?=\w)/, '“‘')
|
411
|
+
str.gsub!(/'"(?=\w)/, '‘“')
|
412
|
+
|
413
|
+
# Special case for decade abbreviations (the '80s):
|
414
|
+
str.gsub!(/'(?=\d\ds)/, '’')
|
415
|
+
|
416
|
+
close_class = %![^\ \t\r\n\\[\{\(\-]!
|
417
|
+
dec_dashes = '–|—'
|
418
|
+
|
419
|
+
# Get most opening single quotes:
|
420
|
+
str.gsub!(/(\s| |--|&[mn]dash;|#{dec_dashes}|ȁ[34];)'(?=\w)/,
|
421
|
+
'\1‘')
|
422
|
+
# Single closing quotes:
|
423
|
+
str.gsub!(/(#{close_class})'/, '\1’')
|
424
|
+
str.gsub!(/'(\s|s\b|$)/, '’\1')
|
425
|
+
# Any remaining single quotes should be opening ones:
|
426
|
+
str.gsub!(/'/, '‘')
|
427
|
+
|
428
|
+
# Get most opening double quotes:
|
429
|
+
str.gsub!(/(\s| |--|&[mn]dash;|#{dec_dashes}|ȁ[34];)"(?=\w)/,
|
430
|
+
'\1“')
|
431
|
+
# Double closing quotes:
|
432
|
+
str.gsub!(/(#{close_class})"/, '\1”')
|
433
|
+
str.gsub!(/"(\s|s\b|$)/, '”\1')
|
434
|
+
# Any remaining quotes should be opening ones:
|
435
|
+
str.gsub!(/"/, '“')
|
436
|
+
|
437
|
+
str
|
438
|
+
end
|
439
|
+
|
440
|
+
# Return the string, with each RubyPants HTML entity translated to
|
441
|
+
# its ASCII counterpart.
|
442
|
+
#
|
443
|
+
# Note: This is not reversible (but exactly the same as in SmartyPants)
|
444
|
+
#
|
445
|
+
def stupefy_entities(str)
|
446
|
+
str.
|
447
|
+
gsub(/–/, '-'). # en-dash
|
448
|
+
gsub(/—/, '--'). # em-dash
|
449
|
+
|
450
|
+
gsub(/‘/, "'"). # open single quote
|
451
|
+
gsub(/’/, "'"). # close single quote
|
452
|
+
|
453
|
+
gsub(/“/, '"'). # open double quote
|
454
|
+
gsub(/”/, '"'). # close double quote
|
455
|
+
|
456
|
+
gsub(/…/, '...') # ellipsis
|
457
|
+
end
|
458
|
+
|
459
|
+
# Return an array of the tokens comprising the string. Each token is
|
460
|
+
# either a tag (possibly with nested, tags contained therein, such
|
461
|
+
# as <tt><a href="<MTFoo>"></tt>, or a run of text between
|
462
|
+
# tags. Each element of the array is a two-element array; the first
|
463
|
+
# is either :tag or :text; the second is the actual value.
|
464
|
+
#
|
465
|
+
# Based on the <tt>_tokenize()</tt> subroutine from Brad Choate's
|
466
|
+
# MTRegex plugin. <http://www.bradchoate.com/past/mtregex.php>
|
467
|
+
#
|
468
|
+
# This is actually the easier variant using tag_soup, as used by
|
469
|
+
# Chad Miller in the Python port of SmartyPants.
|
470
|
+
#
|
471
|
+
def tokenize
|
472
|
+
tag_soup = /([^<]*)(<[^>]*>)/
|
473
|
+
|
474
|
+
tokens = []
|
475
|
+
|
476
|
+
prev_end = 0
|
477
|
+
scan(tag_soup) {
|
478
|
+
tokens << [:text, $1] if $1 != ""
|
479
|
+
tokens << [:tag, $2]
|
480
|
+
|
481
|
+
prev_end = $~.end(0)
|
482
|
+
}
|
483
|
+
|
484
|
+
if prev_end < size
|
485
|
+
tokens << [:text, self[prev_end..-1]]
|
486
|
+
end
|
487
|
+
|
488
|
+
tokens
|
489
|
+
end
|
490
|
+
end
|