spreadsheet 1.3.2 → 1.3.4
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.
- checksums.yaml +4 -4
- data/lib/parseexcel/parseexcel.rb +66 -58
- data/lib/parseexcel/parser.rb +1 -1
- data/lib/parseexcel.rb +1 -1
- data/lib/spreadsheet/column.rb +11 -9
- data/lib/spreadsheet/compatibility.rb +3 -1
- data/lib/spreadsheet/datatypes.rb +149 -147
- data/lib/spreadsheet/encodings.rb +20 -16
- data/lib/spreadsheet/errors.rb +2 -2
- data/lib/spreadsheet/excel/error.rb +23 -22
- data/lib/spreadsheet/excel/internals/biff5.rb +11 -11
- data/lib/spreadsheet/excel/internals/biff8.rb +13 -13
- data/lib/spreadsheet/excel/internals.rb +451 -451
- data/lib/spreadsheet/excel/offset.rb +32 -31
- data/lib/spreadsheet/excel/password_hash.rb +18 -18
- data/lib/spreadsheet/excel/reader/biff5.rb +34 -35
- data/lib/spreadsheet/excel/reader/biff8.rb +234 -222
- data/lib/spreadsheet/excel/reader.rb +1320 -1274
- data/lib/spreadsheet/excel/rgb.rb +91 -91
- data/lib/spreadsheet/excel/row.rb +99 -91
- data/lib/spreadsheet/excel/sst_entry.rb +40 -38
- data/lib/spreadsheet/excel/workbook.rb +86 -76
- data/lib/spreadsheet/excel/worksheet.rb +125 -107
- data/lib/spreadsheet/excel/writer/biff8.rb +56 -55
- data/lib/spreadsheet/excel/writer/format.rb +273 -256
- data/lib/spreadsheet/excel/writer/n_worksheet.rb +837 -798
- data/lib/spreadsheet/excel/writer/workbook.rb +671 -635
- data/lib/spreadsheet/excel/writer/worksheet.rb +898 -861
- data/lib/spreadsheet/excel/writer.rb +1 -1
- data/lib/spreadsheet/excel.rb +18 -11
- data/lib/spreadsheet/font.rb +30 -26
- data/lib/spreadsheet/format.rb +74 -59
- data/lib/spreadsheet/link.rb +7 -5
- data/lib/spreadsheet/note.rb +6 -6
- data/lib/spreadsheet/noteObject.rb +5 -5
- data/lib/spreadsheet/row.rb +33 -23
- data/lib/spreadsheet/version.rb +1 -1
- data/lib/spreadsheet/workbook.rb +27 -13
- data/lib/spreadsheet/worksheet.rb +102 -68
- data/lib/spreadsheet/writer.rb +3 -0
- data/lib/spreadsheet.rb +12 -15
- data/test/excel/reader.rb +8 -8
- data/test/excel/row.rb +35 -31
- data/test/excel/writer/workbook.rb +18 -16
- data/test/excel/writer/worksheet.rb +10 -8
- data/test/font.rb +44 -32
- data/test/format.rb +38 -33
- data/test/integration.rb +627 -598
- data/test/row.rb +5 -3
- data/test/suite.rb +7 -7
- data/test/workbook.rb +15 -14
- data/test/workbook_protection.rb +5 -5
- data/test/worksheet.rb +36 -34
- metadata +50 -8
@@ -1 +1 @@
|
|
1
|
-
require
|
1
|
+
require "spreadsheet/excel/writer/workbook"
|
data/lib/spreadsheet/excel.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
require
|
1
|
+
require "spreadsheet"
|
2
2
|
|
3
3
|
##
|
4
4
|
# Spreadsheet::Excel Compatibility Layer.
|
@@ -7,38 +7,42 @@ module Spreadsheet
|
|
7
7
|
module Excel
|
8
8
|
class ExcelCompatibleWorkbook < Workbook
|
9
9
|
def initialize file_path, *args
|
10
|
-
super
|
10
|
+
super(*args)
|
11
11
|
@file_path = file_path
|
12
12
|
end
|
13
|
+
|
13
14
|
def close
|
14
15
|
write @file_path
|
15
16
|
end
|
16
17
|
end
|
17
|
-
|
18
|
+
|
19
|
+
def self.new file_path
|
18
20
|
ExcelCompatibleWorkbook.new file_path
|
19
21
|
end
|
22
|
+
|
20
23
|
class Workbook
|
21
24
|
def add_worksheet name
|
22
25
|
if name.is_a? String
|
23
|
-
create_worksheet :
|
26
|
+
create_worksheet name: name
|
24
27
|
else
|
25
28
|
super
|
26
29
|
end
|
27
30
|
end
|
28
31
|
end
|
29
32
|
end
|
33
|
+
|
30
34
|
class Worksheet
|
31
35
|
unless instance_methods.include? "new_format_column"
|
32
|
-
|
33
|
-
def format_column column, width=nil, format=nil
|
36
|
+
alias_method :new_format_column, :format_column
|
37
|
+
def format_column column, width = nil, format = nil
|
34
38
|
if width.is_a? Format
|
35
39
|
new_format_column column, width, format
|
36
40
|
else
|
37
|
-
new_format_column column, format, :
|
41
|
+
new_format_column column, format, width: width
|
38
42
|
end
|
39
43
|
end
|
40
44
|
end
|
41
|
-
def write row, col, data=nil, format=nil
|
45
|
+
def write row, col, data = nil, format = nil
|
42
46
|
if data.is_a? Array
|
43
47
|
write_row row, col, data, format
|
44
48
|
else
|
@@ -47,7 +51,8 @@ module Spreadsheet
|
|
47
51
|
row.set_format col, format
|
48
52
|
end
|
49
53
|
end
|
50
|
-
|
54
|
+
|
55
|
+
def write_column row, col, data = nil, format = nil
|
51
56
|
if data.is_a? Array
|
52
57
|
data.each do |token|
|
53
58
|
if token.is_a? Array
|
@@ -61,7 +66,8 @@ module Spreadsheet
|
|
61
66
|
write row, col, data, format
|
62
67
|
end
|
63
68
|
end
|
64
|
-
|
69
|
+
|
70
|
+
def write_row row, col, data = nil, format = nil
|
65
71
|
if data.is_a? Array
|
66
72
|
data.each do |token|
|
67
73
|
if token.is_a? Array
|
@@ -75,7 +81,8 @@ module Spreadsheet
|
|
75
81
|
write row, col, data, format
|
76
82
|
end
|
77
83
|
end
|
78
|
-
|
84
|
+
|
85
|
+
def write_url row, col, url, string = url, format = nil
|
79
86
|
row(row)[col] = Link.new url, string
|
80
87
|
end
|
81
88
|
end
|
data/lib/spreadsheet/font.rb
CHANGED
@@ -1,6 +1,5 @@
|
|
1
|
-
|
2
|
-
require
|
3
|
-
require 'spreadsheet/encodings'
|
1
|
+
require "spreadsheet/datatypes"
|
2
|
+
require "spreadsheet/encodings"
|
4
3
|
|
5
4
|
module Spreadsheet
|
6
5
|
##
|
@@ -27,14 +26,14 @@ module Spreadsheet
|
|
27
26
|
# :bold => 700
|
28
27
|
# :normal => 400
|
29
28
|
# Default: :normal
|
30
|
-
enum :weight, :normal, :bold, Integer, :
|
29
|
+
enum :weight, :normal, :bold, Integer, bold: :b
|
31
30
|
##
|
32
31
|
# Escapement
|
33
32
|
# Valid values: :normal, :superscript or :subscript.
|
34
33
|
# Default: :normal
|
35
34
|
enum :escapement, :normal, :superscript, :subscript,
|
36
|
-
|
37
|
-
|
35
|
+
subscript: :sub,
|
36
|
+
superscript: :super
|
38
37
|
# Font size
|
39
38
|
# Valid values: Any positive Integer.
|
40
39
|
# Default: 10
|
@@ -44,8 +43,8 @@ module Spreadsheet
|
|
44
43
|
# :double_accounting.
|
45
44
|
# Default: :none
|
46
45
|
enum :underline, :none, :single, :double,
|
47
|
-
|
48
|
-
|
46
|
+
:single_accounting, :double_accounting,
|
47
|
+
single: true
|
49
48
|
# Font Family
|
50
49
|
# Valid values: :none, :roman, :swiss, :modern, :script, :decorative
|
51
50
|
# Default: :none
|
@@ -57,11 +56,11 @@ module Spreadsheet
|
|
57
56
|
# :hebrew, :arabic, :cyrillic, :thai, :iso_latin2, :oem_latin1
|
58
57
|
# Default: :default
|
59
58
|
enum :encoding, :default, :iso_latin1, :symbol, :apple_roman, :shift_jis,
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
def initialize name, opts={}
|
59
|
+
:korean_hangul, :korean_johab, :chinese_simplified,
|
60
|
+
:chinese_traditional, :greek, :turkish, :vietnamese,
|
61
|
+
:hebrew, :arabic, :baltic, :cyrillic, :thai, :iso_latin2,
|
62
|
+
:oem_latin1
|
63
|
+
def initialize name, opts = {}
|
65
64
|
self.name = name
|
66
65
|
@color = :text
|
67
66
|
@previous_fast_key = nil
|
@@ -76,38 +75,43 @@ module Spreadsheet
|
|
76
75
|
@family = nil
|
77
76
|
@encoding = nil
|
78
77
|
opts.each do |key, val|
|
79
|
-
|
78
|
+
send :"#{key}=", val
|
80
79
|
end
|
81
80
|
end
|
81
|
+
|
82
82
|
##
|
83
83
|
# Sets #weight to :bold if(_bool_), :normal otherwise.
|
84
84
|
def bold= bool
|
85
85
|
self.weight = bool ? :bold : nil
|
86
86
|
end
|
87
|
+
|
87
88
|
def key # :nodoc:
|
88
89
|
fk = fast_key
|
89
90
|
return @key if @previous_fast_key == fk
|
90
91
|
@previous_fast_key = fk
|
91
92
|
@key = build_key
|
92
93
|
end
|
94
|
+
|
93
95
|
private
|
96
|
+
|
94
97
|
def build_key # :nodoc:
|
95
|
-
underscore = client(
|
98
|
+
underscore = client("_", "UTF-8")
|
96
99
|
key = []
|
97
100
|
key << @name
|
98
|
-
key << underscore << client(size.to_s,
|
99
|
-
key << underscore << client(weight.to_s,
|
100
|
-
key << client(
|
101
|
-
key << client(
|
102
|
-
key << client(
|
103
|
-
key << client(
|
104
|
-
key << underscore << client(escapement.to_s,
|
105
|
-
key << underscore << client(underline.to_s,
|
106
|
-
key << underscore << client(color.to_s,
|
107
|
-
key << underscore << client(family.to_s,
|
108
|
-
key << underscore << client(encoding.to_s,
|
101
|
+
key << underscore << client(size.to_s, "US-ASCII")
|
102
|
+
key << underscore << client(weight.to_s, "US-ASCII")
|
103
|
+
key << client("_italic", "UTF-8") if italic?
|
104
|
+
key << client("_strikeout", "UTF-8") if strikeout?
|
105
|
+
key << client("_outline", "UTF-8") if outline?
|
106
|
+
key << client("_shadow", "UTF-8") if shadow?
|
107
|
+
key << underscore << client(escapement.to_s, "US-ASCII")
|
108
|
+
key << underscore << client(underline.to_s, "US-ASCII")
|
109
|
+
key << underscore << client(color.to_s, "US-ASCII")
|
110
|
+
key << underscore << client(family.to_s, "US-ASCII")
|
111
|
+
key << underscore << client(encoding.to_s, "US-ASCII")
|
109
112
|
key.join("")
|
110
113
|
end
|
114
|
+
|
111
115
|
def fast_key
|
112
116
|
[@name, @size, @weight, @italic, @strikeout, @outline, @shadow, @escapement, @underline, @color, @family, @encoding]
|
113
117
|
end
|
data/lib/spreadsheet/format.rb
CHANGED
@@ -1,7 +1,6 @@
|
|
1
|
-
|
2
|
-
require
|
3
|
-
require
|
4
|
-
require 'spreadsheet/font'
|
1
|
+
require "spreadsheet/datatypes"
|
2
|
+
require "spreadsheet/encodings"
|
3
|
+
require "spreadsheet/font"
|
5
4
|
|
6
5
|
module Spreadsheet
|
7
6
|
##
|
@@ -29,84 +28,84 @@ module Spreadsheet
|
|
29
28
|
# other. Excel will ignore other rotation values if
|
30
29
|
# this is set.
|
31
30
|
boolean :cross_down, :cross_up, :hidden, :locked,
|
32
|
-
|
33
|
-
|
31
|
+
:merge_range, :shrink, :text_justlast, :text_wrap,
|
32
|
+
:rotation_stacked
|
34
33
|
##
|
35
34
|
# Border line styles
|
36
|
-
# Valid values: :none, :thin, :medium, :dashed, :dotted, :thick,
|
37
|
-
|
38
|
-
|
39
|
-
|
35
|
+
# Valid values: :none, :thin, :medium, :dashed, :dotted, :thick,
|
36
|
+
# :double, :hair, :medium_dashed, :thin_dash_dotted,
|
37
|
+
# :medium_dash_dotted, :thin_dash_dot_dotted,
|
38
|
+
# :medium_dash_dot_dotted, :slanted_medium_dash_dotted
|
40
39
|
# Default: :none
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
40
|
+
styles = [:thin, :medium, :dashed, :dotted, :thick,
|
41
|
+
:double, :hair, :medium_dashed, :thin_dash_dotted,
|
42
|
+
:medium_dash_dotted, :thin_dash_dot_dotted,
|
43
|
+
:medium_dash_dot_dotted, :slanted_medium_dash_dotted]
|
44
|
+
enum :left, :none, *styles
|
45
|
+
enum :right, :none, *styles
|
46
|
+
enum :top, :none, *styles
|
47
|
+
enum :bottom, :none, *styles
|
49
48
|
|
50
49
|
##
|
51
50
|
# Color attributes
|
52
|
-
colors
|
53
|
-
|
54
|
-
|
51
|
+
colors :bottom_color, :top_color, :left_color, :right_color,
|
52
|
+
:pattern_fg_color, :pattern_bg_color,
|
53
|
+
:diagonal_color
|
55
54
|
##
|
56
55
|
# Text direction
|
57
56
|
# Valid values: :context, :left_to_right, :right_to_left
|
58
57
|
# Default: :context
|
59
58
|
enum :text_direction, :context, :left_to_right, :right_to_left,
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
59
|
+
left_to_right: [:ltr, :l2r],
|
60
|
+
right_to_left: [:rtl, :r2l]
|
61
|
+
alias_method :reading_order, :text_direction
|
62
|
+
alias_method :reading_order=, :text_direction=
|
64
63
|
##
|
65
64
|
# Indentation level
|
66
65
|
enum :indent_level, 0, Integer
|
67
|
-
|
68
|
-
|
66
|
+
alias_method :indent, :indent_level
|
67
|
+
alias_method :indent=, :indent_level=
|
69
68
|
##
|
70
69
|
# Horizontal alignment
|
71
70
|
# Valid values: :default, :left, :center, :right, :fill, :justify, :merge,
|
72
71
|
# :distributed
|
73
72
|
# Default: :default
|
74
73
|
enum :horizontal_align, :default, :left, :center, :right, :fill, :justify,
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
74
|
+
:merge, :distributed,
|
75
|
+
center: :centre,
|
76
|
+
merge: [:center_across, :centre_across],
|
77
|
+
distributed: :equal_space
|
79
78
|
##
|
80
79
|
# Vertical alignment
|
81
80
|
# Valid values: :bottom, :top, :middle, :justify, :distributed
|
82
81
|
# Default: :bottom
|
83
82
|
enum :vertical_align, :bottom, :top, :middle, :justify, :distributed,
|
84
|
-
|
85
|
-
|
86
|
-
|
83
|
+
distributed: [:vdistributed, :vequal_space, :equal_space],
|
84
|
+
justify: :vjustify,
|
85
|
+
middle: [:vcenter, :vcentre, :center, :centre]
|
87
86
|
attr_accessor :font, :number_format, :name, :pattern, :used_merge
|
88
87
|
##
|
89
88
|
# Text rotation
|
90
89
|
attr_reader :rotation
|
91
|
-
def initialize opts={}
|
92
|
-
@font
|
93
|
-
@number_format
|
94
|
-
@rotation
|
95
|
-
@pattern
|
96
|
-
@bottom_color
|
97
|
-
@top_color
|
98
|
-
@left_color
|
99
|
-
@right_color
|
100
|
-
@diagonal_color
|
90
|
+
def initialize opts = {}
|
91
|
+
@font = Font.new client("Arial", "UTF-8"), family: :swiss
|
92
|
+
@number_format = client "GENERAL", "UTF-8"
|
93
|
+
@rotation = 0
|
94
|
+
@pattern = 0
|
95
|
+
@bottom_color = :black
|
96
|
+
@top_color = :black
|
97
|
+
@left_color = :black
|
98
|
+
@right_color = :black
|
99
|
+
@diagonal_color = :black
|
101
100
|
@pattern_fg_color = :border
|
102
101
|
@pattern_bg_color = :pattern_bg
|
103
102
|
@regexes = {
|
104
|
-
:
|
105
|
-
:
|
106
|
-
:
|
107
|
-
:
|
108
|
-
:
|
109
|
-
:
|
103
|
+
date: Regexp.new(client("[YMD]|d{2}|m{3}|y{2}", "UTF-8")),
|
104
|
+
date_or_time: Regexp.new(client("[hmsYMD]", "UTF-8")),
|
105
|
+
datetime: Regexp.new(client("([YMD].*[HS])|([HS].*[YMD])", "UTF-8")),
|
106
|
+
time: Regexp.new(client("[hms]", "UTF-8")),
|
107
|
+
number: Regexp.new(client("([#]|0+)", "UTF-8")),
|
108
|
+
locale: Regexp.new(client(/\A\[\$-\S+\]/.to_s, "UTF-8"))
|
110
109
|
}
|
111
110
|
|
112
111
|
# Temp code to prevent merged formats in non-merged cells.
|
@@ -119,7 +118,7 @@ module Spreadsheet
|
|
119
118
|
def update_format(opts = {})
|
120
119
|
opts.each do |attribute, value|
|
121
120
|
writer = "#{attribute}="
|
122
|
-
@font.respond_to?(writer) ? @font.send(writer,value) :
|
121
|
+
@font.respond_to?(writer) ? @font.send(writer, value) : send(writer, value)
|
123
122
|
end
|
124
123
|
self
|
125
124
|
end
|
@@ -135,83 +134,99 @@ module Spreadsheet
|
|
135
134
|
def align= location
|
136
135
|
self.horizontal_align = location
|
137
136
|
rescue ArgumentError
|
138
|
-
self.vertical_align =
|
137
|
+
self.vertical_align = begin
|
138
|
+
location
|
139
|
+
rescue
|
140
|
+
ArgumentError
|
141
|
+
end
|
139
142
|
end
|
143
|
+
|
140
144
|
##
|
141
145
|
# Returns an Array containing the line styles of the four borders:
|
142
146
|
# bottom, top, right, left
|
143
147
|
def border
|
144
148
|
[bottom, top, right, left]
|
145
149
|
end
|
150
|
+
|
146
151
|
##
|
147
152
|
# Set same line style on all four borders at once (left, right, top, bottom)
|
148
153
|
def border=(style)
|
149
|
-
[:bottom=, :top=, :right=, :left=].each
|
154
|
+
[:bottom=, :top=, :right=, :left=].each { |writer| send writer, style }
|
150
155
|
end
|
156
|
+
|
151
157
|
##
|
152
158
|
# Returns an Array containing the colors of the four borders:
|
153
159
|
# bottom, top, right, left
|
154
160
|
def border_color
|
155
|
-
[@bottom_color
|
161
|
+
[@bottom_color, @top_color, @right_color, @left_color]
|
156
162
|
end
|
163
|
+
|
157
164
|
##
|
158
165
|
# Set all four border colors to _color_ (left, right, top, bottom)
|
159
166
|
def border_color=(color)
|
160
167
|
[:bottom_color=, :top_color=, :right_color=, :left_color=].each do |writer|
|
161
|
-
send writer, color
|
168
|
+
send writer, color
|
169
|
+
end
|
162
170
|
end
|
171
|
+
|
163
172
|
##
|
164
173
|
# Set the Text rotation
|
165
174
|
# Valid values: Integers from -90 to 90,
|
166
175
|
# or :stacked (sets #rotation_stacked to true)
|
167
176
|
def rotation=(rot)
|
168
|
-
if rot.to_s.downcase ==
|
177
|
+
if rot.to_s.downcase == "stacked"
|
169
178
|
@rotation_stacked = true
|
170
179
|
@rotation = 0
|
171
|
-
elsif rot.
|
180
|
+
elsif rot.is_a?(Integer)
|
172
181
|
@rotation_stacked = false
|
173
182
|
@rotation = rot % 360
|
174
183
|
else
|
175
184
|
raise TypeError, "rotation value must be an Integer or the String 'stacked'"
|
176
185
|
end
|
177
186
|
end
|
187
|
+
|
178
188
|
##
|
179
189
|
# Backward compatibility method. May disappear at some point in the future.
|
180
190
|
def center_across!
|
181
191
|
self.horizontal_align = :merge
|
182
192
|
end
|
183
|
-
|
193
|
+
alias_method :merge!, :center_across!
|
184
194
|
##
|
185
195
|
# Is the cell formatted as a Date?
|
186
196
|
def date?
|
187
197
|
!number? && matches_format?(:date)
|
188
198
|
end
|
199
|
+
|
189
200
|
##
|
190
201
|
# Is the cell formatted as a Date or Time?
|
191
202
|
def date_or_time?
|
192
203
|
!number? && matches_format?(:date_or_time)
|
193
204
|
end
|
205
|
+
|
194
206
|
##
|
195
207
|
# Is the cell formatted as a DateTime?
|
196
208
|
def datetime?
|
197
209
|
!number? && matches_format?(:datetime)
|
198
210
|
end
|
211
|
+
|
199
212
|
##
|
200
213
|
# Is the cell formatted as a Time?
|
201
214
|
def time?
|
202
215
|
!number? && matches_format?(:time)
|
203
216
|
end
|
217
|
+
|
204
218
|
##
|
205
219
|
# Is the cell formatted as a number?
|
206
220
|
def number?
|
207
221
|
matches_format?(:number)
|
208
222
|
end
|
223
|
+
|
209
224
|
##
|
210
225
|
# Does the cell match a particular preset format?
|
211
226
|
def matches_format?(name)
|
212
227
|
# Excel number formats may optionally include a locale identifier like this:
|
213
228
|
# [$-409]
|
214
|
-
format = @number_format.to_s.sub(@regexes[:locale],
|
229
|
+
format = @number_format.to_s.sub(@regexes[:locale], "")
|
215
230
|
!!@regexes[name].match(format)
|
216
231
|
end
|
217
232
|
end
|
data/lib/spreadsheet/link.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
require
|
2
|
-
require
|
1
|
+
require "uri"
|
2
|
+
require "spreadsheet/encodings"
|
3
3
|
|
4
4
|
module Spreadsheet
|
5
5
|
##
|
@@ -20,20 +20,22 @@ module Spreadsheet
|
|
20
20
|
class Link < String
|
21
21
|
include Encodings
|
22
22
|
attr_accessor :target_frame, :url, :dos, :fragment
|
23
|
-
def initialize url=
|
24
|
-
super
|
23
|
+
def initialize url = "", description = url, fragment = nil
|
24
|
+
super(description)
|
25
25
|
@url = url
|
26
26
|
@fragment = fragment
|
27
27
|
end
|
28
|
+
|
28
29
|
##
|
29
30
|
# The Url with the fragment appended if present.
|
30
31
|
def href
|
31
32
|
href = (@url || @dos).to_s.dup
|
32
33
|
if @fragment
|
33
|
-
href << client(
|
34
|
+
href << client("#", "UTF-8") << @fragment
|
34
35
|
end
|
35
36
|
href
|
36
37
|
end
|
38
|
+
|
37
39
|
##
|
38
40
|
# Attempts to parse the output of href. May raise a URI::InvalidURIError
|
39
41
|
def to_uri
|
data/lib/spreadsheet/note.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
require
|
1
|
+
require "spreadsheet/encodings"
|
2
2
|
|
3
3
|
module Spreadsheet
|
4
4
|
##
|
@@ -10,14 +10,14 @@ module Spreadsheet
|
|
10
10
|
# #author :: The name of the author who wrote the note
|
11
11
|
class Note
|
12
12
|
include Encodings
|
13
|
-
attr_accessor :author, :length, :
|
13
|
+
attr_accessor :author, :length, :obj_id, :row, :col, :text
|
14
14
|
def initialize
|
15
15
|
@author = nil
|
16
16
|
@length = 0
|
17
|
-
@
|
18
|
-
@row
|
19
|
-
@col
|
20
|
-
@text
|
17
|
+
@obj_id = nil
|
18
|
+
@row = -1
|
19
|
+
@col = -1
|
20
|
+
@text = ""
|
21
21
|
end
|
22
22
|
end
|
23
23
|
end
|
@@ -1,17 +1,17 @@
|
|
1
|
-
require
|
1
|
+
require "spreadsheet/encodings"
|
2
2
|
|
3
3
|
module Spreadsheet
|
4
4
|
##
|
5
|
-
# The NoteObject class is made to handle the text output from the
|
5
|
+
# The NoteObject class is made to handle the text output from the
|
6
6
|
# object, txo, continue records which contain a comment's text record.
|
7
7
|
#
|
8
8
|
#
|
9
9
|
class NoteObject
|
10
10
|
include Encodings
|
11
|
-
attr_accessor :
|
11
|
+
attr_accessor :obj_id, :text
|
12
12
|
def initialize
|
13
|
-
@
|
14
|
-
@text
|
13
|
+
@obj_id = -1
|
14
|
+
@text = ""
|
15
15
|
end
|
16
16
|
end
|
17
17
|
end
|