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,17 @@
|
|
1
|
+
.ruby .normal {}
|
2
|
+
.ruby .comment { color: #005; font-style: italic; }
|
3
|
+
.ruby .keyword { color: #A00; font-weight: bold; }
|
4
|
+
.ruby .method { color: #077; }
|
5
|
+
.ruby .class { color: #074; }
|
6
|
+
.ruby .module { color: #050; }
|
7
|
+
.ruby .punct { color: #447; font-weight: bold; }
|
8
|
+
.ruby .symbol { color: #099; }
|
9
|
+
.ruby .string { color: #944; }
|
10
|
+
.ruby .char { color: #F07; }
|
11
|
+
.ruby .ident { color: #004; }
|
12
|
+
.ruby .constant { color: #07F; }
|
13
|
+
.ruby .regex { color: #B66; }
|
14
|
+
.ruby .number { color: #D55; }
|
15
|
+
.ruby .attribute { color: #377; }
|
16
|
+
.ruby .global { color: #3B7; }
|
17
|
+
.ruby .expr { color: #227; }
|
@@ -0,0 +1,30 @@
|
|
1
|
+
<h1>Tutorial #<%= object.index %>. <%= object.title %></h1>
|
2
|
+
|
3
|
+
<p>The sources for this tutorial may be found in the <tt>tutorial/<%= "%02d" % object.index %></tt>
|
4
|
+
directory of the Copland distribution.</p>
|
5
|
+
|
6
|
+
<% if object.intro %>
|
7
|
+
|
8
|
+
<h2>Introduction</h2>
|
9
|
+
|
10
|
+
<%= object.intro.to_html %>
|
11
|
+
|
12
|
+
<% end %>
|
13
|
+
|
14
|
+
<h2>Steps</h2>
|
15
|
+
|
16
|
+
<ol>
|
17
|
+
<% object.steps.each do |step| %>
|
18
|
+
|
19
|
+
<li><%= step.to_html %></li>
|
20
|
+
|
21
|
+
<% end %>
|
22
|
+
</ol>
|
23
|
+
|
24
|
+
<% if object.summary %>
|
25
|
+
|
26
|
+
<h2>Summary</h2>
|
27
|
+
|
28
|
+
<%= object.summary.to_html %>
|
29
|
+
|
30
|
+
<% end %>
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'syntax/common'
|
2
|
+
|
3
|
+
module Syntax
|
4
|
+
|
5
|
+
# A default tokenizer for handling syntaxes that are not explicitly handled
|
6
|
+
# elsewhere. It simply yields the given text as a single token.
|
7
|
+
class Default
|
8
|
+
|
9
|
+
# Yield the given text as a single token.
|
10
|
+
def tokenize( text )
|
11
|
+
yield Token.new( text, :normal )
|
12
|
+
end
|
13
|
+
|
14
|
+
end
|
15
|
+
|
16
|
+
# A hash for registering syntax implementations.
|
17
|
+
SYNTAX = Hash.new( Default )
|
18
|
+
|
19
|
+
# Load the implementation of the requested syntax. If the syntax cannot be
|
20
|
+
# found, or if it cannot be loaded for whatever reason, the Default syntax
|
21
|
+
# handler will be returned.
|
22
|
+
def load( syntax )
|
23
|
+
begin
|
24
|
+
require "syntax/lang/#{syntax}"
|
25
|
+
rescue LoadError
|
26
|
+
end
|
27
|
+
SYNTAX[ syntax ].new
|
28
|
+
end
|
29
|
+
module_function :load
|
30
|
+
|
31
|
+
# Return an array of the names of supported syntaxes.
|
32
|
+
def all
|
33
|
+
lang_dir = File.join(File.dirname(__FILE__), "syntax", "lang")
|
34
|
+
Dir["#{lang_dir}/*.rb"].map { |path| File.basename(path, ".rb") }
|
35
|
+
end
|
36
|
+
module_function :all
|
37
|
+
|
38
|
+
end
|
@@ -0,0 +1,163 @@
|
|
1
|
+
require 'strscan'
|
2
|
+
|
3
|
+
module Syntax
|
4
|
+
|
5
|
+
# A single token extracted by a tokenizer. It is simply the lexeme
|
6
|
+
# itself, decorated with a 'group' attribute to identify the type of the
|
7
|
+
# lexeme.
|
8
|
+
class Token < String
|
9
|
+
|
10
|
+
# the type of the lexeme that was extracted.
|
11
|
+
attr_reader :group
|
12
|
+
|
13
|
+
# the instruction associated with this token (:none, :region_open, or
|
14
|
+
# :region_close)
|
15
|
+
attr_reader :instruction
|
16
|
+
|
17
|
+
# Create a new Token representing the given text, and belonging to the
|
18
|
+
# given group.
|
19
|
+
def initialize( text, group, instruction = :none )
|
20
|
+
super text
|
21
|
+
@group = group
|
22
|
+
@instruction = instruction
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
|
27
|
+
# The base class of all tokenizers. It sets up the scanner and manages the
|
28
|
+
# looping until all tokens have been extracted. It also provides convenience
|
29
|
+
# methods to make sure adjacent tokens of identical groups are returned as
|
30
|
+
# a single token.
|
31
|
+
class Tokenizer
|
32
|
+
|
33
|
+
# The current group being processed by the tokenizer
|
34
|
+
attr_reader :group
|
35
|
+
|
36
|
+
# The current chunk of text being accumulated
|
37
|
+
attr_reader :chunk
|
38
|
+
|
39
|
+
# Start tokenizing. This sets up the state in preparation for tokenization,
|
40
|
+
# such as creating a new scanner for the text and saving the callback block.
|
41
|
+
# The block will be invoked for each token extracted.
|
42
|
+
def start( text, &block )
|
43
|
+
@chunk = ""
|
44
|
+
@group = :normal
|
45
|
+
@callback = block
|
46
|
+
@text = StringScanner.new( text )
|
47
|
+
setup
|
48
|
+
end
|
49
|
+
|
50
|
+
# Subclasses may override this method to provide implementation-specific
|
51
|
+
# setup logic.
|
52
|
+
def setup
|
53
|
+
end
|
54
|
+
|
55
|
+
# Finish tokenizing. This flushes the buffer, yielding any remaining text
|
56
|
+
# to the client.
|
57
|
+
def finish
|
58
|
+
start_group nil
|
59
|
+
teardown
|
60
|
+
end
|
61
|
+
|
62
|
+
# Subclasses may override this method to provide implementation-specific
|
63
|
+
# teardown logic.
|
64
|
+
def teardown
|
65
|
+
end
|
66
|
+
|
67
|
+
# Subclasses must implement this method, which is called for each iteration
|
68
|
+
# of the tokenization process. This method may extract multiple tokens.
|
69
|
+
def step
|
70
|
+
raise NotImplementedError, "subclasses must implement #step"
|
71
|
+
end
|
72
|
+
|
73
|
+
# Begins tokenizing the given text, calling #step until the text has been
|
74
|
+
# exhausted.
|
75
|
+
def tokenize( text, &block )
|
76
|
+
start text, &block
|
77
|
+
step until @text.eos?
|
78
|
+
finish
|
79
|
+
end
|
80
|
+
|
81
|
+
# Specify a set of tokenizer-specific options. Each tokenizer may (or may
|
82
|
+
# not) publish any options, but if a tokenizer does those options may be
|
83
|
+
# used to specify optional behavior.
|
84
|
+
def set( opts={} )
|
85
|
+
( @options ||= Hash.new ).update opts
|
86
|
+
end
|
87
|
+
|
88
|
+
# Get the value of the specified option.
|
89
|
+
def option(opt)
|
90
|
+
@options ? @options[opt] : nil
|
91
|
+
end
|
92
|
+
|
93
|
+
private
|
94
|
+
|
95
|
+
EOL = /(?=\r\n?|\n|$)/
|
96
|
+
|
97
|
+
# A convenience for delegating method calls to the scanner.
|
98
|
+
def self.delegate( sym )
|
99
|
+
define_method( sym ) { |*a| @text.__send__( sym, *a ) }
|
100
|
+
end
|
101
|
+
|
102
|
+
delegate :bol?
|
103
|
+
delegate :eos?
|
104
|
+
delegate :scan
|
105
|
+
delegate :scan_until
|
106
|
+
delegate :check
|
107
|
+
delegate :check_until
|
108
|
+
delegate :getch
|
109
|
+
delegate :matched
|
110
|
+
delegate :pre_match
|
111
|
+
delegate :peek
|
112
|
+
delegate :pos
|
113
|
+
|
114
|
+
# Access the n-th subgroup from the most recent match.
|
115
|
+
def subgroup(n)
|
116
|
+
@text[n]
|
117
|
+
end
|
118
|
+
|
119
|
+
# Append the given data to the currently active chunk.
|
120
|
+
def append( data )
|
121
|
+
@chunk << data
|
122
|
+
end
|
123
|
+
|
124
|
+
# Request that a new group be started. If the current group is the same
|
125
|
+
# as the group being requested, a new group will not be created. If a new
|
126
|
+
# group is created and the current chunk is not empty, the chunk's
|
127
|
+
# contents will be yielded to the client as a token, and then cleared.
|
128
|
+
#
|
129
|
+
# After the new group is started, if +data+ is non-nil it will be appended
|
130
|
+
# to the chunk.
|
131
|
+
def start_group( gr, data=nil )
|
132
|
+
flush_chunk if gr != @group
|
133
|
+
@group = gr
|
134
|
+
@chunk << data if data
|
135
|
+
end
|
136
|
+
|
137
|
+
def start_region( gr, data=nil )
|
138
|
+
flush_chunk
|
139
|
+
@group = gr
|
140
|
+
@callback.call( Token.new( data||"", @group, :region_open ) )
|
141
|
+
end
|
142
|
+
|
143
|
+
def end_region( gr, data=nil )
|
144
|
+
flush_chunk
|
145
|
+
@group = gr
|
146
|
+
@callback.call( Token.new( data||"", @group, :region_close ) )
|
147
|
+
end
|
148
|
+
|
149
|
+
def flush_chunk
|
150
|
+
@callback.call( Token.new( @chunk, @group ) ) unless @chunk.empty?
|
151
|
+
@chunk = ""
|
152
|
+
end
|
153
|
+
|
154
|
+
def subtokenize( syntax, text )
|
155
|
+
tokenizer = Syntax.load( syntax )
|
156
|
+
tokenizer.set @options if @options
|
157
|
+
flush_chunk
|
158
|
+
tokenizer.tokenize( text, &@callback )
|
159
|
+
end
|
160
|
+
|
161
|
+
end
|
162
|
+
|
163
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
require 'syntax'
|
2
|
+
|
3
|
+
module Syntax
|
4
|
+
module Convertors
|
5
|
+
|
6
|
+
# The abstract ancestor class for all convertors. It implements a few
|
7
|
+
# convenience methods to provide a common interface for all convertors.
|
8
|
+
class Abstract
|
9
|
+
|
10
|
+
# A reference to the tokenizer used by this convertor.
|
11
|
+
attr_reader :tokenizer
|
12
|
+
|
13
|
+
# A convenience method for instantiating a new convertor for a
|
14
|
+
# specific syntax.
|
15
|
+
def self.for_syntax( syntax )
|
16
|
+
new( Syntax.load( syntax ) )
|
17
|
+
end
|
18
|
+
|
19
|
+
# Creates a new convertor that uses the given tokenizer.
|
20
|
+
def initialize( tokenizer )
|
21
|
+
@tokenizer = tokenizer
|
22
|
+
end
|
23
|
+
|
24
|
+
end
|
25
|
+
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'syntax/convertors/abstract'
|
2
|
+
|
3
|
+
module Syntax
|
4
|
+
module Convertors
|
5
|
+
|
6
|
+
# A simple class for converting a text into HTML.
|
7
|
+
class HTML < Abstract
|
8
|
+
|
9
|
+
# Converts the given text to HTML, using spans to represent token groups
|
10
|
+
# of any type but <tt>:normal</tt> (which is always unhighlighted). If
|
11
|
+
# +pre+ is +true+, the html is automatically wrapped in pre tags.
|
12
|
+
def convert( text, pre=true )
|
13
|
+
html = ""
|
14
|
+
html << "<pre>" if pre
|
15
|
+
regions = []
|
16
|
+
@tokenizer.tokenize( text ) do |tok|
|
17
|
+
value = html_escape(tok)
|
18
|
+
case tok.instruction
|
19
|
+
when :region_close then
|
20
|
+
regions.pop
|
21
|
+
html << "</span>"
|
22
|
+
when :region_open then
|
23
|
+
regions.push tok.group
|
24
|
+
html << "<span class=\"#{tok.group}\">#{value}"
|
25
|
+
else
|
26
|
+
if tok.group == ( regions.last || :normal )
|
27
|
+
html << value
|
28
|
+
else
|
29
|
+
html << "<span class=\"#{tok.group}\">#{value}</span>"
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
html << "</span>" while regions.pop
|
34
|
+
html << "</pre>" if pre
|
35
|
+
html
|
36
|
+
end
|
37
|
+
|
38
|
+
private
|
39
|
+
|
40
|
+
# Replaces some characters with their corresponding HTML entities.
|
41
|
+
def html_escape( string )
|
42
|
+
string.gsub( /&/, "&" ).
|
43
|
+
gsub( /</, "<" ).
|
44
|
+
gsub( />/, ">" ).
|
45
|
+
gsub( /"/, """ )
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
49
|
+
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,317 @@
|
|
1
|
+
require 'syntax'
|
2
|
+
|
3
|
+
module Syntax
|
4
|
+
|
5
|
+
# A tokenizer for the Ruby language. It recognizes all common syntax
|
6
|
+
# (and some less common syntax) but because it is not a true lexer, it
|
7
|
+
# will make mistakes on some ambiguous cases.
|
8
|
+
class Ruby < Tokenizer
|
9
|
+
|
10
|
+
# The list of all identifiers recognized as keywords.
|
11
|
+
KEYWORDS =
|
12
|
+
%w{if then elsif else end begin do rescue ensure while for
|
13
|
+
class module def yield raise until unless and or not when
|
14
|
+
case super undef break next redo retry in return alias
|
15
|
+
defined?}
|
16
|
+
|
17
|
+
# Perform ruby-specific setup
|
18
|
+
def setup
|
19
|
+
@selector = false
|
20
|
+
@allow_operator = false
|
21
|
+
@heredocs = []
|
22
|
+
end
|
23
|
+
|
24
|
+
# Step through a single iteration of the tokenization process.
|
25
|
+
def step
|
26
|
+
case
|
27
|
+
when bol? && check( /=begin/ )
|
28
|
+
start_group( :comment, scan_until( /^=end#{EOL}/ ) )
|
29
|
+
when bol? && check( /__END__#{EOL}/ )
|
30
|
+
start_group( :comment, scan_until( /\Z/ ) )
|
31
|
+
else
|
32
|
+
case
|
33
|
+
when check( /def\s+/ )
|
34
|
+
start_group :keyword, scan( /def\s+/ )
|
35
|
+
start_group :method, scan_until( /(?=[;(\s]|#{EOL})/ )
|
36
|
+
when check( /class\s+/ )
|
37
|
+
start_group :keyword, scan( /class\s+/ )
|
38
|
+
start_group :class, scan_until( /(?=[;\s<]|#{EOL})/ )
|
39
|
+
when check( /module\s+/ )
|
40
|
+
start_group :keyword, scan( /module\s+/ )
|
41
|
+
start_group :module, scan_until( /(?=[;\s]|#{EOL})/ )
|
42
|
+
when check( /::/ )
|
43
|
+
start_group :punct, scan(/::/)
|
44
|
+
when check( /:"/ )
|
45
|
+
start_group :symbol, scan(/:/)
|
46
|
+
scan_delimited_region :symbol, :symbol, "", true
|
47
|
+
@allow_operator = true
|
48
|
+
when check( /:'/ )
|
49
|
+
start_group :symbol, scan(/:/)
|
50
|
+
scan_delimited_region :symbol, :symbol, "", false
|
51
|
+
@allow_operator = true
|
52
|
+
when scan( /:[_a-zA-Z@$][$@\w]*[=!?]?/ )
|
53
|
+
start_group :symbol, matched
|
54
|
+
@allow_operator = true
|
55
|
+
when scan( /\?(\\[^\n\r]|[^\\\n\r\s])/ )
|
56
|
+
start_group :char, matched
|
57
|
+
@allow_operator = true
|
58
|
+
when check( /(__FILE__|__LINE__|true|false|nil|self)[?!]?/ )
|
59
|
+
if @selector || matched[-1] == ?? || matched[-1] == ?!
|
60
|
+
start_group :ident,
|
61
|
+
scan(/(__FILE__|__LINE__|true|false|nil|self)[?!]?/)
|
62
|
+
else
|
63
|
+
start_group :constant,
|
64
|
+
scan(/(__FILE__|__LINE__|true|false|nil|self)/)
|
65
|
+
end
|
66
|
+
@selector = false
|
67
|
+
@allow_operator = true
|
68
|
+
when scan(/0([bB][01]+|[oO][0-7]+|[dD][0-9]+|[xX][0-9a-fA-F]+)/)
|
69
|
+
start_group :number, matched
|
70
|
+
@allow_operator = true
|
71
|
+
else
|
72
|
+
case peek(2)
|
73
|
+
when "%r"
|
74
|
+
scan_delimited_region :punct, :regex, scan( /../ ), true
|
75
|
+
@allow_operator = true
|
76
|
+
when "%w", "%q"
|
77
|
+
scan_delimited_region :punct, :string, scan( /../ ), false
|
78
|
+
@allow_operator = true
|
79
|
+
when "%s"
|
80
|
+
scan_delimited_region :punct, :symbol, scan( /../ ), false
|
81
|
+
@allow_operator = true
|
82
|
+
when "%W", "%Q", "%x"
|
83
|
+
scan_delimited_region :punct, :string, scan( /../ ), true
|
84
|
+
@allow_operator = true
|
85
|
+
when /%[^\sa-zA-Z0-9]/
|
86
|
+
scan_delimited_region :punct, :string, scan( /./ ), true
|
87
|
+
@allow_operator = true
|
88
|
+
when "<<"
|
89
|
+
saw_word = ( chunk[-1,1] =~ /[\w!?]/ )
|
90
|
+
start_group :punct, scan( /<</ )
|
91
|
+
if saw_word
|
92
|
+
@allow_operator = false
|
93
|
+
return
|
94
|
+
end
|
95
|
+
|
96
|
+
float_right = scan( /-/ )
|
97
|
+
append "-" if float_right
|
98
|
+
if ( type = scan( /['"]/ ) )
|
99
|
+
append type
|
100
|
+
delim = scan_until( /(?=#{type})/ )
|
101
|
+
if delim.nil?
|
102
|
+
append scan_until( /\Z/ )
|
103
|
+
return
|
104
|
+
end
|
105
|
+
else
|
106
|
+
delim = scan( /\w+/ ) or return
|
107
|
+
end
|
108
|
+
start_group :constant, delim
|
109
|
+
start_group :punct, scan( /#{type}/ ) if type
|
110
|
+
@heredocs << [ float_right, type, delim ]
|
111
|
+
@allow_operator = true
|
112
|
+
else
|
113
|
+
case peek(1)
|
114
|
+
when /[\n\r]/
|
115
|
+
unless @heredocs.empty?
|
116
|
+
scan_heredoc(*@heredocs.shift)
|
117
|
+
else
|
118
|
+
start_group :normal, scan( /\s+/ )
|
119
|
+
end
|
120
|
+
@allow_operator = false
|
121
|
+
when /\s/
|
122
|
+
start_group :normal, scan( /\s+/ )
|
123
|
+
when "#"
|
124
|
+
start_group :comment, scan( /#[^\n\r]*/ )
|
125
|
+
when /[A-Z]/
|
126
|
+
start_group @selector ? :ident : :constant, scan( /\w+/ )
|
127
|
+
@allow_operator = true
|
128
|
+
when /[a-z_]/
|
129
|
+
word = scan( /\w+[?!]?/ )
|
130
|
+
if !@selector && KEYWORDS.include?( word )
|
131
|
+
start_group :keyword, word
|
132
|
+
@allow_operator = false
|
133
|
+
elsif
|
134
|
+
start_group :ident, word
|
135
|
+
@allow_operator = true
|
136
|
+
end
|
137
|
+
@selector = false
|
138
|
+
when /\d/
|
139
|
+
start_group :number,
|
140
|
+
scan( /[\d_]+(\.[\d_]+)?([eE][\d_]+)?/ )
|
141
|
+
@allow_operator = true
|
142
|
+
when '"'
|
143
|
+
scan_delimited_region :punct, :string, "", true
|
144
|
+
@allow_operator = true
|
145
|
+
when '/'
|
146
|
+
if @allow_operator
|
147
|
+
start_group :punct, scan(%r{/})
|
148
|
+
@allow_operator = false
|
149
|
+
else
|
150
|
+
scan_delimited_region :punct, :regex, "", true
|
151
|
+
@allow_operator = true
|
152
|
+
end
|
153
|
+
when "'"
|
154
|
+
scan_delimited_region :punct, :string, "", false
|
155
|
+
@allow_operator = true
|
156
|
+
when "."
|
157
|
+
dots = scan( /\.{1,3}/ )
|
158
|
+
start_group :punct, dots
|
159
|
+
@selector = ( dots.length == 1 )
|
160
|
+
when /[@]/
|
161
|
+
start_group :attribute, scan( /@{1,2}\w*/ )
|
162
|
+
@allow_operator = true
|
163
|
+
when /[$]/
|
164
|
+
start_group :global, scan(/\$/)
|
165
|
+
start_group :global, scan( /\w+|./ ) if check(/./)
|
166
|
+
@allow_operator = true
|
167
|
+
when /[-!?*\/+=<>(\[\{}:;,&|%]/
|
168
|
+
start_group :punct, scan(/./)
|
169
|
+
@allow_operator = false
|
170
|
+
when /[)\]]/
|
171
|
+
start_group :punct, scan(/./)
|
172
|
+
@allow_operator = true
|
173
|
+
else
|
174
|
+
# all else just falls through this, to prevent
|
175
|
+
# infinite loops...
|
176
|
+
append getch
|
177
|
+
end
|
178
|
+
end
|
179
|
+
end
|
180
|
+
end
|
181
|
+
end
|
182
|
+
|
183
|
+
private
|
184
|
+
|
185
|
+
# Scan a delimited region of text. This handles the simple cases (strings
|
186
|
+
# delimited with quotes) as well as the more complex cases of %-strings
|
187
|
+
# and here-documents.
|
188
|
+
#
|
189
|
+
# * +delim_group+ is the group to use to classify the delimiters of the
|
190
|
+
# region
|
191
|
+
# * +inner_group+ is the group to use to classify the contents of the
|
192
|
+
# region
|
193
|
+
# * +starter+ is the text to use as the starting delimiter
|
194
|
+
# * +exprs+ is a boolean flag indicating whether the region is an
|
195
|
+
# interpolated string or not
|
196
|
+
# * +delim+ is the text to use as the delimiter of the region. If +nil+,
|
197
|
+
# the next character will be treated as the delimiter.
|
198
|
+
# * +heredoc+ is either +false+, meaning the region is not a heredoc, or
|
199
|
+
# <tt>:flush</tt> (meaning the delimiter must be flushed left), or
|
200
|
+
# <tt>:float</tt> (meaning the delimiter doens't have to be flush left).
|
201
|
+
def scan_delimited_region( delim_group, inner_group, starter, exprs,
|
202
|
+
delim=nil, heredoc=false )
|
203
|
+
# begin
|
204
|
+
if !delim
|
205
|
+
start_group delim_group, starter
|
206
|
+
delim = scan( /./ )
|
207
|
+
append delim
|
208
|
+
|
209
|
+
delim = case delim
|
210
|
+
when '{' then '}'
|
211
|
+
when '(' then ')'
|
212
|
+
when '[' then ']'
|
213
|
+
when '<' then '>'
|
214
|
+
else delim
|
215
|
+
end
|
216
|
+
end
|
217
|
+
|
218
|
+
start_region inner_group
|
219
|
+
|
220
|
+
items = "\\\\|"
|
221
|
+
if heredoc
|
222
|
+
items << "(^"
|
223
|
+
items << '\s*' if heredoc == :float
|
224
|
+
items << "#{Regexp.escape(delim)}\s*?)#{EOL}"
|
225
|
+
else
|
226
|
+
items << "#{Regexp.escape(delim)}"
|
227
|
+
end
|
228
|
+
items << "|#(\\$|@@?|\\{)" if exprs
|
229
|
+
items = Regexp.new( items )
|
230
|
+
|
231
|
+
loop do
|
232
|
+
p = pos
|
233
|
+
match = scan_until( items )
|
234
|
+
if match.nil?
|
235
|
+
start_group inner_group, scan_until( /\Z/ )
|
236
|
+
break
|
237
|
+
else
|
238
|
+
text = pre_match[p..-1]
|
239
|
+
start_group inner_group, text if text.length > 0
|
240
|
+
case matched.strip
|
241
|
+
when "\\"
|
242
|
+
unless exprs
|
243
|
+
case peek(1)
|
244
|
+
when "'"
|
245
|
+
scan(/./)
|
246
|
+
start_group :escape, "\\'"
|
247
|
+
when "\\"
|
248
|
+
scan(/./)
|
249
|
+
start_group :escape, "\\\\"
|
250
|
+
else
|
251
|
+
start_group inner_group, "\\"
|
252
|
+
end
|
253
|
+
else
|
254
|
+
start_group :escape, "\\"
|
255
|
+
c = getch
|
256
|
+
append c
|
257
|
+
case c
|
258
|
+
when 'x'
|
259
|
+
append scan( /[a-fA-F0-9]{1,2}/ )
|
260
|
+
when /[0-7]/
|
261
|
+
append scan( /[0-7]{0,2}/ )
|
262
|
+
end
|
263
|
+
end
|
264
|
+
when delim
|
265
|
+
end_region inner_group
|
266
|
+
start_group delim_group, matched
|
267
|
+
break
|
268
|
+
when /^#/
|
269
|
+
do_highlight = (option(:expressions) == :highlight)
|
270
|
+
start_region :expr if do_highlight
|
271
|
+
start_group :expr, matched
|
272
|
+
case matched[1]
|
273
|
+
when ?{
|
274
|
+
depth = 1
|
275
|
+
content = ""
|
276
|
+
while depth > 0
|
277
|
+
p = pos
|
278
|
+
c = scan_until( /[\{}]/ )
|
279
|
+
if c.nil?
|
280
|
+
content << scan_until( /\Z/ )
|
281
|
+
break
|
282
|
+
else
|
283
|
+
depth += ( matched == "{" ? 1 : -1 )
|
284
|
+
content << pre_match[p..-1]
|
285
|
+
content << matched if depth > 0
|
286
|
+
end
|
287
|
+
end
|
288
|
+
if do_highlight
|
289
|
+
subtokenize "ruby", content
|
290
|
+
start_group :expr, "}"
|
291
|
+
else
|
292
|
+
append content + "}"
|
293
|
+
end
|
294
|
+
when ?$, ?@
|
295
|
+
append scan( /\w+/ )
|
296
|
+
end
|
297
|
+
end_region :expr if do_highlight
|
298
|
+
else raise "unexpected match on #{matched}"
|
299
|
+
end
|
300
|
+
end
|
301
|
+
end
|
302
|
+
end
|
303
|
+
|
304
|
+
# Scan a heredoc beginning at the current position.
|
305
|
+
#
|
306
|
+
# * +float+ indicates whether the delimiter may be floated to the right
|
307
|
+
# * +type+ is +nil+, a single quote, or a double quote
|
308
|
+
# * +delim+ is the delimiter to look for
|
309
|
+
def scan_heredoc(float, type, delim)
|
310
|
+
scan_delimited_region( :constant, :string, "", type != "'",
|
311
|
+
delim, float ? :float : :flush )
|
312
|
+
end
|
313
|
+
end
|
314
|
+
|
315
|
+
SYNTAX["ruby"] = Ruby
|
316
|
+
|
317
|
+
end
|