tr8n 3.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/.project +18 -0
- data/Gemfile +34 -0
- data/Gemfile.lock +79 -0
- data/LICENSE +18 -0
- data/README.rdoc +116 -0
- data/Rakefile +29 -0
- data/VERSION +1 -0
- data/app/controllers/application_controller.rb +28 -0
- data/app/controllers/tr8n/admin/base_controller.rb +65 -0
- data/app/controllers/tr8n/admin/clientsdk_controller.rb +34 -0
- data/app/controllers/tr8n/admin/domain_controller.rb +77 -0
- data/app/controllers/tr8n/admin/forum_controller.rb +58 -0
- data/app/controllers/tr8n/admin/glossary_controller.rb +56 -0
- data/app/controllers/tr8n/admin/language_controller.rb +129 -0
- data/app/controllers/tr8n/admin/translation_controller.rb +64 -0
- data/app/controllers/tr8n/admin/translation_key_controller.rb +157 -0
- data/app/controllers/tr8n/admin/translator_controller.rb +119 -0
- data/app/controllers/tr8n/api/v1/base_controller.rb +81 -0
- data/app/controllers/tr8n/api/v1/language_controller.rb +107 -0
- data/app/controllers/tr8n/api/v1/translation_controller.rb +75 -0
- data/app/controllers/tr8n/api/v1/translator_controller.rb +34 -0
- data/app/controllers/tr8n/awards_controller.rb +43 -0
- data/app/controllers/tr8n/base_controller.rb +206 -0
- data/app/controllers/tr8n/dashboard_controller.rb +32 -0
- data/app/controllers/tr8n/forum_controller.rb +100 -0
- data/app/controllers/tr8n/glossary_controller.rb +40 -0
- data/app/controllers/tr8n/help_controller.rb +40 -0
- data/app/controllers/tr8n/home_controller.rb +51 -0
- data/app/controllers/tr8n/language_cases_controller.rb +82 -0
- data/app/controllers/tr8n/language_controller.rb +372 -0
- data/app/controllers/tr8n/login_controller.rb +86 -0
- data/app/controllers/tr8n/phrases_controller.rb +293 -0
- data/app/controllers/tr8n/translations_controller.rb +194 -0
- data/app/controllers/tr8n/translator_controller.rb +83 -0
- data/app/helpers/application_helper.rb +27 -0
- data/app/helpers/tr8n/admin/base_helper.rb +84 -0
- data/app/helpers/tr8n/base_helper.rb +44 -0
- data/app/helpers/tr8n/dashboard_helper.rb +43 -0
- data/app/models/tr8n/base_filter.rb +68 -0
- data/app/models/tr8n/daily_language_metric.rb +42 -0
- data/app/models/tr8n/date_rule.rb +123 -0
- data/app/models/tr8n/gender_list_rule.rb +247 -0
- data/app/models/tr8n/gender_rule.rb +140 -0
- data/app/models/tr8n/glossary.rb +27 -0
- data/app/models/tr8n/glossary_filter.rb +33 -0
- data/app/models/tr8n/integration/ru/russian_gender_list_rule.rb +60 -0
- data/app/models/tr8n/integration/ru/russian_numeric_rule.rb +64 -0
- data/app/models/tr8n/ip_location.rb +74 -0
- data/app/models/tr8n/ip_location_filter.rb +34 -0
- data/app/models/tr8n/language.rb +318 -0
- data/app/models/tr8n/language_case.rb +141 -0
- data/app/models/tr8n/language_case_filter.rb +30 -0
- data/app/models/tr8n/language_case_rule.rb +187 -0
- data/app/models/tr8n/language_case_rule_filter.rb +30 -0
- data/app/models/tr8n/language_case_value_map.rb +100 -0
- data/app/models/tr8n/language_case_value_map_filter.rb +41 -0
- data/app/models/tr8n/language_filter.rb +75 -0
- data/app/models/tr8n/language_forum_abuse_report.rb +33 -0
- data/app/models/tr8n/language_forum_abuse_report_filter.rb +30 -0
- data/app/models/tr8n/language_forum_message.rb +46 -0
- data/app/models/tr8n/language_forum_message_filter.rb +34 -0
- data/app/models/tr8n/language_forum_topic.rb +41 -0
- data/app/models/tr8n/language_forum_topic_filter.rb +34 -0
- data/app/models/tr8n/language_metric.rb +91 -0
- data/app/models/tr8n/language_metric_filter.rb +63 -0
- data/app/models/tr8n/language_rule.rb +117 -0
- data/app/models/tr8n/language_rule_filter.rb +45 -0
- data/app/models/tr8n/language_user.rb +61 -0
- data/app/models/tr8n/language_user_filter.rb +34 -0
- data/app/models/tr8n/list_rule.rb +118 -0
- data/app/models/tr8n/monthly_language_metric.rb +34 -0
- data/app/models/tr8n/numeric_rule.rb +175 -0
- data/app/models/tr8n/total_language_metric.rb +59 -0
- data/app/models/tr8n/translation.rb +299 -0
- data/app/models/tr8n/translation_domain.rb +48 -0
- data/app/models/tr8n/translation_domain_filter.rb +26 -0
- data/app/models/tr8n/translation_filter.rb +34 -0
- data/app/models/tr8n/translation_key.rb +625 -0
- data/app/models/tr8n/translation_key_comment.rb +37 -0
- data/app/models/tr8n/translation_key_comment_filter.rb +30 -0
- data/app/models/tr8n/translation_key_filter.rb +45 -0
- data/app/models/tr8n/translation_key_lock.rb +59 -0
- data/app/models/tr8n/translation_key_lock_filter.rb +30 -0
- data/app/models/tr8n/translation_key_source.rb +58 -0
- data/app/models/tr8n/translation_key_source_filter.rb +30 -0
- data/app/models/tr8n/translation_source.rb +52 -0
- data/app/models/tr8n/translation_source_filter.rb +30 -0
- data/app/models/tr8n/translation_vote.rb +36 -0
- data/app/models/tr8n/translation_vote_filter.rb +34 -0
- data/app/models/tr8n/translator.rb +301 -0
- data/app/models/tr8n/translator_filter.rb +46 -0
- data/app/models/tr8n/translator_following.rb +38 -0
- data/app/models/tr8n/translator_following_filter.rb +34 -0
- data/app/models/tr8n/translator_log.rb +120 -0
- data/app/models/tr8n/translator_log_filter.rb +49 -0
- data/app/models/tr8n/translator_metric.rb +83 -0
- data/app/models/tr8n/translator_metric_filter.rb +38 -0
- data/app/models/tr8n/translator_report.rb +82 -0
- data/app/models/tr8n/translator_report_filter.rb +30 -0
- data/app/models/tr8n/value_rule.rb +117 -0
- data/app/views/layouts/_footer.html.erb +15 -0
- data/app/views/layouts/_header.html.erb +12 -0
- data/app/views/layouts/_html_head.html.erb +5 -0
- data/app/views/layouts/tr8n.html.erb +21 -0
- data/app/views/layouts/tr8n_admin.html.erb +33 -0
- data/app/views/tr8n/admin/clientsdk/index.html.erb +133 -0
- data/app/views/tr8n/admin/clientsdk/lb_samples.html.erb +54 -0
- data/app/views/tr8n/admin/common/_footer.html.erb +1 -0
- data/app/views/tr8n/admin/common/_header.html.erb +30 -0
- data/app/views/tr8n/admin/common/_lightbox_buttons.html.erb +5 -0
- data/app/views/tr8n/admin/common/_paginator.html.erb +20 -0
- data/app/views/tr8n/admin/domain/_tabs.html.erb +23 -0
- data/app/views/tr8n/admin/domain/index.html.erb +33 -0
- data/app/views/tr8n/admin/domain/key_sources.rhtml +53 -0
- data/app/views/tr8n/admin/domain/lb_caller.html.erb +35 -0
- data/app/views/tr8n/admin/domain/sources.html.erb +35 -0
- data/app/views/tr8n/admin/forum/_tabs.html.erb +22 -0
- data/app/views/tr8n/admin/forum/index.html.erb +34 -0
- data/app/views/tr8n/admin/forum/messages.html.erb +33 -0
- data/app/views/tr8n/admin/forum/reports.html.erb +50 -0
- data/app/views/tr8n/admin/glossary/index.html.erb +22 -0
- data/app/views/tr8n/admin/glossary/lb_update.html.erb +26 -0
- data/app/views/tr8n/admin/language/_rules.html.erb +22 -0
- data/app/views/tr8n/admin/language/_tabs.html.erb +27 -0
- data/app/views/tr8n/admin/language/_users.html.erb +40 -0
- data/app/views/tr8n/admin/language/case_rules.html.erb +24 -0
- data/app/views/tr8n/admin/language/case_values.html.erb +25 -0
- data/app/views/tr8n/admin/language/cases.html.erb +24 -0
- data/app/views/tr8n/admin/language/charts.html.erb +35 -0
- data/app/views/tr8n/admin/language/index.html.erb +99 -0
- data/app/views/tr8n/admin/language/lb_update.html.erb +76 -0
- data/app/views/tr8n/admin/language/lb_value_map.html.erb +42 -0
- data/app/views/tr8n/admin/language/metrics.rhtml +16 -0
- data/app/views/tr8n/admin/language/rules.html.erb +24 -0
- data/app/views/tr8n/admin/language/users.rhtml +31 -0
- data/app/views/tr8n/admin/language/view.html.erb +106 -0
- data/app/views/tr8n/admin/translation/_tabs.html.erb +21 -0
- data/app/views/tr8n/admin/translation/index.html.erb +75 -0
- data/app/views/tr8n/admin/translation/view.html.erb +142 -0
- data/app/views/tr8n/admin/translation/votes.rhtml +81 -0
- data/app/views/tr8n/admin/translation_key/_tabs.html.erb +22 -0
- data/app/views/tr8n/admin/translation_key/comments.html.erb +49 -0
- data/app/views/tr8n/admin/translation_key/index.html.erb +79 -0
- data/app/views/tr8n/admin/translation_key/lb_merge.html.erb +43 -0
- data/app/views/tr8n/admin/translation_key/lb_update.html.erb +44 -0
- data/app/views/tr8n/admin/translation_key/locks.html.erb +51 -0
- data/app/views/tr8n/admin/translation_key/view.html.erb +192 -0
- data/app/views/tr8n/admin/translator/_list.html.erb +51 -0
- data/app/views/tr8n/admin/translator/_tabs.html.erb +26 -0
- data/app/views/tr8n/admin/translator/following.html.erb +20 -0
- data/app/views/tr8n/admin/translator/index.html.erb +77 -0
- data/app/views/tr8n/admin/translator/ip_locations.html.erb +9 -0
- data/app/views/tr8n/admin/translator/lb_register.html.erb +18 -0
- data/app/views/tr8n/admin/translator/log.html.erb +27 -0
- data/app/views/tr8n/admin/translator/metrics.html.erb +25 -0
- data/app/views/tr8n/admin/translator/reports.html.erb +22 -0
- data/app/views/tr8n/admin/translator/view.html.erb +228 -0
- data/app/views/tr8n/awards/_list.html.erb +46 -0
- data/app/views/tr8n/awards/index.html.erb +42 -0
- data/app/views/tr8n/common/_flashes.html.erb +39 -0
- data/app/views/tr8n/common/_footer.html.erb +1 -0
- data/app/views/tr8n/common/_header.html.erb +5 -0
- data/app/views/tr8n/common/_language_selector.html.erb +8 -0
- data/app/views/tr8n/common/_language_strip.html.erb +29 -0
- data/app/views/tr8n/common/_language_table.html.erb +13 -0
- data/app/views/tr8n/common/_paginator.html.erb +8 -0
- data/app/views/tr8n/common/_permutations.html.erb +37 -0
- data/app/views/tr8n/common/_scripts.html.erb +49 -0
- data/app/views/tr8n/common/_splash_screen.html.erb +9 -0
- data/app/views/tr8n/common/_splash_screen_legacy.html.erb +4 -0
- data/app/views/tr8n/common/_tabs.html.erb +39 -0
- data/app/views/tr8n/common/_translation_votes.html.erb +41 -0
- data/app/views/tr8n/common/_translator_login.html.erb +11 -0
- data/app/views/tr8n/dashboard/_forum.html.erb +25 -0
- data/app/views/tr8n/dashboard/_language_metric.html.erb +49 -0
- data/app/views/tr8n/dashboard/_statistics.html.erb +35 -0
- data/app/views/tr8n/dashboard/_translations.html.erb +24 -0
- data/app/views/tr8n/dashboard/_translator_metric.html.erb +68 -0
- data/app/views/tr8n/dashboard/_votes.html.erb +76 -0
- data/app/views/tr8n/dashboard/index.rhtml +115 -0
- data/app/views/tr8n/forum/_message.html.erb +17 -0
- data/app/views/tr8n/forum/_messages.html.erb +21 -0
- data/app/views/tr8n/forum/_new_message.html.erb +28 -0
- data/app/views/tr8n/forum/_new_topic.html.erb +49 -0
- data/app/views/tr8n/forum/index.html.erb +84 -0
- data/app/views/tr8n/forum/topic.html.erb +36 -0
- data/app/views/tr8n/glossary/index.html.erb +42 -0
- data/app/views/tr8n/help/_navigation.html.erb +127 -0
- data/app/views/tr8n/help/awards.html.erb +13 -0
- data/app/views/tr8n/help/basic_information.html.erb +13 -0
- data/app/views/tr8n/help/context_rules.html.erb +13 -0
- data/app/views/tr8n/help/creating_translations.html.erb +16 -0
- data/app/views/tr8n/help/dashboard.html.erb +13 -0
- data/app/views/tr8n/help/direction.html.erb +13 -0
- data/app/views/tr8n/help/discussions.html.erb +13 -0
- data/app/views/tr8n/help/enter_translation.html.erb +13 -0
- data/app/views/tr8n/help/fallback_language.html.erb +13 -0
- data/app/views/tr8n/help/generate_context_rules.html.erb +17 -0
- data/app/views/tr8n/help/index.html.erb +18 -0
- data/app/views/tr8n/help/inline_translations.html.erb +28 -0
- data/app/views/tr8n/help/language_dashboard.html.erb +21 -0
- data/app/views/tr8n/help/language_phrases.html.erb +17 -0
- data/app/views/tr8n/help/language_selector.html.erb +13 -0
- data/app/views/tr8n/help/language_statistics.html.erb +13 -0
- data/app/views/tr8n/help/lb_credits.html.erb +9 -0
- data/app/views/tr8n/help/lb_shortcuts.html.erb +26 -0
- data/app/views/tr8n/help/manage.html.erb +13 -0
- data/app/views/tr8n/help/manage_language.html.erb +13 -0
- data/app/views/tr8n/help/native_name.html.erb +13 -0
- data/app/views/tr8n/help/original_phrase.html.erb +13 -0
- data/app/views/tr8n/help/other_languages.html.erb +15 -0
- data/app/views/tr8n/help/other_translatable_resources.html.erb +13 -0
- data/app/views/tr8n/help/phrases.html.erb +19 -0
- data/app/views/tr8n/help/phrases_with_translations.html.erb +21 -0
- data/app/views/tr8n/help/phrases_without_translations.html.erb +15 -0
- data/app/views/tr8n/help/prohibited_words.html.erb +13 -0
- data/app/views/tr8n/help/rank.html.erb +13 -0
- data/app/views/tr8n/help/recent_discussions.html.erb +13 -0
- data/app/views/tr8n/help/recent_translation_votes.html.erb +13 -0
- data/app/views/tr8n/help/recent_translations.html.erb +13 -0
- data/app/views/tr8n/help/site_map.html.erb +17 -0
- data/app/views/tr8n/help/site_sections.html.erb +13 -0
- data/app/views/tr8n/help/suggested_translation.html.erb +13 -0
- data/app/views/tr8n/help/translating_inline.html.erb +30 -0
- data/app/views/tr8n/help/translation_context_rules.html.erb +16 -0
- data/app/views/tr8n/help/translation_rank.html.erb +17 -0
- data/app/views/tr8n/help/translation_tokens.html.erb +13 -0
- data/app/views/tr8n/help/translation_tools.html.erb +13 -0
- data/app/views/tr8n/help/translations.html.erb +13 -0
- data/app/views/tr8n/help/user_rank.html.erb +13 -0
- data/app/views/tr8n/help/using_translation_tools.html.erb +13 -0
- data/app/views/tr8n/help/voting_on_translations.html.erb +13 -0
- data/app/views/tr8n/help/your_dashboard.html.erb +17 -0
- data/app/views/tr8n/help/your_languages.html.erb +19 -0
- data/app/views/tr8n/help/your_translations.html.erb +17 -0
- data/app/views/tr8n/home/credits.html.erb +102 -0
- data/app/views/tr8n/home/docs.html.erb +3 -0
- data/app/views/tr8n/home/index.html.erb +37 -0
- data/app/views/tr8n/home/integration.html.erb +564 -0
- data/app/views/tr8n/home/languages.html.erb +7 -0
- data/app/views/tr8n/home/license.html.erb +586 -0
- data/app/views/tr8n/home/rules.html.erb +668 -0
- data/app/views/tr8n/home/tokens.html.erb +324 -0
- data/app/views/tr8n/language/_basic_info.html.erb +53 -0
- data/app/views/tr8n/language/_edit_language_case_rules.html.erb +51 -0
- data/app/views/tr8n/language/_edit_language_cases.html.erb +68 -0
- data/app/views/tr8n/language/_edit_rules.html.erb +46 -0
- data/app/views/tr8n/language/_grammar.html.erb +84 -0
- data/app/views/tr8n/language/_header.html.erb +14 -0
- data/app/views/tr8n/language/_language_cases.html.erb +196 -0
- data/app/views/tr8n/language/_lists.html.erb +56 -0
- data/app/views/tr8n/language/_prohibited_words.html.erb +16 -0
- data/app/views/tr8n/language/_translator_dependencies.html.erb +27 -0
- data/app/views/tr8n/language/_translator_header.html.erb +19 -0
- data/app/views/tr8n/language/_translator_submit.html.erb +141 -0
- data/app/views/tr8n/language/_translator_votes.html.erb +27 -0
- data/app/views/tr8n/language/index.html.erb +54 -0
- data/app/views/tr8n/language/lb_language_case_rule.html.erb +94 -0
- data/app/views/tr8n/language/rules/_date_rule.html.erb +3 -0
- data/app/views/tr8n/language/rules/_gender_list_rule.html.erb +23 -0
- data/app/views/tr8n/language/rules/_gender_rule.html.erb +3 -0
- data/app/views/tr8n/language/rules/_list_rule.html.erb +3 -0
- data/app/views/tr8n/language/rules/_number_rule.html.erb +24 -0
- data/app/views/tr8n/language/rules/_value_rule.html.erb +3 -0
- data/app/views/tr8n/language/select.html.erb +72 -0
- data/app/views/tr8n/language/table.html.erb +32 -0
- data/app/views/tr8n/language/translator.html.erb +18 -0
- data/app/views/tr8n/language_cases/_gender_based.html.erb +32 -0
- data/app/views/tr8n/language_cases/_gender_neutral.html.erb +25 -0
- data/app/views/tr8n/language_cases/_manager_header.html.erb +18 -0
- data/app/views/tr8n/language_cases/index.html.erb +54 -0
- data/app/views/tr8n/language_cases/manager.html.erb +60 -0
- data/app/views/tr8n/login/index.html.erb +33 -0
- data/app/views/tr8n/login/register.html.erb +57 -0
- data/app/views/tr8n/phrases/_breadcrumb.html.erb +11 -0
- data/app/views/tr8n/phrases/_comment.html.erb +17 -0
- data/app/views/tr8n/phrases/_comments_module.html.erb +37 -0
- data/app/views/tr8n/phrases/_dictionary.rhtml +29 -0
- data/app/views/tr8n/phrases/_header.html.erb +24 -0
- data/app/views/tr8n/phrases/_new_comment.html.erb +31 -0
- data/app/views/tr8n/phrases/_permutations_module.html.erb +30 -0
- data/app/views/tr8n/phrases/_tokens.html.erb +122 -0
- data/app/views/tr8n/phrases/_toolbar.html.erb +33 -0
- data/app/views/tr8n/phrases/_translation_module.html.erb +127 -0
- data/app/views/tr8n/phrases/_translations_module.html.erb +70 -0
- data/app/views/tr8n/phrases/index.html.erb +90 -0
- data/app/views/tr8n/phrases/lb_sources.html.erb +51 -0
- data/app/views/tr8n/phrases/map.html.erb +42 -0
- data/app/views/tr8n/phrases/view.html.erb +77 -0
- data/app/views/tr8n/translations/_list.html.erb +71 -0
- data/app/views/tr8n/translations/_original_phrase.html.erb +11 -0
- data/app/views/tr8n/translations/_translation.html.erb +80 -0
- data/app/views/tr8n/translations/index.html.erb +30 -0
- data/app/views/tr8n/translator/_basic_info.html.erb +95 -0
- data/app/views/tr8n/translator/_header.html.erb +12 -0
- data/app/views/tr8n/translator/_header_key_report.html.erb +12 -0
- data/app/views/tr8n/translator/index.html.erb +25 -0
- data/app/views/tr8n/translator/lb_report.html.erb +113 -0
- data/config.ru +4 -0
- data/config/application.rb +65 -0
- data/config/boot.rb +6 -0
- data/config/database.yml +13 -0
- data/config/environment.rb +46 -0
- data/config/environments/development.rb +25 -0
- data/config/environments/test.rb +35 -0
- data/config/routes.rb +47 -0
- data/config/tr8n/config.yml +247 -0
- data/config/tr8n/data/ip_locations.csv +93460 -0
- data/config/tr8n/rules/default_cases.yml +141 -0
- data/config/tr8n/rules/default_date_rules.yml +20 -0
- data/config/tr8n/rules/default_gender_list_rules.yml +82 -0
- data/config/tr8n/rules/default_gender_rules.yml +20 -0
- data/config/tr8n/rules/default_list_rules.yml +19 -0
- data/config/tr8n/rules/default_numeric_rules.yml +42 -0
- data/config/tr8n/rules/default_value_rules.yml +18 -0
- data/config/tr8n/site/default_glossary.yml +18 -0
- data/config/tr8n/site/default_languages.yml +1591 -0
- data/config/tr8n/site/features.yml +111 -0
- data/config/tr8n/site/shortcuts.yml +55 -0
- data/config/tr8n/site/sitemap.json +42 -0
- data/config/tr8n/tokens/data.yml +19 -0
- data/config/tr8n/tokens/decorations.yml +16 -0
- data/config/will_filter/config.yml +97 -0
- data/db/extras/20100511185330_create_test_users.rb +43 -0
- data/db/migrate/20090730070119_create_will_filter_tables.rb +19 -0
- data/db/migrate/20100405201417_create_tr8n_tables.rb +350 -0
- data/db/seeds.rb +7 -0
- data/doc/README_FOR_APP +2 -0
- data/doc/cheat sheet.docx +0 -0
- data/doc/cheat sheet.pdf +0 -0
- data/doc/classes.graffle +12555 -0
- data/doc/classes.pdf +0 -0
- data/doc/client sdk sequence.graffle +2768 -0
- data/doc/integration.doc +0 -0
- data/doc/integration.docx +0 -0
- data/doc/pixel client sdk.graffle +1454 -0
- data/lib/application_controller.rb +38 -0
- data/lib/application_helper.rb +336 -0
- data/lib/core_ext/array.rb +61 -0
- data/lib/core_ext/date.rb +76 -0
- data/lib/core_ext/fixnum.rb +35 -0
- data/lib/core_ext/hash.rb +60 -0
- data/lib/core_ext/string.rb +49 -0
- data/lib/core_ext/time.rb +83 -0
- data/lib/generators/tr8n/templates/create_tr8n_tables.rb +350 -0
- data/lib/generators/tr8n/tr8n_generator.rb +49 -0
- data/lib/tasks/.gitkeep +0 -0
- data/lib/tasks/tr8n_tasks.rake +99 -0
- data/lib/tr8n.rb +3 -0
- data/lib/tr8n/active_dumper.rb +49 -0
- data/lib/tr8n/cache.rb +57 -0
- data/lib/tr8n/common_methods.rb +61 -0
- data/lib/tr8n/config.rb +719 -0
- data/lib/tr8n/controller_methods.rb +112 -0
- data/lib/tr8n/dictionary.rb +53 -0
- data/lib/tr8n/engine.rb +29 -0
- data/lib/tr8n/exception.rb +26 -0
- data/lib/tr8n/extender.rb +34 -0
- data/lib/tr8n/helper_methods.rb +304 -0
- data/lib/tr8n/ip_address.rb +52 -0
- data/lib/tr8n/key_registration_exception.rb +26 -0
- data/lib/tr8n/keyboard_mapping.rb +174 -0
- data/lib/tr8n/logger.rb +60 -0
- data/lib/tr8n/site_map.rb +85 -0
- data/lib/tr8n/site_map_section.rb +108 -0
- data/lib/tr8n/token.rb +438 -0
- data/lib/tr8n/token_exception.rb +26 -0
- data/lib/tr8n/tokenized_label.rb +141 -0
- data/lib/tr8n/tokens/data_token.rb +52 -0
- data/lib/tr8n/tokens/decoration_token.rb +124 -0
- data/lib/tr8n/tokens/hidden_token.rb +87 -0
- data/lib/tr8n/tokens/method_token.rb +60 -0
- data/lib/tr8n/tokens/transform_token.rb +131 -0
- data/public/404.html +26 -0
- data/public/422.html +26 -0
- data/public/500.html +26 -0
- data/public/favicon.ico +0 -0
- data/public/robots.txt +5 -0
- data/public/tr8n/images/accept.png +0 -0
- data/public/tr8n/images/action_tab_bkgd.gif +0 -0
- data/public/tr8n/images/action_tab_white_bkgd.gif +0 -0
- data/public/tr8n/images/add.png +0 -0
- data/public/tr8n/images/arrow_down.gif +0 -0
- data/public/tr8n/images/arrow_down.png +0 -0
- data/public/tr8n/images/arrow_down_grey.png +0 -0
- data/public/tr8n/images/arrow_right.gif +0 -0
- data/public/tr8n/images/arrow_up.png +0 -0
- data/public/tr8n/images/arrow_up_grey.png +0 -0
- data/public/tr8n/images/bullet_go.png +0 -0
- data/public/tr8n/images/buttons.png +0 -0
- data/public/tr8n/images/cancel.png +0 -0
- data/public/tr8n/images/close.gif +0 -0
- data/public/tr8n/images/cross.png +0 -0
- data/public/tr8n/images/delete.png +0 -0
- data/public/tr8n/images/disk.png +0 -0
- data/public/tr8n/images/examples/context_rules_1.png +0 -0
- data/public/tr8n/images/examples/context_rules_2.png +0 -0
- data/public/tr8n/images/examples/date_rules_1.png +0 -0
- data/public/tr8n/images/examples/date_rules_2.png +0 -0
- data/public/tr8n/images/examples/date_rules_3.png +0 -0
- data/public/tr8n/images/examples/gender_rules_1.png +0 -0
- data/public/tr8n/images/examples/gender_rules_2.png +0 -0
- data/public/tr8n/images/examples/gender_rules_3.png +0 -0
- data/public/tr8n/images/examples/language_manager_1.png +0 -0
- data/public/tr8n/images/examples/list_rules_1.png +0 -0
- data/public/tr8n/images/examples/list_rules_2.png +0 -0
- data/public/tr8n/images/examples/list_rules_3.png +0 -0
- data/public/tr8n/images/examples/numeric_rules_1.png +0 -0
- data/public/tr8n/images/examples/numeric_rules_2.png +0 -0
- data/public/tr8n/images/examples/numeric_rules_3.png +0 -0
- data/public/tr8n/images/examples/numeric_rules_4.png +0 -0
- data/public/tr8n/images/exclamation.png +0 -0
- data/public/tr8n/images/eye.png +0 -0
- data/public/tr8n/images/eye_not.png +0 -0
- data/public/tr8n/images/facebook/connect_light_medium_long.gif +0 -0
- data/public/tr8n/images/field_sprite.gif +0 -0
- data/public/tr8n/images/find.png +0 -0
- data/public/tr8n/images/flags/.DS_Store +0 -0
- data/public/tr8n/images/flags/ab.png +0 -0
- data/public/tr8n/images/flags/ach.png +0 -0
- data/public/tr8n/images/flags/af.png +0 -0
- data/public/tr8n/images/flags/ak.png +0 -0
- data/public/tr8n/images/flags/am.png +0 -0
- data/public/tr8n/images/flags/an.png +0 -0
- data/public/tr8n/images/flags/ar-AE.png +0 -0
- data/public/tr8n/images/flags/ar-BH.png +0 -0
- data/public/tr8n/images/flags/ar-DZ.png +0 -0
- data/public/tr8n/images/flags/ar-EG.png +0 -0
- data/public/tr8n/images/flags/ar-IQ.png +0 -0
- data/public/tr8n/images/flags/ar-JO.png +0 -0
- data/public/tr8n/images/flags/ar-KW.png +0 -0
- data/public/tr8n/images/flags/ar-LB.png +0 -0
- data/public/tr8n/images/flags/ar-LY.png +0 -0
- data/public/tr8n/images/flags/ar-MA.png +0 -0
- data/public/tr8n/images/flags/ar-OM.png +0 -0
- data/public/tr8n/images/flags/ar-QA.png +0 -0
- data/public/tr8n/images/flags/ar-SA.png +0 -0
- data/public/tr8n/images/flags/ar-SY.png +0 -0
- data/public/tr8n/images/flags/ar-TN.png +0 -0
- data/public/tr8n/images/flags/ar-YE.png +0 -0
- data/public/tr8n/images/flags/ar.png +0 -0
- data/public/tr8n/images/flags/as.png +0 -0
- data/public/tr8n/images/flags/ast.png +0 -0
- data/public/tr8n/images/flags/ay.png +0 -0
- data/public/tr8n/images/flags/az.png +0 -0
- data/public/tr8n/images/flags/ba.png +0 -0
- data/public/tr8n/images/flags/be.png +0 -0
- data/public/tr8n/images/flags/bg.png +0 -0
- data/public/tr8n/images/flags/bh.png +0 -0
- data/public/tr8n/images/flags/bn.png +0 -0
- data/public/tr8n/images/flags/bo.png +0 -0
- data/public/tr8n/images/flags/br.png +0 -0
- data/public/tr8n/images/flags/bs.png +0 -0
- data/public/tr8n/images/flags/ca.png +0 -0
- data/public/tr8n/images/flags/cb.png +0 -0
- data/public/tr8n/images/flags/ce.png +0 -0
- data/public/tr8n/images/flags/ch.png +0 -0
- data/public/tr8n/images/flags/ck-US.png +0 -0
- data/public/tr8n/images/flags/co.png +0 -0
- data/public/tr8n/images/flags/cr.png +0 -0
- data/public/tr8n/images/flags/cs.png +0 -0
- data/public/tr8n/images/flags/cv.png +0 -0
- data/public/tr8n/images/flags/cy.png +0 -0
- data/public/tr8n/images/flags/da.png +0 -0
- data/public/tr8n/images/flags/de-AT.png +0 -0
- data/public/tr8n/images/flags/de-CH.png +0 -0
- data/public/tr8n/images/flags/de-DE.png +0 -0
- data/public/tr8n/images/flags/de-LI.png +0 -0
- data/public/tr8n/images/flags/de-LU.png +0 -0
- data/public/tr8n/images/flags/de.png +0 -0
- data/public/tr8n/images/flags/el.png +0 -0
- data/public/tr8n/images/flags/en-AU.png +0 -0
- data/public/tr8n/images/flags/en-BZ.png +0 -0
- data/public/tr8n/images/flags/en-CA.png +0 -0
- data/public/tr8n/images/flags/en-IE.png +0 -0
- data/public/tr8n/images/flags/en-JM.png +0 -0
- data/public/tr8n/images/flags/en-NZ.png +0 -0
- data/public/tr8n/images/flags/en-PH.png +0 -0
- data/public/tr8n/images/flags/en-PI.png +0 -0
- data/public/tr8n/images/flags/en-SC.png +0 -0
- data/public/tr8n/images/flags/en-UK.png +0 -0
- data/public/tr8n/images/flags/en-US.png +0 -0
- data/public/tr8n/images/flags/en-ZA.png +0 -0
- data/public/tr8n/images/flags/en-ZW.png +0 -0
- data/public/tr8n/images/flags/en.png +0 -0
- data/public/tr8n/images/flags/eo.png +0 -0
- data/public/tr8n/images/flags/es-AR.png +0 -0
- data/public/tr8n/images/flags/es-BO.png +0 -0
- data/public/tr8n/images/flags/es-CL.png +0 -0
- data/public/tr8n/images/flags/es-CO.png +0 -0
- data/public/tr8n/images/flags/es-CR.png +0 -0
- data/public/tr8n/images/flags/es-DO.png +0 -0
- data/public/tr8n/images/flags/es-EC.png +0 -0
- data/public/tr8n/images/flags/es-ES.png +0 -0
- data/public/tr8n/images/flags/es-GT.png +0 -0
- data/public/tr8n/images/flags/es-HN.png +0 -0
- data/public/tr8n/images/flags/es-MX.png +0 -0
- data/public/tr8n/images/flags/es-NI.png +0 -0
- data/public/tr8n/images/flags/es-PA.png +0 -0
- data/public/tr8n/images/flags/es-PE.png +0 -0
- data/public/tr8n/images/flags/es-PR.png +0 -0
- data/public/tr8n/images/flags/es-PY.png +0 -0
- data/public/tr8n/images/flags/es-SV.png +0 -0
- data/public/tr8n/images/flags/es-UY.png +0 -0
- data/public/tr8n/images/flags/es-VE.png +0 -0
- data/public/tr8n/images/flags/es.png +0 -0
- data/public/tr8n/images/flags/et.png +0 -0
- data/public/tr8n/images/flags/eu.png +0 -0
- data/public/tr8n/images/flags/fa-IR.png +0 -0
- data/public/tr8n/images/flags/fa.png +0 -0
- data/public/tr8n/images/flags/fb-LT.png +0 -0
- data/public/tr8n/images/flags/fi.png +0 -0
- data/public/tr8n/images/flags/fj.png +0 -0
- data/public/tr8n/images/flags/fo.png +0 -0
- data/public/tr8n/images/flags/fr-BE.png +0 -0
- data/public/tr8n/images/flags/fr-CA.png +0 -0
- data/public/tr8n/images/flags/fr-CH.png +0 -0
- data/public/tr8n/images/flags/fr-FR.png +0 -0
- data/public/tr8n/images/flags/fr-LU.png +0 -0
- data/public/tr8n/images/flags/fr-MC.png +0 -0
- data/public/tr8n/images/flags/fr.png +0 -0
- data/public/tr8n/images/flags/fur.png +0 -0
- data/public/tr8n/images/flags/fy.png +0 -0
- data/public/tr8n/images/flags/ga.png +0 -0
- data/public/tr8n/images/flags/gd.png +0 -0
- data/public/tr8n/images/flags/gl.png +0 -0
- data/public/tr8n/images/flags/gn.png +0 -0
- data/public/tr8n/images/flags/gu.png +0 -0
- data/public/tr8n/images/flags/gv.png +0 -0
- data/public/tr8n/images/flags/ha.png +0 -0
- data/public/tr8n/images/flags/haw.png +0 -0
- data/public/tr8n/images/flags/he.png +0 -0
- data/public/tr8n/images/flags/hi.png +0 -0
- data/public/tr8n/images/flags/hr.png +0 -0
- data/public/tr8n/images/flags/hsb.png +0 -0
- data/public/tr8n/images/flags/ht.png +0 -0
- data/public/tr8n/images/flags/hu.png +0 -0
- data/public/tr8n/images/flags/hy.png +0 -0
- data/public/tr8n/images/flags/ia.png +0 -0
- data/public/tr8n/images/flags/id.png +0 -0
- data/public/tr8n/images/flags/ie.png +0 -0
- data/public/tr8n/images/flags/ig.png +0 -0
- data/public/tr8n/images/flags/is.png +0 -0
- data/public/tr8n/images/flags/it-CH.png +0 -0
- data/public/tr8n/images/flags/it.png +0 -0
- data/public/tr8n/images/flags/iu.png +0 -0
- data/public/tr8n/images/flags/ja.png +0 -0
- data/public/tr8n/images/flags/jw.png +0 -0
- data/public/tr8n/images/flags/ka.png +0 -0
- data/public/tr8n/images/flags/kk.png +0 -0
- data/public/tr8n/images/flags/kl.png +0 -0
- data/public/tr8n/images/flags/km.png +0 -0
- data/public/tr8n/images/flags/kn.png +0 -0
- data/public/tr8n/images/flags/ko-KP.png +0 -0
- data/public/tr8n/images/flags/ko-KR.png +0 -0
- data/public/tr8n/images/flags/ko.png +0 -0
- data/public/tr8n/images/flags/kok.png +0 -0
- data/public/tr8n/images/flags/ks.png +0 -0
- data/public/tr8n/images/flags/ku.png +0 -0
- data/public/tr8n/images/flags/ky.png +0 -0
- data/public/tr8n/images/flags/la.png +0 -0
- data/public/tr8n/images/flags/lb.png +0 -0
- data/public/tr8n/images/flags/lg.png +0 -0
- data/public/tr8n/images/flags/li-NL.png +0 -0
- data/public/tr8n/images/flags/ln.png +0 -0
- data/public/tr8n/images/flags/lo.png +0 -0
- data/public/tr8n/images/flags/lt.png +0 -0
- data/public/tr8n/images/flags/lv.png +0 -0
- data/public/tr8n/images/flags/md.png +0 -0
- data/public/tr8n/images/flags/mfe.png +0 -0
- data/public/tr8n/images/flags/mg.png +0 -0
- data/public/tr8n/images/flags/mh.png +0 -0
- data/public/tr8n/images/flags/mi.png +0 -0
- data/public/tr8n/images/flags/mk.png +0 -0
- data/public/tr8n/images/flags/ml.png +0 -0
- data/public/tr8n/images/flags/mn.png +0 -0
- data/public/tr8n/images/flags/mo.png +0 -0
- data/public/tr8n/images/flags/mr.png +0 -0
- data/public/tr8n/images/flags/ms.png +0 -0
- data/public/tr8n/images/flags/mt.png +0 -0
- data/public/tr8n/images/flags/my.png +0 -0
- data/public/tr8n/images/flags/na.png +0 -0
- data/public/tr8n/images/flags/nb.png +0 -0
- data/public/tr8n/images/flags/nd.png +0 -0
- data/public/tr8n/images/flags/ne.png +0 -0
- data/public/tr8n/images/flags/ng.png +0 -0
- data/public/tr8n/images/flags/nl-NE.png +0 -0
- data/public/tr8n/images/flags/nl.png +0 -0
- data/public/tr8n/images/flags/nn.png +0 -0
- data/public/tr8n/images/flags/no.png +0 -0
- data/public/tr8n/images/flags/nr.png +0 -0
- data/public/tr8n/images/flags/nso.png +0 -0
- data/public/tr8n/images/flags/nv.png +0 -0
- data/public/tr8n/images/flags/ny.png +0 -0
- data/public/tr8n/images/flags/nyn.png +0 -0
- data/public/tr8n/images/flags/oc.png +0 -0
- data/public/tr8n/images/flags/om.png +0 -0
- data/public/tr8n/images/flags/or.png +0 -0
- data/public/tr8n/images/flags/pa-IN.png +0 -0
- data/public/tr8n/images/flags/pa-PK.png +0 -0
- data/public/tr8n/images/flags/pa.png +0 -0
- data/public/tr8n/images/flags/pf.png +0 -0
- data/public/tr8n/images/flags/pl.png +0 -0
- data/public/tr8n/images/flags/pp.png +0 -0
- data/public/tr8n/images/flags/ps.png +0 -0
- data/public/tr8n/images/flags/pt-BZ.png +0 -0
- data/public/tr8n/images/flags/pt.png +0 -0
- data/public/tr8n/images/flags/qu-PE.png +0 -0
- data/public/tr8n/images/flags/qu.png +0 -0
- data/public/tr8n/images/flags/rj.png +0 -0
- data/public/tr8n/images/flags/rm.png +0 -0
- data/public/tr8n/images/flags/rn.png +0 -0
- data/public/tr8n/images/flags/ro-MD.png +0 -0
- data/public/tr8n/images/flags/ro-RO.png +0 -0
- data/public/tr8n/images/flags/ro.png +0 -0
- data/public/tr8n/images/flags/ru.png +0 -0
- data/public/tr8n/images/flags/rw.png +0 -0
- data/public/tr8n/images/flags/sa.png +0 -0
- data/public/tr8n/images/flags/sc.png +0 -0
- data/public/tr8n/images/flags/sd.png +0 -0
- data/public/tr8n/images/flags/se-NO.png +0 -0
- data/public/tr8n/images/flags/sg.png +0 -0
- data/public/tr8n/images/flags/sh.png +0 -0
- data/public/tr8n/images/flags/si.png +0 -0
- data/public/tr8n/images/flags/sk.png +0 -0
- data/public/tr8n/images/flags/sl.png +0 -0
- data/public/tr8n/images/flags/sm.png +0 -0
- data/public/tr8n/images/flags/sn.png +0 -0
- data/public/tr8n/images/flags/so.png +0 -0
- data/public/tr8n/images/flags/sq.png +0 -0
- data/public/tr8n/images/flags/sr-me.png +0 -0
- data/public/tr8n/images/flags/sr.png +0 -0
- data/public/tr8n/images/flags/ss.png +0 -0
- data/public/tr8n/images/flags/st.png +0 -0
- data/public/tr8n/images/flags/su.png +0 -0
- data/public/tr8n/images/flags/sv-FI.png +0 -0
- data/public/tr8n/images/flags/sv-SE.png +0 -0
- data/public/tr8n/images/flags/sv.png +0 -0
- data/public/tr8n/images/flags/sw.png +0 -0
- data/public/tr8n/images/flags/ta.png +0 -0
- data/public/tr8n/images/flags/te.png +0 -0
- data/public/tr8n/images/flags/tg.png +0 -0
- data/public/tr8n/images/flags/th.png +0 -0
- data/public/tr8n/images/flags/ti.png +0 -0
- data/public/tr8n/images/flags/tig.png +0 -0
- data/public/tr8n/images/flags/tk.png +0 -0
- data/public/tr8n/images/flags/tl.png +0 -0
- data/public/tr8n/images/flags/tlh.png +0 -0
- data/public/tr8n/images/flags/tn.png +0 -0
- data/public/tr8n/images/flags/to.png +0 -0
- data/public/tr8n/images/flags/tr.png +0 -0
- data/public/tr8n/images/flags/ts.png +0 -0
- data/public/tr8n/images/flags/tt.png +0 -0
- data/public/tr8n/images/flags/tw.png +0 -0
- data/public/tr8n/images/flags/ug.png +0 -0
- data/public/tr8n/images/flags/uk.png +0 -0
- data/public/tr8n/images/flags/ur.png +0 -0
- data/public/tr8n/images/flags/uz.png +0 -0
- data/public/tr8n/images/flags/ve.png +0 -0
- data/public/tr8n/images/flags/vi.png +0 -0
- data/public/tr8n/images/flags/vo.png +0 -0
- data/public/tr8n/images/flags/wa.png +0 -0
- data/public/tr8n/images/flags/wo.png +0 -0
- data/public/tr8n/images/flags/xh.png +0 -0
- data/public/tr8n/images/flags/yi.png +0 -0
- data/public/tr8n/images/flags/yo.png +0 -0
- data/public/tr8n/images/flags/zh-CN.png +0 -0
- data/public/tr8n/images/flags/zh-HK.png +0 -0
- data/public/tr8n/images/flags/zh-SG.png +0 -0
- data/public/tr8n/images/flags/zh-TW.png +0 -0
- data/public/tr8n/images/flags/zh.png +0 -0
- data/public/tr8n/images/flags/zu.png +0 -0
- data/public/tr8n/images/globe.gif +0 -0
- data/public/tr8n/images/help.png +0 -0
- data/public/tr8n/images/help/color_coding.png +0 -0
- data/public/tr8n/images/help/language_selector.png +0 -0
- data/public/tr8n/images/help/language_selector_default.png +0 -0
- data/public/tr8n/images/help/languages_disabled.png +0 -0
- data/public/tr8n/images/help/translator.png +0 -0
- data/public/tr8n/images/help2.png +0 -0
- data/public/tr8n/images/information.png +0 -0
- data/public/tr8n/images/keyboard.png +0 -0
- data/public/tr8n/images/language_selector_arrow.gif +0 -0
- data/public/tr8n/images/left_quote.png +0 -0
- data/public/tr8n/images/lightning.png +0 -0
- data/public/tr8n/images/loading.gif +0 -0
- data/public/tr8n/images/loading2.gif +0 -0
- data/public/tr8n/images/loading3.gif +0 -0
- data/public/tr8n/images/loading_large.gif +0 -0
- data/public/tr8n/images/lock.png +0 -0
- data/public/tr8n/images/lock_add.png +0 -0
- data/public/tr8n/images/lock_delete.png +0 -0
- data/public/tr8n/images/lock_open.png +0 -0
- data/public/tr8n/images/medals/bronze.png +0 -0
- data/public/tr8n/images/medals/gold.png +0 -0
- data/public/tr8n/images/medals/runner.png +0 -0
- data/public/tr8n/images/medals/silver.png +0 -0
- data/public/tr8n/images/pencil.png +0 -0
- data/public/tr8n/images/photo_silhouette.gif +0 -0
- data/public/tr8n/images/plus.png +0 -0
- data/public/tr8n/images/random.png +0 -0
- data/public/tr8n/images/random2.png +0 -0
- data/public/tr8n/images/rating_star0.png +0 -0
- data/public/tr8n/images/rating_star05.png +0 -0
- data/public/tr8n/images/rating_star1.png +0 -0
- data/public/tr8n/images/rating_stars.gif +0 -0
- data/public/tr8n/images/rating_stars.psd +0 -0
- data/public/tr8n/images/reply.png +0 -0
- data/public/tr8n/images/right_quote.png +0 -0
- data/public/tr8n/images/rotating_world.gif +0 -0
- data/public/tr8n/images/script.png +0 -0
- data/public/tr8n/images/script_edit.png +0 -0
- data/public/tr8n/images/script_gear.png +0 -0
- data/public/tr8n/images/site_sprite.gif +0 -0
- data/public/tr8n/images/spinner.gif +0 -0
- data/public/tr8n/images/star.png +0 -0
- data/public/tr8n/images/table_edit.png +0 -0
- data/public/tr8n/images/table_gear.png +0 -0
- data/public/tr8n/images/table_multiple.png +0 -0
- data/public/tr8n/images/thumb_down.png +0 -0
- data/public/tr8n/images/thumb_up.png +0 -0
- data/public/tr8n/images/toolbar_bg.gif +0 -0
- data/public/tr8n/images/top_left_stem.png +0 -0
- data/public/tr8n/images/top_right_stem.png +0 -0
- data/public/tr8n/images/tr8n_loading.gif +0 -0
- data/public/tr8n/images/tr8n_logo.jpg +0 -0
- data/public/tr8n/images/tr8n_logo.png +0 -0
- data/public/tr8n/images/tr8n_logo2.gif +0 -0
- data/public/tr8n/images/tr8n_logo2.png +0 -0
- data/public/tr8n/images/tr8n_logo_wiki.png +0 -0
- data/public/tr8n/images/tr8n_logo_wiki2.png +0 -0
- data/public/tr8n/images/translate_icn.gif +0 -0
- data/public/tr8n/images/wizard.png +0 -0
- data/public/tr8n/javascripts/jsDraw2D.js +24 -0
- data/public/tr8n/javascripts/keyboard_1_36.js +1214 -0
- data/public/tr8n/javascripts/keyboard_1_44.js +1735 -0
- data/public/tr8n/javascripts/shortcut.js +223 -0
- data/public/tr8n/javascripts/tr8n.js +904 -0
- data/public/tr8n/javascripts/tr8n_client_sdk.js +1182 -0
- data/public/tr8n/javascripts/tr8n_prototype_effects.js +65 -0
- data/public/tr8n/stylesheets/components.css +208 -0
- data/public/tr8n/stylesheets/keyboard_1_36.css +185 -0
- data/public/tr8n/stylesheets/keyboard_1_44.css +268 -0
- data/public/tr8n/stylesheets/layout.css +119 -0
- data/public/tr8n/stylesheets/tr8n.css +201 -0
- data/rails/init.rb +53 -0
- data/script/rails +6 -0
- data/test/performance/browsing_test.rb +9 -0
- data/test/test_helper.rb +13 -0
- data/tr8n.gemspec +40 -0
- metadata +865 -0
@@ -0,0 +1,586 @@
|
|
1
|
+
<%= tr8n_with_options_tag(:default_locale => 'en-US', :admin => true) do %>
|
2
|
+
|
3
|
+
<style>
|
4
|
+
h3 {
|
5
|
+
width:100%;
|
6
|
+
}
|
7
|
+
h4 {
|
8
|
+
font-weight:bold;
|
9
|
+
font-size:16px;
|
10
|
+
padding-left:0px;
|
11
|
+
padding-top:10px;
|
12
|
+
}
|
13
|
+
</style>
|
14
|
+
|
15
|
+
<h2 class="underscore content_hd">
|
16
|
+
GNU GENERAL PUBLIC LICENSE
|
17
|
+
<div style="padding-top:10px; color:grey; font-size: 14px;">
|
18
|
+
<p>Version 3, 29 June 2007</p>
|
19
|
+
<p>Copyright © 2007 Free Software Foundation, Inc.
|
20
|
+
<<a href="http://fsf.org/">http://fsf.org/</a>></p>
|
21
|
+
<p>Everyone is permitted to copy and distribute verbatim copies
|
22
|
+
of this license document, but changing it is not allowed.</p>
|
23
|
+
</div>
|
24
|
+
</h2>
|
25
|
+
|
26
|
+
<div class="content_bd">
|
27
|
+
|
28
|
+
<h3><a name="terms"></a>TERMS AND CONDITIONS</h3>
|
29
|
+
|
30
|
+
<h4><a name="section0"></a>0. Definitions.</h4>
|
31
|
+
|
32
|
+
<p>“This License” refers to version 3 of the GNU General Public License.</p>
|
33
|
+
|
34
|
+
<p>“Copyright” also means copyright-like laws that apply to other kinds of
|
35
|
+
works, such as semiconductor masks.</p>
|
36
|
+
|
37
|
+
<p>“The Program” refers to any copyrightable work licensed under this
|
38
|
+
License. Each licensee is addressed as “you”. “Licensees” and
|
39
|
+
“recipients” may be individuals or organizations.</p>
|
40
|
+
|
41
|
+
<p>To “modify” a work means to copy from or adapt all or part of the work
|
42
|
+
in a fashion requiring copyright permission, other than the making of an
|
43
|
+
exact copy. The resulting work is called a “modified version” of the
|
44
|
+
earlier work or a work “based on” the earlier work.</p>
|
45
|
+
|
46
|
+
<p>A “covered work” means either the unmodified Program or a work based
|
47
|
+
on the Program.</p>
|
48
|
+
|
49
|
+
<p>To “propagate” a work means to do anything with it that, without
|
50
|
+
permission, would make you directly or secondarily liable for
|
51
|
+
infringement under applicable copyright law, except executing it on a
|
52
|
+
computer or modifying a private copy. Propagation includes copying,
|
53
|
+
distribution (with or without modification), making available to the
|
54
|
+
public, and in some countries other activities as well.</p>
|
55
|
+
|
56
|
+
<p>To “convey” a work means any kind of propagation that enables other
|
57
|
+
parties to make or receive copies. Mere interaction with a user through
|
58
|
+
a computer network, with no transfer of a copy, is not conveying.</p>
|
59
|
+
|
60
|
+
<p>An interactive user interface displays “Appropriate Legal Notices”
|
61
|
+
to the extent that it includes a convenient and prominently visible
|
62
|
+
feature that (1) displays an appropriate copyright notice, and (2)
|
63
|
+
tells the user that there is no warranty for the work (except to the
|
64
|
+
extent that warranties are provided), that licensees may convey the
|
65
|
+
work under this License, and how to view a copy of this License. If
|
66
|
+
the interface presents a list of user commands or options, such as a
|
67
|
+
menu, a prominent item in the list meets this criterion.</p>
|
68
|
+
|
69
|
+
<h4><a name="section1"></a>1. Source Code.</h4>
|
70
|
+
|
71
|
+
<p>The “source code” for a work means the preferred form of the work
|
72
|
+
for making modifications to it. “Object code” means any non-source
|
73
|
+
form of a work.</p>
|
74
|
+
|
75
|
+
<p>A “Standard Interface” means an interface that either is an official
|
76
|
+
standard defined by a recognized standards body, or, in the case of
|
77
|
+
interfaces specified for a particular programming language, one that
|
78
|
+
is widely used among developers working in that language.</p>
|
79
|
+
|
80
|
+
<p>The “System Libraries” of an executable work include anything, other
|
81
|
+
than the work as a whole, that (a) is included in the normal form of
|
82
|
+
packaging a Major Component, but which is not part of that Major
|
83
|
+
Component, and (b) serves only to enable use of the work with that
|
84
|
+
Major Component, or to implement a Standard Interface for which an
|
85
|
+
implementation is available to the public in source code form. A
|
86
|
+
“Major Component”, in this context, means a major essential component
|
87
|
+
(kernel, window system, and so on) of the specific operating system
|
88
|
+
(if any) on which the executable work runs, or a compiler used to
|
89
|
+
produce the work, or an object code interpreter used to run it.</p>
|
90
|
+
|
91
|
+
<p>The “Corresponding Source” for a work in object code form means all
|
92
|
+
the source code needed to generate, install, and (for an executable
|
93
|
+
work) run the object code and to modify the work, including scripts to
|
94
|
+
control those activities. However, it does not include the work's
|
95
|
+
System Libraries, or general-purpose tools or generally available free
|
96
|
+
programs which are used unmodified in performing those activities but
|
97
|
+
which are not part of the work. For example, Corresponding Source
|
98
|
+
includes interface definition files associated with source files for
|
99
|
+
the work, and the source code for shared libraries and dynamically
|
100
|
+
linked subprograms that the work is specifically designed to require,
|
101
|
+
such as by intimate data communication or control flow between those
|
102
|
+
subprograms and other parts of the work.</p>
|
103
|
+
|
104
|
+
<p>The Corresponding Source need not include anything that users
|
105
|
+
can regenerate automatically from other parts of the Corresponding
|
106
|
+
Source.</p>
|
107
|
+
|
108
|
+
<p>The Corresponding Source for a work in source code form is that
|
109
|
+
same work.</p>
|
110
|
+
|
111
|
+
<h4><a name="section2"></a>2. Basic Permissions.</h4>
|
112
|
+
|
113
|
+
<p>All rights granted under this License are granted for the term of
|
114
|
+
copyright on the Program, and are irrevocable provided the stated
|
115
|
+
conditions are met. This License explicitly affirms your unlimited
|
116
|
+
permission to run the unmodified Program. The output from running a
|
117
|
+
covered work is covered by this License only if the output, given its
|
118
|
+
content, constitutes a covered work. This License acknowledges your
|
119
|
+
rights of fair use or other equivalent, as provided by copyright law.</p>
|
120
|
+
|
121
|
+
<p>You may make, run and propagate covered works that you do not
|
122
|
+
convey, without conditions so long as your license otherwise remains
|
123
|
+
in force. You may convey covered works to others for the sole purpose
|
124
|
+
of having them make modifications exclusively for you, or provide you
|
125
|
+
with facilities for running those works, provided that you comply with
|
126
|
+
the terms of this License in conveying all material for which you do
|
127
|
+
not control copyright. Those thus making or running the covered works
|
128
|
+
for you must do so exclusively on your behalf, under your direction
|
129
|
+
and control, on terms that prohibit them from making any copies of
|
130
|
+
your copyrighted material outside their relationship with you.</p>
|
131
|
+
|
132
|
+
<p>Conveying under any other circumstances is permitted solely under
|
133
|
+
the conditions stated below. Sublicensing is not allowed; section 10
|
134
|
+
makes it unnecessary.</p>
|
135
|
+
|
136
|
+
<h4><a name="section3"></a>3. Protecting Users' Legal Rights From Anti-Circumvention Law.</h4>
|
137
|
+
|
138
|
+
<p>No covered work shall be deemed part of an effective technological
|
139
|
+
measure under any applicable law fulfilling obligations under article
|
140
|
+
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
141
|
+
similar laws prohibiting or restricting circumvention of such
|
142
|
+
measures.</p>
|
143
|
+
|
144
|
+
<p>When you convey a covered work, you waive any legal power to forbid
|
145
|
+
circumvention of technological measures to the extent such circumvention
|
146
|
+
is effected by exercising rights under this License with respect to
|
147
|
+
the covered work, and you disclaim any intention to limit operation or
|
148
|
+
modification of the work as a means of enforcing, against the work's
|
149
|
+
users, your or third parties' legal rights to forbid circumvention of
|
150
|
+
technological measures.</p>
|
151
|
+
|
152
|
+
<h4><a name="section4"></a>4. Conveying Verbatim Copies.</h4>
|
153
|
+
|
154
|
+
<p>You may convey verbatim copies of the Program's source code as you
|
155
|
+
receive it, in any medium, provided that you conspicuously and
|
156
|
+
appropriately publish on each copy an appropriate copyright notice;
|
157
|
+
keep intact all notices stating that this License and any
|
158
|
+
non-permissive terms added in accord with section 7 apply to the code;
|
159
|
+
keep intact all notices of the absence of any warranty; and give all
|
160
|
+
recipients a copy of this License along with the Program.</p>
|
161
|
+
|
162
|
+
<p>You may charge any price or no price for each copy that you convey,
|
163
|
+
and you may offer support or warranty protection for a fee.</p>
|
164
|
+
|
165
|
+
<h4><a name="section5"></a>5. Conveying Modified Source Versions.</h4>
|
166
|
+
|
167
|
+
<p>You may convey a work based on the Program, or the modifications to
|
168
|
+
produce it from the Program, in the form of source code under the
|
169
|
+
terms of section 4, provided that you also meet all of these conditions:</p>
|
170
|
+
|
171
|
+
<ul>
|
172
|
+
<li>a) The work must carry prominent notices stating that you modified
|
173
|
+
it, and giving a relevant date.</li>
|
174
|
+
|
175
|
+
<li>b) The work must carry prominent notices stating that it is
|
176
|
+
released under this License and any conditions added under section
|
177
|
+
7. This requirement modifies the requirement in section 4 to
|
178
|
+
“keep intact all notices”.</li>
|
179
|
+
|
180
|
+
<li>c) You must license the entire work, as a whole, under this
|
181
|
+
License to anyone who comes into possession of a copy. This
|
182
|
+
License will therefore apply, along with any applicable section 7
|
183
|
+
additional terms, to the whole of the work, and all its parts,
|
184
|
+
regardless of how they are packaged. This License gives no
|
185
|
+
permission to license the work in any other way, but it does not
|
186
|
+
invalidate such permission if you have separately received it.</li>
|
187
|
+
|
188
|
+
<li>d) If the work has interactive user interfaces, each must display
|
189
|
+
Appropriate Legal Notices; however, if the Program has interactive
|
190
|
+
interfaces that do not display Appropriate Legal Notices, your
|
191
|
+
work need not make them do so.</li>
|
192
|
+
</ul>
|
193
|
+
|
194
|
+
<p>A compilation of a covered work with other separate and independent
|
195
|
+
works, which are not by their nature extensions of the covered work,
|
196
|
+
and which are not combined with it such as to form a larger program,
|
197
|
+
in or on a volume of a storage or distribution medium, is called an
|
198
|
+
“aggregate” if the compilation and its resulting copyright are not
|
199
|
+
used to limit the access or legal rights of the compilation's users
|
200
|
+
beyond what the individual works permit. Inclusion of a covered work
|
201
|
+
in an aggregate does not cause this License to apply to the other
|
202
|
+
parts of the aggregate.</p>
|
203
|
+
|
204
|
+
<h4><a name="section6"></a>6. Conveying Non-Source Forms.</h4>
|
205
|
+
|
206
|
+
<p>You may convey a covered work in object code form under the terms
|
207
|
+
of sections 4 and 5, provided that you also convey the
|
208
|
+
machine-readable Corresponding Source under the terms of this License,
|
209
|
+
in one of these ways:</p>
|
210
|
+
|
211
|
+
<ul>
|
212
|
+
<li>a) Convey the object code in, or embodied in, a physical product
|
213
|
+
(including a physical distribution medium), accompanied by the
|
214
|
+
Corresponding Source fixed on a durable physical medium
|
215
|
+
customarily used for software interchange.</li>
|
216
|
+
|
217
|
+
<li>b) Convey the object code in, or embodied in, a physical product
|
218
|
+
(including a physical distribution medium), accompanied by a
|
219
|
+
written offer, valid for at least three years and valid for as
|
220
|
+
long as you offer spare parts or customer support for that product
|
221
|
+
model, to give anyone who possesses the object code either (1) a
|
222
|
+
copy of the Corresponding Source for all the software in the
|
223
|
+
product that is covered by this License, on a durable physical
|
224
|
+
medium customarily used for software interchange, for a price no
|
225
|
+
more than your reasonable cost of physically performing this
|
226
|
+
conveying of source, or (2) access to copy the
|
227
|
+
Corresponding Source from a network server at no charge.</li>
|
228
|
+
|
229
|
+
<li>c) Convey individual copies of the object code with a copy of the
|
230
|
+
written offer to provide the Corresponding Source. This
|
231
|
+
alternative is allowed only occasionally and noncommercially, and
|
232
|
+
only if you received the object code with such an offer, in accord
|
233
|
+
with subsection 6b.</li>
|
234
|
+
|
235
|
+
<li>d) Convey the object code by offering access from a designated
|
236
|
+
place (gratis or for a charge), and offer equivalent access to the
|
237
|
+
Corresponding Source in the same way through the same place at no
|
238
|
+
further charge. You need not require recipients to copy the
|
239
|
+
Corresponding Source along with the object code. If the place to
|
240
|
+
copy the object code is a network server, the Corresponding Source
|
241
|
+
may be on a different server (operated by you or a third party)
|
242
|
+
that supports equivalent copying facilities, provided you maintain
|
243
|
+
clear directions next to the object code saying where to find the
|
244
|
+
Corresponding Source. Regardless of what server hosts the
|
245
|
+
Corresponding Source, you remain obligated to ensure that it is
|
246
|
+
available for as long as needed to satisfy these requirements.</li>
|
247
|
+
|
248
|
+
<li>e) Convey the object code using peer-to-peer transmission, provided
|
249
|
+
you inform other peers where the object code and Corresponding
|
250
|
+
Source of the work are being offered to the general public at no
|
251
|
+
charge under subsection 6d.</li>
|
252
|
+
</ul>
|
253
|
+
|
254
|
+
<p>A separable portion of the object code, whose source code is excluded
|
255
|
+
from the Corresponding Source as a System Library, need not be
|
256
|
+
included in conveying the object code work.</p>
|
257
|
+
|
258
|
+
<p>A “User Product” is either (1) a “consumer product”, which means any
|
259
|
+
tangible personal property which is normally used for personal, family,
|
260
|
+
or household purposes, or (2) anything designed or sold for incorporation
|
261
|
+
into a dwelling. In determining whether a product is a consumer product,
|
262
|
+
doubtful cases shall be resolved in favor of coverage. For a particular
|
263
|
+
product received by a particular user, “normally used” refers to a
|
264
|
+
typical or common use of that class of product, regardless of the status
|
265
|
+
of the particular user or of the way in which the particular user
|
266
|
+
actually uses, or expects or is expected to use, the product. A product
|
267
|
+
is a consumer product regardless of whether the product has substantial
|
268
|
+
commercial, industrial or non-consumer uses, unless such uses represent
|
269
|
+
the only significant mode of use of the product.</p>
|
270
|
+
|
271
|
+
<p>“Installation Information” for a User Product means any methods,
|
272
|
+
procedures, authorization keys, or other information required to install
|
273
|
+
and execute modified versions of a covered work in that User Product from
|
274
|
+
a modified version of its Corresponding Source. The information must
|
275
|
+
suffice to ensure that the continued functioning of the modified object
|
276
|
+
code is in no case prevented or interfered with solely because
|
277
|
+
modification has been made.</p>
|
278
|
+
|
279
|
+
<p>If you convey an object code work under this section in, or with, or
|
280
|
+
specifically for use in, a User Product, and the conveying occurs as
|
281
|
+
part of a transaction in which the right of possession and use of the
|
282
|
+
User Product is transferred to the recipient in perpetuity or for a
|
283
|
+
fixed term (regardless of how the transaction is characterized), the
|
284
|
+
Corresponding Source conveyed under this section must be accompanied
|
285
|
+
by the Installation Information. But this requirement does not apply
|
286
|
+
if neither you nor any third party retains the ability to install
|
287
|
+
modified object code on the User Product (for example, the work has
|
288
|
+
been installed in ROM).</p>
|
289
|
+
|
290
|
+
<p>The requirement to provide Installation Information does not include a
|
291
|
+
requirement to continue to provide support service, warranty, or updates
|
292
|
+
for a work that has been modified or installed by the recipient, or for
|
293
|
+
the User Product in which it has been modified or installed. Access to a
|
294
|
+
network may be denied when the modification itself materially and
|
295
|
+
adversely affects the operation of the network or violates the rules and
|
296
|
+
protocols for communication across the network.</p>
|
297
|
+
|
298
|
+
<p>Corresponding Source conveyed, and Installation Information provided,
|
299
|
+
in accord with this section must be in a format that is publicly
|
300
|
+
documented (and with an implementation available to the public in
|
301
|
+
source code form), and must require no special password or key for
|
302
|
+
unpacking, reading or copying.</p>
|
303
|
+
|
304
|
+
<h4><a name="section7"></a>7. Additional Terms.</h4>
|
305
|
+
|
306
|
+
<p>“Additional permissions” are terms that supplement the terms of this
|
307
|
+
License by making exceptions from one or more of its conditions.
|
308
|
+
Additional permissions that are applicable to the entire Program shall
|
309
|
+
be treated as though they were included in this License, to the extent
|
310
|
+
that they are valid under applicable law. If additional permissions
|
311
|
+
apply only to part of the Program, that part may be used separately
|
312
|
+
under those permissions, but the entire Program remains governed by
|
313
|
+
this License without regard to the additional permissions.</p>
|
314
|
+
|
315
|
+
<p>When you convey a copy of a covered work, you may at your option
|
316
|
+
remove any additional permissions from that copy, or from any part of
|
317
|
+
it. (Additional permissions may be written to require their own
|
318
|
+
removal in certain cases when you modify the work.) You may place
|
319
|
+
additional permissions on material, added by you to a covered work,
|
320
|
+
for which you have or can give appropriate copyright permission.</p>
|
321
|
+
|
322
|
+
<p>Notwithstanding any other provision of this License, for material you
|
323
|
+
add to a covered work, you may (if authorized by the copyright holders of
|
324
|
+
that material) supplement the terms of this License with terms:</p>
|
325
|
+
|
326
|
+
<ul>
|
327
|
+
<li>a) Disclaiming warranty or limiting liability differently from the
|
328
|
+
terms of sections 15 and 16 of this License; or</li>
|
329
|
+
|
330
|
+
<li>b) Requiring preservation of specified reasonable legal notices or
|
331
|
+
author attributions in that material or in the Appropriate Legal
|
332
|
+
Notices displayed by works containing it; or</li>
|
333
|
+
|
334
|
+
<li>c) Prohibiting misrepresentation of the origin of that material, or
|
335
|
+
requiring that modified versions of such material be marked in
|
336
|
+
reasonable ways as different from the original version; or</li>
|
337
|
+
|
338
|
+
<li>d) Limiting the use for publicity purposes of names of licensors or
|
339
|
+
authors of the material; or</li>
|
340
|
+
|
341
|
+
<li>e) Declining to grant rights under trademark law for use of some
|
342
|
+
trade names, trademarks, or service marks; or</li>
|
343
|
+
|
344
|
+
<li>f) Requiring indemnification of licensors and authors of that
|
345
|
+
material by anyone who conveys the material (or modified versions of
|
346
|
+
it) with contractual assumptions of liability to the recipient, for
|
347
|
+
any liability that these contractual assumptions directly impose on
|
348
|
+
those licensors and authors.</li>
|
349
|
+
</ul>
|
350
|
+
|
351
|
+
<p>All other non-permissive additional terms are considered “further
|
352
|
+
restrictions” within the meaning of section 10. If the Program as you
|
353
|
+
received it, or any part of it, contains a notice stating that it is
|
354
|
+
governed by this License along with a term that is a further
|
355
|
+
restriction, you may remove that term. If a license document contains
|
356
|
+
a further restriction but permits relicensing or conveying under this
|
357
|
+
License, you may add to a covered work material governed by the terms
|
358
|
+
of that license document, provided that the further restriction does
|
359
|
+
not survive such relicensing or conveying.</p>
|
360
|
+
|
361
|
+
<p>If you add terms to a covered work in accord with this section, you
|
362
|
+
must place, in the relevant source files, a statement of the
|
363
|
+
additional terms that apply to those files, or a notice indicating
|
364
|
+
where to find the applicable terms.</p>
|
365
|
+
|
366
|
+
<p>Additional terms, permissive or non-permissive, may be stated in the
|
367
|
+
form of a separately written license, or stated as exceptions;
|
368
|
+
the above requirements apply either way.</p>
|
369
|
+
|
370
|
+
<h4><a name="section8"></a>8. Termination.</h4>
|
371
|
+
|
372
|
+
<p>You may not propagate or modify a covered work except as expressly
|
373
|
+
provided under this License. Any attempt otherwise to propagate or
|
374
|
+
modify it is void, and will automatically terminate your rights under
|
375
|
+
this License (including any patent licenses granted under the third
|
376
|
+
paragraph of section 11).</p>
|
377
|
+
|
378
|
+
<p>However, if you cease all violation of this License, then your
|
379
|
+
license from a particular copyright holder is reinstated (a)
|
380
|
+
provisionally, unless and until the copyright holder explicitly and
|
381
|
+
finally terminates your license, and (b) permanently, if the copyright
|
382
|
+
holder fails to notify you of the violation by some reasonable means
|
383
|
+
prior to 60 days after the cessation.</p>
|
384
|
+
|
385
|
+
<p>Moreover, your license from a particular copyright holder is
|
386
|
+
reinstated permanently if the copyright holder notifies you of the
|
387
|
+
violation by some reasonable means, this is the first time you have
|
388
|
+
received notice of violation of this License (for any work) from that
|
389
|
+
copyright holder, and you cure the violation prior to 30 days after
|
390
|
+
your receipt of the notice.</p>
|
391
|
+
|
392
|
+
<p>Termination of your rights under this section does not terminate the
|
393
|
+
licenses of parties who have received copies or rights from you under
|
394
|
+
this License. If your rights have been terminated and not permanently
|
395
|
+
reinstated, you do not qualify to receive new licenses for the same
|
396
|
+
material under section 10.</p>
|
397
|
+
|
398
|
+
<h4><a name="section9"></a>9. Acceptance Not Required for Having Copies.</h4>
|
399
|
+
|
400
|
+
<p>You are not required to accept this License in order to receive or
|
401
|
+
run a copy of the Program. Ancillary propagation of a covered work
|
402
|
+
occurring solely as a consequence of using peer-to-peer transmission
|
403
|
+
to receive a copy likewise does not require acceptance. However,
|
404
|
+
nothing other than this License grants you permission to propagate or
|
405
|
+
modify any covered work. These actions infringe copyright if you do
|
406
|
+
not accept this License. Therefore, by modifying or propagating a
|
407
|
+
covered work, you indicate your acceptance of this License to do so.</p>
|
408
|
+
|
409
|
+
<h4><a name="section10"></a>10. Automatic Licensing of Downstream Recipients.</h4>
|
410
|
+
|
411
|
+
<p>Each time you convey a covered work, the recipient automatically
|
412
|
+
receives a license from the original licensors, to run, modify and
|
413
|
+
propagate that work, subject to this License. You are not responsible
|
414
|
+
for enforcing compliance by third parties with this License.</p>
|
415
|
+
|
416
|
+
<p>An “entity transaction” is a transaction transferring control of an
|
417
|
+
organization, or substantially all assets of one, or subdividing an
|
418
|
+
organization, or merging organizations. If propagation of a covered
|
419
|
+
work results from an entity transaction, each party to that
|
420
|
+
transaction who receives a copy of the work also receives whatever
|
421
|
+
licenses to the work the party's predecessor in interest had or could
|
422
|
+
give under the previous paragraph, plus a right to possession of the
|
423
|
+
Corresponding Source of the work from the predecessor in interest, if
|
424
|
+
the predecessor has it or can get it with reasonable efforts.</p>
|
425
|
+
|
426
|
+
<p>You may not impose any further restrictions on the exercise of the
|
427
|
+
rights granted or affirmed under this License. For example, you may
|
428
|
+
not impose a license fee, royalty, or other charge for exercise of
|
429
|
+
rights granted under this License, and you may not initiate litigation
|
430
|
+
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
431
|
+
any patent claim is infringed by making, using, selling, offering for
|
432
|
+
sale, or importing the Program or any portion of it.</p>
|
433
|
+
|
434
|
+
<h4><a name="section11"></a>11. Patents.</h4>
|
435
|
+
|
436
|
+
<p>A “contributor” is a copyright holder who authorizes use under this
|
437
|
+
License of the Program or a work on which the Program is based. The
|
438
|
+
work thus licensed is called the contributor's “contributor version”.</p>
|
439
|
+
|
440
|
+
<p>A contributor's “essential patent claims” are all patent claims
|
441
|
+
owned or controlled by the contributor, whether already acquired or
|
442
|
+
hereafter acquired, that would be infringed by some manner, permitted
|
443
|
+
by this License, of making, using, or selling its contributor version,
|
444
|
+
but do not include claims that would be infringed only as a
|
445
|
+
consequence of further modification of the contributor version. For
|
446
|
+
purposes of this definition, “control” includes the right to grant
|
447
|
+
patent sublicenses in a manner consistent with the requirements of
|
448
|
+
this License.</p>
|
449
|
+
|
450
|
+
<p>Each contributor grants you a non-exclusive, worldwide, royalty-free
|
451
|
+
patent license under the contributor's essential patent claims, to
|
452
|
+
make, use, sell, offer for sale, import and otherwise run, modify and
|
453
|
+
propagate the contents of its contributor version.</p>
|
454
|
+
|
455
|
+
<p>In the following three paragraphs, a “patent license” is any express
|
456
|
+
agreement or commitment, however denominated, not to enforce a patent
|
457
|
+
(such as an express permission to practice a patent or covenant not to
|
458
|
+
sue for patent infringement). To “grant” such a patent license to a
|
459
|
+
party means to make such an agreement or commitment not to enforce a
|
460
|
+
patent against the party.</p>
|
461
|
+
|
462
|
+
<p>If you convey a covered work, knowingly relying on a patent license,
|
463
|
+
and the Corresponding Source of the work is not available for anyone
|
464
|
+
to copy, free of charge and under the terms of this License, through a
|
465
|
+
publicly available network server or other readily accessible means,
|
466
|
+
then you must either (1) cause the Corresponding Source to be so
|
467
|
+
available, or (2) arrange to deprive yourself of the benefit of the
|
468
|
+
patent license for this particular work, or (3) arrange, in a manner
|
469
|
+
consistent with the requirements of this License, to extend the patent
|
470
|
+
license to downstream recipients. “Knowingly relying” means you have
|
471
|
+
actual knowledge that, but for the patent license, your conveying the
|
472
|
+
covered work in a country, or your recipient's use of the covered work
|
473
|
+
in a country, would infringe one or more identifiable patents in that
|
474
|
+
country that you have reason to believe are valid.</p>
|
475
|
+
|
476
|
+
<p>If, pursuant to or in connection with a single transaction or
|
477
|
+
arrangement, you convey, or propagate by procuring conveyance of, a
|
478
|
+
covered work, and grant a patent license to some of the parties
|
479
|
+
receiving the covered work authorizing them to use, propagate, modify
|
480
|
+
or convey a specific copy of the covered work, then the patent license
|
481
|
+
you grant is automatically extended to all recipients of the covered
|
482
|
+
work and works based on it.</p>
|
483
|
+
|
484
|
+
<p>A patent license is “discriminatory” if it does not include within
|
485
|
+
the scope of its coverage, prohibits the exercise of, or is
|
486
|
+
conditioned on the non-exercise of one or more of the rights that are
|
487
|
+
specifically granted under this License. You may not convey a covered
|
488
|
+
work if you are a party to an arrangement with a third party that is
|
489
|
+
in the business of distributing software, under which you make payment
|
490
|
+
to the third party based on the extent of your activity of conveying
|
491
|
+
the work, and under which the third party grants, to any of the
|
492
|
+
parties who would receive the covered work from you, a discriminatory
|
493
|
+
patent license (a) in connection with copies of the covered work
|
494
|
+
conveyed by you (or copies made from those copies), or (b) primarily
|
495
|
+
for and in connection with specific products or compilations that
|
496
|
+
contain the covered work, unless you entered into that arrangement,
|
497
|
+
or that patent license was granted, prior to 28 March 2007.</p>
|
498
|
+
|
499
|
+
<p>Nothing in this License shall be construed as excluding or limiting
|
500
|
+
any implied license or other defenses to infringement that may
|
501
|
+
otherwise be available to you under applicable patent law.</p>
|
502
|
+
|
503
|
+
<h4><a name="section12"></a>12. No Surrender of Others' Freedom.</h4>
|
504
|
+
|
505
|
+
<p>If conditions are imposed on you (whether by court order, agreement or
|
506
|
+
otherwise) that contradict the conditions of this License, they do not
|
507
|
+
excuse you from the conditions of this License. If you cannot convey a
|
508
|
+
covered work so as to satisfy simultaneously your obligations under this
|
509
|
+
License and any other pertinent obligations, then as a consequence you may
|
510
|
+
not convey it at all. For example, if you agree to terms that obligate you
|
511
|
+
to collect a royalty for further conveying from those to whom you convey
|
512
|
+
the Program, the only way you could satisfy both those terms and this
|
513
|
+
License would be to refrain entirely from conveying the Program.</p>
|
514
|
+
|
515
|
+
<h4><a name="section13"></a>13. Use with the GNU Affero General Public License.</h4>
|
516
|
+
|
517
|
+
<p>Notwithstanding any other provision of this License, you have
|
518
|
+
permission to link or combine any covered work with a work licensed
|
519
|
+
under version 3 of the GNU Affero General Public License into a single
|
520
|
+
combined work, and to convey the resulting work. The terms of this
|
521
|
+
License will continue to apply to the part which is the covered work,
|
522
|
+
but the special requirements of the GNU Affero General Public License,
|
523
|
+
section 13, concerning interaction through a network will apply to the
|
524
|
+
combination as such.</p>
|
525
|
+
|
526
|
+
<h4><a name="section14"></a>14. Revised Versions of this License.</h4>
|
527
|
+
|
528
|
+
<p>The Free Software Foundation may publish revised and/or new versions of
|
529
|
+
the GNU General Public License from time to time. Such new versions will
|
530
|
+
be similar in spirit to the present version, but may differ in detail to
|
531
|
+
address new problems or concerns.</p>
|
532
|
+
|
533
|
+
<p>Each version is given a distinguishing version number. If the
|
534
|
+
Program specifies that a certain numbered version of the GNU General
|
535
|
+
Public License “or any later version” applies to it, you have the
|
536
|
+
option of following the terms and conditions either of that numbered
|
537
|
+
version or of any later version published by the Free Software
|
538
|
+
Foundation. If the Program does not specify a version number of the
|
539
|
+
GNU General Public License, you may choose any version ever published
|
540
|
+
by the Free Software Foundation.</p>
|
541
|
+
|
542
|
+
<p>If the Program specifies that a proxy can decide which future
|
543
|
+
versions of the GNU General Public License can be used, that proxy's
|
544
|
+
public statement of acceptance of a version permanently authorizes you
|
545
|
+
to choose that version for the Program.</p>
|
546
|
+
|
547
|
+
<p>Later license versions may give you additional or different
|
548
|
+
permissions. However, no additional obligations are imposed on any
|
549
|
+
author or copyright holder as a result of your choosing to follow a
|
550
|
+
later version.</p>
|
551
|
+
|
552
|
+
<h4><a name="section15"></a>15. Disclaimer of Warranty.</h4>
|
553
|
+
|
554
|
+
<p>THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
555
|
+
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
556
|
+
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY
|
557
|
+
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
558
|
+
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
559
|
+
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
560
|
+
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
561
|
+
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.</p>
|
562
|
+
|
563
|
+
<h4><a name="section16"></a>16. Limitation of Liability.</h4>
|
564
|
+
|
565
|
+
<p>IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
566
|
+
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
567
|
+
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
568
|
+
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
569
|
+
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
570
|
+
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
571
|
+
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
572
|
+
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
573
|
+
SUCH DAMAGES.</p>
|
574
|
+
|
575
|
+
<h4><a name="section17"></a>17. Interpretation of Sections 15 and 16.</h4>
|
576
|
+
|
577
|
+
<p>If the disclaimer of warranty and limitation of liability provided
|
578
|
+
above cannot be given local legal effect according to their terms,
|
579
|
+
reviewing courts shall apply local law that most closely approximates
|
580
|
+
an absolute waiver of all civil liability in connection with the
|
581
|
+
Program, unless a warranty or assumption of liability accompanies a
|
582
|
+
copy of the Program in return for a fee.</p>
|
583
|
+
|
584
|
+
</div>
|
585
|
+
|
586
|
+
<% end %>
|