locale 0.9.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
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,783 +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::TagList</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::TagList
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
- Array
325
- </span></div>
326
-
327
- <div class="navigation darker top" id="defined_in"><h3>Defined in</h3>
328
-
329
- <a href="../../files/lib/locale/taglist_rb.html">lib/locale/taglist.rb</a>
330
-
331
- </div>
332
-
333
-
334
-
335
- <div class="navigation top" id="methods"><h3>Methods</h3>
336
-
337
-
338
- <a href='#M000069'>
339
- charset<br/>
340
- </a>
341
-
342
-
343
-
344
-
345
- <a href='#M000066'>
346
- country<br/>
347
- </a>
348
-
349
-
350
-
351
-
352
- <a href='#M000071'>
353
- extensions<br/>
354
- </a>
355
-
356
-
357
-
358
-
359
- <a href='#M000065'>
360
- language<br/>
361
- </a>
362
-
363
-
364
-
365
-
366
- <a href='#M000070'>
367
- modifier<br/>
368
- </a>
369
-
370
-
371
-
372
-
373
- <a href='#M000072'>
374
- privateuse<br/>
375
- </a>
376
-
377
-
378
-
379
-
380
- <a href='#M000067'>
381
- region<br/>
382
- </a>
383
-
384
-
385
-
386
-
387
- <a href='#M000068'>
388
- script<br/>
389
- </a>
390
-
391
-
392
-
393
-
394
- <a href='#M000078'>
395
- to_cldr<br/>
396
- </a>
397
-
398
-
399
-
400
-
401
- <a href='#M000075'>
402
- to_common<br/>
403
- </a>
404
-
405
-
406
-
407
-
408
- <a href='#M000079'>
409
- to_posix<br/>
410
- </a>
411
-
412
-
413
-
414
-
415
- <a href='#M000077'>
416
- to_rfc<br/>
417
- </a>
418
-
419
-
420
-
421
-
422
- <a href='#M000074'>
423
- to_s<br/>
424
- </a>
425
-
426
-
427
-
428
-
429
- <a href='#M000076'>
430
- to_simple<br/>
431
- </a>
432
-
433
-
434
-
435
-
436
- <a href='#M000073'>
437
- to_str<br/>
438
- </a>
439
-
440
-
441
- </div>
442
- <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">
443
- <h1 id="item_name">Class: Locale::TagList</h1>
444
-
445
- <div id="description"><p>
446
- This provides the subclass of Array which behaves like the first(top
447
- priority) Locale::Tag object. &quot;Locale.current.<a
448
- href="TagList.html#M000065">language</a>&quot; is same with
449
- &quot;Locale.current[0].<a href="TagList.html#M000065">language</a>&quot;.
450
- </p>
451
- <p>
452
- Locale.current returns an Array of Tag(s) now. But the old
453
- Locale.current(Ruby-GetText) and Locale.get returns Locale::Object
454
- (similier with <a href="Tag/Posix.html">Locale::Tag::Posix</a>). This is
455
- the class for backward compatibility.
456
- </p>
457
- <p>
458
- It is recommanded to use Locale.current[0] or Locale.candidates to find the
459
- current locale instead of this function.
460
- </p>
461
- </div>
462
-
463
-
464
-
465
-
466
- <p></p>
467
-
468
-
469
-
470
-
471
-
472
-
473
- <h1>Public Instance Methods</h1>
474
-
475
-
476
- <a class="small" name="M000069"><br/></a>
477
- <div class="method_block"><h3>
478
- <a href='#M000069'>
479
-
480
-
481
- charset
482
-
483
- ()
484
-
485
- </a>
486
- </h3>
487
- <p>
488
- Returns the top priority <a href="TagList.html#M000069">charset</a>.
489
- (posix)
490
- </p>
491
-
492
- <p class="source_link" id="M000069-show-link"><a onclick="toggle('M000069-source'); toggleText('M000069-link'); return false;" href="#" id="M000069-link">Show source...</a></p><div class="source" id="M000069-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 44</span>
493
- 44: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">charset</span>
494
- 45: <span class="ruby-keyword kw">if</span> <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">respond_to?</span> <span class="ruby-identifier">:charset</span>
495
- 46: <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">charset</span>
496
- 47: <span class="ruby-keyword kw">else</span>
497
- 48: <span class="ruby-operator">::</span><span class="ruby-constant">Locale</span>.<span class="ruby-identifier">driver_module</span>.<span class="ruby-identifier">charset</span>
498
- 49: <span class="ruby-keyword kw">end</span>
499
- 50: <span class="ruby-keyword kw">end</span></pre></div>
500
- </div>
501
-
502
- <a class="small" name="M000066"><br/></a>
503
- <div class="method_block"><h3>
504
- <a href='#M000066'>
505
-
506
-
507
- country
508
-
509
- ()
510
-
511
- </a>
512
- </h3>
513
- <p>
514
- Returns the top priority region/country. (simple)
515
- </p>
516
-
517
- <p class="source_link" id="M000066-show-link"><a onclick="toggle('M000066-source'); toggleText('M000066-link'); return false;" href="#" id="M000066-link">Show source...</a></p><div class="source" id="M000066-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 32</span>
518
- 32: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">country</span>
519
- 33: <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">region</span>
520
- 34: <span class="ruby-keyword kw">end</span></pre></div>
521
- </div>
522
-
523
- <a class="small" name="M000071"><br/></a>
524
- <div class="method_block"><h3>
525
- <a href='#M000071'>
526
-
527
-
528
- extensions
529
-
530
- ()
531
-
532
- </a>
533
- </h3>
534
- <p>
535
- Returns the top priority <a
536
- href="TagList.html#M000071">extensions</a>.(common, rfc, cldr)
537
- </p>
538
-
539
- <p class="source_link" id="M000071-show-link"><a onclick="toggle('M000071-source'); toggleText('M000071-link'); return false;" href="#" id="M000071-link">Show source...</a></p><div class="source" id="M000071-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 56</span>
540
- 56: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">extensions</span>
541
- 57: (<span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">respond_to?</span> <span class="ruby-identifier">:extensions</span>) <span class="ruby-operator">?</span> <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">extensions</span> <span class="ruby-operator">:</span> <span class="ruby-keyword kw">nil</span>
542
- 58: <span class="ruby-keyword kw">end</span></pre></div>
543
- </div>
544
-
545
- <a class="small" name="M000065"><br/></a>
546
- <div class="method_block"><h3>
547
- <a href='#M000065'>
548
-
549
-
550
- language
551
-
552
- ()
553
-
554
- </a>
555
- </h3>
556
- <p>
557
- Returns the top priority <a href="TagList.html#M000065">language</a>.
558
- (simple)
559
- </p>
560
-
561
- <p class="source_link" id="M000065-show-link"><a onclick="toggle('M000065-source'); toggleText('M000065-link'); return false;" href="#" id="M000065-link">Show source...</a></p><div class="source" id="M000065-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 28</span>
562
- 28: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">language</span>
563
- 29: <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">language</span>
564
- 30: <span class="ruby-keyword kw">end</span></pre></div>
565
- </div>
566
-
567
- <a class="small" name="M000070"><br/></a>
568
- <div class="method_block"><h3>
569
- <a href='#M000070'>
570
-
571
-
572
- modifier
573
-
574
- ()
575
-
576
- </a>
577
- </h3>
578
- <p>
579
- Returns the top priority <a href="TagList.html#M000070">modifier</a>.
580
- (posix)
581
- </p>
582
-
583
- <p class="source_link" id="M000070-show-link"><a onclick="toggle('M000070-source'); toggleText('M000070-link'); return false;" href="#" id="M000070-link">Show source...</a></p><div class="source" id="M000070-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 52</span>
584
- 52: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">modifier</span>
585
- 53: (<span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">respond_to?</span> <span class="ruby-identifier">:modifier</span>) <span class="ruby-operator">?</span> <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">modifier</span> <span class="ruby-operator">:</span> <span class="ruby-keyword kw">nil</span>
586
- 54: <span class="ruby-keyword kw">end</span></pre></div>
587
- </div>
588
-
589
- <a class="small" name="M000072"><br/></a>
590
- <div class="method_block"><h3>
591
- <a href='#M000072'>
592
-
593
-
594
- privateuse
595
-
596
- ()
597
-
598
- </a>
599
- </h3>
600
- <p>
601
- Returns the top priority <a href="TagList.html#M000072">privateuse</a>(rfc)
602
- </p>
603
-
604
- <p class="source_link" id="M000072-show-link"><a onclick="toggle('M000072-source'); toggleText('M000072-link'); return false;" href="#" id="M000072-link">Show source...</a></p><div class="source" id="M000072-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 60</span>
605
- 60: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">privateuse</span>
606
- 61: (<span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">respond_to?</span> <span class="ruby-identifier">:privateuse</span>) <span class="ruby-operator">?</span> <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">privateuse</span> <span class="ruby-operator">:</span> <span class="ruby-keyword kw">nil</span>
607
- 62: <span class="ruby-keyword kw">end</span></pre></div>
608
- </div>
609
-
610
- <a class="small" name="M000067"><br/></a>
611
- <div class="method_block"><h3>
612
- <a href='#M000067'>
613
-
614
-
615
- region
616
-
617
- ()
618
-
619
- </a>
620
- </h3>
621
- <p>
622
- Returns the top priority region/country. (simple)
623
- </p>
624
-
625
- <p class="source_link" id="M000067-show-link"><a onclick="toggle('M000067-source'); toggleText('M000067-link'); return false;" href="#" id="M000067-link">Show source...</a></p><div class="source" id="M000067-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 36</span>
626
- 36: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">region</span>
627
- 37: <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">region</span>
628
- 38: <span class="ruby-keyword kw">end</span></pre></div>
629
- </div>
630
-
631
- <a class="small" name="M000068"><br/></a>
632
- <div class="method_block"><h3>
633
- <a href='#M000068'>
634
-
635
-
636
- script
637
-
638
- ()
639
-
640
- </a>
641
- </h3>
642
- <p>
643
- Returns the top priority <a href="TagList.html#M000068">script</a>.
644
- (common)
645
- </p>
646
-
647
- <p class="source_link" id="M000068-show-link"><a onclick="toggle('M000068-source'); toggleText('M000068-link'); return false;" href="#" id="M000068-link">Show source...</a></p><div class="source" id="M000068-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 40</span>
648
- 40: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">script</span>
649
- 41: <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">script</span>
650
- 42: <span class="ruby-keyword kw">end</span></pre></div>
651
- </div>
652
-
653
- <a class="small" name="M000078"><br/></a>
654
- <div class="method_block"><h3>
655
- <a href='#M000078'>
656
-
657
-
658
- to_cldr
659
-
660
- ()
661
-
662
- </a>
663
- </h3>
664
-
665
- <p class="source_link" id="M000078-show-link"><a onclick="toggle('M000078-source'); toggleText('M000078-link'); return false;" href="#" id="M000078-link">Show source...</a></p><div class="source" id="M000078-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 84</span>
666
- 84: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_cldr</span>
667
- 85: <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">to_cldr</span>
668
- 86: <span class="ruby-keyword kw">end</span></pre></div>
669
- </div>
670
-
671
- <a class="small" name="M000075"><br/></a>
672
- <div class="method_block"><h3>
673
- <a href='#M000075'>
674
-
675
-
676
- to_common
677
-
678
- ()
679
-
680
- </a>
681
- </h3>
682
-
683
- <p class="source_link" id="M000075-show-link"><a onclick="toggle('M000075-source'); toggleText('M000075-link'); return false;" href="#" id="M000075-link">Show source...</a></p><div class="source" id="M000075-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 72</span>
684
- 72: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_common</span>
685
- 73: <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">to_common</span>
686
- 74: <span class="ruby-keyword kw">end</span></pre></div>
687
- </div>
688
-
689
- <a class="small" name="M000079"><br/></a>
690
- <div class="method_block"><h3>
691
- <a href='#M000079'>
692
-
693
-
694
- to_posix
695
-
696
- ()
697
-
698
- </a>
699
- </h3>
700
-
701
- <p class="source_link" id="M000079-show-link"><a onclick="toggle('M000079-source'); toggleText('M000079-link'); return false;" href="#" id="M000079-link">Show source...</a></p><div class="source" id="M000079-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 88</span>
702
- 88: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_posix</span>
703
- 89: <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">to_posix</span>
704
- 90: <span class="ruby-keyword kw">end</span></pre></div>
705
- </div>
706
-
707
- <a class="small" name="M000077"><br/></a>
708
- <div class="method_block"><h3>
709
- <a href='#M000077'>
710
-
711
-
712
- to_rfc
713
-
714
- ()
715
-
716
- </a>
717
- </h3>
718
-
719
- <p class="source_link" id="M000077-show-link"><a onclick="toggle('M000077-source'); toggleText('M000077-link'); return false;" href="#" id="M000077-link">Show source...</a></p><div class="source" id="M000077-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 80</span>
720
- 80: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_rfc</span>
721
- 81: <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">to_rfc</span>
722
- 82: <span class="ruby-keyword kw">end</span></pre></div>
723
- </div>
724
-
725
- <a class="small" name="M000074"><br/></a>
726
- <div class="method_block"><h3>
727
- <a href='#M000074'>
728
-
729
-
730
- to_s
731
-
732
- ()
733
-
734
- </a>
735
- </h3>
736
-
737
- <p class="source_link" id="M000074-show-link"><a onclick="toggle('M000074-source'); toggleText('M000074-link'); return false;" href="#" id="M000074-link">Show source...</a></p><div class="source" id="M000074-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 68</span>
738
- 68: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_s</span>
739
- 69: <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">to_s</span>
740
- 70: <span class="ruby-keyword kw">end</span></pre></div>
741
- </div>
742
-
743
- <a class="small" name="M000076"><br/></a>
744
- <div class="method_block"><h3>
745
- <a href='#M000076'>
746
-
747
-
748
- to_simple
749
-
750
- ()
751
-
752
- </a>
753
- </h3>
754
-
755
- <p class="source_link" id="M000076-show-link"><a onclick="toggle('M000076-source'); toggleText('M000076-link'); return false;" href="#" id="M000076-link">Show source...</a></p><div class="source" id="M000076-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 76</span>
756
- 76: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_simple</span>
757
- 77: <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">to_simple</span>
758
- 78: <span class="ruby-keyword kw">end</span></pre></div>
759
- </div>
760
-
761
- <a class="small" name="M000073"><br/></a>
762
- <div class="method_block"><h3>
763
- <a href='#M000073'>
764
-
765
-
766
- to_str
767
-
768
- ()
769
-
770
- </a>
771
- </h3>
772
-
773
- <p class="source_link" id="M000073-show-link"><a onclick="toggle('M000073-source'); toggleText('M000073-link'); return false;" href="#" id="M000073-link">Show source...</a></p><div class="source" id="M000073-source"><pre> <span class="ruby-comment cmt"># File lib/locale/taglist.rb, line 64</span>
774
- 64: <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">to_str</span>
775
- 65: <span class="ruby-keyword kw">self</span>[<span class="ruby-value">0</span>].<span class="ruby-identifier">to_str</span>
776
- 66: <span class="ruby-keyword kw">end</span></pre></div>
777
- </div>
778
-
779
-
780
-
781
-
782
-
783
- </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>