write_xlsx 0.71.0 → 0.72.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.rdoc +3 -0
- data/lib/write_xlsx/version.rb +1 -1
- data/lib/write_xlsx/workbook.rb +2 -3
- data/lib/write_xlsx/worksheet.rb +7 -5
- data/test/regression/images/train.jpg +0 -0
- data/test/regression/test_hyperlink20.rb +29 -0
- data/test/regression/test_image19.rb +24 -0
- data/test/regression/test_set_column03.rb +38 -0
- data/test/regression/test_set_column04.rb +42 -0
- data/test/regression/test_set_column05.rb +52 -0
- data/test/regression/test_set_column06.rb +49 -0
- data/test/regression/test_set_column07.rb +45 -0
- data/test/regression/test_set_column08.rb +42 -0
- data/test/regression/xlsx_files/hyperlink20.xlsx +0 -0
- data/test/regression/xlsx_files/image19.xlsx +0 -0
- data/test/regression/xlsx_files/set_column03.xlsx +0 -0
- data/test/regression/xlsx_files/set_column04.xlsx +0 -0
- data/test/regression/xlsx_files/set_column05.xlsx +0 -0
- data/test/regression/xlsx_files/set_column06.xlsx +0 -0
- data/test/regression/xlsx_files/set_column07.xlsx +0 -0
- data/test/regression/xlsx_files/set_column08.xlsx +0 -0
- metadata +36 -4
- data/test/regression/images/issue32.jpg +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a44c776377d18f36e5e2410d5d56ee8238f65850
|
4
|
+
data.tar.gz: 859623a413b0f8046ce7256970a1ac926687d07d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9bc0e1d4c487213517e2ad9dbf0cd6a7ca6dee10ce5b62eee3694b5de3f6b5f91383c3595da26177d5064d7d2f1d94798d8659107585f5a094c400f2ff83fdfe
|
7
|
+
data.tar.gz: fb98eca9e50f55ea16ebc2fac03f126a8661e16f2966c92d1159c4cb5153529def1baea481d9c000327f562cfe94422d78b7c9d671325a45f9e054ce9f57c336
|
data/README.rdoc
CHANGED
@@ -77,6 +77,9 @@ the first worksheet in an Excel XML spreadsheet called ruby.xlsx:
|
|
77
77
|
workbook.close
|
78
78
|
|
79
79
|
== Recent change
|
80
|
+
2013-09-03 v0.72.0
|
81
|
+
Fix for charts and images that cross rows and columns that are hidden or formatted but which don't have size changes.
|
82
|
+
|
80
83
|
2013-09-02 v0.71.0
|
81
84
|
Fixed issue in image handling.
|
82
85
|
Added fix to ensure formula calculation on load regardless of Excel version.
|
data/lib/write_xlsx/version.rb
CHANGED
data/lib/write_xlsx/workbook.rb
CHANGED
@@ -1694,9 +1694,8 @@ def get_image_properties(filename)
|
|
1694
1694
|
# Test for PNGs.
|
1695
1695
|
type, width, height = process_png(data)
|
1696
1696
|
image_types[:png] = 1
|
1697
|
-
elsif data.unpack('n')[0] == 0xFFD8
|
1698
|
-
|
1699
|
-
# Test for JFIF and Exif JPEGs.
|
1697
|
+
elsif data.unpack('n')[0] == 0xFFD8
|
1698
|
+
# Test for JPEG files.
|
1700
1699
|
type, width, height = process_jpg(data, filename)
|
1701
1700
|
@image_types[:jpeg] = 1
|
1702
1701
|
elsif data.unpack('A2')[0] == 'BM'
|
data/lib/write_xlsx/worksheet.rb
CHANGED
@@ -739,8 +739,7 @@ def set_column(*args)
|
|
739
739
|
|
740
740
|
# Store the col sizes for use when calculating image vertices taking
|
741
741
|
# hidden columns into account. Also store the column formats.
|
742
|
-
width
|
743
|
-
width = 0 if ptrue?(hidden) # Set width to zero if col is hidden
|
742
|
+
width = 0 if ptrue?(hidden) # Set width to zero if hidden
|
744
743
|
|
745
744
|
(firstcol .. lastcol).each do |col|
|
746
745
|
@col_sizes[col] = width
|
@@ -1671,7 +1670,8 @@ def set_start_page(page_start)
|
|
1671
1670
|
#
|
1672
1671
|
def write(*args)
|
1673
1672
|
# Check for a cell reference in A1 notation and substitute row and column
|
1674
|
-
|
1673
|
+
row_col_args = row_col_notation(args)
|
1674
|
+
token = row_col_args[2] || ''
|
1675
1675
|
|
1676
1676
|
# Match an array ref.
|
1677
1677
|
if token.respond_to?(:to_ary)
|
@@ -1697,8 +1697,8 @@ def write(*args)
|
|
1697
1697
|
write_formula(*args)
|
1698
1698
|
# Match blank
|
1699
1699
|
elsif token == ''
|
1700
|
-
|
1701
|
-
write_blank(*
|
1700
|
+
row_col_args.delete_at(2) # remove the empty string from the parameter list
|
1701
|
+
write_blank(*row_col_args)
|
1702
1702
|
else
|
1703
1703
|
write_string(*args)
|
1704
1704
|
end
|
@@ -3086,6 +3086,8 @@ def set_row(*args)
|
|
3086
3086
|
# Store the row change to allow optimisations.
|
3087
3087
|
@row_size_changed = true
|
3088
3088
|
|
3089
|
+
height = 0 if ptrue?(hidden)
|
3090
|
+
|
3089
3091
|
# Store the row sizes for use when calculating image vertices.
|
3090
3092
|
@row_sizes[row] = height
|
3091
3093
|
end
|
Binary file
|
@@ -0,0 +1,29 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestRegressionHyperlink20 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_hyperlink20
|
14
|
+
@xlsx = 'hyperlink20.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
workbook.instance_variable_set('@custom_colors', ['FF0000FF'])
|
17
|
+
|
18
|
+
worksheet = workbook.add_worksheet
|
19
|
+
format1 = workbook.add_format(:color => 'blue', :underline => 1)
|
20
|
+
format2 = workbook.add_format(:color => 'red', :underline => 1)
|
21
|
+
|
22
|
+
worksheet.write_url('A1', 'http://www.python.org/1', format1)
|
23
|
+
worksheet.write_url('A2', 'http://www.python.org/2', format2)
|
24
|
+
|
25
|
+
workbook.close
|
26
|
+
|
27
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
28
|
+
end
|
29
|
+
end
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestRegressionImage19 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_image19
|
14
|
+
@xlsx = 'image19.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
|
18
|
+
worksheet.insert_image('C2',
|
19
|
+
File.join(@test_dir, 'regression', 'images/train.jpg'))
|
20
|
+
|
21
|
+
workbook.close
|
22
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestRegressionSetColumn03 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_set_column03
|
14
|
+
@xlsx = 'set_column03.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
|
18
|
+
bold = workbook.add_format(:bold => 1)
|
19
|
+
italic = workbook.add_format(:italic => 1)
|
20
|
+
|
21
|
+
data = [
|
22
|
+
[1, 2, 3, 4, 5],
|
23
|
+
[2, 4, 6, 8, 10],
|
24
|
+
[3, 6, 9, 12, 15]
|
25
|
+
]
|
26
|
+
|
27
|
+
worksheet.write('A1', 'Foo', italic)
|
28
|
+
worksheet.write('B1', 'Bar', bold)
|
29
|
+
worksheet.write('A2', data)
|
30
|
+
|
31
|
+
worksheet.set_column('F:F', nil, bold)
|
32
|
+
|
33
|
+
workbook.close
|
34
|
+
|
35
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
36
|
+
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestRegressionSetColumn04 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_set_column04
|
14
|
+
@xlsx = 'set_column04.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
|
18
|
+
bold = workbook.add_format(:bold => 1)
|
19
|
+
italic = workbook.add_format(:italic => 1)
|
20
|
+
bold_italic = workbook.add_format(:bold => 1, :italic => 1)
|
21
|
+
|
22
|
+
data = [
|
23
|
+
[1, 2, 3, 4, 5],
|
24
|
+
[2, 4, 6, 8, 10],
|
25
|
+
[3, 6, 9, 12, 15]
|
26
|
+
]
|
27
|
+
|
28
|
+
worksheet.write('A1', 'Foo', italic)
|
29
|
+
worksheet.write('B1', 'Bar', bold)
|
30
|
+
worksheet.write('A2', data)
|
31
|
+
|
32
|
+
worksheet.set_row(12, nil, italic)
|
33
|
+
worksheet.set_column('F:F', nil, bold)
|
34
|
+
|
35
|
+
worksheet.write('F13', nil, bold_italic)
|
36
|
+
|
37
|
+
workbook.close
|
38
|
+
|
39
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
40
|
+
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,52 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestRegressionSetColumn05 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_set_column05
|
14
|
+
@xlsx = 'set_column05.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
chart = workbook.add_chart(:type => 'line', :embedded => 1)
|
18
|
+
|
19
|
+
bold = workbook.add_format(:bold => 1)
|
20
|
+
italic = workbook.add_format(:italic => 1)
|
21
|
+
bold_italic = workbook.add_format(:bold => 1, :italic => 1)
|
22
|
+
|
23
|
+
# For testing, copy the randomly generated axis ids in the target xlsx file.
|
24
|
+
chart.instance_variable_set(:@axis_ids, [68311296, 69198208])
|
25
|
+
|
26
|
+
data = [
|
27
|
+
[1, 2, 3, 4, 5],
|
28
|
+
[2, 4, 6, 8, 10],
|
29
|
+
[3, 6, 9, 12, 15]
|
30
|
+
]
|
31
|
+
|
32
|
+
worksheet.write('A1', 'Foo', italic)
|
33
|
+
worksheet.write('B1', 'Bar', bold)
|
34
|
+
worksheet.write('A2', data)
|
35
|
+
|
36
|
+
worksheet.set_row(12, nil, italic)
|
37
|
+
worksheet.set_column('F:F', nil, bold)
|
38
|
+
|
39
|
+
worksheet.write('F13', nil, bold_italic)
|
40
|
+
|
41
|
+
chart.add_series(:values => '=Sheet1!$A$2:$A$6')
|
42
|
+
chart.add_series(:values => '=Sheet1!$B$2:$B$6')
|
43
|
+
chart.add_series(:values => '=Sheet1!$C$2:$C$6')
|
44
|
+
|
45
|
+
worksheet.insert_chart('E9', chart)
|
46
|
+
|
47
|
+
workbook.close
|
48
|
+
|
49
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
50
|
+
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestRegressionSetColumn06 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_set_column06
|
14
|
+
@xlsx = 'set_column06.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
chart = workbook.add_chart(:type => 'line', :embedded => 1)
|
18
|
+
|
19
|
+
bold = workbook.add_format(:bold => 1)
|
20
|
+
italic = workbook.add_format(:italic => 1)
|
21
|
+
|
22
|
+
# For testing, copy the randomly generated axis ids in the target xlsx file.
|
23
|
+
chart.instance_variable_set(:@axis_ids, [69197824, 69199360])
|
24
|
+
|
25
|
+
data = [
|
26
|
+
[1, 2, 3, 4, 5],
|
27
|
+
[2, 4, 6, 8, 10],
|
28
|
+
[3, 6, 9, 12, 15]
|
29
|
+
]
|
30
|
+
|
31
|
+
worksheet.write('A1', 'Foo', bold)
|
32
|
+
worksheet.write('B1', 'Bar', italic)
|
33
|
+
worksheet.write('A2', data)
|
34
|
+
|
35
|
+
worksheet.set_row(12, nil, nil, 1)
|
36
|
+
worksheet.set_column('F:F', nil, nil, 1)
|
37
|
+
|
38
|
+
chart.add_series(:values => '=Sheet1!$A$2:$A$6')
|
39
|
+
chart.add_series(:values => '=Sheet1!$B$2:$B$6')
|
40
|
+
chart.add_series(:values => '=Sheet1!$C$2:$C$6')
|
41
|
+
|
42
|
+
worksheet.insert_chart('E9', chart)
|
43
|
+
|
44
|
+
workbook.close
|
45
|
+
|
46
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
47
|
+
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestRegressionSetColumn07 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_set_column07
|
14
|
+
@xlsx = 'set_column07.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
|
18
|
+
bold = workbook.add_format(:bold => 1)
|
19
|
+
italic = workbook.add_format(:italic => 1)
|
20
|
+
bold_italic = workbook.add_format(:bold => 1, :italic => 1)
|
21
|
+
|
22
|
+
data = [
|
23
|
+
[1, 2, 3, 4, 5],
|
24
|
+
[2, 4, 6, 8, 10],
|
25
|
+
[3, 6, 9, 12, 15]
|
26
|
+
]
|
27
|
+
|
28
|
+
worksheet.write('A1', 'Foo', italic)
|
29
|
+
worksheet.write('B1', 'Bar', bold)
|
30
|
+
worksheet.write('A2', data)
|
31
|
+
|
32
|
+
worksheet.set_row(12, nil, italic)
|
33
|
+
worksheet.set_column('F:F', nil, bold)
|
34
|
+
|
35
|
+
worksheet.write('F13', nil, bold_italic)
|
36
|
+
|
37
|
+
worksheet.insert_image('E12',
|
38
|
+
File.join(@test_dir, 'regression', 'images/logo.png'))
|
39
|
+
|
40
|
+
workbook.close
|
41
|
+
|
42
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
43
|
+
|
44
|
+
end
|
45
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
require 'helper'
|
3
|
+
|
4
|
+
class TestRegressionSetColumn08 < Test::Unit::TestCase
|
5
|
+
def setup
|
6
|
+
setup_dir_var
|
7
|
+
end
|
8
|
+
|
9
|
+
def teardown
|
10
|
+
File.delete(@xlsx) if File.exist?(@xlsx)
|
11
|
+
end
|
12
|
+
|
13
|
+
def test_set_column08
|
14
|
+
@xlsx = 'set_column08.xlsx'
|
15
|
+
workbook = WriteXLSX.new(@xlsx)
|
16
|
+
worksheet = workbook.add_worksheet
|
17
|
+
|
18
|
+
bold = workbook.add_format(:bold => 1)
|
19
|
+
italic = workbook.add_format(:italic => 1)
|
20
|
+
|
21
|
+
data = [
|
22
|
+
[1, 2, 3, 4, 5],
|
23
|
+
[2, 4, 6, 8, 10],
|
24
|
+
[3, 6, 9, 12, 15]
|
25
|
+
]
|
26
|
+
|
27
|
+
worksheet.write('A1', 'Foo', bold)
|
28
|
+
worksheet.write('B1', 'Bar', italic)
|
29
|
+
worksheet.write('A2', data)
|
30
|
+
|
31
|
+
worksheet.set_row(12, nil, nil, 1)
|
32
|
+
worksheet.set_column('F:F', nil, nil, 1)
|
33
|
+
|
34
|
+
worksheet.insert_image('E12',
|
35
|
+
File.join(@test_dir, 'regression', 'images/logo.png'))
|
36
|
+
|
37
|
+
workbook.close
|
38
|
+
|
39
|
+
compare_xlsx_for_regression(File.join(@regression_output, @xlsx), @xlsx)
|
40
|
+
|
41
|
+
end
|
42
|
+
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: write_xlsx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.72.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hideo NAKAMURA
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-09-
|
11
|
+
date: 2013-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubyzip
|
@@ -337,7 +337,6 @@ files:
|
|
337
337
|
- test/regression/images/blue.png
|
338
338
|
- test/regression/images/grey.jpg
|
339
339
|
- test/regression/images/grey.png
|
340
|
-
- test/regression/images/issue32.jpg
|
341
340
|
- test/regression/images/issue32.png
|
342
341
|
- test/regression/images/logo.png
|
343
342
|
- test/regression/images/mylogo.png
|
@@ -345,6 +344,7 @@ files:
|
|
345
344
|
- test/regression/images/red.jpg
|
346
345
|
- test/regression/images/red.png
|
347
346
|
- test/regression/images/red_64x20.png
|
347
|
+
- test/regression/images/train.jpg
|
348
348
|
- test/regression/images/yellow.jpg
|
349
349
|
- test/regression/images/yellow.png
|
350
350
|
- test/regression/test_array_formula01.rb
|
@@ -611,6 +611,7 @@ files:
|
|
611
611
|
- test/regression/test_hyperlink16.rb
|
612
612
|
- test/regression/test_hyperlink17.rb
|
613
613
|
- test/regression/test_hyperlink18.rb
|
614
|
+
- test/regression/test_hyperlink20.rb
|
614
615
|
- test/regression/test_image01.rb
|
615
616
|
- test/regression/test_image02.rb
|
616
617
|
- test/regression/test_image03.rb
|
@@ -629,6 +630,7 @@ files:
|
|
629
630
|
- test/regression/test_image16.rb
|
630
631
|
- test/regression/test_image17.rb
|
631
632
|
- test/regression/test_image18.rb
|
633
|
+
- test/regression/test_image19.rb
|
632
634
|
- test/regression/test_macro01.rb
|
633
635
|
- test/regression/test_outline01.rb
|
634
636
|
- test/regression/test_outline02.rb
|
@@ -699,6 +701,12 @@ files:
|
|
699
701
|
- test/regression/test_selection02.rb
|
700
702
|
- test/regression/test_set_column01.rb
|
701
703
|
- test/regression/test_set_column02.rb
|
704
|
+
- test/regression/test_set_column03.rb
|
705
|
+
- test/regression/test_set_column04.rb
|
706
|
+
- test/regression/test_set_column05.rb
|
707
|
+
- test/regression/test_set_column06.rb
|
708
|
+
- test/regression/test_set_column07.rb
|
709
|
+
- test/regression/test_set_column08.rb
|
702
710
|
- test/regression/test_set_print_scale01.rb
|
703
711
|
- test/regression/test_set_start_page01.rb
|
704
712
|
- test/regression/test_shape01.rb
|
@@ -1014,6 +1022,7 @@ files:
|
|
1014
1022
|
- test/regression/xlsx_files/hyperlink16.xlsx
|
1015
1023
|
- test/regression/xlsx_files/hyperlink17.xlsx
|
1016
1024
|
- test/regression/xlsx_files/hyperlink18.xlsx
|
1025
|
+
- test/regression/xlsx_files/hyperlink20.xlsx
|
1017
1026
|
- test/regression/xlsx_files/image01.xlsx
|
1018
1027
|
- test/regression/xlsx_files/image02.xlsx
|
1019
1028
|
- test/regression/xlsx_files/image03.xlsx
|
@@ -1032,6 +1041,7 @@ files:
|
|
1032
1041
|
- test/regression/xlsx_files/image16.xlsx
|
1033
1042
|
- test/regression/xlsx_files/image17.xlsx
|
1034
1043
|
- test/regression/xlsx_files/image18.xlsx
|
1044
|
+
- test/regression/xlsx_files/image19.xlsx
|
1035
1045
|
- test/regression/xlsx_files/macro01.xlsm
|
1036
1046
|
- test/regression/xlsx_files/outline01.xlsx
|
1037
1047
|
- test/regression/xlsx_files/outline02.xlsx
|
@@ -1101,6 +1111,12 @@ files:
|
|
1101
1111
|
- test/regression/xlsx_files/selection01.xlsx
|
1102
1112
|
- test/regression/xlsx_files/selection02.xlsx
|
1103
1113
|
- test/regression/xlsx_files/set_column01.xlsx
|
1114
|
+
- test/regression/xlsx_files/set_column03.xlsx
|
1115
|
+
- test/regression/xlsx_files/set_column04.xlsx
|
1116
|
+
- test/regression/xlsx_files/set_column05.xlsx
|
1117
|
+
- test/regression/xlsx_files/set_column06.xlsx
|
1118
|
+
- test/regression/xlsx_files/set_column07.xlsx
|
1119
|
+
- test/regression/xlsx_files/set_column08.xlsx
|
1104
1120
|
- test/regression/xlsx_files/set_print_scale01.xlsx
|
1105
1121
|
- test/regression/xlsx_files/set_start_page01.xlsx
|
1106
1122
|
- test/regression/xlsx_files/shape01.xlsx
|
@@ -1461,7 +1477,6 @@ test_files:
|
|
1461
1477
|
- test/regression/images/blue.png
|
1462
1478
|
- test/regression/images/grey.jpg
|
1463
1479
|
- test/regression/images/grey.png
|
1464
|
-
- test/regression/images/issue32.jpg
|
1465
1480
|
- test/regression/images/issue32.png
|
1466
1481
|
- test/regression/images/logo.png
|
1467
1482
|
- test/regression/images/mylogo.png
|
@@ -1469,6 +1484,7 @@ test_files:
|
|
1469
1484
|
- test/regression/images/red.jpg
|
1470
1485
|
- test/regression/images/red.png
|
1471
1486
|
- test/regression/images/red_64x20.png
|
1487
|
+
- test/regression/images/train.jpg
|
1472
1488
|
- test/regression/images/yellow.jpg
|
1473
1489
|
- test/regression/images/yellow.png
|
1474
1490
|
- test/regression/test_array_formula01.rb
|
@@ -1735,6 +1751,7 @@ test_files:
|
|
1735
1751
|
- test/regression/test_hyperlink16.rb
|
1736
1752
|
- test/regression/test_hyperlink17.rb
|
1737
1753
|
- test/regression/test_hyperlink18.rb
|
1754
|
+
- test/regression/test_hyperlink20.rb
|
1738
1755
|
- test/regression/test_image01.rb
|
1739
1756
|
- test/regression/test_image02.rb
|
1740
1757
|
- test/regression/test_image03.rb
|
@@ -1753,6 +1770,7 @@ test_files:
|
|
1753
1770
|
- test/regression/test_image16.rb
|
1754
1771
|
- test/regression/test_image17.rb
|
1755
1772
|
- test/regression/test_image18.rb
|
1773
|
+
- test/regression/test_image19.rb
|
1756
1774
|
- test/regression/test_macro01.rb
|
1757
1775
|
- test/regression/test_outline01.rb
|
1758
1776
|
- test/regression/test_outline02.rb
|
@@ -1823,6 +1841,12 @@ test_files:
|
|
1823
1841
|
- test/regression/test_selection02.rb
|
1824
1842
|
- test/regression/test_set_column01.rb
|
1825
1843
|
- test/regression/test_set_column02.rb
|
1844
|
+
- test/regression/test_set_column03.rb
|
1845
|
+
- test/regression/test_set_column04.rb
|
1846
|
+
- test/regression/test_set_column05.rb
|
1847
|
+
- test/regression/test_set_column06.rb
|
1848
|
+
- test/regression/test_set_column07.rb
|
1849
|
+
- test/regression/test_set_column08.rb
|
1826
1850
|
- test/regression/test_set_print_scale01.rb
|
1827
1851
|
- test/regression/test_set_start_page01.rb
|
1828
1852
|
- test/regression/test_shape01.rb
|
@@ -2138,6 +2162,7 @@ test_files:
|
|
2138
2162
|
- test/regression/xlsx_files/hyperlink16.xlsx
|
2139
2163
|
- test/regression/xlsx_files/hyperlink17.xlsx
|
2140
2164
|
- test/regression/xlsx_files/hyperlink18.xlsx
|
2165
|
+
- test/regression/xlsx_files/hyperlink20.xlsx
|
2141
2166
|
- test/regression/xlsx_files/image01.xlsx
|
2142
2167
|
- test/regression/xlsx_files/image02.xlsx
|
2143
2168
|
- test/regression/xlsx_files/image03.xlsx
|
@@ -2156,6 +2181,7 @@ test_files:
|
|
2156
2181
|
- test/regression/xlsx_files/image16.xlsx
|
2157
2182
|
- test/regression/xlsx_files/image17.xlsx
|
2158
2183
|
- test/regression/xlsx_files/image18.xlsx
|
2184
|
+
- test/regression/xlsx_files/image19.xlsx
|
2159
2185
|
- test/regression/xlsx_files/macro01.xlsm
|
2160
2186
|
- test/regression/xlsx_files/outline01.xlsx
|
2161
2187
|
- test/regression/xlsx_files/outline02.xlsx
|
@@ -2225,6 +2251,12 @@ test_files:
|
|
2225
2251
|
- test/regression/xlsx_files/selection01.xlsx
|
2226
2252
|
- test/regression/xlsx_files/selection02.xlsx
|
2227
2253
|
- test/regression/xlsx_files/set_column01.xlsx
|
2254
|
+
- test/regression/xlsx_files/set_column03.xlsx
|
2255
|
+
- test/regression/xlsx_files/set_column04.xlsx
|
2256
|
+
- test/regression/xlsx_files/set_column05.xlsx
|
2257
|
+
- test/regression/xlsx_files/set_column06.xlsx
|
2258
|
+
- test/regression/xlsx_files/set_column07.xlsx
|
2259
|
+
- test/regression/xlsx_files/set_column08.xlsx
|
2228
2260
|
- test/regression/xlsx_files/set_print_scale01.xlsx
|
2229
2261
|
- test/regression/xlsx_files/set_start_page01.xlsx
|
2230
2262
|
- test/regression/xlsx_files/shape01.xlsx
|
Binary file
|