tr8n 3.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (751) hide show
  1. data/.project +18 -0
  2. data/Gemfile +34 -0
  3. data/Gemfile.lock +79 -0
  4. data/LICENSE +18 -0
  5. data/README.rdoc +116 -0
  6. data/Rakefile +29 -0
  7. data/VERSION +1 -0
  8. data/app/controllers/application_controller.rb +28 -0
  9. data/app/controllers/tr8n/admin/base_controller.rb +65 -0
  10. data/app/controllers/tr8n/admin/clientsdk_controller.rb +34 -0
  11. data/app/controllers/tr8n/admin/domain_controller.rb +77 -0
  12. data/app/controllers/tr8n/admin/forum_controller.rb +58 -0
  13. data/app/controllers/tr8n/admin/glossary_controller.rb +56 -0
  14. data/app/controllers/tr8n/admin/language_controller.rb +129 -0
  15. data/app/controllers/tr8n/admin/translation_controller.rb +64 -0
  16. data/app/controllers/tr8n/admin/translation_key_controller.rb +157 -0
  17. data/app/controllers/tr8n/admin/translator_controller.rb +119 -0
  18. data/app/controllers/tr8n/api/v1/base_controller.rb +81 -0
  19. data/app/controllers/tr8n/api/v1/language_controller.rb +107 -0
  20. data/app/controllers/tr8n/api/v1/translation_controller.rb +75 -0
  21. data/app/controllers/tr8n/api/v1/translator_controller.rb +34 -0
  22. data/app/controllers/tr8n/awards_controller.rb +43 -0
  23. data/app/controllers/tr8n/base_controller.rb +206 -0
  24. data/app/controllers/tr8n/dashboard_controller.rb +32 -0
  25. data/app/controllers/tr8n/forum_controller.rb +100 -0
  26. data/app/controllers/tr8n/glossary_controller.rb +40 -0
  27. data/app/controllers/tr8n/help_controller.rb +40 -0
  28. data/app/controllers/tr8n/home_controller.rb +51 -0
  29. data/app/controllers/tr8n/language_cases_controller.rb +82 -0
  30. data/app/controllers/tr8n/language_controller.rb +372 -0
  31. data/app/controllers/tr8n/login_controller.rb +86 -0
  32. data/app/controllers/tr8n/phrases_controller.rb +293 -0
  33. data/app/controllers/tr8n/translations_controller.rb +194 -0
  34. data/app/controllers/tr8n/translator_controller.rb +83 -0
  35. data/app/helpers/application_helper.rb +27 -0
  36. data/app/helpers/tr8n/admin/base_helper.rb +84 -0
  37. data/app/helpers/tr8n/base_helper.rb +44 -0
  38. data/app/helpers/tr8n/dashboard_helper.rb +43 -0
  39. data/app/models/tr8n/base_filter.rb +68 -0
  40. data/app/models/tr8n/daily_language_metric.rb +42 -0
  41. data/app/models/tr8n/date_rule.rb +123 -0
  42. data/app/models/tr8n/gender_list_rule.rb +247 -0
  43. data/app/models/tr8n/gender_rule.rb +140 -0
  44. data/app/models/tr8n/glossary.rb +27 -0
  45. data/app/models/tr8n/glossary_filter.rb +33 -0
  46. data/app/models/tr8n/integration/ru/russian_gender_list_rule.rb +60 -0
  47. data/app/models/tr8n/integration/ru/russian_numeric_rule.rb +64 -0
  48. data/app/models/tr8n/ip_location.rb +74 -0
  49. data/app/models/tr8n/ip_location_filter.rb +34 -0
  50. data/app/models/tr8n/language.rb +318 -0
  51. data/app/models/tr8n/language_case.rb +141 -0
  52. data/app/models/tr8n/language_case_filter.rb +30 -0
  53. data/app/models/tr8n/language_case_rule.rb +187 -0
  54. data/app/models/tr8n/language_case_rule_filter.rb +30 -0
  55. data/app/models/tr8n/language_case_value_map.rb +100 -0
  56. data/app/models/tr8n/language_case_value_map_filter.rb +41 -0
  57. data/app/models/tr8n/language_filter.rb +75 -0
  58. data/app/models/tr8n/language_forum_abuse_report.rb +33 -0
  59. data/app/models/tr8n/language_forum_abuse_report_filter.rb +30 -0
  60. data/app/models/tr8n/language_forum_message.rb +46 -0
  61. data/app/models/tr8n/language_forum_message_filter.rb +34 -0
  62. data/app/models/tr8n/language_forum_topic.rb +41 -0
  63. data/app/models/tr8n/language_forum_topic_filter.rb +34 -0
  64. data/app/models/tr8n/language_metric.rb +91 -0
  65. data/app/models/tr8n/language_metric_filter.rb +63 -0
  66. data/app/models/tr8n/language_rule.rb +117 -0
  67. data/app/models/tr8n/language_rule_filter.rb +45 -0
  68. data/app/models/tr8n/language_user.rb +61 -0
  69. data/app/models/tr8n/language_user_filter.rb +34 -0
  70. data/app/models/tr8n/list_rule.rb +118 -0
  71. data/app/models/tr8n/monthly_language_metric.rb +34 -0
  72. data/app/models/tr8n/numeric_rule.rb +175 -0
  73. data/app/models/tr8n/total_language_metric.rb +59 -0
  74. data/app/models/tr8n/translation.rb +299 -0
  75. data/app/models/tr8n/translation_domain.rb +48 -0
  76. data/app/models/tr8n/translation_domain_filter.rb +26 -0
  77. data/app/models/tr8n/translation_filter.rb +34 -0
  78. data/app/models/tr8n/translation_key.rb +625 -0
  79. data/app/models/tr8n/translation_key_comment.rb +37 -0
  80. data/app/models/tr8n/translation_key_comment_filter.rb +30 -0
  81. data/app/models/tr8n/translation_key_filter.rb +45 -0
  82. data/app/models/tr8n/translation_key_lock.rb +59 -0
  83. data/app/models/tr8n/translation_key_lock_filter.rb +30 -0
  84. data/app/models/tr8n/translation_key_source.rb +58 -0
  85. data/app/models/tr8n/translation_key_source_filter.rb +30 -0
  86. data/app/models/tr8n/translation_source.rb +52 -0
  87. data/app/models/tr8n/translation_source_filter.rb +30 -0
  88. data/app/models/tr8n/translation_vote.rb +36 -0
  89. data/app/models/tr8n/translation_vote_filter.rb +34 -0
  90. data/app/models/tr8n/translator.rb +301 -0
  91. data/app/models/tr8n/translator_filter.rb +46 -0
  92. data/app/models/tr8n/translator_following.rb +38 -0
  93. data/app/models/tr8n/translator_following_filter.rb +34 -0
  94. data/app/models/tr8n/translator_log.rb +120 -0
  95. data/app/models/tr8n/translator_log_filter.rb +49 -0
  96. data/app/models/tr8n/translator_metric.rb +83 -0
  97. data/app/models/tr8n/translator_metric_filter.rb +38 -0
  98. data/app/models/tr8n/translator_report.rb +82 -0
  99. data/app/models/tr8n/translator_report_filter.rb +30 -0
  100. data/app/models/tr8n/value_rule.rb +117 -0
  101. data/app/views/layouts/_footer.html.erb +15 -0
  102. data/app/views/layouts/_header.html.erb +12 -0
  103. data/app/views/layouts/_html_head.html.erb +5 -0
  104. data/app/views/layouts/tr8n.html.erb +21 -0
  105. data/app/views/layouts/tr8n_admin.html.erb +33 -0
  106. data/app/views/tr8n/admin/clientsdk/index.html.erb +133 -0
  107. data/app/views/tr8n/admin/clientsdk/lb_samples.html.erb +54 -0
  108. data/app/views/tr8n/admin/common/_footer.html.erb +1 -0
  109. data/app/views/tr8n/admin/common/_header.html.erb +30 -0
  110. data/app/views/tr8n/admin/common/_lightbox_buttons.html.erb +5 -0
  111. data/app/views/tr8n/admin/common/_paginator.html.erb +20 -0
  112. data/app/views/tr8n/admin/domain/_tabs.html.erb +23 -0
  113. data/app/views/tr8n/admin/domain/index.html.erb +33 -0
  114. data/app/views/tr8n/admin/domain/key_sources.rhtml +53 -0
  115. data/app/views/tr8n/admin/domain/lb_caller.html.erb +35 -0
  116. data/app/views/tr8n/admin/domain/sources.html.erb +35 -0
  117. data/app/views/tr8n/admin/forum/_tabs.html.erb +22 -0
  118. data/app/views/tr8n/admin/forum/index.html.erb +34 -0
  119. data/app/views/tr8n/admin/forum/messages.html.erb +33 -0
  120. data/app/views/tr8n/admin/forum/reports.html.erb +50 -0
  121. data/app/views/tr8n/admin/glossary/index.html.erb +22 -0
  122. data/app/views/tr8n/admin/glossary/lb_update.html.erb +26 -0
  123. data/app/views/tr8n/admin/language/_rules.html.erb +22 -0
  124. data/app/views/tr8n/admin/language/_tabs.html.erb +27 -0
  125. data/app/views/tr8n/admin/language/_users.html.erb +40 -0
  126. data/app/views/tr8n/admin/language/case_rules.html.erb +24 -0
  127. data/app/views/tr8n/admin/language/case_values.html.erb +25 -0
  128. data/app/views/tr8n/admin/language/cases.html.erb +24 -0
  129. data/app/views/tr8n/admin/language/charts.html.erb +35 -0
  130. data/app/views/tr8n/admin/language/index.html.erb +99 -0
  131. data/app/views/tr8n/admin/language/lb_update.html.erb +76 -0
  132. data/app/views/tr8n/admin/language/lb_value_map.html.erb +42 -0
  133. data/app/views/tr8n/admin/language/metrics.rhtml +16 -0
  134. data/app/views/tr8n/admin/language/rules.html.erb +24 -0
  135. data/app/views/tr8n/admin/language/users.rhtml +31 -0
  136. data/app/views/tr8n/admin/language/view.html.erb +106 -0
  137. data/app/views/tr8n/admin/translation/_tabs.html.erb +21 -0
  138. data/app/views/tr8n/admin/translation/index.html.erb +75 -0
  139. data/app/views/tr8n/admin/translation/view.html.erb +142 -0
  140. data/app/views/tr8n/admin/translation/votes.rhtml +81 -0
  141. data/app/views/tr8n/admin/translation_key/_tabs.html.erb +22 -0
  142. data/app/views/tr8n/admin/translation_key/comments.html.erb +49 -0
  143. data/app/views/tr8n/admin/translation_key/index.html.erb +79 -0
  144. data/app/views/tr8n/admin/translation_key/lb_merge.html.erb +43 -0
  145. data/app/views/tr8n/admin/translation_key/lb_update.html.erb +44 -0
  146. data/app/views/tr8n/admin/translation_key/locks.html.erb +51 -0
  147. data/app/views/tr8n/admin/translation_key/view.html.erb +192 -0
  148. data/app/views/tr8n/admin/translator/_list.html.erb +51 -0
  149. data/app/views/tr8n/admin/translator/_tabs.html.erb +26 -0
  150. data/app/views/tr8n/admin/translator/following.html.erb +20 -0
  151. data/app/views/tr8n/admin/translator/index.html.erb +77 -0
  152. data/app/views/tr8n/admin/translator/ip_locations.html.erb +9 -0
  153. data/app/views/tr8n/admin/translator/lb_register.html.erb +18 -0
  154. data/app/views/tr8n/admin/translator/log.html.erb +27 -0
  155. data/app/views/tr8n/admin/translator/metrics.html.erb +25 -0
  156. data/app/views/tr8n/admin/translator/reports.html.erb +22 -0
  157. data/app/views/tr8n/admin/translator/view.html.erb +228 -0
  158. data/app/views/tr8n/awards/_list.html.erb +46 -0
  159. data/app/views/tr8n/awards/index.html.erb +42 -0
  160. data/app/views/tr8n/common/_flashes.html.erb +39 -0
  161. data/app/views/tr8n/common/_footer.html.erb +1 -0
  162. data/app/views/tr8n/common/_header.html.erb +5 -0
  163. data/app/views/tr8n/common/_language_selector.html.erb +8 -0
  164. data/app/views/tr8n/common/_language_strip.html.erb +29 -0
  165. data/app/views/tr8n/common/_language_table.html.erb +13 -0
  166. data/app/views/tr8n/common/_paginator.html.erb +8 -0
  167. data/app/views/tr8n/common/_permutations.html.erb +37 -0
  168. data/app/views/tr8n/common/_scripts.html.erb +49 -0
  169. data/app/views/tr8n/common/_splash_screen.html.erb +9 -0
  170. data/app/views/tr8n/common/_splash_screen_legacy.html.erb +4 -0
  171. data/app/views/tr8n/common/_tabs.html.erb +39 -0
  172. data/app/views/tr8n/common/_translation_votes.html.erb +41 -0
  173. data/app/views/tr8n/common/_translator_login.html.erb +11 -0
  174. data/app/views/tr8n/dashboard/_forum.html.erb +25 -0
  175. data/app/views/tr8n/dashboard/_language_metric.html.erb +49 -0
  176. data/app/views/tr8n/dashboard/_statistics.html.erb +35 -0
  177. data/app/views/tr8n/dashboard/_translations.html.erb +24 -0
  178. data/app/views/tr8n/dashboard/_translator_metric.html.erb +68 -0
  179. data/app/views/tr8n/dashboard/_votes.html.erb +76 -0
  180. data/app/views/tr8n/dashboard/index.rhtml +115 -0
  181. data/app/views/tr8n/forum/_message.html.erb +17 -0
  182. data/app/views/tr8n/forum/_messages.html.erb +21 -0
  183. data/app/views/tr8n/forum/_new_message.html.erb +28 -0
  184. data/app/views/tr8n/forum/_new_topic.html.erb +49 -0
  185. data/app/views/tr8n/forum/index.html.erb +84 -0
  186. data/app/views/tr8n/forum/topic.html.erb +36 -0
  187. data/app/views/tr8n/glossary/index.html.erb +42 -0
  188. data/app/views/tr8n/help/_navigation.html.erb +127 -0
  189. data/app/views/tr8n/help/awards.html.erb +13 -0
  190. data/app/views/tr8n/help/basic_information.html.erb +13 -0
  191. data/app/views/tr8n/help/context_rules.html.erb +13 -0
  192. data/app/views/tr8n/help/creating_translations.html.erb +16 -0
  193. data/app/views/tr8n/help/dashboard.html.erb +13 -0
  194. data/app/views/tr8n/help/direction.html.erb +13 -0
  195. data/app/views/tr8n/help/discussions.html.erb +13 -0
  196. data/app/views/tr8n/help/enter_translation.html.erb +13 -0
  197. data/app/views/tr8n/help/fallback_language.html.erb +13 -0
  198. data/app/views/tr8n/help/generate_context_rules.html.erb +17 -0
  199. data/app/views/tr8n/help/index.html.erb +18 -0
  200. data/app/views/tr8n/help/inline_translations.html.erb +28 -0
  201. data/app/views/tr8n/help/language_dashboard.html.erb +21 -0
  202. data/app/views/tr8n/help/language_phrases.html.erb +17 -0
  203. data/app/views/tr8n/help/language_selector.html.erb +13 -0
  204. data/app/views/tr8n/help/language_statistics.html.erb +13 -0
  205. data/app/views/tr8n/help/lb_credits.html.erb +9 -0
  206. data/app/views/tr8n/help/lb_shortcuts.html.erb +26 -0
  207. data/app/views/tr8n/help/manage.html.erb +13 -0
  208. data/app/views/tr8n/help/manage_language.html.erb +13 -0
  209. data/app/views/tr8n/help/native_name.html.erb +13 -0
  210. data/app/views/tr8n/help/original_phrase.html.erb +13 -0
  211. data/app/views/tr8n/help/other_languages.html.erb +15 -0
  212. data/app/views/tr8n/help/other_translatable_resources.html.erb +13 -0
  213. data/app/views/tr8n/help/phrases.html.erb +19 -0
  214. data/app/views/tr8n/help/phrases_with_translations.html.erb +21 -0
  215. data/app/views/tr8n/help/phrases_without_translations.html.erb +15 -0
  216. data/app/views/tr8n/help/prohibited_words.html.erb +13 -0
  217. data/app/views/tr8n/help/rank.html.erb +13 -0
  218. data/app/views/tr8n/help/recent_discussions.html.erb +13 -0
  219. data/app/views/tr8n/help/recent_translation_votes.html.erb +13 -0
  220. data/app/views/tr8n/help/recent_translations.html.erb +13 -0
  221. data/app/views/tr8n/help/site_map.html.erb +17 -0
  222. data/app/views/tr8n/help/site_sections.html.erb +13 -0
  223. data/app/views/tr8n/help/suggested_translation.html.erb +13 -0
  224. data/app/views/tr8n/help/translating_inline.html.erb +30 -0
  225. data/app/views/tr8n/help/translation_context_rules.html.erb +16 -0
  226. data/app/views/tr8n/help/translation_rank.html.erb +17 -0
  227. data/app/views/tr8n/help/translation_tokens.html.erb +13 -0
  228. data/app/views/tr8n/help/translation_tools.html.erb +13 -0
  229. data/app/views/tr8n/help/translations.html.erb +13 -0
  230. data/app/views/tr8n/help/user_rank.html.erb +13 -0
  231. data/app/views/tr8n/help/using_translation_tools.html.erb +13 -0
  232. data/app/views/tr8n/help/voting_on_translations.html.erb +13 -0
  233. data/app/views/tr8n/help/your_dashboard.html.erb +17 -0
  234. data/app/views/tr8n/help/your_languages.html.erb +19 -0
  235. data/app/views/tr8n/help/your_translations.html.erb +17 -0
  236. data/app/views/tr8n/home/credits.html.erb +102 -0
  237. data/app/views/tr8n/home/docs.html.erb +3 -0
  238. data/app/views/tr8n/home/index.html.erb +37 -0
  239. data/app/views/tr8n/home/integration.html.erb +564 -0
  240. data/app/views/tr8n/home/languages.html.erb +7 -0
  241. data/app/views/tr8n/home/license.html.erb +586 -0
  242. data/app/views/tr8n/home/rules.html.erb +668 -0
  243. data/app/views/tr8n/home/tokens.html.erb +324 -0
  244. data/app/views/tr8n/language/_basic_info.html.erb +53 -0
  245. data/app/views/tr8n/language/_edit_language_case_rules.html.erb +51 -0
  246. data/app/views/tr8n/language/_edit_language_cases.html.erb +68 -0
  247. data/app/views/tr8n/language/_edit_rules.html.erb +46 -0
  248. data/app/views/tr8n/language/_grammar.html.erb +84 -0
  249. data/app/views/tr8n/language/_header.html.erb +14 -0
  250. data/app/views/tr8n/language/_language_cases.html.erb +196 -0
  251. data/app/views/tr8n/language/_lists.html.erb +56 -0
  252. data/app/views/tr8n/language/_prohibited_words.html.erb +16 -0
  253. data/app/views/tr8n/language/_translator_dependencies.html.erb +27 -0
  254. data/app/views/tr8n/language/_translator_header.html.erb +19 -0
  255. data/app/views/tr8n/language/_translator_submit.html.erb +141 -0
  256. data/app/views/tr8n/language/_translator_votes.html.erb +27 -0
  257. data/app/views/tr8n/language/index.html.erb +54 -0
  258. data/app/views/tr8n/language/lb_language_case_rule.html.erb +94 -0
  259. data/app/views/tr8n/language/rules/_date_rule.html.erb +3 -0
  260. data/app/views/tr8n/language/rules/_gender_list_rule.html.erb +23 -0
  261. data/app/views/tr8n/language/rules/_gender_rule.html.erb +3 -0
  262. data/app/views/tr8n/language/rules/_list_rule.html.erb +3 -0
  263. data/app/views/tr8n/language/rules/_number_rule.html.erb +24 -0
  264. data/app/views/tr8n/language/rules/_value_rule.html.erb +3 -0
  265. data/app/views/tr8n/language/select.html.erb +72 -0
  266. data/app/views/tr8n/language/table.html.erb +32 -0
  267. data/app/views/tr8n/language/translator.html.erb +18 -0
  268. data/app/views/tr8n/language_cases/_gender_based.html.erb +32 -0
  269. data/app/views/tr8n/language_cases/_gender_neutral.html.erb +25 -0
  270. data/app/views/tr8n/language_cases/_manager_header.html.erb +18 -0
  271. data/app/views/tr8n/language_cases/index.html.erb +54 -0
  272. data/app/views/tr8n/language_cases/manager.html.erb +60 -0
  273. data/app/views/tr8n/login/index.html.erb +33 -0
  274. data/app/views/tr8n/login/register.html.erb +57 -0
  275. data/app/views/tr8n/phrases/_breadcrumb.html.erb +11 -0
  276. data/app/views/tr8n/phrases/_comment.html.erb +17 -0
  277. data/app/views/tr8n/phrases/_comments_module.html.erb +37 -0
  278. data/app/views/tr8n/phrases/_dictionary.rhtml +29 -0
  279. data/app/views/tr8n/phrases/_header.html.erb +24 -0
  280. data/app/views/tr8n/phrases/_new_comment.html.erb +31 -0
  281. data/app/views/tr8n/phrases/_permutations_module.html.erb +30 -0
  282. data/app/views/tr8n/phrases/_tokens.html.erb +122 -0
  283. data/app/views/tr8n/phrases/_toolbar.html.erb +33 -0
  284. data/app/views/tr8n/phrases/_translation_module.html.erb +127 -0
  285. data/app/views/tr8n/phrases/_translations_module.html.erb +70 -0
  286. data/app/views/tr8n/phrases/index.html.erb +90 -0
  287. data/app/views/tr8n/phrases/lb_sources.html.erb +51 -0
  288. data/app/views/tr8n/phrases/map.html.erb +42 -0
  289. data/app/views/tr8n/phrases/view.html.erb +77 -0
  290. data/app/views/tr8n/translations/_list.html.erb +71 -0
  291. data/app/views/tr8n/translations/_original_phrase.html.erb +11 -0
  292. data/app/views/tr8n/translations/_translation.html.erb +80 -0
  293. data/app/views/tr8n/translations/index.html.erb +30 -0
  294. data/app/views/tr8n/translator/_basic_info.html.erb +95 -0
  295. data/app/views/tr8n/translator/_header.html.erb +12 -0
  296. data/app/views/tr8n/translator/_header_key_report.html.erb +12 -0
  297. data/app/views/tr8n/translator/index.html.erb +25 -0
  298. data/app/views/tr8n/translator/lb_report.html.erb +113 -0
  299. data/config.ru +4 -0
  300. data/config/application.rb +65 -0
  301. data/config/boot.rb +6 -0
  302. data/config/database.yml +13 -0
  303. data/config/environment.rb +46 -0
  304. data/config/environments/development.rb +25 -0
  305. data/config/environments/test.rb +35 -0
  306. data/config/routes.rb +47 -0
  307. data/config/tr8n/config.yml +247 -0
  308. data/config/tr8n/data/ip_locations.csv +93460 -0
  309. data/config/tr8n/rules/default_cases.yml +141 -0
  310. data/config/tr8n/rules/default_date_rules.yml +20 -0
  311. data/config/tr8n/rules/default_gender_list_rules.yml +82 -0
  312. data/config/tr8n/rules/default_gender_rules.yml +20 -0
  313. data/config/tr8n/rules/default_list_rules.yml +19 -0
  314. data/config/tr8n/rules/default_numeric_rules.yml +42 -0
  315. data/config/tr8n/rules/default_value_rules.yml +18 -0
  316. data/config/tr8n/site/default_glossary.yml +18 -0
  317. data/config/tr8n/site/default_languages.yml +1591 -0
  318. data/config/tr8n/site/features.yml +111 -0
  319. data/config/tr8n/site/shortcuts.yml +55 -0
  320. data/config/tr8n/site/sitemap.json +42 -0
  321. data/config/tr8n/tokens/data.yml +19 -0
  322. data/config/tr8n/tokens/decorations.yml +16 -0
  323. data/config/will_filter/config.yml +97 -0
  324. data/db/extras/20100511185330_create_test_users.rb +43 -0
  325. data/db/migrate/20090730070119_create_will_filter_tables.rb +19 -0
  326. data/db/migrate/20100405201417_create_tr8n_tables.rb +350 -0
  327. data/db/seeds.rb +7 -0
  328. data/doc/README_FOR_APP +2 -0
  329. data/doc/cheat sheet.docx +0 -0
  330. data/doc/cheat sheet.pdf +0 -0
  331. data/doc/classes.graffle +12555 -0
  332. data/doc/classes.pdf +0 -0
  333. data/doc/client sdk sequence.graffle +2768 -0
  334. data/doc/integration.doc +0 -0
  335. data/doc/integration.docx +0 -0
  336. data/doc/pixel client sdk.graffle +1454 -0
  337. data/lib/application_controller.rb +38 -0
  338. data/lib/application_helper.rb +336 -0
  339. data/lib/core_ext/array.rb +61 -0
  340. data/lib/core_ext/date.rb +76 -0
  341. data/lib/core_ext/fixnum.rb +35 -0
  342. data/lib/core_ext/hash.rb +60 -0
  343. data/lib/core_ext/string.rb +49 -0
  344. data/lib/core_ext/time.rb +83 -0
  345. data/lib/generators/tr8n/templates/create_tr8n_tables.rb +350 -0
  346. data/lib/generators/tr8n/tr8n_generator.rb +49 -0
  347. data/lib/tasks/.gitkeep +0 -0
  348. data/lib/tasks/tr8n_tasks.rake +99 -0
  349. data/lib/tr8n.rb +3 -0
  350. data/lib/tr8n/active_dumper.rb +49 -0
  351. data/lib/tr8n/cache.rb +57 -0
  352. data/lib/tr8n/common_methods.rb +61 -0
  353. data/lib/tr8n/config.rb +719 -0
  354. data/lib/tr8n/controller_methods.rb +112 -0
  355. data/lib/tr8n/dictionary.rb +53 -0
  356. data/lib/tr8n/engine.rb +29 -0
  357. data/lib/tr8n/exception.rb +26 -0
  358. data/lib/tr8n/extender.rb +34 -0
  359. data/lib/tr8n/helper_methods.rb +304 -0
  360. data/lib/tr8n/ip_address.rb +52 -0
  361. data/lib/tr8n/key_registration_exception.rb +26 -0
  362. data/lib/tr8n/keyboard_mapping.rb +174 -0
  363. data/lib/tr8n/logger.rb +60 -0
  364. data/lib/tr8n/site_map.rb +85 -0
  365. data/lib/tr8n/site_map_section.rb +108 -0
  366. data/lib/tr8n/token.rb +438 -0
  367. data/lib/tr8n/token_exception.rb +26 -0
  368. data/lib/tr8n/tokenized_label.rb +141 -0
  369. data/lib/tr8n/tokens/data_token.rb +52 -0
  370. data/lib/tr8n/tokens/decoration_token.rb +124 -0
  371. data/lib/tr8n/tokens/hidden_token.rb +87 -0
  372. data/lib/tr8n/tokens/method_token.rb +60 -0
  373. data/lib/tr8n/tokens/transform_token.rb +131 -0
  374. data/public/404.html +26 -0
  375. data/public/422.html +26 -0
  376. data/public/500.html +26 -0
  377. data/public/favicon.ico +0 -0
  378. data/public/robots.txt +5 -0
  379. data/public/tr8n/images/accept.png +0 -0
  380. data/public/tr8n/images/action_tab_bkgd.gif +0 -0
  381. data/public/tr8n/images/action_tab_white_bkgd.gif +0 -0
  382. data/public/tr8n/images/add.png +0 -0
  383. data/public/tr8n/images/arrow_down.gif +0 -0
  384. data/public/tr8n/images/arrow_down.png +0 -0
  385. data/public/tr8n/images/arrow_down_grey.png +0 -0
  386. data/public/tr8n/images/arrow_right.gif +0 -0
  387. data/public/tr8n/images/arrow_up.png +0 -0
  388. data/public/tr8n/images/arrow_up_grey.png +0 -0
  389. data/public/tr8n/images/bullet_go.png +0 -0
  390. data/public/tr8n/images/buttons.png +0 -0
  391. data/public/tr8n/images/cancel.png +0 -0
  392. data/public/tr8n/images/close.gif +0 -0
  393. data/public/tr8n/images/cross.png +0 -0
  394. data/public/tr8n/images/delete.png +0 -0
  395. data/public/tr8n/images/disk.png +0 -0
  396. data/public/tr8n/images/examples/context_rules_1.png +0 -0
  397. data/public/tr8n/images/examples/context_rules_2.png +0 -0
  398. data/public/tr8n/images/examples/date_rules_1.png +0 -0
  399. data/public/tr8n/images/examples/date_rules_2.png +0 -0
  400. data/public/tr8n/images/examples/date_rules_3.png +0 -0
  401. data/public/tr8n/images/examples/gender_rules_1.png +0 -0
  402. data/public/tr8n/images/examples/gender_rules_2.png +0 -0
  403. data/public/tr8n/images/examples/gender_rules_3.png +0 -0
  404. data/public/tr8n/images/examples/language_manager_1.png +0 -0
  405. data/public/tr8n/images/examples/list_rules_1.png +0 -0
  406. data/public/tr8n/images/examples/list_rules_2.png +0 -0
  407. data/public/tr8n/images/examples/list_rules_3.png +0 -0
  408. data/public/tr8n/images/examples/numeric_rules_1.png +0 -0
  409. data/public/tr8n/images/examples/numeric_rules_2.png +0 -0
  410. data/public/tr8n/images/examples/numeric_rules_3.png +0 -0
  411. data/public/tr8n/images/examples/numeric_rules_4.png +0 -0
  412. data/public/tr8n/images/exclamation.png +0 -0
  413. data/public/tr8n/images/eye.png +0 -0
  414. data/public/tr8n/images/eye_not.png +0 -0
  415. data/public/tr8n/images/facebook/connect_light_medium_long.gif +0 -0
  416. data/public/tr8n/images/field_sprite.gif +0 -0
  417. data/public/tr8n/images/find.png +0 -0
  418. data/public/tr8n/images/flags/.DS_Store +0 -0
  419. data/public/tr8n/images/flags/ab.png +0 -0
  420. data/public/tr8n/images/flags/ach.png +0 -0
  421. data/public/tr8n/images/flags/af.png +0 -0
  422. data/public/tr8n/images/flags/ak.png +0 -0
  423. data/public/tr8n/images/flags/am.png +0 -0
  424. data/public/tr8n/images/flags/an.png +0 -0
  425. data/public/tr8n/images/flags/ar-AE.png +0 -0
  426. data/public/tr8n/images/flags/ar-BH.png +0 -0
  427. data/public/tr8n/images/flags/ar-DZ.png +0 -0
  428. data/public/tr8n/images/flags/ar-EG.png +0 -0
  429. data/public/tr8n/images/flags/ar-IQ.png +0 -0
  430. data/public/tr8n/images/flags/ar-JO.png +0 -0
  431. data/public/tr8n/images/flags/ar-KW.png +0 -0
  432. data/public/tr8n/images/flags/ar-LB.png +0 -0
  433. data/public/tr8n/images/flags/ar-LY.png +0 -0
  434. data/public/tr8n/images/flags/ar-MA.png +0 -0
  435. data/public/tr8n/images/flags/ar-OM.png +0 -0
  436. data/public/tr8n/images/flags/ar-QA.png +0 -0
  437. data/public/tr8n/images/flags/ar-SA.png +0 -0
  438. data/public/tr8n/images/flags/ar-SY.png +0 -0
  439. data/public/tr8n/images/flags/ar-TN.png +0 -0
  440. data/public/tr8n/images/flags/ar-YE.png +0 -0
  441. data/public/tr8n/images/flags/ar.png +0 -0
  442. data/public/tr8n/images/flags/as.png +0 -0
  443. data/public/tr8n/images/flags/ast.png +0 -0
  444. data/public/tr8n/images/flags/ay.png +0 -0
  445. data/public/tr8n/images/flags/az.png +0 -0
  446. data/public/tr8n/images/flags/ba.png +0 -0
  447. data/public/tr8n/images/flags/be.png +0 -0
  448. data/public/tr8n/images/flags/bg.png +0 -0
  449. data/public/tr8n/images/flags/bh.png +0 -0
  450. data/public/tr8n/images/flags/bn.png +0 -0
  451. data/public/tr8n/images/flags/bo.png +0 -0
  452. data/public/tr8n/images/flags/br.png +0 -0
  453. data/public/tr8n/images/flags/bs.png +0 -0
  454. data/public/tr8n/images/flags/ca.png +0 -0
  455. data/public/tr8n/images/flags/cb.png +0 -0
  456. data/public/tr8n/images/flags/ce.png +0 -0
  457. data/public/tr8n/images/flags/ch.png +0 -0
  458. data/public/tr8n/images/flags/ck-US.png +0 -0
  459. data/public/tr8n/images/flags/co.png +0 -0
  460. data/public/tr8n/images/flags/cr.png +0 -0
  461. data/public/tr8n/images/flags/cs.png +0 -0
  462. data/public/tr8n/images/flags/cv.png +0 -0
  463. data/public/tr8n/images/flags/cy.png +0 -0
  464. data/public/tr8n/images/flags/da.png +0 -0
  465. data/public/tr8n/images/flags/de-AT.png +0 -0
  466. data/public/tr8n/images/flags/de-CH.png +0 -0
  467. data/public/tr8n/images/flags/de-DE.png +0 -0
  468. data/public/tr8n/images/flags/de-LI.png +0 -0
  469. data/public/tr8n/images/flags/de-LU.png +0 -0
  470. data/public/tr8n/images/flags/de.png +0 -0
  471. data/public/tr8n/images/flags/el.png +0 -0
  472. data/public/tr8n/images/flags/en-AU.png +0 -0
  473. data/public/tr8n/images/flags/en-BZ.png +0 -0
  474. data/public/tr8n/images/flags/en-CA.png +0 -0
  475. data/public/tr8n/images/flags/en-IE.png +0 -0
  476. data/public/tr8n/images/flags/en-JM.png +0 -0
  477. data/public/tr8n/images/flags/en-NZ.png +0 -0
  478. data/public/tr8n/images/flags/en-PH.png +0 -0
  479. data/public/tr8n/images/flags/en-PI.png +0 -0
  480. data/public/tr8n/images/flags/en-SC.png +0 -0
  481. data/public/tr8n/images/flags/en-UK.png +0 -0
  482. data/public/tr8n/images/flags/en-US.png +0 -0
  483. data/public/tr8n/images/flags/en-ZA.png +0 -0
  484. data/public/tr8n/images/flags/en-ZW.png +0 -0
  485. data/public/tr8n/images/flags/en.png +0 -0
  486. data/public/tr8n/images/flags/eo.png +0 -0
  487. data/public/tr8n/images/flags/es-AR.png +0 -0
  488. data/public/tr8n/images/flags/es-BO.png +0 -0
  489. data/public/tr8n/images/flags/es-CL.png +0 -0
  490. data/public/tr8n/images/flags/es-CO.png +0 -0
  491. data/public/tr8n/images/flags/es-CR.png +0 -0
  492. data/public/tr8n/images/flags/es-DO.png +0 -0
  493. data/public/tr8n/images/flags/es-EC.png +0 -0
  494. data/public/tr8n/images/flags/es-ES.png +0 -0
  495. data/public/tr8n/images/flags/es-GT.png +0 -0
  496. data/public/tr8n/images/flags/es-HN.png +0 -0
  497. data/public/tr8n/images/flags/es-MX.png +0 -0
  498. data/public/tr8n/images/flags/es-NI.png +0 -0
  499. data/public/tr8n/images/flags/es-PA.png +0 -0
  500. data/public/tr8n/images/flags/es-PE.png +0 -0
  501. data/public/tr8n/images/flags/es-PR.png +0 -0
  502. data/public/tr8n/images/flags/es-PY.png +0 -0
  503. data/public/tr8n/images/flags/es-SV.png +0 -0
  504. data/public/tr8n/images/flags/es-UY.png +0 -0
  505. data/public/tr8n/images/flags/es-VE.png +0 -0
  506. data/public/tr8n/images/flags/es.png +0 -0
  507. data/public/tr8n/images/flags/et.png +0 -0
  508. data/public/tr8n/images/flags/eu.png +0 -0
  509. data/public/tr8n/images/flags/fa-IR.png +0 -0
  510. data/public/tr8n/images/flags/fa.png +0 -0
  511. data/public/tr8n/images/flags/fb-LT.png +0 -0
  512. data/public/tr8n/images/flags/fi.png +0 -0
  513. data/public/tr8n/images/flags/fj.png +0 -0
  514. data/public/tr8n/images/flags/fo.png +0 -0
  515. data/public/tr8n/images/flags/fr-BE.png +0 -0
  516. data/public/tr8n/images/flags/fr-CA.png +0 -0
  517. data/public/tr8n/images/flags/fr-CH.png +0 -0
  518. data/public/tr8n/images/flags/fr-FR.png +0 -0
  519. data/public/tr8n/images/flags/fr-LU.png +0 -0
  520. data/public/tr8n/images/flags/fr-MC.png +0 -0
  521. data/public/tr8n/images/flags/fr.png +0 -0
  522. data/public/tr8n/images/flags/fur.png +0 -0
  523. data/public/tr8n/images/flags/fy.png +0 -0
  524. data/public/tr8n/images/flags/ga.png +0 -0
  525. data/public/tr8n/images/flags/gd.png +0 -0
  526. data/public/tr8n/images/flags/gl.png +0 -0
  527. data/public/tr8n/images/flags/gn.png +0 -0
  528. data/public/tr8n/images/flags/gu.png +0 -0
  529. data/public/tr8n/images/flags/gv.png +0 -0
  530. data/public/tr8n/images/flags/ha.png +0 -0
  531. data/public/tr8n/images/flags/haw.png +0 -0
  532. data/public/tr8n/images/flags/he.png +0 -0
  533. data/public/tr8n/images/flags/hi.png +0 -0
  534. data/public/tr8n/images/flags/hr.png +0 -0
  535. data/public/tr8n/images/flags/hsb.png +0 -0
  536. data/public/tr8n/images/flags/ht.png +0 -0
  537. data/public/tr8n/images/flags/hu.png +0 -0
  538. data/public/tr8n/images/flags/hy.png +0 -0
  539. data/public/tr8n/images/flags/ia.png +0 -0
  540. data/public/tr8n/images/flags/id.png +0 -0
  541. data/public/tr8n/images/flags/ie.png +0 -0
  542. data/public/tr8n/images/flags/ig.png +0 -0
  543. data/public/tr8n/images/flags/is.png +0 -0
  544. data/public/tr8n/images/flags/it-CH.png +0 -0
  545. data/public/tr8n/images/flags/it.png +0 -0
  546. data/public/tr8n/images/flags/iu.png +0 -0
  547. data/public/tr8n/images/flags/ja.png +0 -0
  548. data/public/tr8n/images/flags/jw.png +0 -0
  549. data/public/tr8n/images/flags/ka.png +0 -0
  550. data/public/tr8n/images/flags/kk.png +0 -0
  551. data/public/tr8n/images/flags/kl.png +0 -0
  552. data/public/tr8n/images/flags/km.png +0 -0
  553. data/public/tr8n/images/flags/kn.png +0 -0
  554. data/public/tr8n/images/flags/ko-KP.png +0 -0
  555. data/public/tr8n/images/flags/ko-KR.png +0 -0
  556. data/public/tr8n/images/flags/ko.png +0 -0
  557. data/public/tr8n/images/flags/kok.png +0 -0
  558. data/public/tr8n/images/flags/ks.png +0 -0
  559. data/public/tr8n/images/flags/ku.png +0 -0
  560. data/public/tr8n/images/flags/ky.png +0 -0
  561. data/public/tr8n/images/flags/la.png +0 -0
  562. data/public/tr8n/images/flags/lb.png +0 -0
  563. data/public/tr8n/images/flags/lg.png +0 -0
  564. data/public/tr8n/images/flags/li-NL.png +0 -0
  565. data/public/tr8n/images/flags/ln.png +0 -0
  566. data/public/tr8n/images/flags/lo.png +0 -0
  567. data/public/tr8n/images/flags/lt.png +0 -0
  568. data/public/tr8n/images/flags/lv.png +0 -0
  569. data/public/tr8n/images/flags/md.png +0 -0
  570. data/public/tr8n/images/flags/mfe.png +0 -0
  571. data/public/tr8n/images/flags/mg.png +0 -0
  572. data/public/tr8n/images/flags/mh.png +0 -0
  573. data/public/tr8n/images/flags/mi.png +0 -0
  574. data/public/tr8n/images/flags/mk.png +0 -0
  575. data/public/tr8n/images/flags/ml.png +0 -0
  576. data/public/tr8n/images/flags/mn.png +0 -0
  577. data/public/tr8n/images/flags/mo.png +0 -0
  578. data/public/tr8n/images/flags/mr.png +0 -0
  579. data/public/tr8n/images/flags/ms.png +0 -0
  580. data/public/tr8n/images/flags/mt.png +0 -0
  581. data/public/tr8n/images/flags/my.png +0 -0
  582. data/public/tr8n/images/flags/na.png +0 -0
  583. data/public/tr8n/images/flags/nb.png +0 -0
  584. data/public/tr8n/images/flags/nd.png +0 -0
  585. data/public/tr8n/images/flags/ne.png +0 -0
  586. data/public/tr8n/images/flags/ng.png +0 -0
  587. data/public/tr8n/images/flags/nl-NE.png +0 -0
  588. data/public/tr8n/images/flags/nl.png +0 -0
  589. data/public/tr8n/images/flags/nn.png +0 -0
  590. data/public/tr8n/images/flags/no.png +0 -0
  591. data/public/tr8n/images/flags/nr.png +0 -0
  592. data/public/tr8n/images/flags/nso.png +0 -0
  593. data/public/tr8n/images/flags/nv.png +0 -0
  594. data/public/tr8n/images/flags/ny.png +0 -0
  595. data/public/tr8n/images/flags/nyn.png +0 -0
  596. data/public/tr8n/images/flags/oc.png +0 -0
  597. data/public/tr8n/images/flags/om.png +0 -0
  598. data/public/tr8n/images/flags/or.png +0 -0
  599. data/public/tr8n/images/flags/pa-IN.png +0 -0
  600. data/public/tr8n/images/flags/pa-PK.png +0 -0
  601. data/public/tr8n/images/flags/pa.png +0 -0
  602. data/public/tr8n/images/flags/pf.png +0 -0
  603. data/public/tr8n/images/flags/pl.png +0 -0
  604. data/public/tr8n/images/flags/pp.png +0 -0
  605. data/public/tr8n/images/flags/ps.png +0 -0
  606. data/public/tr8n/images/flags/pt-BZ.png +0 -0
  607. data/public/tr8n/images/flags/pt.png +0 -0
  608. data/public/tr8n/images/flags/qu-PE.png +0 -0
  609. data/public/tr8n/images/flags/qu.png +0 -0
  610. data/public/tr8n/images/flags/rj.png +0 -0
  611. data/public/tr8n/images/flags/rm.png +0 -0
  612. data/public/tr8n/images/flags/rn.png +0 -0
  613. data/public/tr8n/images/flags/ro-MD.png +0 -0
  614. data/public/tr8n/images/flags/ro-RO.png +0 -0
  615. data/public/tr8n/images/flags/ro.png +0 -0
  616. data/public/tr8n/images/flags/ru.png +0 -0
  617. data/public/tr8n/images/flags/rw.png +0 -0
  618. data/public/tr8n/images/flags/sa.png +0 -0
  619. data/public/tr8n/images/flags/sc.png +0 -0
  620. data/public/tr8n/images/flags/sd.png +0 -0
  621. data/public/tr8n/images/flags/se-NO.png +0 -0
  622. data/public/tr8n/images/flags/sg.png +0 -0
  623. data/public/tr8n/images/flags/sh.png +0 -0
  624. data/public/tr8n/images/flags/si.png +0 -0
  625. data/public/tr8n/images/flags/sk.png +0 -0
  626. data/public/tr8n/images/flags/sl.png +0 -0
  627. data/public/tr8n/images/flags/sm.png +0 -0
  628. data/public/tr8n/images/flags/sn.png +0 -0
  629. data/public/tr8n/images/flags/so.png +0 -0
  630. data/public/tr8n/images/flags/sq.png +0 -0
  631. data/public/tr8n/images/flags/sr-me.png +0 -0
  632. data/public/tr8n/images/flags/sr.png +0 -0
  633. data/public/tr8n/images/flags/ss.png +0 -0
  634. data/public/tr8n/images/flags/st.png +0 -0
  635. data/public/tr8n/images/flags/su.png +0 -0
  636. data/public/tr8n/images/flags/sv-FI.png +0 -0
  637. data/public/tr8n/images/flags/sv-SE.png +0 -0
  638. data/public/tr8n/images/flags/sv.png +0 -0
  639. data/public/tr8n/images/flags/sw.png +0 -0
  640. data/public/tr8n/images/flags/ta.png +0 -0
  641. data/public/tr8n/images/flags/te.png +0 -0
  642. data/public/tr8n/images/flags/tg.png +0 -0
  643. data/public/tr8n/images/flags/th.png +0 -0
  644. data/public/tr8n/images/flags/ti.png +0 -0
  645. data/public/tr8n/images/flags/tig.png +0 -0
  646. data/public/tr8n/images/flags/tk.png +0 -0
  647. data/public/tr8n/images/flags/tl.png +0 -0
  648. data/public/tr8n/images/flags/tlh.png +0 -0
  649. data/public/tr8n/images/flags/tn.png +0 -0
  650. data/public/tr8n/images/flags/to.png +0 -0
  651. data/public/tr8n/images/flags/tr.png +0 -0
  652. data/public/tr8n/images/flags/ts.png +0 -0
  653. data/public/tr8n/images/flags/tt.png +0 -0
  654. data/public/tr8n/images/flags/tw.png +0 -0
  655. data/public/tr8n/images/flags/ug.png +0 -0
  656. data/public/tr8n/images/flags/uk.png +0 -0
  657. data/public/tr8n/images/flags/ur.png +0 -0
  658. data/public/tr8n/images/flags/uz.png +0 -0
  659. data/public/tr8n/images/flags/ve.png +0 -0
  660. data/public/tr8n/images/flags/vi.png +0 -0
  661. data/public/tr8n/images/flags/vo.png +0 -0
  662. data/public/tr8n/images/flags/wa.png +0 -0
  663. data/public/tr8n/images/flags/wo.png +0 -0
  664. data/public/tr8n/images/flags/xh.png +0 -0
  665. data/public/tr8n/images/flags/yi.png +0 -0
  666. data/public/tr8n/images/flags/yo.png +0 -0
  667. data/public/tr8n/images/flags/zh-CN.png +0 -0
  668. data/public/tr8n/images/flags/zh-HK.png +0 -0
  669. data/public/tr8n/images/flags/zh-SG.png +0 -0
  670. data/public/tr8n/images/flags/zh-TW.png +0 -0
  671. data/public/tr8n/images/flags/zh.png +0 -0
  672. data/public/tr8n/images/flags/zu.png +0 -0
  673. data/public/tr8n/images/globe.gif +0 -0
  674. data/public/tr8n/images/help.png +0 -0
  675. data/public/tr8n/images/help/color_coding.png +0 -0
  676. data/public/tr8n/images/help/language_selector.png +0 -0
  677. data/public/tr8n/images/help/language_selector_default.png +0 -0
  678. data/public/tr8n/images/help/languages_disabled.png +0 -0
  679. data/public/tr8n/images/help/translator.png +0 -0
  680. data/public/tr8n/images/help2.png +0 -0
  681. data/public/tr8n/images/information.png +0 -0
  682. data/public/tr8n/images/keyboard.png +0 -0
  683. data/public/tr8n/images/language_selector_arrow.gif +0 -0
  684. data/public/tr8n/images/left_quote.png +0 -0
  685. data/public/tr8n/images/lightning.png +0 -0
  686. data/public/tr8n/images/loading.gif +0 -0
  687. data/public/tr8n/images/loading2.gif +0 -0
  688. data/public/tr8n/images/loading3.gif +0 -0
  689. data/public/tr8n/images/loading_large.gif +0 -0
  690. data/public/tr8n/images/lock.png +0 -0
  691. data/public/tr8n/images/lock_add.png +0 -0
  692. data/public/tr8n/images/lock_delete.png +0 -0
  693. data/public/tr8n/images/lock_open.png +0 -0
  694. data/public/tr8n/images/medals/bronze.png +0 -0
  695. data/public/tr8n/images/medals/gold.png +0 -0
  696. data/public/tr8n/images/medals/runner.png +0 -0
  697. data/public/tr8n/images/medals/silver.png +0 -0
  698. data/public/tr8n/images/pencil.png +0 -0
  699. data/public/tr8n/images/photo_silhouette.gif +0 -0
  700. data/public/tr8n/images/plus.png +0 -0
  701. data/public/tr8n/images/random.png +0 -0
  702. data/public/tr8n/images/random2.png +0 -0
  703. data/public/tr8n/images/rating_star0.png +0 -0
  704. data/public/tr8n/images/rating_star05.png +0 -0
  705. data/public/tr8n/images/rating_star1.png +0 -0
  706. data/public/tr8n/images/rating_stars.gif +0 -0
  707. data/public/tr8n/images/rating_stars.psd +0 -0
  708. data/public/tr8n/images/reply.png +0 -0
  709. data/public/tr8n/images/right_quote.png +0 -0
  710. data/public/tr8n/images/rotating_world.gif +0 -0
  711. data/public/tr8n/images/script.png +0 -0
  712. data/public/tr8n/images/script_edit.png +0 -0
  713. data/public/tr8n/images/script_gear.png +0 -0
  714. data/public/tr8n/images/site_sprite.gif +0 -0
  715. data/public/tr8n/images/spinner.gif +0 -0
  716. data/public/tr8n/images/star.png +0 -0
  717. data/public/tr8n/images/table_edit.png +0 -0
  718. data/public/tr8n/images/table_gear.png +0 -0
  719. data/public/tr8n/images/table_multiple.png +0 -0
  720. data/public/tr8n/images/thumb_down.png +0 -0
  721. data/public/tr8n/images/thumb_up.png +0 -0
  722. data/public/tr8n/images/toolbar_bg.gif +0 -0
  723. data/public/tr8n/images/top_left_stem.png +0 -0
  724. data/public/tr8n/images/top_right_stem.png +0 -0
  725. data/public/tr8n/images/tr8n_loading.gif +0 -0
  726. data/public/tr8n/images/tr8n_logo.jpg +0 -0
  727. data/public/tr8n/images/tr8n_logo.png +0 -0
  728. data/public/tr8n/images/tr8n_logo2.gif +0 -0
  729. data/public/tr8n/images/tr8n_logo2.png +0 -0
  730. data/public/tr8n/images/tr8n_logo_wiki.png +0 -0
  731. data/public/tr8n/images/tr8n_logo_wiki2.png +0 -0
  732. data/public/tr8n/images/translate_icn.gif +0 -0
  733. data/public/tr8n/images/wizard.png +0 -0
  734. data/public/tr8n/javascripts/jsDraw2D.js +24 -0
  735. data/public/tr8n/javascripts/keyboard_1_36.js +1214 -0
  736. data/public/tr8n/javascripts/keyboard_1_44.js +1735 -0
  737. data/public/tr8n/javascripts/shortcut.js +223 -0
  738. data/public/tr8n/javascripts/tr8n.js +904 -0
  739. data/public/tr8n/javascripts/tr8n_client_sdk.js +1182 -0
  740. data/public/tr8n/javascripts/tr8n_prototype_effects.js +65 -0
  741. data/public/tr8n/stylesheets/components.css +208 -0
  742. data/public/tr8n/stylesheets/keyboard_1_36.css +185 -0
  743. data/public/tr8n/stylesheets/keyboard_1_44.css +268 -0
  744. data/public/tr8n/stylesheets/layout.css +119 -0
  745. data/public/tr8n/stylesheets/tr8n.css +201 -0
  746. data/rails/init.rb +53 -0
  747. data/script/rails +6 -0
  748. data/test/performance/browsing_test.rb +9 -0
  749. data/test/test_helper.rb +13 -0
  750. data/tr8n.gemspec +40 -0
  751. metadata +865 -0
@@ -0,0 +1,7 @@
1
+ <div style="padding:20px;">
2
+ <%=tr("English is the default language here")%>
3
+ <br><br>
4
+ <%= tr8n_with_options_tag(:default_locale => 'ru') do %>
5
+ <%=tr("Русский язык основной язык здесь")%>
6
+ <% end %>
7
+ </div>
@@ -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
+ &lt;<a href="http://fsf.org/">http://fsf.org/</a>&gt;</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 %>