├── .gitignore
├── README.markdown
├── Rakefile
├── app
├── controllers
│ ├── account_controller.rb
│ ├── allocations_controller.rb
│ ├── announcements_controller.rb
│ ├── application_controller.rb
│ ├── attachments_controller.rb
│ ├── comments_controller.rb
│ ├── enterprises_controller.rb
│ ├── forums_controller.rb
│ ├── groups_controller.rb
│ ├── ideas_controller.rb
│ ├── link_sets_controller.rb
│ ├── lookup_codes_controller.rb
│ ├── merge_ideas_controller.rb
│ ├── periodic_jobs_controller.rb
│ ├── polls_controller.rb
│ ├── portal_controller.rb
│ ├── products_controller.rb
│ ├── releases_controller.rb
│ ├── static_controller.rb
│ ├── topics_controller.rb
│ ├── user_logons_controller.rb
│ ├── user_requests_controller.rb
│ ├── users_controller.rb
│ ├── votes_controller.rb
│ └── watches_controller.rb
├── helpers
│ ├── account_helper.rb
│ ├── allocations_helper.rb
│ ├── announcements_helper.rb
│ ├── application_helper.rb
│ ├── attachments_helper.rb
│ ├── comments_helper.rb
│ ├── enterprises_helper.rb
│ ├── forums_helper.rb
│ ├── groups_helper.rb
│ ├── idea_action_helper.rb
│ ├── ideas_helper.rb
│ ├── link_sets_helper.rb
│ ├── lookup_codes_helper.rb
│ ├── merge_ideas_helper.rb
│ ├── polls_helper.rb
│ ├── portal_helper.rb
│ ├── products_helper.rb
│ ├── releases_helper.rb
│ ├── roles_helper.rb
│ ├── static_helper.rb
│ ├── topics_helper.rb
│ ├── user_requests_helper.rb
│ ├── users_helper.rb
│ ├── votes_helper.rb
│ └── watches_helper.rb
├── models
│ ├── allocation.rb
│ ├── allocation_observer.rb
│ ├── announcement.rb
│ ├── attachment.rb
│ ├── comment.rb
│ ├── comment_attachment.rb
│ ├── comment_observer.rb
│ ├── custom_field.rb
│ ├── email_notifier.rb
│ ├── email_request.rb
│ ├── enterprise.rb
│ ├── enterprise_allocation.rb
│ ├── enterprise_type.rb
│ ├── forum.rb
│ ├── forum_group.rb
│ ├── forum_metric.rb
│ ├── group.rb
│ ├── idea.rb
│ ├── idea_change_log.rb
│ ├── idea_comment.rb
│ ├── idea_email_request.rb
│ ├── idea_observer.rb
│ ├── link.rb
│ ├── link_set.rb
│ ├── lookup_code.rb
│ ├── periodic_job.rb
│ ├── poll.rb
│ ├── poll_comment.rb
│ ├── poll_option.rb
│ ├── portal_certified_consultant.rb
│ ├── portal_customer.rb
│ ├── portal_nfr.rb
│ ├── portal_org.rb
│ ├── portal_support_incident.rb
│ ├── portal_user_org_map.rb
│ ├── product.rb
│ ├── rate.rb
│ ├── release.rb
│ ├── release_change_log.rb
│ ├── release_dependency.rb
│ ├── release_status.rb
│ ├── role.rb
│ ├── run_at_periodic_job.rb
│ ├── run_interval_periodic_job.rb
│ ├── run_once_periodic_job.rb
│ ├── serial_number.rb
│ ├── serial_number_release_map.rb
│ ├── serial_number_release_map_history.rb
│ ├── support_ticket.rb
│ ├── task_scheduler_batch.rb
│ ├── topic.rb
│ ├── topic_comment.rb
│ ├── topic_hit.rb
│ ├── topic_import.rb
│ ├── topic_watch.rb
│ ├── user.rb
│ ├── user_allocation.rb
│ ├── user_idea_read.rb
│ ├── user_logon.rb
│ ├── user_observer.rb
│ ├── user_request.rb
│ ├── user_request_observer.rb
│ ├── user_topic_read.rb
│ ├── vote.rb
│ └── watch.rb
├── sweepers
│ ├── allocations_sweeper.rb
│ ├── announcements_sweeper.rb
│ ├── attachments_sweeper.rb
│ ├── comments_sweeper.rb
│ ├── forums_sweeper.rb
│ ├── link_sets_sweeper.rb
│ └── topics_sweeper.rb
└── views
│ ├── account
│ ├── activate.rhtml
│ ├── change_password.rhtml
│ ├── continue_openid.html.erb
│ ├── index.rhtml
│ ├── login.rhtml
│ ├── login_openid.rhtml
│ └── signup.rhtml
│ ├── allocations
│ ├── _allocation_item.rhtml
│ ├── edit.rhtml
│ ├── export_import.rhtml
│ ├── index.rhtml
│ ├── new.rhtml
│ └── show.rhtml
│ ├── announcements
│ ├── _announcement_item.rhtml
│ ├── _form.rhtml
│ ├── edit.rhtml
│ ├── index.rhtml
│ ├── new.rhtml
│ ├── preview.rhtml
│ └── show.rhtml
│ ├── attachments
│ ├── _attachment.rhtml
│ ├── _buttons.rhtml
│ ├── _details.rhtml
│ ├── edit.rhtml
│ ├── html.rhtml
│ ├── index.rhtml
│ └── show.rhtml
│ ├── comments
│ ├── _comment_item.rhtml
│ ├── _comments.rhtml
│ ├── attach.rhtml
│ ├── edit.rhtml
│ ├── new.rhtml
│ └── preview.rhtml
│ ├── email_notifier
│ ├── activation.text.html.rhtml
│ ├── activation.text.plan.rhtml
│ ├── idea_change_notifications.text.html.rhtml
│ ├── idea_change_notifications.text.plain.rhtml
│ ├── idea_email_request.text.html.rhtml
│ ├── idea_email_request.text.plan.rhtml
│ ├── new_comment_notification.text.html.rhtml
│ ├── new_comment_notification.text.plain.rhtml
│ ├── new_enterprise_allocation_notification.text.html.rhtml
│ ├── new_enterprise_allocation_notification.text.plain.rhtml
│ ├── new_topic_comment_notification.text.html.rhtml
│ ├── new_topic_comment_notification.text.plain.rhtml
│ ├── new_user_allocation_notification.text.html.rhtml
│ ├── new_user_allocation_notification.text.plain.rhtml
│ ├── new_user_request_notification.text.html.rhtml
│ ├── new_user_request_notification.text.plain.rhtml
│ ├── pending_topics.text.html.rhtml
│ ├── pending_topics.text.plain.rhtml
│ ├── release_change_notifications.text.html.rhtml
│ ├── release_change_notifications.text.plain.rhtml
│ ├── reminder_to_vote.text.html.rhtml
│ ├── reminder_to_vote.text.plain.rhtml
│ ├── reset_notification.text.html.rhtml
│ ├── reset_notification.text.plain.rhtml
│ ├── signup_notification.text.html.rhtml
│ ├── signup_notification.text.plain.rhtml
│ ├── user_request_received_notification.text.html.rhtml
│ └── user_request_received_notification.text.plain.rhtml
│ ├── enterprises
│ ├── _enterprise_item.rhtml
│ ├── edit.rhtml
│ ├── index.rhtml
│ └── show.rhtml
│ ├── forums
│ ├── _forum_action.rhtml
│ ├── _forum_group.rhtml
│ ├── _forum_heading.rhtml
│ ├── _forum_item.rhtml
│ ├── _forum_metric.rhtml
│ ├── _mediator_forum_metric.rhtml
│ ├── _show_hide_forum_details.rhtml
│ ├── _sidebar1.rhtml
│ ├── _topic_action.rhtml
│ ├── _topic_item.rhtml
│ ├── edit.rhtml
│ ├── index.rhtml
│ ├── metrics.rhtml
│ ├── metrics_graphs.html.erb
│ ├── new.rhtml
│ ├── search.rhtml
│ └── show.rhtml
│ ├── groups
│ ├── _group_item.rhtml
│ ├── _tab_menu.rhtml
│ ├── edit.rhtml
│ ├── index.rhtml
│ └── show.rhtml
│ ├── ideas
│ ├── _change_log.rhtml
│ ├── _filter_tabs.rhtml
│ ├── _idea_changes.rhtml
│ ├── _idea_details.rhtml
│ ├── _ideas_table.rhtml
│ ├── _list_actions.rhtml
│ ├── _options.rhtml
│ ├── _search_box.rhtml
│ ├── _show_hide_search_box_button.rhtml
│ ├── _sidebar1.rhtml
│ ├── _sidebar2.rhtml
│ ├── _tabs.rhtml
│ ├── edit.rhtml
│ ├── list.rhtml
│ ├── new.rhtml
│ ├── new_email_request.rhtml
│ ├── preview.rhtml
│ ├── show.rhtml
│ ├── tag_cloud.rhtml
│ └── titles_for_lookup.rhtml
│ ├── layouts
│ └── application.rhtml
│ ├── link_sets
│ ├── _link.rhtml
│ ├── _link_set.rhtml
│ ├── _link_sidebar.rhtml
│ ├── _tab_menu.rhtml
│ ├── edit.rhtml
│ ├── index.rhtml
│ └── show.rhtml
│ ├── lookup_codes
│ ├── _form.rhtml
│ ├── _lookup_code_item.rhtml
│ ├── _tab_menu.rhtml
│ ├── edit.rhtml
│ ├── index.rhtml
│ └── show.rhtml
│ ├── merge_ideas
│ └── show.rhtml
│ ├── periodic_jobs
│ ├── _periodic_job_item.rhtml
│ ├── _tab_menu.rhtml
│ └── index.rhtml
│ ├── polls
│ ├── _poll_item.rhtml
│ ├── _poll_option.rhtml
│ ├── edit.rhtml
│ ├── index.rhtml
│ ├── present_survey.rhtml
│ ├── prompt_for_survey.rhtml
│ ├── show.rhtml
│ └── show_survey.rhtml
│ ├── portal
│ ├── _consultant.html.erb
│ ├── _customer.html.erb
│ ├── _nfr.html.erb
│ ├── _sidebar1.rhtml
│ ├── _ticket.html.erb
│ ├── _user.html.erb
│ ├── index.html.erb
│ └── show_serial_number.html.erb
│ ├── products
│ ├── _form.rhtml
│ ├── _product_action.rhtml
│ ├── _product_item.rhtml
│ ├── _tab_menu.rhtml
│ ├── edit.rhtml
│ ├── index.rhtml
│ └── show.rhtml
│ ├── releases
│ ├── _compatibility_tab_menu.rhtml
│ ├── _release_dependency.rhtml
│ ├── _release_item.rhtml
│ ├── _roadmap_tab_menu.rhtml
│ ├── check_for_updates.rhtml
│ ├── compatibility.rhtml
│ ├── edit.rhtml
│ ├── index.rhtml
│ ├── list.rhtml
│ ├── new.rhtml
│ ├── preview.rhtml
│ └── show.rhtml
│ ├── simple_captcha
│ └── _simple_captcha.rhtml
│ ├── static
│ ├── help.rhtml
│ ├── license.rhtml
│ └── search.rhtml
│ ├── topics
│ ├── _show_hide_topic_details.rhtml
│ ├── _sidebar1.rhtml
│ ├── _topic_heading.rhtml
│ ├── edit.rhtml
│ ├── new.rhtml
│ ├── preview.rhtml
│ ├── search.rhtml
│ └── show.rhtml
│ ├── user_logons
│ ├── _tab_menu.rhtml
│ ├── _user_logon.rhtml
│ └── index.rhtml
│ ├── user_requests
│ ├── _tab_menu.rhtml
│ ├── _user_request.rhtml
│ ├── acknowledge.rhtml
│ ├── edit.rhtml
│ ├── index.rhtml
│ ├── new.rhtml
│ └── show.rhtml
│ ├── users
│ ├── _form.rhtml
│ ├── _logon.html.erb
│ ├── _tab_menu.rhtml
│ ├── _topic.html.erb
│ ├── _user.rhtml
│ ├── _vote.html.erb
│ ├── activity.html.erb
│ ├── edit.rhtml
│ ├── edit_profile.rhtml
│ ├── export_import.rhtml
│ ├── list.rhtml
│ ├── lost_password.rhtml
│ ├── new.rhtml
│ └── show.rhtml
│ ├── votes
│ ├── _form.rhtml
│ ├── _vote_item.rhtml
│ ├── _votes.rhtml
│ ├── index.rhtml
│ └── show.rhtml
│ └── watch
│ ├── create.rhtml
│ └── destroy.rhtml
├── config
├── boot.rb
├── database.yml
├── deploy.rb
├── development.sphinx.conf
├── environment.rb
├── environment.yml
├── environments
│ ├── development_template.rb
│ ├── production.rb
│ └── test.rb
├── initializers
│ ├── mail_safe.rb
│ └── new_rails_defaults.rb
├── observe.no.txt
├── routes.rb
├── solr.yml
└── sphinx.yml
├── db
└── migrate
│ ├── 001_create_products.rb
│ ├── 002_create_lookup_codes.rb
│ ├── 003_populate_release_statuses.rb
│ ├── 004_create_releases.rb
│ ├── 005_add_sessions.rb
│ ├── 006_create_enterprises.rb
│ ├── 007_create_users.rb
│ ├── 009_add_user_enterprise_fk.rb
│ ├── 011_create_roles.rb
│ ├── 012_create_users_roles.rb
│ ├── 014_create_allocations.rb
│ ├── 015_create_ideas.rb
│ ├── 016_create_votes.rb
│ ├── 017_add_time_zone_column_to_users.rb
│ ├── 018_create_comments.rb
│ ├── 019_create_user_idea_reads.rb
│ ├── 020_create_watches.rb
│ ├── 021_add_indices.rb
│ ├── 022_add_merged_idea_column.rb
│ ├── 023_add_comments_column_to_vote.rb
│ ├── 024_add_first_and_last_names_to_user.rb
│ ├── 025_add_view_count.rb
│ ├── 026_add_force_password_change_to_user.rb
│ ├── 027_add_user_logons.rb
│ ├── 028_create_announcements.rb
│ ├── 029_update_release_index.rb
│ ├── 030_convert_string_to_text.rb
│ ├── 031_add_hide_contact_info_to_user.rb
│ ├── 032_additional_indexes.rb
│ ├── 033_add_release_description.rb
│ ├── 034_add_allocation_expiration_date.rb
│ ├── 035_add_customer_field_to_user.rb
│ ├── 036_add_download_url.rb
│ ├── 037_lengthen_announcement.rb
│ ├── 038_add_poll.rb
│ ├── 039_create_poll_options.rb
│ ├── 040_add_poll_active.rb
│ ├── 041_add_poll_options_users.rb
│ ├── 042_add_poll_option_selectable_plus_indices.rb
│ ├── 043_add_type_to_comments.rb
│ ├── 044_add_updated_at_columns.rb
│ ├── 045_create_forums.rb
│ ├── 046_forum_mediators.rb
│ ├── 047_populate_mediator_role.rb
│ ├── 048_create_topics.rb
│ ├── 049_add_topic_id_to_comments.rb
│ ├── 050_create_user_topic_reads.rb
│ ├── 051_create_topic_watches.rb
│ ├── 052_add_comment_count.rb
│ ├── 053_create_periodic_jobs.rb
│ ├── 054_add_last_check_date_to_topic_watch.rb
│ ├── 055_create_forum_watch.rb
│ ├── 056_remove_updated_at_on_roles_users.rb
│ ├── 057_add_watch_on_vote_to_users.rb
│ ├── 058_add_session_cleaner_task.rb
│ ├── 059_add_poll_index.rb
│ ├── 060_add_topic_index.rb
│ ├── 061_add_group.rb
│ ├── 062_add_last_run_result_to_periodic_jobs.rb
│ ├── 063_create_group_members.rb
│ ├── 064_create_forum_groups.rb
│ ├── 065_acts_as_taggable_migration.rb
│ ├── 066_add_cached_tags.rb
│ ├── 067_add_user_request.rb
│ ├── 068_add_next_run_at.rb
│ ├── 069_create_simple_captcha_data.rb
│ ├── 20080919205740_add_timestamps_to_roles_users.rb
│ ├── 20080928014520_periodic_job_cleanup.rb
│ ├── 20080928020754_add_open_id.rb
│ ├── 20080929013836_add_open_id_authentication_tables.rb
│ ├── 20081002194955_lengthen_poll_title.rb
│ ├── 20081002201145_lengthen_topic_title.rb
│ ├── 20081003153734_add_task_scheduler_batch.rb
│ ├── 20081003160249_add_run_counter_to_periodic_jobs.rb
│ ├── 20081005231624_add_fck_editor_column.rb
│ ├── 20081007205348_touch_counter.rb
│ ├── 20081008013631_add_forum_active_flag.rb
│ ├── 20081018010549_add_enterprise_id.rb
│ ├── 20081018145110_add_idea_change_log.rb
│ ├── 20081020021852_create_enterprise_type_forums.rb
│ ├── 20081021020455_create_link_sets.rb
│ ├── 20081021020922_create_links.rb
│ ├── 20081021033325_add_link_set_reference.rb
│ ├── 20081021105524_add_link_set_label.rb
│ ├── 20081021172636_add_default_flag_to_link_set.rb
│ ├── 20081022005940_add_position_to_link.rb
│ ├── 20081023010704_add_email_sent_to_user_requests.rb
│ ├── 20081023160841_add_link_types.rb
│ ├── 20081024164306_add_email_request.rb
│ ├── 20081028013745_add_forum_group_to_forum.rb
│ ├── 20081029004022_create_poll_enterprise_types_and_groups.rb
│ ├── 20081030194709_add_restrict_topic_creation.rb
│ ├── 20081031015205_create_groups_user_requests.rb
│ ├── 20081031022210_create_roles_user_requests.rb
│ ├── 20081031145922_add_enterprise_type_to_user_request.rb
│ ├── 20081031163328_add_poll_id_to_comment.rb
│ ├── 20081031190420_add_publically_visible.rb
│ ├── 20081113180327_add_endorser_to_topic_comment.rb
│ ├── 20081113214038_seed_topic_endorsers.rb
│ ├── 20081114134126_create_products_watchers.rb
│ ├── 20081114170252_add_release_change_log.rb
│ ├── 20081116142453_create_attachments.rb
│ ├── 20081229014808_create_topic_import.rb
│ ├── 20090116033227_create_rates.rb
│ ├── 20090116040949_add_rating_cache_column.rb
│ ├── 20090118024317_add_private_to_comments.rb
│ ├── 20090118042341_populate_rebuild_index_periodic_job.rb
│ ├── 20090118171507_add_last_commented_at_to_topic.rb
│ ├── 20090118194132_add_power_user_group_to_forum.rb
│ ├── 20090119160141_add_published_at_to_comments.rb
│ ├── 20090121174906_add_public_to_attachments.rb
│ ├── 20090129160804_lengthen_filename.rb
│ ├── 20090129194632_add_display_order_to_forums.rb
│ ├── 20090204212649_add_dummy_to_user_topic_read.rb
│ ├── 20090211175855_add_tracking_to_topics.rb
│ ├── 20090213023402_add_downloads_to_attachment.rb
│ ├── 20090213133600_add_alias_to_attachments.rb
│ ├── 20090213194308_create_enterprise_types_attachments.rb
│ ├── 20090215012112_add_forum_type_to_forums.rb
│ ├── 20090216034325_update_rebuild_solr_index.rb
│ ├── 20090226021246_add_attachments_groups.rb
│ ├── 20090302214023_rename_topic_open.rb
│ ├── 20090306031024_attachment_edited_at.rb
│ ├── 20090817201051_add_version_dependencies.rb
│ ├── 20091005205814_add_external_release_id_to_releases.rb
│ ├── 20100412195314_create_slugs.rb
│ ├── 20100429184717_add_svn_path_to_product.rb
│ ├── 20100523063109_support_tickets.rb
│ ├── 20100720021159_add_delta_to_user.rb
│ ├── 20100721003052_add_delta_to_attachments.rb
│ ├── 20100721005613_add_delta_to_enterprise.rb
│ ├── 20100827164155_create_serial_numbers.rb
│ ├── 20100827164156_create_serial_number_release_maps.rb
│ ├── 20100908164931_create_portal_orgs.rb
│ ├── 20100908164933_create_portal_customers.rb
│ ├── 20100908170359_create_portal_certified_consultants.rb
│ ├── 20100908215357_create_portal_nfr_serial_nums.rb
│ ├── 20100910193838_create_portal_support_incidents.rb
│ ├── 20100911004014_create_portal_user_org_maps.rb
│ ├── 20100916194532_add_expires_at_to_release_map.rb
│ ├── 20100924172840_add_release_notes_to_release.rb
│ ├── 20100928123558_create_serial_number_release_map_histories.rb
│ ├── 20100928124614_populate_release_map_history.rb
│ ├── 20101004155638_add_view_portal_to_enterprise.rb
│ ├── 20101006184310_add_disable_user_to_user_orgs.rb
│ ├── 20101019180505_add_otp_to_user.rb
│ ├── 20101021215436_create_forum_metrics.rb
│ ├── 20101029163257_change_customer_expires_to_date.rb
│ ├── 20101101195502_add_topics_pending_to_metrics.rb
│ ├── 20101108015252_add_counter_to_product.rb
│ ├── 20101203020751_add_immediate_topic_notification.rb
│ ├── 20101209232118_convert_time_to_date_for_nfrs.rb
│ ├── 20110119011501_add_oldest_pending_days.rb
│ └── seed_data
│ └── lookup_codes.yml
├── doc
├── ER
│ ├── Allocations.jpg
│ ├── Forums.jpg
│ ├── Ideas.jpg
│ ├── Misc.jpg
│ ├── OpenID.jpg
│ ├── OpenMind.xed
│ ├── Polls.jpg
│ ├── Products.jpg
│ ├── Users.jpg
│ └── erd.mwb
├── Manual.docx
├── Manual.pdf
├── README_FOR_APP
└── UserPrivleges.xls
├── lib
├── authenticated_system.rb
├── authenticated_test_helper.rb
├── csv_utils.rb
├── date_utils.rb
├── exceptions
│ └── vote_exception.rb
├── migration_helpers.rb
├── openmind_version.rb
├── search_utils.rb
├── session_cleaner.rb
├── string_utils.rb
├── task_server_logger.rb
├── tasks
│ ├── friendly_id.rake
│ ├── rails.rake
│ └── seed.rake
└── tls_smtp.rb
├── log
└── .gitignore
├── public
├── 404.html
├── 500.html
├── blank_iframe.html
├── dispatch.cgi
├── dispatch.fcgi
├── dispatch.rb
├── favicon.ico
├── images
│ ├── ajaxful_rating
│ │ ├── star.png
│ │ └── star_small.png
│ ├── blank.gif
│ ├── calendar_date_select
│ │ └── calendar.gif
│ ├── close.gif
│ ├── closelabel.gif
│ ├── general
│ │ ├── 48-facebook.png
│ │ ├── 48-twitter.png
│ │ └── transparent.gif
│ ├── loading.gif
│ ├── next.gif
│ ├── nextlabel.gif
│ ├── prev.gif
│ └── prevlabel.gif
├── javascripts
│ ├── application.js
│ ├── builder.js
│ ├── calendar_date_select
│ │ ├── calendar_date_select.js
│ │ ├── format_american.js
│ │ ├── format_db.js
│ │ ├── format_euro_24hr.js
│ │ ├── format_finnish.js
│ │ ├── format_hyphen_ampm.js
│ │ ├── format_italian.js
│ │ └── locale
│ │ │ ├── fi.js
│ │ │ └── pl.js
│ ├── controls.js
│ ├── ddaccordion.js
│ ├── dragdrop.js
│ ├── effects.js
│ ├── fckcustom.js
│ ├── fckeditor
│ │ ├── _documentation.html
│ │ ├── _samples
│ │ │ ├── _plugins
│ │ │ │ ├── findreplace
│ │ │ │ │ ├── fckplugin.js
│ │ │ │ │ ├── find.gif
│ │ │ │ │ ├── find.html
│ │ │ │ │ ├── lang
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ └── it.js
│ │ │ │ │ ├── replace.gif
│ │ │ │ │ └── replace.html
│ │ │ │ └── samples
│ │ │ │ │ └── fckplugin.js
│ │ │ ├── adobeair
│ │ │ │ ├── application.xml
│ │ │ │ ├── icons
│ │ │ │ │ ├── 128.png
│ │ │ │ │ ├── 16.png
│ │ │ │ │ ├── 32.png
│ │ │ │ │ └── 48.png
│ │ │ │ ├── package.bat
│ │ │ │ ├── run.bat
│ │ │ │ ├── sample01.html
│ │ │ │ └── sample01_cert.pfx
│ │ │ ├── afp
│ │ │ │ ├── fck.afpa
│ │ │ │ ├── fck.afpa.code
│ │ │ │ ├── sample01.afp
│ │ │ │ ├── sample02.afp
│ │ │ │ ├── sample03.afp
│ │ │ │ ├── sample04.afp
│ │ │ │ └── sampleposteddata.afp
│ │ │ ├── asp
│ │ │ │ ├── sample01.asp
│ │ │ │ ├── sample02.asp
│ │ │ │ ├── sample03.asp
│ │ │ │ ├── sample04.asp
│ │ │ │ └── sampleposteddata.asp
│ │ │ ├── cfm
│ │ │ │ ├── sample01.cfm
│ │ │ │ ├── sample01_mx.cfm
│ │ │ │ ├── sample02.cfm
│ │ │ │ ├── sample02_mx.cfm
│ │ │ │ ├── sample03.cfm
│ │ │ │ ├── sample03_mx.cfm
│ │ │ │ ├── sample04.cfm
│ │ │ │ ├── sample04_mx.cfm
│ │ │ │ └── sampleposteddata.cfm
│ │ │ ├── default.html
│ │ │ ├── html
│ │ │ │ ├── sample01.html
│ │ │ │ ├── sample02.html
│ │ │ │ ├── sample03.html
│ │ │ │ ├── sample04.html
│ │ │ │ ├── sample05.html
│ │ │ │ ├── sample06.config.js
│ │ │ │ ├── sample06.html
│ │ │ │ ├── sample07.html
│ │ │ │ ├── sample08.html
│ │ │ │ ├── sample09.html
│ │ │ │ ├── sample10.html
│ │ │ │ ├── sample11.html
│ │ │ │ ├── sample11_frame.html
│ │ │ │ ├── sample12.html
│ │ │ │ ├── sample13.html
│ │ │ │ ├── sample14.config.js
│ │ │ │ ├── sample14.html
│ │ │ │ ├── sample14.styles.css
│ │ │ │ ├── sampleposteddata.asp
│ │ │ │ └── sampleposteddata.html
│ │ │ ├── lasso
│ │ │ │ ├── sample01.lasso
│ │ │ │ ├── sample02.lasso
│ │ │ │ ├── sample03.lasso
│ │ │ │ ├── sample04.lasso
│ │ │ │ └── sampleposteddata.lasso
│ │ │ ├── perl
│ │ │ │ ├── sample01.cgi
│ │ │ │ ├── sample02.cgi
│ │ │ │ ├── sample03.cgi
│ │ │ │ ├── sample04.cgi
│ │ │ │ └── sampleposteddata.cgi
│ │ │ ├── php
│ │ │ │ ├── sample01.php
│ │ │ │ ├── sample02.php
│ │ │ │ ├── sample03.php
│ │ │ │ ├── sample04.php
│ │ │ │ └── sampleposteddata.php
│ │ │ ├── py
│ │ │ │ ├── sample01.py
│ │ │ │ └── sampleposteddata.py
│ │ │ ├── sample.css
│ │ │ └── sampleslist.html
│ │ ├── _upgrade.html
│ │ ├── _whatsnew.html
│ │ ├── _whatsnew_history.html
│ │ ├── editor
│ │ │ ├── _source
│ │ │ │ ├── classes
│ │ │ │ │ ├── fckcontextmenu.js
│ │ │ │ │ ├── fckdataprocessor.js
│ │ │ │ │ ├── fckdocumentfragment_gecko.js
│ │ │ │ │ ├── fckdocumentfragment_ie.js
│ │ │ │ │ ├── fckdomrange.js
│ │ │ │ │ ├── fckdomrange_gecko.js
│ │ │ │ │ ├── fckdomrange_ie.js
│ │ │ │ │ ├── fckdomrangeiterator.js
│ │ │ │ │ ├── fckeditingarea.js
│ │ │ │ │ ├── fckelementpath.js
│ │ │ │ │ ├── fckenterkey.js
│ │ │ │ │ ├── fckevents.js
│ │ │ │ │ ├── fckhtmliterator.js
│ │ │ │ │ ├── fckicon.js
│ │ │ │ │ ├── fckiecleanup.js
│ │ │ │ │ ├── fckimagepreloader.js
│ │ │ │ │ ├── fckkeystrokehandler.js
│ │ │ │ │ ├── fckmenublock.js
│ │ │ │ │ ├── fckmenublockpanel.js
│ │ │ │ │ ├── fckmenuitem.js
│ │ │ │ │ ├── fckpanel.js
│ │ │ │ │ ├── fckplugin.js
│ │ │ │ │ ├── fckspecialcombo.js
│ │ │ │ │ ├── fckstyle.js
│ │ │ │ │ ├── fcktoolbar.js
│ │ │ │ │ ├── fcktoolbarbreak_gecko.js
│ │ │ │ │ ├── fcktoolbarbreak_ie.js
│ │ │ │ │ ├── fcktoolbarbutton.js
│ │ │ │ │ ├── fcktoolbarbuttonui.js
│ │ │ │ │ ├── fcktoolbarfontformatcombo.js
│ │ │ │ │ ├── fcktoolbarfontscombo.js
│ │ │ │ │ ├── fcktoolbarfontsizecombo.js
│ │ │ │ │ ├── fcktoolbarpanelbutton.js
│ │ │ │ │ ├── fcktoolbarspecialcombo.js
│ │ │ │ │ ├── fcktoolbarstylecombo.js
│ │ │ │ │ ├── fckw3crange.js
│ │ │ │ │ ├── fckxml.js
│ │ │ │ │ ├── fckxml_gecko.js
│ │ │ │ │ └── fckxml_ie.js
│ │ │ │ ├── commandclasses
│ │ │ │ │ ├── fck_othercommands.js
│ │ │ │ │ ├── fckblockquotecommand.js
│ │ │ │ │ ├── fckcorestylecommand.js
│ │ │ │ │ ├── fckfitwindow.js
│ │ │ │ │ ├── fckindentcommands.js
│ │ │ │ │ ├── fckjustifycommands.js
│ │ │ │ │ ├── fcklistcommands.js
│ │ │ │ │ ├── fcknamedcommand.js
│ │ │ │ │ ├── fckpasteplaintextcommand.js
│ │ │ │ │ ├── fckpastewordcommand.js
│ │ │ │ │ ├── fckremoveformatcommand.js
│ │ │ │ │ ├── fckshowblocks.js
│ │ │ │ │ ├── fckspellcheckcommand_gecko.js
│ │ │ │ │ ├── fckspellcheckcommand_ie.js
│ │ │ │ │ ├── fckstylecommand.js
│ │ │ │ │ ├── fcktablecommand.js
│ │ │ │ │ └── fcktextcolorcommand.js
│ │ │ │ ├── fckconstants.js
│ │ │ │ ├── fckeditorapi.js
│ │ │ │ ├── fckjscoreextensions.js
│ │ │ │ ├── fckscriptloader.js
│ │ │ │ └── internals
│ │ │ │ │ ├── fck.js
│ │ │ │ │ ├── fck_contextmenu.js
│ │ │ │ │ ├── fck_gecko.js
│ │ │ │ │ ├── fck_ie.js
│ │ │ │ │ ├── fckbrowserinfo.js
│ │ │ │ │ ├── fckcodeformatter.js
│ │ │ │ │ ├── fckcommands.js
│ │ │ │ │ ├── fckconfig.js
│ │ │ │ │ ├── fckdebug.js
│ │ │ │ │ ├── fckdialog.js
│ │ │ │ │ ├── fckdialog_gecko.js
│ │ │ │ │ ├── fckdialog_ie.js
│ │ │ │ │ ├── fckdocumentprocessor.js
│ │ │ │ │ ├── fckdomtools.js
│ │ │ │ │ ├── fcklanguagemanager.js
│ │ │ │ │ ├── fcklisthandler.js
│ │ │ │ │ ├── fcklistslib.js
│ │ │ │ │ ├── fckplugins.js
│ │ │ │ │ ├── fckregexlib.js
│ │ │ │ │ ├── fckselection.js
│ │ │ │ │ ├── fckselection_gecko.js
│ │ │ │ │ ├── fckselection_ie.js
│ │ │ │ │ ├── fckstyles.js
│ │ │ │ │ ├── fcktablehandler.js
│ │ │ │ │ ├── fcktablehandler_gecko.js
│ │ │ │ │ ├── fcktablehandler_ie.js
│ │ │ │ │ ├── fcktoolbaritems.js
│ │ │ │ │ ├── fcktoolbarset.js
│ │ │ │ │ ├── fcktools.js
│ │ │ │ │ ├── fcktools_gecko.js
│ │ │ │ │ ├── fcktools_ie.js
│ │ │ │ │ ├── fckundo.js
│ │ │ │ │ ├── fckurlparams.js
│ │ │ │ │ ├── fckxhtml.js
│ │ │ │ │ ├── fckxhtml_gecko.js
│ │ │ │ │ ├── fckxhtml_ie.js
│ │ │ │ │ └── fckxhtmlentities.js
│ │ │ ├── css
│ │ │ │ ├── behaviors
│ │ │ │ │ ├── disablehandles.htc
│ │ │ │ │ └── showtableborders.htc
│ │ │ │ ├── fck_editorarea.css
│ │ │ │ ├── fck_internal.css
│ │ │ │ ├── fck_showtableborders_gecko.css
│ │ │ │ └── images
│ │ │ │ │ ├── block_address.png
│ │ │ │ │ ├── block_blockquote.png
│ │ │ │ │ ├── block_div.png
│ │ │ │ │ ├── block_h1.png
│ │ │ │ │ ├── block_h2.png
│ │ │ │ │ ├── block_h3.png
│ │ │ │ │ ├── block_h4.png
│ │ │ │ │ ├── block_h5.png
│ │ │ │ │ ├── block_h6.png
│ │ │ │ │ ├── block_p.png
│ │ │ │ │ ├── block_pre.png
│ │ │ │ │ ├── fck_anchor.gif
│ │ │ │ │ ├── fck_flashlogo.gif
│ │ │ │ │ ├── fck_hiddenfield.gif
│ │ │ │ │ ├── fck_pagebreak.gif
│ │ │ │ │ └── fck_plugin.gif
│ │ │ ├── dialog
│ │ │ │ ├── common
│ │ │ │ │ ├── fck_dialog_common.css
│ │ │ │ │ ├── fck_dialog_common.js
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── locked.gif
│ │ │ │ │ │ ├── reset.gif
│ │ │ │ │ │ └── unlocked.gif
│ │ │ │ ├── fck_about.html
│ │ │ │ ├── fck_about
│ │ │ │ │ ├── logo_fckeditor.gif
│ │ │ │ │ ├── logo_fredck.gif
│ │ │ │ │ └── sponsors
│ │ │ │ │ │ └── spellchecker_net.gif
│ │ │ │ ├── fck_anchor.html
│ │ │ │ ├── fck_button.html
│ │ │ │ ├── fck_checkbox.html
│ │ │ │ ├── fck_colorselector.html
│ │ │ │ ├── fck_docprops.html
│ │ │ │ ├── fck_docprops
│ │ │ │ │ └── fck_document_preview.html
│ │ │ │ ├── fck_find.html
│ │ │ │ ├── fck_flash.html
│ │ │ │ ├── fck_flash
│ │ │ │ │ ├── fck_flash.js
│ │ │ │ │ └── fck_flash_preview.html
│ │ │ │ ├── fck_form.html
│ │ │ │ ├── fck_hiddenfield.html
│ │ │ │ ├── fck_image.html
│ │ │ │ ├── fck_image
│ │ │ │ │ ├── fck_image.js
│ │ │ │ │ └── fck_image_preview.html
│ │ │ │ ├── fck_link.html
│ │ │ │ ├── fck_link
│ │ │ │ │ └── fck_link.js
│ │ │ │ ├── fck_listprop.html
│ │ │ │ ├── fck_paste.html
│ │ │ │ ├── fck_radiobutton.html
│ │ │ │ ├── fck_replace.html
│ │ │ │ ├── fck_select.html
│ │ │ │ ├── fck_select
│ │ │ │ │ └── fck_select.js
│ │ │ │ ├── fck_smiley.html
│ │ │ │ ├── fck_source.html
│ │ │ │ ├── fck_specialchar.html
│ │ │ │ ├── fck_spellerpages.html
│ │ │ │ ├── fck_spellerpages
│ │ │ │ │ └── spellerpages
│ │ │ │ │ │ ├── blank.html
│ │ │ │ │ │ ├── controlWindow.js
│ │ │ │ │ │ ├── controls.html
│ │ │ │ │ │ ├── server-scripts
│ │ │ │ │ │ ├── spellchecker.cfm
│ │ │ │ │ │ ├── spellchecker.php
│ │ │ │ │ │ └── spellchecker.pl
│ │ │ │ │ │ ├── spellChecker.js
│ │ │ │ │ │ ├── spellchecker.html
│ │ │ │ │ │ ├── spellerStyle.css
│ │ │ │ │ │ └── wordWindow.js
│ │ │ │ ├── fck_table.html
│ │ │ │ ├── fck_tablecell.html
│ │ │ │ ├── fck_template.html
│ │ │ │ ├── fck_template
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── template1.gif
│ │ │ │ │ │ ├── template2.gif
│ │ │ │ │ │ └── template3.gif
│ │ │ │ ├── fck_textarea.html
│ │ │ │ └── fck_textfield.html
│ │ │ ├── dtd
│ │ │ │ ├── fck_dtd_test.html
│ │ │ │ ├── fck_xhtml10strict.js
│ │ │ │ └── fck_xhtml10transitional.js
│ │ │ ├── fckdebug.html
│ │ │ ├── fckdialog.html
│ │ │ ├── fckeditor.html
│ │ │ ├── fckeditor.original.html
│ │ │ ├── filemanager
│ │ │ │ ├── browser
│ │ │ │ │ └── default
│ │ │ │ │ │ ├── browser.css
│ │ │ │ │ │ ├── browser.html
│ │ │ │ │ │ ├── frmactualfolder.html
│ │ │ │ │ │ ├── frmcreatefolder.html
│ │ │ │ │ │ ├── frmfolders.html
│ │ │ │ │ │ ├── frmresourceslist.html
│ │ │ │ │ │ ├── frmresourcetype.html
│ │ │ │ │ │ ├── frmupload.html
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ ├── ButtonArrow.gif
│ │ │ │ │ │ ├── Folder.gif
│ │ │ │ │ │ ├── Folder32.gif
│ │ │ │ │ │ ├── FolderOpened.gif
│ │ │ │ │ │ ├── FolderOpened32.gif
│ │ │ │ │ │ ├── FolderUp.gif
│ │ │ │ │ │ ├── icons
│ │ │ │ │ │ │ ├── 32
│ │ │ │ │ │ │ │ ├── ai.gif
│ │ │ │ │ │ │ │ ├── avi.gif
│ │ │ │ │ │ │ │ ├── bmp.gif
│ │ │ │ │ │ │ │ ├── cs.gif
│ │ │ │ │ │ │ │ ├── default.icon.gif
│ │ │ │ │ │ │ │ ├── dll.gif
│ │ │ │ │ │ │ │ ├── doc.gif
│ │ │ │ │ │ │ │ ├── exe.gif
│ │ │ │ │ │ │ │ ├── fla.gif
│ │ │ │ │ │ │ │ ├── gif.gif
│ │ │ │ │ │ │ │ ├── htm.gif
│ │ │ │ │ │ │ │ ├── html.gif
│ │ │ │ │ │ │ │ ├── jpg.gif
│ │ │ │ │ │ │ │ ├── js.gif
│ │ │ │ │ │ │ │ ├── mdb.gif
│ │ │ │ │ │ │ │ ├── mp3.gif
│ │ │ │ │ │ │ │ ├── pdf.gif
│ │ │ │ │ │ │ │ ├── png.gif
│ │ │ │ │ │ │ │ ├── ppt.gif
│ │ │ │ │ │ │ │ ├── rdp.gif
│ │ │ │ │ │ │ │ ├── swf.gif
│ │ │ │ │ │ │ │ ├── swt.gif
│ │ │ │ │ │ │ │ ├── txt.gif
│ │ │ │ │ │ │ │ ├── vsd.gif
│ │ │ │ │ │ │ │ ├── xls.gif
│ │ │ │ │ │ │ │ ├── xml.gif
│ │ │ │ │ │ │ │ └── zip.gif
│ │ │ │ │ │ │ ├── ai.gif
│ │ │ │ │ │ │ ├── avi.gif
│ │ │ │ │ │ │ ├── bmp.gif
│ │ │ │ │ │ │ ├── cs.gif
│ │ │ │ │ │ │ ├── default.icon.gif
│ │ │ │ │ │ │ ├── dll.gif
│ │ │ │ │ │ │ ├── doc.gif
│ │ │ │ │ │ │ ├── exe.gif
│ │ │ │ │ │ │ ├── fla.gif
│ │ │ │ │ │ │ ├── gif.gif
│ │ │ │ │ │ │ ├── htm.gif
│ │ │ │ │ │ │ ├── html.gif
│ │ │ │ │ │ │ ├── jpg.gif
│ │ │ │ │ │ │ ├── js.gif
│ │ │ │ │ │ │ ├── mdb.gif
│ │ │ │ │ │ │ ├── mp3.gif
│ │ │ │ │ │ │ ├── pdf.gif
│ │ │ │ │ │ │ ├── png.gif
│ │ │ │ │ │ │ ├── ppt.gif
│ │ │ │ │ │ │ ├── rdp.gif
│ │ │ │ │ │ │ ├── swf.gif
│ │ │ │ │ │ │ ├── swt.gif
│ │ │ │ │ │ │ ├── txt.gif
│ │ │ │ │ │ │ ├── vsd.gif
│ │ │ │ │ │ │ ├── xls.gif
│ │ │ │ │ │ │ ├── xml.gif
│ │ │ │ │ │ │ └── zip.gif
│ │ │ │ │ │ └── spacer.gif
│ │ │ │ │ │ └── js
│ │ │ │ │ │ ├── common.js
│ │ │ │ │ │ └── fckxml.js
│ │ │ │ └── connectors
│ │ │ │ │ ├── asp
│ │ │ │ │ ├── basexml.asp
│ │ │ │ │ ├── class_upload.asp
│ │ │ │ │ ├── commands.asp
│ │ │ │ │ ├── config.asp
│ │ │ │ │ ├── connector.asp
│ │ │ │ │ ├── io.asp
│ │ │ │ │ ├── upload.asp
│ │ │ │ │ └── util.asp
│ │ │ │ │ ├── aspx
│ │ │ │ │ ├── config.ascx
│ │ │ │ │ ├── connector.aspx
│ │ │ │ │ └── upload.aspx
│ │ │ │ │ ├── cfm
│ │ │ │ │ ├── ImageObject.cfc
│ │ │ │ │ ├── cf5_connector.cfm
│ │ │ │ │ ├── cf5_upload.cfm
│ │ │ │ │ ├── cf_basexml.cfm
│ │ │ │ │ ├── cf_commands.cfm
│ │ │ │ │ ├── cf_connector.cfm
│ │ │ │ │ ├── cf_io.cfm
│ │ │ │ │ ├── cf_upload.cfm
│ │ │ │ │ ├── cf_util.cfm
│ │ │ │ │ ├── config.cfm
│ │ │ │ │ ├── connector.cfm
│ │ │ │ │ ├── image.cfc
│ │ │ │ │ └── upload.cfm
│ │ │ │ │ ├── lasso
│ │ │ │ │ ├── config.lasso
│ │ │ │ │ ├── connector.lasso
│ │ │ │ │ └── upload.lasso
│ │ │ │ │ ├── perl
│ │ │ │ │ ├── basexml.pl
│ │ │ │ │ ├── commands.pl
│ │ │ │ │ ├── connector.cgi
│ │ │ │ │ ├── io.pl
│ │ │ │ │ ├── upload.cgi
│ │ │ │ │ ├── upload_fck.pl
│ │ │ │ │ └── util.pl
│ │ │ │ │ ├── php
│ │ │ │ │ ├── basexml.php
│ │ │ │ │ ├── commands.php
│ │ │ │ │ ├── config.php
│ │ │ │ │ ├── connector.php
│ │ │ │ │ ├── io.php
│ │ │ │ │ ├── phpcompat.php
│ │ │ │ │ ├── upload.php
│ │ │ │ │ └── util.php
│ │ │ │ │ ├── py
│ │ │ │ │ ├── config.py
│ │ │ │ │ ├── connector.py
│ │ │ │ │ ├── fckcommands.py
│ │ │ │ │ ├── fckconnector.py
│ │ │ │ │ ├── fckoutput.py
│ │ │ │ │ ├── fckutil.py
│ │ │ │ │ ├── htaccess.txt
│ │ │ │ │ ├── upload.py
│ │ │ │ │ ├── wsgi.py
│ │ │ │ │ └── zope.py
│ │ │ │ │ ├── test.html
│ │ │ │ │ └── uploadtest.html
│ │ │ ├── images
│ │ │ │ ├── anchor.gif
│ │ │ │ ├── arrow_ltr.gif
│ │ │ │ ├── arrow_rtl.gif
│ │ │ │ ├── smiley
│ │ │ │ │ └── msn
│ │ │ │ │ │ ├── angel_smile.gif
│ │ │ │ │ │ ├── angry_smile.gif
│ │ │ │ │ │ ├── broken_heart.gif
│ │ │ │ │ │ ├── cake.gif
│ │ │ │ │ │ ├── confused_smile.gif
│ │ │ │ │ │ ├── cry_smile.gif
│ │ │ │ │ │ ├── devil_smile.gif
│ │ │ │ │ │ ├── embaressed_smile.gif
│ │ │ │ │ │ ├── envelope.gif
│ │ │ │ │ │ ├── heart.gif
│ │ │ │ │ │ ├── kiss.gif
│ │ │ │ │ │ ├── lightbulb.gif
│ │ │ │ │ │ ├── omg_smile.gif
│ │ │ │ │ │ ├── regular_smile.gif
│ │ │ │ │ │ ├── sad_smile.gif
│ │ │ │ │ │ ├── shades_smile.gif
│ │ │ │ │ │ ├── teeth_smile.gif
│ │ │ │ │ │ ├── thumbs_down.gif
│ │ │ │ │ │ ├── thumbs_up.gif
│ │ │ │ │ │ ├── tounge_smile.gif
│ │ │ │ │ │ ├── whatchutalkingabout_smile.gif
│ │ │ │ │ │ └── wink_smile.gif
│ │ │ │ └── spacer.gif
│ │ │ ├── js
│ │ │ │ ├── fckadobeair.js
│ │ │ │ ├── fckeditorcode_gecko.js
│ │ │ │ └── fckeditorcode_ie.js
│ │ │ ├── lang
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── bn.js
│ │ │ │ ├── bs.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-au.js
│ │ │ │ ├── en-ca.js
│ │ │ │ ├── en-uk.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fo.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hi.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── mn.js
│ │ │ │ ├── ms.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sr-latn.js
│ │ │ │ ├── sr.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ │ ├── plugins
│ │ │ │ ├── autogrow
│ │ │ │ │ └── fckplugin.js
│ │ │ │ ├── bbcode
│ │ │ │ │ ├── _sample
│ │ │ │ │ │ ├── sample.config.js
│ │ │ │ │ │ └── sample.html
│ │ │ │ │ └── fckplugin.js
│ │ │ │ ├── dragresizetable
│ │ │ │ │ └── fckplugin.js
│ │ │ │ ├── placeholder
│ │ │ │ │ ├── fck_placeholder.html
│ │ │ │ │ ├── fckplugin.js
│ │ │ │ │ ├── lang
│ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ └── pl.js
│ │ │ │ │ └── placeholder.gif
│ │ │ │ ├── simplecommands
│ │ │ │ │ └── fckplugin.js
│ │ │ │ └── tablecommands
│ │ │ │ │ └── fckplugin.js
│ │ │ └── skins
│ │ │ │ ├── _fckviewstrips.html
│ │ │ │ ├── default
│ │ │ │ ├── fck_dialog.css
│ │ │ │ ├── fck_dialog_ie6.js
│ │ │ │ ├── fck_editor.css
│ │ │ │ ├── fck_strip.gif
│ │ │ │ └── images
│ │ │ │ │ ├── dialog.sides.gif
│ │ │ │ │ ├── dialog.sides.png
│ │ │ │ │ ├── dialog.sides.rtl.png
│ │ │ │ │ ├── sprites.gif
│ │ │ │ │ ├── sprites.png
│ │ │ │ │ ├── toolbar.arrowright.gif
│ │ │ │ │ ├── toolbar.buttonarrow.gif
│ │ │ │ │ ├── toolbar.collapse.gif
│ │ │ │ │ ├── toolbar.end.gif
│ │ │ │ │ ├── toolbar.expand.gif
│ │ │ │ │ ├── toolbar.separator.gif
│ │ │ │ │ └── toolbar.start.gif
│ │ │ │ ├── office2003
│ │ │ │ ├── fck_dialog.css
│ │ │ │ ├── fck_dialog_ie6.js
│ │ │ │ ├── fck_editor.css
│ │ │ │ ├── fck_strip.gif
│ │ │ │ └── images
│ │ │ │ │ ├── dialog.sides.gif
│ │ │ │ │ ├── dialog.sides.png
│ │ │ │ │ ├── dialog.sides.rtl.png
│ │ │ │ │ ├── sprites.gif
│ │ │ │ │ ├── sprites.png
│ │ │ │ │ ├── toolbar.arrowright.gif
│ │ │ │ │ ├── toolbar.bg.gif
│ │ │ │ │ ├── toolbar.buttonarrow.gif
│ │ │ │ │ ├── toolbar.collapse.gif
│ │ │ │ │ ├── toolbar.end.gif
│ │ │ │ │ ├── toolbar.expand.gif
│ │ │ │ │ ├── toolbar.separator.gif
│ │ │ │ │ └── toolbar.start.gif
│ │ │ │ └── silver
│ │ │ │ ├── fck_dialog.css
│ │ │ │ ├── fck_dialog_ie6.js
│ │ │ │ ├── fck_editor.css
│ │ │ │ ├── fck_strip.gif
│ │ │ │ └── images
│ │ │ │ ├── dialog.sides.gif
│ │ │ │ ├── dialog.sides.png
│ │ │ │ ├── dialog.sides.rtl.png
│ │ │ │ ├── sprites.gif
│ │ │ │ ├── sprites.png
│ │ │ │ ├── toolbar.arrowright.gif
│ │ │ │ ├── toolbar.buttonarrow.gif
│ │ │ │ ├── toolbar.buttonbg.gif
│ │ │ │ ├── toolbar.collapse.gif
│ │ │ │ ├── toolbar.end.gif
│ │ │ │ ├── toolbar.expand.gif
│ │ │ │ ├── toolbar.separator.gif
│ │ │ │ └── toolbar.start.gif
│ │ ├── fckconfig.js
│ │ ├── fckeditor.afp
│ │ ├── fckeditor.asp
│ │ ├── fckeditor.cfc
│ │ ├── fckeditor.cfm
│ │ ├── fckeditor.js
│ │ ├── fckeditor.lasso
│ │ ├── fckeditor.php
│ │ ├── fckeditor.pl
│ │ ├── fckeditor.py
│ │ ├── fckeditor_php4.php
│ │ ├── fckeditor_php5.php
│ │ ├── fckpackager.xml
│ │ ├── fckstyles.xml
│ │ ├── fcktemplates.xml
│ │ ├── fckutils.cfm
│ │ └── license.txt
│ ├── jquery-1.2.6.min.js
│ ├── lightbox.js
│ ├── prototype.js
│ ├── pwd_strength.js
│ ├── scriptaculous.js
│ ├── sevenup.0.2.js
│ ├── sevenup.0.2.min.js
│ ├── slider.js
│ ├── sound.js
│ ├── swfobject.js
│ ├── tablecloth.js
│ ├── tip_balloon.js
│ ├── unittest.js
│ └── wz_tooltip.js
├── mockups
│ └── original
│ │ ├── email_template.html
│ │ ├── email_template_2.html
│ │ ├── images
│ │ ├── arrow.gif
│ │ ├── headers
│ │ │ ├── brand.jpg
│ │ │ ├── emailHeader.jpg
│ │ │ ├── headerBgTile.jpg
│ │ │ ├── headerBrandingLogo.jpg
│ │ │ ├── headerBrandingLogo2.jpg
│ │ │ ├── headerMastheadTile.jpg
│ │ │ └── headerTopNavBarTile.jpg
│ │ ├── li.gif
│ │ ├── li_hover.gif
│ │ ├── menus
│ │ │ ├── blockactive.gif
│ │ │ ├── blockdefault.gif
│ │ │ ├── footerBgTile.gif
│ │ │ ├── footerMenuBgTile.gif
│ │ │ ├── lowerNavTile.gif
│ │ │ ├── topMenuItem.gif
│ │ │ ├── topMenuItemActive.gif
│ │ │ └── topMenuItemHover.gif
│ │ ├── sidebar.gif
│ │ └── tr_back.gif
│ │ ├── index.htm
│ │ ├── js
│ │ ├── reflection.js
│ │ └── tablecloth.js
│ │ ├── layoutNoCols.html
│ │ ├── layoutThreeCol.html
│ │ ├── layoutWideLeft.html
│ │ ├── layoutWideRight.html
│ │ └── stylesheets
│ │ ├── forms.css
│ │ ├── global.css
│ │ ├── sideBarLeft.css
│ │ ├── sideBarRight.css
│ │ ├── sideBarsBoth.css
│ │ └── tables.css
├── newhtml.html
├── open-flash-chart-bar-clicking.swf
├── open-flash-chart.swf
├── robots.txt
├── stylesheets
│ ├── ajaxful_rating.css
│ ├── calendar_date_select
│ │ ├── blue.css
│ │ ├── default.css
│ │ ├── plain.css
│ │ ├── red.css
│ │ └── silver.css
│ └── lightbox.css
└── themes
│ └── openmind
│ ├── images
│ ├── email
│ │ ├── emailHeader.jpg
│ │ └── user_48.png
│ ├── forms
│ │ └── headerBgTile.gif
│ ├── general
│ │ ├── allocations
│ │ │ ├── export.png
│ │ │ └── file_download.png
│ │ ├── commentBoxArrow.gif
│ │ ├── li.gif
│ │ ├── li_hover.gif
│ │ ├── sidebar.gif
│ │ └── users
│ │ │ └── export.png
│ ├── headers
│ │ ├── brand.jpg
│ │ ├── headerBgTile.jpg
│ │ ├── headerBrandingLogo.jpg
│ │ ├── headerBrandingLogo2.jpg
│ │ ├── headerMastheadTile.jpg
│ │ └── headerTopNavBarTile.jpg
│ ├── icons
│ │ ├── 128x128
│ │ │ └── blacksquareOff.png
│ │ ├── 14x14
│ │ │ ├── commentAdd.png
│ │ │ ├── email.png
│ │ │ ├── feed-icon-14x14.png
│ │ │ ├── openid-14x14.gif
│ │ │ └── pin-14x14.gif
│ │ ├── 16x16
│ │ │ ├── 16-check.png
│ │ │ ├── allocations.png
│ │ │ ├── announcements.png
│ │ │ ├── announcements1.png
│ │ │ ├── announcements2.png
│ │ │ ├── arrow_up.png
│ │ │ ├── back.png
│ │ │ ├── book.png
│ │ │ ├── checked_comment.png
│ │ │ ├── comment.png
│ │ │ ├── commentAdd.png
│ │ │ ├── deleteAction.png
│ │ │ ├── download.png
│ │ │ ├── editAction.png
│ │ │ ├── email.png
│ │ │ ├── enterprises.png
│ │ │ ├── folder.png
│ │ │ ├── forums.png
│ │ │ ├── hide.png
│ │ │ ├── ideas.png
│ │ │ ├── ideasAdd.png
│ │ │ ├── ideasEdit.png
│ │ │ ├── ideasList.png
│ │ │ ├── ideasMerge.png
│ │ │ ├── ideasUnmerge.png
│ │ │ ├── linkset.png
│ │ │ ├── lookupCodes.png
│ │ │ ├── next.png
│ │ │ ├── paperclip.png
│ │ │ ├── periodicJobs.png
│ │ │ ├── polls.png
│ │ │ ├── power_user.png
│ │ │ ├── productReleases.png
│ │ │ ├── products.png
│ │ │ ├── question.png
│ │ │ ├── releasesView.png
│ │ │ ├── show.png
│ │ │ ├── user.png
│ │ │ ├── userDelete.png
│ │ │ ├── userEdit.png
│ │ │ ├── user_group.png
│ │ │ ├── viewAction.png
│ │ │ ├── vote.png
│ │ │ ├── voteRescind.png
│ │ │ └── watchAdd.png
│ │ ├── 24x24
│ │ │ ├── announcements.png
│ │ │ ├── announcements1.png
│ │ │ ├── announcements2.png
│ │ │ ├── checked_comment.png
│ │ │ ├── comment.png
│ │ │ ├── commentAdd.png
│ │ │ ├── deleteAction.png
│ │ │ ├── download.png
│ │ │ ├── editAction.png
│ │ │ ├── email.png
│ │ │ ├── enterprises.png
│ │ │ ├── flashError.png
│ │ │ ├── flashNotice.png
│ │ │ ├── folder.png
│ │ │ ├── forums.png
│ │ │ ├── ideas.png
│ │ │ ├── ideasAdd.png
│ │ │ ├── ideasEdit.png
│ │ │ ├── ideasList.png
│ │ │ ├── ideasMerge.png
│ │ │ ├── ideasUnmerge.png
│ │ │ ├── linkset.png
│ │ │ ├── lookupCodes.png
│ │ │ ├── paperclip.png
│ │ │ ├── periodicJobs.png
│ │ │ ├── polls.png
│ │ │ ├── productReleases.png
│ │ │ ├── products.png
│ │ │ ├── question.png
│ │ │ ├── user.png
│ │ │ ├── userEdit.png
│ │ │ ├── user_group.png
│ │ │ ├── viewAction.png
│ │ │ ├── vote.png
│ │ │ ├── voteRescind.png
│ │ │ ├── watchAdd.png
│ │ │ └── watchRemove.png
│ │ ├── 32x32
│ │ │ ├── allocations.png
│ │ │ ├── announcements.png
│ │ │ ├── announcements1.png
│ │ │ ├── announcements2.png
│ │ │ ├── checked_comment.png
│ │ │ ├── comment.png
│ │ │ ├── commentAdd.png
│ │ │ ├── download.png
│ │ │ ├── email.png
│ │ │ ├── enterprises.png
│ │ │ ├── flashError.png
│ │ │ ├── flashNotice.png
│ │ │ ├── folder.png
│ │ │ ├── forums.png
│ │ │ ├── ideas.png
│ │ │ ├── ideasAdd.png
│ │ │ ├── ideasEdit.png
│ │ │ ├── ideasList.png
│ │ │ ├── ideasMerge.png
│ │ │ ├── ideasUnmerge.png
│ │ │ ├── linkset.png
│ │ │ ├── lookupCodes.png
│ │ │ ├── paperclip.png
│ │ │ ├── periodicJobs.png
│ │ │ ├── polls.png
│ │ │ ├── productReleases.png
│ │ │ ├── products.png
│ │ │ ├── products2.png
│ │ │ ├── question.png
│ │ │ ├── user.png
│ │ │ ├── userEdit.png
│ │ │ ├── user_group.png
│ │ │ ├── voteRescind.png
│ │ │ ├── votes.png
│ │ │ └── votes1.png
│ │ ├── 48x48
│ │ │ ├── allocations.png
│ │ │ ├── announcements.png
│ │ │ ├── announcements1.png
│ │ │ ├── announcements2.png
│ │ │ ├── checked_comment.png
│ │ │ ├── comment.png
│ │ │ ├── commentAdd.png
│ │ │ ├── download.png
│ │ │ ├── email.png
│ │ │ ├── enterprises.png
│ │ │ ├── folder.png
│ │ │ ├── forums.png
│ │ │ ├── ideas.png
│ │ │ ├── ideasAdd.png
│ │ │ ├── ideasEdit.png
│ │ │ ├── ideasList.png
│ │ │ ├── ideasMerge.png
│ │ │ ├── ideasUnmerge.png
│ │ │ ├── linkset.png
│ │ │ ├── lookupCodes.png
│ │ │ ├── paperclip.png
│ │ │ ├── periodicJobs.png
│ │ │ ├── polls.png
│ │ │ ├── productReleases.png
│ │ │ ├── products.png
│ │ │ ├── products2.png
│ │ │ ├── question.png
│ │ │ ├── user.png
│ │ │ ├── userEdit.png
│ │ │ ├── user_group.png
│ │ │ ├── voteRescind.png
│ │ │ ├── votes.png
│ │ │ └── votes1.png
│ │ ├── 64x64
│ │ │ ├── blacksquareOff.png
│ │ │ ├── blacksquareOn.png
│ │ │ ├── redsquareOff.png
│ │ │ └── redsquareOn.png
│ │ └── feed-icon-14x14.png
│ └── menus
│ │ ├── blockDefaultSmall.gif
│ │ ├── blockactive.gif
│ │ ├── blockdefault.gif
│ │ ├── filterBgTile.gif
│ │ ├── footerBgTile.gif
│ │ ├── footerMenuBgTile.gif
│ │ ├── lowerNavTile.gif
│ │ ├── topMenuItem.gif
│ │ ├── topMenuItemActive.gif
│ │ └── topMenuItemHover.gif
│ └── stylesheets
│ ├── allocations.css
│ ├── filtermenu.css
│ ├── forms.css
│ ├── global.css
│ ├── ideas.css
│ ├── ideas_ie6.css
│ ├── pagination.css
│ ├── peekaboobug_fix.css
│ ├── png_fix.css
│ ├── sideBarLeft.css
│ ├── sideBarRight.css
│ ├── sideBarsBoth.css
│ ├── tables.css
│ └── tabs.css
├── script
├── about
├── breakpointer
├── console
├── dbconsole
├── destroy
├── generate
├── performance
│ ├── benchmarker
│ ├── profiler
│ └── request
├── plugin
├── process
│ ├── inspector
│ ├── reaper
│ └── spawner
├── runner
├── server
├── task_server.rb
├── task_server_control.rb
└── test_check_for_update.rb
├── solr
└── .gitignore
├── test
├── data
│ └── testdata.sql
├── fixtures
│ ├── allocations.yml
│ ├── announcements.yml
│ ├── attachments.yml
│ ├── comments.yml
│ ├── email_requests.yml
│ ├── enterprises.yml
│ ├── forum_metrics.yml
│ ├── forums.yml
│ ├── groups.yml
│ ├── idea_change_logs.yml
│ ├── ideas.yml
│ ├── link_sets.yml
│ ├── links.yml
│ ├── lookup_codes.yml
│ ├── periodic_jobs.yml
│ ├── poll_options.yml
│ ├── polls.yml
│ ├── port_user_org_maps.yml
│ ├── portal_certified_consultants.yml
│ ├── portal_customers.yml
│ ├── portal_nfrs.yml
│ ├── portal_support_incidents.yml
│ ├── products.yml
│ ├── release_change_logs.yml
│ ├── release_dependencies.yml
│ ├── releases.yml
│ ├── roles.yml
│ ├── serial_number_release_map_histories.yml
│ ├── serial_number_release_maps.yml
│ ├── serial_numbers.yml
│ ├── topic_watches.yml
│ ├── topics.yml
│ ├── user_idea_reads.yml
│ ├── user_logons.yml
│ ├── user_requests.yml
│ ├── user_topic_reads.yml
│ ├── users.yml
│ ├── votes.yml
│ └── watches.yml
├── functional
│ ├── account_controller_test.rb
│ ├── allocations_controller_test.rb
│ ├── announcements_controller_test.rb
│ ├── attachments_controller_test.rb
│ ├── comments_controller_test.rb
│ ├── enterprises_controller_test.rb
│ ├── forums_controller_test.rb
│ ├── groups_controller_test.rb
│ ├── ideas_controller_test.rb
│ ├── link_sets_controller_test.rb
│ ├── lookup_codes_controller_test.rb
│ ├── merge_ideas_controller_test.rb
│ ├── polls_controller_test.rb
│ ├── portal_controller_test.rb
│ ├── products_controller_test.rb
│ ├── releases_controller_test.rb
│ ├── static_controller_test.rb
│ ├── topics_controller_test.rb
│ ├── user_requests_controller_test.rb
│ ├── users_controller_test.rb
│ ├── votes_controller_test.rb
│ └── watches_controller_test.rb
├── test_helper.rb
└── unit
│ ├── allocation_observer_test.rb
│ ├── allocation_test.rb
│ ├── announcement_test.rb
│ ├── attachment_test.rb
│ ├── comment_observer_test.rb
│ ├── comment_test.rb
│ ├── date_utils_test.rb
│ ├── email_notifier_test.rb
│ ├── email_request_test.rb
│ ├── enterprise_test.rb
│ ├── enterprise_type_test.rb
│ ├── forum_group_test.rb
│ ├── forum_metric_test.rb
│ ├── forum_test.rb
│ ├── group_test.rb
│ ├── helpers
│ └── portal_helper_test.rb
│ ├── idea_change_log_test.rb
│ ├── idea_comment_test.rb
│ ├── idea_email_request_test.rb
│ ├── idea_test.rb
│ ├── link_set_test.rb
│ ├── link_test.rb
│ ├── lookup_code_test.rb
│ ├── periodic_job_test.rb
│ ├── poll_option_test.rb
│ ├── poll_test.rb
│ ├── port_user_org_maps_test.rb
│ ├── portal_certified_consultant_test.rb
│ ├── portal_customer_test.rb
│ ├── portal_nfr_test.rb
│ ├── portal_support_incident_test.rb
│ ├── product_test.rb
│ ├── release_dependency_test.rb
│ ├── release_status_test.rb
│ ├── release_test.rb
│ ├── role_test.rb
│ ├── serial_number_release_map_history_test.rb
│ ├── serial_number_release_map_test.rb
│ ├── serial_number_test.rb
│ ├── string_util_test.rb
│ ├── task_scheduler_batch_test.rb
│ ├── topic_comment_test.rb
│ ├── topic_import_test.rb
│ ├── topic_test.rb
│ ├── user_idea_read_test.rb
│ ├── user_logon_test.rb
│ ├── user_request_test.rb
│ ├── user_test.rb
│ ├── vote_test.rb
│ └── watches_test.rb
├── thirdparty
└── windows
│ └── RMagick-2.6.0-ImageMagick-6.4.3-6-Q8.zip
├── tmp
├── .gitignore
└── pids
│ └── .gitignore
└── vendor
├── daemons-1.0.10
├── LICENSE
├── README
├── Rakefile
├── Releases
├── TODO
├── examples
│ ├── call
│ │ ├── call.rb
│ │ └── call_monitor.rb
│ ├── daemonize
│ │ └── daemonize.rb
│ └── run
│ │ ├── ctrl_crash.rb
│ │ ├── ctrl_exec.rb
│ │ ├── ctrl_exit.rb
│ │ ├── ctrl_keep_pid_files.rb
│ │ ├── ctrl_monitor.rb
│ │ ├── ctrl_multiple.rb
│ │ ├── ctrl_normal.rb
│ │ ├── ctrl_ontop.rb
│ │ ├── ctrl_optionparser.rb
│ │ ├── ctrl_proc.rb
│ │ ├── ctrl_proc.rb.output
│ │ ├── ctrl_proc_multiple.rb
│ │ ├── ctrl_proc_multiple.rb.output
│ │ ├── ctrl_proc_simple.rb
│ │ ├── myserver.rb
│ │ ├── myserver_crashing.rb
│ │ ├── myserver_crashing.rb.output
│ │ └── myserver_exiting.rb
├── lib
│ ├── daemons.rb
│ └── daemons
│ │ ├── application.rb
│ │ ├── application_group.rb
│ │ ├── cmdline.rb
│ │ ├── controller.rb
│ │ ├── daemonize.rb
│ │ ├── exceptions.rb
│ │ ├── monitor.rb
│ │ ├── pid.rb
│ │ ├── pidfile.rb
│ │ └── pidmem.rb
└── setup.rb
├── gems
├── fastercsv-1.4.0
│ ├── .specification
│ ├── AUTHORS
│ ├── CHANGELOG
│ ├── COPYING
│ ├── INSTALL
│ ├── LICENSE
│ ├── README
│ ├── Rakefile
│ ├── TODO
│ ├── examples
│ │ ├── csv_converters.rb
│ │ ├── csv_filter.rb
│ │ ├── csv_reading.rb
│ │ ├── csv_table.rb
│ │ ├── csv_writing.rb
│ │ ├── purchase.csv
│ │ └── shortcut_interface.rb
│ ├── lib
│ │ ├── faster_csv.rb
│ │ └── fastercsv.rb
│ ├── setup.rb
│ └── test
│ │ ├── tc_csv_parsing.rb
│ │ ├── tc_csv_writing.rb
│ │ ├── tc_data_converters.rb
│ │ ├── tc_encodings.rb
│ │ ├── tc_features.rb
│ │ ├── tc_headers.rb
│ │ ├── tc_interface.rb
│ │ ├── tc_row.rb
│ │ ├── tc_serialization.rb
│ │ ├── tc_speed.rb
│ │ ├── tc_table.rb
│ │ ├── test_data.csv
│ │ └── ts_all.rb
├── mislav-will_paginate-2.3.4
│ ├── .specification
│ ├── CHANGELOG.rdoc
│ ├── LICENSE
│ ├── README.rdoc
│ ├── Rakefile
│ ├── examples
│ │ ├── apple-circle.gif
│ │ ├── index.haml
│ │ ├── index.html
│ │ ├── pagination.css
│ │ └── pagination.sass
│ ├── init.rb
│ ├── lib
│ │ ├── will_paginate.rb
│ │ └── will_paginate
│ │ │ ├── array.rb
│ │ │ ├── collection.rb
│ │ │ ├── core_ext.rb
│ │ │ ├── finder.rb
│ │ │ ├── named_scope.rb
│ │ │ ├── named_scope_patch.rb
│ │ │ ├── version.rb
│ │ │ └── view_helpers.rb
│ └── test
│ │ ├── boot.rb
│ │ ├── collection_test.rb
│ │ ├── console
│ │ ├── database.yml
│ │ ├── finder_test.rb
│ │ ├── fixtures
│ │ ├── admin.rb
│ │ ├── developer.rb
│ │ ├── developers_projects.yml
│ │ ├── project.rb
│ │ ├── projects.yml
│ │ ├── replies.yml
│ │ ├── reply.rb
│ │ ├── schema.rb
│ │ ├── topic.rb
│ │ ├── topics.yml
│ │ ├── user.rb
│ │ └── users.yml
│ │ ├── helper.rb
│ │ ├── lib
│ │ ├── activerecord_test_case.rb
│ │ ├── activerecord_test_connector.rb
│ │ ├── load_fixtures.rb
│ │ └── view_test_process.rb
│ │ ├── tasks.rake
│ │ └── view_test.rb
├── ruby-openid-1.1.4
│ ├── .specification
│ ├── COPYING
│ ├── INSTALL
│ ├── LICENSE
│ ├── README
│ ├── examples
│ │ ├── README
│ │ ├── active_record_openid_store
│ │ │ ├── README
│ │ │ ├── XXX_add_open_id_store_to_db.rb
│ │ │ ├── init.rb
│ │ │ ├── lib
│ │ │ │ ├── association.rb
│ │ │ │ ├── nonce.rb
│ │ │ │ ├── open_id_setting.rb
│ │ │ │ └── openid_ar_store.rb
│ │ │ └── test
│ │ │ │ └── store_test.rb
│ │ ├── consumer.rb
│ │ ├── rails_openid_login_generator
│ │ │ ├── USAGE
│ │ │ ├── gemspec
│ │ │ ├── openid_login_generator-0.1.gem
│ │ │ ├── openid_login_generator.rb
│ │ │ └── templates
│ │ │ │ ├── README
│ │ │ │ ├── controller.rb
│ │ │ │ ├── controller_test.rb
│ │ │ │ ├── helper.rb
│ │ │ │ ├── openid_login_system.rb
│ │ │ │ ├── user.rb
│ │ │ │ ├── user_test.rb
│ │ │ │ ├── users.yml
│ │ │ │ ├── view_login.rhtml
│ │ │ │ ├── view_logout.rhtml
│ │ │ │ └── view_welcome.rhtml
│ │ └── rails_server
│ │ │ ├── README
│ │ │ ├── Rakefile
│ │ │ ├── app
│ │ │ ├── controllers
│ │ │ │ ├── application.rb
│ │ │ │ ├── login_controller.rb
│ │ │ │ └── server_controller.rb
│ │ │ ├── helpers
│ │ │ │ ├── application_helper.rb
│ │ │ │ ├── login_helper.rb
│ │ │ │ └── server_helper.rb
│ │ │ └── views
│ │ │ │ ├── layouts
│ │ │ │ └── server.rhtml
│ │ │ │ ├── login
│ │ │ │ └── index.rhtml
│ │ │ │ └── server
│ │ │ │ └── decide.rhtml
│ │ │ ├── config
│ │ │ ├── boot.rb
│ │ │ ├── database.yml
│ │ │ ├── environment.rb
│ │ │ ├── environments
│ │ │ │ ├── development.rb
│ │ │ │ ├── production.rb
│ │ │ │ └── test.rb
│ │ │ └── routes.rb
│ │ │ ├── doc
│ │ │ └── README_FOR_APP
│ │ │ ├── public
│ │ │ ├── 404.html
│ │ │ ├── 500.html
│ │ │ ├── dispatch.cgi
│ │ │ ├── dispatch.fcgi
│ │ │ ├── dispatch.rb
│ │ │ ├── favicon.ico
│ │ │ ├── images
│ │ │ │ └── rails.png
│ │ │ ├── javascripts
│ │ │ │ ├── controls.js
│ │ │ │ ├── dragdrop.js
│ │ │ │ ├── effects.js
│ │ │ │ └── prototype.js
│ │ │ └── robots.txt
│ │ │ ├── script
│ │ │ ├── about
│ │ │ ├── breakpointer
│ │ │ ├── console
│ │ │ ├── destroy
│ │ │ ├── generate
│ │ │ ├── performance
│ │ │ │ ├── benchmarker
│ │ │ │ └── profiler
│ │ │ ├── plugin
│ │ │ ├── process
│ │ │ │ ├── reaper
│ │ │ │ ├── spawner
│ │ │ │ └── spinner
│ │ │ ├── runner
│ │ │ └── server
│ │ │ └── test
│ │ │ ├── functional
│ │ │ ├── login_controller_test.rb
│ │ │ └── server_controller_test.rb
│ │ │ └── test_helper.rb
│ ├── lib
│ │ ├── hmac-md5.rb
│ │ ├── hmac-rmd160.rb
│ │ ├── hmac-sha1.rb
│ │ ├── hmac-sha2.rb
│ │ ├── hmac.rb
│ │ ├── openid.rb
│ │ └── openid
│ │ │ ├── association.rb
│ │ │ ├── consumer.rb
│ │ │ ├── dh.rb
│ │ │ ├── discovery.rb
│ │ │ ├── fetchers.rb
│ │ │ ├── filestore.rb
│ │ │ ├── htmltokenizer.rb
│ │ │ ├── parse.rb
│ │ │ ├── server.rb
│ │ │ ├── service.rb
│ │ │ ├── stores.rb
│ │ │ ├── trustroot.rb
│ │ │ ├── urinorm.rb
│ │ │ └── util.rb
│ └── test
│ │ ├── assoc.rb
│ │ ├── consumer.rb
│ │ ├── data
│ │ ├── brian.xrds
│ │ ├── brianellin.mylid.xrds
│ │ └── urinorm.txt
│ │ ├── dh.rb
│ │ ├── extensions.rb
│ │ ├── linkparse.rb
│ │ ├── runtests.rb
│ │ ├── server2.rb
│ │ ├── service.rb
│ │ ├── storetestcase.rb
│ │ ├── teststore.rb
│ │ ├── trustroot.rb
│ │ ├── urinorm.rb
│ │ └── util.rb
├── ruby-yadis-0.3.4
│ ├── .specification
│ ├── COPYING
│ ├── INSTALL
│ ├── README
│ ├── examples
│ │ └── openid.rb
│ ├── lib
│ │ ├── yadis.rb
│ │ └── yadis
│ │ │ ├── fetcher.rb
│ │ │ ├── htmltokenizer.rb
│ │ │ ├── manager.rb
│ │ │ ├── parsehtml.rb
│ │ │ ├── service.rb
│ │ │ ├── xrds.rb
│ │ │ ├── xri.rb
│ │ │ ├── xrires.rb
│ │ │ └── yadis.rb
│ └── test
│ │ ├── data
│ │ ├── brian.multi.xrds
│ │ ├── brian.multi_uri.xrds
│ │ ├── brian.xrds
│ │ ├── brian_priority.xrds
│ │ ├── brianellin.mylid.xrds
│ │ ├── index.html
│ │ ├── index_xrds.html
│ │ ├── index_yadis.html
│ │ ├── keturn.xrds
│ │ ├── manifest.txt
│ │ ├── proxy-june1.xrds
│ │ └── weirdver.xrds
│ │ ├── runtests.rb
│ │ ├── test_discovery.rb
│ │ ├── test_parse.rb
│ │ ├── test_xrds.rb
│ │ ├── test_xri.rb
│ │ └── test_yadis.rb
└── thoughtbot-shoulda-2.0.5
│ ├── .specification
│ ├── CONTRIBUTION_GUIDELINES.rdoc
│ ├── MIT-LICENSE
│ ├── README.rdoc
│ ├── Rakefile
│ ├── bin
│ └── convert_to_should_syntax
│ ├── lib
│ ├── shoulda.rb
│ └── shoulda
│ │ ├── action_mailer.rb
│ │ ├── action_mailer
│ │ └── assertions.rb
│ │ ├── active_record.rb
│ │ ├── active_record
│ │ ├── assertions.rb
│ │ └── macros.rb
│ │ ├── assertions.rb
│ │ ├── context.rb
│ │ ├── controller.rb
│ │ ├── controller
│ │ ├── formats
│ │ │ ├── html.rb
│ │ │ └── xml.rb
│ │ ├── helpers.rb
│ │ ├── macros.rb
│ │ └── resource_options.rb
│ │ ├── helpers.rb
│ │ ├── macros.rb
│ │ ├── private_helpers.rb
│ │ ├── proc_extensions.rb
│ │ ├── rails.rb
│ │ ├── tasks.rb
│ │ └── tasks
│ │ ├── list_tests.rake
│ │ └── yaml_to_shoulda.rake
│ ├── rails
│ └── init.rb
│ └── test
│ ├── README
│ ├── fail_macros.rb
│ ├── fixtures
│ ├── addresses.yml
│ ├── friendships.yml
│ ├── posts.yml
│ ├── products.yml
│ ├── taggings.yml
│ ├── tags.yml
│ └── users.yml
│ ├── functional
│ ├── posts_controller_test.rb
│ └── users_controller_test.rb
│ ├── other
│ ├── context_test.rb
│ ├── convert_to_should_syntax_test.rb
│ ├── helpers_test.rb
│ ├── private_helpers_test.rb
│ └── should_test.rb
│ ├── rails_root
│ ├── app
│ │ ├── controllers
│ │ │ ├── application.rb
│ │ │ ├── posts_controller.rb
│ │ │ └── users_controller.rb
│ │ ├── helpers
│ │ │ ├── application_helper.rb
│ │ │ ├── posts_helper.rb
│ │ │ └── users_helper.rb
│ │ ├── models
│ │ │ ├── address.rb
│ │ │ ├── dog.rb
│ │ │ ├── flea.rb
│ │ │ ├── friendship.rb
│ │ │ ├── post.rb
│ │ │ ├── product.rb
│ │ │ ├── tag.rb
│ │ │ ├── tagging.rb
│ │ │ └── user.rb
│ │ └── views
│ │ │ ├── layouts
│ │ │ ├── posts.rhtml
│ │ │ ├── users.rhtml
│ │ │ └── wide.html.erb
│ │ │ ├── posts
│ │ │ ├── edit.rhtml
│ │ │ ├── index.rhtml
│ │ │ ├── new.rhtml
│ │ │ └── show.rhtml
│ │ │ └── users
│ │ │ ├── edit.rhtml
│ │ │ ├── index.rhtml
│ │ │ ├── new.rhtml
│ │ │ └── show.rhtml
│ ├── config
│ │ ├── boot.rb
│ │ ├── database.yml
│ │ ├── environment.rb
│ │ ├── environments
│ │ │ └── sqlite3.rb
│ │ ├── initializers
│ │ │ ├── new_rails_defaults.rb
│ │ │ └── shoulda.rb
│ │ └── routes.rb
│ ├── db
│ │ ├── migrate
│ │ │ ├── 001_create_users.rb
│ │ │ ├── 002_create_posts.rb
│ │ │ ├── 003_create_taggings.rb
│ │ │ ├── 004_create_tags.rb
│ │ │ ├── 005_create_dogs.rb
│ │ │ ├── 006_create_addresses.rb
│ │ │ ├── 007_create_fleas.rb
│ │ │ ├── 008_create_dogs_fleas.rb
│ │ │ ├── 009_create_products.rb
│ │ │ └── 010_create_friendships.rb
│ │ └── schema.rb
│ ├── public
│ │ ├── 404.html
│ │ ├── 422.html
│ │ └── 500.html
│ └── script
│ │ ├── console
│ │ └── generate
│ ├── test_helper.rb
│ └── unit
│ ├── address_test.rb
│ ├── dog_test.rb
│ ├── flea_test.rb
│ ├── friendship_test.rb
│ ├── post_test.rb
│ ├── product_test.rb
│ ├── tag_test.rb
│ ├── tagging_test.rb
│ └── user_test.rb
├── plugins
├── acl_system2
│ ├── LICENSE.txt
│ ├── README
│ ├── init.rb
│ ├── lib
│ │ └── caboose
│ │ │ ├── access_control.rb
│ │ │ ├── logic_parser.rb
│ │ │ └── role_handler.rb
│ └── test
│ │ ├── access_control_test.rb
│ │ └── test_helper.rb
├── acts_as_authenticated
│ ├── CHANGELOG
│ ├── README
│ ├── generators
│ │ ├── authenticated
│ │ │ ├── USAGE
│ │ │ ├── authenticated_generator.rb
│ │ │ └── templates
│ │ │ │ ├── authenticated_system.rb
│ │ │ │ ├── authenticated_test_helper.rb
│ │ │ │ ├── controller.rb
│ │ │ │ ├── fixtures.yml
│ │ │ │ ├── functional_test.rb
│ │ │ │ ├── helper.rb
│ │ │ │ ├── index.rhtml
│ │ │ │ ├── login.rhtml
│ │ │ │ ├── migration.rb
│ │ │ │ ├── model.rb
│ │ │ │ ├── signup.rhtml
│ │ │ │ └── unit_test.rb
│ │ └── authenticated_mailer
│ │ │ ├── USAGE
│ │ │ ├── authenticated_mailer_generator.rb
│ │ │ └── templates
│ │ │ ├── activation.rhtml
│ │ │ ├── notifier.rb
│ │ │ ├── notifier_test.rb
│ │ │ ├── observer.rb
│ │ │ └── signup_notification.rhtml
│ └── install.rb
├── acts_as_list
│ ├── README
│ ├── init.rb
│ ├── lib
│ │ └── active_record
│ │ │ └── acts
│ │ │ └── list.rb
│ └── test
│ │ └── list_test.rb
├── acts_as_solr
│ ├── .gitignore
│ ├── CHANGE_LOG
│ ├── LICENSE
│ ├── README.markdown
│ ├── Rakefile
│ ├── TESTING_THE_PLUGIN
│ ├── config
│ │ ├── solr.yml
│ │ └── solr_environment.rb
│ ├── init.rb
│ ├── install.rb
│ ├── lib
│ │ ├── acts_as_solr.rb
│ │ ├── acts_methods.rb
│ │ ├── class_methods.rb
│ │ ├── common_methods.rb
│ │ ├── deprecation.rb
│ │ ├── instance_methods.rb
│ │ ├── lazy_document.rb
│ │ ├── parser_methods.rb
│ │ ├── search_results.rb
│ │ ├── solr.rb
│ │ ├── solr
│ │ │ ├── connection.rb
│ │ │ ├── document.rb
│ │ │ ├── exception.rb
│ │ │ ├── field.rb
│ │ │ ├── importer.rb
│ │ │ ├── importer
│ │ │ │ ├── array_mapper.rb
│ │ │ │ ├── delimited_file_source.rb
│ │ │ │ ├── hpricot_mapper.rb
│ │ │ │ ├── mapper.rb
│ │ │ │ ├── solr_source.rb
│ │ │ │ └── xpath_mapper.rb
│ │ │ ├── indexer.rb
│ │ │ ├── request.rb
│ │ │ ├── request
│ │ │ │ ├── add_document.rb
│ │ │ │ ├── base.rb
│ │ │ │ ├── commit.rb
│ │ │ │ ├── delete.rb
│ │ │ │ ├── dismax.rb
│ │ │ │ ├── index_info.rb
│ │ │ │ ├── modify_document.rb
│ │ │ │ ├── optimize.rb
│ │ │ │ ├── ping.rb
│ │ │ │ ├── select.rb
│ │ │ │ ├── spellcheck.rb
│ │ │ │ ├── standard.rb
│ │ │ │ └── update.rb
│ │ │ ├── response.rb
│ │ │ ├── response
│ │ │ │ ├── add_document.rb
│ │ │ │ ├── base.rb
│ │ │ │ ├── commit.rb
│ │ │ │ ├── delete.rb
│ │ │ │ ├── dismax.rb
│ │ │ │ ├── index_info.rb
│ │ │ │ ├── modify_document.rb
│ │ │ │ ├── optimize.rb
│ │ │ │ ├── ping.rb
│ │ │ │ ├── ruby.rb
│ │ │ │ ├── select.rb
│ │ │ │ ├── spellcheck.rb
│ │ │ │ ├── standard.rb
│ │ │ │ └── xml.rb
│ │ │ ├── solrtasks.rb
│ │ │ ├── util.rb
│ │ │ └── xml.rb
│ │ ├── solr_fixtures.rb
│ │ └── tasks
│ │ │ ├── database.rake
│ │ │ ├── solr.rake
│ │ │ └── test.rake
│ ├── solr
│ │ ├── CHANGES.txt
│ │ ├── LICENSE.txt
│ │ ├── NOTICE.txt
│ │ ├── etc
│ │ │ ├── jetty.xml
│ │ │ └── webdefault.xml
│ │ ├── lib
│ │ │ ├── easymock.jar
│ │ │ ├── jetty-6.1.3.jar
│ │ │ ├── jetty-util-6.1.3.jar
│ │ │ ├── jsp-2.1
│ │ │ │ ├── ant-1.6.5.jar
│ │ │ │ ├── core-3.1.1.jar
│ │ │ │ ├── jsp-2.1.jar
│ │ │ │ └── jsp-api-2.1.jar
│ │ │ ├── servlet-api-2.4.jar
│ │ │ ├── servlet-api-2.5-6.1.3.jar
│ │ │ └── xpp3-1.1.3.4.O.jar
│ │ ├── logs
│ │ │ └── .gitignore
│ │ ├── solr
│ │ │ ├── README.txt
│ │ │ ├── bin
│ │ │ │ ├── abc
│ │ │ │ ├── abo
│ │ │ │ ├── backup
│ │ │ │ ├── backupcleaner
│ │ │ │ ├── commit
│ │ │ │ ├── optimize
│ │ │ │ ├── readercycle
│ │ │ │ ├── rsyncd-disable
│ │ │ │ ├── rsyncd-enable
│ │ │ │ ├── rsyncd-start
│ │ │ │ ├── rsyncd-stop
│ │ │ │ ├── scripts-util
│ │ │ │ ├── snapcleaner
│ │ │ │ ├── snapinstaller
│ │ │ │ ├── snappuller
│ │ │ │ ├── snappuller-disable
│ │ │ │ ├── snappuller-enable
│ │ │ │ └── snapshooter
│ │ │ └── conf
│ │ │ │ ├── admin-extra.html
│ │ │ │ ├── protwords.txt
│ │ │ │ ├── schema.xml
│ │ │ │ ├── scripts.conf
│ │ │ │ ├── solrconfig.xml
│ │ │ │ ├── stopwords.txt
│ │ │ │ ├── synonyms.txt
│ │ │ │ └── xslt
│ │ │ │ ├── example.xsl
│ │ │ │ ├── example_atom.xsl
│ │ │ │ └── example_rss.xsl
│ │ ├── start.jar
│ │ ├── tmp
│ │ │ └── .empty-dir-for-git
│ │ └── webapps
│ │ │ └── solr.war
│ └── test
│ │ ├── config
│ │ └── solr.yml
│ │ ├── db
│ │ ├── connections
│ │ │ ├── mysql
│ │ │ │ └── connection.rb
│ │ │ └── sqlite
│ │ │ │ └── connection.rb
│ │ └── migrate
│ │ │ ├── 001_create_books.rb
│ │ │ ├── 002_create_movies.rb
│ │ │ ├── 003_create_categories.rb
│ │ │ ├── 004_create_electronics.rb
│ │ │ ├── 005_create_authors.rb
│ │ │ ├── 006_create_postings.rb
│ │ │ ├── 007_create_posts.rb
│ │ │ └── 008_create_gadgets.rb
│ │ ├── fixtures
│ │ ├── authors.yml
│ │ ├── books.yml
│ │ ├── categories.yml
│ │ ├── db_definitions
│ │ │ └── mysql.sql
│ │ ├── electronics.yml
│ │ ├── movies.yml
│ │ └── postings.yml
│ │ ├── functional
│ │ ├── acts_as_solr_test.rb
│ │ ├── association_indexing_test.rb
│ │ ├── faceted_search_test.rb
│ │ └── multi_solr_search_test.rb
│ │ ├── models
│ │ ├── author.rb
│ │ ├── book.rb
│ │ ├── category.rb
│ │ ├── electronic.rb
│ │ ├── gadget.rb
│ │ ├── movie.rb
│ │ ├── novel.rb
│ │ ├── post.rb
│ │ └── posting.rb
│ │ ├── test_helper.rb
│ │ └── unit
│ │ ├── common_methods_shoulda.rb
│ │ ├── instance_methods_shoulda.rb
│ │ ├── lazy_document_shoulda.rb
│ │ ├── parser_instance.rb
│ │ ├── parser_methods_shoulda.rb
│ │ ├── solr_instance.rb
│ │ └── test_helper.rb
├── acts_as_taggable_on_steroids
│ ├── CHANGELOG
│ ├── MIT-LICENSE
│ ├── README
│ ├── Rakefile
│ ├── generators
│ │ └── acts_as_taggable_migration
│ │ │ ├── acts_as_taggable_migration_generator.rb
│ │ │ └── templates
│ │ │ └── migration.rb
│ ├── init.rb
│ ├── lib
│ │ ├── acts_as_taggable.rb
│ │ ├── tag.rb
│ │ ├── tag_counts_extension.rb
│ │ ├── tag_list.rb
│ │ ├── tagging.rb
│ │ └── tags_helper.rb
│ └── test
│ │ ├── abstract_unit.rb
│ │ ├── acts_as_taggable_test.rb
│ │ ├── database.yml
│ │ ├── fixtures
│ │ ├── magazine.rb
│ │ ├── magazines.yml
│ │ ├── photo.rb
│ │ ├── photos.yml
│ │ ├── post.rb
│ │ ├── posts.yml
│ │ ├── special_post.rb
│ │ ├── subscription.rb
│ │ ├── subscriptions.yml
│ │ ├── taggings.yml
│ │ ├── tags.yml
│ │ ├── user.rb
│ │ └── users.yml
│ │ ├── schema.rb
│ │ ├── tag_list_test.rb
│ │ ├── tag_test.rb
│ │ ├── tagging_test.rb
│ │ └── tags_helper_test.rb
├── ajaxful-rating
│ ├── README.textile
│ ├── Rakefile
│ ├── generators
│ │ └── ajaxful_rating
│ │ │ ├── USAGE
│ │ │ ├── ajaxful_rating_generator.rb
│ │ │ └── templates
│ │ │ ├── images
│ │ │ ├── star.png
│ │ │ └── star_small.png
│ │ │ ├── migration.rb
│ │ │ ├── model.rb
│ │ │ └── style.css
│ ├── init.rb
│ ├── install.rb
│ ├── lib
│ │ ├── ajaxful_rating.rb
│ │ └── ajaxful_rating_helper.rb
│ ├── tasks
│ │ └── ajaxful_rating_tasks.rake
│ └── test
│ │ └── ajaxful_rating_test.rb
├── annotate_models
│ ├── ChangeLog
│ ├── README
│ ├── lib
│ │ └── annotate_models.rb
│ └── tasks
│ │ └── annotate_models_tasks.rake
├── auto_complete
│ ├── README
│ ├── Rakefile
│ ├── init.rb
│ ├── lib
│ │ ├── auto_complete.rb
│ │ └── auto_complete_macros_helper.rb
│ └── test
│ │ └── auto_complete_test.rb
├── calendar_date_select
│ ├── .gitignore
│ ├── History.txt
│ ├── MIT-LICENSE
│ ├── Manifest.txt
│ ├── Rakefile
│ ├── Readme.txt
│ ├── init.rb
│ ├── js_test
│ │ ├── functional
│ │ │ └── cds_test.html
│ │ ├── prototype.js
│ │ ├── test.css
│ │ ├── unit
│ │ │ └── cds_helper_methods.html
│ │ └── unittest.js
│ ├── lib
│ │ ├── calendar_date_select.rb
│ │ └── calendar_date_select
│ │ │ ├── calendar_date_select.rb
│ │ │ ├── form_helpers.rb
│ │ │ └── includes_helper.rb
│ ├── public
│ │ ├── blank_iframe.html
│ │ ├── images
│ │ │ └── calendar_date_select
│ │ │ │ └── calendar.gif
│ │ ├── javascripts
│ │ │ └── calendar_date_select
│ │ │ │ ├── calendar_date_select.js
│ │ │ │ ├── format_american.js
│ │ │ │ ├── format_db.js
│ │ │ │ ├── format_euro_24hr.js
│ │ │ │ ├── format_euro_24hr_ymd.js
│ │ │ │ ├── format_finnish.js
│ │ │ │ ├── format_hyphen_ampm.js
│ │ │ │ ├── format_iso_date.js
│ │ │ │ ├── format_italian.js
│ │ │ │ └── locale
│ │ │ │ ├── de.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt.js
│ │ │ │ └── ru.js
│ │ └── stylesheets
│ │ │ └── calendar_date_select
│ │ │ ├── blue.css
│ │ │ ├── default.css
│ │ │ ├── plain.css
│ │ │ ├── red.css
│ │ │ └── silver.css
│ └── spec
│ │ ├── calendar_date_select
│ │ ├── calendar_date_select_spec.rb
│ │ ├── form_helpers_spec.rb
│ │ └── includes_helper_spec.rb
│ │ └── spec_helper.rb
├── fckeditor
│ ├── CHANGELOG
│ ├── README
│ ├── Rakefile
│ ├── app
│ │ ├── controllers
│ │ │ └── fckeditor_controller.rb
│ │ ├── helpers
│ │ │ └── fckeditor_helper.rb
│ │ └── views
│ │ │ └── fckeditor
│ │ │ └── spell_check.rhtml
│ ├── init.rb
│ ├── install.rb
│ ├── lib
│ │ ├── fckeditor.rb
│ │ ├── fckeditor_file_utils.rb
│ │ ├── fckeditor_spell_check.rb
│ │ └── fckeditor_version.rb
│ ├── public
│ │ └── javascripts
│ │ │ ├── fckcustom.js
│ │ │ └── fckeditor
│ │ │ ├── _documentation.html
│ │ │ ├── _samples
│ │ │ ├── _plugins
│ │ │ │ ├── findreplace
│ │ │ │ │ ├── fckplugin.js
│ │ │ │ │ ├── find.gif
│ │ │ │ │ ├── find.html
│ │ │ │ │ ├── lang
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ └── it.js
│ │ │ │ │ ├── replace.gif
│ │ │ │ │ └── replace.html
│ │ │ │ └── samples
│ │ │ │ │ └── fckplugin.js
│ │ │ ├── adobeair
│ │ │ │ ├── application.xml
│ │ │ │ ├── icons
│ │ │ │ │ ├── 128.png
│ │ │ │ │ ├── 16.png
│ │ │ │ │ ├── 32.png
│ │ │ │ │ └── 48.png
│ │ │ │ ├── package.bat
│ │ │ │ ├── run.bat
│ │ │ │ ├── sample01.html
│ │ │ │ └── sample01_cert.pfx
│ │ │ ├── afp
│ │ │ │ ├── fck.afpa
│ │ │ │ ├── fck.afpa.code
│ │ │ │ ├── sample01.afp
│ │ │ │ ├── sample02.afp
│ │ │ │ ├── sample03.afp
│ │ │ │ ├── sample04.afp
│ │ │ │ └── sampleposteddata.afp
│ │ │ ├── asp
│ │ │ │ ├── sample01.asp
│ │ │ │ ├── sample02.asp
│ │ │ │ ├── sample03.asp
│ │ │ │ ├── sample04.asp
│ │ │ │ └── sampleposteddata.asp
│ │ │ ├── cfm
│ │ │ │ ├── sample01.cfm
│ │ │ │ ├── sample01_mx.cfm
│ │ │ │ ├── sample02.cfm
│ │ │ │ ├── sample02_mx.cfm
│ │ │ │ ├── sample03.cfm
│ │ │ │ ├── sample03_mx.cfm
│ │ │ │ ├── sample04.cfm
│ │ │ │ ├── sample04_mx.cfm
│ │ │ │ └── sampleposteddata.cfm
│ │ │ ├── default.html
│ │ │ ├── html
│ │ │ │ ├── sample01.html
│ │ │ │ ├── sample02.html
│ │ │ │ ├── sample03.html
│ │ │ │ ├── sample04.html
│ │ │ │ ├── sample05.html
│ │ │ │ ├── sample06.config.js
│ │ │ │ ├── sample06.html
│ │ │ │ ├── sample07.html
│ │ │ │ ├── sample08.html
│ │ │ │ ├── sample09.html
│ │ │ │ ├── sample10.html
│ │ │ │ ├── sample11.html
│ │ │ │ ├── sample11_frame.html
│ │ │ │ ├── sample12.html
│ │ │ │ ├── sample13.html
│ │ │ │ ├── sample14.config.js
│ │ │ │ ├── sample14.html
│ │ │ │ ├── sample14.styles.css
│ │ │ │ ├── sampleposteddata.asp
│ │ │ │ └── sampleposteddata.html
│ │ │ ├── lasso
│ │ │ │ ├── sample01.lasso
│ │ │ │ ├── sample02.lasso
│ │ │ │ ├── sample03.lasso
│ │ │ │ ├── sample04.lasso
│ │ │ │ └── sampleposteddata.lasso
│ │ │ ├── perl
│ │ │ │ ├── sample01.cgi
│ │ │ │ ├── sample02.cgi
│ │ │ │ ├── sample03.cgi
│ │ │ │ ├── sample04.cgi
│ │ │ │ └── sampleposteddata.cgi
│ │ │ ├── php
│ │ │ │ ├── sample01.php
│ │ │ │ ├── sample02.php
│ │ │ │ ├── sample03.php
│ │ │ │ ├── sample04.php
│ │ │ │ └── sampleposteddata.php
│ │ │ ├── py
│ │ │ │ ├── sample01.py
│ │ │ │ └── sampleposteddata.py
│ │ │ ├── sample.css
│ │ │ └── sampleslist.html
│ │ │ ├── _upgrade.html
│ │ │ ├── _whatsnew.html
│ │ │ ├── _whatsnew_history.html
│ │ │ ├── editor
│ │ │ ├── _source
│ │ │ │ ├── classes
│ │ │ │ │ ├── fckcontextmenu.js
│ │ │ │ │ ├── fckdataprocessor.js
│ │ │ │ │ ├── fckdocumentfragment_gecko.js
│ │ │ │ │ ├── fckdocumentfragment_ie.js
│ │ │ │ │ ├── fckdomrange.js
│ │ │ │ │ ├── fckdomrange_gecko.js
│ │ │ │ │ ├── fckdomrange_ie.js
│ │ │ │ │ ├── fckdomrangeiterator.js
│ │ │ │ │ ├── fckeditingarea.js
│ │ │ │ │ ├── fckelementpath.js
│ │ │ │ │ ├── fckenterkey.js
│ │ │ │ │ ├── fckevents.js
│ │ │ │ │ ├── fckhtmliterator.js
│ │ │ │ │ ├── fckicon.js
│ │ │ │ │ ├── fckiecleanup.js
│ │ │ │ │ ├── fckimagepreloader.js
│ │ │ │ │ ├── fckkeystrokehandler.js
│ │ │ │ │ ├── fckmenublock.js
│ │ │ │ │ ├── fckmenublockpanel.js
│ │ │ │ │ ├── fckmenuitem.js
│ │ │ │ │ ├── fckpanel.js
│ │ │ │ │ ├── fckplugin.js
│ │ │ │ │ ├── fckspecialcombo.js
│ │ │ │ │ ├── fckstyle.js
│ │ │ │ │ ├── fcktoolbar.js
│ │ │ │ │ ├── fcktoolbarbreak_gecko.js
│ │ │ │ │ ├── fcktoolbarbreak_ie.js
│ │ │ │ │ ├── fcktoolbarbutton.js
│ │ │ │ │ ├── fcktoolbarbuttonui.js
│ │ │ │ │ ├── fcktoolbarfontformatcombo.js
│ │ │ │ │ ├── fcktoolbarfontscombo.js
│ │ │ │ │ ├── fcktoolbarfontsizecombo.js
│ │ │ │ │ ├── fcktoolbarpanelbutton.js
│ │ │ │ │ ├── fcktoolbarspecialcombo.js
│ │ │ │ │ ├── fcktoolbarstylecombo.js
│ │ │ │ │ ├── fckw3crange.js
│ │ │ │ │ ├── fckxml.js
│ │ │ │ │ ├── fckxml_gecko.js
│ │ │ │ │ └── fckxml_ie.js
│ │ │ │ ├── commandclasses
│ │ │ │ │ ├── fck_othercommands.js
│ │ │ │ │ ├── fckblockquotecommand.js
│ │ │ │ │ ├── fckcorestylecommand.js
│ │ │ │ │ ├── fckfitwindow.js
│ │ │ │ │ ├── fckindentcommands.js
│ │ │ │ │ ├── fckjustifycommands.js
│ │ │ │ │ ├── fcklistcommands.js
│ │ │ │ │ ├── fcknamedcommand.js
│ │ │ │ │ ├── fckpasteplaintextcommand.js
│ │ │ │ │ ├── fckpastewordcommand.js
│ │ │ │ │ ├── fckremoveformatcommand.js
│ │ │ │ │ ├── fckshowblocks.js
│ │ │ │ │ ├── fckspellcheckcommand_gecko.js
│ │ │ │ │ ├── fckspellcheckcommand_ie.js
│ │ │ │ │ ├── fckstylecommand.js
│ │ │ │ │ ├── fcktablecommand.js
│ │ │ │ │ └── fcktextcolorcommand.js
│ │ │ │ ├── fckconstants.js
│ │ │ │ ├── fckeditorapi.js
│ │ │ │ ├── fckjscoreextensions.js
│ │ │ │ ├── fckscriptloader.js
│ │ │ │ └── internals
│ │ │ │ │ ├── fck.js
│ │ │ │ │ ├── fck_contextmenu.js
│ │ │ │ │ ├── fck_gecko.js
│ │ │ │ │ ├── fck_ie.js
│ │ │ │ │ ├── fckbrowserinfo.js
│ │ │ │ │ ├── fckcodeformatter.js
│ │ │ │ │ ├── fckcommands.js
│ │ │ │ │ ├── fckconfig.js
│ │ │ │ │ ├── fckdebug.js
│ │ │ │ │ ├── fckdialog.js
│ │ │ │ │ ├── fckdialog_gecko.js
│ │ │ │ │ ├── fckdialog_ie.js
│ │ │ │ │ ├── fckdocumentprocessor.js
│ │ │ │ │ ├── fckdomtools.js
│ │ │ │ │ ├── fcklanguagemanager.js
│ │ │ │ │ ├── fcklisthandler.js
│ │ │ │ │ ├── fcklistslib.js
│ │ │ │ │ ├── fckplugins.js
│ │ │ │ │ ├── fckregexlib.js
│ │ │ │ │ ├── fckselection.js
│ │ │ │ │ ├── fckselection_gecko.js
│ │ │ │ │ ├── fckselection_ie.js
│ │ │ │ │ ├── fckstyles.js
│ │ │ │ │ ├── fcktablehandler.js
│ │ │ │ │ ├── fcktablehandler_gecko.js
│ │ │ │ │ ├── fcktablehandler_ie.js
│ │ │ │ │ ├── fcktoolbaritems.js
│ │ │ │ │ ├── fcktoolbarset.js
│ │ │ │ │ ├── fcktools.js
│ │ │ │ │ ├── fcktools_gecko.js
│ │ │ │ │ ├── fcktools_ie.js
│ │ │ │ │ ├── fckundo.js
│ │ │ │ │ ├── fckurlparams.js
│ │ │ │ │ ├── fckxhtml.js
│ │ │ │ │ ├── fckxhtml_gecko.js
│ │ │ │ │ ├── fckxhtml_ie.js
│ │ │ │ │ └── fckxhtmlentities.js
│ │ │ ├── css
│ │ │ │ ├── behaviors
│ │ │ │ │ ├── disablehandles.htc
│ │ │ │ │ └── showtableborders.htc
│ │ │ │ ├── fck_editorarea.css
│ │ │ │ ├── fck_internal.css
│ │ │ │ ├── fck_showtableborders_gecko.css
│ │ │ │ └── images
│ │ │ │ │ ├── block_address.png
│ │ │ │ │ ├── block_blockquote.png
│ │ │ │ │ ├── block_div.png
│ │ │ │ │ ├── block_h1.png
│ │ │ │ │ ├── block_h2.png
│ │ │ │ │ ├── block_h3.png
│ │ │ │ │ ├── block_h4.png
│ │ │ │ │ ├── block_h5.png
│ │ │ │ │ ├── block_h6.png
│ │ │ │ │ ├── block_p.png
│ │ │ │ │ ├── block_pre.png
│ │ │ │ │ ├── fck_anchor.gif
│ │ │ │ │ ├── fck_flashlogo.gif
│ │ │ │ │ ├── fck_hiddenfield.gif
│ │ │ │ │ ├── fck_pagebreak.gif
│ │ │ │ │ └── fck_plugin.gif
│ │ │ ├── dialog
│ │ │ │ ├── common
│ │ │ │ │ ├── fck_dialog_common.css
│ │ │ │ │ ├── fck_dialog_common.js
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── locked.gif
│ │ │ │ │ │ ├── reset.gif
│ │ │ │ │ │ └── unlocked.gif
│ │ │ │ ├── fck_about.html
│ │ │ │ ├── fck_about
│ │ │ │ │ ├── logo_fckeditor.gif
│ │ │ │ │ ├── logo_fredck.gif
│ │ │ │ │ └── sponsors
│ │ │ │ │ │ └── spellchecker_net.gif
│ │ │ │ ├── fck_anchor.html
│ │ │ │ ├── fck_button.html
│ │ │ │ ├── fck_checkbox.html
│ │ │ │ ├── fck_colorselector.html
│ │ │ │ ├── fck_docprops.html
│ │ │ │ ├── fck_docprops
│ │ │ │ │ └── fck_document_preview.html
│ │ │ │ ├── fck_find.html
│ │ │ │ ├── fck_flash.html
│ │ │ │ ├── fck_flash
│ │ │ │ │ ├── fck_flash.js
│ │ │ │ │ └── fck_flash_preview.html
│ │ │ │ ├── fck_form.html
│ │ │ │ ├── fck_hiddenfield.html
│ │ │ │ ├── fck_image.html
│ │ │ │ ├── fck_image
│ │ │ │ │ ├── fck_image.js
│ │ │ │ │ └── fck_image_preview.html
│ │ │ │ ├── fck_link.html
│ │ │ │ ├── fck_link
│ │ │ │ │ └── fck_link.js
│ │ │ │ ├── fck_listprop.html
│ │ │ │ ├── fck_paste.html
│ │ │ │ ├── fck_radiobutton.html
│ │ │ │ ├── fck_replace.html
│ │ │ │ ├── fck_select.html
│ │ │ │ ├── fck_select
│ │ │ │ │ └── fck_select.js
│ │ │ │ ├── fck_smiley.html
│ │ │ │ ├── fck_source.html
│ │ │ │ ├── fck_specialchar.html
│ │ │ │ ├── fck_spellerpages.html
│ │ │ │ ├── fck_spellerpages
│ │ │ │ │ └── spellerpages
│ │ │ │ │ │ ├── blank.html
│ │ │ │ │ │ ├── controlWindow.js
│ │ │ │ │ │ ├── controls.html
│ │ │ │ │ │ ├── server-scripts
│ │ │ │ │ │ ├── spellchecker.cfm
│ │ │ │ │ │ ├── spellchecker.php
│ │ │ │ │ │ └── spellchecker.pl
│ │ │ │ │ │ ├── spellChecker.js
│ │ │ │ │ │ ├── spellchecker.html
│ │ │ │ │ │ ├── spellerStyle.css
│ │ │ │ │ │ └── wordWindow.js
│ │ │ │ ├── fck_table.html
│ │ │ │ ├── fck_tablecell.html
│ │ │ │ ├── fck_template.html
│ │ │ │ ├── fck_template
│ │ │ │ │ └── images
│ │ │ │ │ │ ├── template1.gif
│ │ │ │ │ │ ├── template2.gif
│ │ │ │ │ │ └── template3.gif
│ │ │ │ ├── fck_textarea.html
│ │ │ │ └── fck_textfield.html
│ │ │ ├── dtd
│ │ │ │ ├── fck_dtd_test.html
│ │ │ │ ├── fck_xhtml10strict.js
│ │ │ │ └── fck_xhtml10transitional.js
│ │ │ ├── fckdebug.html
│ │ │ ├── fckdialog.html
│ │ │ ├── fckeditor.html
│ │ │ ├── fckeditor.original.html
│ │ │ ├── filemanager
│ │ │ │ ├── browser
│ │ │ │ │ └── default
│ │ │ │ │ │ ├── browser.css
│ │ │ │ │ │ ├── browser.html
│ │ │ │ │ │ ├── frmactualfolder.html
│ │ │ │ │ │ ├── frmcreatefolder.html
│ │ │ │ │ │ ├── frmfolders.html
│ │ │ │ │ │ ├── frmresourceslist.html
│ │ │ │ │ │ ├── frmresourcetype.html
│ │ │ │ │ │ ├── frmupload.html
│ │ │ │ │ │ ├── images
│ │ │ │ │ │ ├── ButtonArrow.gif
│ │ │ │ │ │ ├── Folder.gif
│ │ │ │ │ │ ├── Folder32.gif
│ │ │ │ │ │ ├── FolderOpened.gif
│ │ │ │ │ │ ├── FolderOpened32.gif
│ │ │ │ │ │ ├── FolderUp.gif
│ │ │ │ │ │ ├── icons
│ │ │ │ │ │ │ ├── 32
│ │ │ │ │ │ │ │ ├── ai.gif
│ │ │ │ │ │ │ │ ├── avi.gif
│ │ │ │ │ │ │ │ ├── bmp.gif
│ │ │ │ │ │ │ │ ├── cs.gif
│ │ │ │ │ │ │ │ ├── default.icon.gif
│ │ │ │ │ │ │ │ ├── dll.gif
│ │ │ │ │ │ │ │ ├── doc.gif
│ │ │ │ │ │ │ │ ├── exe.gif
│ │ │ │ │ │ │ │ ├── fla.gif
│ │ │ │ │ │ │ │ ├── gif.gif
│ │ │ │ │ │ │ │ ├── htm.gif
│ │ │ │ │ │ │ │ ├── html.gif
│ │ │ │ │ │ │ │ ├── jpg.gif
│ │ │ │ │ │ │ │ ├── js.gif
│ │ │ │ │ │ │ │ ├── mdb.gif
│ │ │ │ │ │ │ │ ├── mp3.gif
│ │ │ │ │ │ │ │ ├── pdf.gif
│ │ │ │ │ │ │ │ ├── png.gif
│ │ │ │ │ │ │ │ ├── ppt.gif
│ │ │ │ │ │ │ │ ├── rdp.gif
│ │ │ │ │ │ │ │ ├── swf.gif
│ │ │ │ │ │ │ │ ├── swt.gif
│ │ │ │ │ │ │ │ ├── txt.gif
│ │ │ │ │ │ │ │ ├── vsd.gif
│ │ │ │ │ │ │ │ ├── xls.gif
│ │ │ │ │ │ │ │ ├── xml.gif
│ │ │ │ │ │ │ │ └── zip.gif
│ │ │ │ │ │ │ ├── ai.gif
│ │ │ │ │ │ │ ├── avi.gif
│ │ │ │ │ │ │ ├── bmp.gif
│ │ │ │ │ │ │ ├── cs.gif
│ │ │ │ │ │ │ ├── default.icon.gif
│ │ │ │ │ │ │ ├── dll.gif
│ │ │ │ │ │ │ ├── doc.gif
│ │ │ │ │ │ │ ├── exe.gif
│ │ │ │ │ │ │ ├── fla.gif
│ │ │ │ │ │ │ ├── gif.gif
│ │ │ │ │ │ │ ├── htm.gif
│ │ │ │ │ │ │ ├── html.gif
│ │ │ │ │ │ │ ├── jpg.gif
│ │ │ │ │ │ │ ├── js.gif
│ │ │ │ │ │ │ ├── mdb.gif
│ │ │ │ │ │ │ ├── mp3.gif
│ │ │ │ │ │ │ ├── pdf.gif
│ │ │ │ │ │ │ ├── png.gif
│ │ │ │ │ │ │ ├── ppt.gif
│ │ │ │ │ │ │ ├── rdp.gif
│ │ │ │ │ │ │ ├── swf.gif
│ │ │ │ │ │ │ ├── swt.gif
│ │ │ │ │ │ │ ├── txt.gif
│ │ │ │ │ │ │ ├── vsd.gif
│ │ │ │ │ │ │ ├── xls.gif
│ │ │ │ │ │ │ ├── xml.gif
│ │ │ │ │ │ │ └── zip.gif
│ │ │ │ │ │ └── spacer.gif
│ │ │ │ │ │ └── js
│ │ │ │ │ │ ├── common.js
│ │ │ │ │ │ └── fckxml.js
│ │ │ │ └── connectors
│ │ │ │ │ ├── asp
│ │ │ │ │ ├── basexml.asp
│ │ │ │ │ ├── class_upload.asp
│ │ │ │ │ ├── commands.asp
│ │ │ │ │ ├── config.asp
│ │ │ │ │ ├── connector.asp
│ │ │ │ │ ├── io.asp
│ │ │ │ │ ├── upload.asp
│ │ │ │ │ └── util.asp
│ │ │ │ │ ├── aspx
│ │ │ │ │ ├── config.ascx
│ │ │ │ │ ├── connector.aspx
│ │ │ │ │ └── upload.aspx
│ │ │ │ │ ├── cfm
│ │ │ │ │ ├── ImageObject.cfc
│ │ │ │ │ ├── cf5_connector.cfm
│ │ │ │ │ ├── cf5_upload.cfm
│ │ │ │ │ ├── cf_basexml.cfm
│ │ │ │ │ ├── cf_commands.cfm
│ │ │ │ │ ├── cf_connector.cfm
│ │ │ │ │ ├── cf_io.cfm
│ │ │ │ │ ├── cf_upload.cfm
│ │ │ │ │ ├── cf_util.cfm
│ │ │ │ │ ├── config.cfm
│ │ │ │ │ ├── connector.cfm
│ │ │ │ │ ├── image.cfc
│ │ │ │ │ └── upload.cfm
│ │ │ │ │ ├── lasso
│ │ │ │ │ ├── config.lasso
│ │ │ │ │ ├── connector.lasso
│ │ │ │ │ └── upload.lasso
│ │ │ │ │ ├── perl
│ │ │ │ │ ├── basexml.pl
│ │ │ │ │ ├── commands.pl
│ │ │ │ │ ├── connector.cgi
│ │ │ │ │ ├── io.pl
│ │ │ │ │ ├── upload.cgi
│ │ │ │ │ ├── upload_fck.pl
│ │ │ │ │ └── util.pl
│ │ │ │ │ ├── php
│ │ │ │ │ ├── basexml.php
│ │ │ │ │ ├── commands.php
│ │ │ │ │ ├── config.php
│ │ │ │ │ ├── connector.php
│ │ │ │ │ ├── io.php
│ │ │ │ │ ├── phpcompat.php
│ │ │ │ │ ├── upload.php
│ │ │ │ │ └── util.php
│ │ │ │ │ ├── py
│ │ │ │ │ ├── config.py
│ │ │ │ │ ├── connector.py
│ │ │ │ │ ├── fckcommands.py
│ │ │ │ │ ├── fckconnector.py
│ │ │ │ │ ├── fckoutput.py
│ │ │ │ │ ├── fckutil.py
│ │ │ │ │ ├── htaccess.txt
│ │ │ │ │ ├── upload.py
│ │ │ │ │ ├── wsgi.py
│ │ │ │ │ └── zope.py
│ │ │ │ │ ├── test.html
│ │ │ │ │ └── uploadtest.html
│ │ │ ├── images
│ │ │ │ ├── anchor.gif
│ │ │ │ ├── arrow_ltr.gif
│ │ │ │ ├── arrow_rtl.gif
│ │ │ │ ├── smiley
│ │ │ │ │ └── msn
│ │ │ │ │ │ ├── angel_smile.gif
│ │ │ │ │ │ ├── angry_smile.gif
│ │ │ │ │ │ ├── broken_heart.gif
│ │ │ │ │ │ ├── cake.gif
│ │ │ │ │ │ ├── confused_smile.gif
│ │ │ │ │ │ ├── cry_smile.gif
│ │ │ │ │ │ ├── devil_smile.gif
│ │ │ │ │ │ ├── embaressed_smile.gif
│ │ │ │ │ │ ├── envelope.gif
│ │ │ │ │ │ ├── heart.gif
│ │ │ │ │ │ ├── kiss.gif
│ │ │ │ │ │ ├── lightbulb.gif
│ │ │ │ │ │ ├── omg_smile.gif
│ │ │ │ │ │ ├── regular_smile.gif
│ │ │ │ │ │ ├── sad_smile.gif
│ │ │ │ │ │ ├── shades_smile.gif
│ │ │ │ │ │ ├── teeth_smile.gif
│ │ │ │ │ │ ├── thumbs_down.gif
│ │ │ │ │ │ ├── thumbs_up.gif
│ │ │ │ │ │ ├── tounge_smile.gif
│ │ │ │ │ │ ├── whatchutalkingabout_smile.gif
│ │ │ │ │ │ └── wink_smile.gif
│ │ │ │ └── spacer.gif
│ │ │ ├── js
│ │ │ │ ├── fckadobeair.js
│ │ │ │ ├── fckeditorcode_gecko.js
│ │ │ │ └── fckeditorcode_ie.js
│ │ │ ├── lang
│ │ │ │ ├── _translationstatus.txt
│ │ │ │ ├── af.js
│ │ │ │ ├── ar.js
│ │ │ │ ├── bg.js
│ │ │ │ ├── bn.js
│ │ │ │ ├── bs.js
│ │ │ │ ├── ca.js
│ │ │ │ ├── cs.js
│ │ │ │ ├── da.js
│ │ │ │ ├── de.js
│ │ │ │ ├── el.js
│ │ │ │ ├── en-au.js
│ │ │ │ ├── en-ca.js
│ │ │ │ ├── en-uk.js
│ │ │ │ ├── en.js
│ │ │ │ ├── eo.js
│ │ │ │ ├── es.js
│ │ │ │ ├── et.js
│ │ │ │ ├── eu.js
│ │ │ │ ├── fa.js
│ │ │ │ ├── fi.js
│ │ │ │ ├── fo.js
│ │ │ │ ├── fr-ca.js
│ │ │ │ ├── fr.js
│ │ │ │ ├── gl.js
│ │ │ │ ├── he.js
│ │ │ │ ├── hi.js
│ │ │ │ ├── hr.js
│ │ │ │ ├── hu.js
│ │ │ │ ├── it.js
│ │ │ │ ├── ja.js
│ │ │ │ ├── km.js
│ │ │ │ ├── ko.js
│ │ │ │ ├── lt.js
│ │ │ │ ├── lv.js
│ │ │ │ ├── mn.js
│ │ │ │ ├── ms.js
│ │ │ │ ├── nb.js
│ │ │ │ ├── nl.js
│ │ │ │ ├── no.js
│ │ │ │ ├── pl.js
│ │ │ │ ├── pt-br.js
│ │ │ │ ├── pt.js
│ │ │ │ ├── ro.js
│ │ │ │ ├── ru.js
│ │ │ │ ├── sk.js
│ │ │ │ ├── sl.js
│ │ │ │ ├── sr-latn.js
│ │ │ │ ├── sr.js
│ │ │ │ ├── sv.js
│ │ │ │ ├── th.js
│ │ │ │ ├── tr.js
│ │ │ │ ├── uk.js
│ │ │ │ ├── vi.js
│ │ │ │ ├── zh-cn.js
│ │ │ │ └── zh.js
│ │ │ ├── plugins
│ │ │ │ ├── autogrow
│ │ │ │ │ └── fckplugin.js
│ │ │ │ ├── bbcode
│ │ │ │ │ ├── _sample
│ │ │ │ │ │ ├── sample.config.js
│ │ │ │ │ │ └── sample.html
│ │ │ │ │ └── fckplugin.js
│ │ │ │ ├── dragresizetable
│ │ │ │ │ └── fckplugin.js
│ │ │ │ ├── placeholder
│ │ │ │ │ ├── fck_placeholder.html
│ │ │ │ │ ├── fckplugin.js
│ │ │ │ │ ├── lang
│ │ │ │ │ │ ├── de.js
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── es.js
│ │ │ │ │ │ ├── fr.js
│ │ │ │ │ │ ├── it.js
│ │ │ │ │ │ └── pl.js
│ │ │ │ │ └── placeholder.gif
│ │ │ │ ├── simplecommands
│ │ │ │ │ └── fckplugin.js
│ │ │ │ └── tablecommands
│ │ │ │ │ └── fckplugin.js
│ │ │ └── skins
│ │ │ │ ├── _fckviewstrips.html
│ │ │ │ ├── default
│ │ │ │ ├── fck_dialog.css
│ │ │ │ ├── fck_dialog_ie6.js
│ │ │ │ ├── fck_editor.css
│ │ │ │ ├── fck_strip.gif
│ │ │ │ └── images
│ │ │ │ │ ├── dialog.sides.gif
│ │ │ │ │ ├── dialog.sides.png
│ │ │ │ │ ├── dialog.sides.rtl.png
│ │ │ │ │ ├── sprites.gif
│ │ │ │ │ ├── sprites.png
│ │ │ │ │ ├── toolbar.arrowright.gif
│ │ │ │ │ ├── toolbar.buttonarrow.gif
│ │ │ │ │ ├── toolbar.collapse.gif
│ │ │ │ │ ├── toolbar.end.gif
│ │ │ │ │ ├── toolbar.expand.gif
│ │ │ │ │ ├── toolbar.separator.gif
│ │ │ │ │ └── toolbar.start.gif
│ │ │ │ ├── office2003
│ │ │ │ ├── fck_dialog.css
│ │ │ │ ├── fck_dialog_ie6.js
│ │ │ │ ├── fck_editor.css
│ │ │ │ ├── fck_strip.gif
│ │ │ │ └── images
│ │ │ │ │ ├── dialog.sides.gif
│ │ │ │ │ ├── dialog.sides.png
│ │ │ │ │ ├── dialog.sides.rtl.png
│ │ │ │ │ ├── sprites.gif
│ │ │ │ │ ├── sprites.png
│ │ │ │ │ ├── toolbar.arrowright.gif
│ │ │ │ │ ├── toolbar.bg.gif
│ │ │ │ │ ├── toolbar.buttonarrow.gif
│ │ │ │ │ ├── toolbar.collapse.gif
│ │ │ │ │ ├── toolbar.end.gif
│ │ │ │ │ ├── toolbar.expand.gif
│ │ │ │ │ ├── toolbar.separator.gif
│ │ │ │ │ └── toolbar.start.gif
│ │ │ │ └── silver
│ │ │ │ ├── fck_dialog.css
│ │ │ │ ├── fck_dialog_ie6.js
│ │ │ │ ├── fck_editor.css
│ │ │ │ ├── fck_strip.gif
│ │ │ │ └── images
│ │ │ │ ├── dialog.sides.gif
│ │ │ │ ├── dialog.sides.png
│ │ │ │ ├── dialog.sides.rtl.png
│ │ │ │ ├── sprites.gif
│ │ │ │ ├── sprites.png
│ │ │ │ ├── toolbar.arrowright.gif
│ │ │ │ ├── toolbar.buttonarrow.gif
│ │ │ │ ├── toolbar.buttonbg.gif
│ │ │ │ ├── toolbar.collapse.gif
│ │ │ │ ├── toolbar.end.gif
│ │ │ │ ├── toolbar.expand.gif
│ │ │ │ ├── toolbar.separator.gif
│ │ │ │ └── toolbar.start.gif
│ │ │ ├── fckconfig.js
│ │ │ ├── fckeditor.afp
│ │ │ ├── fckeditor.asp
│ │ │ ├── fckeditor.cfc
│ │ │ ├── fckeditor.cfm
│ │ │ ├── fckeditor.js
│ │ │ ├── fckeditor.lasso
│ │ │ ├── fckeditor.php
│ │ │ ├── fckeditor.pl
│ │ │ ├── fckeditor.py
│ │ │ ├── fckeditor_php4.php
│ │ │ ├── fckeditor_php5.php
│ │ │ ├── fckpackager.xml
│ │ │ ├── fckstyles.xml
│ │ │ ├── fcktemplates.xml
│ │ │ ├── fckutils.cfm
│ │ │ └── license.txt
│ ├── tasks
│ │ └── fckeditor_tasks.rake
│ └── test
│ │ └── fckeditor_test.rb
├── gems
│ ├── MIT-LICENSE
│ ├── README
│ ├── Rakefile
│ ├── init.rb
│ └── tasks
│ │ └── gems_tasks.rake
├── lightbox
│ ├── LICENSE
│ ├── README
│ ├── init.rb
│ ├── install.rb
│ ├── lib
│ │ └── lightbox_view_helper.rb
│ └── public
│ │ ├── images
│ │ ├── blank.gif
│ │ ├── close.gif
│ │ ├── closelabel.gif
│ │ ├── loading.gif
│ │ ├── next.gif
│ │ ├── nextlabel.gif
│ │ ├── prev.gif
│ │ └── prevlabel.gif
│ │ ├── javascripts
│ │ └── lightbox.js
│ │ └── stylesheets
│ │ └── lightbox.css
├── open_flash_chart
│ ├── MIT-LICENSE
│ ├── README
│ ├── Rakefile
│ ├── assets
│ │ ├── javascripts
│ │ │ └── swfobject.js
│ │ ├── open-flash-chart-bar-clicking.swf
│ │ └── open-flash-chart.swf
│ ├── init.rb
│ ├── install.rb
│ ├── lib
│ │ ├── open_flash_chart.rb
│ │ └── open_flash_chart
│ │ │ ├── area_base.rb
│ │ │ ├── area_hollow.rb
│ │ │ ├── area_line.rb
│ │ │ ├── arrow.rb
│ │ │ ├── bar.rb
│ │ │ ├── bar_3d.rb
│ │ │ ├── bar_base.rb
│ │ │ ├── bar_filled.rb
│ │ │ ├── bar_glass.rb
│ │ │ ├── bar_sketch.rb
│ │ │ ├── bar_stack.rb
│ │ │ ├── base.rb
│ │ │ ├── candle.rb
│ │ │ ├── chart.rb
│ │ │ ├── dot_base.rb
│ │ │ ├── h_bar.rb
│ │ │ ├── legend.rb
│ │ │ ├── line.rb
│ │ │ ├── line_base.rb
│ │ │ ├── line_dot.rb
│ │ │ ├── line_hollow.rb
│ │ │ ├── line_style.rb
│ │ │ ├── linear_regression.rb
│ │ │ ├── menu.rb
│ │ │ ├── ofc_ajax.rb
│ │ │ ├── open_flash_chart_object.rb
│ │ │ ├── pie.rb
│ │ │ ├── radar_axis.rb
│ │ │ ├── radar_axis_labels.rb
│ │ │ ├── radar_spoke_labels.rb
│ │ │ ├── scatter.rb
│ │ │ ├── scatter_line.rb
│ │ │ ├── shape.rb
│ │ │ ├── sugar.rb
│ │ │ ├── tags.rb
│ │ │ ├── title.rb
│ │ │ ├── tooltip.rb
│ │ │ ├── upload_image.rb
│ │ │ ├── x_axis.rb
│ │ │ ├── x_axis_label.rb
│ │ │ ├── x_axis_labels.rb
│ │ │ ├── x_legend.rb
│ │ │ ├── y_axis.rb
│ │ │ ├── y_axis_base.rb
│ │ │ ├── y_axis_label.rb
│ │ │ ├── y_axis_labels.rb
│ │ │ ├── y_axis_right.rb
│ │ │ ├── y_legend.rb
│ │ │ └── y_legend_right.rb
│ ├── tasks
│ │ └── open_flash_chart_tasks.rake
│ ├── test
│ │ └── open_flash_chart_test.rb
│ └── uninstall.rb
├── open_id_authentication
│ ├── CHANGELOG
│ ├── README
│ ├── Rakefile
│ ├── init.rb
│ ├── lib
│ │ ├── generators
│ │ │ └── open_id_authentication_tables
│ │ │ │ ├── open_id_authentication_tables_generator.rb
│ │ │ │ └── templates
│ │ │ │ └── migration.rb
│ │ ├── open_id_authentication.rb
│ │ └── open_id_authentication
│ │ │ ├── association.rb
│ │ │ ├── db_store.rb
│ │ │ ├── nonce.rb
│ │ │ └── setting.rb
│ └── tasks
│ │ └── open_id_authentication_tasks.rake
├── query_trace
│ ├── MIT-LICENSE
│ ├── README
│ ├── init.rb
│ └── lib
│ │ └── query_trace.rb
├── resource_feeder
│ ├── README
│ ├── Rakefile
│ ├── init.rb
│ ├── lib
│ │ ├── resource_feeder.rb
│ │ └── resource_feeder
│ │ │ ├── atom.rb
│ │ │ ├── common.rb
│ │ │ └── rss.rb
│ └── test
│ │ ├── atom_feed_test.rb
│ │ ├── rss_feed_test.rb
│ │ └── test_helper.rb
├── simple_captcha
│ ├── MIT-LICENSE
│ ├── README
│ ├── Rakefile
│ ├── assets
│ │ ├── migrate
│ │ │ ├── create_simple_captcha_data.rb
│ │ │ └── create_simple_captcha_data_less_than_2.0.rb
│ │ └── views
│ │ │ └── simple_captcha
│ │ │ └── _simple_captcha.erb
│ ├── init.rb
│ ├── install.rb
│ ├── lib
│ │ ├── simple_captcha_action_controller.rb
│ │ ├── simple_captcha_action_view.rb
│ │ ├── simple_captcha_active_record.rb
│ │ ├── simple_captcha_config.rb
│ │ ├── simple_captcha_controller.rb
│ │ ├── simple_captcha_data.rb
│ │ ├── simple_captcha_image.rb
│ │ └── simple_captcha_setup.rb
│ ├── tasks
│ │ └── simple_captcha_tasks.rake
│ └── test
│ │ └── simple_captcha_test.rb
├── trunk
│ ├── CHANGELOG
│ ├── README
│ ├── Rakefile
│ ├── init.rb
│ ├── lib
│ │ ├── markaby.rb
│ │ └── markaby
│ │ │ ├── builder.rb
│ │ │ ├── cssproxy.rb
│ │ │ ├── kernel_method.rb
│ │ │ ├── metaid.rb
│ │ │ ├── rails.rb
│ │ │ ├── tags.rb
│ │ │ └── template.rb
│ ├── setup.rb
│ ├── test
│ │ ├── rails
│ │ │ ├── markaby
│ │ │ │ ├── _monkeys.mab
│ │ │ │ ├── broken.mab
│ │ │ │ ├── create.mab
│ │ │ │ └── index.mab
│ │ │ ├── monkeys.html
│ │ │ ├── test_helper.rb
│ │ │ └── test_preamble.rb
│ │ ├── rails_test.rb
│ │ └── test_markaby.rb
│ └── tools
│ │ └── rakehelp.rb
├── validates_email_format_of
│ ├── MIT-LICENSE
│ ├── README
│ ├── TODO
│ ├── init.rb
│ ├── lib
│ │ └── validates_email_format_of.rb
│ ├── rakefile
│ └── test
│ │ ├── database.yml
│ │ ├── fixtures
│ │ ├── people.yml
│ │ └── person.rb
│ │ ├── schema.rb
│ │ ├── test_helper.rb
│ │ └── validates_email_format_of_test.rb
├── white_list
│ ├── README
│ ├── Rakefile
│ ├── init.rb
│ ├── lib
│ │ └── white_list_helper.rb
│ └── test
│ │ └── white_list_test.rb
└── xss_terminate
│ ├── CHANGELOG
│ ├── MIT-LICENSE
│ ├── README.rdoc
│ ├── Rakefile
│ ├── init.rb
│ ├── install.rb
│ ├── lib
│ ├── html5lib_sanitize.rb
│ ├── rails_sanitize.rb
│ └── xss_terminate.rb
│ ├── tasks
│ └── xss_terminate_tasks.rake
│ ├── test
│ ├── models
│ │ ├── comment.rb
│ │ ├── entry.rb
│ │ ├── message.rb
│ │ ├── person.rb
│ │ └── review.rb
│ ├── schema.rb
│ ├── setup_test.rb
│ └── xss_terminate_test.rb
│ └── uninstall.rb
├── rails
├── actionmailer
│ ├── CHANGELOG
│ ├── MIT-LICENSE
│ ├── README
│ ├── Rakefile
│ ├── install.rb
│ ├── lib
│ │ ├── action_mailer.rb
│ │ ├── action_mailer
│ │ │ ├── adv_attr_accessor.rb
│ │ │ ├── base.rb
│ │ │ ├── helpers.rb
│ │ │ ├── mail_helper.rb
│ │ │ ├── part.rb
│ │ │ ├── part_container.rb
│ │ │ ├── quoting.rb
│ │ │ ├── test_case.rb
│ │ │ ├── test_helper.rb
│ │ │ ├── utils.rb
│ │ │ ├── vendor
│ │ │ │ ├── text-format-0.6.3
│ │ │ │ │ └── text
│ │ │ │ │ │ └── format.rb
│ │ │ │ ├── text_format.rb
│ │ │ │ ├── tmail-1.2.3
│ │ │ │ │ ├── tmail.rb
│ │ │ │ │ └── tmail
│ │ │ │ │ │ ├── address.rb
│ │ │ │ │ │ ├── attachments.rb
│ │ │ │ │ │ ├── base64.rb
│ │ │ │ │ │ ├── compat.rb
│ │ │ │ │ │ ├── config.rb
│ │ │ │ │ │ ├── core_extensions.rb
│ │ │ │ │ │ ├── encode.rb
│ │ │ │ │ │ ├── header.rb
│ │ │ │ │ │ ├── index.rb
│ │ │ │ │ │ ├── interface.rb
│ │ │ │ │ │ ├── loader.rb
│ │ │ │ │ │ ├── mail.rb
│ │ │ │ │ │ ├── mailbox.rb
│ │ │ │ │ │ ├── main.rb
│ │ │ │ │ │ ├── mbox.rb
│ │ │ │ │ │ ├── net.rb
│ │ │ │ │ │ ├── obsolete.rb
│ │ │ │ │ │ ├── parser.rb
│ │ │ │ │ │ ├── port.rb
│ │ │ │ │ │ ├── quoting.rb
│ │ │ │ │ │ ├── require_arch.rb
│ │ │ │ │ │ ├── scanner.rb
│ │ │ │ │ │ ├── scanner_r.rb
│ │ │ │ │ │ ├── stringio.rb
│ │ │ │ │ │ ├── utils.rb
│ │ │ │ │ │ └── version.rb
│ │ │ │ └── tmail.rb
│ │ │ └── version.rb
│ │ └── actionmailer.rb
│ └── test
│ │ ├── abstract_unit.rb
│ │ ├── asset_host_test.rb
│ │ ├── delivery_method_test.rb
│ │ ├── fixtures
│ │ ├── asset_host_mailer
│ │ │ └── email_with_asset.html.erb
│ │ ├── auto_layout_mailer
│ │ │ ├── hello.html.erb
│ │ │ ├── multipart.text.html.erb
│ │ │ └── multipart.text.plain.erb
│ │ ├── explicit_layout_mailer
│ │ │ ├── logout.html.erb
│ │ │ └── signup.html.erb
│ │ ├── first_mailer
│ │ │ └── share.erb
│ │ ├── helper_mailer
│ │ │ ├── use_example_helper.erb
│ │ │ ├── use_helper.erb
│ │ │ ├── use_helper_method.erb
│ │ │ └── use_mail_helper.erb
│ │ ├── helpers
│ │ │ └── example_helper.rb
│ │ ├── layouts
│ │ │ ├── auto_layout_mailer.html.erb
│ │ │ ├── auto_layout_mailer.text.erb
│ │ │ └── spam.html.erb
│ │ ├── path.with.dots
│ │ │ └── funky_path_mailer
│ │ │ │ └── multipart_with_template_path_with_dots.erb
│ │ ├── raw_email
│ │ ├── raw_email10
│ │ ├── raw_email12
│ │ ├── raw_email13
│ │ ├── raw_email2
│ │ ├── raw_email3
│ │ ├── raw_email4
│ │ ├── raw_email5
│ │ ├── raw_email6
│ │ ├── raw_email7
│ │ ├── raw_email8
│ │ ├── raw_email9
│ │ ├── raw_email_quoted_with_0d0a
│ │ ├── raw_email_with_invalid_characters_in_content_type
│ │ ├── raw_email_with_nested_attachment
│ │ ├── raw_email_with_partially_quoted_subject
│ │ ├── second_mailer
│ │ │ └── share.erb
│ │ ├── templates
│ │ │ └── signed_up.erb
│ │ └── test_mailer
│ │ │ ├── _subtemplate.text.plain.erb
│ │ │ ├── body_ivar.erb
│ │ │ ├── custom_templating_extension.text.html.haml
│ │ │ ├── custom_templating_extension.text.plain.haml
│ │ │ ├── implicitly_multipart_example.ignored.erb
│ │ │ ├── implicitly_multipart_example.rhtml.bak
│ │ │ ├── implicitly_multipart_example.text.html.erb
│ │ │ ├── implicitly_multipart_example.text.html.erb~
│ │ │ ├── implicitly_multipart_example.text.plain.erb
│ │ │ ├── implicitly_multipart_example.text.yaml.erb
│ │ │ ├── included_subtemplate.text.plain.erb
│ │ │ ├── rxml_template.builder
│ │ │ ├── rxml_template.rxml
│ │ │ ├── signed_up.html.erb
│ │ │ └── signed_up_with_url.erb
│ │ ├── mail_helper_test.rb
│ │ ├── mail_layout_test.rb
│ │ ├── mail_render_test.rb
│ │ ├── mail_service_test.rb
│ │ ├── quoting_test.rb
│ │ ├── test_helper_test.rb
│ │ ├── tmail_test.rb
│ │ └── url_test.rb
├── actionpack
│ ├── CHANGELOG
│ ├── MIT-LICENSE
│ ├── README
│ ├── RUNNING_UNIT_TESTS
│ ├── Rakefile
│ ├── install.rb
│ ├── lib
│ │ ├── action_controller.rb
│ │ ├── action_controller
│ │ │ ├── assertions
│ │ │ │ ├── dom_assertions.rb
│ │ │ │ ├── model_assertions.rb
│ │ │ │ ├── response_assertions.rb
│ │ │ │ ├── routing_assertions.rb
│ │ │ │ ├── selector_assertions.rb
│ │ │ │ └── tag_assertions.rb
│ │ │ ├── base.rb
│ │ │ ├── benchmarking.rb
│ │ │ ├── caching.rb
│ │ │ ├── caching
│ │ │ │ ├── actions.rb
│ │ │ │ ├── fragments.rb
│ │ │ │ ├── pages.rb
│ │ │ │ ├── sweeper.rb
│ │ │ │ └── sweeping.rb
│ │ │ ├── cgi_ext.rb
│ │ │ ├── cgi_ext
│ │ │ │ ├── cookie.rb
│ │ │ │ ├── query_extension.rb
│ │ │ │ └── stdinput.rb
│ │ │ ├── cgi_process.rb
│ │ │ ├── cookies.rb
│ │ │ ├── dispatcher.rb
│ │ │ ├── failsafe.rb
│ │ │ ├── filters.rb
│ │ │ ├── flash.rb
│ │ │ ├── headers.rb
│ │ │ ├── helpers.rb
│ │ │ ├── http_authentication.rb
│ │ │ ├── integration.rb
│ │ │ ├── layout.rb
│ │ │ ├── middleware_stack.rb
│ │ │ ├── middlewares.rb
│ │ │ ├── mime_responds.rb
│ │ │ ├── mime_type.rb
│ │ │ ├── mime_types.rb
│ │ │ ├── params_parser.rb
│ │ │ ├── performance_test.rb
│ │ │ ├── polymorphic_routes.rb
│ │ │ ├── rack_lint_patch.rb
│ │ │ ├── record_identifier.rb
│ │ │ ├── reloader.rb
│ │ │ ├── request.rb
│ │ │ ├── request_forgery_protection.rb
│ │ │ ├── rescue.rb
│ │ │ ├── resources.rb
│ │ │ ├── response.rb
│ │ │ ├── routing.rb
│ │ │ ├── routing
│ │ │ │ ├── builder.rb
│ │ │ │ ├── optimisations.rb
│ │ │ │ ├── recognition_optimisation.rb
│ │ │ │ ├── route.rb
│ │ │ │ ├── route_set.rb
│ │ │ │ ├── routing_ext.rb
│ │ │ │ └── segments.rb
│ │ │ ├── session
│ │ │ │ ├── abstract_store.rb
│ │ │ │ ├── cookie_store.rb
│ │ │ │ └── mem_cache_store.rb
│ │ │ ├── session_management.rb
│ │ │ ├── status_codes.rb
│ │ │ ├── streaming.rb
│ │ │ ├── string_coercion.rb
│ │ │ ├── templates
│ │ │ │ └── rescues
│ │ │ │ │ ├── _request_and_response.erb
│ │ │ │ │ ├── _trace.erb
│ │ │ │ │ ├── diagnostics.erb
│ │ │ │ │ ├── layout.erb
│ │ │ │ │ ├── missing_template.erb
│ │ │ │ │ ├── routing_error.erb
│ │ │ │ │ ├── template_error.erb
│ │ │ │ │ └── unknown_action.erb
│ │ │ ├── test_case.rb
│ │ │ ├── test_process.rb
│ │ │ ├── translation.rb
│ │ │ ├── uploaded_file.rb
│ │ │ ├── url_rewriter.rb
│ │ │ ├── vendor
│ │ │ │ ├── html-scanner.rb
│ │ │ │ └── html-scanner
│ │ │ │ │ └── html
│ │ │ │ │ ├── document.rb
│ │ │ │ │ ├── node.rb
│ │ │ │ │ ├── sanitizer.rb
│ │ │ │ │ ├── selector.rb
│ │ │ │ │ ├── tokenizer.rb
│ │ │ │ │ └── version.rb
│ │ │ └── verification.rb
│ │ ├── action_pack.rb
│ │ ├── action_pack
│ │ │ └── version.rb
│ │ ├── action_view.rb
│ │ ├── action_view
│ │ │ ├── base.rb
│ │ │ ├── erb
│ │ │ │ └── util.rb
│ │ │ ├── helpers.rb
│ │ │ ├── helpers
│ │ │ │ ├── active_record_helper.rb
│ │ │ │ ├── asset_tag_helper.rb
│ │ │ │ ├── atom_feed_helper.rb
│ │ │ │ ├── benchmark_helper.rb
│ │ │ │ ├── cache_helper.rb
│ │ │ │ ├── capture_helper.rb
│ │ │ │ ├── date_helper.rb
│ │ │ │ ├── debug_helper.rb
│ │ │ │ ├── form_helper.rb
│ │ │ │ ├── form_options_helper.rb
│ │ │ │ ├── form_tag_helper.rb
│ │ │ │ ├── javascript_helper.rb
│ │ │ │ ├── number_helper.rb
│ │ │ │ ├── prototype_helper.rb
│ │ │ │ ├── raw_output_helper.rb
│ │ │ │ ├── record_identification_helper.rb
│ │ │ │ ├── record_tag_helper.rb
│ │ │ │ ├── sanitize_helper.rb
│ │ │ │ ├── scriptaculous_helper.rb
│ │ │ │ ├── tag_helper.rb
│ │ │ │ ├── text_helper.rb
│ │ │ │ ├── translation_helper.rb
│ │ │ │ └── url_helper.rb
│ │ │ ├── inline_template.rb
│ │ │ ├── locale
│ │ │ │ └── en.yml
│ │ │ ├── partials.rb
│ │ │ ├── paths.rb
│ │ │ ├── reloadable_template.rb
│ │ │ ├── renderable.rb
│ │ │ ├── renderable_partial.rb
│ │ │ ├── safe_buffer.rb
│ │ │ ├── template.rb
│ │ │ ├── template_error.rb
│ │ │ ├── template_handler.rb
│ │ │ ├── template_handlers.rb
│ │ │ ├── template_handlers
│ │ │ │ ├── builder.rb
│ │ │ │ ├── erb.rb
│ │ │ │ └── rjs.rb
│ │ │ └── test_case.rb
│ │ └── actionpack.rb
│ └── test
│ │ ├── abstract_unit.rb
│ │ ├── active_record_unit.rb
│ │ ├── activerecord
│ │ ├── active_record_store_test.rb
│ │ └── render_partial_with_record_identification_test.rb
│ │ ├── adv_attr_test.rb
│ │ ├── controller
│ │ ├── action_pack_assertions_test.rb
│ │ ├── addresses_render_test.rb
│ │ ├── assert_select_test.rb
│ │ ├── base_test.rb
│ │ ├── benchmark_test.rb
│ │ ├── caching_test.rb
│ │ ├── capture_test.rb
│ │ ├── content_type_test.rb
│ │ ├── controller_fixtures
│ │ │ ├── app
│ │ │ │ └── controllers
│ │ │ │ │ ├── admin
│ │ │ │ │ └── user_controller.rb
│ │ │ │ │ └── user_controller.rb
│ │ │ └── vendor
│ │ │ │ └── plugins
│ │ │ │ └── bad_plugin
│ │ │ │ └── lib
│ │ │ │ └── plugin_controller.rb
│ │ ├── cookie_test.rb
│ │ ├── deprecation
│ │ │ └── deprecated_base_methods_test.rb
│ │ ├── dispatcher_test.rb
│ │ ├── dom_assertions_test.rb
│ │ ├── failsafe_test.rb
│ │ ├── fake_controllers.rb
│ │ ├── fake_models.rb
│ │ ├── filter_params_test.rb
│ │ ├── filters_test.rb
│ │ ├── flash_test.rb
│ │ ├── header_test.rb
│ │ ├── helper_test.rb
│ │ ├── html-scanner
│ │ │ ├── cdata_node_test.rb
│ │ │ ├── document_test.rb
│ │ │ ├── node_test.rb
│ │ │ ├── sanitizer_test.rb
│ │ │ ├── tag_node_test.rb
│ │ │ ├── text_node_test.rb
│ │ │ └── tokenizer_test.rb
│ │ ├── http_basic_authentication_test.rb
│ │ ├── http_digest_authentication_test.rb
│ │ ├── integration_test.rb
│ │ ├── layout_test.rb
│ │ ├── logging_test.rb
│ │ ├── middleware_stack_test.rb
│ │ ├── mime_responds_test.rb
│ │ ├── mime_type_test.rb
│ │ ├── polymorphic_routes_test.rb
│ │ ├── rack_test.rb
│ │ ├── record_identifier_test.rb
│ │ ├── redirect_test.rb
│ │ ├── reloader_test.rb
│ │ ├── render_test.rb
│ │ ├── request
│ │ │ ├── json_params_parsing_test.rb
│ │ │ ├── multipart_params_parsing_test.rb
│ │ │ ├── query_string_parsing_test.rb
│ │ │ ├── test_request_test.rb
│ │ │ ├── url_encoded_params_parsing_test.rb
│ │ │ └── xml_params_parsing_test.rb
│ │ ├── request_forgery_protection_test.rb
│ │ ├── request_test.rb
│ │ ├── rescue_test.rb
│ │ ├── resources_test.rb
│ │ ├── routing_test.rb
│ │ ├── selector_test.rb
│ │ ├── send_file_test.rb
│ │ ├── session
│ │ │ ├── cookie_store_test.rb
│ │ │ ├── mem_cache_store_test.rb
│ │ │ └── test_session_test.rb
│ │ ├── test_test.rb
│ │ ├── translation_test.rb
│ │ ├── url_rewriter_test.rb
│ │ ├── verification_test.rb
│ │ ├── view_paths_test.rb
│ │ └── webservice_test.rb
│ │ ├── fixtures
│ │ ├── _top_level_partial.html.erb
│ │ ├── _top_level_partial_only.erb
│ │ ├── addresses
│ │ │ └── list.erb
│ │ ├── alternate_helpers
│ │ │ └── foo_helper.rb
│ │ ├── bad_customers
│ │ │ └── _bad_customer.html.erb
│ │ ├── companies.yml
│ │ ├── company.rb
│ │ ├── content_type
│ │ │ ├── render_default_content_types_for_respond_to.rhtml
│ │ │ ├── render_default_for_rhtml.rhtml
│ │ │ ├── render_default_for_rjs.rjs
│ │ │ └── render_default_for_rxml.rxml
│ │ ├── customers
│ │ │ └── _customer.html.erb
│ │ ├── db_definitions
│ │ │ └── sqlite.sql
│ │ ├── developer.rb
│ │ ├── developers.yml
│ │ ├── developers
│ │ │ └── _developer.erb
│ │ ├── developers_projects.yml
│ │ ├── failsafe
│ │ │ └── 500.html
│ │ ├── fun
│ │ │ ├── games
│ │ │ │ ├── _game.erb
│ │ │ │ └── hello_world.erb
│ │ │ └── serious
│ │ │ │ └── games
│ │ │ │ └── _game.erb
│ │ ├── functional_caching
│ │ │ ├── _partial.erb
│ │ │ ├── formatted_fragment_cached.html.erb
│ │ │ ├── formatted_fragment_cached.js.rjs
│ │ │ ├── formatted_fragment_cached.xml.builder
│ │ │ ├── fragment_cached.html.erb
│ │ │ ├── html_fragment_cached_with_partial.html.erb
│ │ │ ├── inline_fragment_cached.html.erb
│ │ │ └── js_fragment_cached_with_partial.js.rjs
│ │ ├── good_customers
│ │ │ └── _good_customer.html.erb
│ │ ├── helpers
│ │ │ ├── abc_helper.rb
│ │ │ └── fun
│ │ │ │ ├── games_helper.rb
│ │ │ │ └── pdf_helper.rb
│ │ ├── layout_tests
│ │ │ ├── abs_path_layout.rhtml
│ │ │ ├── alt
│ │ │ │ ├── hello.rhtml
│ │ │ │ └── layouts
│ │ │ │ │ └── alt.rhtml
│ │ │ ├── layouts
│ │ │ │ ├── controller_name_space
│ │ │ │ │ └── nested.rhtml
│ │ │ │ ├── item.rhtml
│ │ │ │ ├── layout_test.rhtml
│ │ │ │ ├── multiple_extensions.html.erb
│ │ │ │ └── third_party_template_library.mab
│ │ │ └── views
│ │ │ │ └── hello.rhtml
│ │ ├── layouts
│ │ │ ├── _column.html.erb
│ │ │ ├── block_with_layout.erb
│ │ │ ├── builder.builder
│ │ │ ├── default_html.html.erb
│ │ │ ├── partial_with_layout.erb
│ │ │ ├── standard.erb
│ │ │ ├── talk_from_action.erb
│ │ │ ├── xhr.html.erb
│ │ │ └── yield.erb
│ │ ├── mascot.rb
│ │ ├── mascots.yml
│ │ ├── mascots
│ │ │ └── _mascot.html.erb
│ │ ├── multipart
│ │ │ ├── binary_file
│ │ │ ├── boundary_problem_file
│ │ │ ├── bracketed_param
│ │ │ ├── empty
│ │ │ ├── hello.txt
│ │ │ ├── large_text_file
│ │ │ ├── mixed_files
│ │ │ ├── mona_lisa.jpg
│ │ │ ├── none
│ │ │ ├── single_parameter
│ │ │ └── text_file
│ │ ├── override
│ │ │ └── test
│ │ │ │ └── hello_world.erb
│ │ ├── override2
│ │ │ └── layouts
│ │ │ │ └── test
│ │ │ │ └── sub.erb
│ │ ├── post_test
│ │ │ ├── layouts
│ │ │ │ ├── post.html.erb
│ │ │ │ └── super_post.iphone.erb
│ │ │ ├── post
│ │ │ │ ├── index.html.erb
│ │ │ │ └── index.iphone.erb
│ │ │ └── super_post
│ │ │ │ ├── index.html.erb
│ │ │ │ └── index.iphone.erb
│ │ ├── project.rb
│ │ ├── projects.yml
│ │ ├── projects
│ │ │ └── _project.erb
│ │ ├── public
│ │ │ ├── 404.html
│ │ │ ├── 500.da.html
│ │ │ ├── 500.html
│ │ │ ├── absolute
│ │ │ │ ├── test.css
│ │ │ │ └── test.js
│ │ │ ├── images
│ │ │ │ └── rails.png
│ │ │ ├── javascripts
│ │ │ │ ├── application.js
│ │ │ │ ├── bank.js
│ │ │ │ ├── controls.js
│ │ │ │ ├── dragdrop.js
│ │ │ │ ├── effects.js
│ │ │ │ ├── prototype.js
│ │ │ │ ├── robber.js
│ │ │ │ ├── subdir
│ │ │ │ │ └── subdir.js
│ │ │ │ └── version.1.0.js
│ │ │ └── stylesheets
│ │ │ │ ├── bank.css
│ │ │ │ ├── robber.css
│ │ │ │ ├── subdir
│ │ │ │ └── subdir.css
│ │ │ │ └── version.1.0.css
│ │ ├── quiz
│ │ │ └── questions
│ │ │ │ └── _question.html.erb
│ │ ├── replies.yml
│ │ ├── replies
│ │ │ └── _reply.erb
│ │ ├── reply.rb
│ │ ├── respond_to
│ │ │ ├── all_types_with_layout.html.erb
│ │ │ ├── all_types_with_layout.js.rjs
│ │ │ ├── custom_constant_handling_without_block.mobile.erb
│ │ │ ├── iphone_with_html_response_type.html.erb
│ │ │ ├── iphone_with_html_response_type.iphone.erb
│ │ │ ├── layouts
│ │ │ │ ├── missing.html.erb
│ │ │ │ ├── standard.html.erb
│ │ │ │ └── standard.iphone.erb
│ │ │ ├── using_defaults.html.erb
│ │ │ ├── using_defaults.js.rjs
│ │ │ ├── using_defaults.xml.builder
│ │ │ ├── using_defaults_with_type_list.html.erb
│ │ │ ├── using_defaults_with_type_list.js.rjs
│ │ │ └── using_defaults_with_type_list.xml.builder
│ │ ├── scope
│ │ │ └── test
│ │ │ │ └── modgreet.erb
│ │ ├── shared.html.erb
│ │ ├── symlink_parent
│ │ │ └── symlinked_layout.erb
│ │ ├── test
│ │ │ ├── _counter.html.erb
│ │ │ ├── _customer.erb
│ │ │ ├── _customer_counter.erb
│ │ │ ├── _customer_greeting.erb
│ │ │ ├── _customer_with_var.erb
│ │ │ ├── _form.erb
│ │ │ ├── _from_helper.erb
│ │ │ ├── _hash_greeting.erb
│ │ │ ├── _hash_object.erb
│ │ │ ├── _hello.builder
│ │ │ ├── _labelling_form.erb
│ │ │ ├── _layout_for_block_with_args.html.erb
│ │ │ ├── _layout_for_partial.html.erb
│ │ │ ├── _local_inspector.html.erb
│ │ │ ├── _one.html.erb
│ │ │ ├── _partial.erb
│ │ │ ├── _partial.html.erb
│ │ │ ├── _partial.js.erb
│ │ │ ├── _partial_for_use_in_layout.html.erb
│ │ │ ├── _partial_only.erb
│ │ │ ├── _partial_with_only_html_version.html.erb
│ │ │ ├── _person.erb
│ │ │ ├── _raise.html.erb
│ │ │ ├── _two.html.erb
│ │ │ ├── action_talk_to_layout.erb
│ │ │ ├── calling_partial_with_layout.html.erb
│ │ │ ├── capturing.erb
│ │ │ ├── content_for.erb
│ │ │ ├── content_for_concatenated.erb
│ │ │ ├── content_for_with_parameter.erb
│ │ │ ├── delete_with_js.rjs
│ │ │ ├── dont_pick_me
│ │ │ ├── dot.directory
│ │ │ │ └── render_file_with_ivar.erb
│ │ │ ├── enum_rjs_test.rjs
│ │ │ ├── formatted_html_erb.html.erb
│ │ │ ├── formatted_xml_erb.builder
│ │ │ ├── formatted_xml_erb.html.erb
│ │ │ ├── formatted_xml_erb.xml.erb
│ │ │ ├── greeting.erb
│ │ │ ├── greeting.js.rjs
│ │ │ ├── hello.builder
│ │ │ ├── hello_world.da.html.erb
│ │ │ ├── hello_world.erb
│ │ │ ├── hello_world.erb~
│ │ │ ├── hello_world.pt-BR.html.erb
│ │ │ ├── hello_world_container.builder
│ │ │ ├── hello_world_from_rxml.builder
│ │ │ ├── hello_world_with_layout_false.erb
│ │ │ ├── hello_xml_world.builder
│ │ │ ├── hyphen-ated.erb
│ │ │ ├── implicit_content_type.atom.builder
│ │ │ ├── list.erb
│ │ │ ├── malformed
│ │ │ │ ├── malformed.en.html.erb~
│ │ │ │ ├── malformed.erb~
│ │ │ │ └── malformed.html.erb~
│ │ │ ├── nested_layout.erb
│ │ │ ├── non_erb_block_content_for.builder
│ │ │ ├── potential_conflicts.erb
│ │ │ ├── render_explicit_html_template.js.rjs
│ │ │ ├── render_file_from_template.html.erb
│ │ │ ├── render_file_with_ivar.erb
│ │ │ ├── render_file_with_locals.erb
│ │ │ ├── render_implicit_html_template.js.rjs
│ │ │ ├── render_implicit_html_template_from_xhr_request.da.html.erb
│ │ │ ├── render_implicit_html_template_from_xhr_request.html.erb
│ │ │ ├── render_implicit_js_template_without_layout.js.erb
│ │ │ ├── render_to_string_test.erb
│ │ │ ├── sub_template_raise.html.erb
│ │ │ ├── template.erb
│ │ │ ├── update_element_with_capture.erb
│ │ │ ├── using_layout_around_block.html.erb
│ │ │ ├── using_layout_around_block_with_args.html.erb
│ │ │ └── utf8.html.erb
│ │ ├── topic.rb
│ │ ├── topics.yml
│ │ └── topics
│ │ │ └── _topic.html.erb
│ │ ├── template
│ │ ├── active_record_helper_i18n_test.rb
│ │ ├── active_record_helper_test.rb
│ │ ├── asset_tag_helper_test.rb
│ │ ├── atom_feed_helper_test.rb
│ │ ├── benchmark_helper_test.rb
│ │ ├── compiled_templates_test.rb
│ │ ├── date_helper_i18n_test.rb
│ │ ├── date_helper_test.rb
│ │ ├── erb_util_test.rb
│ │ ├── form_helper_test.rb
│ │ ├── form_options_helper_i18n_test.rb
│ │ ├── form_options_helper_test.rb
│ │ ├── form_tag_helper_test.rb
│ │ ├── javascript_helper_test.rb
│ │ ├── number_helper_i18n_test.rb
│ │ ├── number_helper_test.rb
│ │ ├── prototype_helper_test.rb
│ │ ├── raw_output_helper_test.rb
│ │ ├── record_tag_helper_test.rb
│ │ ├── render_test.rb
│ │ ├── sanitize_helper_test.rb
│ │ ├── scriptaculous_helper_test.rb
│ │ ├── tag_helper_test.rb
│ │ ├── template_test.rb
│ │ ├── test_test.rb
│ │ ├── text_helper_test.rb
│ │ ├── translation_helper_test.rb
│ │ └── url_helper_test.rb
│ │ ├── testing_sandbox.rb
│ │ └── view
│ │ ├── safe_buffer_test.rb
│ │ └── test_case_test.rb
├── activerecord
│ ├── CHANGELOG
│ ├── README
│ ├── RUNNING_UNIT_TESTS
│ ├── Rakefile
│ ├── examples
│ │ ├── associations.png
│ │ └── performance.rb
│ ├── install.rb
│ ├── lib
│ │ ├── active_record.rb
│ │ ├── active_record
│ │ │ ├── aggregations.rb
│ │ │ ├── association_preload.rb
│ │ │ ├── associations.rb
│ │ │ ├── associations
│ │ │ │ ├── association_collection.rb
│ │ │ │ ├── association_proxy.rb
│ │ │ │ ├── belongs_to_association.rb
│ │ │ │ ├── belongs_to_polymorphic_association.rb
│ │ │ │ ├── has_and_belongs_to_many_association.rb
│ │ │ │ ├── has_many_association.rb
│ │ │ │ ├── has_many_through_association.rb
│ │ │ │ ├── has_one_association.rb
│ │ │ │ └── has_one_through_association.rb
│ │ │ ├── attribute_methods.rb
│ │ │ ├── autosave_association.rb
│ │ │ ├── base.rb
│ │ │ ├── batches.rb
│ │ │ ├── calculations.rb
│ │ │ ├── callbacks.rb
│ │ │ ├── connection_adapters
│ │ │ │ ├── abstract
│ │ │ │ │ ├── connection_pool.rb
│ │ │ │ │ ├── connection_specification.rb
│ │ │ │ │ ├── database_statements.rb
│ │ │ │ │ ├── query_cache.rb
│ │ │ │ │ ├── quoting.rb
│ │ │ │ │ ├── schema_definitions.rb
│ │ │ │ │ └── schema_statements.rb
│ │ │ │ ├── abstract_adapter.rb
│ │ │ │ ├── mysql_adapter.rb
│ │ │ │ ├── postgresql_adapter.rb
│ │ │ │ ├── sqlite3_adapter.rb
│ │ │ │ └── sqlite_adapter.rb
│ │ │ ├── dirty.rb
│ │ │ ├── dynamic_finder_match.rb
│ │ │ ├── dynamic_scope_match.rb
│ │ │ ├── fixtures.rb
│ │ │ ├── i18n_interpolation_deprecation.rb
│ │ │ ├── locale
│ │ │ │ └── en.yml
│ │ │ ├── locking
│ │ │ │ ├── optimistic.rb
│ │ │ │ └── pessimistic.rb
│ │ │ ├── migration.rb
│ │ │ ├── named_scope.rb
│ │ │ ├── nested_attributes.rb
│ │ │ ├── observer.rb
│ │ │ ├── query_cache.rb
│ │ │ ├── reflection.rb
│ │ │ ├── schema.rb
│ │ │ ├── schema_dumper.rb
│ │ │ ├── serialization.rb
│ │ │ ├── serializers
│ │ │ │ ├── json_serializer.rb
│ │ │ │ └── xml_serializer.rb
│ │ │ ├── session_store.rb
│ │ │ ├── test_case.rb
│ │ │ ├── timestamp.rb
│ │ │ ├── transactions.rb
│ │ │ ├── validations.rb
│ │ │ └── version.rb
│ │ └── activerecord.rb
│ └── test
│ │ ├── assets
│ │ ├── example.log
│ │ └── flowers.jpg
│ │ ├── cases
│ │ ├── aaa_create_tables_test.rb
│ │ ├── active_schema_test_mysql.rb
│ │ ├── active_schema_test_postgresql.rb
│ │ ├── adapter_test.rb
│ │ ├── aggregations_test.rb
│ │ ├── ar_schema_test.rb
│ │ ├── associations
│ │ │ ├── belongs_to_associations_test.rb
│ │ │ ├── callbacks_test.rb
│ │ │ ├── cascaded_eager_loading_test.rb
│ │ │ ├── eager_load_includes_full_sti_class_test.rb
│ │ │ ├── eager_load_nested_include_test.rb
│ │ │ ├── eager_singularization_test.rb
│ │ │ ├── eager_test.rb
│ │ │ ├── extension_test.rb
│ │ │ ├── habtm_join_table_test.rb
│ │ │ ├── has_and_belongs_to_many_associations_test.rb
│ │ │ ├── has_many_associations_test.rb
│ │ │ ├── has_many_through_associations_test.rb
│ │ │ ├── has_one_associations_test.rb
│ │ │ ├── has_one_through_associations_test.rb
│ │ │ ├── inner_join_association_test.rb
│ │ │ └── join_model_test.rb
│ │ ├── associations_test.rb
│ │ ├── attribute_methods_test.rb
│ │ ├── autosave_association_test.rb
│ │ ├── base_test.rb
│ │ ├── batches_test.rb
│ │ ├── binary_test.rb
│ │ ├── calculations_test.rb
│ │ ├── callbacks_observers_test.rb
│ │ ├── callbacks_test.rb
│ │ ├── class_inheritable_attributes_test.rb
│ │ ├── column_alias_test.rb
│ │ ├── column_definition_test.rb
│ │ ├── connection_pool_test.rb
│ │ ├── connection_test_firebird.rb
│ │ ├── connection_test_mysql.rb
│ │ ├── copy_table_test_sqlite.rb
│ │ ├── database_statements_test.rb
│ │ ├── datatype_test_postgresql.rb
│ │ ├── date_time_test.rb
│ │ ├── default_test_firebird.rb
│ │ ├── defaults_test.rb
│ │ ├── deprecated_finder_test.rb
│ │ ├── dirty_test.rb
│ │ ├── finder_respond_to_test.rb
│ │ ├── finder_test.rb
│ │ ├── fixtures_test.rb
│ │ ├── helper.rb
│ │ ├── i18n_test.rb
│ │ ├── inheritance_test.rb
│ │ ├── invalid_date_test.rb
│ │ ├── json_serialization_test.rb
│ │ ├── lifecycle_test.rb
│ │ ├── locking_test.rb
│ │ ├── method_scoping_test.rb
│ │ ├── migration_test.rb
│ │ ├── migration_test_firebird.rb
│ │ ├── mixin_test.rb
│ │ ├── modules_test.rb
│ │ ├── multiple_db_test.rb
│ │ ├── named_scope_test.rb
│ │ ├── nested_attributes_test.rb
│ │ ├── pk_test.rb
│ │ ├── pooled_connections_test.rb
│ │ ├── query_cache_test.rb
│ │ ├── readonly_test.rb
│ │ ├── reflection_test.rb
│ │ ├── reload_models_test.rb
│ │ ├── repair_helper.rb
│ │ ├── reserved_word_test_mysql.rb
│ │ ├── sanitize_test.rb
│ │ ├── schema_authorization_test_postgresql.rb
│ │ ├── schema_dumper_test.rb
│ │ ├── schema_test_postgresql.rb
│ │ ├── serialization_test.rb
│ │ ├── synonym_test_oracle.rb
│ │ ├── timestamp_test.rb
│ │ ├── transactions_test.rb
│ │ ├── unconnected_test.rb
│ │ ├── validations_i18n_test.rb
│ │ ├── validations_test.rb
│ │ └── xml_serialization_test.rb
│ │ ├── config.rb
│ │ ├── connections
│ │ ├── jdbc_jdbcderby
│ │ │ └── connection.rb
│ │ ├── jdbc_jdbch2
│ │ │ └── connection.rb
│ │ ├── jdbc_jdbchsqldb
│ │ │ └── connection.rb
│ │ ├── jdbc_jdbcmysql
│ │ │ └── connection.rb
│ │ ├── jdbc_jdbcpostgresql
│ │ │ └── connection.rb
│ │ ├── jdbc_jdbcsqlite3
│ │ │ └── connection.rb
│ │ ├── native_db2
│ │ │ └── connection.rb
│ │ ├── native_firebird
│ │ │ └── connection.rb
│ │ ├── native_frontbase
│ │ │ └── connection.rb
│ │ ├── native_mysql
│ │ │ └── connection.rb
│ │ ├── native_openbase
│ │ │ └── connection.rb
│ │ ├── native_oracle
│ │ │ └── connection.rb
│ │ ├── native_postgresql
│ │ │ └── connection.rb
│ │ ├── native_sqlite
│ │ │ └── connection.rb
│ │ ├── native_sqlite3
│ │ │ ├── connection.rb
│ │ │ └── in_memory_connection.rb
│ │ └── native_sybase
│ │ │ └── connection.rb
│ │ ├── fixtures
│ │ ├── accounts.yml
│ │ ├── all
│ │ │ ├── developers.yml
│ │ │ ├── people.csv
│ │ │ └── tasks.yml
│ │ ├── author_addresses.yml
│ │ ├── author_favorites.yml
│ │ ├── authors.yml
│ │ ├── binaries.yml
│ │ ├── books.yml
│ │ ├── categories.yml
│ │ ├── categories
│ │ │ ├── special_categories.yml
│ │ │ └── subsubdir
│ │ │ │ └── arbitrary_filename.yml
│ │ ├── categories_ordered.yml
│ │ ├── categories_posts.yml
│ │ ├── categorizations.yml
│ │ ├── clubs.yml
│ │ ├── comments.yml
│ │ ├── companies.yml
│ │ ├── computers.yml
│ │ ├── courses.yml
│ │ ├── customers.yml
│ │ ├── developers.yml
│ │ ├── developers_projects.yml
│ │ ├── edges.yml
│ │ ├── entrants.yml
│ │ ├── fixture_database.sqlite
│ │ ├── fixture_database.sqlite3
│ │ ├── fixture_database_2.sqlite
│ │ ├── fixture_database_2.sqlite3
│ │ ├── fk_test_has_fk.yml
│ │ ├── fk_test_has_pk.yml
│ │ ├── funny_jokes.yml
│ │ ├── items.yml
│ │ ├── jobs.yml
│ │ ├── legacy_things.yml
│ │ ├── mateys.yml
│ │ ├── member_types.yml
│ │ ├── members.yml
│ │ ├── memberships.yml
│ │ ├── minimalistics.yml
│ │ ├── mixed_case_monkeys.yml
│ │ ├── mixins.yml
│ │ ├── movies.yml
│ │ ├── naked
│ │ │ ├── csv
│ │ │ │ └── accounts.csv
│ │ │ └── yml
│ │ │ │ ├── accounts.yml
│ │ │ │ ├── companies.yml
│ │ │ │ └── courses.yml
│ │ ├── organizations.yml
│ │ ├── owners.yml
│ │ ├── parrots.yml
│ │ ├── parrots_pirates.yml
│ │ ├── people.yml
│ │ ├── pets.yml
│ │ ├── pirates.yml
│ │ ├── posts.yml
│ │ ├── price_estimates.yml
│ │ ├── projects.yml
│ │ ├── readers.yml
│ │ ├── references.yml
│ │ ├── reserved_words
│ │ │ ├── distinct.yml
│ │ │ ├── distincts_selects.yml
│ │ │ ├── group.yml
│ │ │ ├── select.yml
│ │ │ └── values.yml
│ │ ├── ships.yml
│ │ ├── sponsors.yml
│ │ ├── subscribers.yml
│ │ ├── subscriptions.yml
│ │ ├── taggings.yml
│ │ ├── tags.yml
│ │ ├── tasks.yml
│ │ ├── topics.yml
│ │ ├── toys.yml
│ │ ├── treasures.yml
│ │ ├── vertices.yml
│ │ └── warehouse-things.yml
│ │ ├── migrations
│ │ ├── broken
│ │ │ └── 100_migration_that_raises_exception.rb
│ │ ├── decimal
│ │ │ └── 1_give_me_big_numbers.rb
│ │ ├── duplicate
│ │ │ ├── 1_people_have_last_names.rb
│ │ │ ├── 2_we_need_reminders.rb
│ │ │ ├── 3_foo.rb
│ │ │ └── 3_innocent_jointable.rb
│ │ ├── duplicate_names
│ │ │ ├── 20080507052938_chunky.rb
│ │ │ └── 20080507053028_chunky.rb
│ │ ├── interleaved
│ │ │ ├── pass_1
│ │ │ │ └── 3_innocent_jointable.rb
│ │ │ ├── pass_2
│ │ │ │ ├── 1_people_have_last_names.rb
│ │ │ │ └── 3_innocent_jointable.rb
│ │ │ └── pass_3
│ │ │ │ ├── 1_people_have_last_names.rb
│ │ │ │ ├── 2_i_raise_on_down.rb
│ │ │ │ └── 3_innocent_jointable.rb
│ │ ├── missing
│ │ │ ├── 1000_people_have_middle_names.rb
│ │ │ ├── 1_people_have_last_names.rb
│ │ │ ├── 3_we_need_reminders.rb
│ │ │ └── 4_innocent_jointable.rb
│ │ └── valid
│ │ │ ├── 1_people_have_last_names.rb
│ │ │ ├── 2_we_need_reminders.rb
│ │ │ └── 3_innocent_jointable.rb
│ │ ├── models
│ │ ├── author.rb
│ │ ├── auto_id.rb
│ │ ├── binary.rb
│ │ ├── bird.rb
│ │ ├── book.rb
│ │ ├── categorization.rb
│ │ ├── category.rb
│ │ ├── citation.rb
│ │ ├── club.rb
│ │ ├── column_name.rb
│ │ ├── comment.rb
│ │ ├── company.rb
│ │ ├── company_in_module.rb
│ │ ├── computer.rb
│ │ ├── contact.rb
│ │ ├── contract.rb
│ │ ├── course.rb
│ │ ├── customer.rb
│ │ ├── default.rb
│ │ ├── developer.rb
│ │ ├── edge.rb
│ │ ├── entrant.rb
│ │ ├── essay.rb
│ │ ├── event.rb
│ │ ├── guid.rb
│ │ ├── item.rb
│ │ ├── job.rb
│ │ ├── joke.rb
│ │ ├── keyboard.rb
│ │ ├── legacy_thing.rb
│ │ ├── matey.rb
│ │ ├── member.rb
│ │ ├── member_detail.rb
│ │ ├── member_type.rb
│ │ ├── membership.rb
│ │ ├── minimalistic.rb
│ │ ├── mixed_case_monkey.rb
│ │ ├── movie.rb
│ │ ├── order.rb
│ │ ├── organization.rb
│ │ ├── owner.rb
│ │ ├── parrot.rb
│ │ ├── person.rb
│ │ ├── pet.rb
│ │ ├── pirate.rb
│ │ ├── post.rb
│ │ ├── price_estimate.rb
│ │ ├── project.rb
│ │ ├── reader.rb
│ │ ├── reference.rb
│ │ ├── reply.rb
│ │ ├── ship.rb
│ │ ├── ship_part.rb
│ │ ├── sponsor.rb
│ │ ├── subject.rb
│ │ ├── subscriber.rb
│ │ ├── subscription.rb
│ │ ├── tag.rb
│ │ ├── tagging.rb
│ │ ├── task.rb
│ │ ├── topic.rb
│ │ ├── toy.rb
│ │ ├── treasure.rb
│ │ ├── vertex.rb
│ │ └── warehouse_thing.rb
│ │ └── schema
│ │ ├── mysql_specific_schema.rb
│ │ ├── postgresql_specific_schema.rb
│ │ ├── schema.rb
│ │ ├── schema2.rb
│ │ └── sqlite_specific_schema.rb
├── activeresource
│ ├── CHANGELOG
│ ├── README
│ ├── Rakefile
│ ├── lib
│ │ ├── active_resource.rb
│ │ ├── active_resource
│ │ │ ├── base.rb
│ │ │ ├── connection.rb
│ │ │ ├── custom_methods.rb
│ │ │ ├── exceptions.rb
│ │ │ ├── formats.rb
│ │ │ ├── formats
│ │ │ │ ├── json_format.rb
│ │ │ │ └── xml_format.rb
│ │ │ ├── http_mock.rb
│ │ │ ├── validations.rb
│ │ │ └── version.rb
│ │ └── activeresource.rb
│ └── test
│ │ ├── abstract_unit.rb
│ │ ├── authorization_test.rb
│ │ ├── base
│ │ ├── custom_methods_test.rb
│ │ ├── equality_test.rb
│ │ └── load_test.rb
│ │ ├── base_errors_test.rb
│ │ ├── base_test.rb
│ │ ├── connection_test.rb
│ │ ├── fixtures
│ │ ├── beast.rb
│ │ ├── customer.rb
│ │ ├── person.rb
│ │ ├── proxy.rb
│ │ └── street_address.rb
│ │ ├── format_test.rb
│ │ └── setter_trap.rb
├── activesupport
│ ├── CHANGELOG
│ ├── README
│ └── lib
│ │ ├── active_support.rb
│ │ ├── active_support
│ │ ├── all.rb
│ │ ├── backtrace_cleaner.rb
│ │ ├── base64.rb
│ │ ├── basic_object.rb
│ │ ├── buffered_logger.rb
│ │ ├── cache.rb
│ │ ├── cache
│ │ │ ├── compressed_mem_cache_store.rb
│ │ │ ├── drb_store.rb
│ │ │ ├── file_store.rb
│ │ │ ├── mem_cache_store.rb
│ │ │ ├── memory_store.rb
│ │ │ ├── strategy
│ │ │ │ └── local_cache.rb
│ │ │ └── synchronized_memory_store.rb
│ │ ├── callbacks.rb
│ │ ├── core_ext.rb
│ │ ├── core_ext
│ │ │ ├── array.rb
│ │ │ ├── array
│ │ │ │ ├── access.rb
│ │ │ │ ├── conversions.rb
│ │ │ │ ├── extract_options.rb
│ │ │ │ ├── grouping.rb
│ │ │ │ ├── random_access.rb
│ │ │ │ └── wrapper.rb
│ │ │ ├── base64.rb
│ │ │ ├── base64
│ │ │ │ └── encoding.rb
│ │ │ ├── benchmark.rb
│ │ │ ├── bigdecimal.rb
│ │ │ ├── bigdecimal
│ │ │ │ └── conversions.rb
│ │ │ ├── blank.rb
│ │ │ ├── cgi.rb
│ │ │ ├── cgi
│ │ │ │ └── escape_skipping_slashes.rb
│ │ │ ├── class.rb
│ │ │ ├── class
│ │ │ │ ├── attribute_accessors.rb
│ │ │ │ ├── delegating_attributes.rb
│ │ │ │ ├── inheritable_attributes.rb
│ │ │ │ └── removal.rb
│ │ │ ├── date.rb
│ │ │ ├── date
│ │ │ │ ├── behavior.rb
│ │ │ │ ├── calculations.rb
│ │ │ │ └── conversions.rb
│ │ │ ├── date_time.rb
│ │ │ ├── date_time
│ │ │ │ ├── calculations.rb
│ │ │ │ └── conversions.rb
│ │ │ ├── duplicable.rb
│ │ │ ├── enumerable.rb
│ │ │ ├── exception.rb
│ │ │ ├── file.rb
│ │ │ ├── file
│ │ │ │ └── atomic.rb
│ │ │ ├── float.rb
│ │ │ ├── float
│ │ │ │ ├── rounding.rb
│ │ │ │ └── time.rb
│ │ │ ├── hash.rb
│ │ │ ├── hash
│ │ │ │ ├── conversions.rb
│ │ │ │ ├── deep_merge.rb
│ │ │ │ ├── diff.rb
│ │ │ │ ├── except.rb
│ │ │ │ ├── indifferent_access.rb
│ │ │ │ ├── keys.rb
│ │ │ │ ├── reverse_merge.rb
│ │ │ │ └── slice.rb
│ │ │ ├── integer.rb
│ │ │ ├── integer
│ │ │ │ ├── even_odd.rb
│ │ │ │ ├── inflections.rb
│ │ │ │ └── time.rb
│ │ │ ├── kernel.rb
│ │ │ ├── kernel
│ │ │ │ ├── agnostics.rb
│ │ │ │ ├── daemonizing.rb
│ │ │ │ ├── debugger.rb
│ │ │ │ ├── reporting.rb
│ │ │ │ └── requires.rb
│ │ │ ├── load_error.rb
│ │ │ ├── logger.rb
│ │ │ ├── module.rb
│ │ │ ├── module
│ │ │ │ ├── aliasing.rb
│ │ │ │ ├── attr_accessor_with_default.rb
│ │ │ │ ├── attr_internal.rb
│ │ │ │ ├── attribute_accessors.rb
│ │ │ │ ├── delegation.rb
│ │ │ │ ├── inclusion.rb
│ │ │ │ ├── introspection.rb
│ │ │ │ ├── loading.rb
│ │ │ │ ├── model_naming.rb
│ │ │ │ └── synchronization.rb
│ │ │ ├── name_error.rb
│ │ │ ├── numeric.rb
│ │ │ ├── numeric
│ │ │ │ ├── bytes.rb
│ │ │ │ ├── conversions.rb
│ │ │ │ └── time.rb
│ │ │ ├── object.rb
│ │ │ ├── object
│ │ │ │ ├── blank.rb
│ │ │ │ ├── conversions.rb
│ │ │ │ ├── extending.rb
│ │ │ │ ├── instance_variables.rb
│ │ │ │ ├── metaclass.rb
│ │ │ │ └── misc.rb
│ │ │ ├── pathname.rb
│ │ │ ├── pathname
│ │ │ │ └── clean_within.rb
│ │ │ ├── proc.rb
│ │ │ ├── process.rb
│ │ │ ├── process
│ │ │ │ └── daemon.rb
│ │ │ ├── range.rb
│ │ │ ├── range
│ │ │ │ ├── blockless_step.rb
│ │ │ │ ├── conversions.rb
│ │ │ │ ├── include_range.rb
│ │ │ │ └── overlaps.rb
│ │ │ ├── rexml.rb
│ │ │ ├── string.rb
│ │ │ ├── string
│ │ │ │ ├── access.rb
│ │ │ │ ├── behavior.rb
│ │ │ │ ├── bytesize.rb
│ │ │ │ ├── conversions.rb
│ │ │ │ ├── filters.rb
│ │ │ │ ├── inflections.rb
│ │ │ │ ├── iterators.rb
│ │ │ │ ├── multibyte.rb
│ │ │ │ ├── output_safety.rb
│ │ │ │ ├── starts_ends_with.rb
│ │ │ │ └── xchar.rb
│ │ │ ├── symbol.rb
│ │ │ ├── time.rb
│ │ │ ├── time
│ │ │ │ ├── behavior.rb
│ │ │ │ ├── calculations.rb
│ │ │ │ ├── conversions.rb
│ │ │ │ └── zones.rb
│ │ │ ├── try.rb
│ │ │ └── uri.rb
│ │ ├── dependencies.rb
│ │ ├── deprecation.rb
│ │ ├── duration.rb
│ │ ├── gzip.rb
│ │ ├── inflections.rb
│ │ ├── inflector.rb
│ │ ├── json.rb
│ │ ├── json
│ │ │ ├── backends
│ │ │ │ ├── jsongem.rb
│ │ │ │ └── yaml.rb
│ │ │ ├── decoding.rb
│ │ │ ├── encoders
│ │ │ │ ├── date.rb
│ │ │ │ ├── date_time.rb
│ │ │ │ ├── enumerable.rb
│ │ │ │ ├── false_class.rb
│ │ │ │ ├── hash.rb
│ │ │ │ ├── nil_class.rb
│ │ │ │ ├── numeric.rb
│ │ │ │ ├── object.rb
│ │ │ │ ├── regexp.rb
│ │ │ │ ├── string.rb
│ │ │ │ ├── symbol.rb
│ │ │ │ ├── time.rb
│ │ │ │ └── true_class.rb
│ │ │ ├── encoding.rb
│ │ │ └── variable.rb
│ │ ├── locale
│ │ │ └── en.yml
│ │ ├── memoizable.rb
│ │ ├── message_encryptor.rb
│ │ ├── message_verifier.rb
│ │ ├── multibyte.rb
│ │ ├── multibyte
│ │ │ ├── chars.rb
│ │ │ ├── exceptions.rb
│ │ │ ├── unicode_database.rb
│ │ │ └── utils.rb
│ │ ├── option_merger.rb
│ │ ├── ordered_hash.rb
│ │ ├── ordered_options.rb
│ │ ├── rescuable.rb
│ │ ├── secure_random.rb
│ │ ├── string_inquirer.rb
│ │ ├── test_case.rb
│ │ ├── testing
│ │ │ ├── assertions.rb
│ │ │ ├── declarative.rb
│ │ │ ├── default.rb
│ │ │ ├── deprecation.rb
│ │ │ ├── performance.rb
│ │ │ └── setup_and_teardown.rb
│ │ ├── time_with_zone.rb
│ │ ├── values
│ │ │ ├── time_zone.rb
│ │ │ └── unicode_tables.dat
│ │ ├── vendor.rb
│ │ ├── vendor
│ │ │ ├── builder-2.1.2
│ │ │ │ ├── blankslate.rb
│ │ │ │ ├── builder.rb
│ │ │ │ └── builder
│ │ │ │ │ ├── blankslate.rb
│ │ │ │ │ ├── css.rb
│ │ │ │ │ ├── xchar.rb
│ │ │ │ │ ├── xmlbase.rb
│ │ │ │ │ ├── xmlevents.rb
│ │ │ │ │ └── xmlmarkup.rb
│ │ │ ├── i18n-0.1.3
│ │ │ │ ├── MIT-LICENSE
│ │ │ │ ├── README.textile
│ │ │ │ ├── Rakefile
│ │ │ │ ├── i18n.gemspec
│ │ │ │ ├── lib
│ │ │ │ │ ├── i18n.rb
│ │ │ │ │ └── i18n
│ │ │ │ │ │ ├── backend
│ │ │ │ │ │ └── simple.rb
│ │ │ │ │ │ └── exceptions.rb
│ │ │ │ └── test
│ │ │ │ │ ├── all.rb
│ │ │ │ │ ├── i18n_exceptions_test.rb
│ │ │ │ │ ├── i18n_test.rb
│ │ │ │ │ ├── locale
│ │ │ │ │ ├── en.rb
│ │ │ │ │ └── en.yml
│ │ │ │ │ └── simple_backend_test.rb
│ │ │ ├── memcache-client-1.7.4
│ │ │ │ └── memcache.rb
│ │ │ └── tzinfo-0.3.12
│ │ │ │ ├── tzinfo.rb
│ │ │ │ └── tzinfo
│ │ │ │ ├── data_timezone.rb
│ │ │ │ ├── data_timezone_info.rb
│ │ │ │ ├── definitions
│ │ │ │ ├── Africa
│ │ │ │ │ ├── Algiers.rb
│ │ │ │ │ ├── Cairo.rb
│ │ │ │ │ ├── Casablanca.rb
│ │ │ │ │ ├── Harare.rb
│ │ │ │ │ ├── Johannesburg.rb
│ │ │ │ │ ├── Monrovia.rb
│ │ │ │ │ └── Nairobi.rb
│ │ │ │ ├── America
│ │ │ │ │ ├── Argentina
│ │ │ │ │ │ ├── Buenos_Aires.rb
│ │ │ │ │ │ └── San_Juan.rb
│ │ │ │ │ ├── Bogota.rb
│ │ │ │ │ ├── Caracas.rb
│ │ │ │ │ ├── Chicago.rb
│ │ │ │ │ ├── Chihuahua.rb
│ │ │ │ │ ├── Denver.rb
│ │ │ │ │ ├── Godthab.rb
│ │ │ │ │ ├── Guatemala.rb
│ │ │ │ │ ├── Halifax.rb
│ │ │ │ │ ├── Indiana
│ │ │ │ │ │ └── Indianapolis.rb
│ │ │ │ │ ├── Juneau.rb
│ │ │ │ │ ├── La_Paz.rb
│ │ │ │ │ ├── Lima.rb
│ │ │ │ │ ├── Los_Angeles.rb
│ │ │ │ │ ├── Mazatlan.rb
│ │ │ │ │ ├── Mexico_City.rb
│ │ │ │ │ ├── Monterrey.rb
│ │ │ │ │ ├── New_York.rb
│ │ │ │ │ ├── Phoenix.rb
│ │ │ │ │ ├── Regina.rb
│ │ │ │ │ ├── Santiago.rb
│ │ │ │ │ ├── Sao_Paulo.rb
│ │ │ │ │ ├── St_Johns.rb
│ │ │ │ │ └── Tijuana.rb
│ │ │ │ ├── Asia
│ │ │ │ │ ├── Almaty.rb
│ │ │ │ │ ├── Baghdad.rb
│ │ │ │ │ ├── Baku.rb
│ │ │ │ │ ├── Bangkok.rb
│ │ │ │ │ ├── Chongqing.rb
│ │ │ │ │ ├── Colombo.rb
│ │ │ │ │ ├── Dhaka.rb
│ │ │ │ │ ├── Hong_Kong.rb
│ │ │ │ │ ├── Irkutsk.rb
│ │ │ │ │ ├── Jakarta.rb
│ │ │ │ │ ├── Jerusalem.rb
│ │ │ │ │ ├── Kabul.rb
│ │ │ │ │ ├── Kamchatka.rb
│ │ │ │ │ ├── Karachi.rb
│ │ │ │ │ ├── Katmandu.rb
│ │ │ │ │ ├── Kolkata.rb
│ │ │ │ │ ├── Krasnoyarsk.rb
│ │ │ │ │ ├── Kuala_Lumpur.rb
│ │ │ │ │ ├── Kuwait.rb
│ │ │ │ │ ├── Magadan.rb
│ │ │ │ │ ├── Muscat.rb
│ │ │ │ │ ├── Novosibirsk.rb
│ │ │ │ │ ├── Rangoon.rb
│ │ │ │ │ ├── Riyadh.rb
│ │ │ │ │ ├── Seoul.rb
│ │ │ │ │ ├── Shanghai.rb
│ │ │ │ │ ├── Singapore.rb
│ │ │ │ │ ├── Taipei.rb
│ │ │ │ │ ├── Tashkent.rb
│ │ │ │ │ ├── Tbilisi.rb
│ │ │ │ │ ├── Tehran.rb
│ │ │ │ │ ├── Tokyo.rb
│ │ │ │ │ ├── Ulaanbaatar.rb
│ │ │ │ │ ├── Urumqi.rb
│ │ │ │ │ ├── Vladivostok.rb
│ │ │ │ │ ├── Yakutsk.rb
│ │ │ │ │ ├── Yekaterinburg.rb
│ │ │ │ │ └── Yerevan.rb
│ │ │ │ ├── Atlantic
│ │ │ │ │ ├── Azores.rb
│ │ │ │ │ ├── Cape_Verde.rb
│ │ │ │ │ └── South_Georgia.rb
│ │ │ │ ├── Australia
│ │ │ │ │ ├── Adelaide.rb
│ │ │ │ │ ├── Brisbane.rb
│ │ │ │ │ ├── Darwin.rb
│ │ │ │ │ ├── Hobart.rb
│ │ │ │ │ ├── Melbourne.rb
│ │ │ │ │ ├── Perth.rb
│ │ │ │ │ └── Sydney.rb
│ │ │ │ ├── Etc
│ │ │ │ │ └── UTC.rb
│ │ │ │ ├── Europe
│ │ │ │ │ ├── Amsterdam.rb
│ │ │ │ │ ├── Athens.rb
│ │ │ │ │ ├── Belgrade.rb
│ │ │ │ │ ├── Berlin.rb
│ │ │ │ │ ├── Bratislava.rb
│ │ │ │ │ ├── Brussels.rb
│ │ │ │ │ ├── Bucharest.rb
│ │ │ │ │ ├── Budapest.rb
│ │ │ │ │ ├── Copenhagen.rb
│ │ │ │ │ ├── Dublin.rb
│ │ │ │ │ ├── Helsinki.rb
│ │ │ │ │ ├── Istanbul.rb
│ │ │ │ │ ├── Kiev.rb
│ │ │ │ │ ├── Lisbon.rb
│ │ │ │ │ ├── Ljubljana.rb
│ │ │ │ │ ├── London.rb
│ │ │ │ │ ├── Madrid.rb
│ │ │ │ │ ├── Minsk.rb
│ │ │ │ │ ├── Moscow.rb
│ │ │ │ │ ├── Paris.rb
│ │ │ │ │ ├── Prague.rb
│ │ │ │ │ ├── Riga.rb
│ │ │ │ │ ├── Rome.rb
│ │ │ │ │ ├── Sarajevo.rb
│ │ │ │ │ ├── Skopje.rb
│ │ │ │ │ ├── Sofia.rb
│ │ │ │ │ ├── Stockholm.rb
│ │ │ │ │ ├── Tallinn.rb
│ │ │ │ │ ├── Vienna.rb
│ │ │ │ │ ├── Vilnius.rb
│ │ │ │ │ ├── Warsaw.rb
│ │ │ │ │ └── Zagreb.rb
│ │ │ │ └── Pacific
│ │ │ │ │ ├── Auckland.rb
│ │ │ │ │ ├── Fiji.rb
│ │ │ │ │ ├── Guam.rb
│ │ │ │ │ ├── Honolulu.rb
│ │ │ │ │ ├── Majuro.rb
│ │ │ │ │ ├── Midway.rb
│ │ │ │ │ ├── Noumea.rb
│ │ │ │ │ ├── Pago_Pago.rb
│ │ │ │ │ ├── Port_Moresby.rb
│ │ │ │ │ └── Tongatapu.rb
│ │ │ │ ├── info_timezone.rb
│ │ │ │ ├── linked_timezone.rb
│ │ │ │ ├── linked_timezone_info.rb
│ │ │ │ ├── offset_rationals.rb
│ │ │ │ ├── ruby_core_support.rb
│ │ │ │ ├── time_or_datetime.rb
│ │ │ │ ├── timezone.rb
│ │ │ │ ├── timezone_definition.rb
│ │ │ │ ├── timezone_info.rb
│ │ │ │ ├── timezone_offset_info.rb
│ │ │ │ ├── timezone_period.rb
│ │ │ │ └── timezone_transition_info.rb
│ │ ├── version.rb
│ │ ├── whiny_nil.rb
│ │ ├── xml_mini.rb
│ │ └── xml_mini
│ │ │ ├── jdom.rb
│ │ │ ├── libxml.rb
│ │ │ ├── nokogiri.rb
│ │ │ └── rexml.rb
│ │ └── activesupport.rb
└── railties
│ ├── CHANGELOG
│ ├── MIT-LICENSE
│ ├── README
│ ├── Rakefile
│ ├── bin
│ ├── about
│ ├── console
│ ├── dbconsole
│ ├── destroy
│ ├── generate
│ ├── performance
│ │ ├── benchmarker
│ │ └── profiler
│ ├── plugin
│ ├── rails
│ ├── runner
│ └── server
│ ├── builtin
│ └── rails_info
│ │ ├── rails
│ │ ├── info.rb
│ │ ├── info_controller.rb
│ │ └── info_helper.rb
│ │ └── rails_info_controller.rb
│ ├── configs
│ ├── databases
│ │ ├── frontbase.yml
│ │ ├── ibm_db.yml
│ │ ├── mysql.yml
│ │ ├── oracle.yml
│ │ ├── postgresql.yml
│ │ ├── sqlite2.yml
│ │ └── sqlite3.yml
│ ├── empty.log
│ ├── initializers
│ │ ├── backtrace_silencers.rb
│ │ ├── inflections.rb
│ │ ├── mime_types.rb
│ │ ├── new_rails_defaults.rb
│ │ └── session_store.rb
│ ├── locales
│ │ └── en.yml
│ ├── routes.rb
│ └── seeds.rb
│ ├── dispatches
│ ├── config.ru
│ ├── dispatch.fcgi
│ ├── dispatch.rb
│ └── gateway.cgi
│ ├── doc
│ └── README_FOR_APP
│ ├── environments
│ ├── boot.rb
│ ├── development.rb
│ ├── environment.rb
│ ├── production.rb
│ └── test.rb
│ ├── fresh_rakefile
│ ├── guides
│ ├── files
│ │ ├── javascripts
│ │ │ ├── code_highlighter.js
│ │ │ ├── guides.js
│ │ │ └── highlighters.js
│ │ └── stylesheets
│ │ │ ├── main.css
│ │ │ ├── print.css
│ │ │ ├── reset.css
│ │ │ ├── style.css
│ │ │ └── syntax.css
│ ├── images
│ │ ├── belongs_to.png
│ │ ├── book_icon.gif
│ │ ├── bullet.gif
│ │ ├── chapters_icon.gif
│ │ ├── check_bullet.gif
│ │ ├── credits_pic_blank.gif
│ │ ├── csrf.png
│ │ ├── customized_error_messages.png
│ │ ├── error_messages.png
│ │ ├── feature_tile.gif
│ │ ├── footer_tile.gif
│ │ ├── fxn.jpg
│ │ ├── grey_bullet.gif
│ │ ├── habtm.png
│ │ ├── has_many.png
│ │ ├── has_many_through.png
│ │ ├── has_one.png
│ │ ├── has_one_through.png
│ │ ├── header_backdrop.png
│ │ ├── header_tile.gif
│ │ ├── i18n
│ │ │ ├── demo_localized_pirate.png
│ │ │ ├── demo_translated_en.png
│ │ │ ├── demo_translated_pirate.png
│ │ │ ├── demo_translation_missing.png
│ │ │ └── demo_untranslated.png
│ │ ├── icons
│ │ │ ├── README
│ │ │ ├── callouts
│ │ │ │ ├── 1.png
│ │ │ │ ├── 10.png
│ │ │ │ ├── 11.png
│ │ │ │ ├── 12.png
│ │ │ │ ├── 13.png
│ │ │ │ ├── 14.png
│ │ │ │ ├── 15.png
│ │ │ │ ├── 2.png
│ │ │ │ ├── 3.png
│ │ │ │ ├── 4.png
│ │ │ │ ├── 5.png
│ │ │ │ ├── 6.png
│ │ │ │ ├── 7.png
│ │ │ │ ├── 8.png
│ │ │ │ └── 9.png
│ │ │ ├── caution.png
│ │ │ ├── example.png
│ │ │ ├── home.png
│ │ │ ├── important.png
│ │ │ ├── next.png
│ │ │ ├── note.png
│ │ │ ├── prev.png
│ │ │ ├── tip.png
│ │ │ ├── up.png
│ │ │ └── warning.png
│ │ ├── nav_arrow.gif
│ │ ├── polymorphic.png
│ │ ├── posts_index.png
│ │ ├── rails_guides_logo.gif
│ │ ├── rails_logo_remix.gif
│ │ ├── rails_welcome.png
│ │ ├── session_fixation.png
│ │ ├── tab_grey.gif
│ │ ├── tab_info.gif
│ │ ├── tab_note.gif
│ │ ├── tab_red.gif
│ │ ├── tab_yellow.gif
│ │ ├── tab_yellow.png
│ │ └── validation_error_messages.png
│ ├── rails_guides.rb
│ ├── rails_guides
│ │ ├── generator.rb
│ │ ├── helpers.rb
│ │ ├── indexer.rb
│ │ └── textile_extensions.rb
│ └── source
│ │ ├── 2_2_release_notes.textile
│ │ ├── 2_3_release_notes.textile
│ │ ├── action_controller_overview.textile
│ │ ├── action_mailer_basics.textile
│ │ ├── active_record_basics.textile
│ │ ├── active_record_querying.textile
│ │ ├── activerecord_validations_callbacks.textile
│ │ ├── association_basics.textile
│ │ ├── caching_with_rails.textile
│ │ ├── command_line.textile
│ │ ├── configuring.textile
│ │ ├── contribute.textile
│ │ ├── contributing_to_rails.textile
│ │ ├── credits.erb.textile
│ │ ├── debugging_rails_applications.textile
│ │ ├── form_helpers.textile
│ │ ├── getting_started.textile
│ │ ├── i18n.textile
│ │ ├── index.erb.textile
│ │ ├── layout.html.erb
│ │ ├── layouts_and_rendering.textile
│ │ ├── migrations.textile
│ │ ├── nested_model_forms.textile
│ │ ├── performance_testing.textile
│ │ ├── plugins.textile
│ │ ├── rails_on_rack.textile
│ │ ├── routing.textile
│ │ ├── security.textile
│ │ └── testing.textile
│ ├── helpers
│ ├── application_controller.rb
│ ├── application_helper.rb
│ ├── performance_test.rb
│ └── test_helper.rb
│ ├── html
│ ├── 404.html
│ ├── 422.html
│ ├── 500.html
│ ├── favicon.ico
│ ├── images
│ │ └── rails.png
│ ├── index.html
│ ├── javascripts
│ │ ├── application.js
│ │ ├── controls.js
│ │ ├── dragdrop.js
│ │ ├── effects.js
│ │ └── prototype.js
│ └── robots.txt
│ └── lib
│ ├── code_statistics.rb
│ ├── commands.rb
│ ├── commands
│ ├── about.rb
│ ├── console.rb
│ ├── dbconsole.rb
│ ├── destroy.rb
│ ├── generate.rb
│ ├── ncgi
│ │ ├── listener
│ │ └── tracker
│ ├── performance
│ │ ├── benchmarker.rb
│ │ └── profiler.rb
│ ├── plugin.rb
│ ├── runner.rb
│ ├── server.rb
│ └── update.rb
│ ├── console_app.rb
│ ├── console_sandbox.rb
│ ├── console_with_helpers.rb
│ ├── dispatcher.rb
│ ├── fcgi_handler.rb
│ ├── initializer.rb
│ ├── performance_test_help.rb
│ ├── rails
│ ├── backtrace_cleaner.rb
│ ├── gem_builder.rb
│ ├── gem_dependency.rb
│ ├── plugin.rb
│ ├── plugin
│ │ ├── loader.rb
│ │ └── locator.rb
│ ├── rack.rb
│ ├── rack
│ │ ├── debugger.rb
│ │ ├── log_tailer.rb
│ │ ├── metal.rb
│ │ └── static.rb
│ ├── vendor_gem_source_index.rb
│ └── version.rb
│ ├── rails_generator.rb
│ ├── rails_generator
│ ├── base.rb
│ ├── commands.rb
│ ├── generated_attribute.rb
│ ├── generators
│ │ ├── applications
│ │ │ └── app
│ │ │ │ ├── USAGE
│ │ │ │ ├── app_generator.rb
│ │ │ │ ├── scm
│ │ │ │ ├── git.rb
│ │ │ │ ├── scm.rb
│ │ │ │ └── svn.rb
│ │ │ │ └── template_runner.rb
│ │ └── components
│ │ │ ├── controller
│ │ │ ├── USAGE
│ │ │ ├── controller_generator.rb
│ │ │ └── templates
│ │ │ │ ├── controller.rb
│ │ │ │ ├── functional_test.rb
│ │ │ │ ├── helper.rb
│ │ │ │ ├── helper_test.rb
│ │ │ │ └── view.html.erb
│ │ │ ├── helper
│ │ │ ├── USAGE
│ │ │ ├── helper_generator.rb
│ │ │ └── templates
│ │ │ │ ├── helper.rb
│ │ │ │ └── helper_test.rb
│ │ │ ├── integration_test
│ │ │ ├── USAGE
│ │ │ ├── integration_test_generator.rb
│ │ │ └── templates
│ │ │ │ └── integration_test.rb
│ │ │ ├── mailer
│ │ │ ├── USAGE
│ │ │ ├── mailer_generator.rb
│ │ │ └── templates
│ │ │ │ ├── fixture.erb
│ │ │ │ ├── fixture.rhtml
│ │ │ │ ├── mailer.rb
│ │ │ │ ├── unit_test.rb
│ │ │ │ ├── view.erb
│ │ │ │ └── view.rhtml
│ │ │ ├── metal
│ │ │ ├── USAGE
│ │ │ ├── metal_generator.rb
│ │ │ └── templates
│ │ │ │ └── metal.rb
│ │ │ ├── migration
│ │ │ ├── USAGE
│ │ │ ├── migration_generator.rb
│ │ │ └── templates
│ │ │ │ └── migration.rb
│ │ │ ├── model
│ │ │ ├── USAGE
│ │ │ ├── model_generator.rb
│ │ │ └── templates
│ │ │ │ ├── fixtures.yml
│ │ │ │ ├── migration.rb
│ │ │ │ ├── model.rb
│ │ │ │ └── unit_test.rb
│ │ │ ├── observer
│ │ │ ├── USAGE
│ │ │ ├── observer_generator.rb
│ │ │ └── templates
│ │ │ │ ├── observer.rb
│ │ │ │ └── unit_test.rb
│ │ │ ├── performance_test
│ │ │ ├── USAGE
│ │ │ ├── performance_test_generator.rb
│ │ │ └── templates
│ │ │ │ └── performance_test.rb
│ │ │ ├── plugin
│ │ │ ├── USAGE
│ │ │ ├── plugin_generator.rb
│ │ │ └── templates
│ │ │ │ ├── MIT-LICENSE
│ │ │ │ ├── README
│ │ │ │ ├── Rakefile
│ │ │ │ ├── USAGE
│ │ │ │ ├── generator.rb
│ │ │ │ ├── init.rb
│ │ │ │ ├── install.rb
│ │ │ │ ├── plugin.rb
│ │ │ │ ├── tasks.rake
│ │ │ │ ├── test_helper.rb
│ │ │ │ ├── uninstall.rb
│ │ │ │ └── unit_test.rb
│ │ │ ├── resource
│ │ │ ├── USAGE
│ │ │ ├── resource_generator.rb
│ │ │ └── templates
│ │ │ │ ├── controller.rb
│ │ │ │ ├── functional_test.rb
│ │ │ │ ├── helper.rb
│ │ │ │ └── helper_test.rb
│ │ │ ├── scaffold
│ │ │ ├── USAGE
│ │ │ ├── scaffold_generator.rb
│ │ │ └── templates
│ │ │ │ ├── controller.rb
│ │ │ │ ├── functional_test.rb
│ │ │ │ ├── helper.rb
│ │ │ │ ├── helper_test.rb
│ │ │ │ ├── layout.html.erb
│ │ │ │ ├── style.css
│ │ │ │ ├── view_edit.html.erb
│ │ │ │ ├── view_index.html.erb
│ │ │ │ ├── view_new.html.erb
│ │ │ │ └── view_show.html.erb
│ │ │ └── session_migration
│ │ │ ├── USAGE
│ │ │ ├── session_migration_generator.rb
│ │ │ └── templates
│ │ │ └── migration.rb
│ ├── lookup.rb
│ ├── manifest.rb
│ ├── options.rb
│ ├── scripts.rb
│ ├── scripts
│ │ ├── destroy.rb
│ │ ├── generate.rb
│ │ └── update.rb
│ ├── secret_key_generator.rb
│ ├── simple_logger.rb
│ └── spec.rb
│ ├── railties_path.rb
│ ├── ruby_version_check.rb
│ ├── rubyprof_ext.rb
│ ├── source_annotation_extractor.rb
│ ├── tasks
│ ├── annotations.rake
│ ├── databases.rake
│ ├── documentation.rake
│ ├── framework.rake
│ ├── gems.rake
│ ├── log.rake
│ ├── middleware.rake
│ ├── misc.rake
│ ├── rails.rb
│ ├── routes.rake
│ ├── statistics.rake
│ ├── testing.rake
│ └── tmp.rake
│ ├── test_help.rb
│ └── webrick_server.rb
└── tlsmail-0.0.1
├── CHANGELOG.txt
├── Manifest.txt
├── README.txt
├── Rakefile
├── lib
├── net
│ ├── pop.rb
│ └── smtp.rb
└── tlsmail.rb
└── test
├── template.parameters.rb
├── test_helper.rb
└── tlsmail_test.rb
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/.gitignore
--------------------------------------------------------------------------------
/README.markdown:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/README.markdown
--------------------------------------------------------------------------------
/Rakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/Rakefile
--------------------------------------------------------------------------------
/app/controllers/account_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/account_controller.rb
--------------------------------------------------------------------------------
/app/controllers/allocations_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/allocations_controller.rb
--------------------------------------------------------------------------------
/app/controllers/application_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/application_controller.rb
--------------------------------------------------------------------------------
/app/controllers/attachments_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/attachments_controller.rb
--------------------------------------------------------------------------------
/app/controllers/comments_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/comments_controller.rb
--------------------------------------------------------------------------------
/app/controllers/enterprises_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/enterprises_controller.rb
--------------------------------------------------------------------------------
/app/controllers/forums_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/forums_controller.rb
--------------------------------------------------------------------------------
/app/controllers/groups_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/groups_controller.rb
--------------------------------------------------------------------------------
/app/controllers/ideas_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/ideas_controller.rb
--------------------------------------------------------------------------------
/app/controllers/link_sets_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/link_sets_controller.rb
--------------------------------------------------------------------------------
/app/controllers/lookup_codes_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/lookup_codes_controller.rb
--------------------------------------------------------------------------------
/app/controllers/merge_ideas_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/merge_ideas_controller.rb
--------------------------------------------------------------------------------
/app/controllers/polls_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/polls_controller.rb
--------------------------------------------------------------------------------
/app/controllers/portal_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/portal_controller.rb
--------------------------------------------------------------------------------
/app/controllers/products_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/products_controller.rb
--------------------------------------------------------------------------------
/app/controllers/releases_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/releases_controller.rb
--------------------------------------------------------------------------------
/app/controllers/static_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/static_controller.rb
--------------------------------------------------------------------------------
/app/controllers/topics_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/topics_controller.rb
--------------------------------------------------------------------------------
/app/controllers/user_logons_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/user_logons_controller.rb
--------------------------------------------------------------------------------
/app/controllers/users_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/users_controller.rb
--------------------------------------------------------------------------------
/app/controllers/votes_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/votes_controller.rb
--------------------------------------------------------------------------------
/app/controllers/watches_controller.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/controllers/watches_controller.rb
--------------------------------------------------------------------------------
/app/helpers/account_helper.rb:
--------------------------------------------------------------------------------
1 | module AccountHelper
2 | end
--------------------------------------------------------------------------------
/app/helpers/allocations_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/allocations_helper.rb
--------------------------------------------------------------------------------
/app/helpers/announcements_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/announcements_helper.rb
--------------------------------------------------------------------------------
/app/helpers/application_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/application_helper.rb
--------------------------------------------------------------------------------
/app/helpers/attachments_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/attachments_helper.rb
--------------------------------------------------------------------------------
/app/helpers/comments_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/comments_helper.rb
--------------------------------------------------------------------------------
/app/helpers/enterprises_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/enterprises_helper.rb
--------------------------------------------------------------------------------
/app/helpers/forums_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/forums_helper.rb
--------------------------------------------------------------------------------
/app/helpers/groups_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/groups_helper.rb
--------------------------------------------------------------------------------
/app/helpers/idea_action_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/idea_action_helper.rb
--------------------------------------------------------------------------------
/app/helpers/ideas_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/ideas_helper.rb
--------------------------------------------------------------------------------
/app/helpers/link_sets_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/link_sets_helper.rb
--------------------------------------------------------------------------------
/app/helpers/lookup_codes_helper.rb:
--------------------------------------------------------------------------------
1 | module LookupCodesHelper
2 | end
3 |
--------------------------------------------------------------------------------
/app/helpers/merge_ideas_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/merge_ideas_helper.rb
--------------------------------------------------------------------------------
/app/helpers/polls_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/polls_helper.rb
--------------------------------------------------------------------------------
/app/helpers/portal_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/portal_helper.rb
--------------------------------------------------------------------------------
/app/helpers/products_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/products_helper.rb
--------------------------------------------------------------------------------
/app/helpers/releases_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/releases_helper.rb
--------------------------------------------------------------------------------
/app/helpers/roles_helper.rb:
--------------------------------------------------------------------------------
1 | module RolesHelper
2 | end
3 |
--------------------------------------------------------------------------------
/app/helpers/static_helper.rb:
--------------------------------------------------------------------------------
1 | module StaticHelper
2 | end
3 |
--------------------------------------------------------------------------------
/app/helpers/topics_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/topics_helper.rb
--------------------------------------------------------------------------------
/app/helpers/user_requests_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/user_requests_helper.rb
--------------------------------------------------------------------------------
/app/helpers/users_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/users_helper.rb
--------------------------------------------------------------------------------
/app/helpers/votes_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/helpers/votes_helper.rb
--------------------------------------------------------------------------------
/app/helpers/watches_helper.rb:
--------------------------------------------------------------------------------
1 | module WatchesHelper
2 | end
3 |
--------------------------------------------------------------------------------
/app/models/allocation.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/allocation.rb
--------------------------------------------------------------------------------
/app/models/allocation_observer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/allocation_observer.rb
--------------------------------------------------------------------------------
/app/models/announcement.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/announcement.rb
--------------------------------------------------------------------------------
/app/models/attachment.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/attachment.rb
--------------------------------------------------------------------------------
/app/models/comment.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/comment.rb
--------------------------------------------------------------------------------
/app/models/comment_attachment.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/comment_attachment.rb
--------------------------------------------------------------------------------
/app/models/comment_observer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/comment_observer.rb
--------------------------------------------------------------------------------
/app/models/custom_field.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/custom_field.rb
--------------------------------------------------------------------------------
/app/models/email_notifier.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/email_notifier.rb
--------------------------------------------------------------------------------
/app/models/email_request.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/email_request.rb
--------------------------------------------------------------------------------
/app/models/enterprise.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/enterprise.rb
--------------------------------------------------------------------------------
/app/models/enterprise_allocation.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/enterprise_allocation.rb
--------------------------------------------------------------------------------
/app/models/enterprise_type.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/enterprise_type.rb
--------------------------------------------------------------------------------
/app/models/forum.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/forum.rb
--------------------------------------------------------------------------------
/app/models/forum_group.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/forum_group.rb
--------------------------------------------------------------------------------
/app/models/forum_metric.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/forum_metric.rb
--------------------------------------------------------------------------------
/app/models/group.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/group.rb
--------------------------------------------------------------------------------
/app/models/idea.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/idea.rb
--------------------------------------------------------------------------------
/app/models/idea_change_log.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/idea_change_log.rb
--------------------------------------------------------------------------------
/app/models/idea_comment.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/idea_comment.rb
--------------------------------------------------------------------------------
/app/models/idea_email_request.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/idea_email_request.rb
--------------------------------------------------------------------------------
/app/models/idea_observer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/idea_observer.rb
--------------------------------------------------------------------------------
/app/models/link.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/link.rb
--------------------------------------------------------------------------------
/app/models/link_set.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/link_set.rb
--------------------------------------------------------------------------------
/app/models/lookup_code.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/lookup_code.rb
--------------------------------------------------------------------------------
/app/models/periodic_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/periodic_job.rb
--------------------------------------------------------------------------------
/app/models/poll.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/poll.rb
--------------------------------------------------------------------------------
/app/models/poll_comment.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/poll_comment.rb
--------------------------------------------------------------------------------
/app/models/poll_option.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/poll_option.rb
--------------------------------------------------------------------------------
/app/models/portal_certified_consultant.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/portal_certified_consultant.rb
--------------------------------------------------------------------------------
/app/models/portal_customer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/portal_customer.rb
--------------------------------------------------------------------------------
/app/models/portal_nfr.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/portal_nfr.rb
--------------------------------------------------------------------------------
/app/models/portal_org.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/portal_org.rb
--------------------------------------------------------------------------------
/app/models/portal_support_incident.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/portal_support_incident.rb
--------------------------------------------------------------------------------
/app/models/portal_user_org_map.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/portal_user_org_map.rb
--------------------------------------------------------------------------------
/app/models/product.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/product.rb
--------------------------------------------------------------------------------
/app/models/rate.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/rate.rb
--------------------------------------------------------------------------------
/app/models/release.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/release.rb
--------------------------------------------------------------------------------
/app/models/release_change_log.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/release_change_log.rb
--------------------------------------------------------------------------------
/app/models/release_dependency.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/release_dependency.rb
--------------------------------------------------------------------------------
/app/models/release_status.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/release_status.rb
--------------------------------------------------------------------------------
/app/models/role.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/role.rb
--------------------------------------------------------------------------------
/app/models/run_at_periodic_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/run_at_periodic_job.rb
--------------------------------------------------------------------------------
/app/models/run_interval_periodic_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/run_interval_periodic_job.rb
--------------------------------------------------------------------------------
/app/models/run_once_periodic_job.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/run_once_periodic_job.rb
--------------------------------------------------------------------------------
/app/models/serial_number.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/serial_number.rb
--------------------------------------------------------------------------------
/app/models/serial_number_release_map.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/serial_number_release_map.rb
--------------------------------------------------------------------------------
/app/models/support_ticket.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/support_ticket.rb
--------------------------------------------------------------------------------
/app/models/task_scheduler_batch.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/task_scheduler_batch.rb
--------------------------------------------------------------------------------
/app/models/topic.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/topic.rb
--------------------------------------------------------------------------------
/app/models/topic_comment.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/topic_comment.rb
--------------------------------------------------------------------------------
/app/models/topic_hit.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/topic_hit.rb
--------------------------------------------------------------------------------
/app/models/topic_import.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/topic_import.rb
--------------------------------------------------------------------------------
/app/models/topic_watch.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/topic_watch.rb
--------------------------------------------------------------------------------
/app/models/user.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/user.rb
--------------------------------------------------------------------------------
/app/models/user_allocation.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/user_allocation.rb
--------------------------------------------------------------------------------
/app/models/user_idea_read.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/user_idea_read.rb
--------------------------------------------------------------------------------
/app/models/user_logon.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/user_logon.rb
--------------------------------------------------------------------------------
/app/models/user_observer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/user_observer.rb
--------------------------------------------------------------------------------
/app/models/user_request.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/user_request.rb
--------------------------------------------------------------------------------
/app/models/user_request_observer.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/user_request_observer.rb
--------------------------------------------------------------------------------
/app/models/user_topic_read.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/user_topic_read.rb
--------------------------------------------------------------------------------
/app/models/vote.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/vote.rb
--------------------------------------------------------------------------------
/app/models/watch.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/models/watch.rb
--------------------------------------------------------------------------------
/app/sweepers/allocations_sweeper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/sweepers/allocations_sweeper.rb
--------------------------------------------------------------------------------
/app/sweepers/announcements_sweeper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/sweepers/announcements_sweeper.rb
--------------------------------------------------------------------------------
/app/sweepers/attachments_sweeper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/sweepers/attachments_sweeper.rb
--------------------------------------------------------------------------------
/app/sweepers/comments_sweeper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/sweepers/comments_sweeper.rb
--------------------------------------------------------------------------------
/app/sweepers/forums_sweeper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/sweepers/forums_sweeper.rb
--------------------------------------------------------------------------------
/app/sweepers/link_sets_sweeper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/sweepers/link_sets_sweeper.rb
--------------------------------------------------------------------------------
/app/sweepers/topics_sweeper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/sweepers/topics_sweeper.rb
--------------------------------------------------------------------------------
/app/views/account/activate.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/account/activate.rhtml
--------------------------------------------------------------------------------
/app/views/account/change_password.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/account/change_password.rhtml
--------------------------------------------------------------------------------
/app/views/account/continue_openid.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/account/continue_openid.html.erb
--------------------------------------------------------------------------------
/app/views/account/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/account/index.rhtml
--------------------------------------------------------------------------------
/app/views/account/login.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/account/login.rhtml
--------------------------------------------------------------------------------
/app/views/account/login_openid.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/account/login_openid.rhtml
--------------------------------------------------------------------------------
/app/views/account/signup.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/account/signup.rhtml
--------------------------------------------------------------------------------
/app/views/allocations/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/allocations/edit.rhtml
--------------------------------------------------------------------------------
/app/views/allocations/export_import.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/allocations/export_import.rhtml
--------------------------------------------------------------------------------
/app/views/allocations/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/allocations/index.rhtml
--------------------------------------------------------------------------------
/app/views/allocations/new.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/allocations/new.rhtml
--------------------------------------------------------------------------------
/app/views/allocations/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/allocations/show.rhtml
--------------------------------------------------------------------------------
/app/views/announcements/_form.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/announcements/_form.rhtml
--------------------------------------------------------------------------------
/app/views/announcements/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/announcements/edit.rhtml
--------------------------------------------------------------------------------
/app/views/announcements/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/announcements/index.rhtml
--------------------------------------------------------------------------------
/app/views/announcements/new.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/announcements/new.rhtml
--------------------------------------------------------------------------------
/app/views/announcements/preview.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/announcements/preview.rhtml
--------------------------------------------------------------------------------
/app/views/announcements/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/announcements/show.rhtml
--------------------------------------------------------------------------------
/app/views/attachments/_attachment.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/attachments/_attachment.rhtml
--------------------------------------------------------------------------------
/app/views/attachments/_buttons.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/attachments/_buttons.rhtml
--------------------------------------------------------------------------------
/app/views/attachments/_details.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/attachments/_details.rhtml
--------------------------------------------------------------------------------
/app/views/attachments/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/attachments/edit.rhtml
--------------------------------------------------------------------------------
/app/views/attachments/html.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/attachments/html.rhtml
--------------------------------------------------------------------------------
/app/views/attachments/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/attachments/index.rhtml
--------------------------------------------------------------------------------
/app/views/attachments/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/attachments/show.rhtml
--------------------------------------------------------------------------------
/app/views/comments/_comment_item.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/comments/_comment_item.rhtml
--------------------------------------------------------------------------------
/app/views/comments/_comments.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/comments/_comments.rhtml
--------------------------------------------------------------------------------
/app/views/comments/attach.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/comments/attach.rhtml
--------------------------------------------------------------------------------
/app/views/comments/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/comments/edit.rhtml
--------------------------------------------------------------------------------
/app/views/comments/new.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/comments/new.rhtml
--------------------------------------------------------------------------------
/app/views/comments/preview.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/comments/preview.rhtml
--------------------------------------------------------------------------------
/app/views/enterprises/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/enterprises/edit.rhtml
--------------------------------------------------------------------------------
/app/views/enterprises/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/enterprises/index.rhtml
--------------------------------------------------------------------------------
/app/views/enterprises/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/enterprises/show.rhtml
--------------------------------------------------------------------------------
/app/views/forums/_forum_action.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/_forum_action.rhtml
--------------------------------------------------------------------------------
/app/views/forums/_forum_group.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/_forum_group.rhtml
--------------------------------------------------------------------------------
/app/views/forums/_forum_heading.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/_forum_heading.rhtml
--------------------------------------------------------------------------------
/app/views/forums/_forum_item.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/_forum_item.rhtml
--------------------------------------------------------------------------------
/app/views/forums/_forum_metric.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/_forum_metric.rhtml
--------------------------------------------------------------------------------
/app/views/forums/_sidebar1.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/_sidebar1.rhtml
--------------------------------------------------------------------------------
/app/views/forums/_topic_action.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/_topic_action.rhtml
--------------------------------------------------------------------------------
/app/views/forums/_topic_item.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/_topic_item.rhtml
--------------------------------------------------------------------------------
/app/views/forums/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/edit.rhtml
--------------------------------------------------------------------------------
/app/views/forums/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/index.rhtml
--------------------------------------------------------------------------------
/app/views/forums/metrics.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/metrics.rhtml
--------------------------------------------------------------------------------
/app/views/forums/metrics_graphs.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/metrics_graphs.html.erb
--------------------------------------------------------------------------------
/app/views/forums/new.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/new.rhtml
--------------------------------------------------------------------------------
/app/views/forums/search.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/search.rhtml
--------------------------------------------------------------------------------
/app/views/forums/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/forums/show.rhtml
--------------------------------------------------------------------------------
/app/views/groups/_group_item.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/groups/_group_item.rhtml
--------------------------------------------------------------------------------
/app/views/groups/_tab_menu.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/groups/_tab_menu.rhtml
--------------------------------------------------------------------------------
/app/views/groups/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/groups/edit.rhtml
--------------------------------------------------------------------------------
/app/views/groups/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/groups/index.rhtml
--------------------------------------------------------------------------------
/app/views/groups/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/groups/show.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/_change_log.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/_change_log.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/_filter_tabs.rhtml:
--------------------------------------------------------------------------------
1 | <%= show_filter_tabs %>
--------------------------------------------------------------------------------
/app/views/ideas/_idea_changes.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/_idea_changes.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/_idea_details.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/_idea_details.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/_ideas_table.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/_ideas_table.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/_list_actions.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/_list_actions.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/_options.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/_options.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/_search_box.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/_search_box.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/_sidebar1.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/_sidebar1.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/_sidebar2.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/_sidebar2.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/_tabs.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/_tabs.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/edit.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/list.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/list.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/new.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/new.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/new_email_request.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/new_email_request.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/preview.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/preview.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/show.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/tag_cloud.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/tag_cloud.rhtml
--------------------------------------------------------------------------------
/app/views/ideas/titles_for_lookup.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/ideas/titles_for_lookup.rhtml
--------------------------------------------------------------------------------
/app/views/layouts/application.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/layouts/application.rhtml
--------------------------------------------------------------------------------
/app/views/link_sets/_link.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/link_sets/_link.rhtml
--------------------------------------------------------------------------------
/app/views/link_sets/_link_set.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/link_sets/_link_set.rhtml
--------------------------------------------------------------------------------
/app/views/link_sets/_link_sidebar.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/link_sets/_link_sidebar.rhtml
--------------------------------------------------------------------------------
/app/views/link_sets/_tab_menu.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/link_sets/_tab_menu.rhtml
--------------------------------------------------------------------------------
/app/views/link_sets/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/link_sets/edit.rhtml
--------------------------------------------------------------------------------
/app/views/link_sets/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/link_sets/index.rhtml
--------------------------------------------------------------------------------
/app/views/link_sets/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/link_sets/show.rhtml
--------------------------------------------------------------------------------
/app/views/lookup_codes/_form.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/lookup_codes/_form.rhtml
--------------------------------------------------------------------------------
/app/views/lookup_codes/_tab_menu.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/lookup_codes/_tab_menu.rhtml
--------------------------------------------------------------------------------
/app/views/lookup_codes/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/lookup_codes/edit.rhtml
--------------------------------------------------------------------------------
/app/views/lookup_codes/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/lookup_codes/index.rhtml
--------------------------------------------------------------------------------
/app/views/lookup_codes/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/lookup_codes/show.rhtml
--------------------------------------------------------------------------------
/app/views/merge_ideas/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/merge_ideas/show.rhtml
--------------------------------------------------------------------------------
/app/views/periodic_jobs/_tab_menu.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/periodic_jobs/_tab_menu.rhtml
--------------------------------------------------------------------------------
/app/views/periodic_jobs/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/periodic_jobs/index.rhtml
--------------------------------------------------------------------------------
/app/views/polls/_poll_item.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/polls/_poll_item.rhtml
--------------------------------------------------------------------------------
/app/views/polls/_poll_option.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/polls/_poll_option.rhtml
--------------------------------------------------------------------------------
/app/views/polls/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/polls/edit.rhtml
--------------------------------------------------------------------------------
/app/views/polls/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/polls/index.rhtml
--------------------------------------------------------------------------------
/app/views/polls/present_survey.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/polls/present_survey.rhtml
--------------------------------------------------------------------------------
/app/views/polls/prompt_for_survey.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/polls/prompt_for_survey.rhtml
--------------------------------------------------------------------------------
/app/views/polls/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/polls/show.rhtml
--------------------------------------------------------------------------------
/app/views/polls/show_survey.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/polls/show_survey.rhtml
--------------------------------------------------------------------------------
/app/views/portal/_consultant.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/portal/_consultant.html.erb
--------------------------------------------------------------------------------
/app/views/portal/_customer.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/portal/_customer.html.erb
--------------------------------------------------------------------------------
/app/views/portal/_nfr.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/portal/_nfr.html.erb
--------------------------------------------------------------------------------
/app/views/portal/_sidebar1.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/portal/_sidebar1.rhtml
--------------------------------------------------------------------------------
/app/views/portal/_ticket.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/portal/_ticket.html.erb
--------------------------------------------------------------------------------
/app/views/portal/_user.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/portal/_user.html.erb
--------------------------------------------------------------------------------
/app/views/portal/index.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/portal/index.html.erb
--------------------------------------------------------------------------------
/app/views/products/_form.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/products/_form.rhtml
--------------------------------------------------------------------------------
/app/views/products/_product_action.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/products/_product_action.rhtml
--------------------------------------------------------------------------------
/app/views/products/_product_item.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/products/_product_item.rhtml
--------------------------------------------------------------------------------
/app/views/products/_tab_menu.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/products/_tab_menu.rhtml
--------------------------------------------------------------------------------
/app/views/products/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/products/edit.rhtml
--------------------------------------------------------------------------------
/app/views/products/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/products/index.rhtml
--------------------------------------------------------------------------------
/app/views/products/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/products/show.rhtml
--------------------------------------------------------------------------------
/app/views/releases/_release_item.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/releases/_release_item.rhtml
--------------------------------------------------------------------------------
/app/views/releases/_roadmap_tab_menu.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/releases/_roadmap_tab_menu.rhtml
--------------------------------------------------------------------------------
/app/views/releases/check_for_updates.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/releases/check_for_updates.rhtml
--------------------------------------------------------------------------------
/app/views/releases/compatibility.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/releases/compatibility.rhtml
--------------------------------------------------------------------------------
/app/views/releases/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/releases/edit.rhtml
--------------------------------------------------------------------------------
/app/views/releases/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/releases/index.rhtml
--------------------------------------------------------------------------------
/app/views/releases/list.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/releases/list.rhtml
--------------------------------------------------------------------------------
/app/views/releases/new.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/releases/new.rhtml
--------------------------------------------------------------------------------
/app/views/releases/preview.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/releases/preview.rhtml
--------------------------------------------------------------------------------
/app/views/releases/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/releases/show.rhtml
--------------------------------------------------------------------------------
/app/views/static/help.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/static/help.rhtml
--------------------------------------------------------------------------------
/app/views/static/license.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/static/license.rhtml
--------------------------------------------------------------------------------
/app/views/static/search.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/static/search.rhtml
--------------------------------------------------------------------------------
/app/views/topics/_sidebar1.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/topics/_sidebar1.rhtml
--------------------------------------------------------------------------------
/app/views/topics/_topic_heading.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/topics/_topic_heading.rhtml
--------------------------------------------------------------------------------
/app/views/topics/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/topics/edit.rhtml
--------------------------------------------------------------------------------
/app/views/topics/new.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/topics/new.rhtml
--------------------------------------------------------------------------------
/app/views/topics/preview.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/topics/preview.rhtml
--------------------------------------------------------------------------------
/app/views/topics/search.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/topics/search.rhtml
--------------------------------------------------------------------------------
/app/views/topics/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/topics/show.rhtml
--------------------------------------------------------------------------------
/app/views/user_logons/_tab_menu.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/user_logons/_tab_menu.rhtml
--------------------------------------------------------------------------------
/app/views/user_logons/_user_logon.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/user_logons/_user_logon.rhtml
--------------------------------------------------------------------------------
/app/views/user_logons/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/user_logons/index.rhtml
--------------------------------------------------------------------------------
/app/views/user_requests/_tab_menu.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/user_requests/_tab_menu.rhtml
--------------------------------------------------------------------------------
/app/views/user_requests/acknowledge.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/user_requests/acknowledge.rhtml
--------------------------------------------------------------------------------
/app/views/user_requests/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/user_requests/edit.rhtml
--------------------------------------------------------------------------------
/app/views/user_requests/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/user_requests/index.rhtml
--------------------------------------------------------------------------------
/app/views/user_requests/new.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/user_requests/new.rhtml
--------------------------------------------------------------------------------
/app/views/user_requests/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/user_requests/show.rhtml
--------------------------------------------------------------------------------
/app/views/users/_form.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/users/_form.rhtml
--------------------------------------------------------------------------------
/app/views/users/_logon.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/users/_logon.html.erb
--------------------------------------------------------------------------------
/app/views/users/_tab_menu.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/users/_tab_menu.rhtml
--------------------------------------------------------------------------------
/app/views/users/_topic.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/users/_topic.html.erb
--------------------------------------------------------------------------------
/app/views/users/_user.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/users/_user.rhtml
--------------------------------------------------------------------------------
/app/views/users/_vote.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/users/_vote.html.erb
--------------------------------------------------------------------------------
/app/views/users/activity.html.erb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/users/activity.html.erb
--------------------------------------------------------------------------------
/app/views/users/edit.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/users/edit.rhtml
--------------------------------------------------------------------------------
/app/views/users/edit_profile.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/users/edit_profile.rhtml
--------------------------------------------------------------------------------
/app/views/users/export_import.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/users/export_import.rhtml
--------------------------------------------------------------------------------
/app/views/users/list.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/users/list.rhtml
--------------------------------------------------------------------------------
/app/views/users/lost_password.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/users/lost_password.rhtml
--------------------------------------------------------------------------------
/app/views/users/new.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/users/new.rhtml
--------------------------------------------------------------------------------
/app/views/users/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/users/show.rhtml
--------------------------------------------------------------------------------
/app/views/votes/_form.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/votes/_form.rhtml
--------------------------------------------------------------------------------
/app/views/votes/_vote_item.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/votes/_vote_item.rhtml
--------------------------------------------------------------------------------
/app/views/votes/_votes.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/votes/_votes.rhtml
--------------------------------------------------------------------------------
/app/views/votes/index.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/votes/index.rhtml
--------------------------------------------------------------------------------
/app/views/votes/show.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/votes/show.rhtml
--------------------------------------------------------------------------------
/app/views/watch/create.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/watch/create.rhtml
--------------------------------------------------------------------------------
/app/views/watch/destroy.rhtml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/app/views/watch/destroy.rhtml
--------------------------------------------------------------------------------
/config/boot.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/config/boot.rb
--------------------------------------------------------------------------------
/config/database.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/config/database.yml
--------------------------------------------------------------------------------
/config/deploy.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/config/deploy.rb
--------------------------------------------------------------------------------
/config/development.sphinx.conf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/config/development.sphinx.conf
--------------------------------------------------------------------------------
/config/environment.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/config/environment.rb
--------------------------------------------------------------------------------
/config/environment.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/config/environment.yml
--------------------------------------------------------------------------------
/config/environments/production.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/config/environments/production.rb
--------------------------------------------------------------------------------
/config/environments/test.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/config/environments/test.rb
--------------------------------------------------------------------------------
/config/initializers/mail_safe.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/config/initializers/mail_safe.rb
--------------------------------------------------------------------------------
/config/initializers/new_rails_defaults.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/config/initializers/new_rails_defaults.rb
--------------------------------------------------------------------------------
/config/observe.no.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/config/observe.no.txt
--------------------------------------------------------------------------------
/config/routes.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/config/routes.rb
--------------------------------------------------------------------------------
/config/solr.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/config/solr.yml
--------------------------------------------------------------------------------
/config/sphinx.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/config/sphinx.yml
--------------------------------------------------------------------------------
/db/migrate/001_create_products.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/001_create_products.rb
--------------------------------------------------------------------------------
/db/migrate/002_create_lookup_codes.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/002_create_lookup_codes.rb
--------------------------------------------------------------------------------
/db/migrate/004_create_releases.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/004_create_releases.rb
--------------------------------------------------------------------------------
/db/migrate/005_add_sessions.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/005_add_sessions.rb
--------------------------------------------------------------------------------
/db/migrate/006_create_enterprises.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/006_create_enterprises.rb
--------------------------------------------------------------------------------
/db/migrate/007_create_users.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/007_create_users.rb
--------------------------------------------------------------------------------
/db/migrate/009_add_user_enterprise_fk.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/009_add_user_enterprise_fk.rb
--------------------------------------------------------------------------------
/db/migrate/011_create_roles.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/011_create_roles.rb
--------------------------------------------------------------------------------
/db/migrate/012_create_users_roles.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/012_create_users_roles.rb
--------------------------------------------------------------------------------
/db/migrate/014_create_allocations.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/014_create_allocations.rb
--------------------------------------------------------------------------------
/db/migrate/015_create_ideas.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/015_create_ideas.rb
--------------------------------------------------------------------------------
/db/migrate/016_create_votes.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/016_create_votes.rb
--------------------------------------------------------------------------------
/db/migrate/018_create_comments.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/018_create_comments.rb
--------------------------------------------------------------------------------
/db/migrate/019_create_user_idea_reads.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/019_create_user_idea_reads.rb
--------------------------------------------------------------------------------
/db/migrate/020_create_watches.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/020_create_watches.rb
--------------------------------------------------------------------------------
/db/migrate/021_add_indices.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/021_add_indices.rb
--------------------------------------------------------------------------------
/db/migrate/022_add_merged_idea_column.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/022_add_merged_idea_column.rb
--------------------------------------------------------------------------------
/db/migrate/025_add_view_count.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/025_add_view_count.rb
--------------------------------------------------------------------------------
/db/migrate/027_add_user_logons.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/027_add_user_logons.rb
--------------------------------------------------------------------------------
/db/migrate/028_create_announcements.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/028_create_announcements.rb
--------------------------------------------------------------------------------
/db/migrate/029_update_release_index.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/029_update_release_index.rb
--------------------------------------------------------------------------------
/db/migrate/030_convert_string_to_text.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/030_convert_string_to_text.rb
--------------------------------------------------------------------------------
/db/migrate/032_additional_indexes.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/032_additional_indexes.rb
--------------------------------------------------------------------------------
/db/migrate/033_add_release_description.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/033_add_release_description.rb
--------------------------------------------------------------------------------
/db/migrate/036_add_download_url.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/036_add_download_url.rb
--------------------------------------------------------------------------------
/db/migrate/037_lengthen_announcement.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/037_lengthen_announcement.rb
--------------------------------------------------------------------------------
/db/migrate/038_add_poll.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/038_add_poll.rb
--------------------------------------------------------------------------------
/db/migrate/039_create_poll_options.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/039_create_poll_options.rb
--------------------------------------------------------------------------------
/db/migrate/040_add_poll_active.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/040_add_poll_active.rb
--------------------------------------------------------------------------------
/db/migrate/041_add_poll_options_users.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/041_add_poll_options_users.rb
--------------------------------------------------------------------------------
/db/migrate/043_add_type_to_comments.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/043_add_type_to_comments.rb
--------------------------------------------------------------------------------
/db/migrate/044_add_updated_at_columns.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/044_add_updated_at_columns.rb
--------------------------------------------------------------------------------
/db/migrate/045_create_forums.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/045_create_forums.rb
--------------------------------------------------------------------------------
/db/migrate/046_forum_mediators.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/046_forum_mediators.rb
--------------------------------------------------------------------------------
/db/migrate/047_populate_mediator_role.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/047_populate_mediator_role.rb
--------------------------------------------------------------------------------
/db/migrate/048_create_topics.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/048_create_topics.rb
--------------------------------------------------------------------------------
/db/migrate/049_add_topic_id_to_comments.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/049_add_topic_id_to_comments.rb
--------------------------------------------------------------------------------
/db/migrate/050_create_user_topic_reads.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/050_create_user_topic_reads.rb
--------------------------------------------------------------------------------
/db/migrate/051_create_topic_watches.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/051_create_topic_watches.rb
--------------------------------------------------------------------------------
/db/migrate/052_add_comment_count.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/052_add_comment_count.rb
--------------------------------------------------------------------------------
/db/migrate/053_create_periodic_jobs.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/053_create_periodic_jobs.rb
--------------------------------------------------------------------------------
/db/migrate/055_create_forum_watch.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/055_create_forum_watch.rb
--------------------------------------------------------------------------------
/db/migrate/058_add_session_cleaner_task.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/058_add_session_cleaner_task.rb
--------------------------------------------------------------------------------
/db/migrate/059_add_poll_index.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/059_add_poll_index.rb
--------------------------------------------------------------------------------
/db/migrate/060_add_topic_index.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/060_add_topic_index.rb
--------------------------------------------------------------------------------
/db/migrate/061_add_group.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/061_add_group.rb
--------------------------------------------------------------------------------
/db/migrate/063_create_group_members.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/063_create_group_members.rb
--------------------------------------------------------------------------------
/db/migrate/064_create_forum_groups.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/064_create_forum_groups.rb
--------------------------------------------------------------------------------
/db/migrate/066_add_cached_tags.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/066_add_cached_tags.rb
--------------------------------------------------------------------------------
/db/migrate/067_add_user_request.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/067_add_user_request.rb
--------------------------------------------------------------------------------
/db/migrate/068_add_next_run_at.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/068_add_next_run_at.rb
--------------------------------------------------------------------------------
/db/migrate/20080928020754_add_open_id.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/20080928020754_add_open_id.rb
--------------------------------------------------------------------------------
/db/migrate/20081007205348_touch_counter.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/20081007205348_touch_counter.rb
--------------------------------------------------------------------------------
/db/migrate/20081021020922_create_links.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/20081021020922_create_links.rb
--------------------------------------------------------------------------------
/db/migrate/20090116033227_create_rates.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/20090116033227_create_rates.rb
--------------------------------------------------------------------------------
/db/migrate/20100412195314_create_slugs.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/20100412195314_create_slugs.rb
--------------------------------------------------------------------------------
/db/migrate/seed_data/lookup_codes.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/db/migrate/seed_data/lookup_codes.yml
--------------------------------------------------------------------------------
/doc/ER/Allocations.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/doc/ER/Allocations.jpg
--------------------------------------------------------------------------------
/doc/ER/Forums.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/doc/ER/Forums.jpg
--------------------------------------------------------------------------------
/doc/ER/Ideas.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/doc/ER/Ideas.jpg
--------------------------------------------------------------------------------
/doc/ER/Misc.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/doc/ER/Misc.jpg
--------------------------------------------------------------------------------
/doc/ER/OpenID.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/doc/ER/OpenID.jpg
--------------------------------------------------------------------------------
/doc/ER/OpenMind.xed:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/doc/ER/OpenMind.xed
--------------------------------------------------------------------------------
/doc/ER/Polls.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/doc/ER/Polls.jpg
--------------------------------------------------------------------------------
/doc/ER/Products.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/doc/ER/Products.jpg
--------------------------------------------------------------------------------
/doc/ER/Users.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/doc/ER/Users.jpg
--------------------------------------------------------------------------------
/doc/ER/erd.mwb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/doc/ER/erd.mwb
--------------------------------------------------------------------------------
/doc/Manual.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/doc/Manual.docx
--------------------------------------------------------------------------------
/doc/Manual.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/doc/Manual.pdf
--------------------------------------------------------------------------------
/doc/README_FOR_APP:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/doc/README_FOR_APP
--------------------------------------------------------------------------------
/doc/UserPrivleges.xls:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/doc/UserPrivleges.xls
--------------------------------------------------------------------------------
/lib/authenticated_system.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/authenticated_system.rb
--------------------------------------------------------------------------------
/lib/authenticated_test_helper.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/authenticated_test_helper.rb
--------------------------------------------------------------------------------
/lib/csv_utils.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/csv_utils.rb
--------------------------------------------------------------------------------
/lib/date_utils.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/date_utils.rb
--------------------------------------------------------------------------------
/lib/exceptions/vote_exception.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/exceptions/vote_exception.rb
--------------------------------------------------------------------------------
/lib/migration_helpers.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/migration_helpers.rb
--------------------------------------------------------------------------------
/lib/openmind_version.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/openmind_version.rb
--------------------------------------------------------------------------------
/lib/search_utils.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/search_utils.rb
--------------------------------------------------------------------------------
/lib/session_cleaner.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/session_cleaner.rb
--------------------------------------------------------------------------------
/lib/string_utils.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/string_utils.rb
--------------------------------------------------------------------------------
/lib/task_server_logger.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/task_server_logger.rb
--------------------------------------------------------------------------------
/lib/tasks/friendly_id.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/tasks/friendly_id.rake
--------------------------------------------------------------------------------
/lib/tasks/rails.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/tasks/rails.rake
--------------------------------------------------------------------------------
/lib/tasks/seed.rake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/tasks/seed.rake
--------------------------------------------------------------------------------
/lib/tls_smtp.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/lib/tls_smtp.rb
--------------------------------------------------------------------------------
/log/.gitignore:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/404.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/404.html
--------------------------------------------------------------------------------
/public/500.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/500.html
--------------------------------------------------------------------------------
/public/blank_iframe.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/blank_iframe.html
--------------------------------------------------------------------------------
/public/dispatch.cgi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/dispatch.cgi
--------------------------------------------------------------------------------
/public/dispatch.fcgi:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/dispatch.fcgi
--------------------------------------------------------------------------------
/public/dispatch.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/dispatch.rb
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/public/images/ajaxful_rating/star.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/images/ajaxful_rating/star.png
--------------------------------------------------------------------------------
/public/images/blank.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/images/blank.gif
--------------------------------------------------------------------------------
/public/images/close.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/images/close.gif
--------------------------------------------------------------------------------
/public/images/closelabel.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/images/closelabel.gif
--------------------------------------------------------------------------------
/public/images/general/48-facebook.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/images/general/48-facebook.png
--------------------------------------------------------------------------------
/public/images/general/48-twitter.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/images/general/48-twitter.png
--------------------------------------------------------------------------------
/public/images/general/transparent.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/images/general/transparent.gif
--------------------------------------------------------------------------------
/public/images/loading.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/images/loading.gif
--------------------------------------------------------------------------------
/public/images/next.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/images/next.gif
--------------------------------------------------------------------------------
/public/images/nextlabel.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/images/nextlabel.gif
--------------------------------------------------------------------------------
/public/images/prev.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/images/prev.gif
--------------------------------------------------------------------------------
/public/images/prevlabel.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/images/prevlabel.gif
--------------------------------------------------------------------------------
/public/javascripts/application.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/javascripts/application.js
--------------------------------------------------------------------------------
/public/javascripts/builder.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/javascripts/builder.js
--------------------------------------------------------------------------------
/public/javascripts/controls.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/javascripts/controls.js
--------------------------------------------------------------------------------
/public/javascripts/ddaccordion.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/javascripts/ddaccordion.js
--------------------------------------------------------------------------------
/public/javascripts/dragdrop.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/javascripts/dragdrop.js
--------------------------------------------------------------------------------
/public/javascripts/effects.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/javascripts/effects.js
--------------------------------------------------------------------------------
/public/javascripts/fckcustom.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/spob/openmind/HEAD/public/javascripts/fckcustom.js
--------------------------------------------------------------------------------
/public/javascripts/fckeditor/_samples/afp/fck.afpa:
--------------------------------------------------------------------------------
1 |
Beautiful modules!
-------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/shared.html.erb: -------------------------------------------------------------------------------- 1 | Elastica -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/_customer.erb: -------------------------------------------------------------------------------- 1 | Hello: <%= customer.name rescue "Anonymous" %> -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/_form.erb: -------------------------------------------------------------------------------- 1 | <%= form.label :title %> 2 | -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/_from_helper.erb: -------------------------------------------------------------------------------- 1 | <%= render_from_helper %> -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/_hello.builder: -------------------------------------------------------------------------------- 1 | xm.hello -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/_local_inspector.html.erb: -------------------------------------------------------------------------------- 1 | <%= local_assigns.keys.map(&:to_s).sort.join(",") -%> -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/_one.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => "two" %> world 2 | -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/_partial.erb: -------------------------------------------------------------------------------- 1 | invalid -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/_partial.html.erb: -------------------------------------------------------------------------------- 1 | partial html -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/_partial.js.erb: -------------------------------------------------------------------------------- 1 | partial js -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/_partial_for_use_in_layout.html.erb: -------------------------------------------------------------------------------- 1 | Inside from partial (<%= name %>) -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/_partial_only.erb: -------------------------------------------------------------------------------- 1 | only partial -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/_partial_with_only_html_version.html.erb: -------------------------------------------------------------------------------- 1 | partial with only html version -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/_raise.html.erb: -------------------------------------------------------------------------------- 1 | <%= doesnt_exist %> -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/_two.html.erb: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/action_talk_to_layout.erb: -------------------------------------------------------------------------------- 1 | <% @title = "Talking to the layout" -%> 2 | Action was here! -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/dont_pick_me: -------------------------------------------------------------------------------- 1 | non-template file -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/formatted_html_erb.html.erb: -------------------------------------------------------------------------------- 1 | formatted html erb -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/formatted_xml_erb.builder: -------------------------------------------------------------------------------- 1 | xml.test 'failed' -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/greeting.erb: -------------------------------------------------------------------------------- 1 |This is grand!
2 | -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/greeting.js.rjs: -------------------------------------------------------------------------------- 1 | page[:body].visual_effect :highlight -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/hello_world.da.html.erb: -------------------------------------------------------------------------------- 1 | Hey verden -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/hello_world.erb: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/hello_world.erb~: -------------------------------------------------------------------------------- 1 | Don't pick me! -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/hello_world.pt-BR.html.erb: -------------------------------------------------------------------------------- 1 | Ola mundo -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/hello_world_with_layout_false.erb: -------------------------------------------------------------------------------- 1 | Hello world! -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/hyphen-ated.erb: -------------------------------------------------------------------------------- 1 | Hello world! 2 | -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/implicit_content_type.atom.builder: -------------------------------------------------------------------------------- 1 | xml.atom do 2 | end 3 | -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/malformed/malformed.en.html.erb~: -------------------------------------------------------------------------------- 1 | Don't render me! -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/malformed/malformed.erb~: -------------------------------------------------------------------------------- 1 | Don't render me! -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/malformed/malformed.html.erb~: -------------------------------------------------------------------------------- 1 | Don't render me! -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/render_file_from_template.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :file => @path %> -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.da.html.erb: -------------------------------------------------------------------------------- 1 | Hey HTML! 2 | -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/render_implicit_html_template_from_xhr_request.html.erb: -------------------------------------------------------------------------------- 1 | Hello HTML! -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/render_implicit_js_template_without_layout.js.erb: -------------------------------------------------------------------------------- 1 | alert('hello'); 2 | -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/sub_template_raise.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => "test/raise" %> -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/template.erb: -------------------------------------------------------------------------------- 1 | <%= template.path %> -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/test/utf8.html.erb: -------------------------------------------------------------------------------- 1 | Русский текст 2 | 日本語のテキスト -------------------------------------------------------------------------------- /vendor/rails/actionpack/test/fixtures/topics/_topic.html.erb: -------------------------------------------------------------------------------- 1 | <%= topic.title %> -------------------------------------------------------------------------------- /vendor/rails/activerecord/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/activerecord/CHANGELOG -------------------------------------------------------------------------------- /vendor/rails/activerecord/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/activerecord/README -------------------------------------------------------------------------------- /vendor/rails/activerecord/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/activerecord/Rakefile -------------------------------------------------------------------------------- /vendor/rails/activerecord/install.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/activerecord/install.rb -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/fixtures/all/developers.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/fixtures/all/people.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/fixtures/all/tasks.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/fixtures/fk_test_has_pk.yml: -------------------------------------------------------------------------------- 1 | first: 2 | id: 1 -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/fixtures/legacy_things.yml: -------------------------------------------------------------------------------- 1 | obtuse: 2 | id: 1 3 | tps_report_number: 500 4 | -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/fixtures/minimalistics.yml: -------------------------------------------------------------------------------- 1 | first: 2 | id: 1 3 | -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/fixtures/naked/csv/accounts.csv: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/fixtures/naked/yml/accounts.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/fixtures/naked/yml/companies.yml: -------------------------------------------------------------------------------- 1 | # i wonder what will happen here 2 | -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/fixtures/naked/yml/courses.yml: -------------------------------------------------------------------------------- 1 | qwerty 2 | -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/models/binary.rb: -------------------------------------------------------------------------------- 1 | class Binary < ActiveRecord::Base 2 | end -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/models/bird.rb: -------------------------------------------------------------------------------- 1 | class Bird < ActiveRecord::Base 2 | validates_presence_of :name 3 | end -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/models/course.rb: -------------------------------------------------------------------------------- 1 | class Course < ActiveRecord::Base 2 | has_many :entrants 3 | end 4 | -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/models/default.rb: -------------------------------------------------------------------------------- 1 | class Default < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/models/entrant.rb: -------------------------------------------------------------------------------- 1 | class Entrant < ActiveRecord::Base 2 | belongs_to :course 3 | end 4 | -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/models/guid.rb: -------------------------------------------------------------------------------- 1 | class Guid < ActiveRecord::Base 2 | end -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/models/joke.rb: -------------------------------------------------------------------------------- 1 | class Joke < ActiveRecord::Base 2 | set_table_name 'funny_jokes' 3 | end 4 | -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/models/minimalistic.rb: -------------------------------------------------------------------------------- 1 | class Minimalistic < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /vendor/rails/activerecord/test/models/task.rb: -------------------------------------------------------------------------------- 1 | class Task < ActiveRecord::Base 2 | 3 | end 4 | -------------------------------------------------------------------------------- /vendor/rails/activeresource/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/activeresource/CHANGELOG -------------------------------------------------------------------------------- /vendor/rails/activeresource/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/activeresource/README -------------------------------------------------------------------------------- /vendor/rails/activeresource/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/activeresource/Rakefile -------------------------------------------------------------------------------- /vendor/rails/activesupport/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/activesupport/CHANGELOG -------------------------------------------------------------------------------- /vendor/rails/activesupport/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/activesupport/README -------------------------------------------------------------------------------- /vendor/rails/activesupport/lib/active_support/core_ext/process.rb: -------------------------------------------------------------------------------- 1 | require 'active_support/core_ext/process/daemon' 2 | -------------------------------------------------------------------------------- /vendor/rails/railties/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/CHANGELOG -------------------------------------------------------------------------------- /vendor/rails/railties/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/MIT-LICENSE -------------------------------------------------------------------------------- /vendor/rails/railties/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/README -------------------------------------------------------------------------------- /vendor/rails/railties/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/Rakefile -------------------------------------------------------------------------------- /vendor/rails/railties/bin/about: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/bin/about -------------------------------------------------------------------------------- /vendor/rails/railties/bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/bin/console -------------------------------------------------------------------------------- /vendor/rails/railties/bin/dbconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/bin/dbconsole -------------------------------------------------------------------------------- /vendor/rails/railties/bin/destroy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/bin/destroy -------------------------------------------------------------------------------- /vendor/rails/railties/bin/generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/bin/generate -------------------------------------------------------------------------------- /vendor/rails/railties/bin/plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/bin/plugin -------------------------------------------------------------------------------- /vendor/rails/railties/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/bin/rails -------------------------------------------------------------------------------- /vendor/rails/railties/bin/runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/bin/runner -------------------------------------------------------------------------------- /vendor/rails/railties/bin/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/bin/server -------------------------------------------------------------------------------- /vendor/rails/railties/builtin/rails_info/rails/info_helper.rb: -------------------------------------------------------------------------------- 1 | module Rails::InfoHelper 2 | end 3 | -------------------------------------------------------------------------------- /vendor/rails/railties/configs/empty.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/rails/railties/configs/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/configs/routes.rb -------------------------------------------------------------------------------- /vendor/rails/railties/configs/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/configs/seeds.rb -------------------------------------------------------------------------------- /vendor/rails/railties/fresh_rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/fresh_rakefile -------------------------------------------------------------------------------- /vendor/rails/railties/html/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/html/404.html -------------------------------------------------------------------------------- /vendor/rails/railties/html/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/html/422.html -------------------------------------------------------------------------------- /vendor/rails/railties/html/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/html/500.html -------------------------------------------------------------------------------- /vendor/rails/railties/html/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/rails/railties/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/html/index.html -------------------------------------------------------------------------------- /vendor/rails/railties/html/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/html/robots.txt -------------------------------------------------------------------------------- /vendor/rails/railties/lib/commands.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/lib/commands.rb -------------------------------------------------------------------------------- /vendor/rails/railties/lib/dispatcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/lib/dispatcher.rb -------------------------------------------------------------------------------- /vendor/rails/railties/lib/rails/rack.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/lib/rails/rack.rb -------------------------------------------------------------------------------- /vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/fixture.rhtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/rails/railties/lib/rails_generator/generators/components/mailer/templates/view.rhtml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/install.rb: -------------------------------------------------------------------------------- 1 | # Install hook code here 2 | -------------------------------------------------------------------------------- /vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/plugin.rb: -------------------------------------------------------------------------------- 1 | # <%= class_name %> 2 | -------------------------------------------------------------------------------- /vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/uninstall.rb: -------------------------------------------------------------------------------- 1 | # Uninstall hook code here 2 | -------------------------------------------------------------------------------- /vendor/rails/railties/lib/test_help.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/rails/railties/lib/test_help.rb -------------------------------------------------------------------------------- /vendor/tlsmail-0.0.1/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/tlsmail-0.0.1/Manifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/tlsmail-0.0.1/Manifest.txt -------------------------------------------------------------------------------- /vendor/tlsmail-0.0.1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/tlsmail-0.0.1/README.txt -------------------------------------------------------------------------------- /vendor/tlsmail-0.0.1/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/tlsmail-0.0.1/Rakefile -------------------------------------------------------------------------------- /vendor/tlsmail-0.0.1/lib/net/pop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/tlsmail-0.0.1/lib/net/pop.rb -------------------------------------------------------------------------------- /vendor/tlsmail-0.0.1/lib/net/smtp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/tlsmail-0.0.1/lib/net/smtp.rb -------------------------------------------------------------------------------- /vendor/tlsmail-0.0.1/lib/tlsmail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spob/openmind/HEAD/vendor/tlsmail-0.0.1/lib/tlsmail.rb --------------------------------------------------------------------------------