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
data/lib/typo_plugins.rb
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
module TypoPlugins
|
2
|
+
def plugin_public_action(action)
|
3
|
+
@@plugin_public_actions ||= []
|
4
|
+
@@plugin_public_actions.push action
|
5
|
+
end
|
6
|
+
|
7
|
+
def plugin_public_actions
|
8
|
+
@@plugin_public_actions
|
9
|
+
end
|
10
|
+
|
11
|
+
def plugin_description(description)
|
12
|
+
eval "def self.description; '#{description}'; end"
|
13
|
+
|
14
|
+
end
|
15
|
+
|
16
|
+
def plugin_display_name(name)
|
17
|
+
eval "def self.display_name; '#{name}'; end"
|
18
|
+
end
|
19
|
+
end
|
data/lib/typo_version.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
TYPO_VERSION = '3.99.0'
|
data/lib/xmlrpc_fix.rb
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Work around ecto problem
|
2
|
+
module XMLRPC
|
3
|
+
module Convert
|
4
|
+
def self.dateTime(str)
|
5
|
+
if str =~ /^(-?\d\d\d\d)(\d\d)(\d\d)T(\d\d):(\d\d):(\d\d)Z?$/ then
|
6
|
+
a = [$1, $2, $3, $4, $5, $6].collect{|i| i.to_i}
|
7
|
+
XMLRPC::DateTime.new(*a)
|
8
|
+
else
|
9
|
+
raise "wrong dateTime.iso8601 format"
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
data/public/.htaccess
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
# General Apache options
|
2
|
+
AddHandler fastcgi-script .fcgi
|
3
|
+
AddHandler cgi-script .cgi
|
4
|
+
Options +FollowSymLinks +ExecCGI
|
5
|
+
|
6
|
+
# If you don't want Rails to look in certain directories,
|
7
|
+
# use the following rewrite rules so that Apache won't rewrite certain requests
|
8
|
+
#
|
9
|
+
# Example:
|
10
|
+
# RewriteCond %{REQUEST_URI} ^/notrails.*
|
11
|
+
# RewriteRule .* - [L]
|
12
|
+
|
13
|
+
# Redirect all requests not available on the filesystem to Rails
|
14
|
+
RewriteEngine On
|
15
|
+
|
16
|
+
# If Typo is accessed via an Alias directive, then you MUST also set
|
17
|
+
# the RewriteBase in this htaccess file.
|
18
|
+
#
|
19
|
+
# Example:
|
20
|
+
# Alias /blog /path/to/typo/public
|
21
|
+
# RewriteBase /blog
|
22
|
+
|
23
|
+
RewriteRule ^$ index.html [QSA]
|
24
|
+
RewriteRule ^([^.]+)$ $1.html [QSA]
|
25
|
+
RewriteCond %{REQUEST_FILENAME} !-f
|
26
|
+
RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
|
27
|
+
|
28
|
+
# In case Typo experiences terminal errors
|
29
|
+
# Instead of displaying this message you can supply a file here which will be rendered instead
|
30
|
+
#
|
31
|
+
# Example:
|
32
|
+
# ErrorDocument 500 /500.html
|
33
|
+
|
34
|
+
ErrorDocument 500 "<h2>Application error</h2>Typo failed to start properly"
|
data/public/404.html
ADDED
data/public/500.html
ADDED
@@ -0,0 +1,8 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/html4/loose.dtd">
|
3
|
+
<html>
|
4
|
+
<body>
|
5
|
+
<h1>Application error (Apache)</h1>
|
6
|
+
<p>Change this error message for exceptions thrown outside of an action (like in Dispatcher setups or broken Ruby code) in public/500.html</p>
|
7
|
+
</body>
|
8
|
+
</html>
|
data/public/dispatch.cgi
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require File.dirname(__FILE__) + "/../config/environment" unless defined?(RAILS_ROOT)
|
4
|
+
|
5
|
+
# If you're using RubyGems and mod_ruby, this require should be changed to an absolute path one, like:
|
6
|
+
# "/usr/local/lib/ruby/gems/1.8/gems/rails-0.8.0/lib/dispatcher" -- otherwise performance is severely impaired
|
7
|
+
require "dispatcher"
|
8
|
+
|
9
|
+
ADDITIONAL_LOAD_PATHS.reverse.each { |dir| $:.unshift(dir) if File.directory?(dir) } if defined?(Apache::RubyRun)
|
10
|
+
Dispatcher.dispatch
|
@@ -0,0 +1,24 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#
|
3
|
+
# You may specify the path to the FastCGI crash log (a log of unhandled
|
4
|
+
# exceptions which forced the FastCGI instance to exit, great for debugging)
|
5
|
+
# and the number of requests to process before running garbage collection.
|
6
|
+
#
|
7
|
+
# By default, the FastCGI crash log is RAILS_ROOT/log/fastcgi.crash.log
|
8
|
+
# and the GC period is nil (turned off). A reasonable number of requests
|
9
|
+
# could range from 10-100 depending on the memory footprint of your app.
|
10
|
+
#
|
11
|
+
# Example:
|
12
|
+
# # Default log path, normal GC behavior.
|
13
|
+
# RailsFCGIHandler.process!
|
14
|
+
#
|
15
|
+
# # Default log path, 50 requests between GC.
|
16
|
+
# RailsFCGIHandler.process! nil, 50
|
17
|
+
#
|
18
|
+
# # Custom log path, normal GC behavior.
|
19
|
+
# RailsFCGIHandler.process! '/var/log/myapp_fcgi_crash.log'
|
20
|
+
#
|
21
|
+
require File.dirname(__FILE__) + "/../config/environment"
|
22
|
+
require 'fcgi_handler'
|
23
|
+
|
24
|
+
RailsFCGIHandler.process!
|
data/public/dispatch.rb
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
#!/usr/bin/ruby
|
2
|
+
|
3
|
+
require File.dirname(__FILE__) + "/../config/environment" unless defined?(RAILS_ROOT)
|
4
|
+
|
5
|
+
# If you're using RubyGems and mod_ruby, this require should be changed to an absolute path one, like:
|
6
|
+
# "/usr/local/lib/ruby/gems/1.8/gems/rails-0.8.0/lib/dispatcher" -- otherwise performance is severely impaired
|
7
|
+
require "dispatcher"
|
8
|
+
|
9
|
+
ADDITIONAL_LOAD_PATHS.reverse.each { |dir| $:.unshift(dir) if File.directory?(dir) } if defined?(Apache::RubyRun)
|
10
|
+
Dispatcher.dispatch
|
data/public/favicon.ico
ADDED
File without changes
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,815 @@
|
|
1
|
+
// Copyright (c) 2005 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
2
|
+
// (c) 2005 Ivan Krstic (http://blogs.law.harvard.edu/ivan)
|
3
|
+
// (c) 2005 Jon Tirsen (http://www.tirsen.com)
|
4
|
+
// Contributors:
|
5
|
+
// Richard Livsey
|
6
|
+
// Rahul Bhargava
|
7
|
+
// Rob Wills
|
8
|
+
//
|
9
|
+
// See scriptaculous.js for full license.
|
10
|
+
|
11
|
+
// Autocompleter.Base handles all the autocompletion functionality
|
12
|
+
// that's independent of the data source for autocompletion. This
|
13
|
+
// includes drawing the autocompletion menu, observing keyboard
|
14
|
+
// and mouse events, and similar.
|
15
|
+
//
|
16
|
+
// Specific autocompleters need to provide, at the very least,
|
17
|
+
// a getUpdatedChoices function that will be invoked every time
|
18
|
+
// the text inside the monitored textbox changes. This method
|
19
|
+
// should get the text for which to provide autocompletion by
|
20
|
+
// invoking this.getToken(), NOT by directly accessing
|
21
|
+
// this.element.value. This is to allow incremental tokenized
|
22
|
+
// autocompletion. Specific auto-completion logic (AJAX, etc)
|
23
|
+
// belongs in getUpdatedChoices.
|
24
|
+
//
|
25
|
+
// Tokenized incremental autocompletion is enabled automatically
|
26
|
+
// when an autocompleter is instantiated with the 'tokens' option
|
27
|
+
// in the options parameter, e.g.:
|
28
|
+
// new Ajax.Autocompleter('id','upd', '/url/', { tokens: ',' });
|
29
|
+
// will incrementally autocomplete with a comma as the token.
|
30
|
+
// Additionally, ',' in the above example can be replaced with
|
31
|
+
// a token array, e.g. { tokens: [',', '\n'] } which
|
32
|
+
// enables autocompletion on multiple tokens. This is most
|
33
|
+
// useful when one of the tokens is \n (a newline), as it
|
34
|
+
// allows smart autocompletion after linebreaks.
|
35
|
+
|
36
|
+
var Autocompleter = {}
|
37
|
+
Autocompleter.Base = function() {};
|
38
|
+
Autocompleter.Base.prototype = {
|
39
|
+
baseInitialize: function(element, update, options) {
|
40
|
+
this.element = $(element);
|
41
|
+
this.update = $(update);
|
42
|
+
this.hasFocus = false;
|
43
|
+
this.changed = false;
|
44
|
+
this.active = false;
|
45
|
+
this.index = 0;
|
46
|
+
this.entryCount = 0;
|
47
|
+
|
48
|
+
if (this.setOptions)
|
49
|
+
this.setOptions(options);
|
50
|
+
else
|
51
|
+
this.options = options || {};
|
52
|
+
|
53
|
+
this.options.paramName = this.options.paramName || this.element.name;
|
54
|
+
this.options.tokens = this.options.tokens || [];
|
55
|
+
this.options.frequency = this.options.frequency || 0.4;
|
56
|
+
this.options.minChars = this.options.minChars || 1;
|
57
|
+
this.options.onShow = this.options.onShow ||
|
58
|
+
function(element, update){
|
59
|
+
if(!update.style.position || update.style.position=='absolute') {
|
60
|
+
update.style.position = 'absolute';
|
61
|
+
Position.clone(element, update, {setHeight: false, offsetTop: element.offsetHeight});
|
62
|
+
}
|
63
|
+
Effect.Appear(update,{duration:0.15});
|
64
|
+
};
|
65
|
+
this.options.onHide = this.options.onHide ||
|
66
|
+
function(element, update){ new Effect.Fade(update,{duration:0.15}) };
|
67
|
+
|
68
|
+
if (typeof(this.options.tokens) == 'string')
|
69
|
+
this.options.tokens = new Array(this.options.tokens);
|
70
|
+
|
71
|
+
this.observer = null;
|
72
|
+
|
73
|
+
this.element.setAttribute('autocomplete','off');
|
74
|
+
|
75
|
+
Element.hide(this.update);
|
76
|
+
|
77
|
+
Event.observe(this.element, "blur", this.onBlur.bindAsEventListener(this));
|
78
|
+
Event.observe(this.element, "keypress", this.onKeyPress.bindAsEventListener(this));
|
79
|
+
},
|
80
|
+
|
81
|
+
show: function() {
|
82
|
+
if(Element.getStyle(this.update, 'display')=='none') this.options.onShow(this.element, this.update);
|
83
|
+
if(!this.iefix &&
|
84
|
+
(navigator.appVersion.indexOf('MSIE')>0) &&
|
85
|
+
(navigator.userAgent.indexOf('Opera')<0) &&
|
86
|
+
(Element.getStyle(this.update, 'position')=='absolute')) {
|
87
|
+
new Insertion.After(this.update,
|
88
|
+
'<iframe id="' + this.update.id + '_iefix" '+
|
89
|
+
'style="display:none;position:absolute;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" ' +
|
90
|
+
'src="javascript:false;" frameborder="0" scrolling="no"></iframe>');
|
91
|
+
this.iefix = $(this.update.id+'_iefix');
|
92
|
+
}
|
93
|
+
if(this.iefix) setTimeout(this.fixIEOverlapping.bind(this), 50);
|
94
|
+
},
|
95
|
+
|
96
|
+
fixIEOverlapping: function() {
|
97
|
+
Position.clone(this.update, this.iefix);
|
98
|
+
this.iefix.style.zIndex = 1;
|
99
|
+
this.update.style.zIndex = 2;
|
100
|
+
Element.show(this.iefix);
|
101
|
+
},
|
102
|
+
|
103
|
+
hide: function() {
|
104
|
+
this.stopIndicator();
|
105
|
+
if(Element.getStyle(this.update, 'display')!='none') this.options.onHide(this.element, this.update);
|
106
|
+
if(this.iefix) Element.hide(this.iefix);
|
107
|
+
},
|
108
|
+
|
109
|
+
startIndicator: function() {
|
110
|
+
if(this.options.indicator) Element.show(this.options.indicator);
|
111
|
+
},
|
112
|
+
|
113
|
+
stopIndicator: function() {
|
114
|
+
if(this.options.indicator) Element.hide(this.options.indicator);
|
115
|
+
},
|
116
|
+
|
117
|
+
onKeyPress: function(event) {
|
118
|
+
if(this.active)
|
119
|
+
switch(event.keyCode) {
|
120
|
+
case Event.KEY_TAB:
|
121
|
+
case Event.KEY_RETURN:
|
122
|
+
this.selectEntry();
|
123
|
+
Event.stop(event);
|
124
|
+
case Event.KEY_ESC:
|
125
|
+
this.hide();
|
126
|
+
this.active = false;
|
127
|
+
Event.stop(event);
|
128
|
+
return;
|
129
|
+
case Event.KEY_LEFT:
|
130
|
+
case Event.KEY_RIGHT:
|
131
|
+
return;
|
132
|
+
case Event.KEY_UP:
|
133
|
+
this.markPrevious();
|
134
|
+
this.render();
|
135
|
+
if(navigator.appVersion.indexOf('AppleWebKit')>0) Event.stop(event);
|
136
|
+
return;
|
137
|
+
case Event.KEY_DOWN:
|
138
|
+
this.markNext();
|
139
|
+
this.render();
|
140
|
+
if(navigator.appVersion.indexOf('AppleWebKit')>0) Event.stop(event);
|
141
|
+
return;
|
142
|
+
}
|
143
|
+
else
|
144
|
+
if(event.keyCode==Event.KEY_TAB || event.keyCode==Event.KEY_RETURN ||
|
145
|
+
(navigator.appVersion.indexOf('AppleWebKit') > 0 && event.keyCode == 0)) return;
|
146
|
+
|
147
|
+
this.changed = true;
|
148
|
+
this.hasFocus = true;
|
149
|
+
|
150
|
+
if(this.observer) clearTimeout(this.observer);
|
151
|
+
this.observer =
|
152
|
+
setTimeout(this.onObserverEvent.bind(this), this.options.frequency*1000);
|
153
|
+
},
|
154
|
+
|
155
|
+
activate: function() {
|
156
|
+
this.changed = false;
|
157
|
+
this.hasFocus = true;
|
158
|
+
this.getUpdatedChoices();
|
159
|
+
},
|
160
|
+
|
161
|
+
onHover: function(event) {
|
162
|
+
var element = Event.findElement(event, 'LI');
|
163
|
+
if(this.index != element.autocompleteIndex)
|
164
|
+
{
|
165
|
+
this.index = element.autocompleteIndex;
|
166
|
+
this.render();
|
167
|
+
}
|
168
|
+
Event.stop(event);
|
169
|
+
},
|
170
|
+
|
171
|
+
onClick: function(event) {
|
172
|
+
var element = Event.findElement(event, 'LI');
|
173
|
+
this.index = element.autocompleteIndex;
|
174
|
+
this.selectEntry();
|
175
|
+
this.hide();
|
176
|
+
},
|
177
|
+
|
178
|
+
onBlur: function(event) {
|
179
|
+
// needed to make click events working
|
180
|
+
setTimeout(this.hide.bind(this), 250);
|
181
|
+
this.hasFocus = false;
|
182
|
+
this.active = false;
|
183
|
+
},
|
184
|
+
|
185
|
+
render: function() {
|
186
|
+
if(this.entryCount > 0) {
|
187
|
+
for (var i = 0; i < this.entryCount; i++)
|
188
|
+
this.index==i ?
|
189
|
+
Element.addClassName(this.getEntry(i),"selected") :
|
190
|
+
Element.removeClassName(this.getEntry(i),"selected");
|
191
|
+
|
192
|
+
if(this.hasFocus) {
|
193
|
+
this.show();
|
194
|
+
this.active = true;
|
195
|
+
}
|
196
|
+
} else {
|
197
|
+
this.active = false;
|
198
|
+
this.hide();
|
199
|
+
}
|
200
|
+
},
|
201
|
+
|
202
|
+
markPrevious: function() {
|
203
|
+
if(this.index > 0) this.index--
|
204
|
+
else this.index = this.entryCount-1;
|
205
|
+
},
|
206
|
+
|
207
|
+
markNext: function() {
|
208
|
+
if(this.index < this.entryCount-1) this.index++
|
209
|
+
else this.index = 0;
|
210
|
+
},
|
211
|
+
|
212
|
+
getEntry: function(index) {
|
213
|
+
return this.update.firstChild.childNodes[index];
|
214
|
+
},
|
215
|
+
|
216
|
+
getCurrentEntry: function() {
|
217
|
+
return this.getEntry(this.index);
|
218
|
+
},
|
219
|
+
|
220
|
+
selectEntry: function() {
|
221
|
+
this.active = false;
|
222
|
+
this.updateElement(this.getCurrentEntry());
|
223
|
+
},
|
224
|
+
|
225
|
+
updateElement: function(selectedElement) {
|
226
|
+
if (this.options.updateElement) {
|
227
|
+
this.options.updateElement(selectedElement);
|
228
|
+
return;
|
229
|
+
}
|
230
|
+
var value = '';
|
231
|
+
if (this.options.select) {
|
232
|
+
var nodes = document.getElementsByClassName(this.options.select, selectedElement) || [];
|
233
|
+
if(nodes.length>0) value = Element.collectTextNodes(nodes[0], this.options.select);
|
234
|
+
} else
|
235
|
+
value = Element.collectTextNodesIgnoreClass(selectedElement, 'informal');
|
236
|
+
|
237
|
+
var lastTokenPos = this.findLastToken();
|
238
|
+
if (lastTokenPos != -1) {
|
239
|
+
var newValue = this.element.value.substr(0, lastTokenPos + 1);
|
240
|
+
var whitespace = this.element.value.substr(lastTokenPos + 1).match(/^\s+/);
|
241
|
+
if (whitespace)
|
242
|
+
newValue += whitespace[0];
|
243
|
+
this.element.value = newValue + value;
|
244
|
+
} else {
|
245
|
+
this.element.value = value;
|
246
|
+
}
|
247
|
+
this.element.focus();
|
248
|
+
|
249
|
+
if (this.options.afterUpdateElement)
|
250
|
+
this.options.afterUpdateElement(this.element, selectedElement);
|
251
|
+
},
|
252
|
+
|
253
|
+
updateChoices: function(choices) {
|
254
|
+
if(!this.changed && this.hasFocus) {
|
255
|
+
this.update.innerHTML = choices;
|
256
|
+
Element.cleanWhitespace(this.update);
|
257
|
+
Element.cleanWhitespace(this.update.firstChild);
|
258
|
+
|
259
|
+
if(this.update.firstChild && this.update.firstChild.childNodes) {
|
260
|
+
this.entryCount =
|
261
|
+
this.update.firstChild.childNodes.length;
|
262
|
+
for (var i = 0; i < this.entryCount; i++) {
|
263
|
+
var entry = this.getEntry(i);
|
264
|
+
entry.autocompleteIndex = i;
|
265
|
+
this.addObservers(entry);
|
266
|
+
}
|
267
|
+
} else {
|
268
|
+
this.entryCount = 0;
|
269
|
+
}
|
270
|
+
|
271
|
+
this.stopIndicator();
|
272
|
+
|
273
|
+
this.index = 0;
|
274
|
+
this.render();
|
275
|
+
}
|
276
|
+
},
|
277
|
+
|
278
|
+
addObservers: function(element) {
|
279
|
+
Event.observe(element, "mouseover", this.onHover.bindAsEventListener(this));
|
280
|
+
Event.observe(element, "click", this.onClick.bindAsEventListener(this));
|
281
|
+
},
|
282
|
+
|
283
|
+
onObserverEvent: function() {
|
284
|
+
this.changed = false;
|
285
|
+
if(this.getToken().length>=this.options.minChars) {
|
286
|
+
this.startIndicator();
|
287
|
+
this.getUpdatedChoices();
|
288
|
+
} else {
|
289
|
+
this.active = false;
|
290
|
+
this.hide();
|
291
|
+
}
|
292
|
+
},
|
293
|
+
|
294
|
+
getToken: function() {
|
295
|
+
var tokenPos = this.findLastToken();
|
296
|
+
if (tokenPos != -1)
|
297
|
+
var ret = this.element.value.substr(tokenPos + 1).replace(/^\s+/,'').replace(/\s+$/,'');
|
298
|
+
else
|
299
|
+
var ret = this.element.value;
|
300
|
+
|
301
|
+
return /\n/.test(ret) ? '' : ret;
|
302
|
+
},
|
303
|
+
|
304
|
+
findLastToken: function() {
|
305
|
+
var lastTokenPos = -1;
|
306
|
+
|
307
|
+
for (var i=0; i<this.options.tokens.length; i++) {
|
308
|
+
var thisTokenPos = this.element.value.lastIndexOf(this.options.tokens[i]);
|
309
|
+
if (thisTokenPos > lastTokenPos)
|
310
|
+
lastTokenPos = thisTokenPos;
|
311
|
+
}
|
312
|
+
return lastTokenPos;
|
313
|
+
}
|
314
|
+
}
|
315
|
+
|
316
|
+
Ajax.Autocompleter = Class.create();
|
317
|
+
Object.extend(Object.extend(Ajax.Autocompleter.prototype, Autocompleter.Base.prototype), {
|
318
|
+
initialize: function(element, update, url, options) {
|
319
|
+
this.baseInitialize(element, update, options);
|
320
|
+
this.options.asynchronous = true;
|
321
|
+
this.options.onComplete = this.onComplete.bind(this);
|
322
|
+
this.options.defaultParams = this.options.parameters || null;
|
323
|
+
this.url = url;
|
324
|
+
},
|
325
|
+
|
326
|
+
getUpdatedChoices: function() {
|
327
|
+
entry = encodeURIComponent(this.options.paramName) + '=' +
|
328
|
+
encodeURIComponent(this.getToken());
|
329
|
+
|
330
|
+
this.options.parameters = this.options.callback ?
|
331
|
+
this.options.callback(this.element, entry) : entry;
|
332
|
+
|
333
|
+
if(this.options.defaultParams)
|
334
|
+
this.options.parameters += '&' + this.options.defaultParams;
|
335
|
+
|
336
|
+
new Ajax.Request(this.url, this.options);
|
337
|
+
},
|
338
|
+
|
339
|
+
onComplete: function(request) {
|
340
|
+
this.updateChoices(request.responseText);
|
341
|
+
}
|
342
|
+
|
343
|
+
});
|
344
|
+
|
345
|
+
// The local array autocompleter. Used when you'd prefer to
|
346
|
+
// inject an array of autocompletion options into the page, rather
|
347
|
+
// than sending out Ajax queries, which can be quite slow sometimes.
|
348
|
+
//
|
349
|
+
// The constructor takes four parameters. The first two are, as usual,
|
350
|
+
// the id of the monitored textbox, and id of the autocompletion menu.
|
351
|
+
// The third is the array you want to autocomplete from, and the fourth
|
352
|
+
// is the options block.
|
353
|
+
//
|
354
|
+
// Extra local autocompletion options:
|
355
|
+
// - choices - How many autocompletion choices to offer
|
356
|
+
//
|
357
|
+
// - partialSearch - If false, the autocompleter will match entered
|
358
|
+
// text only at the beginning of strings in the
|
359
|
+
// autocomplete array. Defaults to true, which will
|
360
|
+
// match text at the beginning of any *word* in the
|
361
|
+
// strings in the autocomplete array. If you want to
|
362
|
+
// search anywhere in the string, additionally set
|
363
|
+
// the option fullSearch to true (default: off).
|
364
|
+
//
|
365
|
+
// - fullSsearch - Search anywhere in autocomplete array strings.
|
366
|
+
//
|
367
|
+
// - partialChars - How many characters to enter before triggering
|
368
|
+
// a partial match (unlike minChars, which defines
|
369
|
+
// how many characters are required to do any match
|
370
|
+
// at all). Defaults to 2.
|
371
|
+
//
|
372
|
+
// - ignoreCase - Whether to ignore case when autocompleting.
|
373
|
+
// Defaults to true.
|
374
|
+
//
|
375
|
+
// It's possible to pass in a custom function as the 'selector'
|
376
|
+
// option, if you prefer to write your own autocompletion logic.
|
377
|
+
// In that case, the other options above will not apply unless
|
378
|
+
// you support them.
|
379
|
+
|
380
|
+
Autocompleter.Local = Class.create();
|
381
|
+
Autocompleter.Local.prototype = Object.extend(new Autocompleter.Base(), {
|
382
|
+
initialize: function(element, update, array, options) {
|
383
|
+
this.baseInitialize(element, update, options);
|
384
|
+
this.options.array = array;
|
385
|
+
},
|
386
|
+
|
387
|
+
getUpdatedChoices: function() {
|
388
|
+
this.updateChoices(this.options.selector(this));
|
389
|
+
},
|
390
|
+
|
391
|
+
setOptions: function(options) {
|
392
|
+
this.options = Object.extend({
|
393
|
+
choices: 10,
|
394
|
+
partialSearch: true,
|
395
|
+
partialChars: 2,
|
396
|
+
ignoreCase: true,
|
397
|
+
fullSearch: false,
|
398
|
+
selector: function(instance) {
|
399
|
+
var ret = []; // Beginning matches
|
400
|
+
var partial = []; // Inside matches
|
401
|
+
var entry = instance.getToken();
|
402
|
+
var count = 0;
|
403
|
+
|
404
|
+
for (var i = 0; i < instance.options.array.length &&
|
405
|
+
ret.length < instance.options.choices ; i++) {
|
406
|
+
|
407
|
+
var elem = instance.options.array[i];
|
408
|
+
var foundPos = instance.options.ignoreCase ?
|
409
|
+
elem.toLowerCase().indexOf(entry.toLowerCase()) :
|
410
|
+
elem.indexOf(entry);
|
411
|
+
|
412
|
+
while (foundPos != -1) {
|
413
|
+
if (foundPos == 0 && elem.length != entry.length) {
|
414
|
+
ret.push("<li><strong>" + elem.substr(0, entry.length) + "</strong>" +
|
415
|
+
elem.substr(entry.length) + "</li>");
|
416
|
+
break;
|
417
|
+
} else if (entry.length >= instance.options.partialChars &&
|
418
|
+
instance.options.partialSearch && foundPos != -1) {
|
419
|
+
if (instance.options.fullSearch || /\s/.test(elem.substr(foundPos-1,1))) {
|
420
|
+
partial.push("<li>" + elem.substr(0, foundPos) + "<strong>" +
|
421
|
+
elem.substr(foundPos, entry.length) + "</strong>" + elem.substr(
|
422
|
+
foundPos + entry.length) + "</li>");
|
423
|
+
break;
|
424
|
+
}
|
425
|
+
}
|
426
|
+
|
427
|
+
foundPos = instance.options.ignoreCase ?
|
428
|
+
elem.toLowerCase().indexOf(entry.toLowerCase(), foundPos + 1) :
|
429
|
+
elem.indexOf(entry, foundPos + 1);
|
430
|
+
|
431
|
+
}
|
432
|
+
}
|
433
|
+
if (partial.length)
|
434
|
+
ret = ret.concat(partial.slice(0, instance.options.choices - ret.length))
|
435
|
+
return "<ul>" + ret.join('') + "</ul>";
|
436
|
+
}
|
437
|
+
}, options || {});
|
438
|
+
}
|
439
|
+
});
|
440
|
+
|
441
|
+
// AJAX in-place editor
|
442
|
+
//
|
443
|
+
// see documentation on http://wiki.script.aculo.us/scriptaculous/show/Ajax.InPlaceEditor
|
444
|
+
|
445
|
+
// Use this if you notice weird scrolling problems on some browsers,
|
446
|
+
// the DOM might be a bit confused when this gets called so do this
|
447
|
+
// waits 1 ms (with setTimeout) until it does the activation
|
448
|
+
Field.scrollFreeActivate = function(field) {
|
449
|
+
setTimeout(function() {
|
450
|
+
Field.activate(field);
|
451
|
+
}, 1);
|
452
|
+
}
|
453
|
+
|
454
|
+
Ajax.InPlaceEditor = Class.create();
|
455
|
+
Ajax.InPlaceEditor.defaultHighlightColor = "#FFFF99";
|
456
|
+
Ajax.InPlaceEditor.prototype = {
|
457
|
+
initialize: function(element, url, options) {
|
458
|
+
this.url = url;
|
459
|
+
this.element = $(element);
|
460
|
+
|
461
|
+
this.options = Object.extend({
|
462
|
+
okButton: true,
|
463
|
+
okText: "ok",
|
464
|
+
cancelLink: true,
|
465
|
+
cancelText: "cancel",
|
466
|
+
savingText: "Saving...",
|
467
|
+
clickToEditText: "Click to edit",
|
468
|
+
okText: "ok",
|
469
|
+
rows: 1,
|
470
|
+
onComplete: function(transport, element) {
|
471
|
+
new Effect.Highlight(element, {startcolor: this.options.highlightcolor});
|
472
|
+
},
|
473
|
+
onFailure: function(transport) {
|
474
|
+
alert("Error communicating with the server: " + transport.responseText.stripTags());
|
475
|
+
},
|
476
|
+
callback: function(form) {
|
477
|
+
return Form.serialize(form);
|
478
|
+
},
|
479
|
+
handleLineBreaks: true,
|
480
|
+
loadingText: 'Loading...',
|
481
|
+
savingClassName: 'inplaceeditor-saving',
|
482
|
+
loadingClassName: 'inplaceeditor-loading',
|
483
|
+
formClassName: 'inplaceeditor-form',
|
484
|
+
highlightcolor: Ajax.InPlaceEditor.defaultHighlightColor,
|
485
|
+
highlightendcolor: "#FFFFFF",
|
486
|
+
externalControl: null,
|
487
|
+
submitOnBlur: false,
|
488
|
+
ajaxOptions: {},
|
489
|
+
evalScripts: false
|
490
|
+
}, options || {});
|
491
|
+
|
492
|
+
if(!this.options.formId && this.element.id) {
|
493
|
+
this.options.formId = this.element.id + "-inplaceeditor";
|
494
|
+
if ($(this.options.formId)) {
|
495
|
+
// there's already a form with that name, don't specify an id
|
496
|
+
this.options.formId = null;
|
497
|
+
}
|
498
|
+
}
|
499
|
+
|
500
|
+
if (this.options.externalControl) {
|
501
|
+
this.options.externalControl = $(this.options.externalControl);
|
502
|
+
}
|
503
|
+
|
504
|
+
this.originalBackground = Element.getStyle(this.element, 'background-color');
|
505
|
+
if (!this.originalBackground) {
|
506
|
+
this.originalBackground = "transparent";
|
507
|
+
}
|
508
|
+
|
509
|
+
this.element.title = this.options.clickToEditText;
|
510
|
+
|
511
|
+
this.onclickListener = this.enterEditMode.bindAsEventListener(this);
|
512
|
+
this.mouseoverListener = this.enterHover.bindAsEventListener(this);
|
513
|
+
this.mouseoutListener = this.leaveHover.bindAsEventListener(this);
|
514
|
+
Event.observe(this.element, 'click', this.onclickListener);
|
515
|
+
Event.observe(this.element, 'mouseover', this.mouseoverListener);
|
516
|
+
Event.observe(this.element, 'mouseout', this.mouseoutListener);
|
517
|
+
if (this.options.externalControl) {
|
518
|
+
Event.observe(this.options.externalControl, 'click', this.onclickListener);
|
519
|
+
Event.observe(this.options.externalControl, 'mouseover', this.mouseoverListener);
|
520
|
+
Event.observe(this.options.externalControl, 'mouseout', this.mouseoutListener);
|
521
|
+
}
|
522
|
+
},
|
523
|
+
enterEditMode: function(evt) {
|
524
|
+
if (this.saving) return;
|
525
|
+
if (this.editing) return;
|
526
|
+
this.editing = true;
|
527
|
+
this.onEnterEditMode();
|
528
|
+
if (this.options.externalControl) {
|
529
|
+
Element.hide(this.options.externalControl);
|
530
|
+
}
|
531
|
+
Element.hide(this.element);
|
532
|
+
this.createForm();
|
533
|
+
this.element.parentNode.insertBefore(this.form, this.element);
|
534
|
+
Field.scrollFreeActivate(this.editField);
|
535
|
+
// stop the event to avoid a page refresh in Safari
|
536
|
+
if (evt) {
|
537
|
+
Event.stop(evt);
|
538
|
+
}
|
539
|
+
return false;
|
540
|
+
},
|
541
|
+
createForm: function() {
|
542
|
+
this.form = document.createElement("form");
|
543
|
+
this.form.id = this.options.formId;
|
544
|
+
Element.addClassName(this.form, this.options.formClassName)
|
545
|
+
this.form.onsubmit = this.onSubmit.bind(this);
|
546
|
+
|
547
|
+
this.createEditField();
|
548
|
+
|
549
|
+
if (this.options.textarea) {
|
550
|
+
var br = document.createElement("br");
|
551
|
+
this.form.appendChild(br);
|
552
|
+
}
|
553
|
+
|
554
|
+
if (this.options.okButton) {
|
555
|
+
okButton = document.createElement("input");
|
556
|
+
okButton.type = "submit";
|
557
|
+
okButton.value = this.options.okText;
|
558
|
+
okButton.className = 'editor_ok_button';
|
559
|
+
this.form.appendChild(okButton);
|
560
|
+
}
|
561
|
+
|
562
|
+
if (this.options.cancelLink) {
|
563
|
+
cancelLink = document.createElement("a");
|
564
|
+
cancelLink.href = "#";
|
565
|
+
cancelLink.appendChild(document.createTextNode(this.options.cancelText));
|
566
|
+
cancelLink.onclick = this.onclickCancel.bind(this);
|
567
|
+
cancelLink.className = 'editor_cancel';
|
568
|
+
this.form.appendChild(cancelLink);
|
569
|
+
}
|
570
|
+
},
|
571
|
+
hasHTMLLineBreaks: function(string) {
|
572
|
+
if (!this.options.handleLineBreaks) return false;
|
573
|
+
return string.match(/<br/i) || string.match(/<p>/i);
|
574
|
+
},
|
575
|
+
convertHTMLLineBreaks: function(string) {
|
576
|
+
return string.replace(/<br>/gi, "\n").replace(/<br\/>/gi, "\n").replace(/<\/p>/gi, "\n").replace(/<p>/gi, "");
|
577
|
+
},
|
578
|
+
createEditField: function() {
|
579
|
+
var text;
|
580
|
+
if(this.options.loadTextURL) {
|
581
|
+
text = this.options.loadingText;
|
582
|
+
} else {
|
583
|
+
text = this.getText();
|
584
|
+
}
|
585
|
+
|
586
|
+
var obj = this;
|
587
|
+
|
588
|
+
if (this.options.rows == 1 && !this.hasHTMLLineBreaks(text)) {
|
589
|
+
this.options.textarea = false;
|
590
|
+
var textField = document.createElement("input");
|
591
|
+
textField.obj = this;
|
592
|
+
textField.type = "text";
|
593
|
+
textField.name = "value";
|
594
|
+
textField.value = text;
|
595
|
+
textField.style.backgroundColor = this.options.highlightcolor;
|
596
|
+
textField.className = 'editor_field';
|
597
|
+
var size = this.options.size || this.options.cols || 0;
|
598
|
+
if (size != 0) textField.size = size;
|
599
|
+
if (this.options.submitOnBlur)
|
600
|
+
textField.onblur = this.onSubmit.bind(this);
|
601
|
+
this.editField = textField;
|
602
|
+
} else {
|
603
|
+
this.options.textarea = true;
|
604
|
+
var textArea = document.createElement("textarea");
|
605
|
+
textArea.obj = this;
|
606
|
+
textArea.name = "value";
|
607
|
+
textArea.value = this.convertHTMLLineBreaks(text);
|
608
|
+
textArea.rows = this.options.rows;
|
609
|
+
textArea.cols = this.options.cols || 40;
|
610
|
+
textArea.className = 'editor_field';
|
611
|
+
if (this.options.submitOnBlur)
|
612
|
+
textArea.onblur = this.onSubmit.bind(this);
|
613
|
+
this.editField = textArea;
|
614
|
+
}
|
615
|
+
|
616
|
+
if(this.options.loadTextURL) {
|
617
|
+
this.loadExternalText();
|
618
|
+
}
|
619
|
+
this.form.appendChild(this.editField);
|
620
|
+
},
|
621
|
+
getText: function() {
|
622
|
+
return this.element.innerHTML;
|
623
|
+
},
|
624
|
+
loadExternalText: function() {
|
625
|
+
Element.addClassName(this.form, this.options.loadingClassName);
|
626
|
+
this.editField.disabled = true;
|
627
|
+
new Ajax.Request(
|
628
|
+
this.options.loadTextURL,
|
629
|
+
Object.extend({
|
630
|
+
asynchronous: true,
|
631
|
+
onComplete: this.onLoadedExternalText.bind(this)
|
632
|
+
}, this.options.ajaxOptions)
|
633
|
+
);
|
634
|
+
},
|
635
|
+
onLoadedExternalText: function(transport) {
|
636
|
+
Element.removeClassName(this.form, this.options.loadingClassName);
|
637
|
+
this.editField.disabled = false;
|
638
|
+
this.editField.value = transport.responseText.stripTags();
|
639
|
+
},
|
640
|
+
onclickCancel: function() {
|
641
|
+
this.onComplete();
|
642
|
+
this.leaveEditMode();
|
643
|
+
return false;
|
644
|
+
},
|
645
|
+
onFailure: function(transport) {
|
646
|
+
this.options.onFailure(transport);
|
647
|
+
if (this.oldInnerHTML) {
|
648
|
+
this.element.innerHTML = this.oldInnerHTML;
|
649
|
+
this.oldInnerHTML = null;
|
650
|
+
}
|
651
|
+
return false;
|
652
|
+
},
|
653
|
+
onSubmit: function() {
|
654
|
+
// onLoading resets these so we need to save them away for the Ajax call
|
655
|
+
var form = this.form;
|
656
|
+
var value = this.editField.value;
|
657
|
+
|
658
|
+
// do this first, sometimes the ajax call returns before we get a chance to switch on Saving...
|
659
|
+
// which means this will actually switch on Saving... *after* we've left edit mode causing Saving...
|
660
|
+
// to be displayed indefinitely
|
661
|
+
this.onLoading();
|
662
|
+
|
663
|
+
if (this.options.evalScripts) {
|
664
|
+
new Ajax.Request(
|
665
|
+
this.url, Object.extend({
|
666
|
+
parameters: this.options.callback(form, value),
|
667
|
+
onComplete: this.onComplete.bind(this),
|
668
|
+
onFailure: this.onFailure.bind(this),
|
669
|
+
asynchronous:true,
|
670
|
+
evalScripts:true
|
671
|
+
}, this.options.ajaxOptions));
|
672
|
+
} else {
|
673
|
+
new Ajax.Updater(
|
674
|
+
{ success: this.element,
|
675
|
+
// don't update on failure (this could be an option)
|
676
|
+
failure: null },
|
677
|
+
this.url, Object.extend({
|
678
|
+
parameters: this.options.callback(form, value),
|
679
|
+
onComplete: this.onComplete.bind(this),
|
680
|
+
onFailure: this.onFailure.bind(this)
|
681
|
+
}, this.options.ajaxOptions));
|
682
|
+
}
|
683
|
+
// stop the event to avoid a page refresh in Safari
|
684
|
+
if (arguments.length > 1) {
|
685
|
+
Event.stop(arguments[0]);
|
686
|
+
}
|
687
|
+
return false;
|
688
|
+
},
|
689
|
+
onLoading: function() {
|
690
|
+
this.saving = true;
|
691
|
+
this.removeForm();
|
692
|
+
this.leaveHover();
|
693
|
+
this.showSaving();
|
694
|
+
},
|
695
|
+
showSaving: function() {
|
696
|
+
this.oldInnerHTML = this.element.innerHTML;
|
697
|
+
this.element.innerHTML = this.options.savingText;
|
698
|
+
Element.addClassName(this.element, this.options.savingClassName);
|
699
|
+
this.element.style.backgroundColor = this.originalBackground;
|
700
|
+
Element.show(this.element);
|
701
|
+
},
|
702
|
+
removeForm: function() {
|
703
|
+
if(this.form) {
|
704
|
+
if (this.form.parentNode) Element.remove(this.form);
|
705
|
+
this.form = null;
|
706
|
+
}
|
707
|
+
},
|
708
|
+
enterHover: function() {
|
709
|
+
if (this.saving) return;
|
710
|
+
this.element.style.backgroundColor = this.options.highlightcolor;
|
711
|
+
if (this.effect) {
|
712
|
+
this.effect.cancel();
|
713
|
+
}
|
714
|
+
Element.addClassName(this.element, this.options.hoverClassName)
|
715
|
+
},
|
716
|
+
leaveHover: function() {
|
717
|
+
if (this.options.backgroundColor) {
|
718
|
+
this.element.style.backgroundColor = this.oldBackground;
|
719
|
+
}
|
720
|
+
Element.removeClassName(this.element, this.options.hoverClassName)
|
721
|
+
if (this.saving) return;
|
722
|
+
this.effect = new Effect.Highlight(this.element, {
|
723
|
+
startcolor: this.options.highlightcolor,
|
724
|
+
endcolor: this.options.highlightendcolor,
|
725
|
+
restorecolor: this.originalBackground
|
726
|
+
});
|
727
|
+
},
|
728
|
+
leaveEditMode: function() {
|
729
|
+
Element.removeClassName(this.element, this.options.savingClassName);
|
730
|
+
this.removeForm();
|
731
|
+
this.leaveHover();
|
732
|
+
this.element.style.backgroundColor = this.originalBackground;
|
733
|
+
Element.show(this.element);
|
734
|
+
if (this.options.externalControl) {
|
735
|
+
Element.show(this.options.externalControl);
|
736
|
+
}
|
737
|
+
this.editing = false;
|
738
|
+
this.saving = false;
|
739
|
+
this.oldInnerHTML = null;
|
740
|
+
this.onLeaveEditMode();
|
741
|
+
},
|
742
|
+
onComplete: function(transport) {
|
743
|
+
this.leaveEditMode();
|
744
|
+
this.options.onComplete.bind(this)(transport, this.element);
|
745
|
+
},
|
746
|
+
onEnterEditMode: function() {},
|
747
|
+
onLeaveEditMode: function() {},
|
748
|
+
dispose: function() {
|
749
|
+
if (this.oldInnerHTML) {
|
750
|
+
this.element.innerHTML = this.oldInnerHTML;
|
751
|
+
}
|
752
|
+
this.leaveEditMode();
|
753
|
+
Event.stopObserving(this.element, 'click', this.onclickListener);
|
754
|
+
Event.stopObserving(this.element, 'mouseover', this.mouseoverListener);
|
755
|
+
Event.stopObserving(this.element, 'mouseout', this.mouseoutListener);
|
756
|
+
if (this.options.externalControl) {
|
757
|
+
Event.stopObserving(this.options.externalControl, 'click', this.onclickListener);
|
758
|
+
Event.stopObserving(this.options.externalControl, 'mouseover', this.mouseoverListener);
|
759
|
+
Event.stopObserving(this.options.externalControl, 'mouseout', this.mouseoutListener);
|
760
|
+
}
|
761
|
+
}
|
762
|
+
};
|
763
|
+
|
764
|
+
Ajax.InPlaceCollectionEditor = Class.create();
|
765
|
+
Object.extend(Ajax.InPlaceCollectionEditor.prototype, Ajax.InPlaceEditor.prototype);
|
766
|
+
Object.extend(Ajax.InPlaceCollectionEditor.prototype, {
|
767
|
+
createEditField: function() {
|
768
|
+
if (!this.cached_selectTag) {
|
769
|
+
var selectTag = document.createElement("select");
|
770
|
+
var collection = this.options.collection || [];
|
771
|
+
var optionTag;
|
772
|
+
collection.each(function(e,i) {
|
773
|
+
optionTag = document.createElement("option");
|
774
|
+
optionTag.value = (e instanceof Array) ? e[0] : e;
|
775
|
+
if(this.options.value==optionTag.value) optionTag.selected = true;
|
776
|
+
optionTag.appendChild(document.createTextNode((e instanceof Array) ? e[1] : e));
|
777
|
+
selectTag.appendChild(optionTag);
|
778
|
+
}.bind(this));
|
779
|
+
this.cached_selectTag = selectTag;
|
780
|
+
}
|
781
|
+
|
782
|
+
this.editField = this.cached_selectTag;
|
783
|
+
if(this.options.loadTextURL) this.loadExternalText();
|
784
|
+
this.form.appendChild(this.editField);
|
785
|
+
this.options.callback = function(form, value) {
|
786
|
+
return "value=" + encodeURIComponent(value);
|
787
|
+
}
|
788
|
+
}
|
789
|
+
});
|
790
|
+
|
791
|
+
// Delayed observer, like Form.Element.Observer,
|
792
|
+
// but waits for delay after last key input
|
793
|
+
// Ideal for live-search fields
|
794
|
+
|
795
|
+
Form.Element.DelayedObserver = Class.create();
|
796
|
+
Form.Element.DelayedObserver.prototype = {
|
797
|
+
initialize: function(element, delay, callback) {
|
798
|
+
this.delay = delay || 0.5;
|
799
|
+
this.element = $(element);
|
800
|
+
this.callback = callback;
|
801
|
+
this.timer = null;
|
802
|
+
this.lastValue = $F(this.element);
|
803
|
+
Event.observe(this.element,'keyup',this.delayedListener.bindAsEventListener(this));
|
804
|
+
},
|
805
|
+
delayedListener: function(event) {
|
806
|
+
if(this.lastValue == $F(this.element)) return;
|
807
|
+
if(this.timer) clearTimeout(this.timer);
|
808
|
+
this.timer = setTimeout(this.onTimerEvent.bind(this), this.delay * 1000);
|
809
|
+
this.lastValue = $F(this.element);
|
810
|
+
},
|
811
|
+
onTimerEvent: function() {
|
812
|
+
this.timer = null;
|
813
|
+
this.callback(this.element, $F(this.element));
|
814
|
+
}
|
815
|
+
};
|