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,108 @@
|
|
1
|
+
require 'syntax'
|
2
|
+
|
3
|
+
module Syntax
|
4
|
+
|
5
|
+
# A simple implementation of an XML lexer. It handles most cases. It is
|
6
|
+
# not a validating lexer, meaning it will happily process invalid XML without
|
7
|
+
# complaining.
|
8
|
+
class XML < Tokenizer
|
9
|
+
|
10
|
+
# Initialize the lexer.
|
11
|
+
def setup
|
12
|
+
@in_tag = false
|
13
|
+
end
|
14
|
+
|
15
|
+
# Step through a single iteration of the tokenization process. This will
|
16
|
+
# yield (potentially) many tokens, and possibly zero tokens.
|
17
|
+
def step
|
18
|
+
start_group :normal, matched if scan( /\s+/ )
|
19
|
+
if @in_tag
|
20
|
+
case
|
21
|
+
when scan( /([-\w]+):([-\w]+)/ )
|
22
|
+
start_group :namespace, subgroup(1)
|
23
|
+
start_group :punct, ":"
|
24
|
+
start_group :attribute, subgroup(2)
|
25
|
+
when scan( /\d+/ )
|
26
|
+
start_group :number, matched
|
27
|
+
when scan( /[-\w]+/ )
|
28
|
+
start_group :attribute, matched
|
29
|
+
when scan( %r{[/?]?>} )
|
30
|
+
@in_tag = false
|
31
|
+
start_group :punct, matched
|
32
|
+
when scan( /=/ )
|
33
|
+
start_group :punct, matched
|
34
|
+
when scan( /["']/ )
|
35
|
+
scan_string matched
|
36
|
+
else
|
37
|
+
append getch
|
38
|
+
end
|
39
|
+
elsif ( text = scan_until( /(?=[<&])/ ) )
|
40
|
+
start_group :normal, text unless text.empty?
|
41
|
+
if scan(/<!--.*?(-->|\Z)/m)
|
42
|
+
start_group :comment, matched
|
43
|
+
else
|
44
|
+
case peek(1)
|
45
|
+
when "<"
|
46
|
+
start_group :punct, getch
|
47
|
+
case peek(1)
|
48
|
+
when "?"
|
49
|
+
append getch
|
50
|
+
when "/"
|
51
|
+
append getch
|
52
|
+
when "!"
|
53
|
+
append getch
|
54
|
+
end
|
55
|
+
start_group :normal, matched if scan( /\s+/ )
|
56
|
+
if scan( /([-\w]+):([-\w]+)/ )
|
57
|
+
start_group :namespace, subgroup(1)
|
58
|
+
start_group :punct, ":"
|
59
|
+
start_group :tag, subgroup(2)
|
60
|
+
elsif scan( /[-\w]+/ )
|
61
|
+
start_group :tag, matched
|
62
|
+
end
|
63
|
+
@in_tag = true
|
64
|
+
when "&"
|
65
|
+
if scan( /&\S{1,10};/ )
|
66
|
+
start_group :entity, matched
|
67
|
+
else
|
68
|
+
start_group :normal, scan( /&/ )
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
else
|
73
|
+
append scan_until( /\Z/ )
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
77
|
+
private
|
78
|
+
|
79
|
+
# Scan the string starting at the current position, with the given
|
80
|
+
# delimiter character.
|
81
|
+
def scan_string( delim )
|
82
|
+
start_group :punct, delim
|
83
|
+
match = /(?=[&\\]|#{delim})/
|
84
|
+
loop do
|
85
|
+
break unless ( text = scan_until( match ) )
|
86
|
+
start_group :string, text unless text.empty?
|
87
|
+
case peek(1)
|
88
|
+
when "&"
|
89
|
+
if scan( /&\S{1,10};/ )
|
90
|
+
start_group :entity, matched
|
91
|
+
else
|
92
|
+
start_group :string, getch
|
93
|
+
end
|
94
|
+
when "\\"
|
95
|
+
start_group :string, getch
|
96
|
+
append getch || ""
|
97
|
+
when delim
|
98
|
+
start_group :punct, getch
|
99
|
+
break
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
end
|
105
|
+
|
106
|
+
SYNTAX["xml"] = XML
|
107
|
+
|
108
|
+
end
|
@@ -0,0 +1,105 @@
|
|
1
|
+
require 'syntax'
|
2
|
+
|
3
|
+
module Syntax
|
4
|
+
|
5
|
+
# A simple implementation of an YAML lexer. It handles most cases. It is
|
6
|
+
# not a validating lexer.
|
7
|
+
class YAML < Tokenizer
|
8
|
+
|
9
|
+
# Step through a single iteration of the tokenization process. This will
|
10
|
+
# yield (potentially) many tokens, and possibly zero tokens.
|
11
|
+
def step
|
12
|
+
if bol?
|
13
|
+
case
|
14
|
+
when scan(/---(\s*.+)?$/)
|
15
|
+
start_group :document, matched
|
16
|
+
when scan(/(\s*)([a-zA-Z][-\w]*)(\s*):/)
|
17
|
+
start_group :normal, subgroup(1)
|
18
|
+
start_group :key, subgroup(2)
|
19
|
+
start_group :normal, subgroup(3)
|
20
|
+
start_group :punct, ":"
|
21
|
+
when scan(/(\s*)-/)
|
22
|
+
start_group :normal, subgroup(1)
|
23
|
+
start_group :punct, "-"
|
24
|
+
when scan(/\s*$/)
|
25
|
+
start_group :normal, matched
|
26
|
+
when scan(/#.*$/)
|
27
|
+
start_group :comment, matched
|
28
|
+
else
|
29
|
+
append getch
|
30
|
+
end
|
31
|
+
else
|
32
|
+
case
|
33
|
+
when scan(/[\n\r]+/)
|
34
|
+
start_group :normal, matched
|
35
|
+
when scan(/[ \t]+/)
|
36
|
+
start_group :normal, matched
|
37
|
+
when scan(/!+(.*?^)?\S+/)
|
38
|
+
start_group :type, matched
|
39
|
+
when scan(/&\S+/)
|
40
|
+
start_group :anchor, matched
|
41
|
+
when scan(/\*\S+/)
|
42
|
+
start_group :ref, matched
|
43
|
+
when scan(/\d\d:\d\d:\d\d/)
|
44
|
+
start_group :time, matched
|
45
|
+
when scan(/\d\d\d\d-\d\d-\d\d\s\d\d:\d\d:\d\d(\.\d+)? [-+]\d\d:\d\d/)
|
46
|
+
start_group :date, matched
|
47
|
+
when scan(/['"]/)
|
48
|
+
start_group :punct, matched
|
49
|
+
scan_string matched
|
50
|
+
when scan(/:\w+/)
|
51
|
+
start_group :symbol, matched
|
52
|
+
when scan(/[:]/)
|
53
|
+
start_group :punct, matched
|
54
|
+
when scan(/#.*$/)
|
55
|
+
start_group :comment, matched
|
56
|
+
when scan(/>-?/)
|
57
|
+
start_group :punct, matched
|
58
|
+
start_group :normal, scan(/.*$/)
|
59
|
+
append getch until eos? || bol?
|
60
|
+
return if eos?
|
61
|
+
indent = check(/ */)
|
62
|
+
start_group :string
|
63
|
+
loop do
|
64
|
+
line = check_until(/[\n\r]|\Z/)
|
65
|
+
break if line.nil?
|
66
|
+
if line.chomp.length > 0
|
67
|
+
this_indent = line.chomp.match( /^\s*/ )[0]
|
68
|
+
break if this_indent.length < indent.length
|
69
|
+
end
|
70
|
+
append scan_until(/[\n\r]|\Z/)
|
71
|
+
end
|
72
|
+
else
|
73
|
+
start_group :normal, scan_until(/(?=$|#)/)
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
private
|
79
|
+
|
80
|
+
def scan_string( delim )
|
81
|
+
regex = /(?=[#{delim=="'" ? "" : "\\\\"}#{delim}])/
|
82
|
+
loop do
|
83
|
+
text = scan_until( regex )
|
84
|
+
if text.nil?
|
85
|
+
start_group :string, scan_until( /\Z/ )
|
86
|
+
break
|
87
|
+
else
|
88
|
+
start_group :string, text unless text.empty?
|
89
|
+
end
|
90
|
+
|
91
|
+
case peek(1)
|
92
|
+
when "\\"
|
93
|
+
start_group :expr, scan(/../)
|
94
|
+
else
|
95
|
+
start_group :punct, getch
|
96
|
+
break
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
end
|
102
|
+
|
103
|
+
SYNTAX["yaml"] = YAML
|
104
|
+
|
105
|
+
end
|
@@ -0,0 +1,1331 @@
|
|
1
|
+
#
|
2
|
+
# setup.rb
|
3
|
+
#
|
4
|
+
# Copyright (c) 2000-2004 Minero Aoki
|
5
|
+
#
|
6
|
+
# This program is free software.
|
7
|
+
# You can distribute/modify this program under the terms of
|
8
|
+
# the GNU Lesser General Public License version 2.1.
|
9
|
+
#
|
10
|
+
|
11
|
+
#
|
12
|
+
# For backward compatibility
|
13
|
+
#
|
14
|
+
|
15
|
+
unless Enumerable.method_defined?(:map)
|
16
|
+
module Enumerable
|
17
|
+
alias map collect
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
unless Enumerable.method_defined?(:detect)
|
22
|
+
module Enumerable
|
23
|
+
alias detect find
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
unless Enumerable.method_defined?(:select)
|
28
|
+
module Enumerable
|
29
|
+
alias select find_all
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
unless Enumerable.method_defined?(:reject)
|
34
|
+
module Enumerable
|
35
|
+
def reject
|
36
|
+
result = []
|
37
|
+
each do |i|
|
38
|
+
result.push i unless yield(i)
|
39
|
+
end
|
40
|
+
result
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
44
|
+
|
45
|
+
unless Enumerable.method_defined?(:inject)
|
46
|
+
module Enumerable
|
47
|
+
def inject(result)
|
48
|
+
each do |i|
|
49
|
+
result = yield(result, i)
|
50
|
+
end
|
51
|
+
result
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
unless Enumerable.method_defined?(:any?)
|
57
|
+
module Enumerable
|
58
|
+
def any?
|
59
|
+
each do |i|
|
60
|
+
return true if yield(i)
|
61
|
+
end
|
62
|
+
false
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
unless File.respond_to?(:read)
|
68
|
+
def File.read(fname)
|
69
|
+
open(fname) {|f|
|
70
|
+
return f.read
|
71
|
+
}
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
75
|
+
#
|
76
|
+
# Application independent utilities
|
77
|
+
#
|
78
|
+
|
79
|
+
def File.binread(fname)
|
80
|
+
open(fname, 'rb') {|f|
|
81
|
+
return f.read
|
82
|
+
}
|
83
|
+
end
|
84
|
+
|
85
|
+
# for corrupted windows stat(2)
|
86
|
+
def File.dir?(path)
|
87
|
+
File.directory?((path[-1,1] == '/') ? path : path + '/')
|
88
|
+
end
|
89
|
+
|
90
|
+
#
|
91
|
+
# Config
|
92
|
+
#
|
93
|
+
|
94
|
+
if arg = ARGV.detect{|arg| /\A--rbconfig=/ =~ arg }
|
95
|
+
ARGV.delete(arg)
|
96
|
+
require arg.split(/=/, 2)[1]
|
97
|
+
$".push 'rbconfig.rb'
|
98
|
+
else
|
99
|
+
require 'rbconfig'
|
100
|
+
end
|
101
|
+
|
102
|
+
def multipackage_install?
|
103
|
+
FileTest.directory?(File.dirname($0) + '/packages')
|
104
|
+
end
|
105
|
+
|
106
|
+
|
107
|
+
class ConfigTable
|
108
|
+
|
109
|
+
c = ::Config::CONFIG
|
110
|
+
|
111
|
+
rubypath = c['bindir'] + '/' + c['ruby_install_name']
|
112
|
+
|
113
|
+
major = c['MAJOR'].to_i
|
114
|
+
minor = c['MINOR'].to_i
|
115
|
+
teeny = c['TEENY'].to_i
|
116
|
+
version = "#{major}.#{minor}"
|
117
|
+
|
118
|
+
# ruby ver. >= 1.4.4?
|
119
|
+
newpath_p = ((major >= 2) or
|
120
|
+
((major == 1) and
|
121
|
+
((minor >= 5) or
|
122
|
+
((minor == 4) and (teeny >= 4)))))
|
123
|
+
|
124
|
+
subprefix = lambda {|path|
|
125
|
+
path.sub(/\A#{Regexp.quote(c['prefix'])}/o, '$prefix')
|
126
|
+
}
|
127
|
+
|
128
|
+
if c['rubylibdir']
|
129
|
+
# V < 1.6.3
|
130
|
+
stdruby = subprefix.call(c['rubylibdir'])
|
131
|
+
siteruby = subprefix.call(c['sitedir'])
|
132
|
+
versite = subprefix.call(c['sitelibdir'])
|
133
|
+
sodir = subprefix.call(c['sitearchdir'])
|
134
|
+
elsif newpath_p
|
135
|
+
# 1.4.4 <= V <= 1.6.3
|
136
|
+
stdruby = "$prefix/lib/ruby/#{version}"
|
137
|
+
siteruby = subprefix.call(c['sitedir'])
|
138
|
+
versite = siteruby + '/' + version
|
139
|
+
sodir = "$site-ruby/#{c['arch']}"
|
140
|
+
else
|
141
|
+
# V < 1.4.4
|
142
|
+
stdruby = "$prefix/lib/ruby/#{version}"
|
143
|
+
siteruby = "$prefix/lib/ruby/#{version}/site_ruby"
|
144
|
+
versite = siteruby
|
145
|
+
sodir = "$site-ruby/#{c['arch']}"
|
146
|
+
end
|
147
|
+
|
148
|
+
if arg = c['configure_args'].split.detect {|arg| /--with-make-prog=/ =~ arg }
|
149
|
+
makeprog = arg.sub(/'/, '').split(/=/, 2)[1]
|
150
|
+
else
|
151
|
+
makeprog = 'make'
|
152
|
+
end
|
153
|
+
|
154
|
+
common_descripters = [
|
155
|
+
[ 'prefix', [ c['prefix'],
|
156
|
+
'path',
|
157
|
+
'path prefix of target environment' ] ],
|
158
|
+
[ 'std-ruby', [ stdruby,
|
159
|
+
'path',
|
160
|
+
'the directory for standard ruby libraries' ] ],
|
161
|
+
[ 'site-ruby-common', [ siteruby,
|
162
|
+
'path',
|
163
|
+
'the directory for version-independent non-standard ruby libraries' ] ],
|
164
|
+
[ 'site-ruby', [ versite,
|
165
|
+
'path',
|
166
|
+
'the directory for non-standard ruby libraries' ] ],
|
167
|
+
[ 'bin-dir', [ '$prefix/bin',
|
168
|
+
'path',
|
169
|
+
'the directory for commands' ] ],
|
170
|
+
[ 'rb-dir', [ '$site-ruby',
|
171
|
+
'path',
|
172
|
+
'the directory for ruby scripts' ] ],
|
173
|
+
[ 'so-dir', [ sodir,
|
174
|
+
'path',
|
175
|
+
'the directory for ruby extentions' ] ],
|
176
|
+
[ 'data-dir', [ '$prefix/share',
|
177
|
+
'path',
|
178
|
+
'the directory for shared data' ] ],
|
179
|
+
[ 'ruby-path', [ rubypath,
|
180
|
+
'path',
|
181
|
+
'path to set to #! line' ] ],
|
182
|
+
[ 'ruby-prog', [ rubypath,
|
183
|
+
'name',
|
184
|
+
'the ruby program using for installation' ] ],
|
185
|
+
[ 'make-prog', [ makeprog,
|
186
|
+
'name',
|
187
|
+
'the make program to compile ruby extentions' ] ],
|
188
|
+
[ 'without-ext', [ 'no',
|
189
|
+
'yes/no',
|
190
|
+
'does not compile/install ruby extentions' ] ]
|
191
|
+
]
|
192
|
+
multipackage_descripters = [
|
193
|
+
[ 'with', [ '',
|
194
|
+
'name,name...',
|
195
|
+
'package names that you want to install',
|
196
|
+
'ALL' ] ],
|
197
|
+
[ 'without', [ '',
|
198
|
+
'name,name...',
|
199
|
+
'package names that you do not want to install',
|
200
|
+
'NONE' ] ]
|
201
|
+
]
|
202
|
+
if multipackage_install?
|
203
|
+
DESCRIPTER = common_descripters + multipackage_descripters
|
204
|
+
else
|
205
|
+
DESCRIPTER = common_descripters
|
206
|
+
end
|
207
|
+
|
208
|
+
SAVE_FILE = 'config.save'
|
209
|
+
|
210
|
+
def ConfigTable.each_name(&block)
|
211
|
+
keys().each(&block)
|
212
|
+
end
|
213
|
+
|
214
|
+
def ConfigTable.keys
|
215
|
+
DESCRIPTER.map {|name, *dummy| name }
|
216
|
+
end
|
217
|
+
|
218
|
+
def ConfigTable.each_definition(&block)
|
219
|
+
DESCRIPTER.each(&block)
|
220
|
+
end
|
221
|
+
|
222
|
+
def ConfigTable.get_entry(name)
|
223
|
+
name, ent = DESCRIPTER.assoc(name)
|
224
|
+
ent
|
225
|
+
end
|
226
|
+
|
227
|
+
def ConfigTable.get_entry!(name)
|
228
|
+
get_entry(name) or raise ArgumentError, "no such config: #{name}"
|
229
|
+
end
|
230
|
+
|
231
|
+
def ConfigTable.add_entry(name, vals)
|
232
|
+
ConfigTable::DESCRIPTER.push [name,vals]
|
233
|
+
end
|
234
|
+
|
235
|
+
def ConfigTable.remove_entry(name)
|
236
|
+
get_entry(name) or raise ArgumentError, "no such config: #{name}"
|
237
|
+
DESCRIPTER.delete_if {|n, arr| n == name }
|
238
|
+
end
|
239
|
+
|
240
|
+
def ConfigTable.config_key?(name)
|
241
|
+
get_entry(name) ? true : false
|
242
|
+
end
|
243
|
+
|
244
|
+
def ConfigTable.bool_config?(name)
|
245
|
+
ent = get_entry(name) or return false
|
246
|
+
ent[1] == 'yes/no'
|
247
|
+
end
|
248
|
+
|
249
|
+
def ConfigTable.value_config?(name)
|
250
|
+
ent = get_entry(name) or return false
|
251
|
+
ent[1] != 'yes/no'
|
252
|
+
end
|
253
|
+
|
254
|
+
def ConfigTable.path_config?(name)
|
255
|
+
ent = get_entry(name) or return false
|
256
|
+
ent[1] == 'path'
|
257
|
+
end
|
258
|
+
|
259
|
+
|
260
|
+
class << self
|
261
|
+
alias newobj new
|
262
|
+
end
|
263
|
+
|
264
|
+
def ConfigTable.new
|
265
|
+
c = newobj()
|
266
|
+
c.initialize_from_table
|
267
|
+
c
|
268
|
+
end
|
269
|
+
|
270
|
+
def ConfigTable.load
|
271
|
+
c = newobj()
|
272
|
+
c.initialize_from_file
|
273
|
+
c
|
274
|
+
end
|
275
|
+
|
276
|
+
def initialize_from_table
|
277
|
+
@table = {}
|
278
|
+
DESCRIPTER.each do |k, (default, vname, desc, default2)|
|
279
|
+
@table[k] = default
|
280
|
+
end
|
281
|
+
end
|
282
|
+
|
283
|
+
def initialize_from_file
|
284
|
+
raise InstallError, "#{File.basename $0} config first"\
|
285
|
+
unless File.file?(SAVE_FILE)
|
286
|
+
@table = {}
|
287
|
+
File.foreach(SAVE_FILE) do |line|
|
288
|
+
k, v = line.split(/=/, 2)
|
289
|
+
@table[k] = v.strip
|
290
|
+
end
|
291
|
+
end
|
292
|
+
|
293
|
+
def save
|
294
|
+
File.open(SAVE_FILE, 'w') {|f|
|
295
|
+
@table.each do |k, v|
|
296
|
+
f.printf "%s=%s\n", k, v if v
|
297
|
+
end
|
298
|
+
}
|
299
|
+
end
|
300
|
+
|
301
|
+
def []=(k, v)
|
302
|
+
raise InstallError, "unknown config option #{k}"\
|
303
|
+
unless ConfigTable.config_key?(k)
|
304
|
+
@table[k] = v
|
305
|
+
end
|
306
|
+
|
307
|
+
def [](key)
|
308
|
+
return nil unless @table[key]
|
309
|
+
@table[key].gsub(%r<\$([^/]+)>) { self[$1] }
|
310
|
+
end
|
311
|
+
|
312
|
+
def set_raw(key, val)
|
313
|
+
@table[key] = val
|
314
|
+
end
|
315
|
+
|
316
|
+
def get_raw(key)
|
317
|
+
@table[key]
|
318
|
+
end
|
319
|
+
|
320
|
+
end
|
321
|
+
|
322
|
+
|
323
|
+
module MetaConfigAPI
|
324
|
+
|
325
|
+
def eval_file_ifexist(fname)
|
326
|
+
instance_eval File.read(fname), fname, 1 if File.file?(fname)
|
327
|
+
end
|
328
|
+
|
329
|
+
def config_names
|
330
|
+
ConfigTable.keys
|
331
|
+
end
|
332
|
+
|
333
|
+
def config?(name)
|
334
|
+
ConfigTable.config_key?(name)
|
335
|
+
end
|
336
|
+
|
337
|
+
def bool_config?(name)
|
338
|
+
ConfigTable.bool_config?(name)
|
339
|
+
end
|
340
|
+
|
341
|
+
def value_config?(name)
|
342
|
+
ConfigTable.value_config?(name)
|
343
|
+
end
|
344
|
+
|
345
|
+
def path_config?(name)
|
346
|
+
ConfigTable.path_config?(name)
|
347
|
+
end
|
348
|
+
|
349
|
+
def add_config(name, argname, default, desc)
|
350
|
+
ConfigTable.add_entry name,[default,argname,desc]
|
351
|
+
end
|
352
|
+
|
353
|
+
def add_path_config(name, default, desc)
|
354
|
+
add_config name, 'path', default, desc
|
355
|
+
end
|
356
|
+
|
357
|
+
def add_bool_config(name, default, desc)
|
358
|
+
add_config name, 'yes/no', default ? 'yes' : 'no', desc
|
359
|
+
end
|
360
|
+
|
361
|
+
def set_config_default(name, default)
|
362
|
+
if bool_config?(name)
|
363
|
+
ConfigTable.get_entry!(name)[0] = (default ? 'yes' : 'no')
|
364
|
+
else
|
365
|
+
ConfigTable.get_entry!(name)[0] = default
|
366
|
+
end
|
367
|
+
end
|
368
|
+
|
369
|
+
def remove_config(name)
|
370
|
+
ent = ConfigTable.get_entry(name)
|
371
|
+
ConfigTable.remove_entry name
|
372
|
+
ent
|
373
|
+
end
|
374
|
+
|
375
|
+
end
|
376
|
+
|
377
|
+
#
|
378
|
+
# File Operations
|
379
|
+
#
|
380
|
+
|
381
|
+
module FileOperations
|
382
|
+
|
383
|
+
def mkdir_p(dirname, prefix = nil)
|
384
|
+
dirname = prefix + dirname if prefix
|
385
|
+
$stderr.puts "mkdir -p #{dirname}" if verbose?
|
386
|
+
return if no_harm?
|
387
|
+
|
388
|
+
# does not check '/'... it's too abnormal case
|
389
|
+
dirs = dirname.split(%r<(?=/)>)
|
390
|
+
if /\A[a-z]:\z/i =~ dirs[0]
|
391
|
+
disk = dirs.shift
|
392
|
+
dirs[0] = disk + dirs[0]
|
393
|
+
end
|
394
|
+
dirs.each_index do |idx|
|
395
|
+
path = dirs[0..idx].join('')
|
396
|
+
Dir.mkdir path unless File.dir?(path)
|
397
|
+
end
|
398
|
+
end
|
399
|
+
|
400
|
+
def rm_f(fname)
|
401
|
+
$stderr.puts "rm -f #{fname}" if verbose?
|
402
|
+
return if no_harm?
|
403
|
+
|
404
|
+
if File.exist?(fname) or File.symlink?(fname)
|
405
|
+
File.chmod 0777, fname
|
406
|
+
File.unlink fname
|
407
|
+
end
|
408
|
+
end
|
409
|
+
|
410
|
+
def rm_rf(dn)
|
411
|
+
$stderr.puts "rm -rf #{dn}" if verbose?
|
412
|
+
return if no_harm?
|
413
|
+
|
414
|
+
Dir.chdir dn
|
415
|
+
Dir.foreach('.') do |fn|
|
416
|
+
next if fn == '.'
|
417
|
+
next if fn == '..'
|
418
|
+
if File.dir?(fn)
|
419
|
+
verbose_off {
|
420
|
+
rm_rf fn
|
421
|
+
}
|
422
|
+
else
|
423
|
+
verbose_off {
|
424
|
+
rm_f fn
|
425
|
+
}
|
426
|
+
end
|
427
|
+
end
|
428
|
+
Dir.chdir '..'
|
429
|
+
Dir.rmdir dn
|
430
|
+
end
|
431
|
+
|
432
|
+
def move_file(src, dest)
|
433
|
+
File.unlink dest if File.exist?(dest)
|
434
|
+
begin
|
435
|
+
File.rename src, dest
|
436
|
+
rescue
|
437
|
+
File.open(dest, 'wb') {|f| f.write File.binread(src) }
|
438
|
+
File.chmod File.stat(src).mode, dest
|
439
|
+
File.unlink src
|
440
|
+
end
|
441
|
+
end
|
442
|
+
|
443
|
+
def install(from, dest, mode, prefix = nil)
|
444
|
+
$stderr.puts "install #{from} #{dest}" if verbose?
|
445
|
+
return if no_harm?
|
446
|
+
|
447
|
+
realdest = prefix + dest if prefix
|
448
|
+
realdest = File.join(realdest, File.basename(from)) if File.dir?(realdest)
|
449
|
+
str = File.binread(from)
|
450
|
+
if diff?(str, realdest)
|
451
|
+
verbose_off {
|
452
|
+
rm_f realdest if File.exist?(realdest)
|
453
|
+
}
|
454
|
+
File.open(realdest, 'wb') {|f|
|
455
|
+
f.write str
|
456
|
+
}
|
457
|
+
File.chmod mode, realdest
|
458
|
+
|
459
|
+
File.open("#{objdir_root()}/InstalledFiles", 'a') {|f|
|
460
|
+
if prefix
|
461
|
+
f.puts realdest.sub(prefix, '')
|
462
|
+
else
|
463
|
+
f.puts realdest
|
464
|
+
end
|
465
|
+
}
|
466
|
+
end
|
467
|
+
end
|
468
|
+
|
469
|
+
def diff?(new_content, path)
|
470
|
+
return true unless File.exist?(path)
|
471
|
+
new_content != File.binread(path)
|
472
|
+
end
|
473
|
+
|
474
|
+
def command(str)
|
475
|
+
$stderr.puts str if verbose?
|
476
|
+
system str or raise RuntimeError, "'system #{str}' failed"
|
477
|
+
end
|
478
|
+
|
479
|
+
def ruby(str)
|
480
|
+
command config('ruby-prog') + ' ' + str
|
481
|
+
end
|
482
|
+
|
483
|
+
def make(task = '')
|
484
|
+
command config('make-prog') + ' ' + task
|
485
|
+
end
|
486
|
+
|
487
|
+
def extdir?(dir)
|
488
|
+
File.exist?(dir + '/MANIFEST')
|
489
|
+
end
|
490
|
+
|
491
|
+
def all_files_in(dirname)
|
492
|
+
Dir.open(dirname) {|d|
|
493
|
+
return d.select {|ent| File.file?("#{dirname}/#{ent}") }
|
494
|
+
}
|
495
|
+
end
|
496
|
+
|
497
|
+
REJECT_DIRS = %w(
|
498
|
+
CVS SCCS RCS CVS.adm
|
499
|
+
)
|
500
|
+
|
501
|
+
def all_dirs_in(dirname)
|
502
|
+
Dir.open(dirname) {|d|
|
503
|
+
return d.select {|n| File.dir?("#{dirname}/#{n}") } - %w(. ..) - REJECT_DIRS
|
504
|
+
}
|
505
|
+
end
|
506
|
+
|
507
|
+
end
|
508
|
+
|
509
|
+
#
|
510
|
+
# Main Installer
|
511
|
+
#
|
512
|
+
|
513
|
+
class InstallError < StandardError; end
|
514
|
+
|
515
|
+
|
516
|
+
module HookUtils
|
517
|
+
|
518
|
+
def run_hook(name)
|
519
|
+
try_run_hook "#{curr_srcdir()}/#{name}" or
|
520
|
+
try_run_hook "#{curr_srcdir()}/#{name}.rb"
|
521
|
+
end
|
522
|
+
|
523
|
+
def try_run_hook(fname)
|
524
|
+
return false unless File.file?(fname)
|
525
|
+
begin
|
526
|
+
instance_eval File.read(fname), fname, 1
|
527
|
+
rescue
|
528
|
+
raise InstallError, "hook #{fname} failed:\n" + $!.message
|
529
|
+
end
|
530
|
+
true
|
531
|
+
end
|
532
|
+
|
533
|
+
end
|
534
|
+
|
535
|
+
|
536
|
+
module HookScriptAPI
|
537
|
+
|
538
|
+
def get_config(key)
|
539
|
+
@config[key]
|
540
|
+
end
|
541
|
+
|
542
|
+
alias config get_config
|
543
|
+
|
544
|
+
def set_config(key, val)
|
545
|
+
@config[key] = val
|
546
|
+
end
|
547
|
+
|
548
|
+
#
|
549
|
+
# srcdir/objdir (works only in the package directory)
|
550
|
+
#
|
551
|
+
|
552
|
+
#abstract srcdir_root
|
553
|
+
#abstract objdir_root
|
554
|
+
#abstract relpath
|
555
|
+
|
556
|
+
def curr_srcdir
|
557
|
+
"#{srcdir_root()}/#{relpath()}"
|
558
|
+
end
|
559
|
+
|
560
|
+
def curr_objdir
|
561
|
+
"#{objdir_root()}/#{relpath()}"
|
562
|
+
end
|
563
|
+
|
564
|
+
def srcfile(path)
|
565
|
+
"#{curr_srcdir()}/#{path}"
|
566
|
+
end
|
567
|
+
|
568
|
+
def srcexist?(path)
|
569
|
+
File.exist?(srcfile(path))
|
570
|
+
end
|
571
|
+
|
572
|
+
def srcdirectory?(path)
|
573
|
+
File.dir?(srcfile(path))
|
574
|
+
end
|
575
|
+
|
576
|
+
def srcfile?(path)
|
577
|
+
File.file? srcfile(path)
|
578
|
+
end
|
579
|
+
|
580
|
+
def srcentries(path = '.')
|
581
|
+
Dir.open("#{curr_srcdir()}/#{path}") {|d|
|
582
|
+
return d.to_a - %w(. ..)
|
583
|
+
}
|
584
|
+
end
|
585
|
+
|
586
|
+
def srcfiles(path = '.')
|
587
|
+
srcentries(path).select {|fname|
|
588
|
+
File.file?(File.join(curr_srcdir(), path, fname))
|
589
|
+
}
|
590
|
+
end
|
591
|
+
|
592
|
+
def srcdirectories(path = '.')
|
593
|
+
srcentries(path).select {|fname|
|
594
|
+
File.dir?(File.join(curr_srcdir(), path, fname))
|
595
|
+
}
|
596
|
+
end
|
597
|
+
|
598
|
+
end
|
599
|
+
|
600
|
+
|
601
|
+
class ToplevelInstaller
|
602
|
+
|
603
|
+
Version = '3.2.4'
|
604
|
+
Copyright = 'Copyright (c) 2000-2004 Minero Aoki'
|
605
|
+
|
606
|
+
TASKS = [
|
607
|
+
[ 'config', 'saves your configurations' ],
|
608
|
+
[ 'show', 'shows current configuration' ],
|
609
|
+
[ 'setup', 'compiles ruby extentions and others' ],
|
610
|
+
[ 'install', 'installs files' ],
|
611
|
+
[ 'clean', "does `make clean' for each extention" ],
|
612
|
+
[ 'distclean',"does `make distclean' for each extention" ]
|
613
|
+
]
|
614
|
+
|
615
|
+
def ToplevelInstaller.invoke
|
616
|
+
instance().invoke
|
617
|
+
end
|
618
|
+
|
619
|
+
@singleton = nil
|
620
|
+
|
621
|
+
def ToplevelInstaller.instance
|
622
|
+
@singleton ||= new(File.dirname($0))
|
623
|
+
@singleton
|
624
|
+
end
|
625
|
+
|
626
|
+
include MetaConfigAPI
|
627
|
+
|
628
|
+
def initialize(ardir_root)
|
629
|
+
@config = nil
|
630
|
+
@options = { 'verbose' => true }
|
631
|
+
@ardir = File.expand_path(ardir_root)
|
632
|
+
end
|
633
|
+
|
634
|
+
def inspect
|
635
|
+
"#<#{self.class} #{__id__()}>"
|
636
|
+
end
|
637
|
+
|
638
|
+
def invoke
|
639
|
+
run_metaconfigs
|
640
|
+
task = parsearg_global()
|
641
|
+
@config = load_config(task)
|
642
|
+
__send__ "parsearg_#{task}"
|
643
|
+
init_installers
|
644
|
+
__send__ "exec_#{task}"
|
645
|
+
end
|
646
|
+
|
647
|
+
def run_metaconfigs
|
648
|
+
eval_file_ifexist "#{@ardir}/metaconfig"
|
649
|
+
end
|
650
|
+
|
651
|
+
def load_config(task)
|
652
|
+
case task
|
653
|
+
when 'config'
|
654
|
+
ConfigTable.new
|
655
|
+
when 'clean', 'distclean'
|
656
|
+
if File.exist?('config.save')
|
657
|
+
then ConfigTable.load
|
658
|
+
else ConfigTable.new
|
659
|
+
end
|
660
|
+
else
|
661
|
+
ConfigTable.load
|
662
|
+
end
|
663
|
+
end
|
664
|
+
|
665
|
+
def init_installers
|
666
|
+
@installer = Installer.new(@config, @options, @ardir, File.expand_path('.'))
|
667
|
+
end
|
668
|
+
|
669
|
+
#
|
670
|
+
# Hook Script API bases
|
671
|
+
#
|
672
|
+
|
673
|
+
def srcdir_root
|
674
|
+
@ardir
|
675
|
+
end
|
676
|
+
|
677
|
+
def objdir_root
|
678
|
+
'.'
|
679
|
+
end
|
680
|
+
|
681
|
+
def relpath
|
682
|
+
'.'
|
683
|
+
end
|
684
|
+
|
685
|
+
#
|
686
|
+
# Option Parsing
|
687
|
+
#
|
688
|
+
|
689
|
+
def parsearg_global
|
690
|
+
valid_task = /\A(?:#{TASKS.map {|task,desc| task }.join '|'})\z/
|
691
|
+
|
692
|
+
while arg = ARGV.shift
|
693
|
+
case arg
|
694
|
+
when /\A\w+\z/
|
695
|
+
raise InstallError, "invalid task: #{arg}" unless valid_task =~ arg
|
696
|
+
return arg
|
697
|
+
|
698
|
+
when '-q', '--quiet'
|
699
|
+
@options['verbose'] = false
|
700
|
+
|
701
|
+
when '--verbose'
|
702
|
+
@options['verbose'] = true
|
703
|
+
|
704
|
+
when '-h', '--help'
|
705
|
+
print_usage $stdout
|
706
|
+
exit 0
|
707
|
+
|
708
|
+
when '-v', '--version'
|
709
|
+
puts "#{File.basename($0)} version #{Version}"
|
710
|
+
exit 0
|
711
|
+
|
712
|
+
when '--copyright'
|
713
|
+
puts Copyright
|
714
|
+
exit 0
|
715
|
+
|
716
|
+
else
|
717
|
+
raise InstallError, "unknown global option '#{arg}'"
|
718
|
+
end
|
719
|
+
end
|
720
|
+
|
721
|
+
raise InstallError, <<EOS
|
722
|
+
No task or global option given.
|
723
|
+
Typical installation procedure is:
|
724
|
+
$ ruby #{File.basename($0)} config
|
725
|
+
$ ruby #{File.basename($0)} setup
|
726
|
+
# ruby #{File.basename($0)} install (may require root privilege)
|
727
|
+
EOS
|
728
|
+
end
|
729
|
+
|
730
|
+
|
731
|
+
def parsearg_no_options
|
732
|
+
raise InstallError, "#{task}: unknown options: #{ARGV.join ' '}"\
|
733
|
+
unless ARGV.empty?
|
734
|
+
end
|
735
|
+
|
736
|
+
alias parsearg_show parsearg_no_options
|
737
|
+
alias parsearg_setup parsearg_no_options
|
738
|
+
alias parsearg_clean parsearg_no_options
|
739
|
+
alias parsearg_distclean parsearg_no_options
|
740
|
+
|
741
|
+
def parsearg_config
|
742
|
+
re = /\A--(#{ConfigTable.keys.join '|'})(?:=(.*))?\z/
|
743
|
+
@options['config-opt'] = []
|
744
|
+
|
745
|
+
while i = ARGV.shift
|
746
|
+
if /\A--?\z/ =~ i
|
747
|
+
@options['config-opt'] = ARGV.dup
|
748
|
+
break
|
749
|
+
end
|
750
|
+
m = re.match(i) or raise InstallError, "config: unknown option #{i}"
|
751
|
+
name, value = m.to_a[1,2]
|
752
|
+
if value
|
753
|
+
if ConfigTable.bool_config?(name)
|
754
|
+
raise InstallError, "config: --#{name} allows only yes/no for argument"\
|
755
|
+
unless /\A(y(es)?|n(o)?|t(rue)?|f(alse))\z/i =~ value
|
756
|
+
value = (/\Ay(es)?|\At(rue)/i =~ value) ? 'yes' : 'no'
|
757
|
+
end
|
758
|
+
else
|
759
|
+
raise InstallError, "config: --#{name} requires argument"\
|
760
|
+
unless ConfigTable.bool_config?(name)
|
761
|
+
value = 'yes'
|
762
|
+
end
|
763
|
+
@config[name] = value
|
764
|
+
end
|
765
|
+
end
|
766
|
+
|
767
|
+
def parsearg_install
|
768
|
+
@options['no-harm'] = false
|
769
|
+
@options['install-prefix'] = ''
|
770
|
+
while a = ARGV.shift
|
771
|
+
case a
|
772
|
+
when /\A--no-harm\z/
|
773
|
+
@options['no-harm'] = true
|
774
|
+
when /\A--prefix=(.*)\z/
|
775
|
+
path = $1
|
776
|
+
path = File.expand_path(path) unless path[0,1] == '/'
|
777
|
+
@options['install-prefix'] = path
|
778
|
+
else
|
779
|
+
raise InstallError, "install: unknown option #{a}"
|
780
|
+
end
|
781
|
+
end
|
782
|
+
end
|
783
|
+
|
784
|
+
def print_usage(out)
|
785
|
+
out.puts 'Typical Installation Procedure:'
|
786
|
+
out.puts " $ ruby #{File.basename $0} config"
|
787
|
+
out.puts " $ ruby #{File.basename $0} setup"
|
788
|
+
out.puts " # ruby #{File.basename $0} install (may require root privilege)"
|
789
|
+
out.puts
|
790
|
+
out.puts 'Detailed Usage:'
|
791
|
+
out.puts " ruby #{File.basename $0} <global option>"
|
792
|
+
out.puts " ruby #{File.basename $0} [<global options>] <task> [<task options>]"
|
793
|
+
|
794
|
+
fmt = " %-20s %s\n"
|
795
|
+
out.puts
|
796
|
+
out.puts 'Global options:'
|
797
|
+
out.printf fmt, '-q,--quiet', 'suppress message outputs'
|
798
|
+
out.printf fmt, ' --verbose', 'output messages verbosely'
|
799
|
+
out.printf fmt, '-h,--help', 'print this message'
|
800
|
+
out.printf fmt, '-v,--version', 'print version and quit'
|
801
|
+
out.printf fmt, ' --copyright', 'print copyright and quit'
|
802
|
+
|
803
|
+
out.puts
|
804
|
+
out.puts 'Tasks:'
|
805
|
+
TASKS.each do |name, desc|
|
806
|
+
out.printf " %-10s %s\n", name, desc
|
807
|
+
end
|
808
|
+
|
809
|
+
out.puts
|
810
|
+
out.puts 'Options for config:'
|
811
|
+
ConfigTable.each_definition do |name, (default, arg, desc, default2)|
|
812
|
+
out.printf " %-20s %s [%s]\n",
|
813
|
+
'--'+ name + (ConfigTable.bool_config?(name) ? '' : '='+arg),
|
814
|
+
desc,
|
815
|
+
default2 || default
|
816
|
+
end
|
817
|
+
out.printf " %-20s %s [%s]\n",
|
818
|
+
'--rbconfig=path', 'your rbconfig.rb to load', "running ruby's"
|
819
|
+
|
820
|
+
out.puts
|
821
|
+
out.puts 'Options for install:'
|
822
|
+
out.printf " %-20s %s [%s]\n",
|
823
|
+
'--no-harm', 'only display what to do if given', 'off'
|
824
|
+
out.printf " %-20s %s [%s]\n",
|
825
|
+
'--prefix', 'install path prefix', '$prefix'
|
826
|
+
|
827
|
+
out.puts
|
828
|
+
end
|
829
|
+
|
830
|
+
#
|
831
|
+
# Task Handlers
|
832
|
+
#
|
833
|
+
|
834
|
+
def exec_config
|
835
|
+
@installer.exec_config
|
836
|
+
@config.save # must be final
|
837
|
+
end
|
838
|
+
|
839
|
+
def exec_setup
|
840
|
+
@installer.exec_setup
|
841
|
+
end
|
842
|
+
|
843
|
+
def exec_install
|
844
|
+
@installer.exec_install
|
845
|
+
end
|
846
|
+
|
847
|
+
def exec_show
|
848
|
+
ConfigTable.each_name do |k|
|
849
|
+
v = @config.get_raw(k)
|
850
|
+
if not v or v.empty?
|
851
|
+
v = '(not specified)'
|
852
|
+
end
|
853
|
+
printf "%-10s %s\n", k, v
|
854
|
+
end
|
855
|
+
end
|
856
|
+
|
857
|
+
def exec_clean
|
858
|
+
@installer.exec_clean
|
859
|
+
end
|
860
|
+
|
861
|
+
def exec_distclean
|
862
|
+
@installer.exec_distclean
|
863
|
+
end
|
864
|
+
|
865
|
+
end
|
866
|
+
|
867
|
+
|
868
|
+
class ToplevelInstallerMulti < ToplevelInstaller
|
869
|
+
|
870
|
+
include HookUtils
|
871
|
+
include HookScriptAPI
|
872
|
+
include FileOperations
|
873
|
+
|
874
|
+
def initialize(ardir)
|
875
|
+
super
|
876
|
+
@packages = all_dirs_in("#{@ardir}/packages")
|
877
|
+
raise 'no package exists' if @packages.empty?
|
878
|
+
end
|
879
|
+
|
880
|
+
def run_metaconfigs
|
881
|
+
eval_file_ifexist "#{@ardir}/metaconfig"
|
882
|
+
@packages.each do |name|
|
883
|
+
eval_file_ifexist "#{@ardir}/packages/#{name}/metaconfig"
|
884
|
+
end
|
885
|
+
end
|
886
|
+
|
887
|
+
def init_installers
|
888
|
+
@installers = {}
|
889
|
+
@packages.each do |pack|
|
890
|
+
@installers[pack] = Installer.new(@config, @options,
|
891
|
+
"#{@ardir}/packages/#{pack}",
|
892
|
+
"packages/#{pack}")
|
893
|
+
end
|
894
|
+
|
895
|
+
with = extract_selection(config('with'))
|
896
|
+
without = extract_selection(config('without'))
|
897
|
+
@selected = @installers.keys.select {|name|
|
898
|
+
(with.empty? or with.include?(name)) \
|
899
|
+
and not without.include?(name)
|
900
|
+
}
|
901
|
+
end
|
902
|
+
|
903
|
+
def extract_selection(list)
|
904
|
+
a = list.split(/,/)
|
905
|
+
a.each do |name|
|
906
|
+
raise InstallError, "no such package: #{name}" \
|
907
|
+
unless @installers.key?(name)
|
908
|
+
end
|
909
|
+
a
|
910
|
+
end
|
911
|
+
|
912
|
+
def print_usage(f)
|
913
|
+
super
|
914
|
+
f.puts 'Inluded packages:'
|
915
|
+
f.puts ' ' + @packages.sort.join(' ')
|
916
|
+
f.puts
|
917
|
+
end
|
918
|
+
|
919
|
+
#
|
920
|
+
# multi-package metaconfig API
|
921
|
+
#
|
922
|
+
|
923
|
+
attr_reader :packages
|
924
|
+
|
925
|
+
def declare_packages(list)
|
926
|
+
raise 'package list is empty' if list.empty?
|
927
|
+
list.each do |name|
|
928
|
+
raise "directory packages/#{name} does not exist"\
|
929
|
+
unless File.dir?("#{@ardir}/packages/#{name}")
|
930
|
+
end
|
931
|
+
@packages = list
|
932
|
+
end
|
933
|
+
|
934
|
+
#
|
935
|
+
# Task Handlers
|
936
|
+
#
|
937
|
+
|
938
|
+
def exec_config
|
939
|
+
run_hook 'pre-config'
|
940
|
+
each_selected_installers {|inst| inst.exec_config }
|
941
|
+
run_hook 'post-config'
|
942
|
+
@config.save # must be final
|
943
|
+
end
|
944
|
+
|
945
|
+
def exec_setup
|
946
|
+
run_hook 'pre-setup'
|
947
|
+
each_selected_installers {|inst| inst.exec_setup }
|
948
|
+
run_hook 'post-setup'
|
949
|
+
end
|
950
|
+
|
951
|
+
def exec_install
|
952
|
+
run_hook 'pre-install'
|
953
|
+
each_selected_installers {|inst| inst.exec_install }
|
954
|
+
run_hook 'post-install'
|
955
|
+
end
|
956
|
+
|
957
|
+
def exec_clean
|
958
|
+
rm_f 'config.save'
|
959
|
+
run_hook 'pre-clean'
|
960
|
+
each_selected_installers {|inst| inst.exec_clean }
|
961
|
+
run_hook 'post-clean'
|
962
|
+
end
|
963
|
+
|
964
|
+
def exec_distclean
|
965
|
+
rm_f 'config.save'
|
966
|
+
run_hook 'pre-distclean'
|
967
|
+
each_selected_installers {|inst| inst.exec_distclean }
|
968
|
+
run_hook 'post-distclean'
|
969
|
+
end
|
970
|
+
|
971
|
+
#
|
972
|
+
# lib
|
973
|
+
#
|
974
|
+
|
975
|
+
def each_selected_installers
|
976
|
+
Dir.mkdir 'packages' unless File.dir?('packages')
|
977
|
+
@selected.each do |pack|
|
978
|
+
$stderr.puts "Processing the package `#{pack}' ..." if @options['verbose']
|
979
|
+
Dir.mkdir "packages/#{pack}" unless File.dir?("packages/#{pack}")
|
980
|
+
Dir.chdir "packages/#{pack}"
|
981
|
+
yield @installers[pack]
|
982
|
+
Dir.chdir '../..'
|
983
|
+
end
|
984
|
+
end
|
985
|
+
|
986
|
+
def verbose?
|
987
|
+
@options['verbose']
|
988
|
+
end
|
989
|
+
|
990
|
+
def no_harm?
|
991
|
+
@options['no-harm']
|
992
|
+
end
|
993
|
+
|
994
|
+
end
|
995
|
+
|
996
|
+
|
997
|
+
class Installer
|
998
|
+
|
999
|
+
FILETYPES = %w( bin lib ext data )
|
1000
|
+
|
1001
|
+
include HookScriptAPI
|
1002
|
+
include HookUtils
|
1003
|
+
include FileOperations
|
1004
|
+
|
1005
|
+
def initialize(config, opt, srcroot, objroot)
|
1006
|
+
@config = config
|
1007
|
+
@options = opt
|
1008
|
+
@srcdir = File.expand_path(srcroot)
|
1009
|
+
@objdir = File.expand_path(objroot)
|
1010
|
+
@currdir = '.'
|
1011
|
+
end
|
1012
|
+
|
1013
|
+
def inspect
|
1014
|
+
"#<#{self.class} #{File.basename(@srcdir)}>"
|
1015
|
+
end
|
1016
|
+
|
1017
|
+
#
|
1018
|
+
# Hook Script API bases
|
1019
|
+
#
|
1020
|
+
|
1021
|
+
def srcdir_root
|
1022
|
+
@srcdir
|
1023
|
+
end
|
1024
|
+
|
1025
|
+
def objdir_root
|
1026
|
+
@objdir
|
1027
|
+
end
|
1028
|
+
|
1029
|
+
def relpath
|
1030
|
+
@currdir
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
#
|
1034
|
+
# configs/options
|
1035
|
+
#
|
1036
|
+
|
1037
|
+
def no_harm?
|
1038
|
+
@options['no-harm']
|
1039
|
+
end
|
1040
|
+
|
1041
|
+
def verbose?
|
1042
|
+
@options['verbose']
|
1043
|
+
end
|
1044
|
+
|
1045
|
+
def verbose_off
|
1046
|
+
begin
|
1047
|
+
save, @options['verbose'] = @options['verbose'], false
|
1048
|
+
yield
|
1049
|
+
ensure
|
1050
|
+
@options['verbose'] = save
|
1051
|
+
end
|
1052
|
+
end
|
1053
|
+
|
1054
|
+
#
|
1055
|
+
# TASK config
|
1056
|
+
#
|
1057
|
+
|
1058
|
+
def exec_config
|
1059
|
+
exec_task_traverse 'config'
|
1060
|
+
end
|
1061
|
+
|
1062
|
+
def config_dir_bin(rel)
|
1063
|
+
end
|
1064
|
+
|
1065
|
+
def config_dir_lib(rel)
|
1066
|
+
end
|
1067
|
+
|
1068
|
+
def config_dir_ext(rel)
|
1069
|
+
extconf if extdir?(curr_srcdir())
|
1070
|
+
end
|
1071
|
+
|
1072
|
+
def extconf
|
1073
|
+
opt = @options['config-opt'].join(' ')
|
1074
|
+
command "#{config('ruby-prog')} #{curr_srcdir()}/extconf.rb #{opt}"
|
1075
|
+
end
|
1076
|
+
|
1077
|
+
def config_dir_data(rel)
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
#
|
1081
|
+
# TASK setup
|
1082
|
+
#
|
1083
|
+
|
1084
|
+
def exec_setup
|
1085
|
+
exec_task_traverse 'setup'
|
1086
|
+
end
|
1087
|
+
|
1088
|
+
def setup_dir_bin(rel)
|
1089
|
+
all_files_in(curr_srcdir()).each do |fname|
|
1090
|
+
adjust_shebang "#{curr_srcdir()}/#{fname}"
|
1091
|
+
end
|
1092
|
+
end
|
1093
|
+
|
1094
|
+
# modify: #!/usr/bin/ruby
|
1095
|
+
# modify: #! /usr/bin/ruby
|
1096
|
+
# modify: #!ruby
|
1097
|
+
# not modify: #!/usr/bin/env ruby
|
1098
|
+
SHEBANG_RE = /\A\#!\s*\S*ruby\S*/
|
1099
|
+
|
1100
|
+
def adjust_shebang(path)
|
1101
|
+
return if no_harm?
|
1102
|
+
|
1103
|
+
tmpfile = File.basename(path) + '.tmp'
|
1104
|
+
begin
|
1105
|
+
File.open(path, 'rb') {|r|
|
1106
|
+
File.open(tmpfile, 'wb') {|w|
|
1107
|
+
first = r.gets
|
1108
|
+
return unless SHEBANG_RE =~ first
|
1109
|
+
|
1110
|
+
$stderr.puts "adjusting shebang: #{File.basename path}" if verbose?
|
1111
|
+
w.print first.sub(SHEBANG_RE, '#!' + config('ruby-path'))
|
1112
|
+
w.write r.read
|
1113
|
+
}
|
1114
|
+
}
|
1115
|
+
move_file tmpfile, File.basename(path)
|
1116
|
+
ensure
|
1117
|
+
File.unlink tmpfile if File.exist?(tmpfile)
|
1118
|
+
end
|
1119
|
+
end
|
1120
|
+
|
1121
|
+
def setup_dir_lib(rel)
|
1122
|
+
end
|
1123
|
+
|
1124
|
+
def setup_dir_ext(rel)
|
1125
|
+
make if extdir?(curr_srcdir())
|
1126
|
+
end
|
1127
|
+
|
1128
|
+
def setup_dir_data(rel)
|
1129
|
+
end
|
1130
|
+
|
1131
|
+
#
|
1132
|
+
# TASK install
|
1133
|
+
#
|
1134
|
+
|
1135
|
+
def exec_install
|
1136
|
+
exec_task_traverse 'install'
|
1137
|
+
end
|
1138
|
+
|
1139
|
+
def install_dir_bin(rel)
|
1140
|
+
install_files collect_filenames_auto(), "#{config('bin-dir')}/#{rel}", 0755
|
1141
|
+
end
|
1142
|
+
|
1143
|
+
def install_dir_lib(rel)
|
1144
|
+
install_files ruby_scripts(), "#{config('rb-dir')}/#{rel}", 0644
|
1145
|
+
end
|
1146
|
+
|
1147
|
+
def install_dir_ext(rel)
|
1148
|
+
return unless extdir?(curr_srcdir())
|
1149
|
+
install_files ruby_extentions('.'),
|
1150
|
+
"#{config('so-dir')}/#{File.dirname(rel)}",
|
1151
|
+
0555
|
1152
|
+
end
|
1153
|
+
|
1154
|
+
def install_dir_data(rel)
|
1155
|
+
install_files collect_filenames_auto(), "#{config('data-dir')}/#{rel}", 0644
|
1156
|
+
end
|
1157
|
+
|
1158
|
+
def install_files(list, dest, mode)
|
1159
|
+
mkdir_p dest, @options['install-prefix']
|
1160
|
+
list.each do |fname|
|
1161
|
+
install fname, dest, mode, @options['install-prefix']
|
1162
|
+
end
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
def ruby_scripts
|
1166
|
+
collect_filenames_auto().select {|n| /\.rb\z/ =~ n || "module.yml" == n }
|
1167
|
+
end
|
1168
|
+
|
1169
|
+
# picked up many entries from cvs-1.11.1/src/ignore.c
|
1170
|
+
reject_patterns = %w(
|
1171
|
+
core RCSLOG tags TAGS .make.state
|
1172
|
+
.nse_depinfo #* .#* cvslog.* ,* .del-* *.olb
|
1173
|
+
*~ *.old *.bak *.BAK *.orig *.rej _$* *$
|
1174
|
+
|
1175
|
+
*.org *.in .*
|
1176
|
+
)
|
1177
|
+
mapping = {
|
1178
|
+
'.' => '\.',
|
1179
|
+
'$' => '\$',
|
1180
|
+
'#' => '\#',
|
1181
|
+
'*' => '.*'
|
1182
|
+
}
|
1183
|
+
REJECT_PATTERNS = Regexp.new('\A(?:' +
|
1184
|
+
reject_patterns.map {|pat|
|
1185
|
+
pat.gsub(/[\.\$\#\*]/) {|ch| mapping[ch] }
|
1186
|
+
}.join('|') +
|
1187
|
+
')\z')
|
1188
|
+
|
1189
|
+
def collect_filenames_auto
|
1190
|
+
mapdir((existfiles() - hookfiles()).reject {|fname|
|
1191
|
+
REJECT_PATTERNS =~ fname
|
1192
|
+
})
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
def existfiles
|
1196
|
+
all_files_in(curr_srcdir()) | all_files_in('.')
|
1197
|
+
end
|
1198
|
+
|
1199
|
+
def hookfiles
|
1200
|
+
%w( pre-%s post-%s pre-%s.rb post-%s.rb ).map {|fmt|
|
1201
|
+
%w( config setup install clean ).map {|t| sprintf(fmt, t) }
|
1202
|
+
}.flatten
|
1203
|
+
end
|
1204
|
+
|
1205
|
+
def mapdir(filelist)
|
1206
|
+
filelist.map {|fname|
|
1207
|
+
if File.exist?(fname) # objdir
|
1208
|
+
fname
|
1209
|
+
else # srcdir
|
1210
|
+
File.join(curr_srcdir(), fname)
|
1211
|
+
end
|
1212
|
+
}
|
1213
|
+
end
|
1214
|
+
|
1215
|
+
def ruby_extentions(dir)
|
1216
|
+
_ruby_extentions(dir) or
|
1217
|
+
raise InstallError, "no ruby extention exists: 'ruby #{$0} setup' first"
|
1218
|
+
end
|
1219
|
+
|
1220
|
+
DLEXT = /\.#{ ::Config::CONFIG['DLEXT'] }\z/
|
1221
|
+
|
1222
|
+
def _ruby_extentions(dir)
|
1223
|
+
Dir.open(dir) {|d|
|
1224
|
+
return d.select {|fname| DLEXT =~ fname }
|
1225
|
+
}
|
1226
|
+
end
|
1227
|
+
|
1228
|
+
#
|
1229
|
+
# TASK clean
|
1230
|
+
#
|
1231
|
+
|
1232
|
+
def exec_clean
|
1233
|
+
exec_task_traverse 'clean'
|
1234
|
+
rm_f 'config.save'
|
1235
|
+
rm_f 'InstalledFiles'
|
1236
|
+
end
|
1237
|
+
|
1238
|
+
def clean_dir_bin(rel)
|
1239
|
+
end
|
1240
|
+
|
1241
|
+
def clean_dir_lib(rel)
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
def clean_dir_ext(rel)
|
1245
|
+
return unless extdir?(curr_srcdir())
|
1246
|
+
make 'clean' if File.file?('Makefile')
|
1247
|
+
end
|
1248
|
+
|
1249
|
+
def clean_dir_data(rel)
|
1250
|
+
end
|
1251
|
+
|
1252
|
+
#
|
1253
|
+
# TASK distclean
|
1254
|
+
#
|
1255
|
+
|
1256
|
+
def exec_distclean
|
1257
|
+
exec_task_traverse 'distclean'
|
1258
|
+
rm_f 'config.save'
|
1259
|
+
rm_f 'InstalledFiles'
|
1260
|
+
end
|
1261
|
+
|
1262
|
+
def distclean_dir_bin(rel)
|
1263
|
+
end
|
1264
|
+
|
1265
|
+
def distclean_dir_lib(rel)
|
1266
|
+
end
|
1267
|
+
|
1268
|
+
def distclean_dir_ext(rel)
|
1269
|
+
return unless extdir?(curr_srcdir())
|
1270
|
+
make 'distclean' if File.file?('Makefile')
|
1271
|
+
end
|
1272
|
+
|
1273
|
+
#
|
1274
|
+
# lib
|
1275
|
+
#
|
1276
|
+
|
1277
|
+
def exec_task_traverse(task)
|
1278
|
+
run_hook "pre-#{task}"
|
1279
|
+
FILETYPES.each do |type|
|
1280
|
+
if config('without-ext') == 'yes' and type == 'ext'
|
1281
|
+
$stderr.puts 'skipping ext/* by user option' if verbose?
|
1282
|
+
next
|
1283
|
+
end
|
1284
|
+
traverse task, type, "#{task}_dir_#{type}"
|
1285
|
+
end
|
1286
|
+
run_hook "post-#{task}"
|
1287
|
+
end
|
1288
|
+
|
1289
|
+
def traverse(task, rel, mid)
|
1290
|
+
dive_into(rel) {
|
1291
|
+
run_hook "pre-#{task}"
|
1292
|
+
__send__ mid, rel.sub(%r[\A.*?(?:/|\z)], '')
|
1293
|
+
all_dirs_in(curr_srcdir()).each do |d|
|
1294
|
+
traverse task, "#{rel}/#{d}", mid
|
1295
|
+
end
|
1296
|
+
run_hook "post-#{task}"
|
1297
|
+
}
|
1298
|
+
end
|
1299
|
+
|
1300
|
+
def dive_into(rel)
|
1301
|
+
return unless File.dir?("#{@srcdir}/#{rel}")
|
1302
|
+
|
1303
|
+
dir = File.basename(rel)
|
1304
|
+
Dir.mkdir dir unless File.dir?(dir)
|
1305
|
+
prevdir = Dir.pwd
|
1306
|
+
Dir.chdir dir
|
1307
|
+
$stderr.puts '---> ' + rel if verbose?
|
1308
|
+
@currdir = rel
|
1309
|
+
yield
|
1310
|
+
Dir.chdir prevdir
|
1311
|
+
$stderr.puts '<--- ' + rel if verbose?
|
1312
|
+
@currdir = File.dirname(rel)
|
1313
|
+
end
|
1314
|
+
|
1315
|
+
end
|
1316
|
+
|
1317
|
+
|
1318
|
+
if $0 == __FILE__
|
1319
|
+
begin
|
1320
|
+
if multipackage_install?
|
1321
|
+
ToplevelInstallerMulti.invoke
|
1322
|
+
else
|
1323
|
+
ToplevelInstaller.invoke
|
1324
|
+
end
|
1325
|
+
rescue
|
1326
|
+
raise if $DEBUG
|
1327
|
+
$stderr.puts $!.message
|
1328
|
+
$stderr.puts "Try 'ruby #{$0} --help' for detailed usage."
|
1329
|
+
exit 1
|
1330
|
+
end
|
1331
|
+
end
|