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
@@ -96,9 +96,10 @@
96
96
 
97
97
  <h2>Overview</h2><div class="docstring">
98
98
  <div class="discussion">
99
-
100
- <p>The Line3DChart is a three dimentional line chart (who would have guessed?)
101
- that you can add to your worksheet.</p>
99
+ <p>
100
+ The Line3DChart is a three dimentional line chart (who would have guessed?)
101
+ that you can add to your worksheet.
102
+ </p>
102
103
 
103
104
 
104
105
  </div>
@@ -108,8 +109,9 @@ that you can add to your worksheet.</p>
108
109
  <div class="examples">
109
110
  <h3>Examples:</h3>
110
111
 
111
- <h4><div class='inline'>
112
- <p>Creating a chart</p>
112
+ <h4><div class='inline'><p>
113
+ Creating a chart
114
+ </p>
113
115
  </div></h4>
114
116
  <pre class="example code"><span class='comment val'># This example creates a line in a single sheet.</span>
115
117
  <span class='require identifier id'>require</span> <span class='string val'>&quot;rubygems&quot;</span> <span class='comment val'># if that is your preferred way to manage gems!</span>
@@ -149,8 +151,9 @@ that you can add to your worksheet.</p>
149
151
  <dt id="GAP_AMOUNT_PERCENT-constant" class="">GAP_AMOUNT_PERCENT =
150
152
  <div class="docstring">
151
153
  <div class="discussion">
152
-
153
- <p>validation regex for gap amount percent</p>
154
+ <p>
155
+ validation regex for gap amount percent
156
+ </p>
154
157
 
155
158
 
156
159
  </div>
@@ -193,8 +196,9 @@ that you can add to your worksheet.</p>
193
196
 
194
197
 
195
198
 
196
- <span class="summary_desc"><div class='inline'>
197
- <p>the category axis.</p>
199
+ <span class="summary_desc"><div class='inline'><p>
200
+ the category axis.
201
+ </p>
198
202
  </div></span>
199
203
 
200
204
  </li>
@@ -219,9 +223,10 @@ that you can add to your worksheet.</p>
219
223
 
220
224
 
221
225
 
222
- <span class="summary_desc"><div class='inline'>
223
- <p>space between bar or column clusters, as a percentage of the bar or column
224
- width.</p>
226
+ <span class="summary_desc"><div class='inline'><p>
227
+ space between bar or column clusters, as a percentage of the bar or column
228
+ width.
229
+ </p>
225
230
  </div></span>
226
231
 
227
232
  </li>
@@ -246,8 +251,9 @@ width.</p>
246
251
 
247
252
 
248
253
 
249
- <span class="summary_desc"><div class='inline'>
250
- <p>grouping for a column, line, or area chart.</p>
254
+ <span class="summary_desc"><div class='inline'><p>
255
+ grouping for a column, line, or area chart.
256
+ </p>
251
257
  </div></span>
252
258
 
253
259
  </li>
@@ -272,8 +278,9 @@ width.</p>
272
278
 
273
279
 
274
280
 
275
- <span class="summary_desc"><div class='inline'>
276
- <p>the category axis.</p>
281
+ <span class="summary_desc"><div class='inline'><p>
282
+ the category axis.
283
+ </p>
277
284
  </div></span>
278
285
 
279
286
  </li>
@@ -298,8 +305,9 @@ width.</p>
298
305
 
299
306
 
300
307
 
301
- <span class="summary_desc"><div class='inline'>
302
- <p>the category axis.</p>
308
+ <span class="summary_desc"><div class='inline'><p>
309
+ the category axis.
310
+ </p>
303
311
  </div></span>
304
312
 
305
313
  </li>
@@ -344,8 +352,9 @@ width.</p>
344
352
 
345
353
 
346
354
 
347
- <span class="summary_desc"><div class='inline'>
348
- <p>Creates a new line chart object.</p>
355
+ <span class="summary_desc"><div class='inline'><p>
356
+ Creates a new line chart object.
357
+ </p>
349
358
  </div></span>
350
359
 
351
360
  </li>
@@ -367,8 +376,9 @@ width.</p>
367
376
 
368
377
 
369
378
 
370
- <span class="summary_desc"><div class='inline'>
371
- <p>Serializes the bar chart.</p>
379
+ <span class="summary_desc"><div class='inline'><p>
380
+ Serializes the bar chart.
381
+ </p>
372
382
  </div></span>
373
383
 
374
384
  </li>
@@ -399,8 +409,9 @@ width.</p>
399
409
 
400
410
  </p><div class="docstring">
401
411
  <div class="discussion">
402
-
403
- <p>Creates a new line chart object</p>
412
+ <p>
413
+ Creates a new line chart object
414
+ </p>
404
415
 
405
416
 
406
417
  </div>
@@ -419,8 +430,9 @@ width.</p>
419
430
 
420
431
 
421
432
  &mdash;
422
- <div class='inline'>
423
- <p>The workbook that owns this chart.</p>
433
+ <div class='inline'><p>
434
+ The workbook that owns this chart.
435
+ </p>
424
436
  </div>
425
437
 
426
438
  </li>
@@ -437,8 +449,9 @@ width.</p>
437
449
 
438
450
 
439
451
  &mdash;
440
- <div class='inline'>
441
- <p>a customizable set of options</p>
452
+ <div class='inline'><p>
453
+ a customizable set of options
454
+ </p>
442
455
  </div>
443
456
 
444
457
  </li>
@@ -615,8 +628,9 @@ width.</p>
615
628
 
616
629
  </p><div class="docstring">
617
630
  <div class="discussion">
618
-
619
- <p>the category axis</p>
631
+ <p>
632
+ the category axis
633
+ </p>
620
634
 
621
635
 
622
636
  </div>
@@ -671,9 +685,10 @@ width.</p>
671
685
 
672
686
  </p><div class="docstring">
673
687
  <div class="discussion">
674
-
675
- <p>space between bar or column clusters, as a percentage of the bar or column
676
- width.</p>
688
+ <p>
689
+ space between bar or column clusters, as a percentage of the bar or column
690
+ width.
691
+ </p>
677
692
 
678
693
 
679
694
  </div>
@@ -728,9 +743,10 @@ width.</p>
728
743
 
729
744
  </p><div class="docstring">
730
745
  <div class="discussion">
731
-
732
- <p>grouping for a column, line, or area chart. must be one of
733
- [:percentStacked, :clustered, :standard, :stacked]</p>
746
+ <p>
747
+ grouping for a column, line, or area chart. must be one of
748
+ [:percentStacked, :clustered, :standard, :stacked]
749
+ </p>
734
750
 
735
751
 
736
752
  </div>
@@ -785,8 +801,9 @@ width.</p>
785
801
 
786
802
  </p><div class="docstring">
787
803
  <div class="discussion">
788
-
789
- <p>the category axis</p>
804
+ <p>
805
+ the category axis
806
+ </p>
790
807
 
791
808
 
792
809
  </div>
@@ -841,8 +858,9 @@ width.</p>
841
858
 
842
859
  </p><div class="docstring">
843
860
  <div class="discussion">
844
-
845
- <p>the category axis</p>
861
+ <p>
862
+ the category axis
863
+ </p>
846
864
 
847
865
 
848
866
  </div>
@@ -901,8 +919,9 @@ width.</p>
901
919
 
902
920
  </p><div class="docstring">
903
921
  <div class="discussion">
904
-
905
- <p>Serializes the bar chart</p>
922
+ <p>
923
+ Serializes the bar chart
924
+ </p>
906
925
 
907
926
 
908
927
  </div>
@@ -976,7 +995,7 @@ width.</p>
976
995
  </div>
977
996
 
978
997
  <div id="footer">
979
- Generated on Wed Nov 30 08:53:51 2011 by
998
+ Generated on Mon Dec 5 14:21:18 2011 by
980
999
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
981
1000
  0.7.3 (ruby-1.8.7).
982
1001
  </div>
@@ -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 LineSeries defines the title, data and labels for line charts</p>
108
+ <p>
109
+ A LineSeries defines the title, data and labels for line 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>
@@ -222,8 +226,9 @@
222
226
 
223
227
 
224
228
 
225
- <span class="summary_desc"><div class='inline'>
226
- <p>Creates a new series.</p>
229
+ <span class="summary_desc"><div class='inline'><p>
230
+ Creates a new series.
231
+ </p>
227
232
  </div></span>
228
233
 
229
234
  </li>
@@ -245,8 +250,9 @@
245
250
 
246
251
 
247
252
 
248
- <span class="summary_desc"><div class='inline'>
249
- <p>Serializes the series.</p>
253
+ <span class="summary_desc"><div class='inline'><p>
254
+ Serializes the series.
255
+ </p>
250
256
  </div></span>
251
257
 
252
258
  </li>
@@ -277,8 +283,9 @@
277
283
 
278
284
  </p><div class="docstring">
279
285
  <div class="discussion">
280
-
281
- <p>Creates a new series</p>
286
+ <p>
287
+ Creates a new series
288
+ </p>
282
289
 
283
290
 
284
291
  </div>
@@ -310,8 +317,9 @@
310
317
 
311
318
 
312
319
  &mdash;
313
- <div class='inline'>
314
- <p>a customizable set of options</p>
320
+ <div class='inline'><p>
321
+ a customizable set of options
322
+ </p>
315
323
  </div>
316
324
 
317
325
  </li>
@@ -393,8 +401,9 @@
393
401
 
394
402
  </p><div class="docstring">
395
403
  <div class="discussion">
396
-
397
- <p>The data for this series.</p>
404
+ <p>
405
+ The data for this series.
406
+ </p>
398
407
 
399
408
 
400
409
  </div>
@@ -449,8 +458,9 @@
449
458
 
450
459
  </p><div class="docstring">
451
460
  <div class="discussion">
452
-
453
- <p>The labels for this series.</p>
461
+ <p>
462
+ The labels for this series.
463
+ </p>
454
464
 
455
465
 
456
466
  </div>
@@ -509,8 +519,9 @@
509
519
 
510
520
  </p><div class="docstring">
511
521
  <div class="discussion">
512
-
513
- <p>Serializes the series</p>
522
+ <p>
523
+ Serializes the series
524
+ </p>
514
525
 
515
526
 
516
527
  </div>
@@ -529,8 +540,9 @@
529
540
 
530
541
 
531
542
  &mdash;
532
- <div class='inline'>
533
- <p>The document builder instance this objects xml will be added to.</p>
543
+ <div class='inline'><p>
544
+ The document builder instance this objects xml will be added to.
545
+ </p>
534
546
  </div>
535
547
 
536
548
  </li>
@@ -584,7 +596,7 @@
584
596
  </div>
585
597
 
586
598
  <div id="footer">
587
- Generated on Wed Nov 30 08:53:49 2011 by
599
+ Generated on Mon Dec 5 14:21:12 2011 by
588
600
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
589
601
  0.7.3 (ruby-1.8.7).
590
602
  </div>
@@ -97,15 +97,17 @@
97
97
 
98
98
  <div class="note notetag">
99
99
  <strong>Note:</strong>
100
- <div class='inline'>
101
- <p>The recommended way to manage markers is Worksheet#add_chart Markers are
102
- created for a two cell anchor based on the :start and :end options.</p>
100
+ <div class='inline'><p>
101
+ The recommended way to manage markers is Worksheet#add_chart Markers are
102
+ created for a two cell anchor based on the :start and :end options.
103
+ </p>
103
104
  </div>
104
105
  </div>
105
106
 
106
-
107
- <p>The Marker class defines a point in the worksheet that drawing anchors
108
- attach to.</p>
107
+ <p>
108
+ The Marker class defines a point in the worksheet that drawing anchors
109
+ attach to.
110
+ </p>
109
111
 
110
112
 
111
113
  </div>
@@ -144,8 +146,9 @@ attach to.</p>
144
146
 
145
147
 
146
148
 
147
- <span class="summary_desc"><div class='inline'>
148
- <p>The column this marker anchors to.</p>
149
+ <span class="summary_desc"><div class='inline'><p>
150
+ The column this marker anchors to.
151
+ </p>
149
152
  </div></span>
150
153
 
151
154
  </li>
@@ -170,8 +173,9 @@ attach to.</p>
170
173
 
171
174
 
172
175
 
173
- <span class="summary_desc"><div class='inline'>
174
- <p>The offset distance from this markers column.</p>
176
+ <span class="summary_desc"><div class='inline'><p>
177
+ The offset distance from this marker&#8217;s column.
178
+ </p>
175
179
  </div></span>
176
180
 
177
181
  </li>
@@ -196,8 +200,9 @@ attach to.</p>
196
200
 
197
201
 
198
202
 
199
- <span class="summary_desc"><div class='inline'>
200
- <p>The row this marker anchors to.</p>
203
+ <span class="summary_desc"><div class='inline'><p>
204
+ The row this marker anchors to.
205
+ </p>
201
206
  </div></span>
202
207
 
203
208
  </li>
@@ -222,8 +227,9 @@ attach to.</p>
222
227
 
223
228
 
224
229
 
225
- <span class="summary_desc"><div class='inline'>
226
- <p>The offset distance from this markers row.</p>
230
+ <span class="summary_desc"><div class='inline'><p>
231
+ The offset distance from this marker&#8217;s row.
232
+ </p>
227
233
  </div></span>
228
234
 
229
235
  </li>
@@ -258,8 +264,9 @@ attach to.</p>
258
264
 
259
265
 
260
266
 
261
- <span class="summary_desc"><div class='inline'>
262
- <p>shortcut to set the column, row position for this marker.</p>
267
+ <span class="summary_desc"><div class='inline'><p>
268
+ shortcut to set the column, row position for this marker.
269
+ </p>
263
270
  </div></span>
264
271
 
265
272
  </li>
@@ -283,8 +290,9 @@ attach to.</p>
283
290
 
284
291
 
285
292
 
286
- <span class="summary_desc"><div class='inline'>
287
- <p>Creates a new Marker object.</p>
293
+ <span class="summary_desc"><div class='inline'><p>
294
+ Creates a new Marker object.
295
+ </p>
288
296
  </div></span>
289
297
 
290
298
  </li>
@@ -306,8 +314,9 @@ attach to.</p>
306
314
 
307
315
 
308
316
 
309
- <span class="summary_desc"><div class='inline'>
310
- <p>Serializes the marker.</p>
317
+ <span class="summary_desc"><div class='inline'><p>
318
+ Serializes the marker.
319
+ </p>
311
320
  </div></span>
312
321
 
313
322
  </li>
@@ -328,8 +337,9 @@ attach to.</p>
328
337
 
329
338
  </p><div class="docstring">
330
339
  <div class="discussion">
331
-
332
- <p>Creates a new Marker object</p>
340
+ <p>
341
+ Creates a new Marker object
342
+ </p>
333
343
 
334
344
 
335
345
  </div>
@@ -350,8 +360,9 @@ attach to.</p>
350
360
 
351
361
 
352
362
  &mdash;
353
- <div class='inline'>
354
- <p>a customizable set of options</p>
363
+ <div class='inline'><p>
364
+ a customizable set of options
365
+ </p>
355
366
  </div>
356
367
 
357
368
  </li>
@@ -449,8 +460,9 @@ attach to.</p>
449
460
 
450
461
  </p><div class="docstring">
451
462
  <div class="discussion">
452
-
453
- <p>The column this marker anchors to</p>
463
+ <p>
464
+ The column this marker anchors to
465
+ </p>
454
466
 
455
467
 
456
468
  </div>
@@ -505,8 +517,9 @@ attach to.</p>
505
517
 
506
518
  </p><div class="docstring">
507
519
  <div class="discussion">
508
-
509
- <p>The offset distance from this markers column</p>
520
+ <p>
521
+ The offset distance from this marker&#8217;s column
522
+ </p>
510
523
 
511
524
 
512
525
  </div>
@@ -561,8 +574,9 @@ attach to.</p>
561
574
 
562
575
  </p><div class="docstring">
563
576
  <div class="discussion">
564
-
565
- <p>The row this marker anchors to</p>
577
+ <p>
578
+ The row this marker anchors to
579
+ </p>
566
580
 
567
581
 
568
582
  </div>
@@ -617,8 +631,9 @@ attach to.</p>
617
631
 
618
632
  </p><div class="docstring">
619
633
  <div class="discussion">
620
-
621
- <p>The offset distance from this markers row</p>
634
+ <p>
635
+ The offset distance from this marker&#8217;s row
636
+ </p>
622
637
 
623
638
 
624
639
  </div>
@@ -677,8 +692,9 @@ attach to.</p>
677
692
 
678
693
  </p><div class="docstring">
679
694
  <div class="discussion">
680
-
681
- <p>shortcut to set the column, row position for this marker</p>
695
+ <p>
696
+ shortcut to set the column, row position for this marker
697
+ </p>
682
698
 
683
699
 
684
700
  </div>
@@ -697,8 +713,9 @@ attach to.</p>
697
713
 
698
714
 
699
715
  &mdash;
700
- <div class='inline'>
701
- <p>the column for the marker</p>
716
+ <div class='inline'><p>
717
+ the column for the marker
718
+ </p>
702
719
  </div>
703
720
 
704
721
  </li>
@@ -713,8 +730,9 @@ attach to.</p>
713
730
 
714
731
 
715
732
  &mdash;
716
- <div class='inline'>
717
- <p>the row of the marker</p>
733
+ <div class='inline'><p>
734
+ the row of the marker
735
+ </p>
718
736
  </div>
719
737
 
720
738
  </li>
@@ -755,8 +773,9 @@ attach to.</p>
755
773
 
756
774
  </p><div class="docstring">
757
775
  <div class="discussion">
758
-
759
- <p>Serializes the marker</p>
776
+ <p>
777
+ Serializes the marker
778
+ </p>
760
779
 
761
780
 
762
781
  </div>
@@ -775,8 +794,9 @@ attach to.</p>
775
794
 
776
795
 
777
796
  &mdash;
778
- <div class='inline'>
779
- <p>The document builder instance this objects xml will be added to.</p>
797
+ <div class='inline'><p>
798
+ The document builder instance this objects xml will be added to.
799
+ </p>
780
800
  </div>
781
801
 
782
802
  </li>
@@ -828,7 +848,7 @@ attach to.</p>
828
848
  </div>
829
849
 
830
850
  <div id="footer">
831
- Generated on Wed Nov 30 08:53:35 2011 by
851
+ Generated on Mon Dec 5 14:21:12 2011 by
832
852
  <a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
833
853
  0.7.3 (ruby-1.8.7).
834
854
  </div>