locale 0.9.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. data/ChangeLog +5 -0
  2. data/{README → README.rdoc} +6 -3
  3. data/Rakefile +5 -4
  4. data/lib/locale/driver/cgi.rb +4 -6
  5. data/lib/locale/driver/win32_table.rb +1 -1
  6. data/lib/locale/version.rb +1 -1
  7. data/replace.rb +21 -0
  8. data/test/test_detect_general.rb +5 -1
  9. metadata +6 -66
  10. data/doc/classes/Locale/Driver.html +0 -375
  11. data/doc/classes/Locale/Driver/CGI.html +0 -502
  12. data/doc/classes/Locale/Driver/Env.html +0 -440
  13. data/doc/classes/Locale/Driver/JRuby.html +0 -390
  14. data/doc/classes/Locale/Driver/Posix.html +0 -431
  15. data/doc/classes/Locale/Driver/Win32.html +0 -398
  16. data/doc/classes/Locale/Driver/Win32Table.html +0 -356
  17. data/doc/classes/Locale/Info.html +0 -586
  18. data/doc/classes/Locale/Info/Language.html +0 -764
  19. data/doc/classes/Locale/Info/Region.html +0 -470
  20. data/doc/classes/Locale/Tag/Cldr.html +0 -547
  21. data/doc/classes/Locale/Tag/Common.html +0 -655
  22. data/doc/classes/Locale/Tag/Illegular.html +0 -424
  23. data/doc/classes/Locale/Tag/Posix.html +0 -612
  24. data/doc/classes/Locale/Tag/Rfc.html +0 -610
  25. data/doc/classes/Locale/Tag/Simple.html +0 -684
  26. data/doc/classes/Locale/TagList.html +0 -783
  27. data/doc/classes/Locale/Util.html +0 -476
  28. data/doc/classes/Locale/Util/Memoizable.html +0 -356
  29. data/doc/created.rid +0 -1
  30. data/doc/files/ChangeLog.html +0 -497
  31. data/doc/files/README.html +0 -525
  32. data/doc/files/lib/locale/driver/cgi_rb.html +0 -342
  33. data/doc/files/lib/locale/driver/env_rb.html +0 -354
  34. data/doc/files/lib/locale/driver/jruby_rb.html +0 -359
  35. data/doc/files/lib/locale/driver/posix_rb.html +0 -349
  36. data/doc/files/lib/locale/driver/win32_rb.html +0 -359
  37. data/doc/files/lib/locale/driver/win32_table_rb.html +0 -342
  38. data/doc/files/lib/locale/info/language_rb.html +0 -353
  39. data/doc/files/lib/locale/info/region_rb.html +0 -353
  40. data/doc/files/lib/locale/info_rb.html +0 -354
  41. data/doc/files/lib/locale/tag/cldr_rb.html +0 -342
  42. data/doc/files/lib/locale/tag/common_rb.html +0 -342
  43. data/doc/files/lib/locale/tag/illegular_rb.html +0 -349
  44. data/doc/files/lib/locale/tag/posix_rb.html +0 -342
  45. data/doc/files/lib/locale/tag/rfc_rb.html +0 -342
  46. data/doc/files/lib/locale/tag/simple_rb.html +0 -349
  47. data/doc/files/lib/locale/tag_rb.html +0 -374
  48. data/doc/files/lib/locale/taglist_rb.html +0 -342
  49. data/doc/files/lib/locale/util/memoizable_rb.html +0 -360
  50. data/doc/files/lib/locale/version_rb.html +0 -342
  51. data/doc/files/lib/locale_rb.html +0 -379
  52. data/doc/fr_class_index.html +0 -20
  53. data/doc/fr_file_index.html +0 -23
  54. data/doc/fr_method_index.html +0 -80
  55. data/doc/index.html +0 -1
  56. data/doc/rdoc-style.css +0 -320
@@ -1,764 +0,0 @@
1
- <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><meta content="text/html; charset=utf-8" http-equiv="Content-Type"/><title>Class: Locale::Info::Language</title><link type="text/css" href="../../.././rdoc-style.css" media="screen" rel="stylesheet"/><script type="text/javascript">
2
- // Allison template
3
- // Copyright 2007, 2008 Cloudburst, LLC. Licensed under the AFL 3. See the included LICENSE file.
4
-
5
- var href_base = '../../.././rdoc-style.css'.replace(/(.*\/).*/, '$1'); // inline js is good for something
6
-
7
- function $(id) {
8
- if (document.getElementById)
9
- elem = document.getElementById(id);
10
- else if ( document.all )
11
- elem = eval("document.all." + id);
12
- else
13
- return false;
14
- return elem;
15
- }
16
-
17
- function toggle(id) {
18
- elem = $(id);
19
- elemStyle = elem.style;
20
- if (elemStyle.display == "block") {
21
- elemStyle.display = "none"
22
- } else {
23
- elemStyle.display = "block"
24
- }
25
- return true;
26
- }
27
-
28
- function toggleText(id) {
29
- elem = $(id)
30
- if (m = elem.innerHTML.match(/(Hide)(.*)/)) {
31
- elem.innerHTML = "Show" + m[2];
32
- } else if (m = elem.innerHTML.match(/(Show)(.*)/)) {
33
- elem.innerHTML = "Hide" + m[2];
34
- }
35
- return true;
36
- }
37
-
38
- function span(s, klass) {
39
- return '<span class="' + klass + '">' + s + '</span>';
40
- }
41
-
42
- function highlightSymbols() {
43
- pres = document.getElementsByTagName('pre');
44
- for(var i = 0; i < pres.length; i++) {
45
- pre = pres[i];
46
- spans = pre.getElementsByTagName('span');
47
- for(var k = 0; k < spans.length; k++) {
48
- span = spans[k];
49
- if (span.className.match(/ruby-identifier/)) {
50
- if (span.innerHTML.match(/^:/)) {
51
- span.className += " ruby-symbol";
52
- }
53
- }
54
- }
55
- }
56
- }
57
-
58
- function hasClass(obj) {
59
- var result = false;
60
- if (obj.getAttributeNode("class") != null) {
61
- result = obj.getAttributeNode("class").value;
62
- }
63
- return result;
64
- }
65
-
66
- function stripe() {
67
- var even = true;
68
- var color = "#e4ebed";
69
- var tables = document.getElementsByTagName('table');
70
- if (tables.length == 0) { return; }
71
- for (var h = 0; h < tables.length; h++) {
72
- var trs = tables[h].getElementsByTagName("tr");
73
- for (var i = 0; i < trs.length; i++) {
74
- var tds = trs[i].getElementsByTagName("td");
75
- for (var j = 0; j < tds.length; j++) {
76
- if (hasClass(tds[j]) != "first") {
77
- var mytd = tds[j];
78
- if (even) {
79
- mytd.style.backgroundColor = color;
80
- }
81
- }
82
- }
83
- even = ! even;
84
- }
85
- }
86
- }
87
-
88
- function ajaxGet(url) {
89
- url = (href_base + url).replace('/./', '/')
90
- var req = false;
91
-
92
- if (window.ActiveXObject) {
93
- try {
94
- // stupid hack because IE7 disables local Ajax with the native xmlhttprequest object
95
- // for security purposes. Yet ActiveX still works. Thanks, Microsoft. I hate you. Die.
96
- req = new ActiveXObject("MSXML2.XMLHTTP.3.0");
97
- } catch (e) {
98
- try {
99
- /* IE 6 and maybe 5, don't know, don't care */
100
- req = new ActiveXObject("Msxml2.XMLHTTP");
101
- } catch (e) {
102
- try {
103
- req = new ActiveXObject("Microsoft.XMLHTTP");
104
- } catch (e) {
105
- req = false;
106
- }
107
- }
108
- }
109
- }
110
-
111
- /* real browsers */
112
- if (!req && window.XMLHttpRequest) {
113
- try {
114
- req = new XMLHttpRequest();
115
- } catch (e) {
116
- req = false;
117
- }
118
- }
119
-
120
- if (req) {
121
- req.open('GET', url, false);
122
- req.send(null);
123
- return req.responseText;
124
- } else {
125
- return "Ajax error";
126
- }
127
- }
128
-
129
-
130
- function addEvent(elm, evType, fn, useCapture) {
131
- if (elm.addEventListener) {
132
- elm.addEventListener(evType, fn, useCapture);
133
- return true;
134
- } else if (elm.attachEvent) {
135
- var r = elm.attachEvent('on' + evType, fn);
136
- return r;
137
- } else {
138
- elm['on' + evType] = fn;
139
- }
140
- }
141
-
142
- function insertIndices() {
143
- pages = ["class", "file", "method"]
144
- for (x in pages) {
145
- $(pages[x]).innerHTML += ajaxGet('fr_' + pages[x] + '_index.html').replace(/(href=")/g, '$1' + href_base);
146
- }
147
- /* mouseoverify method links */
148
- links = $('method').getElementsByTagName('a');
149
- for (var x = 0; x < links.length; x++) {
150
- if (m = links[x].innerHTML.match(/(.*)\s\((.*)\)/)) {
151
- links[x].innerHTML = m[1] + '<br>';
152
- links[x].title = m[2];
153
- }
154
- }
155
- /* this is stupid */
156
- $('class').style.display = "block";
157
- $('file').style.display = "block";
158
-
159
- /* has to be here because IE7 does not guarantee the onLoad callback order */
160
- abbreviateIndicesInner(["class", "file"], 25, "a");
161
- /* same, linkTitle() depends on the class link list */
162
- linkTitle();
163
- }
164
-
165
- function abbreviateIndices() {
166
- var ids = ["defined_in", "child_of", "includes", "requires", "method", "methods"];
167
- abbreviateIndicesInner(ids, 25, 'a');
168
- abbreviateIndicesInner(ids, 25, 'span');
169
- }
170
-
171
- function abbreviateIndicesInner(indices, amount, tag) {
172
- for (var x = 0; x < indices.length; x++) {
173
- var the_index = $(indices[x]);
174
- if (the_index) {
175
- links = the_index.getElementsByTagName(tag);
176
- for (var y = 0; y < links.length; y++) {
177
- var link = links[y];
178
- if (link.getElementsByTagName('span').length == 0 && link.getElementsByTagName('a').length == 0) {
179
- // avoid nesting
180
- link.innerHTML = link.innerHTML.replace(/<br>|\n/gi, '');
181
- link.title = link.innerHTML;
182
- link.innerHTML = abbreviate(link.innerHTML, amount) + '<br>';
183
- }
184
- }
185
- }
186
- }
187
- }
188
-
189
- function linkTitle() {
190
-
191
- /* grab the correct title element from the index */
192
- var index_page = ajaxGet('index.html');
193
- title_text = index_page.match(/<title>(.*)<\/title>/m)[1];
194
- document.title = title_text + " - " + document.title;
195
- var p = $('header').getElementsByTagName('p')[0]
196
- if (p.innerHTML.match(/^\s*$/)) {
197
- p.innerHTML = title_text;
198
- } else {
199
- p.innerHTML = title_text + ": " + p.innerHTML;
200
- }
201
-
202
- /* set the link properly */
203
- title_link = index_page.match(/<a\s+href="(.*?)"/)[1];
204
- var element = $('title');
205
- var item_type = "";
206
- var item_name = "";
207
- if (m = element.innerHTML.match(/(Class:|Module:|File:)\s*(.*)/)) {
208
- item_type = m[1];
209
- item_name = m[2];
210
- } else {
211
- item_name = element.innerHTML;
212
- }
213
- element.innerHTML = '<a href="' + href_base + title_link + '">' + item_type + " " + abbreviate(item_name, 45) + '</a>';
214
- element.getElementsByTagName('a')[0].title = item_name
215
-
216
- /* breadcrumb navigation */
217
- items = item_name.split("::");
218
- items_new = item_name.split("::");
219
- file_links = $('class').getElementsByTagName('a');
220
- for (var x = 0; x < items.length - 1; x++ ){
221
- var item = items[x];
222
- link = ("/classes/" + items.slice(0,x).join("/") + "/" + item + ".html").replace('//', '/');
223
- regex = new RegExp(RegExp.escape(link) + '$');
224
- for (var y = 0; y < file_links.length; y++) {
225
- if (file_links[y].href.match(regex)) {
226
- items_new[x] = '<a href="' + href_base + link + '">' + item + '</a>';
227
- break;
228
- }
229
- }
230
- }
231
- $('item_name').innerHTML = item_type + ' ' + items_new.join(" :: ");
232
- }
233
-
234
- function abbreviate(s, size) {
235
- while (s.length > size) {
236
- var old_s = s;
237
- s = s.replace(/\s|\n/mg, '');
238
- s = s.replace(/([A-Z])[a-z]+/m, '$1');
239
- if (!s || old_s == s) {
240
- return "..." + s.substring(s.length - size, s.length);
241
- }
242
- }
243
- return s;
244
- }
245
-
246
- function disableSubmit(event) {
247
- var keyCode = event.keyCode ? event.keyCode : event.which ? event.which : event.charCode;
248
- if (keyCode == 13) {
249
- return false;
250
- } else {
251
- return true;
252
- }
253
- }
254
-
255
- function filterList(id, s, event) {
256
-
257
- /* some weak escaping */
258
- s = s.replace(/[^\w\d\.\_\-\/\:\=\[\]\?\!]/g, '');
259
- s = RegExp.escape(s);
260
-
261
- var show_all = false;
262
- if (s.match(/^\s*$/)) {
263
- show_all = true;
264
- }
265
-
266
- links = $(id).getElementsByTagName('a')
267
- regex = new RegExp(s, 'i');
268
-
269
- for (var x = 0; x < links.length; x++) {
270
- var link = links[x];
271
- if (show_all) {
272
- link.style.display = 'inline';
273
- } else {
274
- if (link.innerHTML.match(regex)) {
275
- link.style.display = 'inline';
276
- } else {
277
- link.style.display = 'none';
278
- }
279
- }
280
- }
281
- return true;
282
- }
283
-
284
- RegExp.escape = function(text) {
285
- if (!arguments.callee.sRE) {
286
- var specials = ['/', '.', '*', '+', '?', '|', '(', ')', '[', ']', '{', '}', '\\'];
287
- arguments.callee.sRE = new RegExp(
288
- '(\\' + specials.join('|\\') + ')', 'g'
289
- );
290
- }
291
- return text.replace(arguments.callee.sRE, '\\$1');
292
- }
293
-
294
- function hacks() {
295
- // show the spacer if necessary,
296
- divs = document.getElementsByTagName('div');
297
- for(var x = 0; x < divs.length; x++) {
298
- if (divs[x].className && divs[x].className.match(/top/)) {
299
- document.getElementById('spacer').style.display = 'block';
300
- }
301
- }
302
- // remove extra colons from tables
303
- tds = document.getElementsByTagName('td');
304
- for(var x = 0; x < tds.length; x++) {
305
- str = tds[x].innerHTML
306
- if (str.charAt(str.length - 1) == ":") {
307
- tds[x].innerHTML = str.slice(0, str.length - 1)
308
- }
309
- }
310
- }
311
-
312
- addEvent(window, 'load', insertIndices, false);
313
- addEvent(window, 'load', abbreviateIndices, false);
314
- addEvent(window, 'load', stripe, false);
315
- addEvent(window, 'load', highlightSymbols, false);
316
- addEvent(window, 'load', hacks, false);
317
- </script></head><body><div id="container"><div class="curve" id="preheader_curve_0"></div><div class="curve" id="preheader_curve_1"></div><div class="curve" id="preheader_curve_2"></div><div class="curve" id="preheader_curve_3"></div><div class="curve" id="preheader_curve_4"></div><div class="curve" id="preheader_curve_5"></div><div id="header"><p>
318
- </p><span><h1 id="title">
319
- Class: Locale::Info::Language
320
- </h1></span>
321
- </div><div class="clear"></div><div id="left">
322
- <div class="navigation darker top" id="child_of"><h3>Child of</h3><span>
323
-
324
- Object
325
- </span></div>
326
-
327
- <div class="navigation darker top" id="defined_in"><h3>Defined in</h3>
328
-
329
- <a href="../../../files/lib/locale/info/language_rb.html">lib/locale/info/language.rb</a>
330
-
331
- </div>
332
-
333
-
334
-
335
- <div class="navigation top" id="methods"><h3>Methods</h3>
336
-
337
-
338
- <a href='#M000051'>
339
- ancient?<br/>
340
- </a>
341
-
342
-
343
-
344
-
345
- <a href='#M000048'>
346
- constructed?<br/>
347
- </a>
348
-
349
-
350
-
351
-
352
- <a href='#M000050'>
353
- extinct?<br/>
354
- </a>
355
-
356
-
357
-
358
-
359
- <a href='#M000052'>
360
- historical?<br/>
361
- </a>
362
-
363
-
364
-
365
-
366
- <a href='#M000045'>
367
- individual?<br/>
368
- </a>
369
-
370
-
371
-
372
-
373
- <a href='#M000055'>
374
- iso_language?<br/>
375
- </a>
376
-
377
-
378
-
379
-
380
- <a href='#M000049'>
381
- living?<br/>
382
- </a>
383
-
384
-
385
-
386
-
387
- <a href='#M000046'>
388
- macro?<br/>
389
- </a>
390
-
391
-
392
-
393
-
394
- <a href='#M000044'>
395
- new<br/>
396
- </a>
397
-
398
-
399
-
400
-
401
- <a href='#M000047'>
402
- special?<br/>
403
- </a>
404
-
405
-
406
-
407
-
408
- <a href='#M000053'>
409
- special_type?<br/>
410
- </a>
411
-
412
-
413
-
414
-
415
- <a href='#M000054'>
416
- to_s<br/>
417
- </a>
418
-
419
-
420
- </div>
421
- <div id="spacer"></div><div class="navigation darker index" id="class_wrapper"><div class="list_header"><h3>All classes</h3></div><div class="list_header_link"><a onclick="toggle('class'); toggleText('class_link'); return false;" href="#" id="class_link">Hide...</a></div><div class="clear"></div><div id="class"><form><label for="filter_class">Filter:&nbsp;&nbsp;</label><input type="text" onKeyUp="return filterList('class', this.value, event);" onKeyPress="return disableSubmit(event);" id="filter_class"></input></form></div></div><div class="navigation darker index" id="file_wrapper"><div class="list_header"><h3>All files</h3></div><div class="list_header_link"><a onclick="toggle('file'); toggleText('file_link'); return false;" href="#" id="file_link">Hide...</a></div><div class="clear"></div><div id="file"><form><label for="filter_file">Filter:&nbsp;&nbsp;</label><input type="text" onKeyUp="return filterList('file', this.value, event);" onKeyPress="return disableSubmit(event);" id="filter_file"></input></form></div></div><div class="navigation darker index" id="method_wrapper"><div class="list_header"><h3>All methods</h3></div><div class="list_header_link"><a onclick="toggle('method'); toggleText('method_link'); return false;" href="#" id="method_link">Show...</a></div><div class="clear"></div><div id="method"><form><label for="filter_method">Filter:&nbsp;&nbsp;</label><input type="text" onKeyUp="return filterList('method', this.value, event);" onKeyPress="return disableSubmit(event);" id="filter_method"></input></form></div></div></div><div id="content">
422
- <h1 id="item_name">Class: Locale::Info::Language</h1>
423
-
424
- <div id="description"><p>
425
- This class contains all the of the ISO information for the ISO 639-3
426
- languages. This class is immutable once constructed.
427
- </p>
428
- </div>
429
-
430
-
431
-
432
-
433
- <p></p>
434
-
435
-
436
-
437
-
438
- <h1>Attributes</h1><p><table><tr><th>Name</th><th>Read/write?</th></tr>
439
- <tr>
440
- <td class="highlight">name</td>
441
-
442
-
443
-
444
-
445
- <td class="normal">R</td>
446
- </tr>
447
- <tr>
448
- <td class="highlight">scope</td>
449
-
450
-
451
-
452
-
453
- <td class="normal">R</td>
454
- </tr>
455
- <tr>
456
- <td class="highlight">three_code</td>
457
-
458
-
459
-
460
-
461
- <td class="normal">R</td>
462
- </tr>
463
- <tr>
464
- <td class="highlight">two_code</td>
465
-
466
-
467
-
468
-
469
- <td class="normal">R</td>
470
- </tr>
471
- <tr>
472
- <td class="highlight">type</td>
473
-
474
-
475
-
476
-
477
- <td class="normal">R</td>
478
- </tr>
479
- </table></p>
480
-
481
-
482
- <h1>Public Class Methods</h1>
483
-
484
-
485
- <a class="small" name="M000044"><br/></a>
486
- <div class="method_block"><h3>
487
- <a href='#M000044'>
488
-
489
-
490
- new
491
-
492
- (two_code, three_code, scope, type, name)
493
-
494
- </a>
495
- </h3>
496
- <p>
497
- Constructs a <a href="Language.html#M000044">new</a> <a
498
- href="Language.html">Language</a> instance.
499
- </p>
500
- <ul>
501
- <li>code The 2 or 3 digit ISO 639-3 language code.
502
-
503
- </li>
504
- <li>scope A single character that defines the ISO scope of the language -
505
- <tt>(I)ndividual</tt>, <tt>(M)acrolanguage</tt>, or <tt>(S)pecial</tt>.
506
-
507
- </li>
508
- <li>type A single character that defines the ISO type of the language -
509
- <tt>(A)ncient</tt>, <tt>(C)onstructed</tt>, <tt>(E)xtinct</tt>,
510
- <tt>(H)istorical</tt>, <tt>(L)iving</tt>, or <tt>(S)pecial</tt>.
511
-
512
- </li>
513
- <li>name The name of the language.
514
-
515
- </li>
516
- </ul>
517
-
518
- <p class="source_link" id="M000044-show-link"><a onclick="toggle('M000044-source'); toggleText('M000044-link'); return false;" href="#" id="M000044-link">Show source...</a></p><div class="source" id="M000044-source"><pre> <span class="ruby-comment cmt"># File lib/locale/info/language.rb, line 34</span>
519
- 34: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">two_code</span>, <span class="ruby-identifier">three_code</span>, <span class="ruby-identifier">scope</span>, <span class="ruby-identifier">type</span>, <span class="ruby-identifier">name</span>)
520
- 35: <span class="ruby-ivar">@two_code</span>, <span class="ruby-ivar">@three_code</span>, <span class="ruby-ivar">@scope</span>, <span class="ruby-ivar">@type</span>, <span class="ruby-ivar">@name</span> = <span class="ruby-identifier">two_code</span>, <span class="ruby-identifier">three_code</span>, <span class="ruby-identifier">scope</span>, <span class="ruby-identifier">type</span>, <span class="ruby-identifier">name</span>
521
- 36:
522
- 37: <span class="ruby-ivar">@individual</span> = (<span class="ruby-identifier">scope</span> <span class="ruby-operator">==</span> <span class="ruby-value str">&quot;I&quot;</span>)
523
- 38: <span class="ruby-ivar">@macro</span> = (<span class="ruby-identifier">scope</span> <span class="ruby-operator">==</span> <span class="ruby-value str">&quot;M&quot;</span>)
524
- 39: <span class="ruby-ivar">@special</span> = (<span class="ruby-identifier">scope</span> <span class="ruby-operator">==</span> <span class="ruby-value str">&quot;S&quot;</span>)
525
- 40: <span class="ruby-ivar">@constructed</span> = (<span class="ruby-identifier">type</span> <span class="ruby-operator">==</span> <span class="ruby-value str">&quot;C&quot;</span>)
526
- 41: <span class="ruby-ivar">@living</span> = (<span class="ruby-identifier">type</span> <span class="ruby-operator">==</span> <span class="ruby-value str">&quot;L&quot;</span>)
527
- 42: <span class="ruby-ivar">@extinct</span> = (<span class="ruby-identifier">type</span> <span class="ruby-operator">==</span> <span class="ruby-value str">&quot;E&quot;</span>)
528
- 43: <span class="ruby-ivar">@ancient</span> = (<span class="ruby-identifier">type</span> <span class="ruby-operator">==</span> <span class="ruby-value str">&quot;A&quot;</span>)
529
- 44: <span class="ruby-ivar">@historical</span> = (<span class="ruby-identifier">type</span> <span class="ruby-operator">==</span> <span class="ruby-value str">&quot;H&quot;</span>)
530
- 45: <span class="ruby-ivar">@special_type</span> = (<span class="ruby-identifier">type</span> <span class="ruby-operator">==</span> <span class="ruby-value str">&quot;S&quot;</span>)
531
- 46: <span class="ruby-keyword kw">end</span></pre></div>
532
- </div>
533
-
534
-
535
- <h1>Public Instance Methods</h1>
536
-
537
-
538
- <a class="small" name="M000051"><br/></a>
539
- <div class="method_block"><h3>
540
- <a href='#M000051'>
541
-
542
-
543
- ancient?
544
-
545
- ()
546
-
547
- </a>
548
- </h3>
549
- <p>
550
- Returns true if the language is an ancient language according to the ISO
551
- 639-3 data.
552
- </p>
553
-
554
- <p class="source_link" id="M000051-show-link"><a onclick="toggle('M000051-source'); toggleText('M000051-link'); return false;" href="#" id="M000051-link">Show source...</a></p><div class="source" id="M000051-source"><pre> <span class="ruby-comment cmt"># File lib/locale/info/language.rb, line 67</span>
555
- 67: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">ancient?</span>; <span class="ruby-ivar">@ancient</span>; <span class="ruby-keyword kw">end</span></pre></div>
556
- </div>
557
-
558
- <a class="small" name="M000048"><br/></a>
559
- <div class="method_block"><h3>
560
- <a href='#M000048'>
561
-
562
-
563
- constructed?
564
-
565
- ()
566
-
567
- </a>
568
- </h3>
569
- <p>
570
- Returns true if the language is a constructed language according to the ISO
571
- 639-3 data.
572
- </p>
573
-
574
- <p class="source_link" id="M000048-show-link"><a onclick="toggle('M000048-source'); toggleText('M000048-link'); return false;" href="#" id="M000048-link">Show source...</a></p><div class="source" id="M000048-source"><pre> <span class="ruby-comment cmt"># File lib/locale/info/language.rb, line 58</span>
575
- 58: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">constructed?</span>; <span class="ruby-ivar">@constructed</span>; <span class="ruby-keyword kw">end</span></pre></div>
576
- </div>
577
-
578
- <a class="small" name="M000050"><br/></a>
579
- <div class="method_block"><h3>
580
- <a href='#M000050'>
581
-
582
-
583
- extinct?
584
-
585
- ()
586
-
587
- </a>
588
- </h3>
589
- <p>
590
- Returns true if the language is an extinct language according to the ISO
591
- 639-3 data.
592
- </p>
593
-
594
- <p class="source_link" id="M000050-show-link"><a onclick="toggle('M000050-source'); toggleText('M000050-link'); return false;" href="#" id="M000050-link">Show source...</a></p><div class="source" id="M000050-source"><pre> <span class="ruby-comment cmt"># File lib/locale/info/language.rb, line 64</span>
595
- 64: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">extinct?</span>; <span class="ruby-ivar">@extinct</span>; <span class="ruby-keyword kw">end</span></pre></div>
596
- </div>
597
-
598
- <a class="small" name="M000052"><br/></a>
599
- <div class="method_block"><h3>
600
- <a href='#M000052'>
601
-
602
-
603
- historical?
604
-
605
- ()
606
-
607
- </a>
608
- </h3>
609
- <p>
610
- Returns true if the language is an historical language according to the ISO
611
- 639-3 data.
612
- </p>
613
-
614
- <p class="source_link" id="M000052-show-link"><a onclick="toggle('M000052-source'); toggleText('M000052-link'); return false;" href="#" id="M000052-link">Show source...</a></p><div class="source" id="M000052-source"><pre> <span class="ruby-comment cmt"># File lib/locale/info/language.rb, line 70</span>
615
- 70: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">historical?</span>; <span class="ruby-ivar">@historical</span>; <span class="ruby-keyword kw">end</span></pre></div>
616
- </div>
617
-
618
- <a class="small" name="M000045"><br/></a>
619
- <div class="method_block"><h3>
620
- <a href='#M000045'>
621
-
622
-
623
- individual?
624
-
625
- ()
626
-
627
- </a>
628
- </h3>
629
- <p>
630
- Returns true if the language is an individual language according to the ISO
631
- 639-3 data.
632
- </p>
633
-
634
- <p class="source_link" id="M000045-show-link"><a onclick="toggle('M000045-source'); toggleText('M000045-link'); return false;" href="#" id="M000045-link">Show source...</a></p><div class="source" id="M000045-source"><pre> <span class="ruby-comment cmt"># File lib/locale/info/language.rb, line 49</span>
635
- 49: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">individual?</span>; <span class="ruby-ivar">@individual</span>; <span class="ruby-keyword kw">end</span></pre></div>
636
- </div>
637
-
638
- <a class="small" name="M000055"><br/></a>
639
- <div class="method_block"><h3>
640
- <a href='#M000055'>
641
-
642
-
643
- iso_language?
644
-
645
- ()
646
-
647
- </a>
648
- </h3>
649
- <p>
650
- Returns this object is valid as ISO 639 data.
651
- </p>
652
-
653
- <p class="source_link" id="M000055-show-link"><a onclick="toggle('M000055-source'); toggleText('M000055-link'); return false;" href="#" id="M000055-link">Show source...</a></p><div class="source" id="M000055-source"><pre> <span class="ruby-comment cmt"># File lib/locale/info/language.rb, line 81</span>
654
- 81: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">iso_language?</span>
655
- 82: <span class="ruby-ivar">@@lang_two_codes</span>[<span class="ruby-identifier">two_code</span>] <span class="ruby-operator">!=</span> <span class="ruby-keyword kw">nil</span> <span class="ruby-operator">||</span> <span class="ruby-ivar">@@lang_three_codes</span>[<span class="ruby-identifier">three_code</span>] <span class="ruby-operator">!=</span> <span class="ruby-keyword kw">nil</span>
656
- 83: <span class="ruby-keyword kw">end</span></pre></div>
657
- </div>
658
-
659
- <a class="small" name="M000049"><br/></a>
660
- <div class="method_block"><h3>
661
- <a href='#M000049'>
662
-
663
-
664
- living?
665
-
666
- ()
667
-
668
- </a>
669
- </h3>
670
- <p>
671
- Returns true if the language is a living language according to the ISO
672
- 639-3 data.
673
- </p>
674
-
675
- <p class="source_link" id="M000049-show-link"><a onclick="toggle('M000049-source'); toggleText('M000049-link'); return false;" href="#" id="M000049-link">Show source...</a></p><div class="source" id="M000049-source"><pre> <span class="ruby-comment cmt"># File lib/locale/info/language.rb, line 61</span>
676
- 61: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">living?</span>; <span class="ruby-ivar">@living</span>; <span class="ruby-keyword kw">end</span></pre></div>
677
- </div>
678
-
679
- <a class="small" name="M000046"><br/></a>
680
- <div class="method_block"><h3>
681
- <a href='#M000046'>
682
-
683
-
684
- macro?
685
-
686
- ()
687
-
688
- </a>
689
- </h3>
690
- <p>
691
- Returns true if the language is a macro language according to the ISO 639-3
692
- data.
693
- </p>
694
-
695
- <p class="source_link" id="M000046-show-link"><a onclick="toggle('M000046-source'); toggleText('M000046-link'); return false;" href="#" id="M000046-link">Show source...</a></p><div class="source" id="M000046-source"><pre> <span class="ruby-comment cmt"># File lib/locale/info/language.rb, line 52</span>
696
- 52: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">macro?</span>; <span class="ruby-ivar">@macro</span>; <span class="ruby-keyword kw">end</span></pre></div>
697
- </div>
698
-
699
- <a class="small" name="M000047"><br/></a>
700
- <div class="method_block"><h3>
701
- <a href='#M000047'>
702
-
703
-
704
- special?
705
-
706
- ()
707
-
708
- </a>
709
- </h3>
710
- <p>
711
- Returns true if the language is a special language according to the ISO
712
- 639-3 data.
713
- </p>
714
-
715
- <p class="source_link" id="M000047-show-link"><a onclick="toggle('M000047-source'); toggleText('M000047-link'); return false;" href="#" id="M000047-link">Show source...</a></p><div class="source" id="M000047-source"><pre> <span class="ruby-comment cmt"># File lib/locale/info/language.rb, line 55</span>
716
- 55: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">special?</span>; <span class="ruby-ivar">@special</span>; <span class="ruby-keyword kw">end</span></pre></div>
717
- </div>
718
-
719
- <a class="small" name="M000053"><br/></a>
720
- <div class="method_block"><h3>
721
- <a href='#M000053'>
722
-
723
-
724
- special_type?
725
-
726
- ()
727
-
728
- </a>
729
- </h3>
730
- <p>
731
- Returns true if the language is a special type language according to the
732
- ISO 639-3 data.
733
- </p>
734
-
735
- <p class="source_link" id="M000053-show-link"><a onclick="toggle('M000053-source'); toggleText('M000053-link'); return false;" href="#" id="M000053-link">Show source...</a></p><div class="source" id="M000053-source"><pre> <span class="ruby-comment cmt"># File lib/locale/info/language.rb, line 73</span>
736
- 73: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">special_type?</span>; <span class="ruby-ivar">@special_type</span>; <span class="ruby-keyword kw">end</span></pre></div>
737
- </div>
738
-
739
- <a class="small" name="M000054"><br/></a>
740
- <div class="method_block"><h3>
741
- <a href='#M000054'>
742
-
743
-
744
- to_s
745
-
746
- ()
747
-
748
- </a>
749
- </h3>
750
- <p>
751
- Returns the two or three code.
752
- </p>
753
-
754
- <p class="source_link" id="M000054-show-link"><a onclick="toggle('M000054-source'); toggleText('M000054-link'); return false;" href="#" id="M000054-link">Show source...</a></p><div class="source" id="M000054-source"><pre> <span class="ruby-comment cmt"># File lib/locale/info/language.rb, line 76</span>
755
- 76: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_s</span>
756
- 77: <span class="ruby-identifier">two_code</span> <span class="ruby-operator">||</span> <span class="ruby-identifier">tree_code</span>
757
- 78: <span class="ruby-keyword kw">end</span></pre></div>
758
- </div>
759
-
760
-
761
-
762
-
763
-
764
- </div><div class="clear" id="footer">Generated on Jan 21, 2008 / Allison 2 &copy; 2007 <a href="http://cloudbur.st">Cloudburst, LLC</a></div></div></body></html>