├── .generators ├── .gitignore ├── .loadpath ├── .project ├── .rakeTasks ├── Capfile ├── LICENSE ├── README ├── Rakefile ├── app ├── controllers │ ├── about_items_controller.rb │ ├── act_controller.rb │ ├── admin_controller.rb │ ├── api_controller.rb │ ├── application_controller.rb │ ├── connect_controller.rb │ ├── discuss_controller.rb │ ├── feedback_controller.rb │ ├── i18n │ │ ├── locales_controller.rb │ │ └── translations_controller.rb │ ├── my_echo_controller.rb │ ├── newsletters_controller.rb │ ├── statements │ │ ├── echoable_module.rb │ │ ├── incorporation_module.rb │ │ ├── linking_module.rb │ │ ├── publishable_module.rb │ │ ├── statement_images_controller.rb │ │ ├── statements_controller.rb │ │ └── translation_module.rb │ ├── static │ │ ├── echo_controller.rb │ │ ├── echocracy_controller.rb │ │ ├── echologic_controller.rb │ │ ├── echonomy_controller.rb │ │ └── echosocial_controller.rb │ ├── tags_controller.rb │ └── users │ │ ├── activations_controller.rb │ │ ├── memberships_controller.rb │ │ ├── password_resets_controller.rb │ │ ├── profile_actions_module.rb │ │ ├── profiles_controller.rb │ │ ├── reports_controller.rb │ │ ├── social_module.rb │ │ ├── spoken_languages_controller.rb │ │ ├── user_sessions_controller.rb │ │ ├── users_controller.rb │ │ └── web_addresses_controller.rb ├── helpers │ ├── about_items_helper.rb │ ├── act_helper.rb │ ├── admin_helper.rb │ ├── api_helper.rb │ ├── application_helper.rb │ ├── connect_helper.rb │ ├── discuss_helper.rb │ ├── echo_helper.rb │ ├── echoable_module_helper.rb │ ├── echosocial_helper.rb │ ├── incorporation_module_helper.rb │ ├── mail_helper.rb │ ├── my_echo_helper.rb │ ├── newsletters_helper.rb │ ├── profiles_helper.rb │ ├── publishable_module_helper.rb │ ├── reports_helper.rb │ ├── spoken_languages_helper.rb │ ├── statement_images_helper.rb │ ├── statements_helper.rb │ ├── static_content_helper.rb │ └── translation_module_helper.rb ├── models │ ├── about_item.rb │ ├── about_item_translation.rb │ ├── development.rb │ ├── enum_key.rb │ ├── enum_value.rb │ ├── feedback.rb │ ├── locale.rb │ ├── mailers │ │ ├── activity_tracking_mailer.rb │ │ ├── drafting_mailer.rb │ │ ├── feedback_mailer.rb │ │ ├── newsletter_mailer.rb │ │ ├── profile_mailer.rb │ │ └── registration_mailer.rb │ ├── membership.rb │ ├── newsletter.rb │ ├── newsletter_translation.rb │ ├── pending_action.rb │ ├── profile.rb │ ├── profile_extension │ │ └── completeness.rb │ ├── report.rb │ ├── role.rb │ ├── session.rb │ ├── shortcut_command.rb │ ├── shortcut_url.rb │ ├── spoken_language.rb │ ├── statements │ │ ├── argument.rb │ │ ├── background_info.rb │ │ ├── cas_hub.rb │ │ ├── contra_argument.rb │ │ ├── external_file.rb │ │ ├── external_url.rb │ │ ├── follow_up_question.rb │ │ ├── improvement.rb │ │ ├── pro_argument.rb │ │ ├── proposal.rb │ │ ├── question.rb │ │ ├── statement.rb │ │ ├── statement_data.rb │ │ ├── statement_document.rb │ │ ├── statement_history.rb │ │ ├── statement_image.rb │ │ └── statement_node.rb │ ├── translation.rb │ ├── translation_option.rb │ ├── user.rb │ ├── user_session.rb │ └── web_address.rb └── views │ ├── about_items │ └── list.html.erb │ ├── act │ └── roadmap.html.erb │ ├── activity_tracking_mailer │ ├── _children_template.html.erb │ ├── _list_template.html.erb │ ├── _operation_template.html.erb │ ├── _type_template.html.erb │ ├── activity_templates │ │ ├── _root_statements_activity_template.html.erb │ │ └── _statement_activity_template.html.erb │ └── activity_tracking_mail.html.erb │ ├── admin │ └── show.html.erb │ ├── connect │ ├── _fill_out_profile.html.erb │ ├── profiles │ │ ├── _actions.html.erb │ │ ├── _avatar.html.erb │ │ ├── _concernments.html.erb │ │ ├── _details.html.erb │ │ ├── _list.html.erb │ │ ├── _overview.html.erb │ │ ├── _profile.html.erb │ │ ├── _results.html.erb │ │ ├── _web_addresses.html.erb │ │ └── details.js.erb │ ├── roadmap.html.erb │ ├── search.html.erb │ └── search.js.erb │ ├── discuss │ ├── _featured.html.erb │ ├── _pilot_projects.html.erb │ ├── _topic.html.erb │ ├── index.html.erb │ └── roadmap.html.erb │ ├── drafting_mailer │ ├── approval.erb │ ├── approval_notification.erb │ ├── approval_reminder.erb │ ├── incorporated.erb │ ├── incorporation_notification.erb │ ├── passed.erb │ ├── supporters_approval.erb │ ├── supporters_approval_reminder.erb │ └── supporters_passed.erb │ ├── feedback │ ├── _new.html.erb │ ├── create.js.erb │ └── new.js.erb │ ├── feedback_mailer │ └── feedback.html.erb │ ├── i18n │ ├── locales │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ └── translations │ │ ├── _edit.html.erb │ │ ├── _list.html.erb │ │ ├── _translation.html.erb │ │ ├── asset_translations.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── show.html.erb │ │ ├── translations.html.erb │ │ └── update.rjs │ ├── layouts │ ├── admin.html.erb │ ├── application.html.erb │ ├── components │ │ ├── _bottom_menu.html.erb │ │ ├── _error.html.erb │ │ ├── _featured_topic.html.erb │ │ ├── _language_selector.html.erb │ │ ├── _messages.html.erb │ │ ├── _news.html.erb │ │ ├── _social_media.html.erb │ │ ├── _teaser.html.erb │ │ └── _top_menu.html.erb │ ├── echosocial.html.erb │ ├── echosocial │ │ ├── _echo_discuss.html.erb │ │ └── _teasers.html.erb │ ├── embed.html.erb │ ├── headContainer.js.erb │ ├── mail.html.erb │ ├── mail_online.html.erb │ ├── outerMenuDialog.js.erb │ ├── static.html.erb │ └── tabContainer.js.erb │ ├── my_echo │ ├── change_email.html.erb │ ├── change_password.html.erb │ ├── delete_account.html.erb │ ├── profile.html.erb │ ├── roadmap.html.erb │ └── settings.html.erb │ ├── newsletter_mailer │ └── newsletter_mail.html.erb │ ├── newsletters │ ├── _create_form.html.erb │ ├── _update_form.html.erb │ ├── list.html.erb │ └── show.html.erb │ ├── profile_mailer │ └── user_mail.html.erb │ ├── redirect_from_popup.html.erb │ ├── registration_mailer │ ├── activate.erb │ ├── activate_email.erb │ ├── activation_confirmation.erb │ ├── activation_instructions.erb │ └── password_reset_instructions.erb │ ├── statement_images │ ├── _edit.html.erb │ ├── _image.html.erb │ └── edit.js.erb │ ├── statements │ ├── _action_bar.html.erb │ ├── _add.html.erb │ ├── _add_content.html.erb │ ├── _add_header.html.erb │ ├── _alternatives.html.erb │ ├── _approved.html.erb │ ├── _author.html.erb │ ├── _authors.html.erb │ ├── _child.html.erb │ ├── _children.html.erb │ ├── _children_list.html.erb │ ├── _content.html.erb │ ├── _default.html.erb │ ├── _descendants.html.erb │ ├── _edit.html.erb │ ├── _elements_list.html.erb │ ├── _header.html.erb │ ├── _new.html.erb │ ├── _set_languages.html.erb │ ├── _show.html.erb │ ├── _social_widget.html.erb │ ├── _summary.html.erb │ ├── _translate.html.erb │ ├── _translation_link.html.erb │ ├── add.html.erb │ ├── add.js.erb │ ├── authors.js.erb │ ├── children.js.erb │ ├── create.js.erb │ ├── descendants.js.erb │ ├── double │ │ ├── _children_list.html.erb │ │ ├── _descendants.html.erb │ │ ├── children.js.erb │ │ ├── descendants.js.erb │ │ └── more.js.erb │ ├── echo.js.erb │ ├── edit.html.erb │ ├── edit.js.erb │ ├── form │ │ ├── _document_form.html.erb │ │ ├── _embed_data.html.erb │ │ ├── _embed_preview.html.erb │ │ ├── _form.html.erb │ │ ├── _form_content.html.erb │ │ ├── _form_header.html.erb │ │ ├── _incorporation_form.html.erb │ │ ├── _language_info.html.erb │ │ ├── _statement_tags.html.erb │ │ ├── _translate_document_form.html.erb │ │ └── _translation_form.html.erb │ ├── more.js.erb │ ├── new.html.erb │ ├── new.js.erb │ ├── new_translation.html.erb │ ├── new_translation.js.erb │ ├── proposals │ │ ├── _edit_draft.html.erb │ │ ├── edit_draft.html.erb │ │ └── edit_draft.js.erb │ ├── questions │ │ ├── _action_bar.html.erb │ │ ├── _featured_topics.html.erb │ │ ├── _my_question.html.erb │ │ ├── _my_questions.html.erb │ │ ├── _question.html.erb │ │ ├── _question_teaser.html.erb │ │ ├── _questions.html.erb │ │ ├── _questions_list.html.erb │ │ ├── _search.html.erb │ │ ├── index.html.erb │ │ ├── my_questions.html.erb │ │ ├── my_questions.js.erb │ │ ├── questions.js.erb │ │ └── show.html.erb │ ├── show.html.erb │ ├── show.js.erb │ ├── social_widget.js.erb │ └── unecho.js.erb │ ├── static │ ├── echo │ │ ├── _act.html.erb │ │ ├── _connect.html.erb │ │ ├── _discuss.html.erb │ │ ├── _echo_on_waves.html.erb │ │ └── _show.html.erb │ ├── echocracy │ │ ├── _citizens.html.erb │ │ ├── _decision_makers.html.erb │ │ ├── _organisations.html.erb.erb │ │ ├── _scientists.html.erb │ │ ├── _show.html.erb │ │ └── _user_type.html.erb │ ├── echologic │ │ ├── _about.html.erb │ │ ├── _about_category.html.erb │ │ ├── _about_item.html.erb │ │ ├── _about_logo.html.erb │ │ ├── _about_partners.html.erb │ │ ├── _data_privacy.html.erb │ │ ├── _imprint.html.erb │ │ ├── _jump_in_button.html.erb │ │ ├── _partners.html.erb │ │ ├── _show.html.erb │ │ ├── _sponsors.html.erb │ │ └── _team.html.erb │ ├── echonomy │ │ ├── _foundation.html.erb │ │ ├── _public_property.html.erb │ │ ├── _show.html.erb │ │ └── _your_profit.html.erb │ └── echosocial │ │ ├── _about.html.erb │ │ ├── _data_privacy.html.erb │ │ ├── _extensions.html.erb │ │ ├── _features.html.erb │ │ ├── _imprint.html.erb │ │ ├── _show.html.erb │ │ └── _sponsors.html.erb │ ├── tags │ ├── edit.html.erb │ ├── index.html.erb │ ├── new.html.erb │ └── show.html.erb │ ├── users │ ├── activations │ │ ├── _basic_profile.html.erb │ │ └── basic_profile.html.erb │ ├── avatar │ │ ├── _picture.html.erb │ │ ├── _upload_picture.html.erb │ │ └── upload_picture.js.erb │ ├── components │ │ ├── _check.html.erb │ │ ├── _container.html.erb │ │ ├── _edit.html.erb │ │ ├── _entry.html.erb │ │ ├── _new.html.erb │ │ ├── signinup │ │ │ ├── _signin_form.html.erb │ │ │ ├── _signinup_form.html.erb │ │ │ └── _signup_form.html.erb │ │ └── users_form.js.erb │ ├── concernments │ │ ├── _concernment.html.erb │ │ ├── _container.html.erb │ │ └── _list.html.erb │ ├── echo_account │ │ ├── _container.html.erb │ │ └── insert_form.js.erb │ ├── login.html.erb │ ├── login.js │ ├── memberships │ │ ├── _container.html.erb │ │ ├── _edit.html.erb │ │ ├── _membership.html.erb │ │ └── _new.html.erb │ ├── notification │ │ └── _container.html.erb │ ├── password_resets │ │ ├── _edit.html.erb │ │ ├── _new.html.erb │ │ └── new.html.erb │ ├── permission │ │ └── _container.html.erb │ ├── profiles │ │ ├── _edit.html.erb │ │ ├── _password.html.erb │ │ ├── _profile_own.html.erb │ │ ├── create_object.js.erb │ │ └── mails │ │ │ ├── _new.html.erb │ │ │ ├── create.js.erb │ │ │ ├── new.html.erb │ │ │ └── new.js.erb │ ├── reports │ │ ├── _edit.html.erb │ │ ├── _new.html.erb │ │ ├── _report.html.erb │ │ ├── create.js.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ ├── new.js.erb │ │ └── show.html.erb │ ├── social_accounts │ │ ├── _connect.html.erb │ │ ├── _container.html.erb │ │ ├── _disconnect.html.erb │ │ └── _signinup.html.erb │ ├── spoken_languages │ │ ├── _container.html.erb │ │ ├── _edit.html.erb │ │ ├── _new.html.erb │ │ └── _spoken_language.html.erb │ ├── user_sessions │ │ ├── _failed.html.erb │ │ ├── _login.html.erb │ │ ├── _new.html.erb │ │ └── new.html.erb │ ├── users │ │ ├── _change_email.html.erb │ │ ├── _change_password.html.erb │ │ ├── _delete_account.html.erb │ │ ├── _form.html.erb │ │ ├── _list.html.erb │ │ ├── _new.html.erb │ │ ├── _setup_basic_profile.html.erb │ │ ├── _user.html.erb │ │ ├── _user_details.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── login.js.erb │ │ ├── new.html.erb │ │ ├── setup_basic_profile.html.erb │ │ ├── show.html.erb │ │ └── show.js.erb │ └── web_addresses │ │ ├── _container.html.erb │ │ ├── _edit.html.erb │ │ ├── _new.html.erb │ │ └── _web_address.html.erb │ └── widgets │ ├── _connect_segments_tabnav.html.erb │ ├── _dropdown_act.html.erb │ ├── _dropdown_admin.html.erb │ ├── _dropdown_connect.html.erb │ ├── _dropdown_discuss.html.erb │ ├── _dropdown_home.html.erb │ ├── _dropdown_my_echo.html.erb │ ├── _embed_main_tabnav.html.erb │ ├── _main_tabnav.html.erb │ ├── _static_echo_tabnav.html.erb │ ├── _static_echocracy_tabnav.html.erb │ ├── _static_echonomy_tabnav.html.erb │ ├── _static_echosocial_tabnav.html.erb │ ├── _static_join_tabnav.html.erb │ └── _static_menu_navigation.html.erb ├── config ├── boot.rb ├── cucumber.yml ├── environment.rb ├── environments │ ├── cucumber.rb │ ├── development.rb │ ├── production.rb │ ├── staging.rb │ └── test.rb ├── initializers │ ├── activity_tracking_service.rb │ ├── alternative.rb │ ├── backtrace_silencers.rb │ ├── domain_based_routing.rb │ ├── double_renderer.rb │ ├── drafting_service.rb │ ├── echoable.rb │ ├── formtastic.rb │ ├── i18n.rb │ ├── inflections.rb │ ├── mailer.rb │ ├── mailer_service.rb │ ├── mime_types.rb │ ├── new_rails_defaults.rb │ ├── session_store.rb │ └── social_service.rb ├── locales │ ├── de.yml │ ├── de_mailers.yml │ ├── de_seo.yml │ ├── de_static.yml │ ├── de_topics.yml │ ├── en.yml │ ├── en_mailers.yml │ ├── en_seo.yml │ ├── en_static.yml │ ├── en_topics.yml │ ├── es.yml │ ├── es_mailers.yml │ ├── es_seo.yml │ ├── es_static.yml │ ├── es_topics.yml │ ├── fr.yml │ ├── fr_mailers.yml │ ├── fr_seo.yml │ ├── fr_static.yml │ ├── fr_topics.yml │ ├── hu.yml │ ├── hu_mailers.yml │ ├── hu_seo.yml │ ├── hu_static.yml │ ├── hu_topics.yml │ ├── pt.yml │ ├── pt_mailers.yml │ ├── pt_seo.yml │ ├── pt_static.yml │ └── pt_topics.yml ├── mongrel_cluster.yml ├── routes.rb ├── rpx_config.rb ├── smtp_config.rb └── virtual_enumerations.rb ├── db ├── migrate │ ├── 20090825095800_create_users.rb │ ├── 20090825170636_add_active_to_users.rb │ ├── 20090827052026_add_openid_identifier_to_users.rb │ ├── 20090827071723_create_routes.rb │ ├── 20090827072846_create_roles_users.rb │ ├── 20090827160621_add_attachments_picture_to_user.rb │ ├── 20090829092843_create_i18n_tables.rb │ ├── 20090912071928_remove_login_add_name_to_users.rb │ ├── 20090915070848_add_gender_to_users.rb.rb │ ├── 20090915133056_create_web_profiles.rb │ ├── 20090924125806_create_memberships.rb │ ├── 20090930145231_create_tags.rb │ ├── 20090930184501_create_concernments.rb │ ├── 20091008104532_add_profile_details_to_users.rb │ ├── 20091027084559_create_feedbacks.rb │ ├── 20091027160730_change_user_first_last_name.rb │ ├── 20091030172204_create_profiles.rb │ ├── 20091030183251_remove_profile_information_from_user_model.rb │ ├── 20091031113224_add_attachments_avatar_to_profile.rb │ ├── 20091031124730_remove_attachment_from_user.rb │ ├── 20091102155547_create_reports.rb │ ├── 20091114161154_create_statements.rb │ ├── 20091114182343_create_statement_documents.rb │ ├── 20091117175250_update_statements_and_documents.rb │ ├── 20091120151337_setup_echos.rb │ ├── 20091120192909_default_echo_details_flags_to_false.rb │ ├── 20091124134642_add_category_id_to_statements.rb │ ├── 20091128180020_adjust_profile_varchar_length.rb │ ├── 20091202050840_remove_statements_activated.rb │ ├── 20091202191941_update_statement_published_to_state.rb │ ├── 20091203141234_create_sessions.rb │ ├── 20091207054420_add_timestamps_to_statements.rb │ ├── 20100201120024_add_profile_completeness.rb │ ├── 20100201181239_add_profile_completeness_default_value.rb │ ├── 20100317153006_add_show_profile_to_profile.rb │ ├── 20100318161910_rename_web_profiles_in_web_addresses.rb │ ├── 20100322183701_calculate_completeness_for_existing_users.rb │ ├── 20100323085718_create_enum_keys.rb │ ├── 20100323085823_create_enum_values.rb │ ├── 20100324130427_create_extaggable.rb │ ├── 20100329232911_refactor_statements.rb │ ├── 20100330095546_create_spoken_languages.rb │ ├── 20100330095547_add_statement_documents_language_id_and_statement_id.rb │ ├── 20100412141818_rename_table_echo_details_to_user_echos.rb │ ├── 20100422144705_remove_show_profile_from_profile.rb │ ├── 20100426100144_add_and_update_categories.rb │ ├── 20100506111607_rename_column_sort_to_web_address_id_from_web_address.rb │ ├── 20100511145434_delete_concernments.rb │ ├── 20100519163040_refactor_hash_tags.rb │ ├── 20100521172331_add_state_id_to_statement_node.rb │ ├── 20100607142514_create_subscriptions.rb │ ├── 20100617131832_create_events.rb │ ├── 20100622095242_create_delayed_jobs.rb │ ├── 20100623172455_add_last_login_language_to_user.rb │ ├── 20100628092238_add_email_notification_to_user.rb │ ├── 20100628162241_add_missing_indexes.rb │ ├── 20100701090737_remove_category_id_from_statement_node.rb │ ├── 20100705090233_update_tags_language_id.rb │ ├── 20100706092525_remove_document_id_from_statement_node.rb │ ├── 20100707085304_featured_topic_tags_without_language.rb │ ├── 20100727103528_create_drafting_infos.rb │ ├── 20100727103529_add_drafting_state_to_statement_node.rb │ ├── 20100730084802_create_statement_histories.rb │ ├── 20100730183525_change_statement_node_state_id_to_editorial_state_id.rb │ ├── 20100812170217_add_locked_by_and_locked_at_to_statement_document.rb │ ├── 20100813160827_add_drafting_notification_to_user.rb │ ├── 20100817230817_rename_column_email_notification_in_user.rb │ ├── 20100820133259_change_column_activity_notification_in_user.rb │ ├── 20100820133948_initialize_drafting_state_in_improvement_proposal.rb │ ├── 20100909132714_change_column_enum_name_to_type_in_enum_key.rb │ ├── 20100910131733_change_column_language_id_to_code_from_enum_values.rb │ ├── 20100916143948_add_attachments_image_to_statement.rb │ ├── 20100930093544_create_about_items.rb │ ├── 20101005140925_add_column_newsletter_notification_to_user.rb │ ├── 20101118180125_add_name_to_about_item_translation.rb │ ├── 20101121201513_add_new_about_item_category_translators.rb │ ├── 20101203223755_change_newsletter_notification_default.rb │ ├── 20101203223756_rename_improvement_proposal_as_improvement.rb │ ├── 20101203223757_move_tags_and_publish_state_from_statement_node_to_statement.rb │ ├── 20101203223758_add_lft_and_rgt_to_statement_node.rb │ ├── 20101203223759_add_question_id_to_statement_node.rb │ ├── 20101203223760_add_column_authorship_permission_to_user.rb │ ├── 20110125174418_rebuild_statement_nodes_nested_set.rb │ ├── 20110201172527_add_level_to_events.rb │ ├── 20110202113211_remove_data_from_event_description.rb │ ├── 20110202134733_create_newsletters.rb │ ├── 20110204044040_change_default_for_user_authorship_permission.rb │ ├── 20110210152851_add_authlogic_rpx_migration.rb │ ├── 20110217145006_add_avatar_url_to_profile.rb │ ├── 20110224103427_change_first_and_last_name_to_full_name_and_add_desired_email.rb │ ├── 20110228183745_create_pending_actions.rb │ ├── 20110302121041_create_subscriber_datas.rb │ ├── 20110304123708_create_shortcut_urls.rb │ ├── 20110310161551_fill_creator_id_for_fuqs.rb │ ├── 20110311171246_capitalize_all_countries.rb │ ├── 20110311174559_add_new_about_item_strategic_partners.rb │ ├── 20110413160252_seed_new_about_logo_category_partners.rb │ ├── 20110418105009_create_view_for_statement_permissions.rb │ ├── 20110502125255_add_private_tags_to_event_json.rb │ ├── 20110503091100_create_view_for_event_permissions.rb │ ├── 20110503121637_create_view_for_search_statement_text.rb │ ├── 20110518214946_seeding_hungarian_support.rb │ ├── 20110530110033_create_node_infos.rb │ ├── 20110617122504_add_broadcast_to_event.rb │ ├── 20110628143055_create_view_for_statement_parents.rb │ └── 20110707184338_seeding_backround_info_types.rb ├── schema.rb └── seeds.rb ├── deploy ├── after_restart.rb └── before_symlink.rb ├── doc ├── README_FOR_APP ├── ROLES ├── app │ ├── classes │ │ ├── ActController.html │ │ ├── ActHelper.html │ │ ├── ActivationsHelper.html │ │ ├── AdminController.html │ │ ├── AdminHelper.html │ │ ├── ApplicationController.html │ │ ├── ApplicationHelper.html │ │ ├── Concernment.html │ │ ├── ConcernmentsHelper.html │ │ ├── ConnectController.html │ │ ├── ConnectHelper.html │ │ ├── DiscussController.html │ │ ├── DiscussHelper.html │ │ ├── Feedback.html │ │ ├── FeedbackController.html │ │ ├── I18n.html │ │ ├── I18n │ │ │ ├── LocalesController.html │ │ │ └── TranslationsController.html │ │ ├── Locale.html │ │ ├── Mailer.html │ │ ├── Membership.html │ │ ├── MembershipsHelper.html │ │ ├── NotComplete.html │ │ ├── PasswordResetsHelper.html │ │ ├── Role.html │ │ ├── Static.html │ │ ├── Static │ │ │ ├── EchoController.html │ │ │ ├── EchocracyController.html │ │ │ ├── EchologicController.html │ │ │ └── EchonomyController.html │ │ ├── StaticContentHelper.html │ │ ├── Tag.html │ │ ├── TagsController.html │ │ ├── TagsHelper.html │ │ ├── Translation.html │ │ ├── TranslationOption.html │ │ ├── TranslationsHelper.html │ │ ├── User.html │ │ ├── UserSession.html │ │ ├── UserSessionsHelper.html │ │ ├── Users.html │ │ ├── Users │ │ │ ├── ActivationsController.html │ │ │ ├── ConcernmentsController.html │ │ │ ├── MembershipsController.html │ │ │ ├── PasswordResetsController.html │ │ │ ├── ProfileController.html │ │ │ ├── UserSessionsController.html │ │ │ ├── UsersController.html │ │ │ └── WebProfilesController.html │ │ ├── UsersHelper.html │ │ ├── WebProfile.html │ │ └── WebProfilesHelper.html │ ├── created.rid │ ├── files │ │ ├── app │ │ │ ├── controllers │ │ │ │ ├── act_controller_rb.html │ │ │ │ ├── admin_controller_rb.html │ │ │ │ ├── application_controller_rb.html │ │ │ │ ├── connect_controller_rb.html │ │ │ │ ├── discuss_controller_rb.html │ │ │ │ ├── feedback_controller_rb.html │ │ │ │ ├── i18n │ │ │ │ │ ├── locales_controller_rb.html │ │ │ │ │ └── translations_controller_rb.html │ │ │ │ ├── static │ │ │ │ │ ├── echo_controller_rb.html │ │ │ │ │ ├── echocracy_controller_rb.html │ │ │ │ │ ├── echologic_controller_rb.html │ │ │ │ │ └── echonomy_controller_rb.html │ │ │ │ ├── tags_controller_rb.html │ │ │ │ └── users │ │ │ │ │ ├── activations_controller_rb.html │ │ │ │ │ ├── concernments_controller_rb.html │ │ │ │ │ ├── memberships_controller_rb.html │ │ │ │ │ ├── password_resets_controller_rb.html │ │ │ │ │ ├── profile_controller_rb.html │ │ │ │ │ ├── user_sessions_controller_rb.html │ │ │ │ │ ├── users_controller_rb.html │ │ │ │ │ └── web_profiles_controller_rb.html │ │ │ ├── helpers │ │ │ │ ├── act_helper_rb.html │ │ │ │ ├── activations_helper_rb.html │ │ │ │ ├── admin_helper_rb.html │ │ │ │ ├── application_helper_rb.html │ │ │ │ ├── concernments_helper_rb.html │ │ │ │ ├── connect_helper_rb.html │ │ │ │ ├── discuss_helper_rb.html │ │ │ │ ├── memberships_helper_rb.html │ │ │ │ ├── password_resets_helper_rb.html │ │ │ │ ├── static_content_helper_rb.html │ │ │ │ ├── tags_helper_rb.html │ │ │ │ ├── translations_helper_rb.html │ │ │ │ ├── user_sessions_helper_rb.html │ │ │ │ ├── users_helper_rb.html │ │ │ │ └── web_profiles_helper_rb.html │ │ │ └── models │ │ │ │ ├── concernment_rb.html │ │ │ │ ├── feedback_rb.html │ │ │ │ ├── locale_rb.html │ │ │ │ ├── mailer_rb.html │ │ │ │ ├── membership_rb.html │ │ │ │ ├── role_rb.html │ │ │ │ ├── tag_rb.html │ │ │ │ ├── translation_option_rb.html │ │ │ │ ├── translation_rb.html │ │ │ │ ├── user_rb.html │ │ │ │ ├── user_session_rb.html │ │ │ │ └── web_profile_rb.html │ │ └── doc │ │ │ └── README_FOR_APP.html │ ├── fr_class_index.html │ ├── fr_file_index.html │ ├── fr_method_index.html │ ├── index.html │ └── rdoc-style.css ├── models.svg └── support │ ├── unsupport workflow.vpp │ └── unsupport workflow.vpp.bak~1 ├── features ├── authentication.feature ├── concernments.feature ├── connect.feature ├── discuss.feature ├── echo.feature ├── echosocial.feature ├── edit_statements.feature ├── memberships.feature ├── profile.feature ├── profile_completeness.feature ├── reporting.feature ├── session.feature ├── settings.feature ├── spoken_languages.feature ├── start_discussion.feature ├── step_definitions │ ├── authentication_steps.rb │ ├── concernment_steps.rb │ ├── connect_steps.rb │ ├── discuss_steps.rb │ ├── dom_steps.rb │ ├── drafting_steps.rb │ ├── echo_steps.rb │ ├── edit_statement_steps.rb │ ├── localized_steps.rb │ ├── membership_steps.rb │ ├── profile_completeness_steps.rb │ ├── profile_steps.rb │ ├── report_steps.rb │ ├── spoken_languages.rb │ ├── translation_steps.rb │ ├── web_profile_steps.rb │ ├── web_steps.rb │ └── web_steps.rb~HEAD ├── support │ ├── env.rb │ └── paths.rb ├── translation.feature ├── user_generated_debates.feature └── web_profiles.feature ├── lib ├── activity_tracking_service │ ├── activity_tracking_job.rb │ ├── activity_tracking_service.rb │ ├── acts_as_subscribeable.rb │ ├── event.rb │ ├── subscriber_data.rb │ └── subscription.rb ├── acts_as_alternative.rb ├── acts_as_double.rb ├── breadcrumb.rb ├── drafting_service │ ├── acts_as_draftable.rb │ ├── acts_as_incorporable.rb │ ├── approval_reminder_mail_job.rb │ ├── drafting_info.rb │ ├── drafting_service.rb │ ├── test_for_passed_job.rb │ └── test_for_staged_job.rb ├── echo_service │ ├── acts_as_echoable.rb │ ├── echo.rb │ ├── echo_service.rb │ ├── user_echo.rb │ └── user_extension_echo.rb ├── mailer_service │ └── mailer_service.rb ├── profile_updater.rb ├── social_service │ ├── acts_as_social.rb │ ├── provider_data.rb │ ├── rpx_service.rb │ ├── sharing_job.rb │ ├── social_identifier.rb │ └── social_service.rb ├── tasks │ ├── create_shotcuts.rake │ ├── cucumber.rake │ ├── db__fix_nested_set_structure.rake │ ├── db__fix_web_address_urls.rake │ ├── diagrams.rake │ ├── echo.rake │ ├── initialize_activity_tracking.rake │ ├── initialize_drafting.rake │ ├── migration_patch_0.7.rake │ ├── reset_activity_tracking.rake │ ├── rpx_delete_all_mappings.rake │ ├── rspec.rake │ ├── turn_off_activity_notification.rake │ ├── turn_off_all_notifications.rake │ ├── turn_off_drafting_notification.rake │ ├── turn_off_newsletter_notification.rake │ ├── turn_on_activity_notification.rake │ ├── turn_on_drafting_notification.rake │ └── turn_on_newsletter_notification.rake └── uuid_helper.rb ├── public ├── 404.html ├── 422.html ├── 500.html ├── blank.html ├── images │ ├── active_scaffold │ │ ├── DO_NOT_EDIT │ │ └── default │ │ │ ├── add.gif │ │ │ ├── arrow_down.gif │ │ │ ├── arrow_up.gif │ │ │ ├── close.gif │ │ │ ├── cross.png │ │ │ ├── indicator-small.gif │ │ │ ├── indicator.gif │ │ │ └── magnifier.png │ ├── add_statement_teaser_image.png │ ├── default_big_avatar.png │ ├── default_bigger_avatar.png │ ├── default_biggest_avatar.png │ ├── default_medium_statement_image.png │ ├── default_small_avatar.png │ ├── default_small_statement_image.png │ ├── echo_browser_icon.png │ ├── echosocial_browser_icon.png │ ├── echosocial_browser_icon2.png │ ├── indicator_16.gif │ ├── indicator_28.gif │ ├── jquery-ui │ │ ├── background_button_large_off.gif │ │ ├── background_button_large_on.gif │ │ ├── background_dialog_buttonbar.gif │ │ ├── background_whitepanel.gif │ │ ├── separator_no_shadow.png │ │ ├── separator_with_shadow.png │ │ ├── slider-range.gif │ │ ├── tab_sub_off_01.png │ │ ├── tab_sub_off_02.png │ │ ├── tab_sub_on_01.png │ │ ├── tab_sub_on_02.png │ │ ├── ui-bg_flat_0_4c4c4c_40x100.png │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_10_303030_40x100.png │ │ ├── ui-bg_flat_70_1a0f0f_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_40_0a0a0a_1x400.png │ │ ├── ui-bg_glass_55_f1fbe5_1x400.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_60_000000_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_gloss-wave_55_000000_500x100.png │ │ ├── ui-bg_gloss-wave_85_9fda58_500x100.gif │ │ ├── ui-bg_gloss-wave_85_9fda58_500x100.png │ │ ├── ui-bg_gloss-wave_95_f6ecd5_500x100.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-bg_inset-soft_95_fef1ec_1x100.png │ │ ├── ui-icons_000000_256x240.png │ │ ├── ui-icons_1a4864_256x240.png │ │ ├── ui-icons_1f1f1f_256x240.png │ │ ├── ui-icons_21587f_256x240.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_7ab031_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_9fda58_256x240.png │ │ ├── ui-icons_b8ec79_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ ├── mails │ │ ├── blog_icon.png │ │ ├── echo_beta_logo.png │ │ ├── echo_icon.png │ │ ├── facebook_icon.png │ │ ├── mail_links.png │ │ └── twitter_icon.png │ ├── page │ │ ├── action_bar_header.png │ │ ├── babelfish.png │ │ ├── back_button.png │ │ ├── background.gif │ │ ├── background.png │ │ ├── beta_label.png │ │ ├── beta_stamp.png │ │ ├── box │ │ │ ├── blue_white_gradient.png │ │ │ ├── blue_white_gradient_small.png │ │ │ ├── borders_7bb031_iwot_corners.png │ │ │ ├── borders_7bb031_iwot_leftright.png │ │ │ ├── borders_7bb031_iwot_topbottom.png │ │ │ ├── borders_a8a8a8_itow_corners.png │ │ │ ├── borders_a8a8a8_itow_leftright.png │ │ │ ├── borders_a8a8a8_itow_topbottom.png │ │ │ ├── box_icon_discuss.png │ │ │ ├── box_icon_people.png │ │ │ ├── colored_background.png │ │ │ ├── colored_background_mid.png │ │ │ ├── colored_background_small.png │ │ │ └── header_border.png │ │ ├── button_150.png │ │ ├── button_200.png │ │ ├── button_250.png │ │ ├── button_300.png │ │ ├── colored_header_780.png │ │ ├── colored_header_980.png │ │ ├── discuss │ │ │ ├── action_panel_expander.png │ │ │ ├── add_first_question_button.png │ │ │ ├── add_new_button_icon.png │ │ │ ├── add_question_32.png │ │ │ ├── add_question_42.png │ │ │ ├── add_statement_small.png │ │ │ ├── bi_icons_16.png │ │ │ ├── bi_icons_32.png │ │ │ ├── big_action_button.png │ │ │ ├── breadcrumb_delimiter_big.png │ │ │ ├── breadcrumb_delimiter_small.png │ │ │ ├── cas_arrow.png │ │ │ ├── cas_panel_bg.png │ │ │ ├── cas_panel_border.png │ │ │ ├── cas_panel_border_shadow.png │ │ │ ├── copy_url_16.png │ │ │ ├── echo.png │ │ │ ├── echo_button.png │ │ │ ├── echo_button_icon.png │ │ │ ├── echo_small.png │ │ │ ├── embed_icon_big.png │ │ │ ├── embed_icon_small.png │ │ │ ├── expandable_icons.png │ │ │ ├── incorporate_button.png │ │ │ ├── linking_button.png │ │ │ ├── my_discussions_16.png │ │ │ ├── search_icon_16.png │ │ │ ├── send_social_echo.png │ │ │ ├── social_echo.png │ │ │ ├── stack_separator.png │ │ │ ├── stack_separator_active.png │ │ │ ├── statement_icons │ │ │ │ ├── background_info.png │ │ │ │ ├── bi_article.png │ │ │ │ ├── bi_audio.png │ │ │ │ ├── bi_book.png │ │ │ │ ├── bi_document.png │ │ │ │ ├── bi_law.png │ │ │ │ ├── bi_misc.png │ │ │ │ ├── bi_paper.png │ │ │ │ ├── bi_photo.png │ │ │ │ ├── bi_video.png │ │ │ │ ├── contra_argument.png │ │ │ │ ├── follow_up_question.png │ │ │ │ ├── improvement.png │ │ │ │ ├── pro_argument.png │ │ │ │ ├── proposal.png │ │ │ │ └── question.png │ │ │ ├── statement_icons_16.png │ │ │ ├── statement_icons_32.png │ │ │ ├── statement_image_button.png │ │ │ ├── statement_language_hint.png │ │ │ ├── topics │ │ │ │ ├── All_Topics.png │ │ │ │ ├── ds_faq.png │ │ │ │ ├── ds_guided_tour.png │ │ │ │ ├── ds_vs11.png │ │ │ │ ├── echo.png │ │ │ │ ├── echocracy.png │ │ │ │ ├── echonomyJAM_Logo.png │ │ │ │ ├── echonomyJAM_Logo_Big.png │ │ │ │ ├── echonomyjam.png │ │ │ │ ├── echosocial.png │ │ │ │ ├── eci.png │ │ │ │ ├── hochschultage.png │ │ │ │ ├── hochschultage_teaser.png │ │ │ │ ├── huwy.png │ │ │ │ ├── igf.png │ │ │ │ ├── klimaherbst.png │ │ │ │ ├── klimaherbst_teaser.png │ │ │ │ ├── pep-net.png │ │ │ │ ├── realprices.png │ │ │ │ ├── vs11.png │ │ │ │ └── vs11_teaser.png │ │ │ └── unecho.png │ │ ├── echo_facebook.png │ │ ├── echo_logo.png │ │ ├── echo_o.png │ │ ├── echo_o_on_off.png │ │ ├── echo_twitter.png │ │ ├── echologic_twitter.png │ │ ├── echologic_twitter_xmas.png │ │ ├── echosocial_logo.png │ │ ├── embedded_echo_logo.png │ │ ├── form_button_150.png │ │ ├── form_button_200.png │ │ ├── form_button_250.png │ │ ├── form_button_300.png │ │ ├── functions │ │ │ ├── connect.png │ │ │ ├── discuss.png │ │ │ └── my_profile.png │ │ ├── green_button_big_150.png │ │ ├── header_left.png │ │ ├── header_right.png │ │ ├── icons │ │ │ ├── about.png │ │ │ ├── add_button.png │ │ │ ├── arrow.gif │ │ │ ├── authors_button.png │ │ │ ├── babelfish.png │ │ │ ├── blog.png │ │ │ ├── delete_button.png │ │ │ ├── edit_button.png │ │ │ ├── feedback.png │ │ │ ├── help.png │ │ │ ├── logout.png │ │ │ ├── pin.png │ │ │ ├── publish_button.png │ │ │ ├── report.png │ │ │ ├── save_button.png │ │ │ ├── send_mail.png │ │ │ ├── small_x_button.png │ │ │ ├── under_construction.png │ │ │ └── under_construction_big.png │ │ ├── illustrations │ │ │ ├── benefits.png │ │ │ ├── echo_act.png │ │ │ ├── echo_act_small.png │ │ │ ├── echo_connect.png │ │ │ ├── echo_connect_small.png │ │ │ ├── echo_discuss.png │ │ │ ├── echo_discuss_small.png │ │ │ ├── echo_echo_on_waves.png │ │ │ ├── echo_echo_on_waves_small.png │ │ │ ├── echocracy_citizens.png │ │ │ ├── echocracy_citizens_small.png │ │ │ ├── echocracy_decision_makers.png │ │ │ ├── echocracy_decision_makers_small.png │ │ │ ├── echocracy_organisations.png │ │ │ ├── echocracy_organisations_small.png │ │ │ ├── echocracy_scientists.png │ │ │ ├── echocracy_scientists_small.png │ │ │ ├── echonomy_foundation.png │ │ │ ├── echonomy_foundation_small.png │ │ │ ├── echonomy_public_property.png │ │ │ ├── echonomy_public_property_small.png │ │ │ ├── echonomy_your_profit.png │ │ │ ├── echonomy_your_profit_small.png │ │ │ ├── echosocial_benefits_de.png │ │ │ ├── echosocial_discuss_teaser.png │ │ │ ├── echosocial_extensions.png │ │ │ ├── echosocial_extensions_small.png │ │ │ ├── echosocial_features.png │ │ │ ├── echosocial_features_small.png │ │ │ ├── echosocial_show.png │ │ │ ├── echosocial_show_small.png │ │ │ ├── feedback.png │ │ │ └── join.jpg │ │ ├── input │ │ │ ├── input_bg.png │ │ │ ├── input_left.png │ │ │ ├── input_left_xon.png │ │ │ ├── input_right.png │ │ │ ├── input_right_xon.png │ │ │ └── login_input_bg.png │ │ ├── invitebubble_left.png │ │ ├── invitebubble_right.png │ │ ├── logos │ │ │ ├── BMWi_Logo.png │ │ │ ├── BMWi_Logo_s.png │ │ │ ├── ESF_Logo.png │ │ │ ├── ESF_Logo_s.png │ │ │ ├── EU_Logo.png │ │ │ ├── EU_Logo_s.png │ │ │ ├── EXIST_Logo.png │ │ │ ├── EXIST_Logo_s.png │ │ │ ├── GRM_Logo.png │ │ │ ├── GRM_Logo_s.png │ │ │ ├── LMU_EC_Logo.png │ │ │ ├── LMU_EC_Logo_s.png │ │ │ ├── TU_Berlin_Logo.png │ │ │ └── TU_Berlin_Logo_s.png │ │ ├── ms_bg blue.jpg │ │ ├── next_button.png │ │ ├── prev_next_buttons.png │ │ ├── publish_button_200.png │ │ ├── red_button_big_150.png │ │ ├── red_button_big_300.png │ │ ├── remote_providers_p1.png │ │ ├── searchbar_button.png │ │ ├── searchbar_left.png │ │ ├── separator_no_shadow.png │ │ ├── separator_with_shadow.png │ │ ├── social_echo_icons_big.png │ │ ├── social_login_openid.png │ │ ├── staticMenu │ │ │ ├── echo.png │ │ │ ├── echocracy.png │ │ │ ├── echologic.png │ │ │ ├── echonomy.png │ │ │ ├── join.png │ │ │ └── main_menu_button.png │ │ ├── tabbar_header_left.png │ │ ├── tabbar_header_right.png │ │ ├── tabbar_tab_left.png │ │ ├── tabbar_tab_right.png │ │ ├── tabs │ │ │ ├── mainmenu_left_off.png │ │ │ ├── mainmenu_left_on.png │ │ │ ├── mainmenu_right_off.png │ │ │ └── mainmenu_right_on.png │ │ ├── teasers │ │ │ ├── echologic_teaser_1_de.png │ │ │ ├── echologic_teaser_1_en.png │ │ │ ├── echologic_teaser_2_de.png │ │ │ ├── echologic_teaser_2_en.png │ │ │ ├── echologic_teaser_3_de.png │ │ │ ├── echologic_teaser_3_en.png │ │ │ ├── echologic_teaser_4_de.png │ │ │ └── echologic_teaser_4_en.png │ │ └── translation │ │ │ ├── babelfish_left.png │ │ │ ├── babelfish_right.png │ │ │ └── translation_arrow.png │ ├── rails.png │ ├── rte_colorpicker_gray.jpg │ ├── rte_colorpicker_rgb.jpg │ ├── rte_icons.gif │ ├── widgets │ │ ├── tooltip_arrow.gif │ │ └── tooltip_image.gif │ └── wmd │ │ ├── blockquote.png │ │ ├── bold.png │ │ ├── code.png │ │ ├── h1.png │ │ ├── hr.png │ │ ├── img.png │ │ ├── italic.png │ │ ├── link.png │ │ ├── no-bg-fill.png │ │ ├── no-bg.png │ │ ├── ol.png │ │ ├── redo.png │ │ ├── separator.png │ │ ├── ul.png │ │ ├── undo.png │ │ ├── wmd-buttons.png │ │ ├── wmd-on.png │ │ └── wmd.png ├── javascripts │ ├── IE8.js │ ├── active_scaffold │ │ ├── DO_NOT_EDIT │ │ └── default │ │ │ ├── active_scaffold.js │ │ │ ├── dhtml_history.js │ │ │ ├── form_enhancements.js │ │ │ └── rico_corner.js │ ├── app │ │ ├── history.js │ │ ├── placeholder.js │ │ └── remote_signinup.js │ ├── application.js │ ├── connect │ │ └── connect.js │ ├── controls.js │ ├── discuss │ │ ├── alternative.js │ │ ├── breadcrumbs.js │ │ ├── discuss.js │ │ ├── echoable.js │ │ ├── embeddable.js │ │ ├── expandable.js │ │ ├── statement.js │ │ ├── statement_form.js │ │ ├── statement_search.js │ │ └── taggable.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 │ │ │ │ ├── assets │ │ │ │ │ ├── sample06.config.js │ │ │ │ │ ├── sample11_frame.html │ │ │ │ │ ├── sample14.config.js │ │ │ │ │ ├── sample14.styles.css │ │ │ │ │ ├── sample15.config.js │ │ │ │ │ ├── sample16.config.js │ │ │ │ │ ├── sample16.fla │ │ │ │ │ ├── sample16.swf │ │ │ │ │ └── swfobject.js │ │ │ │ ├── sample01.html │ │ │ │ ├── sample02.html │ │ │ │ ├── sample03.html │ │ │ │ ├── sample04.html │ │ │ │ ├── sample05.html │ │ │ │ ├── sample06.html │ │ │ │ ├── sample07.html │ │ │ │ ├── sample08.html │ │ │ │ ├── sample09.html │ │ │ │ ├── sample10.html │ │ │ │ ├── sample11.html │ │ │ │ ├── sample12.html │ │ │ │ ├── sample13.html │ │ │ │ ├── sample14.html │ │ │ │ ├── sample15.html │ │ │ │ └── sample16.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 │ │ │ │ │ ├── fckdebug_empty.js │ │ │ │ │ ├── fckdialog.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_div.html │ │ │ │ ├── fck_docprops.html │ │ │ │ ├── fck_docprops │ │ │ │ │ └── fck_document_preview.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 │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── is.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 │ │ │ │ ├── easyUpload │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── install.html │ │ │ │ │ │ ├── installation.png │ │ │ │ │ │ ├── marker.png │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ └── styles.css │ │ │ │ │ ├── fck_file.html │ │ │ │ │ ├── fck_file.js │ │ │ │ │ ├── fck_image.html │ │ │ │ │ ├── fck_image │ │ │ │ │ │ ├── fck_image.js │ │ │ │ │ │ └── fck_image_preview.html │ │ │ │ │ ├── fck_link.html │ │ │ │ │ ├── fck_link.js │ │ │ │ │ ├── fckblank.html │ │ │ │ │ ├── fckplugin.js │ │ │ │ │ ├── file.gif │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ └── es.js │ │ │ │ │ └── readme.html │ │ │ │ ├── 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 │ │ │ └── wsc │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ └── w.html │ │ ├── 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 │ ├── fragment_observer.js │ ├── jFlick.js │ ├── jquery-ui.js │ ├── jquery.autocomplete.js │ ├── jquery.ba-url.min.js │ ├── jquery.browser.js │ ├── jquery.color.js │ ├── jquery.cycle.lite.1.0.min.js │ ├── jquery.em.js │ ├── jquery.embedly.min.js │ ├── jquery.event-filter.min.js │ ├── jquery.forms.js │ ├── jquery.getUrlParam.js │ ├── jquery.jcarousel.min.js │ ├── jquery.js │ ├── jquery.jscrollpane.min.js │ ├── jquery.livequery.js │ ├── jquery.mousewheel.js │ ├── jquery.rte1_2min │ │ ├── changes.txt │ │ ├── images │ │ │ ├── rte_colorpicker_gray.jpg │ │ │ ├── rte_colorpicker_rgb.jpg │ │ │ └── rte_icons.gif │ │ ├── index.html │ │ ├── jquery.js │ │ ├── jquery.ocupload-1.1.4.js │ │ ├── jquery.rte.js │ │ ├── jquery.rte.tb.js │ │ ├── styles.php │ │ └── uploader.php │ ├── jquery.scrollTo.min.js │ ├── jquery.simplyCountable.js │ ├── jquery.toggleval.js │ ├── jquery.tooltip.min.js │ ├── jrails.js │ ├── myecho │ │ └── my_echo.js │ ├── temp │ │ ├── 2effects.js │ │ ├── autocompleter.js │ │ ├── builder.js │ │ ├── date_selector.js │ │ ├── dragdrop.js │ │ ├── draggable.js │ │ ├── effects.js │ │ ├── inplace_editor.js │ │ ├── lowpro.js │ │ ├── prototype.js │ │ ├── showdown.js │ │ ├── showdown_1.js │ │ ├── tooltips.js │ │ ├── wmd-base.js │ │ ├── wmd-plus.js │ │ ├── wmd.js │ │ └── wmd_1.js │ └── widgets │ │ └── tooltip.js ├── resources │ ├── Datenschutz_echo.pdf │ └── Satzung_echosource_eV.pdf ├── robots.txt ├── sitemap.xml └── stylesheets │ ├── active_scaffold │ ├── DO_NOT_EDIT │ └── default │ │ ├── stylesheet-ie.css │ │ └── stylesheet.css │ ├── admin.css │ ├── application.css │ ├── box.css │ ├── connect.css │ ├── discuss.css │ ├── echologic.css │ ├── echosocial.css │ ├── embed.css │ ├── forms.css │ ├── formtastic.css │ ├── formtastic_changes.css │ ├── general.css │ ├── i18n.css │ ├── jScrollPane.css │ ├── jcarousel_skin.css │ ├── jquery-ui-1.7.2.custom.css │ ├── jquery.autocomplete.css │ ├── jquery.rte.css │ ├── mails.css │ ├── my_echo.css │ ├── outer_menus.css │ ├── scaffold.css │ ├── signinup.css │ ├── static_content.css │ ├── static_menu.css │ ├── tabs.css │ ├── tooltips.css │ └── wmd.css ├── script ├── about ├── autospec ├── console ├── cucumber ├── dbconsole ├── delayed_job ├── destroy ├── generate ├── performance │ ├── benchmarker │ └── profiler ├── plugin ├── runner ├── server └── spec ├── spec ├── echo_test.rb ├── rcov.opts ├── spec.opts ├── spec_helper.rb ├── statement_document_test.rb └── statement_test.rb ├── test ├── fixtures │ ├── about_items.yml │ ├── drafting_infos.yml │ ├── enum_keys.yml │ ├── enum_values.yml │ ├── events.yml │ ├── locales.yml │ ├── memberships.yml │ ├── newsletters.yml │ ├── pending_actions.yml │ ├── profiles.yml │ ├── reports.yml │ ├── roles.yml │ ├── roles_users.yml │ ├── shortcut_urls.yml │ ├── social_identifiers.yml │ ├── spoken_languages.yml │ ├── statement_datas.yml │ ├── statement_documents.yml │ ├── statement_histories.yml │ ├── statement_images.yml │ ├── statement_nodes.yml │ ├── statements.yml │ ├── subscriber_datas.yml │ ├── subscriptions.yml │ ├── tags.yml │ ├── tao_tags.yml │ ├── users.yml │ ├── valid_contexts.yml │ └── web_addresses.yml ├── functional │ ├── about_items_controller_test.rb │ ├── act_controller_test.rb │ ├── activations_controller_test.rb │ ├── admin_controller_test.rb │ ├── api_controller_test.rb │ ├── connect_controller_test.rb │ ├── discuss_controller_test.rb │ ├── echosocial_controller_test.rb │ ├── feedback_controller_test.rb │ ├── memberships_controller_test.rb │ ├── my_echo_controller_test.rb │ ├── newsletters_controller_test.rb │ ├── password_resets_controller_test.rb │ ├── profiles_controller_test.rb │ ├── reports_controller_test.rb │ ├── spoken_languages_controller_test.rb │ ├── statement_images_controller_test.rb │ ├── statements_controller_test.rb │ ├── static_content_controller_test.rb │ ├── tags_controller_test.rb │ ├── users_controller_test.rb │ └── web_addresses_controller_test.rb ├── old │ ├── interessted_people.yml │ ├── interested_people.yml │ ├── invited_people.yml │ ├── memberships.yml │ ├── old_units │ │ └── helpers │ │ │ ├── act_helper_test.rb │ │ │ ├── admin_helper_test.rb │ │ │ ├── concernments_helper_test.rb │ │ │ ├── connect_helper_test.rb │ │ │ ├── discuss_helper_test.rb │ │ │ ├── feedback_helper_test.rb │ │ │ ├── interessted_people_helper_test.rb │ │ │ ├── interested_people_helper_test.rb │ │ │ ├── invited_people_helper_test.rb │ │ │ ├── memberships_helper_test.rb │ │ │ ├── static_content_helper_test.rb │ │ │ ├── tags_helper_test.rb │ │ │ └── web_profiles_helper_test.rb │ ├── tags.yml │ ├── users.yml │ └── web_profiles.yml ├── performance │ └── browsing_test.rb ├── test_helper.rb └── unit │ ├── about_item_test.rb │ ├── activity_tracking_mailer_test.rb │ ├── acts_as_double_test.rb │ ├── acts_as_taggable_on_spec.rb │ ├── acts_as_tagger_spec.rb │ ├── drafting_info_test.rb │ ├── drafting_mailer_test.rb │ ├── drafting_service_test.rb │ ├── echo_test.rb │ ├── enum_key_test.rb │ ├── enum_value_test.rb │ ├── event_test.rb │ ├── group_helper_spec.rb │ ├── helpers │ ├── about_items_helper_test.rb │ ├── api_controller_helper_test.rb │ ├── echosocial_helper_test.rb │ ├── my_echo_helper_test.rb │ ├── newsletter_helper_test.rb │ ├── profiles_helper_test.rb │ ├── reports_helper_test.rb │ ├── spoken_languages_helper_test.rb │ └── statement_images_helper_test.rb │ ├── membership_test.rb │ ├── newsletter_mailer_test.rb │ ├── pending_action_test.rb │ ├── profile_mailer_test.rb │ ├── profile_test.rb │ ├── registration_mailer_test.rb │ ├── report_test.rb │ ├── shortcut_url_test.rb │ ├── spoken_language_test.rb │ ├── statement_document_test.rb │ ├── statement_history_test.rb │ ├── statement_node_test.rb │ ├── statement_test.rb │ ├── subscriber_data_test.rb │ ├── subscription_test.rb │ ├── tag_test.rb │ ├── tao_tag_test.rb │ ├── user_echo_test.rb │ ├── user_test.rb │ └── web_address_test.rb ├── tmp └── .gitignore ├── vendor └── plugins │ ├── active_scaffold │ ├── .autotest │ ├── CHANGELOG │ ├── MIT-LICENSE │ ├── README │ ├── Rakefile │ ├── environment.rb │ ├── frontends │ │ └── default │ │ │ ├── images │ │ │ ├── add.gif │ │ │ ├── arrow_down.gif │ │ │ ├── arrow_up.gif │ │ │ ├── close.gif │ │ │ ├── cross.png │ │ │ ├── indicator-small.gif │ │ │ ├── indicator.gif │ │ │ └── magnifier.png │ │ │ ├── javascripts │ │ │ ├── active_scaffold.js │ │ │ ├── dhtml_history.js │ │ │ ├── form_enhancements.js │ │ │ └── rico_corner.js │ │ │ ├── stylesheets │ │ │ ├── stylesheet-ie.css │ │ │ └── stylesheet.css │ │ │ └── views │ │ │ ├── _add_existing_form.html.erb │ │ │ ├── _create_form.html.erb │ │ │ ├── _create_form_on_list.html.erb │ │ │ ├── _field_search.html.erb │ │ │ ├── _form.html.erb │ │ │ ├── _form_association.html.erb │ │ │ ├── _form_association_footer.html.erb │ │ │ ├── _form_attribute.html.erb │ │ │ ├── _form_hidden_attribute.html.erb │ │ │ ├── _form_messages.html.erb │ │ │ ├── _horizontal_subform.html.erb │ │ │ ├── _horizontal_subform_header.html.erb │ │ │ ├── _horizontal_subform_record.html.erb │ │ │ ├── _list.html.erb │ │ │ ├── _list_actions.html.erb │ │ │ ├── _list_calculations.html.erb │ │ │ ├── _list_column_headings.html.erb │ │ │ ├── _list_header.html.erb │ │ │ ├── _list_inline_adapter.html.erb │ │ │ ├── _list_pagination_links.html.erb │ │ │ ├── _list_record.html.erb │ │ │ ├── _live_search.html.erb │ │ │ ├── _messages.html.erb │ │ │ ├── _nested.html.erb │ │ │ ├── _render_fields.js.rjs │ │ │ ├── _search.html.erb │ │ │ ├── _show.html.erb │ │ │ ├── _show_columns.html.erb │ │ │ ├── _update_actions.html.erb │ │ │ ├── _update_form.html.erb │ │ │ ├── _vertical_subform.html.erb │ │ │ ├── _vertical_subform_record.html.erb │ │ │ ├── add_existing.js.rjs │ │ │ ├── add_existing_form.html.erb │ │ │ ├── create.html.erb │ │ │ ├── delete.html.erb │ │ │ ├── destroy.js.rjs │ │ │ ├── edit_associated.js.rjs │ │ │ ├── field_search.html.erb │ │ │ ├── form_messages.js.rjs │ │ │ ├── form_messages_on_save.js.rjs │ │ │ ├── list.html.erb │ │ │ ├── list.js.rjs │ │ │ ├── on_create.js.rjs │ │ │ ├── on_update.js.rjs │ │ │ ├── render_field.js.rjs │ │ │ ├── search.html.erb │ │ │ ├── show.html.erb │ │ │ ├── update.html.erb │ │ │ ├── update_column.js.rjs │ │ │ └── update_row.js.rjs │ ├── init.rb │ ├── install.rb │ ├── install_assets.rb │ ├── lib │ │ ├── active_record_permissions.rb │ │ ├── active_scaffold.rb │ │ ├── active_scaffold │ │ │ ├── actions │ │ │ │ ├── core.rb │ │ │ │ ├── create.rb │ │ │ │ ├── delete.rb │ │ │ │ ├── field_search.rb │ │ │ │ ├── list.rb │ │ │ │ ├── live_search.rb │ │ │ │ ├── nested.rb │ │ │ │ ├── search.rb │ │ │ │ ├── show.rb │ │ │ │ ├── subform.rb │ │ │ │ └── update.rb │ │ │ ├── attribute_params.rb │ │ │ ├── config │ │ │ │ ├── base.rb │ │ │ │ ├── core.rb │ │ │ │ ├── create.rb │ │ │ │ ├── delete.rb │ │ │ │ ├── field_search.rb │ │ │ │ ├── form.rb │ │ │ │ ├── list.rb │ │ │ │ ├── live_search.rb │ │ │ │ ├── nested.rb │ │ │ │ ├── search.rb │ │ │ │ ├── show.rb │ │ │ │ ├── subform.rb │ │ │ │ └── update.rb │ │ │ ├── configurable.rb │ │ │ ├── constraints.rb │ │ │ ├── data_structures │ │ │ │ ├── action_columns.rb │ │ │ │ ├── action_link.rb │ │ │ │ ├── action_links.rb │ │ │ │ ├── actions.rb │ │ │ │ ├── column.rb │ │ │ │ ├── columns.rb │ │ │ │ ├── error_message.rb │ │ │ │ ├── set.rb │ │ │ │ └── sorting.rb │ │ │ ├── finder.rb │ │ │ ├── helpers │ │ │ │ ├── association_helpers.rb │ │ │ │ ├── controller_helpers.rb │ │ │ │ ├── country_helpers.rb │ │ │ │ ├── form_column_helpers.rb │ │ │ │ ├── id_helpers.rb │ │ │ │ ├── list_column_helpers.rb │ │ │ │ ├── pagination_helpers.rb │ │ │ │ ├── search_column_helpers.rb │ │ │ │ ├── show_column_helpers.rb │ │ │ │ └── view_helpers.rb │ │ │ └── locale │ │ │ │ ├── de.rb │ │ │ │ ├── de.yml │ │ │ │ ├── en.yml │ │ │ │ ├── es.yml │ │ │ │ ├── fr.yml │ │ │ │ ├── hu.yml │ │ │ │ ├── ja.yml │ │ │ │ ├── pt.yml │ │ │ │ └── ru.yml │ │ ├── bridges │ │ │ ├── bridge.rb │ │ │ ├── calendar_date_select │ │ │ │ ├── bridge.rb │ │ │ │ └── lib │ │ │ │ │ └── as_cds_bridge.rb │ │ │ ├── file_column │ │ │ │ ├── bridge.rb │ │ │ │ ├── lib │ │ │ │ │ ├── as_file_column_bridge.rb │ │ │ │ │ ├── file_column_helpers.rb │ │ │ │ │ ├── form_ui.rb │ │ │ │ │ └── list_ui.rb │ │ │ │ └── test │ │ │ │ │ ├── functional │ │ │ │ │ └── file_column_keep_test.rb │ │ │ │ │ ├── mock_model.rb │ │ │ │ │ └── test_helper.rb │ │ │ ├── tiny_mce │ │ │ │ ├── bridge.rb │ │ │ │ └── lib │ │ │ │ │ └── tiny_mce_bridge.rb │ │ │ └── validation_reflection │ │ │ │ ├── bridge.rb │ │ │ │ └── lib │ │ │ │ └── validation_reflection_bridge.rb │ │ ├── dhtml_confirm.rb │ │ ├── extensions │ │ │ ├── action_controller_rendering.rb │ │ │ ├── action_view_rendering.rb │ │ │ ├── array.rb │ │ │ ├── component_response_with_namespacing.rb │ │ │ ├── generic_view_paths.rb │ │ │ ├── localize.rb │ │ │ ├── name_option_for_datetime.rb │ │ │ ├── nil_id_in_url_params.rb │ │ │ ├── paginator_extensions.rb │ │ │ ├── resources.rb │ │ │ ├── reverse_associations.rb │ │ │ ├── to_label.rb │ │ │ ├── unsaved_associated.rb │ │ │ ├── unsaved_record.rb │ │ │ └── usa_state.rb │ │ ├── paginator.rb │ │ └── responds_to_parent.rb │ ├── public │ │ └── blank.html │ ├── test │ │ ├── bridges │ │ │ └── bridge_test.rb │ │ ├── config │ │ │ ├── base_test.rb │ │ │ ├── create_test.rb │ │ │ ├── list_test.rb │ │ │ ├── show_test.rb │ │ │ └── update_test.rb │ │ ├── const_mocker.rb │ │ ├── data_structures │ │ │ ├── action_columns_test.rb │ │ │ ├── action_link_test.rb │ │ │ ├── action_links_test.rb │ │ │ ├── actions_test.rb │ │ │ ├── association_column_test.rb │ │ │ ├── column_test.rb │ │ │ ├── columns_test.rb │ │ │ ├── error_message_test.rb │ │ │ ├── set_test.rb │ │ │ ├── sorting_test.rb │ │ │ ├── standard_column_test.rb │ │ │ └── virtual_column_test.rb │ │ ├── extensions │ │ │ ├── active_record_test.rb │ │ │ └── array_test.rb │ │ ├── misc │ │ │ ├── active_record_permissions_test.rb │ │ │ ├── attribute_params_test.rb │ │ │ ├── configurable_test.rb │ │ │ ├── constraints_test.rb │ │ │ ├── finder_test.rb │ │ │ ├── lang_test.rb │ │ │ └── pagination_helpers_test.rb │ │ ├── mock_app │ │ │ ├── .gitignore │ │ │ ├── app │ │ │ │ ├── controllers │ │ │ │ │ └── application_controller.rb │ │ │ │ └── helpers │ │ │ │ │ └── application_helper.rb │ │ │ ├── config │ │ │ │ ├── boot.rb │ │ │ │ ├── database.yml │ │ │ │ ├── environment.rb │ │ │ │ ├── environments │ │ │ │ │ ├── development.rb │ │ │ │ │ ├── production.rb │ │ │ │ │ └── test.rb │ │ │ │ ├── initializers │ │ │ │ │ ├── backtrace_silencers.rb │ │ │ │ │ ├── inflections.rb │ │ │ │ │ ├── mime_types.rb │ │ │ │ │ ├── new_rails_defaults.rb │ │ │ │ │ └── session_store.rb │ │ │ │ ├── locales │ │ │ │ │ └── en.yml │ │ │ │ └── routes.rb │ │ │ ├── db │ │ │ │ └── test.sqlite3 │ │ │ └── public │ │ │ │ ├── blank.html │ │ │ │ ├── images │ │ │ │ └── active_scaffold │ │ │ │ │ ├── DO_NOT_EDIT │ │ │ │ │ └── default │ │ │ │ │ ├── add.gif │ │ │ │ │ ├── arrow_down.gif │ │ │ │ │ ├── arrow_up.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ ├── cross.png │ │ │ │ │ ├── indicator-small.gif │ │ │ │ │ ├── indicator.gif │ │ │ │ │ └── magnifier.png │ │ │ │ ├── javascripts │ │ │ │ └── active_scaffold │ │ │ │ │ ├── DO_NOT_EDIT │ │ │ │ │ └── default │ │ │ │ │ ├── active_scaffold.js │ │ │ │ │ ├── dhtml_history.js │ │ │ │ │ ├── form_enhancements.js │ │ │ │ │ └── rico_corner.js │ │ │ │ └── stylesheets │ │ │ │ └── active_scaffold │ │ │ │ ├── DO_NOT_EDIT │ │ │ │ └── default │ │ │ │ ├── stylesheet-ie.css │ │ │ │ └── stylesheet.css │ │ ├── model_stub.rb │ │ ├── run_all.rb │ │ └── test_helper.rb │ └── uninstall.rb │ ├── acts_as_enumerated │ ├── ATTENTION │ ├── LICENSE │ ├── README_ENUMERATIONS │ ├── init.rb │ ├── lib │ │ └── active_record │ │ │ ├── acts │ │ │ └── enumerated.rb │ │ │ ├── aggregations │ │ │ └── has_enumerated.rb │ │ │ └── virtual_enumerations.rb │ └── virtual_enumerations_sample.rb │ ├── acts_as_extaggable │ ├── MIT-LICENSE │ ├── README │ ├── Rakefile │ ├── init.rb │ ├── install.rb │ ├── lib │ │ ├── acts_as_extaggable.rb │ │ ├── acts_as_taggable │ │ │ ├── collection.rb │ │ │ └── core.rb │ │ ├── compatibility │ │ │ └── active_record_backports.rb │ │ ├── tag.rb │ │ ├── tag_list.rb │ │ ├── tags_helper.rb │ │ └── tao_tag.rb │ ├── tasks │ │ └── acts_as_taggable_echo_tasks.rake │ ├── test │ │ ├── acts_as_extaggable_test.rb │ │ └── test_helper.rb │ └── uninstall.rb │ ├── acts_as_state_machine │ ├── CHANGELOG │ ├── MIT-LICENSE │ ├── README │ ├── Rakefile │ ├── TODO │ ├── init.rb │ ├── lib │ │ └── acts_as_state_machine.rb │ └── test │ │ ├── acts_as_state_machine_test.rb │ │ ├── database.yml │ │ ├── fixtures │ │ ├── conversation.rb │ │ ├── conversations.yml │ │ └── person.rb │ │ ├── schema.rb │ │ └── test_helper.rb │ ├── acts_as_tree │ ├── README │ ├── Rakefile │ ├── init.rb │ ├── lib │ │ └── active_record │ │ │ └── acts │ │ │ └── tree.rb │ └── test │ │ ├── abstract_unit.rb │ │ ├── acts_as_tree_test.rb │ │ ├── database.yml │ │ ├── fixtures │ │ ├── mixin.rb │ │ └── mixins.yml │ │ └── schema.rb │ ├── auto_complete_jquery │ ├── CHANGELOG │ ├── MIT-LICENSE │ ├── README.markdown │ ├── Rakefile │ ├── auto_complete_jquery.gemspec │ ├── images │ │ └── indicator.gif │ ├── init.rb │ ├── javascripts │ │ └── jquery.autocomplete.js │ ├── lib │ │ └── auto_complete_jquery.rb │ ├── stylesheets │ │ └── jquery.autocomplete.css │ └── tasks │ │ └── auto_complete_tasks.rake │ ├── awesome_nested_set │ ├── .autotest │ ├── .gitignore │ ├── MIT-LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── VERSION │ ├── awesome_nested_set.gemspec │ ├── init.rb │ ├── lib │ │ ├── awesome_nested_set.rb │ │ └── awesome_nested_set │ │ │ └── helper.rb │ ├── rails │ │ └── init.rb │ └── test │ │ ├── application.rb │ │ ├── awesome_nested_set │ │ └── helper_test.rb │ │ ├── awesome_nested_set_test.rb │ │ ├── db │ │ ├── database.yml │ │ └── schema.rb │ │ ├── fixtures │ │ ├── categories.yml │ │ ├── category.rb │ │ ├── departments.yml │ │ └── notes.yml │ │ └── test_helper.rb │ ├── fck-editor │ ├── .gitignore │ ├── CHANGELOG │ ├── LICENSE │ ├── README.textile │ ├── 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 │ │ │ ├── fckcustom_easy.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 │ │ │ │ ├── assets │ │ │ │ │ ├── sample06.config.js │ │ │ │ │ ├── sample11_frame.html │ │ │ │ │ ├── sample14.config.js │ │ │ │ │ ├── sample14.styles.css │ │ │ │ │ ├── sample15.config.js │ │ │ │ │ ├── sample16.config.js │ │ │ │ │ ├── sample16.fla │ │ │ │ │ ├── sample16.swf │ │ │ │ │ └── swfobject.js │ │ │ │ ├── sample01.html │ │ │ │ ├── sample02.html │ │ │ │ ├── sample03.html │ │ │ │ ├── sample04.html │ │ │ │ ├── sample05.html │ │ │ │ ├── sample06.html │ │ │ │ ├── sample07.html │ │ │ │ ├── sample08.html │ │ │ │ ├── sample09.html │ │ │ │ ├── sample10.html │ │ │ │ ├── sample11.html │ │ │ │ ├── sample12.html │ │ │ │ ├── sample13.html │ │ │ │ ├── sample14.html │ │ │ │ ├── sample15.html │ │ │ │ └── sample16.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 │ │ │ │ │ ├── fckdebug_empty.js │ │ │ │ │ ├── fckdialog.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_div.html │ │ │ │ ├── fck_docprops.html │ │ │ │ ├── fck_docprops │ │ │ │ │ └── fck_document_preview.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 │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── is.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 │ │ │ │ ├── easyUpload │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── install.html │ │ │ │ │ │ ├── installation.png │ │ │ │ │ │ ├── marker.png │ │ │ │ │ │ ├── preview.png │ │ │ │ │ │ └── styles.css │ │ │ │ │ ├── fck_file.html │ │ │ │ │ ├── fck_file.js │ │ │ │ │ ├── fck_image.html │ │ │ │ │ ├── fck_image │ │ │ │ │ │ ├── fck_image.js │ │ │ │ │ │ └── fck_image_preview.html │ │ │ │ │ ├── fck_link.html │ │ │ │ │ ├── fck_link.js │ │ │ │ │ ├── fckblank.html │ │ │ │ │ ├── fckplugin.js │ │ │ │ │ ├── file.gif │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ └── es.js │ │ │ │ │ └── readme.html │ │ │ │ ├── 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 │ │ │ └── wsc │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ └── w.html │ │ │ ├── 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 │ └── uninstall.rb │ ├── http_accept_language │ ├── MIT-LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── init.rb │ ├── lib │ │ └── http_accept_language.rb │ ├── tasks │ │ └── http_accept_language_tasks.rake │ └── test │ │ └── http_accept_language_test.rb │ ├── i18n_backend_database │ ├── README.textile │ ├── data │ │ └── locales.yml │ ├── generators │ │ └── i18n_backend_database │ │ │ ├── i18n_backend_database_generator.rb │ │ │ └── templates │ │ │ └── migrate │ │ │ └── create_i18n_tables.rb │ ├── init.rb │ ├── lib │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ ├── locales_controller.rb │ │ │ └── translations_controller.rb │ │ ├── ext │ │ │ └── i18n.rb │ │ ├── google_language.rb │ │ ├── i18n_backend_database.rb │ │ ├── i18n_backend_database │ │ │ └── database.rb │ │ ├── i18n_util.rb │ │ ├── models │ │ │ ├── locale.rb │ │ │ ├── translation.rb │ │ │ └── translation_option.rb │ │ ├── public │ │ │ ├── images │ │ │ │ ├── custom1_bar.gif │ │ │ │ ├── custom1_box.gif │ │ │ │ ├── percentImage.png │ │ │ │ ├── percentImage_back.png │ │ │ │ ├── percentImage_back1.png │ │ │ │ ├── percentImage_back2.png │ │ │ │ ├── percentImage_back3.png │ │ │ │ └── percentImage_back4.png │ │ │ ├── javascripts │ │ │ │ └── jsProgressBarHandler.js │ │ │ └── stylesheets │ │ │ │ └── translations.css │ │ ├── routing.rb │ │ └── views │ │ │ ├── layouts │ │ │ ├── locales.html.erb │ │ │ └── translations.html.erb │ │ │ ├── locales │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ │ └── translations │ │ │ ├── _list.html.erb │ │ │ ├── _translation.html.erb.erb │ │ │ ├── asset_translations.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ ├── show.html.erb │ │ │ ├── translations.html.erb │ │ │ └── update.rjs │ ├── lib_temp │ │ ├── controllers │ │ │ ├── locales_controller.rb │ │ │ └── translations_controller.rb │ │ ├── ext │ │ │ └── i18n.rb │ │ ├── google_language.rb │ │ ├── i18n_backend_database.rb │ │ ├── i18n_backend_database │ │ │ └── database.rb │ │ ├── i18n_util.rb │ │ ├── models │ │ │ ├── locale.rb │ │ │ ├── translation.rb │ │ │ └── translation_option.rb │ │ ├── public │ │ │ ├── images │ │ │ │ ├── custom1_bar.gif │ │ │ │ ├── custom1_box.gif │ │ │ │ ├── percentImage.png │ │ │ │ ├── percentImage_back.png │ │ │ │ ├── percentImage_back1.png │ │ │ │ ├── percentImage_back2.png │ │ │ │ ├── percentImage_back3.png │ │ │ │ └── percentImage_back4.png │ │ │ └── javascripts │ │ │ │ └── jsProgressBarHandler.js │ │ ├── routing.rb │ │ └── views │ │ │ ├── layouts │ │ │ └── translations.html.erb │ │ │ ├── locales │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ │ │ └── translations │ │ │ ├── asset_translations.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ ├── show.html.erb │ │ │ ├── translations.html.erb │ │ │ └── update.rjs │ ├── routes.rb │ ├── spec │ │ ├── assets │ │ │ ├── public │ │ │ │ ├── es │ │ │ │ │ ├── favicons │ │ │ │ │ │ └── favicon1.gif │ │ │ │ │ └── images │ │ │ │ │ │ ├── icons │ │ │ │ │ │ └── icon1.gif │ │ │ │ │ │ └── image1.gif │ │ │ │ ├── favicons │ │ │ │ │ ├── favicon1.gif │ │ │ │ │ └── favicon2.gif │ │ │ │ └── images │ │ │ │ │ ├── icons │ │ │ │ │ ├── icon1.gif │ │ │ │ │ └── icon2.gif │ │ │ │ │ ├── image1.gif │ │ │ │ │ ├── image2.gif │ │ │ │ │ └── promo │ │ │ │ │ └── sfc08_140x400_3.gif │ │ │ └── views │ │ │ │ ├── test_view1.html.erb │ │ │ │ └── test_view2.html.erb │ │ ├── caching_spec.rb │ │ ├── controllers │ │ │ ├── locales_controller_spec.rb │ │ │ ├── locales_routing_spec.rb │ │ │ ├── translations_controller_spec.rb │ │ │ └── translations_routing_spec.rb │ │ ├── database_spec.rb │ │ ├── i18n_ext_spec.rb │ │ ├── localize_spec.rb │ │ ├── localize_text_spec.rb │ │ ├── models │ │ │ ├── locale_spec.rb │ │ │ └── translation_spec.rb │ │ ├── spec_helper.rb │ │ ├── translate_asset_spec.rb │ │ └── translate_spec.rb │ └── tasks │ │ └── i18n.rake │ ├── iso-3166-country-select │ ├── MIT-LICENSE │ ├── README │ ├── init.rb │ ├── install.rb │ ├── lib │ │ └── country_select.rb │ └── uninstall.rb │ ├── jrails │ ├── CHANGELOG │ ├── LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── VERSION.yml │ ├── bin │ │ └── jrails │ ├── init.rb │ ├── install.rb │ ├── javascripts │ │ ├── jquery-ui.js │ │ ├── jquery.js │ │ ├── jrails.js │ │ └── sources │ │ │ └── jrails.js │ ├── jrails.gemspec │ ├── lib │ │ └── jrails.rb │ ├── rails │ │ └── init.rb │ └── tasks │ │ └── jrails.rake │ ├── memory_test_fix │ ├── README │ ├── Rakefile │ ├── about.yml │ ├── init.rb │ └── lib │ │ └── memory_test_fix.rb │ ├── paperclip │ ├── LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── cucumber │ │ └── paperclip_steps.rb │ ├── generators │ │ └── paperclip │ │ │ ├── USAGE │ │ │ ├── paperclip_generator.rb │ │ │ └── templates │ │ │ └── paperclip_migration.rb.erb │ ├── init.rb │ ├── lib │ │ ├── paperclip.rb │ │ └── paperclip │ │ │ ├── attachment.rb │ │ │ ├── callback_compatability.rb │ │ │ ├── geometry.rb │ │ │ ├── interpolations.rb │ │ │ ├── iostream.rb │ │ │ ├── matchers.rb │ │ │ ├── matchers │ │ │ ├── have_attached_file_matcher.rb │ │ │ ├── validate_attachment_content_type_matcher.rb │ │ │ ├── validate_attachment_presence_matcher.rb │ │ │ └── validate_attachment_size_matcher.rb │ │ │ ├── processor.rb │ │ │ ├── storage.rb │ │ │ ├── thumbnail.rb │ │ │ └── upfile.rb │ ├── paperclip.gemspec │ ├── shoulda_macros │ │ └── paperclip.rb │ ├── tasks │ │ └── paperclip_tasks.rake │ └── test │ │ ├── attachment_test.rb │ │ ├── database.yml │ │ ├── fixtures │ │ ├── 12k.png │ │ ├── 50x50.png │ │ ├── 5k.png │ │ ├── bad.png │ │ ├── s3.yml │ │ ├── text.txt │ │ └── twopage.pdf │ │ ├── geometry_test.rb │ │ ├── helper.rb │ │ ├── integration_test.rb │ │ ├── interpolations_test.rb │ │ ├── iostream_test.rb │ │ ├── matchers │ │ ├── have_attached_file_matcher_test.rb │ │ ├── validate_attachment_content_type_matcher_test.rb │ │ ├── validate_attachment_presence_matcher_test.rb │ │ └── validate_attachment_size_matcher_test.rb │ │ ├── paperclip_test.rb │ │ ├── processor_test.rb │ │ ├── storage_test.rb │ │ └── thumbnail_test.rb │ ├── rails-widgets │ ├── CHANGELOG │ ├── Documentation.txt │ ├── LICENSE │ ├── README │ ├── Rakefile │ ├── generators │ │ ├── navigation │ │ │ ├── USAGE │ │ │ ├── navigation_generator.rb │ │ │ └── templates │ │ │ │ └── navigation.html.erb │ │ └── tabnav │ │ │ ├── USAGE │ │ │ ├── tabnav_generator.rb │ │ │ └── templates │ │ │ └── tabnav.html.erb │ ├── images │ │ ├── tooltip_arrow.gif │ │ └── tooltip_image.gif │ ├── init.rb │ ├── install.rb │ ├── javascripts │ │ └── tooltip.js │ ├── lib │ │ ├── widgets.rb │ │ └── widgets │ │ │ ├── code.css.erb │ │ │ ├── code_helper.rb │ │ │ ├── core.rb │ │ │ ├── css_template.rb │ │ │ ├── disableable.rb │ │ │ ├── highlightable.rb │ │ │ ├── navigation.css.erb │ │ │ ├── navigation.rb │ │ │ ├── navigation_helper.rb │ │ │ ├── navigation_item.rb │ │ │ ├── progressbar.css.erb │ │ │ ├── progressbar_helper.rb │ │ │ ├── showhide.css.erb │ │ │ ├── showhide_helper.rb │ │ │ ├── spiffy_corners │ │ │ ├── spiffy5.html.erb │ │ │ ├── spiffy_corners.css.erb │ │ │ └── spiffy_corners_helper.rb │ │ │ ├── tab.rb │ │ │ ├── table.css.erb │ │ │ ├── table_helper.rb │ │ │ ├── tabnav.css.erb │ │ │ ├── tabnav.rb │ │ │ ├── tabnav_helper.rb │ │ │ ├── tooltip.css.erb │ │ │ ├── tooltip_helper.rb │ │ │ └── utils_helper.rb │ ├── tasks │ │ └── widgets_tasks.rake │ ├── test │ │ ├── disableable_test.rb │ │ ├── highlightable_test.rb │ │ ├── navigation_helper_test.rb │ │ ├── showhide_helper_test.rb │ │ ├── spiffy_corners │ │ │ ├── simple.html │ │ │ └── spiffy_corners_test.rb │ │ ├── tab_test.rb │ │ ├── table_helper_test.rb │ │ ├── tabnav_helper_test.rb │ │ ├── tabnav_test.rb │ │ ├── test_helper.rb │ │ └── tooltip_helper_test.rb │ └── uninstall.rb │ ├── routing-filter │ ├── MIT-LICENSE │ ├── README.markdown │ ├── Rakefile │ ├── VERSION │ ├── init.rb │ ├── lib │ │ ├── routing_filter.rb │ │ └── routing_filter │ │ │ ├── base.rb │ │ │ ├── force_extension.rb │ │ │ ├── locale.rb │ │ │ ├── mode.rb │ │ │ └── pagination.rb │ ├── routing-filter.gemspec │ └── spec │ │ ├── force_extension_spec.rb │ │ ├── generation_spec.rb │ │ ├── pagination_extension_spec.rb │ │ ├── recognition_spec.rb │ │ ├── routing_filter_spec.rb │ │ ├── spec.opts │ │ └── spec_helper.rb │ └── translate_columns │ ├── LICENSE │ ├── README.rdoc │ ├── Rakefile │ ├── init.rb │ ├── install.rb │ ├── lib │ └── translate_columns.rb │ ├── tasks │ └── translate_columns_tasks.rake │ └── test │ ├── database.yml │ ├── fixtures │ ├── document.rb │ ├── document_translation.rb │ ├── document_translations.yml │ ├── documents.yml │ └── schema.rb │ ├── lib │ ├── activerecord_connector.rb │ └── activerecord_test_helper.rb │ └── translate_columns_test.rb └── vpproject └── echologic.vpp /Capfile: -------------------------------------------------------------------------------- 1 | load 'deploy' if respond_to?(:namespace) # cap2 differentiator 2 | Dir['vendor/plugins/*/recipes/*.rb'].each { |plugin| load(plugin) } 3 | load 'config/deploy' -------------------------------------------------------------------------------- /app/controllers/act_controller.rb: -------------------------------------------------------------------------------- 1 | class ActController < ApplicationController 2 | 3 | # GET /act 4 | def roadmap 5 | respond_to do |format| 6 | format.html 7 | end 8 | end 9 | 10 | end 11 | -------------------------------------------------------------------------------- /app/controllers/admin_controller.rb: -------------------------------------------------------------------------------- 1 | class AdminController < ApplicationController 2 | 3 | # GET /admin 4 | def show 5 | respond_to do |format| 6 | format.html 7 | end 8 | end 9 | 10 | end 11 | -------------------------------------------------------------------------------- /app/helpers/act_helper.rb: -------------------------------------------------------------------------------- 1 | module ActHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/admin_helper.rb: -------------------------------------------------------------------------------- 1 | module AdminHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/api_helper.rb: -------------------------------------------------------------------------------- 1 | module ApiHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/discuss_helper.rb: -------------------------------------------------------------------------------- 1 | module DiscussHelper 2 | 3 | 4 | 5 | 6 | end 7 | -------------------------------------------------------------------------------- /app/helpers/echo_helper.rb: -------------------------------------------------------------------------------- 1 | module EchoHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/echosocial_helper.rb: -------------------------------------------------------------------------------- 1 | module EchosocialHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/profiles_helper.rb: -------------------------------------------------------------------------------- 1 | module ProfilesHelper 2 | def profile_complete 3 | "("+I18n.t("layouts.my_echo.profile_complete", :complete => current_user.percent_completed || 0)+")" 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /app/helpers/reports_helper.rb: -------------------------------------------------------------------------------- 1 | module ReportsHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/spoken_languages_helper.rb: -------------------------------------------------------------------------------- 1 | module SpokenLanguagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/helpers/statement_images_helper.rb: -------------------------------------------------------------------------------- 1 | module StatementImagesHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/models/about_item_translation.rb: -------------------------------------------------------------------------------- 1 | class AboutItemTranslation < ActiveRecord::Base 2 | belongs_to :about_item 3 | end -------------------------------------------------------------------------------- /app/models/development.rb: -------------------------------------------------------------------------------- 1 | class Development 2 | 3 | # Roadmap progress constants 4 | DISCUSS_PROGRESS = 50 5 | CONNECT_PROGRESS = 20 6 | ACT_PROGRESS = 0 7 | MY_ECHO_PROGRESS = 30 8 | 9 | end -------------------------------------------------------------------------------- /app/models/feedback.rb: -------------------------------------------------------------------------------- 1 | class Feedback < ActiveRecord::Base 2 | 3 | # Validate uniqueness 4 | validates_presence_of :name, :message 5 | 6 | end 7 | -------------------------------------------------------------------------------- /app/models/membership.rb: -------------------------------------------------------------------------------- 1 | class Membership < ActiveRecord::Base 2 | include ProfileUpdater 3 | 4 | belongs_to :user 5 | delegate :percent_completed, :to => :user 6 | 7 | validates_presence_of :organisation, :position, :user_id 8 | end 9 | -------------------------------------------------------------------------------- /app/models/newsletter.rb: -------------------------------------------------------------------------------- 1 | class Newsletter < ActiveRecord::Base 2 | has_many :translations, :class_name => 'NewsletterTranslation' 3 | translate_columns :subject, :text 4 | end 5 | -------------------------------------------------------------------------------- /app/models/newsletter_translation.rb: -------------------------------------------------------------------------------- 1 | class NewsletterTranslation < ActiveRecord::Base 2 | belongs_to :newsletter 3 | end -------------------------------------------------------------------------------- /app/models/pending_action.rb: -------------------------------------------------------------------------------- 1 | class PendingAction < ActiveRecord::Base 2 | include UUIDHelper 3 | belongs_to :user 4 | set_primary_key 'uuid' 5 | 6 | 7 | end 8 | -------------------------------------------------------------------------------- /app/models/role.rb: -------------------------------------------------------------------------------- 1 | class Role < ActiveRecord::Base 2 | acts_as_authorization_role 3 | end 4 | -------------------------------------------------------------------------------- /app/models/session.rb: -------------------------------------------------------------------------------- 1 | class Session < ActiveRecord::Base 2 | end 3 | -------------------------------------------------------------------------------- /app/models/statements/cas_hub.rb: -------------------------------------------------------------------------------- 1 | class CasHub < StatementNode 2 | 3 | has_many :alternatives, :class_name => "StatementNode", :foreign_key => 'parent_id' 4 | 5 | def target_id 6 | parent_id 7 | end 8 | 9 | end -------------------------------------------------------------------------------- /app/models/user_session.rb: -------------------------------------------------------------------------------- 1 | class UserSession < Authlogic::Session::Base 2 | # logout_on_timeout true 3 | end 4 | -------------------------------------------------------------------------------- /app/views/about_items/list.html.erb: -------------------------------------------------------------------------------- 1 | <% @function_name = 'admin_about' %> 2 | <%= render :super %> -------------------------------------------------------------------------------- /app/views/activity_tracking_mailer/activity_templates/_statement_activity_template.html.erb: -------------------------------------------------------------------------------- 1 | 2 | <% document = get_document_in_preferred_language(event["documents"], @preferred_language_ids) %> 3 | <%= inline_statement_link(document, event) %> 4 | 5 | -------------------------------------------------------------------------------- /app/views/admin/show.html.erb: -------------------------------------------------------------------------------- 1 | <% @function_name = 'admin_menu' %> 2 | 3 |

Admin Area

4 |

5 | Here you find all features only available to Administrators. 6 |

7 | -------------------------------------------------------------------------------- /app/views/feedback/create.js.erb: -------------------------------------------------------------------------------- 1 | /* On success close the dialog and show the 'thanks' message. */ 2 | $('#dialogContent').dialog('destroy'); 3 | info("<%= I18n.t('feedback.create.thank_you')%>") 4 | -------------------------------------------------------------------------------- /app/views/feedback_mailer/feedback.html.erb: -------------------------------------------------------------------------------- 1 | Feedback from <%= @name %>: 2 | 3 | <%=h @message %> 4 | 5 | -------------------------------------------------------------------------------- /app/views/i18n/translations/_list.html.erb: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | <%= render @translations %> 8 |
Raw keyValue
-------------------------------------------------------------------------------- /app/views/layouts/echosocial/_teasers.html.erb: -------------------------------------------------------------------------------- 1 |
2 | 7 |
-------------------------------------------------------------------------------- /app/views/my_echo/change_email.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'users/users/change_email' %> -------------------------------------------------------------------------------- /app/views/my_echo/change_password.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'users/users/change_password' %> -------------------------------------------------------------------------------- /app/views/my_echo/delete_account.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'users/users/delete_account' %> -------------------------------------------------------------------------------- /app/views/newsletters/list.html.erb: -------------------------------------------------------------------------------- 1 | <% @function_name = 'admin_newsletter' %> 2 | 3 | <%= render :super %> -------------------------------------------------------------------------------- /app/views/redirect_from_popup.html.erb: -------------------------------------------------------------------------------- 1 | <%= javascript_tag "openUrlInParentWindow('#{escape_javascript(@redirect_url)}', true)" -%> -------------------------------------------------------------------------------- /app/views/registration_mailer/activate.erb: -------------------------------------------------------------------------------- 1 | <%= I18n.t('mail.activation.text1', :name => @name) %> 2 | <%= @activation_url %> 3 | 4 | <%= I18n.t('mail.activation.text2') %> 5 | 6 | <%= I18n.t('mailers.signature') %> 7 | -------------------------------------------------------------------------------- /app/views/registration_mailer/activate_email.erb: -------------------------------------------------------------------------------- 1 | <%= I18n.t('mail.activate_email.text1', :name => @name) %> 2 | <%= @activation_url %> 3 | 4 | <%= I18n.t('mail.activate_email.text2') %> 5 | 6 | <%= I18n.t('mailers.signature') %> 7 | -------------------------------------------------------------------------------- /app/views/registration_mailer/activation_confirmation.erb: -------------------------------------------------------------------------------- 1 | <%= I18n.t('mail.welcome.text', :name => @name) %> 2 | 3 | <%= I18n.t('mailers.signature') %> 4 | -------------------------------------------------------------------------------- /app/views/registration_mailer/activation_instructions.erb: -------------------------------------------------------------------------------- 1 | <%= I18n.t('mail.activation.text1') %> 2 | <%= @activation_url %> 3 | 4 | <%= I18n.t('mail.activation.text2') %> 5 | 6 | <%= I18n.t('mailers.signature') %> 7 | -------------------------------------------------------------------------------- /app/views/registration_mailer/password_reset_instructions.erb: -------------------------------------------------------------------------------- 1 | <%= I18n.t('mail.new_password.text1', :name => @name) %> 2 | <%= @edit_password_reset_url %> 3 | 4 | <%= I18n.t('mail.new_password.text2') %> 5 | 6 | <%= I18n.t('mailers.signature') %> 7 | -------------------------------------------------------------------------------- /app/views/statement_images/_image.html.erb: -------------------------------------------------------------------------------- 1 | <%= image_tag @statement_node.image.url(:medium), :class => 'image' %> -------------------------------------------------------------------------------- /app/views/statements/add.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'statements/default', :locals => {:template => 'statements/add'}%> -------------------------------------------------------------------------------- /app/views/statements/edit.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'statements/default', :locals => {:template => 'statements/edit'}%> 2 | -------------------------------------------------------------------------------- /app/views/statements/form/_incorporation_form.html.erb: -------------------------------------------------------------------------------- 1 | 2 | <%= render :partial => 'statements/form/form', :locals => {:form => form} %> 3 | -------------------------------------------------------------------------------- /app/views/statements/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'statements/default', :locals => {:template => 'statements/new'}%> 2 | 3 | 4 | -------------------------------------------------------------------------------- /app/views/statements/new_translation.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'statements/default', :locals => {:template => 'statements/translate'}%> 2 | -------------------------------------------------------------------------------- /app/views/statements/proposals/edit_draft.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'statements/default', :locals => {:template => 'statements/proposals/edit_draft'}%> 2 | -------------------------------------------------------------------------------- /app/views/statements/questions/my_questions.html.erb: -------------------------------------------------------------------------------- 1 | <% @function_name = 'my_questions' %> 2 | 3 | <% questions ||= @questions %> 4 | <%= render 'statements/questions/my_questions', :locals => {:questions => questions} %> -------------------------------------------------------------------------------- /app/views/statements/questions/my_questions.js.erb: -------------------------------------------------------------------------------- 1 | var content = "<%= escape_javascript(render 'statements/questions/my_questions') %>"; 2 | $("#my_questions").replaceWith(content); 3 | -------------------------------------------------------------------------------- /app/views/statements/questions/show.html.erb: -------------------------------------------------------------------------------- 1 | ../statements/show.html.erb -------------------------------------------------------------------------------- /app/views/statements/show.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'statements/default', :locals => {:template => 'statements/show'}%> 2 | -------------------------------------------------------------------------------- /app/views/static/echologic/_imprint.html.erb: -------------------------------------------------------------------------------- 1 | <%= I18n.t('static.echologic.imprint.text') %> 2 | 3 |

4 | <%= link_to (I18n.t('static.echologic.imprint.open_statute'), '/resources/Satzung_echosource_eV.pdf', {:target => 'blank'}) %> 5 |

-------------------------------------------------------------------------------- /app/views/static/echosocial/_about.html.erb: -------------------------------------------------------------------------------- 1 | <%= I18n.t('static.echosocial.about.text') %> 2 | 3 | <%= render :partial => 'sponsors' %> -------------------------------------------------------------------------------- /app/views/static/echosocial/_imprint.html.erb: -------------------------------------------------------------------------------- 1 | <%= I18n.t('static.echologic.imprint.text') %> 2 | 3 |

4 | <%= link_to(I18n.t('static.echologic.imprint.open_statute'), '/resources/Satzung_echosource_eV.pdf', {:target => 'blank'}) %> 5 |

-------------------------------------------------------------------------------- /app/views/tags/show.html.erb: -------------------------------------------------------------------------------- 1 |

2 | Value: 3 | <%=h @tag.value %> 4 |

5 | 6 | 7 | <%= link_to 'Edit', hash_for_tags_path.merge({:action => :edit, :id => @tag.id}) %> | 8 | <%= link_to 'Back', tags_path %> -------------------------------------------------------------------------------- /app/views/users/echo_account/insert_form.js.erb: -------------------------------------------------------------------------------- 1 | 2 | var content = "<%=escape_javascript(render :partial => partial, :locals => {:style => 'display:none;'})%>"; 3 | $('#echo_account_settings').append(content); -------------------------------------------------------------------------------- /app/views/users/login.html.erb: -------------------------------------------------------------------------------- 1 | Ich bin euer Loginformular, klar!? 2 | -------------------------------------------------------------------------------- /app/views/users/password_resets/new.html.erb: -------------------------------------------------------------------------------- 1 | <% content_for :tabContainer do %> 2 | <%= tabnav :static_join %> 3 | <% end %> 4 | 5 | <%= render :partial => 'new' %> 6 | -------------------------------------------------------------------------------- /app/views/users/profiles/mails/create.js.erb: -------------------------------------------------------------------------------- 1 | /* On success close the dialog and show the 'thanks' message. */ 2 | $('#dialogContent').dialog('destroy'); 3 | info("<%= I18n.t('user_mail.create.thank_you')%>") 4 | -------------------------------------------------------------------------------- /app/views/users/profiles/mails/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'users/profiles/mails/new' %> -------------------------------------------------------------------------------- /app/views/users/reports/create.js.erb: -------------------------------------------------------------------------------- 1 | /* Close the dialog and show the thank's message. */ 2 | $('#dialogContent').dialog('destroy'); 3 | info('<%= I18n.t('users.reports.messages.created') %>'); 4 | 5 | -------------------------------------------------------------------------------- /app/views/users/reports/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'users/reports/new' %> 2 | -------------------------------------------------------------------------------- /app/views/users/user_sessions/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'users/user_sessions/new' %> -------------------------------------------------------------------------------- /app/views/users/users/_list.html.erb: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /app/views/users/users/new.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'users/users/new' %> -------------------------------------------------------------------------------- /app/views/users/users/setup_basic_profile.html.erb: -------------------------------------------------------------------------------- 1 | <%= render :partial => 'users/users/setup_basic_profile' %> 2 | 3 | -------------------------------------------------------------------------------- /app/views/users/users/show.html.erb: -------------------------------------------------------------------------------- 1 |
2 | <%= render :partial => 'users/users/user_details' %> 3 |
4 | -------------------------------------------------------------------------------- /app/views/users/users/show.js.erb: -------------------------------------------------------------------------------- 1 | var content = "<%= escape_javascript(render(:partial => 'user_details')) %>"; 2 | 3 | $('#user_details_container').html(content); 4 | 5 | $('#user_details_container:hidden').show(); 6 | -------------------------------------------------------------------------------- /config/initializers/alternative.rb: -------------------------------------------------------------------------------- 1 | require 'acts_as_alternative' 2 | 3 | ActiveRecord::Base.send :include, ActiveRecord::Acts::Alternative 4 | -------------------------------------------------------------------------------- /config/initializers/double_renderer.rb: -------------------------------------------------------------------------------- 1 | ActiveRecord::Base.send :include, ActsAsDouble 2 | -------------------------------------------------------------------------------- /config/initializers/mailer_service.rb: -------------------------------------------------------------------------------- 1 | require 'mailer_service/mailer_service' 2 | 3 | MailerService.instance -------------------------------------------------------------------------------- /config/rpx_config.rb: -------------------------------------------------------------------------------- 1 | 2 | RPX_APP_NAME ||= 'login.echo.to' 3 | RPX_API_KEY ||= 'secret_api_key' -------------------------------------------------------------------------------- /db/migrate/20101121201513_add_new_about_item_category_translators.rb: -------------------------------------------------------------------------------- 1 | class AddNewAboutItemCategoryTranslators < ActiveRecord::Migration 2 | def self.up 3 | Rake::Task['db:seed'].invoke 4 | end 5 | 6 | def self.down 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /db/migrate/20110125174418_rebuild_statement_nodes_nested_set.rb: -------------------------------------------------------------------------------- 1 | class RebuildStatementNodesNestedSet < ActiveRecord::Migration 2 | def self.up 3 | StatementNode.rebuild! 4 | end 5 | 6 | def self.down 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /db/migrate/20110413160252_seed_new_about_logo_category_partners.rb: -------------------------------------------------------------------------------- 1 | class SeedNewAboutLogoCategoryPartners < ActiveRecord::Migration 2 | def self.up 3 | Rake::Task['db:seed'].invoke 4 | end 5 | 6 | def self.down 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /db/migrate/20110518214946_seeding_hungarian_support.rb: -------------------------------------------------------------------------------- 1 | class SeedingHungarianSupport < ActiveRecord::Migration 2 | def self.up 3 | Rake::Task['db:seed'].invoke 4 | end 5 | 6 | def self.down 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /db/migrate/20110707184338_seeding_backround_info_types.rb: -------------------------------------------------------------------------------- 1 | class SeedingBackroundInfoTypes < ActiveRecord::Migration 2 | def self.up 3 | Rake::Task['db:seed'].invoke 4 | end 5 | 6 | def self.down 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /deploy/after_restart.rb: -------------------------------------------------------------------------------- 1 | run "sudo monit restart -g dj_echologic_production" 2 | -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- 1 | Use this README file to introduce your application and point to useful places in the API for learning more. 2 | Run "rake doc:app" to generate API documentation for your models, controllers, helpers, and libraries. 3 | -------------------------------------------------------------------------------- /doc/app/created.rid: -------------------------------------------------------------------------------- 1 | Tue, 27 Oct 2009 09:52:20 +0100 2 | -------------------------------------------------------------------------------- /doc/support/unsupport workflow.vpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/doc/support/unsupport workflow.vpp -------------------------------------------------------------------------------- /doc/support/unsupport workflow.vpp.bak~1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/doc/support/unsupport workflow.vpp.bak~1 -------------------------------------------------------------------------------- /features/echosocial.feature: -------------------------------------------------------------------------------- 1 | @echosocial 2 | Feature: Access echosocial 3 | When I go to echosocial 4 | I should see "Echosocial" -------------------------------------------------------------------------------- /features/step_definitions/concernment_steps.rb: -------------------------------------------------------------------------------- 1 | 2 | Given /^I have no concernments$/ do 3 | @user.tao_tags.destroy_all 4 | end 5 | 6 | Then /^I should have ([0-9]+) concernments$/ do |count| 7 | @user.tao_tags.count.should == count.to_i 8 | end 9 | -------------------------------------------------------------------------------- /features/step_definitions/translation_steps.rb: -------------------------------------------------------------------------------- 1 | Given /^I change the application language to "([^\"]*)"$/ do |code| 2 | I18n.locale = code 3 | end -------------------------------------------------------------------------------- /lib/drafting_service/drafting_info.rb: -------------------------------------------------------------------------------- 1 | class DraftingInfo < ActiveRecord::Base 2 | 3 | validates_numericality_of :times_passed 4 | validates_inclusion_of :times_passed, :in => 0..2 5 | end 6 | -------------------------------------------------------------------------------- /lib/social_service/social_identifier.rb: -------------------------------------------------------------------------------- 1 | class SocialIdentifier < ActiveRecord::Base 2 | validates_presence_of :identifier 3 | validates_uniqueness_of :identifier 4 | 5 | belongs_to :user 6 | end -------------------------------------------------------------------------------- /lib/tasks/echo.rake: -------------------------------------------------------------------------------- 1 | namespace :echo do 2 | 3 | end 4 | -------------------------------------------------------------------------------- /lib/uuid_helper.rb: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'uuidtools' 3 | 4 | module UUIDHelper 5 | def before_create() 6 | self.uuid = UUIDTools::UUID.timestamp_create().to_s 7 | end 8 | end -------------------------------------------------------------------------------- /public/images/active_scaffold/DO_NOT_EDIT: -------------------------------------------------------------------------------- 1 | Any changes made to files in sub-folders will be lost. 2 | See http://activescaffold.com/tutorials/faq#custom-css. 3 | -------------------------------------------------------------------------------- /public/images/active_scaffold/default/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/active_scaffold/default/add.gif -------------------------------------------------------------------------------- /public/images/active_scaffold/default/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/active_scaffold/default/arrow_down.gif -------------------------------------------------------------------------------- /public/images/active_scaffold/default/arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/active_scaffold/default/arrow_up.gif -------------------------------------------------------------------------------- /public/images/active_scaffold/default/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/active_scaffold/default/close.gif -------------------------------------------------------------------------------- /public/images/active_scaffold/default/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/active_scaffold/default/cross.png -------------------------------------------------------------------------------- /public/images/active_scaffold/default/indicator-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/active_scaffold/default/indicator-small.gif -------------------------------------------------------------------------------- /public/images/active_scaffold/default/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/active_scaffold/default/indicator.gif -------------------------------------------------------------------------------- /public/images/active_scaffold/default/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/active_scaffold/default/magnifier.png -------------------------------------------------------------------------------- /public/images/add_statement_teaser_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/add_statement_teaser_image.png -------------------------------------------------------------------------------- /public/images/default_big_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/default_big_avatar.png -------------------------------------------------------------------------------- /public/images/default_bigger_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/default_bigger_avatar.png -------------------------------------------------------------------------------- /public/images/default_biggest_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/default_biggest_avatar.png -------------------------------------------------------------------------------- /public/images/default_medium_statement_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/default_medium_statement_image.png -------------------------------------------------------------------------------- /public/images/default_small_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/default_small_avatar.png -------------------------------------------------------------------------------- /public/images/default_small_statement_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/default_small_statement_image.png -------------------------------------------------------------------------------- /public/images/echo_browser_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/echo_browser_icon.png -------------------------------------------------------------------------------- /public/images/echosocial_browser_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/echosocial_browser_icon.png -------------------------------------------------------------------------------- /public/images/echosocial_browser_icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/echosocial_browser_icon2.png -------------------------------------------------------------------------------- /public/images/indicator_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/indicator_16.gif -------------------------------------------------------------------------------- /public/images/indicator_28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/indicator_28.gif -------------------------------------------------------------------------------- /public/images/jquery-ui/background_button_large_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/background_button_large_off.gif -------------------------------------------------------------------------------- /public/images/jquery-ui/background_button_large_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/background_button_large_on.gif -------------------------------------------------------------------------------- /public/images/jquery-ui/background_dialog_buttonbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/background_dialog_buttonbar.gif -------------------------------------------------------------------------------- /public/images/jquery-ui/background_whitepanel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/background_whitepanel.gif -------------------------------------------------------------------------------- /public/images/jquery-ui/separator_no_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/separator_no_shadow.png -------------------------------------------------------------------------------- /public/images/jquery-ui/separator_with_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/separator_with_shadow.png -------------------------------------------------------------------------------- /public/images/jquery-ui/slider-range.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/slider-range.gif -------------------------------------------------------------------------------- /public/images/jquery-ui/tab_sub_off_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/tab_sub_off_01.png -------------------------------------------------------------------------------- /public/images/jquery-ui/tab_sub_off_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/tab_sub_off_02.png -------------------------------------------------------------------------------- /public/images/jquery-ui/tab_sub_on_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/tab_sub_on_01.png -------------------------------------------------------------------------------- /public/images/jquery-ui/tab_sub_on_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/tab_sub_on_02.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_flat_0_4c4c4c_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_flat_0_4c4c4c_40x100.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_flat_10_303030_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_flat_10_303030_40x100.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_flat_70_1a0f0f_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_flat_70_1a0f0f_40x100.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_glass_40_0a0a0a_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_glass_40_0a0a0a_1x400.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_glass_55_f1fbe5_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_glass_55_f1fbe5_1x400.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_glass_60_000000_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_glass_60_000000_1x400.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_gloss-wave_55_000000_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_gloss-wave_55_000000_500x100.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_gloss-wave_85_9fda58_500x100.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_gloss-wave_85_9fda58_500x100.gif -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_gloss-wave_85_9fda58_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_gloss-wave_85_9fda58_500x100.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_gloss-wave_95_f6ecd5_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_gloss-wave_95_f6ecd5_500x100.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-bg_inset-soft_95_fef1ec_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-bg_inset-soft_95_fef1ec_1x100.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-icons_000000_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-icons_000000_256x240.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-icons_1a4864_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-icons_1a4864_256x240.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-icons_1f1f1f_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-icons_1f1f1f_256x240.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-icons_21587f_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-icons_21587f_256x240.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-icons_7ab031_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-icons_7ab031_256x240.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-icons_9fda58_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-icons_9fda58_256x240.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-icons_b8ec79_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-icons_b8ec79_256x240.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /public/images/jquery-ui/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/jquery-ui/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /public/images/mails/blog_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/mails/blog_icon.png -------------------------------------------------------------------------------- /public/images/mails/echo_beta_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/mails/echo_beta_logo.png -------------------------------------------------------------------------------- /public/images/mails/echo_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/mails/echo_icon.png -------------------------------------------------------------------------------- /public/images/mails/facebook_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/mails/facebook_icon.png -------------------------------------------------------------------------------- /public/images/mails/mail_links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/mails/mail_links.png -------------------------------------------------------------------------------- /public/images/mails/twitter_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/mails/twitter_icon.png -------------------------------------------------------------------------------- /public/images/page/action_bar_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/action_bar_header.png -------------------------------------------------------------------------------- /public/images/page/babelfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/babelfish.png -------------------------------------------------------------------------------- /public/images/page/back_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/back_button.png -------------------------------------------------------------------------------- /public/images/page/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/background.gif -------------------------------------------------------------------------------- /public/images/page/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/background.png -------------------------------------------------------------------------------- /public/images/page/beta_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/beta_label.png -------------------------------------------------------------------------------- /public/images/page/beta_stamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/beta_stamp.png -------------------------------------------------------------------------------- /public/images/page/box/blue_white_gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/box/blue_white_gradient.png -------------------------------------------------------------------------------- /public/images/page/box/blue_white_gradient_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/box/blue_white_gradient_small.png -------------------------------------------------------------------------------- /public/images/page/box/borders_7bb031_iwot_corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/box/borders_7bb031_iwot_corners.png -------------------------------------------------------------------------------- /public/images/page/box/borders_7bb031_iwot_leftright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/box/borders_7bb031_iwot_leftright.png -------------------------------------------------------------------------------- /public/images/page/box/borders_7bb031_iwot_topbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/box/borders_7bb031_iwot_topbottom.png -------------------------------------------------------------------------------- /public/images/page/box/borders_a8a8a8_itow_corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/box/borders_a8a8a8_itow_corners.png -------------------------------------------------------------------------------- /public/images/page/box/borders_a8a8a8_itow_leftright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/box/borders_a8a8a8_itow_leftright.png -------------------------------------------------------------------------------- /public/images/page/box/borders_a8a8a8_itow_topbottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/box/borders_a8a8a8_itow_topbottom.png -------------------------------------------------------------------------------- /public/images/page/box/box_icon_discuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/box/box_icon_discuss.png -------------------------------------------------------------------------------- /public/images/page/box/box_icon_people.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/box/box_icon_people.png -------------------------------------------------------------------------------- /public/images/page/box/colored_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/box/colored_background.png -------------------------------------------------------------------------------- /public/images/page/box/colored_background_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/box/colored_background_mid.png -------------------------------------------------------------------------------- /public/images/page/box/colored_background_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/box/colored_background_small.png -------------------------------------------------------------------------------- /public/images/page/box/header_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/box/header_border.png -------------------------------------------------------------------------------- /public/images/page/button_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/button_150.png -------------------------------------------------------------------------------- /public/images/page/button_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/button_200.png -------------------------------------------------------------------------------- /public/images/page/button_250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/button_250.png -------------------------------------------------------------------------------- /public/images/page/button_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/button_300.png -------------------------------------------------------------------------------- /public/images/page/colored_header_780.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/colored_header_780.png -------------------------------------------------------------------------------- /public/images/page/colored_header_980.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/colored_header_980.png -------------------------------------------------------------------------------- /public/images/page/discuss/action_panel_expander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/action_panel_expander.png -------------------------------------------------------------------------------- /public/images/page/discuss/add_first_question_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/add_first_question_button.png -------------------------------------------------------------------------------- /public/images/page/discuss/add_new_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/add_new_button_icon.png -------------------------------------------------------------------------------- /public/images/page/discuss/add_question_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/add_question_32.png -------------------------------------------------------------------------------- /public/images/page/discuss/add_question_42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/add_question_42.png -------------------------------------------------------------------------------- /public/images/page/discuss/add_statement_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/add_statement_small.png -------------------------------------------------------------------------------- /public/images/page/discuss/bi_icons_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/bi_icons_16.png -------------------------------------------------------------------------------- /public/images/page/discuss/bi_icons_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/bi_icons_32.png -------------------------------------------------------------------------------- /public/images/page/discuss/big_action_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/big_action_button.png -------------------------------------------------------------------------------- /public/images/page/discuss/breadcrumb_delimiter_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/breadcrumb_delimiter_big.png -------------------------------------------------------------------------------- /public/images/page/discuss/breadcrumb_delimiter_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/breadcrumb_delimiter_small.png -------------------------------------------------------------------------------- /public/images/page/discuss/cas_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/cas_arrow.png -------------------------------------------------------------------------------- /public/images/page/discuss/cas_panel_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/cas_panel_bg.png -------------------------------------------------------------------------------- /public/images/page/discuss/cas_panel_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/cas_panel_border.png -------------------------------------------------------------------------------- /public/images/page/discuss/cas_panel_border_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/cas_panel_border_shadow.png -------------------------------------------------------------------------------- /public/images/page/discuss/copy_url_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/copy_url_16.png -------------------------------------------------------------------------------- /public/images/page/discuss/echo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/echo.png -------------------------------------------------------------------------------- /public/images/page/discuss/echo_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/echo_button.png -------------------------------------------------------------------------------- /public/images/page/discuss/echo_button_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/echo_button_icon.png -------------------------------------------------------------------------------- /public/images/page/discuss/echo_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/echo_small.png -------------------------------------------------------------------------------- /public/images/page/discuss/embed_icon_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/embed_icon_big.png -------------------------------------------------------------------------------- /public/images/page/discuss/embed_icon_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/embed_icon_small.png -------------------------------------------------------------------------------- /public/images/page/discuss/expandable_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/expandable_icons.png -------------------------------------------------------------------------------- /public/images/page/discuss/incorporate_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/incorporate_button.png -------------------------------------------------------------------------------- /public/images/page/discuss/linking_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/linking_button.png -------------------------------------------------------------------------------- /public/images/page/discuss/my_discussions_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/my_discussions_16.png -------------------------------------------------------------------------------- /public/images/page/discuss/search_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/search_icon_16.png -------------------------------------------------------------------------------- /public/images/page/discuss/send_social_echo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/send_social_echo.png -------------------------------------------------------------------------------- /public/images/page/discuss/social_echo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/social_echo.png -------------------------------------------------------------------------------- /public/images/page/discuss/stack_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/stack_separator.png -------------------------------------------------------------------------------- /public/images/page/discuss/stack_separator_active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/stack_separator_active.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/background_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/background_info.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/bi_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/bi_article.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/bi_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/bi_audio.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/bi_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/bi_book.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/bi_document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/bi_document.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/bi_law.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/bi_law.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/bi_misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/bi_misc.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/bi_paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/bi_paper.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/bi_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/bi_photo.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/bi_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/bi_video.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/contra_argument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/contra_argument.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/follow_up_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/follow_up_question.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/improvement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/improvement.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/pro_argument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/pro_argument.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/proposal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/proposal.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons/question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons/question.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons_16.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_icons_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_icons_32.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_image_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_image_button.png -------------------------------------------------------------------------------- /public/images/page/discuss/statement_language_hint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/statement_language_hint.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/All_Topics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/All_Topics.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/ds_faq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/ds_faq.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/ds_guided_tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/ds_guided_tour.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/ds_vs11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/ds_vs11.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/echo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/echo.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/echocracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/echocracy.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/echonomyJAM_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/echonomyJAM_Logo.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/echonomyJAM_Logo_Big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/echonomyJAM_Logo_Big.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/echonomyjam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/echonomyjam.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/echosocial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/echosocial.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/eci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/eci.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/hochschultage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/hochschultage.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/hochschultage_teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/hochschultage_teaser.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/huwy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/huwy.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/igf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/igf.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/klimaherbst.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/klimaherbst.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/klimaherbst_teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/klimaherbst_teaser.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/pep-net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/pep-net.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/realprices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/realprices.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/vs11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/vs11.png -------------------------------------------------------------------------------- /public/images/page/discuss/topics/vs11_teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/topics/vs11_teaser.png -------------------------------------------------------------------------------- /public/images/page/discuss/unecho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/discuss/unecho.png -------------------------------------------------------------------------------- /public/images/page/echo_facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/echo_facebook.png -------------------------------------------------------------------------------- /public/images/page/echo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/echo_logo.png -------------------------------------------------------------------------------- /public/images/page/echo_o.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/echo_o.png -------------------------------------------------------------------------------- /public/images/page/echo_o_on_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/echo_o_on_off.png -------------------------------------------------------------------------------- /public/images/page/echo_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/echo_twitter.png -------------------------------------------------------------------------------- /public/images/page/echologic_twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/echologic_twitter.png -------------------------------------------------------------------------------- /public/images/page/echologic_twitter_xmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/echologic_twitter_xmas.png -------------------------------------------------------------------------------- /public/images/page/echosocial_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/echosocial_logo.png -------------------------------------------------------------------------------- /public/images/page/embedded_echo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/embedded_echo_logo.png -------------------------------------------------------------------------------- /public/images/page/form_button_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/form_button_150.png -------------------------------------------------------------------------------- /public/images/page/form_button_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/form_button_200.png -------------------------------------------------------------------------------- /public/images/page/form_button_250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/form_button_250.png -------------------------------------------------------------------------------- /public/images/page/form_button_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/form_button_300.png -------------------------------------------------------------------------------- /public/images/page/functions/connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/functions/connect.png -------------------------------------------------------------------------------- /public/images/page/functions/discuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/functions/discuss.png -------------------------------------------------------------------------------- /public/images/page/functions/my_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/functions/my_profile.png -------------------------------------------------------------------------------- /public/images/page/green_button_big_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/green_button_big_150.png -------------------------------------------------------------------------------- /public/images/page/header_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/header_left.png -------------------------------------------------------------------------------- /public/images/page/header_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/header_right.png -------------------------------------------------------------------------------- /public/images/page/icons/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/about.png -------------------------------------------------------------------------------- /public/images/page/icons/add_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/add_button.png -------------------------------------------------------------------------------- /public/images/page/icons/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/arrow.gif -------------------------------------------------------------------------------- /public/images/page/icons/authors_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/authors_button.png -------------------------------------------------------------------------------- /public/images/page/icons/babelfish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/babelfish.png -------------------------------------------------------------------------------- /public/images/page/icons/blog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/blog.png -------------------------------------------------------------------------------- /public/images/page/icons/delete_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/delete_button.png -------------------------------------------------------------------------------- /public/images/page/icons/edit_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/edit_button.png -------------------------------------------------------------------------------- /public/images/page/icons/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/feedback.png -------------------------------------------------------------------------------- /public/images/page/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/help.png -------------------------------------------------------------------------------- /public/images/page/icons/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/logout.png -------------------------------------------------------------------------------- /public/images/page/icons/pin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/pin.png -------------------------------------------------------------------------------- /public/images/page/icons/publish_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/publish_button.png -------------------------------------------------------------------------------- /public/images/page/icons/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/report.png -------------------------------------------------------------------------------- /public/images/page/icons/save_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/save_button.png -------------------------------------------------------------------------------- /public/images/page/icons/send_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/send_mail.png -------------------------------------------------------------------------------- /public/images/page/icons/small_x_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/small_x_button.png -------------------------------------------------------------------------------- /public/images/page/icons/under_construction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/under_construction.png -------------------------------------------------------------------------------- /public/images/page/icons/under_construction_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/icons/under_construction_big.png -------------------------------------------------------------------------------- /public/images/page/illustrations/benefits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/benefits.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echo_act.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echo_act.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echo_act_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echo_act_small.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echo_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echo_connect.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echo_connect_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echo_connect_small.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echo_discuss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echo_discuss.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echo_discuss_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echo_discuss_small.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echo_echo_on_waves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echo_echo_on_waves.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echo_echo_on_waves_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echo_echo_on_waves_small.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echocracy_citizens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echocracy_citizens.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echocracy_citizens_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echocracy_citizens_small.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echocracy_decision_makers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echocracy_decision_makers.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echocracy_decision_makers_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echocracy_decision_makers_small.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echocracy_organisations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echocracy_organisations.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echocracy_organisations_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echocracy_organisations_small.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echocracy_scientists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echocracy_scientists.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echocracy_scientists_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echocracy_scientists_small.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echonomy_foundation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echonomy_foundation.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echonomy_foundation_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echonomy_foundation_small.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echonomy_public_property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echonomy_public_property.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echonomy_public_property_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echonomy_public_property_small.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echonomy_your_profit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echonomy_your_profit.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echonomy_your_profit_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echonomy_your_profit_small.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echosocial_benefits_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echosocial_benefits_de.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echosocial_discuss_teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echosocial_discuss_teaser.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echosocial_extensions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echosocial_extensions.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echosocial_extensions_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echosocial_extensions_small.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echosocial_features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echosocial_features.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echosocial_features_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echosocial_features_small.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echosocial_show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echosocial_show.png -------------------------------------------------------------------------------- /public/images/page/illustrations/echosocial_show_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/echosocial_show_small.png -------------------------------------------------------------------------------- /public/images/page/illustrations/feedback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/feedback.png -------------------------------------------------------------------------------- /public/images/page/illustrations/join.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/illustrations/join.jpg -------------------------------------------------------------------------------- /public/images/page/input/input_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/input/input_bg.png -------------------------------------------------------------------------------- /public/images/page/input/input_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/input/input_left.png -------------------------------------------------------------------------------- /public/images/page/input/input_left_xon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/input/input_left_xon.png -------------------------------------------------------------------------------- /public/images/page/input/input_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/input/input_right.png -------------------------------------------------------------------------------- /public/images/page/input/input_right_xon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/input/input_right_xon.png -------------------------------------------------------------------------------- /public/images/page/input/login_input_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/input/login_input_bg.png -------------------------------------------------------------------------------- /public/images/page/invitebubble_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/invitebubble_left.png -------------------------------------------------------------------------------- /public/images/page/invitebubble_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/invitebubble_right.png -------------------------------------------------------------------------------- /public/images/page/logos/BMWi_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/logos/BMWi_Logo.png -------------------------------------------------------------------------------- /public/images/page/logos/BMWi_Logo_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/logos/BMWi_Logo_s.png -------------------------------------------------------------------------------- /public/images/page/logos/ESF_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/logos/ESF_Logo.png -------------------------------------------------------------------------------- /public/images/page/logos/ESF_Logo_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/logos/ESF_Logo_s.png -------------------------------------------------------------------------------- /public/images/page/logos/EU_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/logos/EU_Logo.png -------------------------------------------------------------------------------- /public/images/page/logos/EU_Logo_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/logos/EU_Logo_s.png -------------------------------------------------------------------------------- /public/images/page/logos/EXIST_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/logos/EXIST_Logo.png -------------------------------------------------------------------------------- /public/images/page/logos/EXIST_Logo_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/logos/EXIST_Logo_s.png -------------------------------------------------------------------------------- /public/images/page/logos/GRM_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/logos/GRM_Logo.png -------------------------------------------------------------------------------- /public/images/page/logos/GRM_Logo_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/logos/GRM_Logo_s.png -------------------------------------------------------------------------------- /public/images/page/logos/LMU_EC_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/logos/LMU_EC_Logo.png -------------------------------------------------------------------------------- /public/images/page/logos/LMU_EC_Logo_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/logos/LMU_EC_Logo_s.png -------------------------------------------------------------------------------- /public/images/page/logos/TU_Berlin_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/logos/TU_Berlin_Logo.png -------------------------------------------------------------------------------- /public/images/page/logos/TU_Berlin_Logo_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/logos/TU_Berlin_Logo_s.png -------------------------------------------------------------------------------- /public/images/page/ms_bg blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/ms_bg blue.jpg -------------------------------------------------------------------------------- /public/images/page/next_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/next_button.png -------------------------------------------------------------------------------- /public/images/page/prev_next_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/prev_next_buttons.png -------------------------------------------------------------------------------- /public/images/page/publish_button_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/publish_button_200.png -------------------------------------------------------------------------------- /public/images/page/red_button_big_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/red_button_big_150.png -------------------------------------------------------------------------------- /public/images/page/red_button_big_300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/red_button_big_300.png -------------------------------------------------------------------------------- /public/images/page/remote_providers_p1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/remote_providers_p1.png -------------------------------------------------------------------------------- /public/images/page/searchbar_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/searchbar_button.png -------------------------------------------------------------------------------- /public/images/page/searchbar_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/searchbar_left.png -------------------------------------------------------------------------------- /public/images/page/separator_no_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/separator_no_shadow.png -------------------------------------------------------------------------------- /public/images/page/separator_with_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/separator_with_shadow.png -------------------------------------------------------------------------------- /public/images/page/social_echo_icons_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/social_echo_icons_big.png -------------------------------------------------------------------------------- /public/images/page/social_login_openid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/social_login_openid.png -------------------------------------------------------------------------------- /public/images/page/staticMenu/echo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/staticMenu/echo.png -------------------------------------------------------------------------------- /public/images/page/staticMenu/echocracy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/staticMenu/echocracy.png -------------------------------------------------------------------------------- /public/images/page/staticMenu/echologic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/staticMenu/echologic.png -------------------------------------------------------------------------------- /public/images/page/staticMenu/echonomy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/staticMenu/echonomy.png -------------------------------------------------------------------------------- /public/images/page/staticMenu/join.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/staticMenu/join.png -------------------------------------------------------------------------------- /public/images/page/staticMenu/main_menu_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/staticMenu/main_menu_button.png -------------------------------------------------------------------------------- /public/images/page/tabbar_header_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/tabbar_header_left.png -------------------------------------------------------------------------------- /public/images/page/tabbar_header_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/tabbar_header_right.png -------------------------------------------------------------------------------- /public/images/page/tabbar_tab_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/tabbar_tab_left.png -------------------------------------------------------------------------------- /public/images/page/tabbar_tab_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/tabbar_tab_right.png -------------------------------------------------------------------------------- /public/images/page/tabs/mainmenu_left_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/tabs/mainmenu_left_off.png -------------------------------------------------------------------------------- /public/images/page/tabs/mainmenu_left_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/tabs/mainmenu_left_on.png -------------------------------------------------------------------------------- /public/images/page/tabs/mainmenu_right_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/tabs/mainmenu_right_off.png -------------------------------------------------------------------------------- /public/images/page/tabs/mainmenu_right_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/tabs/mainmenu_right_on.png -------------------------------------------------------------------------------- /public/images/page/teasers/echologic_teaser_1_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/teasers/echologic_teaser_1_de.png -------------------------------------------------------------------------------- /public/images/page/teasers/echologic_teaser_1_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/teasers/echologic_teaser_1_en.png -------------------------------------------------------------------------------- /public/images/page/teasers/echologic_teaser_2_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/teasers/echologic_teaser_2_de.png -------------------------------------------------------------------------------- /public/images/page/teasers/echologic_teaser_2_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/teasers/echologic_teaser_2_en.png -------------------------------------------------------------------------------- /public/images/page/teasers/echologic_teaser_3_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/teasers/echologic_teaser_3_de.png -------------------------------------------------------------------------------- /public/images/page/teasers/echologic_teaser_3_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/teasers/echologic_teaser_3_en.png -------------------------------------------------------------------------------- /public/images/page/teasers/echologic_teaser_4_de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/teasers/echologic_teaser_4_de.png -------------------------------------------------------------------------------- /public/images/page/teasers/echologic_teaser_4_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/teasers/echologic_teaser_4_en.png -------------------------------------------------------------------------------- /public/images/page/translation/babelfish_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/translation/babelfish_left.png -------------------------------------------------------------------------------- /public/images/page/translation/babelfish_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/translation/babelfish_right.png -------------------------------------------------------------------------------- /public/images/page/translation/translation_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/page/translation/translation_arrow.png -------------------------------------------------------------------------------- /public/images/rails.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/rails.png -------------------------------------------------------------------------------- /public/images/rte_colorpicker_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/rte_colorpicker_gray.jpg -------------------------------------------------------------------------------- /public/images/rte_colorpicker_rgb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/rte_colorpicker_rgb.jpg -------------------------------------------------------------------------------- /public/images/rte_icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/rte_icons.gif -------------------------------------------------------------------------------- /public/images/widgets/tooltip_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/widgets/tooltip_arrow.gif -------------------------------------------------------------------------------- /public/images/widgets/tooltip_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/widgets/tooltip_image.gif -------------------------------------------------------------------------------- /public/images/wmd/blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/blockquote.png -------------------------------------------------------------------------------- /public/images/wmd/bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/bold.png -------------------------------------------------------------------------------- /public/images/wmd/code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/code.png -------------------------------------------------------------------------------- /public/images/wmd/h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/h1.png -------------------------------------------------------------------------------- /public/images/wmd/hr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/hr.png -------------------------------------------------------------------------------- /public/images/wmd/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/img.png -------------------------------------------------------------------------------- /public/images/wmd/italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/italic.png -------------------------------------------------------------------------------- /public/images/wmd/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/link.png -------------------------------------------------------------------------------- /public/images/wmd/no-bg-fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/no-bg-fill.png -------------------------------------------------------------------------------- /public/images/wmd/no-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/no-bg.png -------------------------------------------------------------------------------- /public/images/wmd/ol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/ol.png -------------------------------------------------------------------------------- /public/images/wmd/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/redo.png -------------------------------------------------------------------------------- /public/images/wmd/separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/separator.png -------------------------------------------------------------------------------- /public/images/wmd/ul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/ul.png -------------------------------------------------------------------------------- /public/images/wmd/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/undo.png -------------------------------------------------------------------------------- /public/images/wmd/wmd-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/wmd-buttons.png -------------------------------------------------------------------------------- /public/images/wmd/wmd-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/wmd-on.png -------------------------------------------------------------------------------- /public/images/wmd/wmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/images/wmd/wmd.png -------------------------------------------------------------------------------- /public/javascripts/active_scaffold/DO_NOT_EDIT: -------------------------------------------------------------------------------- 1 | Any changes made to files in sub-folders will be lost. 2 | See http://activescaffold.com/tutorials/faq#custom-css. 3 | -------------------------------------------------------------------------------- /public/javascripts/fckeditor/_samples/_plugins/findreplace/find.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/_samples/_plugins/findreplace/find.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/_samples/_plugins/findreplace/replace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/_samples/_plugins/findreplace/replace.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/_samples/adobeair/icons/128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/_samples/adobeair/icons/128.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/_samples/adobeair/icons/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/_samples/adobeair/icons/16.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/_samples/adobeair/icons/32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/_samples/adobeair/icons/32.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/_samples/adobeair/icons/48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/_samples/adobeair/icons/48.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/_samples/adobeair/sample01_cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/_samples/adobeair/sample01_cert.pfx -------------------------------------------------------------------------------- /public/javascripts/fckeditor/_samples/afp/fck.afpa: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/javascripts/fckeditor/_samples/html/assets/sample16.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/_samples/html/assets/sample16.fla -------------------------------------------------------------------------------- /public/javascripts/fckeditor/_samples/html/assets/sample16.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/_samples/html/assets/sample16.swf -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/block_address.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/block_blockquote.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/block_div.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/block_h1.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/block_h2.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/block_h3.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/block_h4.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/block_h5.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/block_h6.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/block_p.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/block_pre.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/fck_anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/fck_anchor.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/fck_flashlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/fck_flashlogo.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/fck_hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/fck_hiddenfield.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/fck_pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/fck_pagebreak.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/css/images/fck_plugin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/css/images/fck_plugin.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/dialog/common/images/locked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/dialog/common/images/locked.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/dialog/common/images/reset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/dialog/common/images/reset.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/dialog/common/images/unlocked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/dialog/common/images/unlocked.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/dialog/fck_about/logo_fredck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/dialog/fck_about/logo_fredck.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/dialog/fck_about/sponsors/spellchecker_net.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/dialog/fck_template/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/dialog/fck_template/images/template1.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/dialog/fck_template/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/dialog/fck_template/images/template2.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/dialog/fck_template/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/dialog/fck_template/images/template3.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/filemanager/browser/default/images/Folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/filemanager/browser/default/images/Folder.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/filemanager/browser/default/images/Folder32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/filemanager/browser/default/images/Folder32.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/js.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/filemanager/browser/default/images/icons/js.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/filemanager/browser/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/filemanager/browser/default/images/spacer.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/anchor.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/arrow_ltr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/arrow_ltr.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/arrow_rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/arrow_rtl.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/angel_smile.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/angry_smile.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/broken_heart.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/cake.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/cake.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/confused_smile.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/cry_smile.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/devil_smile.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/embaressed_smile.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/envelope.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/heart.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/kiss.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/lightbulb.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/omg_smile.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/regular_smile.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/sad_smile.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/shades_smile.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/teeth_smile.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/thumbs_down.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/thumbs_up.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/tounge_smile.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/smiley/msn/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/smiley/msn/wink_smile.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/images/spacer.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/plugins/easyUpload/docs/installation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/plugins/easyUpload/docs/installation.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/plugins/easyUpload/docs/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/plugins/easyUpload/docs/marker.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/plugins/easyUpload/docs/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/plugins/easyUpload/docs/preview.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/plugins/easyUpload/fck_file.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/plugins/easyUpload/fck_file.html -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/plugins/easyUpload/fck_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/plugins/easyUpload/fck_link.html -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/plugins/easyUpload/fckblank.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/plugins/easyUpload/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/plugins/easyUpload/file.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/plugins/placeholder/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/plugins/placeholder/placeholder.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/default/fck_strip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/default/fck_strip.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/default/images/dialog.sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/default/images/dialog.sides.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/default/images/dialog.sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/default/images/dialog.sides.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/default/images/dialog.sides.rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/default/images/dialog.sides.rtl.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/default/images/sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/default/images/sprites.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/default/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/default/images/sprites.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/default/images/toolbar.arrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/default/images/toolbar.arrowright.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/default/images/toolbar.collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/default/images/toolbar.collapse.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/default/images/toolbar.end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/default/images/toolbar.end.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/default/images/toolbar.expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/default/images/toolbar.expand.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/default/images/toolbar.separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/default/images/toolbar.separator.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/default/images/toolbar.start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/default/images/toolbar.start.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/office2003/fck_strip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/office2003/fck_strip.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/office2003/images/dialog.sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/office2003/images/dialog.sides.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/office2003/images/dialog.sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/office2003/images/dialog.sides.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/office2003/images/dialog.sides.rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/office2003/images/dialog.sides.rtl.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/office2003/images/sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/office2003/images/sprites.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/office2003/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/office2003/images/sprites.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.arrowright.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.bg.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.buttonarrow.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.collapse.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.end.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.expand.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.separator.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/office2003/images/toolbar.start.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/silver/fck_strip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/silver/fck_strip.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/silver/images/dialog.sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/silver/images/dialog.sides.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/silver/images/dialog.sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/silver/images/dialog.sides.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/silver/images/dialog.sides.rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/silver/images/dialog.sides.rtl.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/silver/images/sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/silver/images/sprites.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/silver/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/silver/images/sprites.png -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/silver/images/toolbar.collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.collapse.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/silver/images/toolbar.end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.end.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/silver/images/toolbar.expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.expand.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/silver/images/toolbar.separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.separator.gif -------------------------------------------------------------------------------- /public/javascripts/fckeditor/editor/skins/silver/images/toolbar.start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/fckeditor/editor/skins/silver/images/toolbar.start.gif -------------------------------------------------------------------------------- /public/javascripts/jquery.rte1_2min/images/rte_colorpicker_gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/jquery.rte1_2min/images/rte_colorpicker_gray.jpg -------------------------------------------------------------------------------- /public/javascripts/jquery.rte1_2min/images/rte_colorpicker_rgb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/jquery.rte1_2min/images/rte_colorpicker_rgb.jpg -------------------------------------------------------------------------------- /public/javascripts/jquery.rte1_2min/images/rte_icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/jquery.rte1_2min/images/rte_icons.gif -------------------------------------------------------------------------------- /public/javascripts/temp/autocompleter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/javascripts/temp/autocompleter.js -------------------------------------------------------------------------------- /public/javascripts/temp/inplace_editor.js: -------------------------------------------------------------------------------- 1 | InplaceEditor = Behavior.create({ 2 | initialize: function() { 3 | 4 | }, 5 | onkeypress: function() { 6 | 7 | }, 8 | onclick: function() { 9 | 10 | } 11 | }); -------------------------------------------------------------------------------- /public/resources/Datenschutz_echo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/resources/Datenschutz_echo.pdf -------------------------------------------------------------------------------- /public/resources/Satzung_echosource_eV.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/public/resources/Satzung_echosource_eV.pdf -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # See http://www.robotstxt.org/wc/norobots.html for documentation on how to use the robots.txt file 2 | # 3 | # To ban all spiders from the entire site uncomment the next two lines: 4 | 5 | User-Agent: * 6 | Disallow: /images/ 7 | -------------------------------------------------------------------------------- /public/stylesheets/active_scaffold/DO_NOT_EDIT: -------------------------------------------------------------------------------- 1 | Any changes made to files in sub-folders will be lost. 2 | See http://activescaffold.com/tutorials/faq#custom-css. 3 | -------------------------------------------------------------------------------- /public/stylesheets/i18n.css: -------------------------------------------------------------------------------- 1 | /* 2 | Document : application.css 3 | Created on : 15.09.2009, 08:34:36 4 | Author : joe 5 | Description: 6 | General layouting for the logged in section. 7 | */ 8 | -------------------------------------------------------------------------------- /script/about: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.dirname(__FILE__) + '/../config/boot' 3 | $LOAD_PATH.unshift "#{RAILTIES_PATH}/builtin/rails_info" 4 | require 'commands/about' -------------------------------------------------------------------------------- /script/console: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.dirname(__FILE__) + '/../config/boot' 3 | require 'commands/console' 4 | -------------------------------------------------------------------------------- /script/dbconsole: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.dirname(__FILE__) + '/../config/boot' 3 | require 'commands/dbconsole' 4 | -------------------------------------------------------------------------------- /script/delayed_job: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | require File.expand_path(File.join(File.dirname(__FILE__), '..', 'config', 'environment')) 4 | require 'delayed/command' 5 | Delayed::Command.new(ARGV).daemonize 6 | -------------------------------------------------------------------------------- /script/destroy: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.dirname(__FILE__) + '/../config/boot' 3 | require 'commands/destroy' 4 | -------------------------------------------------------------------------------- /script/generate: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.dirname(__FILE__) + '/../config/boot' 3 | require 'commands/generate' 4 | -------------------------------------------------------------------------------- /script/performance/benchmarker: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.dirname(__FILE__) + '/../../config/boot' 3 | require 'commands/performance/benchmarker' 4 | -------------------------------------------------------------------------------- /script/performance/profiler: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.dirname(__FILE__) + '/../../config/boot' 3 | require 'commands/performance/profiler' 4 | -------------------------------------------------------------------------------- /script/plugin: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.dirname(__FILE__) + '/../config/boot' 3 | require 'commands/plugin' 4 | -------------------------------------------------------------------------------- /script/runner: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.dirname(__FILE__) + '/../config/boot' 3 | require 'commands/runner' 4 | -------------------------------------------------------------------------------- /script/server: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | require File.dirname(__FILE__) + '/../config/boot' 3 | require 'commands/server' 4 | -------------------------------------------------------------------------------- /spec/rcov.opts: -------------------------------------------------------------------------------- 1 | --exclude "spec/*,gems/*" 2 | --rails -------------------------------------------------------------------------------- /spec/spec.opts: -------------------------------------------------------------------------------- 1 | --colour 2 | --format progress 3 | --loadby mtime 4 | --reverse 5 | -------------------------------------------------------------------------------- /test/fixtures/locales.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html 2 | 3 | en: 4 | name: en 5 | code: en 6 | 7 | de: 8 | name: de 9 | code: de 10 | -------------------------------------------------------------------------------- /test/fixtures/memberships.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html 2 | 3 | joe_greenpeace: 4 | user_id: <%= Fixtures.identify(:joe) %> 5 | organisation: Greenpeace 6 | position: Member 7 | -------------------------------------------------------------------------------- /test/fixtures/pending_actions.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html 2 | 3 | # one: 4 | # column: value 5 | # 6 | # two: 7 | # column: value 8 | -------------------------------------------------------------------------------- /test/fixtures/shortcut_urls.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html 2 | 3 | # one: 4 | # column: value 5 | # 6 | # two: 7 | # column: value 8 | -------------------------------------------------------------------------------- /test/fixtures/statement_datas.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html 2 | 3 | # one: 4 | # column: value 5 | # 6 | # two: 7 | # column: value 8 | -------------------------------------------------------------------------------- /test/fixtures/statement_images.yml: -------------------------------------------------------------------------------- 1 | statement-image: 2 | image_file_name: -------------------------------------------------------------------------------- /test/functional/about_items_controller_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class AboutItemsControllerTest < ActionController::TestCase 4 | # Replace this with your real tests. 5 | test "the truth" do 6 | assert true 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /test/functional/admin_controller_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class AdminControllerTest < ActionController::TestCase 4 | 5 | end 6 | -------------------------------------------------------------------------------- /test/functional/api_controller_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ApiControllerTest < ActionController::TestCase 4 | # Replace this with your real tests. 5 | test "the truth" do 6 | assert true 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /test/functional/echosocial_controller_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class EchosocialControllerTest < ActionController::TestCase 4 | # Replace this with your real tests. 5 | test "the truth" do 6 | assert true 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /test/old/interessted_people.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html 2 | 3 | one: 4 | email: MyString 5 | name: MyString 6 | 7 | two: 8 | email: MyString 9 | name: MyString 10 | -------------------------------------------------------------------------------- /test/old/interested_people.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html 2 | 3 | one: 4 | name: MyString 5 | email: MyString 6 | 7 | two: 8 | name: MyString 9 | email: MyString 10 | -------------------------------------------------------------------------------- /test/old/old_units/helpers/act_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ActHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/old/old_units/helpers/admin_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class AdminHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/old/old_units/helpers/concernments_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ConcernmentsHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/old/old_units/helpers/connect_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ConnectHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/old/old_units/helpers/discuss_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class DiscussHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/old/old_units/helpers/feedback_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class FeedbackHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/old/old_units/helpers/interessted_people_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class InteresstedPeopleHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/old/old_units/helpers/interested_people_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class InterestedPeopleHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/old/old_units/helpers/invited_people_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class InvitedPeopleHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/old/old_units/helpers/memberships_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class MembershipsHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/old/old_units/helpers/static_content_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class StaticContentHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/old/old_units/helpers/tags_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class TagsHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/old/old_units/helpers/web_profiles_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class WebProfilesHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/old/tags.yml: -------------------------------------------------------------------------------- 1 | # Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html 2 | 3 | one: 4 | value: MyString 5 | 6 | two: 7 | value: MyString 8 | -------------------------------------------------------------------------------- /test/unit/drafting_info_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class DraftingInfoTest < ActiveSupport::TestCase 4 | # Replace this with your real tests. 5 | test "the truth" do 6 | assert true 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /test/unit/event_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class EventTest < ActiveSupport::TestCase 4 | # Replace this with your real tests. 5 | test "the truth" do 6 | assert true 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /test/unit/helpers/about_items_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class AboutItemsHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/unit/helpers/api_controller_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ApiControllerHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/unit/helpers/echosocial_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class EchosocialHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/unit/helpers/my_echo_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class MyEchoHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/unit/helpers/newsletter_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class NewsletterHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/unit/helpers/profiles_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ProfilesHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/unit/helpers/reports_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ReportsHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/unit/helpers/spoken_languages_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class SpokenLanguagesHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/unit/helpers/statement_images_helper_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class StatementImagesHelperTest < ActionView::TestCase 4 | end 5 | -------------------------------------------------------------------------------- /test/unit/pending_action_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class PendingActionTest < ActiveSupport::TestCase 4 | # Replace this with your real tests. 5 | test "the truth" do 6 | assert true 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /test/unit/registration_mailer_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class RegistrationMailerTest < ActionMailer::TestCase 4 | 5 | end -------------------------------------------------------------------------------- /test/unit/report_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class ReportTest < ActiveSupport::TestCase 4 | # Replace this with your real tests. 5 | test "the truth" do 6 | assert true 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /test/unit/subscriber_data_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class SubscriberDataTest < ActiveSupport::TestCase 4 | # Replace this with your real tests. 5 | test "the truth" do 6 | assert true 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /test/unit/subscription_test.rb: -------------------------------------------------------------------------------- 1 | require 'test_helper' 2 | 3 | class SubscriptionTest < ActiveSupport::TestCase 4 | # Replace this with your real tests. 5 | test "the truth" do 6 | assert true 7 | end 8 | end 9 | -------------------------------------------------------------------------------- /tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/active_scaffold/frontends/default/images/add.gif -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/images/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/active_scaffold/frontends/default/images/arrow_down.gif -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/images/arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/active_scaffold/frontends/default/images/arrow_up.gif -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/active_scaffold/frontends/default/images/close.gif -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/active_scaffold/frontends/default/images/cross.png -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/images/indicator-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/active_scaffold/frontends/default/images/indicator-small.gif -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/images/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/active_scaffold/frontends/default/images/indicator.gif -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/images/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/active_scaffold/frontends/default/images/magnifier.png -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/views/_form_hidden_attribute.html.erb: -------------------------------------------------------------------------------- 1 | <%= hidden_field :record, column.name, active_scaffold_input_options(column, scope) %> 2 | -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/views/create.html.erb: -------------------------------------------------------------------------------- 1 |
2 |
view"> 3 | <%= render :partial => 'create_form' -%> 4 |
5 |
-------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/views/field_search.html.erb: -------------------------------------------------------------------------------- 1 |
2 |
3 | <%= render :partial => 'field_search' -%> 4 |
5 |
-------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/views/form_messages.js.rjs: -------------------------------------------------------------------------------- 1 | page.replace_html element_messages_id, :partial => 'form_messages' -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/views/list.js.rjs: -------------------------------------------------------------------------------- 1 | page[active_scaffold_content_id].replace_html render(:partial => 'list', :layout => false) 2 | -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/views/render_field.js.rjs: -------------------------------------------------------------------------------- 1 | page << render(:partial => 'render_fields.js', :object => @update_columns) 2 | -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/views/search.html.erb: -------------------------------------------------------------------------------- 1 |
2 |
view"> 3 | <%= render :partial => 'search' -%> 4 |
5 |
-------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/views/show.html.erb: -------------------------------------------------------------------------------- 1 |
2 |
view"> 3 | <%= render :partial => 'show' -%> 4 |
5 |
-------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/frontends/default/views/update_row.js.rjs: -------------------------------------------------------------------------------- 1 | page.call 'ActiveScaffold.update_row', element_row_id(:action => 'list', :id => @record.id), render(:partial => 'list_record', :locals => {:record => @record}) 2 | -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/lib/bridges/tiny_mce/bridge.rb: -------------------------------------------------------------------------------- 1 | ActiveScaffold.bridge "TinyMCE" do 2 | install do 3 | require File.join(File.dirname(__FILE__), "lib/tiny_mce_bridge.rb") 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/test/mock_app/.gitignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | log/ -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/test/mock_app/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | # Methods added to this helper will be available to all templates in the application. 2 | module ApplicationHelper 3 | end 4 | -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/test/mock_app/db/test.sqlite3: -------------------------------------------------------------------------------- 1 | S -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/test/mock_app/public/images/active_scaffold/DO_NOT_EDIT: -------------------------------------------------------------------------------- 1 | Any changes made to files in sub-folders will be lost. 2 | See http://activescaffold.com/tutorials/faq#custom-css. 3 | -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/test/mock_app/public/javascripts/active_scaffold/DO_NOT_EDIT: -------------------------------------------------------------------------------- 1 | Any changes made to files in sub-folders will be lost. 2 | See http://activescaffold.com/tutorials/faq#custom-css. 3 | -------------------------------------------------------------------------------- /vendor/plugins/active_scaffold/test/mock_app/public/stylesheets/active_scaffold/DO_NOT_EDIT: -------------------------------------------------------------------------------- 1 | Any changes made to files in sub-folders will be lost. 2 | See http://activescaffold.com/tutorials/faq#custom-css. 3 | -------------------------------------------------------------------------------- /vendor/plugins/acts_as_extaggable/install.rb: -------------------------------------------------------------------------------- 1 | # Install hook code here 2 | -------------------------------------------------------------------------------- /vendor/plugins/acts_as_extaggable/tasks/acts_as_taggable_echo_tasks.rake: -------------------------------------------------------------------------------- 1 | # desc "Explaining what the task does" 2 | # task :acts_as_taggable_echo do 3 | # # Task goes here 4 | # end 5 | -------------------------------------------------------------------------------- /vendor/plugins/acts_as_extaggable/test/test_helper.rb: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'active_support' 3 | require 'active_support/test_case' -------------------------------------------------------------------------------- /vendor/plugins/acts_as_extaggable/uninstall.rb: -------------------------------------------------------------------------------- 1 | # Uninstall hook code here 2 | -------------------------------------------------------------------------------- /vendor/plugins/acts_as_state_machine/init.rb: -------------------------------------------------------------------------------- 1 | require 'acts_as_state_machine' 2 | 3 | ActiveRecord::Base.class_eval do 4 | include ScottBarron::Acts::StateMachine 5 | end 6 | -------------------------------------------------------------------------------- /vendor/plugins/acts_as_state_machine/test/fixtures/person.rb: -------------------------------------------------------------------------------- 1 | class Person < ActiveRecord::Base 2 | end -------------------------------------------------------------------------------- /vendor/plugins/acts_as_tree/init.rb: -------------------------------------------------------------------------------- 1 | ActiveRecord::Base.send :include, ActiveRecord::Acts::Tree 2 | -------------------------------------------------------------------------------- /vendor/plugins/acts_as_tree/test/abstract_unit.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/acts_as_tree/test/abstract_unit.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_tree/test/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/acts_as_tree/test/database.yml -------------------------------------------------------------------------------- /vendor/plugins/acts_as_tree/test/fixtures/mixin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/acts_as_tree/test/fixtures/mixin.rb -------------------------------------------------------------------------------- /vendor/plugins/acts_as_tree/test/fixtures/mixins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/acts_as_tree/test/fixtures/mixins.yml -------------------------------------------------------------------------------- /vendor/plugins/acts_as_tree/test/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/acts_as_tree/test/schema.rb -------------------------------------------------------------------------------- /vendor/plugins/auto_complete_jquery/images/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/auto_complete_jquery/images/indicator.gif -------------------------------------------------------------------------------- /vendor/plugins/auto_complete_jquery/init.rb: -------------------------------------------------------------------------------- 1 | ActionController::Base.send :include, AutoCompleteJquery 2 | -------------------------------------------------------------------------------- /vendor/plugins/awesome_nested_set/.gitignore: -------------------------------------------------------------------------------- 1 | awesome_nested_set.sqlite3.db 2 | test/debug.log 3 | rdoc 4 | coverage 5 | pkg 6 | -------------------------------------------------------------------------------- /vendor/plugins/awesome_nested_set/VERSION: -------------------------------------------------------------------------------- 1 | 1.4.3 2 | -------------------------------------------------------------------------------- /vendor/plugins/awesome_nested_set/init.rb: -------------------------------------------------------------------------------- 1 | require File.dirname(__FILE__) + "/rails/init" 2 | -------------------------------------------------------------------------------- /vendor/plugins/awesome_nested_set/test/application.rb: -------------------------------------------------------------------------------- 1 | # This file is here to satisfy test_help from Rails < 2.3 -------------------------------------------------------------------------------- /vendor/plugins/awesome_nested_set/test/fixtures/departments.yml: -------------------------------------------------------------------------------- 1 | top: 2 | id: 1 3 | name: Top -------------------------------------------------------------------------------- /vendor/plugins/fck-editor/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | #*# -------------------------------------------------------------------------------- /vendor/plugins/fck-editor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/fck-editor/LICENSE -------------------------------------------------------------------------------- /vendor/plugins/fck-editor/app/helpers/fckeditor_helper.rb: -------------------------------------------------------------------------------- 1 | module FckeditorHelper 2 | end -------------------------------------------------------------------------------- /vendor/plugins/fck-editor/lib/fckeditor_version.rb: -------------------------------------------------------------------------------- 1 | module FckeditorVersion 2 | MAJOR = 0 3 | MINOR = 8 4 | RELEASE = 1 5 | 6 | def self.current 7 | "#{MAJOR}.#{MINOR}.#{RELEASE}" 8 | end 9 | end 10 | -------------------------------------------------------------------------------- /vendor/plugins/fck-editor/public/javascripts/fckeditor/_samples/afp/fck.afpa: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /vendor/plugins/fck-editor/public/javascripts/fckeditor/editor/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/fck-editor/public/javascripts/fckeditor/editor/images/anchor.gif -------------------------------------------------------------------------------- /vendor/plugins/fck-editor/public/javascripts/fckeditor/editor/images/arrow_ltr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/fck-editor/public/javascripts/fckeditor/editor/images/arrow_ltr.gif -------------------------------------------------------------------------------- /vendor/plugins/fck-editor/public/javascripts/fckeditor/editor/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/fck-editor/public/javascripts/fckeditor/editor/images/spacer.gif -------------------------------------------------------------------------------- /vendor/plugins/fck-editor/public/javascripts/fckeditor/editor/plugins/easyUpload/fckblank.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /vendor/plugins/http_accept_language/tasks/http_accept_language_tasks.rake: -------------------------------------------------------------------------------- 1 | # desc "Explaining what the task does" 2 | # task :http_accept_language do 3 | # # Task goes here 4 | # end 5 | -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/data/locales.yml: -------------------------------------------------------------------------------- 1 | en: 2 | name: English 3 | es: 4 | name: Spanish 5 | -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/init.rb: -------------------------------------------------------------------------------- 1 | require 'i18n_backend_database' -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/lib/controllers/application_controller.rb: -------------------------------------------------------------------------------- 1 | class ApplicationController < ActionController::Base 2 | def current_user_session 3 | UserSession.find 4 | end 5 | end 6 | -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/lib/public/images/custom1_bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/lib/public/images/custom1_bar.gif -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/lib/public/images/custom1_box.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/lib/public/images/custom1_box.gif -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/lib/public/images/percentImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/lib/public/images/percentImage.png -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/lib/public/images/percentImage_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/lib/public/images/percentImage_back.png -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/lib/public/images/percentImage_back1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/lib/public/images/percentImage_back1.png -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/lib/public/images/percentImage_back2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/lib/public/images/percentImage_back2.png -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/lib/public/images/percentImage_back3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/lib/public/images/percentImage_back3.png -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/lib/public/images/percentImage_back4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/lib/public/images/percentImage_back4.png -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/lib_temp/public/images/custom1_bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/lib_temp/public/images/custom1_bar.gif -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/lib_temp/public/images/custom1_box.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/lib_temp/public/images/custom1_box.gif -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/lib_temp/public/images/percentImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/lib_temp/public/images/percentImage.png -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/spec/assets/public/es/favicons/favicon1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/spec/assets/public/es/favicons/favicon1.gif -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/spec/assets/public/es/images/image1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/spec/assets/public/es/images/image1.gif -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/spec/assets/public/favicons/favicon1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/spec/assets/public/favicons/favicon1.gif -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/spec/assets/public/favicons/favicon2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/spec/assets/public/favicons/favicon2.gif -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/spec/assets/public/images/icons/icon1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/spec/assets/public/images/icons/icon1.gif -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/spec/assets/public/images/icons/icon2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/spec/assets/public/images/icons/icon2.gif -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/spec/assets/public/images/image1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/spec/assets/public/images/image1.gif -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/spec/assets/public/images/image2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/i18n_backend_database/spec/assets/public/images/image2.gif -------------------------------------------------------------------------------- /vendor/plugins/i18n_backend_database/spec/assets/views/test_view1.html.erb: -------------------------------------------------------------------------------- 1 |
<%= link_to (translated_image_tag(I18n.ta("promo/sfc08_140x400_3.gif")), "http://streak.espn.go.com/") %>
-------------------------------------------------------------------------------- /vendor/plugins/iso-3166-country-select/init.rb: -------------------------------------------------------------------------------- 1 | require 'country_select' -------------------------------------------------------------------------------- /vendor/plugins/iso-3166-country-select/install.rb: -------------------------------------------------------------------------------- 1 | # Install hook code here 2 | puts "The list of countries provided by this plugin may offend some users. Please review it carefully before you use it" -------------------------------------------------------------------------------- /vendor/plugins/iso-3166-country-select/uninstall.rb: -------------------------------------------------------------------------------- 1 | # Uninstall hook code here 2 | -------------------------------------------------------------------------------- /vendor/plugins/jrails/VERSION.yml: -------------------------------------------------------------------------------- 1 | --- 2 | :patch: 1 3 | :major: 0 4 | :minor: 5 -------------------------------------------------------------------------------- /vendor/plugins/jrails/init.rb: -------------------------------------------------------------------------------- 1 | require 'rails/init.rb' 2 | -------------------------------------------------------------------------------- /vendor/plugins/memory_test_fix/init.rb: -------------------------------------------------------------------------------- 1 | 2 | require 'memory_test_fix' 3 | -------------------------------------------------------------------------------- /vendor/plugins/paperclip/generators/paperclip/USAGE: -------------------------------------------------------------------------------- 1 | Usage: 2 | 3 | script/generate paperclip Class attachment1 (attachment2 ...) 4 | 5 | This will create a migration that will add the proper columns to your class's table. -------------------------------------------------------------------------------- /vendor/plugins/paperclip/init.rb: -------------------------------------------------------------------------------- 1 | require File.join(File.dirname(__FILE__), "lib", "paperclip") 2 | -------------------------------------------------------------------------------- /vendor/plugins/paperclip/test/database.yml: -------------------------------------------------------------------------------- 1 | test: 2 | adapter: sqlite3 3 | database: ":memory:" 4 | 5 | -------------------------------------------------------------------------------- /vendor/plugins/paperclip/test/fixtures/12k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/paperclip/test/fixtures/12k.png -------------------------------------------------------------------------------- /vendor/plugins/paperclip/test/fixtures/50x50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/paperclip/test/fixtures/50x50.png -------------------------------------------------------------------------------- /vendor/plugins/paperclip/test/fixtures/5k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/paperclip/test/fixtures/5k.png -------------------------------------------------------------------------------- /vendor/plugins/paperclip/test/fixtures/bad.png: -------------------------------------------------------------------------------- 1 | This is not an image. 2 | -------------------------------------------------------------------------------- /vendor/plugins/paperclip/test/fixtures/s3.yml: -------------------------------------------------------------------------------- 1 | development: 2 | key: 54321 3 | production: 4 | key: 12345 5 | -------------------------------------------------------------------------------- /vendor/plugins/paperclip/test/fixtures/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/paperclip/test/fixtures/text.txt -------------------------------------------------------------------------------- /vendor/plugins/paperclip/test/fixtures/twopage.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/paperclip/test/fixtures/twopage.pdf -------------------------------------------------------------------------------- /vendor/plugins/rails-widgets/CHANGELOG: -------------------------------------------------------------------------------- 1 | nov 01, 2007 2 | ADD: Added disableable support to Tabnav, thanks to Nick Plante 3 | ADD: Added partial rendering for Tooltips 4 | ADD: started tracking changes in this CHANGELOG -------------------------------------------------------------------------------- /vendor/plugins/rails-widgets/images/tooltip_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/rails-widgets/images/tooltip_arrow.gif -------------------------------------------------------------------------------- /vendor/plugins/rails-widgets/images/tooltip_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vendor/plugins/rails-widgets/images/tooltip_image.gif -------------------------------------------------------------------------------- /vendor/plugins/rails-widgets/init.rb: -------------------------------------------------------------------------------- 1 | # Include hook code here 2 | require 'widgets' -------------------------------------------------------------------------------- /vendor/plugins/rails-widgets/lib/widgets/showhide.css.erb: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /vendor/plugins/rails-widgets/uninstall.rb: -------------------------------------------------------------------------------- 1 | # Uninstall hook code here 2 | -------------------------------------------------------------------------------- /vendor/plugins/routing-filter/VERSION: -------------------------------------------------------------------------------- 1 | 0.0.2 2 | -------------------------------------------------------------------------------- /vendor/plugins/routing-filter/init.rb: -------------------------------------------------------------------------------- 1 | require 'routing_filter' -------------------------------------------------------------------------------- /vendor/plugins/routing-filter/spec/spec.opts: -------------------------------------------------------------------------------- 1 | --colour 2 | --format progress 3 | --loadby mtime 4 | --reverse 5 | -------------------------------------------------------------------------------- /vendor/plugins/translate_columns/init.rb: -------------------------------------------------------------------------------- 1 | # Include hook code here 2 | 3 | require 'translate_columns' 4 | 5 | ActiveRecord::Base.class_eval do 6 | include TranslateColumns 7 | end 8 | -------------------------------------------------------------------------------- /vendor/plugins/translate_columns/install.rb: -------------------------------------------------------------------------------- 1 | # Install hook code here 2 | -------------------------------------------------------------------------------- /vendor/plugins/translate_columns/tasks/translate_columns_tasks.rake: -------------------------------------------------------------------------------- 1 | # desc "Explaining what the task does" 2 | # task :translate_columns do 3 | # # Task goes here 4 | # end -------------------------------------------------------------------------------- /vendor/plugins/translate_columns/test/database.yml: -------------------------------------------------------------------------------- 1 | sqlite3: 2 | database: ":memory:" 3 | adapter: sqlite3 4 | timeout: 500 5 | -------------------------------------------------------------------------------- /vendor/plugins/translate_columns/test/fixtures/document_translation.rb: -------------------------------------------------------------------------------- 1 | class DocumentTranslation < ActiveRecord::Base 2 | 3 | end 4 | -------------------------------------------------------------------------------- /vpproject/echologic.vpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/echosystem/echo/c6e9b2661db116ad186aeb285556d35df81bc76c/vpproject/echologic.vpp --------------------------------------------------------------------------------