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,34 @@
|
|
1
|
+
The Ant-Sugar Tales
|
2
|
+
===================
|
3
|
+
|
4
|
+
By Candice Yellowflower
|
5
|
+
|
6
|
+
The _Ant-Sugar Tales_ is a collection of short stories told from the
|
7
|
+
perspective of a fine young lady from [Venice][1], who has some run-ins
|
8
|
+
with a few [inquisitive insects][2]. Each tale presents a moral quandry,
|
9
|
+
which the ants are quick to solve with their antly wisdom and
|
10
|
+
know-how. Some of the moral lessons presented are:
|
11
|
+
|
12
|
+
* Laundry: How not to get caught in soiled knickers.
|
13
|
+
* Used Ticket Stubs and Their Impact on the Universe
|
14
|
+
* I'm Keeping a Birdhouse in my Attic
|
15
|
+
|
16
|
+
Use of Metaphor
|
17
|
+
---------------
|
18
|
+
|
19
|
+
The author's splended use of metaphor can be attributed to her growing
|
20
|
+
up in a art-supply store. Her characters are richly outlined, but her
|
21
|
+
unusual descriptions can sometimes be a bit jarring in places, such as
|
22
|
+
her description of the old caretaker that lives inside a hollow tree in
|
23
|
+
her yard:
|
24
|
+
|
25
|
+
> His skin was smooth like Magnani Pescia 100% acid-free cold pressed
|
26
|
+
> 22x30" Soft White Paper, with fine hair like the bristles of a Habico
|
27
|
+
> Lasur Superb Oil Glazing Brush Size 10.
|
28
|
+
|
29
|
+
|
30
|
+
[1]: http://www.azureva.com/gb/italie/mags/grand-canal.php3
|
31
|
+
(Venice: The Grand Canal)
|
32
|
+
[2]: http://www.fortunecity.com/emachines/e11/86/tourist4d.html
|
33
|
+
|
34
|
+
|
@@ -0,0 +1,17 @@
|
|
1
|
+
Hi,
|
2
|
+
|
3
|
+
I'd like to announce the alpha release of a Markdown library for [Ruby][1]
|
4
|
+
called "BlueCloth". It's mostly a direct port of the most recent Perl version,
|
5
|
+
minus the various plugin hooks and whatnot.
|
6
|
+
|
7
|
+
More information can be found on [the project page][2], or feel free to ask me
|
8
|
+
directly. I don't have much in the way of a demo yet, but will be working on
|
9
|
+
getting something set up in the coming days.
|
10
|
+
|
11
|
+
[1]: http://www.ruby-lang.org/
|
12
|
+
[2]: http://bluecloth.rubyforge.org/
|
13
|
+
|
14
|
+
--
|
15
|
+
Michael Granger <ged@FaerieMUD.org>
|
16
|
+
Rubymage, Believer, Architect
|
17
|
+
The FaerieMUD Consortium <http://www.FaerieMUD.org/>
|
@@ -0,0 +1,67 @@
|
|
1
|
+
* xx xxxxxxx xx xxxxxx.
|
2
|
+
|
3
|
+
* xxx xxxxxxx xxxx xx xxxxxxxxxxx xx:
|
4
|
+
|
5
|
+
* xxxxxxx xxxxxxx: xxxxx xxxx xxxx xxxxxxx xxxxxxx xxxxxxxx xxxxxx xx
|
6
|
+
xxxxxxx xxx xxxxxxxxx, xxx x xxxxx xxxxx xxx xxxxxxxx xx xxx xxxxxx xxxx
|
7
|
+
xxx xx xxxxxxxxx xx xxxx.
|
8
|
+
|
9
|
+
xxxxx xxxxxxx xx xxx xxxx xx xx xxxxxxxxx, xxx xxxx xxxxxx xx xxxxxxx xxxx
|
10
|
+
xxx xxxxxxx'x xxxxxx xxx. xx xxxxxxxx xxxxxxxxxxxxx xxxxxxxx.
|
11
|
+
|
12
|
+
* xxxxxxxxx xxxxxxx: xxxxx xxxx xxx xxxxx xx xxxxx xxx xxxxxxxx xxxxxxxxx
|
13
|
+
xx xxx xxxxxxxx, xxx xxxxx xxxxx xxxx xxxx xxxxx xxxxxxxxxxxx xx xxx
|
14
|
+
xxxxxxxxxxx xxxx xxx xx xxxxxxxxx xx xxxx.
|
15
|
+
|
16
|
+
xxxxx xxxxxxx xxx xx xxxxxxxxx xxxxxx xxx-xxxx xxxxx (xx xx xxxxxxxxxx)
|
17
|
+
xx, xx xxxxxxxxx xxxxxxxx xxxxxxx xx xxxxxxxx xx xxxxxx xxx xxxxxxx
|
18
|
+
xxxxxxx xx xxx xxxxxxx, xxxxxx xxx xxxx xxx.
|
19
|
+
|
20
|
+
xxxxx xxxxxxxxxx xxx xxxx xxxx xx xxxxxxxxx xxx xx xxxxx xxx xxxxx xxxxx
|
21
|
+
xxx xxxx xxx xxxx xxxxxxxxx. xxxxxxxx xxxxxxxxxxxxx xxx xxxx-xxxxxxxxx,
|
22
|
+
xxxx xx xxxxxx xxx xxxx.
|
23
|
+
|
24
|
+
* xxxxx xxxxxxx: xxxxx xxxx xxxxxx xxxx xxxxxxx xx xxxxxxx x xxxxxxxxxxx
|
25
|
+
xxxxxx, xxxxxxx xx xxxxxxx xxxxxxxxxxxx. xxxxx xxxxxxx xxxx xx xxxxxxxxx
|
26
|
+
xxxxxx xxx-xxxx xxxxx.
|
27
|
+
|
28
|
+
xxxxxx xxxxxxxxx xxx x xxxx xxxxxxxxx, xxxx xx x-xxxx.
|
29
|
+
|
30
|
+
* xxxx xxx x xxxxxx xxxxxxx xxxx: xxxxx xxxxxxx xxxx xx xxxxxxxx, xxx xxxxxxx
|
31
|
+
xxx xxx xxxxxx, xxx xxxxx, xxx xxxxxxxxx xxx xxxxxxx xxxx xxx xxxxxxx
|
32
|
+
xxxxxxxx xxxx, xxx xxxx-xxx xxxx, xxx xxxxxxxx xx xxx xxxx, xxx xxx xxxxxxxx
|
33
|
+
xx xxx xxxxxxxxx xxxx-xxx.
|
34
|
+
|
35
|
+
* xxx xxxxxxxxxxxx xxxxxxxxxxx (x.x.x. xxx xxxxxxxx xx xxxxxxx xxxxxxxx, xx
|
36
|
+
xxxxxxxx xxxxxx, xxx.), xxx xxxxxxx xxxxxxxxxxx xx x xxxxxx xxxxxxx xxxx
|
37
|
+
xxxx xx xxxxxxxxx: x xxxx-xxxxxx xx xxxx-xxxxx xxxxxxxx xx xxx xxxxxxxxxx.
|
38
|
+
|
39
|
+
* xxx xxx xxxx xxxxxxx xxx, xx xxxxx xxxxxx xx xxxx xx xxx xxxxxxx'x xxxxxx
|
40
|
+
xxx. xxxxxxxx xxxxxxx xxxxxx xx xxxx xxx xxxxxxx xxxxxxx.
|
41
|
+
|
42
|
+
x xxxxxx xxx xxx xxxxxxx xxxx xx xxxx xx xxxxxxxx. xxxxx xxxxxxxxxxxxx
|
43
|
+
xxxxxx xx x xxxxxx xxxx xx xxxxxxx xxxx xxxx xxxxxx'x xxxxxx xxx xxx xxxx
|
44
|
+
xxxxxxx xxx xxxxxxxxx xxxxxxxxxxx:
|
45
|
+
|
46
|
+
* xxxxxxxxx xx xxxxxx xxxxxxx xxxxxx xxxx xxxxxx (xx xxxxx xxxxxx xx xx
|
47
|
+
xxxxxxxxxx).
|
48
|
+
|
49
|
+
* xxxxxxxxxxx xx xxxx xxxxxxx xxx.
|
50
|
+
|
51
|
+
* xxxx xx xxxxx xxxxxxx xx xxx xxxxxx.
|
52
|
+
|
53
|
+
* xxxx xxx xxxx xx xxxxxx xx xxxx-xx-xx xx:xx xxx (xx xxx) xxxxxx.
|
54
|
+
|
55
|
+
* xxxx xxx xxxxxxxx xx xxxxxxxxxxx xx xxxxxx.
|
56
|
+
|
57
|
+
* xxxxxx xx xxxxxxx xxxx xx xxxxxxxx xxxxxxx xxx xxxx xxxx xx xxxxxx
|
58
|
+
xxxxx-xxxxxxxxxxxx xxxxxx xxxxxxxxxx xxxxxxx. xxxxxxxx xxxxxxx xxx xx
|
59
|
+
xxxxxxxx xx xxxxxxxxxxx xx xxxx xxxx.
|
60
|
+
|
61
|
+
* xx x xxxxx xxxx:
|
62
|
+
|
63
|
+
* xxxx xxxxxxx xxxxxx xxxx x xxxxx-xxx xxx xxxxxx xxxxxxx, xxxxxxxx xxxxxxx,
|
64
|
+
xxx xxxxxxxx xxxxx xxxxxxx xxxx xxxxxxxx xxxxxxx, xx xxx xxx. xxxxxxx,
|
65
|
+
xxxx xxxxxx xxx xxxx xx xxx xxxxxxx xx xxx xxxxxx xx xxx xxxxxxx xxxxxx
|
66
|
+
-- xxxxx xxx, xx xxxxx xxxxxx xxxxx xx xxxxx xxx xxxx xxxxxxxx -- xxx xxxx
|
67
|
+
xxxxx xxx xxx xxxxxxxx xx xxxxxxxxx xxxxxx-xxxxxxxx xxxxxxxx.
|
@@ -0,0 +1,281 @@
|
|
1
|
+
<strong>iFotobilder</strong> will be an iPhoto export plugin that will let you manage your Fotobilder pictures through iPhoto.
|
2
|
+
|
3
|
+
## Getting Started
|
4
|
+
|
5
|
+
Since iPhoto's APIs aren't public, and because my Objective C is extremely rusty, I wanted a couple of examples of other people's plugins before I dove into this.
|
6
|
+
|
7
|
+
Here's what I found:
|
8
|
+
|
9
|
+
* [Writing Plugins for Cocoa][1]
|
10
|
+
|
11
|
+
[1]: http://www.stone.com/The_Cocoa_Files/Writing_PlugIns.html
|
12
|
+
|
13
|
+
## The iPhoto Export API
|
14
|
+
|
15
|
+
Using the `class-dump` tool, I dumped the export API:
|
16
|
+
|
17
|
+
/*
|
18
|
+
* Generated by class-dump 3.0.
|
19
|
+
*
|
20
|
+
* class-dump is Copyright (C) 1997-1998, 2000-2001, 2004 by Steve Nygard.
|
21
|
+
*/
|
22
|
+
|
23
|
+
/*
|
24
|
+
* File: /Applications/iPhoto.app/Contents/MacOS/iPhoto
|
25
|
+
*/
|
26
|
+
|
27
|
+
@protocol ExportImageProtocol
|
28
|
+
- (unsigned int)imageCount;
|
29
|
+
- (BOOL)imageIsPortraitAtIndex:(unsigned int)fp20;
|
30
|
+
- (struct _NSSize)imageSizeAtIndex:(unsigned int)fp16;
|
31
|
+
- (unsigned int)imageFormatAtIndex:(unsigned int)fp16;
|
32
|
+
- (id)imageCaptionAtIndex:(unsigned int)fp16;
|
33
|
+
- (id)imagePathAtIndex:(unsigned int)fp16;
|
34
|
+
- (id)thumbnailPathAtIndex:(unsigned int)fp16;
|
35
|
+
- (id)imageDictionaryAtIndex:(unsigned int)fp16;
|
36
|
+
- (float)imageAspectRatioAtIndex:(unsigned int)fp16;
|
37
|
+
- (id)albumName;
|
38
|
+
- (id)albumMusicPath;
|
39
|
+
- (unsigned int)albumCount;
|
40
|
+
- (unsigned int)albumPositionOfImageAtIndex:(unsigned int)fp16;
|
41
|
+
- (id)window;
|
42
|
+
- (void)enableControls;
|
43
|
+
- (void)disableControls;
|
44
|
+
- (void)clickExport;
|
45
|
+
- (void)startExport;
|
46
|
+
- (void)cancelExport;
|
47
|
+
- (void)cancelExportBeforeBeginning;
|
48
|
+
- (id)directoryPath;
|
49
|
+
- (id)temporaryDirectory;
|
50
|
+
- (BOOL)doesFileExist:(id)fp16;
|
51
|
+
- (BOOL)doesDirectoryExist:(id)fp16;
|
52
|
+
- (BOOL)createDir:(id)fp16;
|
53
|
+
- (id)uniqueSubPath:(id)fp12 child:(id)fp20;
|
54
|
+
- (id)makeUniquePath:(id)fp16;
|
55
|
+
- (id)makeUniqueFilePath:(id)fp12 extension:(id)fp20;
|
56
|
+
- (id)makeUniqueFileNameWithTime:(id)fp16;
|
57
|
+
- (BOOL)makeFSSpec:(id)fp12 spec:(struct FSSpec *)fp20;
|
58
|
+
- (id)pathForFSSpec:(id)fp16;
|
59
|
+
- (BOOL)getFSRef:(struct FSRef *)fp12 forPath:(id)fp16 isDirectory:(BOOL)fp27;
|
60
|
+
- (id)pathForFSRef:(struct FSRef *)fp16;
|
61
|
+
- (unsigned long)countFiles:(id)fp12 descend:(BOOL)fp23;
|
62
|
+
- (unsigned long)countFilesFromArray:(id)fp12 descend:(BOOL)fp23;
|
63
|
+
- (unsigned long long)sizeAtPath:(id)fp12 count:(unsigned long *)fp16 physical:(BOOL)fp27;
|
64
|
+
- (BOOL)isAliasFileAtPath:(id)fp16;
|
65
|
+
- (id)pathContentOfAliasAtPath:(id)fp16;
|
66
|
+
- (id)stringByResolvingAliasesInPath:(id)fp16;
|
67
|
+
- (BOOL)ensurePermissions:(unsigned long)fp12 forPath:(id)fp20;
|
68
|
+
- (id)validFilename:(id)fp16;
|
69
|
+
- (id)getExtensionForImageFormat:(unsigned int)fp16;
|
70
|
+
- (unsigned int)getImageFormatForExtension:(id)fp16;
|
71
|
+
- (struct OpaqueGrafPtr *)uncompressImage:(id)fp12 size:(struct _NSSize)fp16 pixelFormat:(unsigned int)fp24 rotation:(float)fp32;
|
72
|
+
- (void *)createThumbnailer;
|
73
|
+
- (void *)retainThumbnailer:(void *)fp16;
|
74
|
+
- (void *)autoreleaseThumbnailer:(void *)fp16;
|
75
|
+
- (void)releaseThumbnailer:(void *)fp16;
|
76
|
+
- (void)setThumbnailer:(void *)fp16 maxBytes:(unsigned int)fp20 maxWidth:(unsigned int)fp24 maxHeight:(unsigned int)fp32;
|
77
|
+
- (struct _NSSize)thumbnailerMaxBounds:(void *)fp16;
|
78
|
+
- (void)setThumbnailer:(void *)fp12 quality:(int)fp20;
|
79
|
+
- (int)thumbnailerQuality:(void *)fp16;
|
80
|
+
- (void)setThumbnailer:(void *)fp12 rotation:(float)fp20;
|
81
|
+
- (float)thumbnailerRotation:(void *)fp16;
|
82
|
+
- (void)setThumbnailer:(void *)fp12 outputFormat:(unsigned int)fp20;
|
83
|
+
- (unsigned int)thumbnailerOutputFormat:(void *)fp16;
|
84
|
+
- (void)setThumbnailer:(void *)fp12 outputExtension:(id)fp20;
|
85
|
+
- (id)thumbnailerOutputExtension:(void *)fp16;
|
86
|
+
- (BOOL)thumbnailer:(void *)fp16 createThumbnail:(id)fp20 dest:(id)fp28;
|
87
|
+
- (struct _NSSize)lastImageSize:(void *)fp20;
|
88
|
+
- (struct _NSSize)lastThumbnailSize:(void *)fp16;
|
89
|
+
@end
|
90
|
+
|
91
|
+
@protocol ExportPluginBoxProtocol
|
92
|
+
- (BOOL)performKeyEquivalent:(id)fp16;
|
93
|
+
@end
|
94
|
+
|
95
|
+
@protocol ExportPluginProtocol
|
96
|
+
- (id)initWithExportImageObj:(id)fp16;
|
97
|
+
- (id)settingsView;
|
98
|
+
- (id)firstView;
|
99
|
+
- (id)lastView;
|
100
|
+
- (void)viewWillBeActivated;
|
101
|
+
- (void)viewWillBeDeactivated;
|
102
|
+
- (id)requiredFileType;
|
103
|
+
- (BOOL)wantsDestinationPrompt;
|
104
|
+
- (id)getDestinationPath;
|
105
|
+
- (id)defaultFileName;
|
106
|
+
- (id)defaultDirectory;
|
107
|
+
- (BOOL)treatSingleSelectionDifferently;
|
108
|
+
- (BOOL)validateUserCreatedPath:(id)fp16;
|
109
|
+
- (void)clickExport;
|
110
|
+
- (void)startExport:(id)fp16;
|
111
|
+
- (void)performExport:(id)fp16;
|
112
|
+
- (CDAnonymousStruct12 *)progress;
|
113
|
+
- (void)lockProgress;
|
114
|
+
- (void)unlockProgress;
|
115
|
+
- (void)cancelExport;
|
116
|
+
- (id)name;
|
117
|
+
- (id)description;
|
118
|
+
@end
|
119
|
+
|
120
|
+
@interface ExportController : NSObject
|
121
|
+
{
|
122
|
+
id mWindow;
|
123
|
+
id mExportView;
|
124
|
+
id mExportButton;
|
125
|
+
id mImageCount;
|
126
|
+
ExportMgr *mExportMgr;
|
127
|
+
ExportMgrRec *mCurrentPluginRec;
|
128
|
+
ProgressController *mProgressController;
|
129
|
+
BOOL mCancelExport;
|
130
|
+
NSTimer *mTimer;
|
131
|
+
NSString *mDirectoryPath;
|
132
|
+
}
|
133
|
+
|
134
|
+
- (void)awakeFromNib;
|
135
|
+
- (void)dealloc;
|
136
|
+
- (id)currentPlugin;
|
137
|
+
- (id)currentPluginRec;
|
138
|
+
- (void)setCurrentPluginRec:(id)fp12;
|
139
|
+
- (id)directoryPath;
|
140
|
+
- (void)setDirectoryPath:(id)fp12;
|
141
|
+
- (void)show;
|
142
|
+
- (void)_openPanelDidEnd:(id)fp12 returnCode:(int)fp16 contextInfo:(void *)fp20;
|
143
|
+
- (id)panel:(id)fp12 userEnteredFilename:(id)fp16 confirmed:(BOOL)fp20;
|
144
|
+
- (BOOL)panel:(id)fp12 shouldShowFilename:(id)fp16;
|
145
|
+
- (BOOL)panel:(id)fp12 isValidFilename:(id)fp16;
|
146
|
+
- (BOOL)filesWillFitOnDisk;
|
147
|
+
- (void)export:(id)fp12;
|
148
|
+
- (void)_exportThread:(id)fp12;
|
149
|
+
- (void)_exportProgress:(id)fp12;
|
150
|
+
- (void)startExport:(id)fp12;
|
151
|
+
- (void)finishExport;
|
152
|
+
- (void)cancelExport;
|
153
|
+
- (void)cancel:(id)fp12;
|
154
|
+
- (void)enableControls;
|
155
|
+
- (id)window;
|
156
|
+
- (void)disableControls;
|
157
|
+
- (void)tabView:(id)fp12 willSelectTabViewItem:(id)fp16;
|
158
|
+
- (void)tabView:(id)fp12 didSelectTabViewItem:(id)fp16;
|
159
|
+
- (void)selectExporter:(id)fp12;
|
160
|
+
- (id)exportView;
|
161
|
+
- (BOOL)_hasPlugins;
|
162
|
+
- (void)_resizeExporterToFitView:(id)fp12;
|
163
|
+
- (void)_updateImageCount;
|
164
|
+
|
165
|
+
@end
|
166
|
+
|
167
|
+
@interface ExportMgr : NSObject <ExportImageProtocol>
|
168
|
+
{
|
169
|
+
ArchiveDocument *mDocument;
|
170
|
+
NSMutableArray *mExporters;
|
171
|
+
Album *mExportAlbum;
|
172
|
+
NSArray *mSelection;
|
173
|
+
ExportController *mExportController;
|
174
|
+
}
|
175
|
+
|
176
|
+
+ (id)exportMgr;
|
177
|
+
+ (id)exportMgrNoAlloc;
|
178
|
+
- (id)init;
|
179
|
+
- (void)dealloc;
|
180
|
+
- (void)releasePlugins;
|
181
|
+
- (void)setExportController:(id)fp12;
|
182
|
+
- (id)exportController;
|
183
|
+
- (void)setDocument:(id)fp12;
|
184
|
+
- (id)document;
|
185
|
+
- (void)updateDocumentSelection;
|
186
|
+
- (unsigned int)count;
|
187
|
+
- (id)recAtIndex:(unsigned int)fp12;
|
188
|
+
- (void)scanForExporters;
|
189
|
+
- (unsigned int)imageCount;
|
190
|
+
- (BOOL)imageIsPortraitAtIndex:(unsigned int)fp12;
|
191
|
+
- (id)imagePathAtIndex:(unsigned int)fp12;
|
192
|
+
- (struct _NSSize)imageSizeAtIndex:(unsigned int)fp16;
|
193
|
+
- (unsigned int)imageFormatAtIndex:(unsigned int)fp12;
|
194
|
+
- (id)imageCaptionAtIndex:(unsigned int)fp12;
|
195
|
+
- (id)thumbnailPathAtIndex:(unsigned int)fp12;
|
196
|
+
- (id)imageDictionaryAtIndex:(unsigned int)fp12;
|
197
|
+
- (float)imageAspectRatioAtIndex:(unsigned int)fp12;
|
198
|
+
- (id)albumName;
|
199
|
+
- (id)albumMusicPath;
|
200
|
+
- (unsigned int)albumCount;
|
201
|
+
- (unsigned int)albumPositionOfImageAtIndex:(unsigned int)fp12;
|
202
|
+
- (id)imageRecAtIndex:(unsigned int)fp12;
|
203
|
+
- (id)currentAlbum;
|
204
|
+
- (void)enableControls;
|
205
|
+
- (void)disableControls;
|
206
|
+
- (id)window;
|
207
|
+
- (void)clickExport;
|
208
|
+
- (void)startExport;
|
209
|
+
- (void)cancelExport;
|
210
|
+
- (void)cancelExportBeforeBeginning;
|
211
|
+
- (id)directoryPath;
|
212
|
+
- (void)_copySelection:(id)fp12;
|
213
|
+
- (id)temporaryDirectory;
|
214
|
+
- (BOOL)doesFileExist:(id)fp12;
|
215
|
+
- (BOOL)doesDirectoryExist:(id)fp12;
|
216
|
+
- (BOOL)createDir:(id)fp12;
|
217
|
+
- (id)uniqueSubPath:(id)fp12 child:(id)fp16;
|
218
|
+
- (id)makeUniquePath:(id)fp12;
|
219
|
+
- (id)makeUniqueFilePath:(id)fp12 extension:(id)fp16;
|
220
|
+
- (id)makeUniqueFileNameWithTime:(id)fp12;
|
221
|
+
- (BOOL)makeFSSpec:(id)fp12 spec:(struct FSSpec *)fp16;
|
222
|
+
- (id)pathForFSSpec:(id)fp12;
|
223
|
+
- (BOOL)getFSRef:(struct FSRef *)fp12 forPath:(id)fp16 isDirectory:(BOOL)fp20;
|
224
|
+
- (id)pathForFSRef:(struct FSRef *)fp12;
|
225
|
+
- (unsigned long)countFiles:(id)fp12 descend:(BOOL)fp16;
|
226
|
+
- (unsigned long)countFilesFromArray:(id)fp12 descend:(BOOL)fp16;
|
227
|
+
- (unsigned long long)sizeAtPath:(id)fp12 count:(unsigned long *)fp16 physical:(BOOL)fp20;
|
228
|
+
- (BOOL)isAliasFileAtPath:(id)fp12;
|
229
|
+
- (id)pathContentOfAliasAtPath:(id)fp12;
|
230
|
+
- (id)stringByResolvingAliasesInPath:(id)fp12;
|
231
|
+
- (BOOL)ensurePermissions:(unsigned long)fp12 forPath:(id)fp16;
|
232
|
+
- (id)validFilename:(id)fp12;
|
233
|
+
- (id)getExtensionForImageFormat:(unsigned int)fp12;
|
234
|
+
- (unsigned int)getImageFormatForExtension:(id)fp12;
|
235
|
+
- (struct OpaqueGrafPtr *)uncompressImage:(id)fp12 size:(struct _NSSize)fp16 pixelFormat:(unsigned int)fp24 rotation:(float)fp36;
|
236
|
+
- (void *)createThumbnailer;
|
237
|
+
- (void *)retainThumbnailer:(void *)fp12;
|
238
|
+
- (void *)autoreleaseThumbnailer:(void *)fp12;
|
239
|
+
- (void)releaseThumbnailer:(void *)fp12;
|
240
|
+
- (void)setThumbnailer:(void *)fp12 maxBytes:(unsigned int)fp16 maxWidth:(unsigned int)fp20 maxHeight:(unsigned int)fp24;
|
241
|
+
- (struct _NSSize)thumbnailerMaxBounds:(void *)fp16;
|
242
|
+
- (void)setThumbnailer:(void *)fp12 quality:(int)fp16;
|
243
|
+
- (int)thumbnailerQuality:(void *)fp12;
|
244
|
+
- (void)setThumbnailer:(void *)fp12 rotation:(float)fp36;
|
245
|
+
- (float)thumbnailerRotation:(void *)fp12;
|
246
|
+
- (void)setThumbnailer:(void *)fp12 outputFormat:(unsigned int)fp16;
|
247
|
+
- (unsigned int)thumbnailerOutputFormat:(void *)fp12;
|
248
|
+
- (void)setThumbnailer:(void *)fp12 outputExtension:(id)fp16;
|
249
|
+
- (id)thumbnailerOutputExtension:(void *)fp12;
|
250
|
+
- (BOOL)thumbnailer:(void *)fp12 createThumbnail:(id)fp16 dest:(id)fp20;
|
251
|
+
- (struct _NSSize)lastImageSize:(void *)fp16;
|
252
|
+
- (struct _NSSize)lastThumbnailSize:(void *)fp16;
|
253
|
+
|
254
|
+
@end
|
255
|
+
|
256
|
+
@interface ExportMgrRec : NSObject
|
257
|
+
{
|
258
|
+
NSString *mPath;
|
259
|
+
NSBundle *mBundle;
|
260
|
+
id mPlugin;
|
261
|
+
struct _NSSize mViewSize;
|
262
|
+
}
|
263
|
+
|
264
|
+
- (void)dealloc;
|
265
|
+
- (BOOL)isEqual:(id)fp12;
|
266
|
+
- (id)description;
|
267
|
+
- (id)initWithPath:(id)fp12;
|
268
|
+
- (id)path;
|
269
|
+
- (id)bundle;
|
270
|
+
- (id)bundleInfo;
|
271
|
+
- (BOOL)isValidExportPlugin;
|
272
|
+
- (BOOL)loadPlugin;
|
273
|
+
- (id)exportPlugin;
|
274
|
+
- (void)unloadPlugin;
|
275
|
+
- (id)view;
|
276
|
+
- (struct _NSSize)viewSize;
|
277
|
+
- (void)setPath:(id)fp12;
|
278
|
+
- (void)setBundle:(id)fp12;
|
279
|
+
|
280
|
+
@end
|
281
|
+
|
@@ -0,0 +1,553 @@
|
|
1
|
+
#
|
2
|
+
# Install/distribution utility functions
|
3
|
+
# $Id: utils.rb,v 1.5 2004/01/18 19:15:18 deveiant Exp $
|
4
|
+
#
|
5
|
+
# Copyright (c) 2001-2004, The FaerieMUD Consortium.
|
6
|
+
#
|
7
|
+
# This is free software. You may use, modify, and/or redistribute this
|
8
|
+
# software under the terms of the Perl Artistic License. (See
|
9
|
+
# http://language.perl.com/misc/Artistic.html)
|
10
|
+
#
|
11
|
+
|
12
|
+
|
13
|
+
BEGIN {
|
14
|
+
require 'find'
|
15
|
+
|
16
|
+
begin
|
17
|
+
require 'readline'
|
18
|
+
include Readline
|
19
|
+
rescue LoadError => e
|
20
|
+
$stderr.puts "Faking readline..."
|
21
|
+
def readline( prompt )
|
22
|
+
$stderr.print prompt.chomp
|
23
|
+
return $stdin.gets.chomp
|
24
|
+
end
|
25
|
+
end
|
26
|
+
}
|
27
|
+
|
28
|
+
class File
|
29
|
+
Win32Exts = %w{.exe .com .bat}
|
30
|
+
|
31
|
+
def self::which( prog, path=ENV['PATH'] )
|
32
|
+
path.split(File::PATH_SEPARATOR).each {|dir|
|
33
|
+
# If running under Windows, look for prog + extensions
|
34
|
+
if File::ALT_SEPARATOR
|
35
|
+
ext = Win32Exts.find_all {|ext|
|
36
|
+
f = File::join(dir, prog+ext)
|
37
|
+
File::executable?(f) && !File::directory?(f)
|
38
|
+
}
|
39
|
+
ext.each {|f|
|
40
|
+
f = File::join( dir, prog + f ).gsub(%r:/:,'\\')
|
41
|
+
if block_given? then yield( f ) else return f end
|
42
|
+
}
|
43
|
+
else
|
44
|
+
f = File::join( dir, prog )
|
45
|
+
if File::executable?( f ) && ! File::directory?( f )
|
46
|
+
if block_given? then yield(f) else return f end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
}
|
50
|
+
end
|
51
|
+
|
52
|
+
end
|
53
|
+
|
54
|
+
|
55
|
+
module UtilityFunctions
|
56
|
+
|
57
|
+
# The list of regexen that eliminate files from the MANIFEST
|
58
|
+
ANTIMANIFEST = [
|
59
|
+
/makedist\.rb/,
|
60
|
+
/\bCVS\b/,
|
61
|
+
/~$/,
|
62
|
+
/^#/,
|
63
|
+
%r{docs/html},
|
64
|
+
%r{docs/man},
|
65
|
+
/\bTEMPLATE\.\w+\.tpl\b/,
|
66
|
+
/\.cvsignore/,
|
67
|
+
/\.s?o$/,
|
68
|
+
]
|
69
|
+
AMRegexp = Regexp::union( *ANTIMANIFEST )
|
70
|
+
|
71
|
+
# Set some ANSI escape code constants (Shamelessly stolen from Perl's
|
72
|
+
# Term::ANSIColor by Russ Allbery <rra@stanford.edu> and Zenin <zenin@best.com>
|
73
|
+
AnsiAttributes = {
|
74
|
+
'clear' => 0,
|
75
|
+
'reset' => 0,
|
76
|
+
'bold' => 1,
|
77
|
+
'dark' => 2,
|
78
|
+
'underline' => 4,
|
79
|
+
'underscore' => 4,
|
80
|
+
'blink' => 5,
|
81
|
+
'reverse' => 7,
|
82
|
+
'concealed' => 8,
|
83
|
+
|
84
|
+
'black' => 30, 'on_black' => 40,
|
85
|
+
'red' => 31, 'on_red' => 41,
|
86
|
+
'green' => 32, 'on_green' => 42,
|
87
|
+
'yellow' => 33, 'on_yellow' => 43,
|
88
|
+
'blue' => 34, 'on_blue' => 44,
|
89
|
+
'magenta' => 35, 'on_magenta' => 45,
|
90
|
+
'cyan' => 36, 'on_cyan' => 46,
|
91
|
+
'white' => 37, 'on_white' => 47
|
92
|
+
}
|
93
|
+
|
94
|
+
ErasePreviousLine = "\033[A\033[K"
|
95
|
+
|
96
|
+
|
97
|
+
###############
|
98
|
+
module_function
|
99
|
+
###############
|
100
|
+
|
101
|
+
# Create a string that contains the ANSI codes specified and return it
|
102
|
+
def ansiCode( *attributes )
|
103
|
+
return '' unless /(?:vt10[03]|xterm(?:-color)?|linux)/i =~ ENV['TERM']
|
104
|
+
attr = attributes.collect {|a| AnsiAttributes[a] ? AnsiAttributes[a] : nil}.compact.join(';')
|
105
|
+
if attr.empty?
|
106
|
+
return ''
|
107
|
+
else
|
108
|
+
return "\e[%sm" % attr
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
|
113
|
+
# Test for the presence of the specified <tt>library</tt>, and output a
|
114
|
+
# message describing the test using <tt>nicename</tt>. If <tt>nicename</tt>
|
115
|
+
# is <tt>nil</tt>, the value in <tt>library</tt> is used to build a default.
|
116
|
+
def testForLibrary( library, nicename=nil )
|
117
|
+
nicename ||= library
|
118
|
+
message( "Testing for the #{nicename} library..." )
|
119
|
+
found = false
|
120
|
+
|
121
|
+
begin
|
122
|
+
require library
|
123
|
+
rescue LoadError => err
|
124
|
+
message "no found (%s)\n" % err.message
|
125
|
+
else
|
126
|
+
message "found\n"
|
127
|
+
found = true
|
128
|
+
end
|
129
|
+
|
130
|
+
return found
|
131
|
+
end
|
132
|
+
|
133
|
+
|
134
|
+
# Test for the presence of the specified <tt>library</tt>, and output a
|
135
|
+
# message describing the problem using <tt>nicename</tt>. If
|
136
|
+
# <tt>nicename</tt> is <tt>nil</tt>, the value in <tt>library</tt> is used
|
137
|
+
# to build a default. If <tt>raaUrl</tt> and/or <tt>downloadUrl</tt> are
|
138
|
+
# specified, they are also use to build a message describing how to find the
|
139
|
+
# required library. If <tt>fatal</tt> is <tt>true</tt>, a missing library
|
140
|
+
# will cause the program to abort.
|
141
|
+
def testForRequiredLibrary( library, nicename=nil, raaUrl=nil, downloadUrl=nil, fatal=true )
|
142
|
+
nicename ||= library
|
143
|
+
unless testForLibrary( library, nicename )
|
144
|
+
msgs = [ "You are missing the required #{nicename} library.\n" ]
|
145
|
+
msgs << "RAA: #{raaUrl}\n" if raaUrl
|
146
|
+
msgs << "Download: #{downloadUrl}\n" if downloadUrl
|
147
|
+
if fatal
|
148
|
+
abort msgs.join('')
|
149
|
+
else
|
150
|
+
errorMessage msgs.join('')
|
151
|
+
end
|
152
|
+
end
|
153
|
+
return true
|
154
|
+
end
|
155
|
+
|
156
|
+
### Output <tt>msg</tt> as a ANSI-colored program/section header (white on
|
157
|
+
### blue).
|
158
|
+
def header( msg )
|
159
|
+
msg.chomp!
|
160
|
+
$stderr.puts ansiCode( 'bold', 'white', 'on_blue' ) + msg + ansiCode( 'reset' )
|
161
|
+
$stderr.flush
|
162
|
+
end
|
163
|
+
|
164
|
+
### Output <tt>msg</tt> to STDERR and flush it.
|
165
|
+
def message( msg )
|
166
|
+
$stderr.print ansiCode( 'cyan' ) + msg + ansiCode( 'reset' )
|
167
|
+
$stderr.flush
|
168
|
+
end
|
169
|
+
|
170
|
+
### Output the specified <tt>msg</tt> as an ANSI-colored error message
|
171
|
+
### (white on red).
|
172
|
+
def errorMessage( msg )
|
173
|
+
message ansiCode( 'bold', 'white', 'on_red' ) + msg + ansiCode( 'reset' )
|
174
|
+
end
|
175
|
+
|
176
|
+
### Output the specified <tt>msg</tt> as an ANSI-colored debugging message
|
177
|
+
### (yellow on blue).
|
178
|
+
def debugMsg( msg )
|
179
|
+
return unless $DEBUG
|
180
|
+
msg.chomp!
|
181
|
+
$stderr.puts ansiCode( 'bold', 'yellow', 'on_blue' ) + ">>> #{msg}" + ansiCode( 'reset' )
|
182
|
+
$stderr.flush
|
183
|
+
end
|
184
|
+
|
185
|
+
### Erase the previous line (if supported by your terminal) and output the
|
186
|
+
### specified <tt>msg</tt> instead.
|
187
|
+
def replaceMessage( msg )
|
188
|
+
print ErasePreviousLine
|
189
|
+
message( msg )
|
190
|
+
end
|
191
|
+
|
192
|
+
### Output a divider made up of <tt>length</tt> hyphen characters.
|
193
|
+
def divider( length=75 )
|
194
|
+
puts "\r" + ("-" * length )
|
195
|
+
end
|
196
|
+
alias :writeLine :divider
|
197
|
+
|
198
|
+
### Output the specified <tt>msg</tt> colored in ANSI red and exit with a
|
199
|
+
### status of 1.
|
200
|
+
def abort( msg )
|
201
|
+
print ansiCode( 'bold', 'red' ) + "Aborted: " + msg.chomp + ansiCode( 'reset' ) + "\n\n"
|
202
|
+
Kernel.exit!( 1 )
|
203
|
+
end
|
204
|
+
|
205
|
+
### Output the specified <tt>promptString</tt> as a prompt (in green) and
|
206
|
+
### return the user's input with leading and trailing spaces removed.
|
207
|
+
def prompt( promptString )
|
208
|
+
promptString.chomp!
|
209
|
+
return readline( ansiCode('bold', 'green') + "#{promptString}: " + ansiCode('reset') ).strip
|
210
|
+
end
|
211
|
+
|
212
|
+
### Prompt the user with the given <tt>promptString</tt> via #prompt,
|
213
|
+
### substituting the given <tt>default</tt> if the user doesn't input
|
214
|
+
### anything.
|
215
|
+
def promptWithDefault( promptString, default )
|
216
|
+
response = prompt( "%s [%s]" % [ promptString, default ] )
|
217
|
+
if response.empty?
|
218
|
+
return default
|
219
|
+
else
|
220
|
+
return response
|
221
|
+
end
|
222
|
+
end
|
223
|
+
|
224
|
+
### Search for the program specified by the given <tt>progname</tt> in the
|
225
|
+
### user's <tt>PATH</tt>, and return the full path to it, or <tt>nil</tt> if
|
226
|
+
### no such program is in the path.
|
227
|
+
def findProgram( progname )
|
228
|
+
ENV['PATH'].split(File::PATH_SEPARATOR).each {|d|
|
229
|
+
file = File.join( d, progname )
|
230
|
+
return file if File.executable?( file )
|
231
|
+
}
|
232
|
+
return nil
|
233
|
+
end
|
234
|
+
|
235
|
+
### Using the CVS log for the given <tt>file</tt> attempt to guess what the
|
236
|
+
### next release version might be. This only works if releases are tagged
|
237
|
+
### with tags like 'RELEASE_x_y'.
|
238
|
+
def extractNextVersionFromTags( file )
|
239
|
+
message "Attempting to extract next release version from CVS tags for #{file}...\n"
|
240
|
+
raise RuntimeError, "No such file '#{file}'" unless File.exists?( file )
|
241
|
+
cvsPath = findProgram( 'cvs' ) or
|
242
|
+
raise RuntimeError, "Cannot find the 'cvs' program. Aborting."
|
243
|
+
|
244
|
+
output = %x{#{cvsPath} log #{file}}
|
245
|
+
release = [ 0, 0 ]
|
246
|
+
output.scan( /RELEASE_(\d+)_(\d+)/ ) {|match|
|
247
|
+
if $1.to_i > release[0] || $2.to_i > release[1]
|
248
|
+
release = [ $1.to_i, $2.to_i ]
|
249
|
+
replaceMessage( "Found %d.%02d...\n" % release )
|
250
|
+
end
|
251
|
+
}
|
252
|
+
|
253
|
+
if release[1] >= 99
|
254
|
+
release[0] += 1
|
255
|
+
release[1] = 1
|
256
|
+
else
|
257
|
+
release[1] += 1
|
258
|
+
end
|
259
|
+
|
260
|
+
return "%d.%02d" % release
|
261
|
+
end
|
262
|
+
|
263
|
+
|
264
|
+
### Write a new manifest file with the given +named+, moving any current one
|
265
|
+
### aside with an ".old" suffix if +backup+ is true.
|
266
|
+
def makeManifest( name="MANIFEST", backup=true )
|
267
|
+
message "Making manifest file '#{name}'"
|
268
|
+
|
269
|
+
# Move an old one aside if a backup is desired
|
270
|
+
if backup and File::exists?( name )
|
271
|
+
File::rename( name, name + ".old" )
|
272
|
+
end
|
273
|
+
|
274
|
+
File::open( name, File::WRONLY|File::TRUNC|File::CREAT ) {|ofh|
|
275
|
+
Find::find( "." ) do |file|
|
276
|
+
Find.prune if AMRegexp =~ file
|
277
|
+
Find.prune if %r{/\.} =~ file
|
278
|
+
Find.prune if /TEMPLATE/ =~ file
|
279
|
+
next if File::directory?( file )
|
280
|
+
|
281
|
+
ofh.puts file
|
282
|
+
end
|
283
|
+
}
|
284
|
+
end
|
285
|
+
|
286
|
+
|
287
|
+
### Read the specified <tt>manifestFile</tt>, which is a text file
|
288
|
+
### describing which files to package up for a distribution. The manifest
|
289
|
+
### should consist of one or more lines, each containing one filename or
|
290
|
+
### shell glob pattern.
|
291
|
+
def readManifest( manifestFile="MANIFEST" )
|
292
|
+
message "Reading manifest..."
|
293
|
+
raise "Missing #{manifestFile}, please remake it" unless File.exists? manifestFile
|
294
|
+
|
295
|
+
manifest = IO::readlines( manifestFile ).collect {|line|
|
296
|
+
line.chomp
|
297
|
+
}.select {|line|
|
298
|
+
line !~ /^(\s*(#.*)?)?$/
|
299
|
+
}
|
300
|
+
|
301
|
+
filelist = []
|
302
|
+
for pat in manifest
|
303
|
+
$stderr.puts "Adding files that match '#{pat}' to the file list" if $VERBOSE
|
304
|
+
filelist |= Dir.glob( pat ).find_all {|f| FileTest.file?(f)}
|
305
|
+
end
|
306
|
+
|
307
|
+
message "found #{filelist.length} files.\n"
|
308
|
+
return filelist
|
309
|
+
end
|
310
|
+
|
311
|
+
|
312
|
+
### Given a <tt>filelist</tt> like that returned by #readManifest, remove
|
313
|
+
### the entries therein which match the Regexp objects in the given
|
314
|
+
### <tt>antimanifest</tt> and return the resultant Array.
|
315
|
+
def vetManifest( filelist, antimanifest=ANITMANIFEST )
|
316
|
+
origLength = filelist.length
|
317
|
+
message "Vetting manifest..."
|
318
|
+
|
319
|
+
for regex in antimanifest
|
320
|
+
if $VERBOSE
|
321
|
+
message "\n\tPattern /#{regex.source}/ removed: " +
|
322
|
+
filelist.find_all {|file| regex.match(file)}.join(', ')
|
323
|
+
end
|
324
|
+
filelist.delete_if {|file| regex.match(file)}
|
325
|
+
end
|
326
|
+
|
327
|
+
message "removed #{origLength - filelist.length} files from the list.\n"
|
328
|
+
return filelist
|
329
|
+
end
|
330
|
+
|
331
|
+
### Combine a call to #readManifest with one to #vetManifest.
|
332
|
+
def getVettedManifest( manifestFile="MANIFEST", antimanifest=ANTIMANIFEST )
|
333
|
+
vetManifest( readManifest(manifestFile), antimanifest )
|
334
|
+
end
|
335
|
+
|
336
|
+
### Given a documentation <tt>catalogFile</tt>, extract the title, if
|
337
|
+
### available, and return it. Otherwise generate a title from the name of
|
338
|
+
### the CVS module.
|
339
|
+
def findRdocTitle( catalogFile="docs/CATALOG" )
|
340
|
+
|
341
|
+
# Try extracting it from the CATALOG file from a line that looks like:
|
342
|
+
# Title: Foo Bar Module
|
343
|
+
title = findCatalogKeyword( 'title', catalogFile )
|
344
|
+
|
345
|
+
# If that doesn't work for some reason, try grabbing the name of the CVS
|
346
|
+
# repository the directory belongs to.
|
347
|
+
if title.nil? && File::directory?( "CVS" ) &&
|
348
|
+
File::exists?( "CVS/Repository" )
|
349
|
+
title = File::read( "CVS/Repository" ).chomp
|
350
|
+
end
|
351
|
+
|
352
|
+
# As a last resort, use the name of the project directory
|
353
|
+
if title.nil?
|
354
|
+
distdir = File::dirname( __FILE__ )
|
355
|
+
distdir = File::dirname( distdir ) if /docs$/ =~ distdir
|
356
|
+
title = File::basename( distdir )
|
357
|
+
end
|
358
|
+
|
359
|
+
return title
|
360
|
+
end
|
361
|
+
|
362
|
+
### Given a documentation <tt>catalogFile</tt>, extract the name of the file
|
363
|
+
### to use as the initally displayed page. If extraction fails, the
|
364
|
+
### +default+ will be used if it exists. Returns +nil+ if there is no main
|
365
|
+
### file to be found.
|
366
|
+
def findRdocMain( catalogFile="docs/CATALOG", default="README" )
|
367
|
+
|
368
|
+
# Try extracting it from the CATALOG file from a line that looks like:
|
369
|
+
# Main: Foo Bar Module
|
370
|
+
main = findCatalogKeyword( 'main', catalogFile )
|
371
|
+
|
372
|
+
# Try to make some educated guesses if that doesn't work
|
373
|
+
if main.nil?
|
374
|
+
basedir = File::dirname( __FILE__ )
|
375
|
+
basedir = File::dirname( basedir ) if /docs$/ =~ basedir
|
376
|
+
|
377
|
+
if File::exists?( File::join(basedir, default) )
|
378
|
+
main = default
|
379
|
+
end
|
380
|
+
end
|
381
|
+
|
382
|
+
return main
|
383
|
+
end
|
384
|
+
|
385
|
+
|
386
|
+
### Given a documentation <tt>catalogFile</tt>, extract an upload URL for
|
387
|
+
### RDoc.
|
388
|
+
def findRdocUpload( catalogFile="docs/CATALOG" )
|
389
|
+
findCatalogKeyword( 'upload', catalogFile )
|
390
|
+
end
|
391
|
+
|
392
|
+
|
393
|
+
### Given a documentation <tt>catalogFile</tt>, extract a CVS web frontend
|
394
|
+
### URL for RDoc.
|
395
|
+
def findRdocCvsURL( catalogFile="docs/CATALOG" )
|
396
|
+
findCatalogKeyword( 'webcvs', catalogFile )
|
397
|
+
end
|
398
|
+
|
399
|
+
|
400
|
+
### Given a documentation <tt>catalogFile</tt>, try extracting the given
|
401
|
+
### +keyword+'s value from it. Keywords are lines that look like:
|
402
|
+
### # <keyword>: <value>
|
403
|
+
### Returns +nil+ if the catalog file was unreadable or didn't contain the
|
404
|
+
### specified +keyword+.
|
405
|
+
def findCatalogKeyword( keyword, catalogFile="docs/CATALOG" )
|
406
|
+
val = nil
|
407
|
+
|
408
|
+
if File::exists? catalogFile
|
409
|
+
message "Extracting '#{keyword}' from CATALOG file (%s).\n" % catalogFile
|
410
|
+
File::foreach( catalogFile ) {|line|
|
411
|
+
debugMsg( "Examining line #{line.inspect}..." )
|
412
|
+
val = $1.strip and break if /^#\s*#{keyword}:\s*(.*)$/i =~ line
|
413
|
+
}
|
414
|
+
end
|
415
|
+
|
416
|
+
return val
|
417
|
+
end
|
418
|
+
|
419
|
+
|
420
|
+
### Given a documentation <tt>catalogFile</tt>, which is in the same format
|
421
|
+
### as that described by #readManifest, read and expand it, and then return
|
422
|
+
### a list of those files which appear to have RDoc documentation in
|
423
|
+
### them. If <tt>catalogFile</tt> is nil or does not exist, the MANIFEST
|
424
|
+
### file is used instead.
|
425
|
+
def findRdocableFiles( catalogFile="docs/CATALOG" )
|
426
|
+
startlist = []
|
427
|
+
if File.exists? catalogFile
|
428
|
+
message "Using CATALOG file (%s).\n" % catalogFile
|
429
|
+
startlist = getVettedManifest( catalogFile )
|
430
|
+
else
|
431
|
+
message "Using default MANIFEST\n"
|
432
|
+
startlist = getVettedManifest()
|
433
|
+
end
|
434
|
+
|
435
|
+
message "Looking for RDoc comments in:\n" if $VERBOSE
|
436
|
+
startlist.select {|fn|
|
437
|
+
message " #{fn}: " if $VERBOSE
|
438
|
+
found = false
|
439
|
+
File::open( fn, "r" ) {|fh|
|
440
|
+
fh.each {|line|
|
441
|
+
if line =~ /^(\s*#)?\s*=/ || line =~ /:\w+:/ || line =~ %r{/\*}
|
442
|
+
found = true
|
443
|
+
break
|
444
|
+
end
|
445
|
+
}
|
446
|
+
}
|
447
|
+
|
448
|
+
message( (found ? "yes" : "no") + "\n" ) if $VERBOSE
|
449
|
+
found
|
450
|
+
}
|
451
|
+
end
|
452
|
+
|
453
|
+
### Open a file and filter each of its lines through the given block a
|
454
|
+
### <tt>line</tt> at a time. The return value of the block is used as the
|
455
|
+
### new line, or omitted if the block returns <tt>nil</tt> or
|
456
|
+
### <tt>false</tt>.
|
457
|
+
def editInPlace( file ) # :yields: line
|
458
|
+
raise "No block specified for editing operation" unless block_given?
|
459
|
+
|
460
|
+
tempName = "#{file}.#{$$}"
|
461
|
+
File::open( tempName, File::RDWR|File::CREAT, 0600 ) {|tempfile|
|
462
|
+
File::unlink( tempName )
|
463
|
+
File::open( file, File::RDONLY ) {|fh|
|
464
|
+
fh.each {|line|
|
465
|
+
newline = yield( line ) or next
|
466
|
+
tempfile.print( newline )
|
467
|
+
}
|
468
|
+
}
|
469
|
+
|
470
|
+
tempfile.seek(0)
|
471
|
+
|
472
|
+
File::open( file, File::TRUNC|File::WRONLY, 0644 ) {|newfile|
|
473
|
+
newfile.print( tempfile.read )
|
474
|
+
}
|
475
|
+
}
|
476
|
+
end
|
477
|
+
|
478
|
+
### Execute the specified shell <tt>command</tt>, read the results, and
|
479
|
+
### return them. Like a %x{} that returns an Array instead of a String.
|
480
|
+
def shellCommand( *command )
|
481
|
+
raise "Empty command" if command.empty?
|
482
|
+
|
483
|
+
cmdpipe = IO::popen( command.join(' '), 'r' )
|
484
|
+
return cmdpipe.readlines
|
485
|
+
end
|
486
|
+
|
487
|
+
### Execute a block with $VERBOSE set to +false+, restoring it to its
|
488
|
+
### previous value before returning.
|
489
|
+
def verboseOff
|
490
|
+
raise LocalJumpError, "No block given" unless block_given?
|
491
|
+
|
492
|
+
thrcrit = Thread.critical
|
493
|
+
oldverbose = $VERBOSE
|
494
|
+
begin
|
495
|
+
Thread.critical = true
|
496
|
+
$VERBOSE = false
|
497
|
+
yield
|
498
|
+
ensure
|
499
|
+
$VERBOSE = oldverbose
|
500
|
+
Thread.critical = false
|
501
|
+
end
|
502
|
+
end
|
503
|
+
|
504
|
+
|
505
|
+
### Try the specified code block, printing the given
|
506
|
+
def try( msg, bind=nil )
|
507
|
+
result = nil
|
508
|
+
if msg =~ /^to\s/
|
509
|
+
message = "Trying #{msg}..."
|
510
|
+
else
|
511
|
+
message = msg
|
512
|
+
end
|
513
|
+
|
514
|
+
begin
|
515
|
+
rval = nil
|
516
|
+
if block_given?
|
517
|
+
rval = yield
|
518
|
+
else
|
519
|
+
file, line = caller(1)[0].split(/:/,2)
|
520
|
+
rval = eval( msg, bind, file, line.to_i )
|
521
|
+
end
|
522
|
+
|
523
|
+
result = rval.inspect
|
524
|
+
rescue Exception => err
|
525
|
+
if err.backtrace
|
526
|
+
nicetrace = err.backtrace.delete_if {|frame|
|
527
|
+
/in `(try|eval)'/ =~ frame
|
528
|
+
}.join("\n\t")
|
529
|
+
else
|
530
|
+
nicetrace = "Exception had no backtrace"
|
531
|
+
end
|
532
|
+
|
533
|
+
result = err.message + "\n\t" + nicetrace
|
534
|
+
ensure
|
535
|
+
puts result
|
536
|
+
end
|
537
|
+
end
|
538
|
+
|
539
|
+
def time
|
540
|
+
start = Time::now
|
541
|
+
stimes = Process::times
|
542
|
+
rval = yield
|
543
|
+
etimes = Process::times
|
544
|
+
$stderr.puts "Time elapsed: %0.5f user, %0.5f system (%0.5f wall clock seconds)" % [
|
545
|
+
etimes.utime - stimes.utime,
|
546
|
+
etimes.stime - stimes.stime,
|
547
|
+
Time::now.to_f - start.to_f,
|
548
|
+
]
|
549
|
+
|
550
|
+
return rval
|
551
|
+
end
|
552
|
+
|
553
|
+
end
|