axlsx 1.0.10 → 1.0.11

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. data/CHANGELOG.md +14 -0
  2. data/Gemfile +3 -7
  3. data/Gemfile.lock +17 -8
  4. data/README.md +88 -59
  5. data/axlsx.gemspec +9 -3
  6. data/doc/Axlsx.html +482 -248
  7. data/doc/Axlsx/App.html +237 -159
  8. data/doc/Axlsx/Axis.html +75 -51
  9. data/doc/Axlsx/Bar3DChart.html +75 -53
  10. data/doc/Axlsx/BarSeries.html +45 -31
  11. data/doc/Axlsx/Border.html +70 -50
  12. data/doc/Axlsx/BorderPr.html +80 -62
  13. data/doc/Axlsx/CatAxis.html +62 -43
  14. data/doc/Axlsx/CatAxisData.html +23 -16
  15. data/doc/Axlsx/Cell.html +2022 -393
  16. data/doc/Axlsx/CellAlignment.html +103 -75
  17. data/doc/Axlsx/CellProtection.html +44 -30
  18. data/doc/Axlsx/CellStyle.html +66 -46
  19. data/doc/Axlsx/Chart.html +159 -108
  20. data/doc/Axlsx/Color.html +73 -52
  21. data/doc/Axlsx/ContentType.html +20 -14
  22. data/doc/Axlsx/Core.html +29 -20
  23. data/doc/Axlsx/DataTypeValidator.html +27 -19
  24. data/doc/Axlsx/Default.html +39 -27
  25. data/doc/Axlsx/Drawing.html +104 -70
  26. data/doc/Axlsx/Fill.html +33 -23
  27. data/doc/Axlsx/Font.html +132 -98
  28. data/doc/Axlsx/GradientFill.html +70 -48
  29. data/doc/Axlsx/GradientStop.html +31 -21
  30. data/doc/Axlsx/GraphicFrame.html +40 -27
  31. data/doc/Axlsx/Line3DChart.html +62 -43
  32. data/doc/Axlsx/LineSeries.html +37 -25
  33. data/doc/Axlsx/Marker.html +63 -43
  34. data/doc/Axlsx/NumFmt.html +79 -65
  35. data/doc/Axlsx/OneCellAnchor.html +78 -54
  36. data/doc/Axlsx/Override.html +39 -27
  37. data/doc/Axlsx/Package.html +103 -163
  38. data/doc/Axlsx/Parser.html +549 -0
  39. data/doc/Axlsx/PatternFill.html +66 -51
  40. data/doc/Axlsx/Pic.html +230 -123
  41. data/doc/Axlsx/PictureLocking.html +1159 -0
  42. data/doc/Axlsx/Pie3DChart.html +23 -16
  43. data/doc/Axlsx/PieSeries.html +44 -30
  44. data/doc/Axlsx/RegexValidator.html +14 -10
  45. data/doc/Axlsx/Relationship.html +40 -27
  46. data/doc/Axlsx/Relationships.html +20 -14
  47. data/doc/Axlsx/RestrictionValidator.html +25 -17
  48. data/doc/Axlsx/Row.html +73 -53
  49. data/doc/Axlsx/Scaling.html +46 -31
  50. data/doc/Axlsx/SerAxis.html +49 -33
  51. data/doc/Axlsx/Series.html +51 -35
  52. data/doc/Axlsx/SeriesTitle.html +14 -10
  53. data/doc/Axlsx/Styles.html +210 -156
  54. data/doc/Axlsx/TableStyle.html +47 -32
  55. data/doc/Axlsx/TableStyleElement.html +75 -61
  56. data/doc/Axlsx/TableStyles.html +42 -28
  57. data/doc/Axlsx/Title.html +36 -25
  58. data/doc/Axlsx/TwoCellAnchor.html +83 -58
  59. data/doc/Axlsx/ValAxis.html +35 -24
  60. data/doc/Axlsx/ValAxisData.html +13 -9
  61. data/doc/Axlsx/View3D.html +64 -43
  62. data/doc/Axlsx/Workbook.html +305 -147
  63. data/doc/Axlsx/Worksheet.html +567 -271
  64. data/doc/Axlsx/Xf.html +114 -77
  65. data/doc/_index.html +15 -1
  66. data/doc/class_list.html +1 -1
  67. data/doc/css/style.css +1 -1
  68. data/doc/file.LICENSE.html +25 -21
  69. data/doc/file.README.html +89 -66
  70. data/doc/index.html +89 -66
  71. data/doc/js/app.js +4 -4
  72. data/doc/method_list.html +717 -413
  73. data/doc/top-level-namespace.html +1 -1
  74. data/examples/example.rb +52 -25
  75. data/examples/follow_20111202.xlsx +0 -0
  76. data/lib/axlsx.rb +14 -1
  77. data/lib/axlsx/drawing/chart.rb +20 -4
  78. data/lib/axlsx/drawing/drawing.rb +1 -1
  79. data/lib/axlsx/drawing/pic.rb +5 -2
  80. data/lib/axlsx/drawing/picture_locking.rb +72 -0
  81. data/lib/axlsx/package.rb +9 -7
  82. data/lib/axlsx/stylesheet/color.rb +19 -9
  83. data/lib/axlsx/stylesheet/styles.rb +2 -0
  84. data/lib/axlsx/util/constants.rb +6 -0
  85. data/lib/axlsx/util/parser.rb +43 -0
  86. data/lib/axlsx/version.rb +1 -1
  87. data/lib/axlsx/workbook/workbook.rb +21 -1
  88. data/lib/axlsx/workbook/worksheet/cell.rb +159 -7
  89. data/lib/axlsx/workbook/worksheet/row.rb +4 -2
  90. data/lib/axlsx/workbook/worksheet/worksheet.rb +38 -4
  91. data/test/drawing/tc_picture_locking.rb +73 -0
  92. data/test/rels/tc_relationships.rb +0 -1
  93. data/test/stylesheet/tc_styles.rb +0 -12
  94. data/test/tc_package.rb +5 -3
  95. data/test/workbook/tc_workbook.rb +7 -0
  96. data/test/workbook/worksheet/tc_cell.rb +102 -1
  97. data/test/workbook/worksheet/tc_worksheet.rb +17 -0
  98. metadata +79 -19
  99. data/doc/Axlsx/Ar.html +0 -196
  100. data/doc/Axlsx/Ar/ClassMethods.html +0 -188
  101. data/doc/Axlsx/Ar/InstanceMethods.html +0 -108
  102. data/doc/Axlsx/Ar/SingletonMethods.html +0 -312
@@ -99,13 +99,15 @@
99
99
 
100
100
  <div class="note notetag">
101
101
  <strong>Note:</strong>
102
- <div class='inline'>
103
- <p>The recommended way to manage series is to use Chart#add_series</p>
102
+ <div class='inline'><p>
103
+ The recommended way to manage series is to use Chart#add_series
104
+ </p>
104
105
  </div>
105
106
  </div>
106
107
 
107
-
108
- <p>A BarSeries defines the title, data and labels for bar charts</p>
108
+ <p>
109
+ A BarSeries defines the title, data and labels for bar charts
110
+ </p>
109
111
 
110
112
 
111
113
  </div>
@@ -150,8 +152,9 @@
150
152
 
151
153
 
152
154
 
153
- <span class="summary_desc"><div class='inline'>
154
- <p>The data for this series.</p>
155
+ <span class="summary_desc"><div class='inline'><p>
156
+ The data for this series.
157
+ </p>
155
158
  </div></span>
156
159
 
157
160
  </li>
@@ -176,8 +179,9 @@
176
179
 
177
180
 
178
181
 
179
- <span class="summary_desc"><div class='inline'>
180
- <p>The labels for this series.</p>
182
+ <span class="summary_desc"><div class='inline'><p>
183
+ The labels for this series.
184
+ </p>
181
185
  </div></span>
182
186
 
183
187
  </li>
@@ -202,9 +206,10 @@
202
206
 
203
207
 
204
208
 
205
- <span class="summary_desc"><div class='inline'>
206
- <p>The shabe of the bars or columns must be one of [:percentStacked,
207
- :clustered, :standard, :stacked].</p>
209
+ <span class="summary_desc"><div class='inline'><p>
210
+ The shabe of the bars or columns must be one of [:percentStacked,
211
+ :clustered, :standard, :stacked].
212
+ </p>
208
213
  </div></span>
209
214
 
210
215
  </li>
@@ -249,8 +254,9 @@
249
254
 
250
255
 
251
256
 
252
- <span class="summary_desc"><div class='inline'>
253
- <p>Creates a new series.</p>
257
+ <span class="summary_desc"><div class='inline'><p>
258
+ Creates a new series.
259
+ </p>
254
260
  </div></span>
255
261
 
256
262
  </li>
@@ -272,8 +278,9 @@
272
278
 
273
279
 
274
280
 
275
- <span class="summary_desc"><div class='inline'>
276
- <p>Serializes the series.</p>
281
+ <span class="summary_desc"><div class='inline'><p>
282
+ Serializes the series.
283
+ </p>
277
284
  </div></span>
278
285
 
279
286
  </li>
@@ -304,8 +311,9 @@
304
311
 
305
312
  </p><div class="docstring">
306
313
  <div class="discussion">
307
-
308
- <p>Creates a new series</p>
314
+ <p>
315
+ Creates a new series
316
+ </p>
309
317
 
310
318
 
311
319
  </div>
@@ -337,8 +345,9 @@
337
345
 
338
346
 
339
347
  &mdash;
340
- <div class='inline'>
341
- <p>a customizable set of options</p>
348
+ <div class='inline'><p>
349
+ a customizable set of options
350
+ </p>
342
351
  </div>
343
352
 
344
353
  </li>
@@ -438,8 +447,9 @@
438
447
 
439
448
  </p><div class="docstring">
440
449
  <div class="discussion">
441
-
442
- <p>The data for this series.</p>
450
+ <p>
451
+ The data for this series.
452
+ </p>
443
453
 
444
454
 
445
455
  </div>
@@ -494,8 +504,9 @@
494
504
 
495
505
  </p><div class="docstring">
496
506
  <div class="discussion">
497
-
498
- <p>The labels for this series.</p>
507
+ <p>
508
+ The labels for this series.
509
+ </p>
499
510
 
500
511
 
501
512
  </div>
@@ -550,9 +561,10 @@
550
561
 
551
562
  </p><div class="docstring">
552
563
  <div class="discussion">
553
-
554
- <p>The shabe of the bars or columns must be one of [:percentStacked,
555
- :clustered, :standard, :stacked]</p>
564
+ <p>
565
+ The shabe of the bars or columns must be one of [:percentStacked,
566
+ :clustered, :standard, :stacked]
567
+ </p>
556
568
 
557
569
 
558
570
  </div>
@@ -611,8 +623,9 @@
611
623
 
612
624
  </p><div class="docstring">
613
625
  <div class="discussion">
614
-
615
- <p>Serializes the series</p>
626
+ <p>
627
+ Serializes the series
628
+ </p>
616
629
 
617
630
 
618
631
  </div>
@@ -631,8 +644,9 @@
631
644
 
632
645
 
633
646
  &mdash;
634
- <div class='inline'>
635
- <p>The document builder instance this objects xml will be added to.</p>
647
+ <div class='inline'><p>
648
+ The document builder instance this objects xml will be added to.
649
+ </p>
636
650
  </div>
637
651
 
638
652
  </li>
@@ -688,7 +702,7 @@
688
702
  </div>
689
703
 
690
704
  <div id="footer">
691
- Generated on Wed Nov 30 08:53:45 2011 by
705
+ Generated on Mon Dec 5 14:21:21 2011 by
692
706
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
693
707
  0.7.3 (ruby-1.8.7).
694
708
  </div>
@@ -94,8 +94,9 @@
94
94
 
95
95
  <h2>Overview</h2><div class="docstring">
96
96
  <div class="discussion">
97
-
98
- <p>This class details a border used in Office Open XML spreadsheet styles.</p>
97
+ <p>
98
+ This class details a border used in Office Open XML spreadsheet styles.
99
+ </p>
99
100
 
100
101
 
101
102
  </div>
@@ -127,10 +128,11 @@
127
128
 
128
129
 
129
130
 
130
- <span class="summary_desc"><div class='inline'>
131
- <p>The diagonal down property for the border that indicates if the border
131
+ <span class="summary_desc"><div class='inline'><p>
132
+ The diagonal down property for the border that indicates if the border
132
133
  should include a diagonal line from the top left to the top right of the
133
- cell.</p>
134
+ cell.
135
+ </p>
134
136
  </div></span>
135
137
 
136
138
  </li>
@@ -155,9 +157,10 @@ cell.</p>
155
157
 
156
158
 
157
159
 
158
- <span class="summary_desc"><div class='inline'>
159
- <p>The diagonal up property for the border that indicates if the border should
160
- include a diagonal line from the bottom left to the top right of the cell.</p>
160
+ <span class="summary_desc"><div class='inline'><p>
161
+ The diagonal up property for the border that indicates if the border should
162
+ include a diagonal line from the bottom left to the top right of the cell.
163
+ </p>
161
164
  </div></span>
162
165
 
163
166
  </li>
@@ -182,10 +185,11 @@ include a diagonal line from the bottom left to the top right of the cell.</p>
182
185
 
183
186
 
184
187
 
185
- <span class="summary_desc"><div class='inline'>
186
- <p>The outline property for the border indicating that top, left, right and
188
+ <span class="summary_desc"><div class='inline'><p>
189
+ The outline property for the border indicating that top, left, right and
187
190
  bottom borders should only be applied to the outside border of a range of
188
- cells.</p>
191
+ cells.
192
+ </p>
189
193
  </div></span>
190
194
 
191
195
  </li>
@@ -210,8 +214,9 @@ cells.</p>
210
214
 
211
215
 
212
216
 
213
- <span class="summary_desc"><div class='inline'>
214
- <p>A list of BorderPr objects for this border.</p>
217
+ <span class="summary_desc"><div class='inline'><p>
218
+ A list of BorderPr objects for this border.
219
+ </p>
215
220
  </div></span>
216
221
 
217
222
  </li>
@@ -248,8 +253,9 @@ cells.</p>
248
253
 
249
254
 
250
255
 
251
- <span class="summary_desc"><div class='inline'>
252
- <p>Creates a new Border object.</p>
256
+ <span class="summary_desc"><div class='inline'><p>
257
+ Creates a new Border object.
258
+ </p>
253
259
  </div></span>
254
260
 
255
261
  </li>
@@ -271,8 +277,9 @@ cells.</p>
271
277
 
272
278
 
273
279
 
274
- <span class="summary_desc"><div class='inline'>
275
- <p>Serializes the border element.</p>
280
+ <span class="summary_desc"><div class='inline'><p>
281
+ Serializes the border element.
282
+ </p>
276
283
  </div></span>
277
284
 
278
285
  </li>
@@ -293,8 +300,9 @@ cells.</p>
293
300
 
294
301
  </p><div class="docstring">
295
302
  <div class="discussion">
296
-
297
- <p>Creates a new Border object</p>
303
+ <p>
304
+ Creates a new Border object
305
+ </p>
298
306
 
299
307
 
300
308
  </div>
@@ -304,8 +312,9 @@ cells.</p>
304
312
  <div class="examples">
305
313
  <h3>Examples:</h3>
306
314
 
307
- <h4><div class='inline'>
308
- <p>Making a border</p>
315
+ <h4><div class='inline'><p>
316
+ Making a border
317
+ </p>
309
318
  </div></h4>
310
319
  <pre class="example code"><span class='p identifier id'>p</span> <span class='assign token'>=</span> <span class='Package constant id'>Package</span><span class='dot token'>.</span><span class='new identifier id'>new</span>
311
320
  <span class='red_border identifier id'>red_border</span> <span class='assign token'>=</span> <span class='Border constant id'>Border</span><span class='dot token'>.</span><span class='new identifier id'>new</span>
@@ -334,8 +343,9 @@ cells.</p>
334
343
 
335
344
 
336
345
  &mdash;
337
- <div class='inline'>
338
- <p>a customizable set of options</p>
346
+ <div class='inline'><p>
347
+ a customizable set of options
348
+ </p>
339
349
  </div>
340
350
 
341
351
  </li>
@@ -424,10 +434,11 @@ cells.</p>
424
434
 
425
435
  </p><div class="docstring">
426
436
  <div class="discussion">
427
-
428
- <p>The diagonal down property for the border that indicates if the border
437
+ <p>
438
+ The diagonal down property for the border that indicates if the border
429
439
  should include a diagonal line from the top left to the top right of the
430
- cell.</p>
440
+ cell.
441
+ </p>
431
442
 
432
443
 
433
444
  </div>
@@ -445,10 +456,11 @@ cell.</p>
445
456
 
446
457
 
447
458
  &mdash;
448
- <div class='inline'>
449
- <p>The diagonal down property for the border that indicates if the border
459
+ <div class='inline'><p>
460
+ The diagonal down property for the border that indicates if the border
450
461
  should include a diagonal line from the top left to the top right of the
451
- cell.</p>
462
+ cell.
463
+ </p>
452
464
  </div>
453
465
 
454
466
  </li>
@@ -489,9 +501,10 @@ cell.</p>
489
501
 
490
502
  </p><div class="docstring">
491
503
  <div class="discussion">
492
-
493
- <p>The diagonal up property for the border that indicates if the border should
494
- include a diagonal line from the bottom left to the top right of the cell.</p>
504
+ <p>
505
+ The diagonal up property for the border that indicates if the border should
506
+ include a diagonal line from the bottom left to the top right of the cell.
507
+ </p>
495
508
 
496
509
 
497
510
  </div>
@@ -509,9 +522,10 @@ include a diagonal line from the bottom left to the top right of the cell.</p>
509
522
 
510
523
 
511
524
  &mdash;
512
- <div class='inline'>
513
- <p>The diagonal up property for the border that indicates if the border should
514
- include a diagonal line from the bottom left to the top right of the cell.</p>
525
+ <div class='inline'><p>
526
+ The diagonal up property for the border that indicates if the border should
527
+ include a diagonal line from the bottom left to the top right of the cell.
528
+ </p>
515
529
  </div>
516
530
 
517
531
  </li>
@@ -552,10 +566,11 @@ include a diagonal line from the bottom left to the top right of the cell.</p>
552
566
 
553
567
  </p><div class="docstring">
554
568
  <div class="discussion">
555
-
556
- <p>The outline property for the border indicating that top, left, right and
569
+ <p>
570
+ The outline property for the border indicating that top, left, right and
557
571
  bottom borders should only be applied to the outside border of a range of
558
- cells.</p>
572
+ cells.
573
+ </p>
559
574
 
560
575
 
561
576
  </div>
@@ -573,10 +588,11 @@ cells.</p>
573
588
 
574
589
 
575
590
  &mdash;
576
- <div class='inline'>
577
- <p>The outline property for the border indicating that top, left, right and
591
+ <div class='inline'><p>
592
+ The outline property for the border indicating that top, left, right and
578
593
  bottom borders should only be applied to the outside border of a range of
579
- cells.</p>
594
+ cells.
595
+ </p>
580
596
  </div>
581
597
 
582
598
  </li>
@@ -617,8 +633,9 @@ cells.</p>
617
633
 
618
634
  </p><div class="docstring">
619
635
  <div class="discussion">
620
-
621
- <p>A list of BorderPr objects for this border.</p>
636
+ <p>
637
+ A list of BorderPr objects for this border.
638
+ </p>
622
639
 
623
640
 
624
641
  </div>
@@ -636,8 +653,9 @@ cells.</p>
636
653
 
637
654
 
638
655
  &mdash;
639
- <div class='inline'>
640
- <p>A list of BorderPr objects for this border.</p>
656
+ <div class='inline'><p>
657
+ A list of BorderPr objects for this border.
658
+ </p>
641
659
  </div>
642
660
 
643
661
  </li>
@@ -682,8 +700,9 @@ cells.</p>
682
700
 
683
701
  </p><div class="docstring">
684
702
  <div class="discussion">
685
-
686
- <p>Serializes the border element</p>
703
+ <p>
704
+ Serializes the border element
705
+ </p>
687
706
 
688
707
 
689
708
  </div>
@@ -702,8 +721,9 @@ cells.</p>
702
721
 
703
722
 
704
723
  &mdash;
705
- <div class='inline'>
706
- <p>The document builder instance this objects xml will be added to.</p>
724
+ <div class='inline'><p>
725
+ The document builder instance this objects xml will be added to.
726
+ </p>
707
727
  </div>
708
728
 
709
729
  </li>
@@ -750,7 +770,7 @@ cells.</p>
750
770
  </div>
751
771
 
752
772
  <div id="footer">
753
- Generated on Wed Nov 30 08:53:53 2011 by
773
+ Generated on Mon Dec 5 14:21:21 2011 by
754
774
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
755
775
  0.7.3 (ruby-1.8.7).
756
776
  </div>
@@ -94,8 +94,9 @@
94
94
 
95
95
  <h2>Overview</h2><div class="docstring">
96
96
  <div class="discussion">
97
-
98
- <p>A border part.</p>
97
+ <p>
98
+ A border part.
99
+ </p>
99
100
 
100
101
 
101
102
  </div>
@@ -127,8 +128,9 @@
127
128
 
128
129
 
129
130
 
130
- <span class="summary_desc"><div class='inline'>
131
- <p>The color of this border part.</p>
131
+ <span class="summary_desc"><div class='inline'><p>
132
+ The color of this border part.
133
+ </p>
132
134
  </div></span>
133
135
 
134
136
  </li>
@@ -153,8 +155,9 @@
153
155
 
154
156
 
155
157
 
156
- <span class="summary_desc"><div class='inline'>
157
- <p>The name of this border part.</p>
158
+ <span class="summary_desc"><div class='inline'><p>
159
+ The name of this border part.
160
+ </p>
158
161
  </div></span>
159
162
 
160
163
  </li>
@@ -179,8 +182,9 @@
179
182
 
180
183
 
181
184
 
182
- <span class="summary_desc"><div class='inline'>
183
- <p>The syle of this border part.</p>
185
+ <span class="summary_desc"><div class='inline'><p>
186
+ The syle of this border part.
187
+ </p>
184
188
  </div></span>
185
189
 
186
190
  </li>
@@ -217,8 +221,9 @@
217
221
 
218
222
 
219
223
 
220
- <span class="summary_desc"><div class='inline'>
221
- <p>Creates a new Border Part Object.</p>
224
+ <span class="summary_desc"><div class='inline'><p>
225
+ Creates a new Border Part Object.
226
+ </p>
222
227
  </div></span>
223
228
 
224
229
  </li>
@@ -240,8 +245,9 @@
240
245
 
241
246
 
242
247
 
243
- <span class="summary_desc"><div class='inline'>
244
- <p>Serializes the border part.</p>
248
+ <span class="summary_desc"><div class='inline'><p>
249
+ Serializes the border part.
250
+ </p>
245
251
  </div></span>
246
252
 
247
253
  </li>
@@ -262,8 +268,9 @@
262
268
 
263
269
  </p><div class="docstring">
264
270
  <div class="discussion">
265
-
266
- <p>Creates a new Border Part Object</p>
271
+ <p>
272
+ Creates a new Border Part Object
273
+ </p>
267
274
 
268
275
 
269
276
  </div>
@@ -284,8 +291,9 @@
284
291
 
285
292
 
286
293
  &mdash;
287
- <div class='inline'>
288
- <p>a customizable set of options</p>
294
+ <div class='inline'><p>
295
+ a customizable set of options
296
+ </p>
289
297
  </div>
290
298
 
291
299
  </li>
@@ -379,8 +387,9 @@
379
387
 
380
388
  </p><div class="docstring">
381
389
  <div class="discussion">
382
-
383
- <p>The color of this border part.</p>
390
+ <p>
391
+ The color of this border part.
392
+ </p>
384
393
 
385
394
 
386
395
  </div>
@@ -398,8 +407,9 @@
398
407
 
399
408
 
400
409
  &mdash;
401
- <div class='inline'>
402
- <p>The color of this border part.</p>
410
+ <div class='inline'><p>
411
+ The color of this border part.
412
+ </p>
403
413
  </div>
404
414
 
405
415
  </li>
@@ -443,24 +453,26 @@
443
453
 
444
454
  <div class="note notetag">
445
455
  <strong>Note:</strong>
446
- <div class='inline'>
447
- <p>The following are allowed</p>
448
-
449
- <pre class="code"><span class='symbol val'>:start</span>
450
- <span class='symbol val'>:end</span>
451
- <span class='symbol val'>:left</span>
452
- <span class='symbol val'>:right</span>
453
- <span class='symbol val'>:top</span>
454
- <span class='symbol val'>:bottom</span>
455
- <span class='symbol val'>:diagonal</span>
456
- <span class='symbol val'>:vertical</span>
457
- <span class='symbol val'>:horizontal</span>
456
+ <div class='inline'><p>
457
+ The following are allowed
458
+ </p>
459
+ <pre class="code">
460
+ <span class='symbol val'>:start</span>
461
+ <span class='symbol val'>:end</span>
462
+ <span class='symbol val'>:left</span>
463
+ <span class='symbol val'>:right</span>
464
+ <span class='symbol val'>:top</span>
465
+ <span class='symbol val'>:bottom</span>
466
+ <span class='symbol val'>:diagonal</span>
467
+ <span class='symbol val'>:vertical</span>
468
+ <span class='symbol val'>:horizontal</span>
458
469
  </pre>
459
470
  </div>
460
471
  </div>
461
472
 
462
-
463
- <p>The name of this border part</p>
473
+ <p>
474
+ The name of this border part
475
+ </p>
464
476
 
465
477
 
466
478
  </div>
@@ -478,8 +490,9 @@
478
490
 
479
491
 
480
492
  &mdash;
481
- <div class='inline'>
482
- <p>The name of this border part</p>
493
+ <div class='inline'><p>
494
+ The name of this border part
495
+ </p>
483
496
  </div>
484
497
 
485
498
  </li>
@@ -523,29 +536,31 @@
523
536
 
524
537
  <div class="note notetag">
525
538
  <strong>Note:</strong>
526
- <div class='inline'>
527
- <p>The following are allowed</p>
528
-
529
- <pre class="code"><span class='symbol val'>:none</span>
530
- <span class='symbol val'>:thin</span>
531
- <span class='symbol val'>:medium</span>
532
- <span class='symbol val'>:dashed</span>
533
- <span class='symbol val'>:dotted</span>
534
- <span class='symbol val'>:thick</span>
535
- <span class='symbol val'>:double</span>
536
- <span class='symbol val'>:hair</span>
537
- <span class='symbol val'>:mediumDashed</span>
538
- <span class='symbol val'>:dashDot</span>
539
- <span class='symbol val'>:mediumDashDot</span>
540
- <span class='symbol val'>:dashDotDot</span>
541
- <span class='symbol val'>:mediumDashDotDot</span>
542
- <span class='symbol val'>:slantDashDot</span>
539
+ <div class='inline'><p>
540
+ The following are allowed
541
+ </p>
542
+ <pre class="code">
543
+ <span class='symbol val'>:none</span>
544
+ <span class='symbol val'>:thin</span>
545
+ <span class='symbol val'>:medium</span>
546
+ <span class='symbol val'>:dashed</span>
547
+ <span class='symbol val'>:dotted</span>
548
+ <span class='symbol val'>:thick</span>
549
+ <span class='symbol val'>:double</span>
550
+ <span class='symbol val'>:hair</span>
551
+ <span class='symbol val'>:mediumDashed</span>
552
+ <span class='symbol val'>:dashDot</span>
553
+ <span class='symbol val'>:mediumDashDot</span>
554
+ <span class='symbol val'>:dashDotDot</span>
555
+ <span class='symbol val'>:mediumDashDotDot</span>
556
+ <span class='symbol val'>:slantDashDot</span>
543
557
  </pre>
544
558
  </div>
545
559
  </div>
546
560
 
547
-
548
- <p>The syle of this border part.</p>
561
+ <p>
562
+ The syle of this border part.
563
+ </p>
549
564
 
550
565
 
551
566
  </div>
@@ -563,8 +578,9 @@
563
578
 
564
579
 
565
580
  &mdash;
566
- <div class='inline'>
567
- <p>The syle of this border part.</p>
581
+ <div class='inline'><p>
582
+ The syle of this border part.
583
+ </p>
568
584
  </div>
569
585
 
570
586
  </li>
@@ -609,8 +625,9 @@
609
625
 
610
626
  </p><div class="docstring">
611
627
  <div class="discussion">
612
-
613
- <p>Serializes the border part</p>
628
+ <p>
629
+ Serializes the border part
630
+ </p>
614
631
 
615
632
 
616
633
  </div>
@@ -629,8 +646,9 @@
629
646
 
630
647
 
631
648
  &mdash;
632
- <div class='inline'>
633
- <p>The document builder instance this objects xml will be added to.</p>
649
+ <div class='inline'><p>
650
+ The document builder instance this objects xml will be added to.
651
+ </p>
634
652
  </div>
635
653
 
636
654
  </li>
@@ -682,7 +700,7 @@
682
700
  </div>
683
701
 
684
702
  <div id="footer">
685
- Generated on Wed Nov 30 08:53:47 2011 by
703
+ Generated on Mon Dec 5 14:21:23 2011 by
686
704
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
687
705
  0.7.3 (ruby-1.8.7).
688
706
  </div>