summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRandy Morgan <[email protected]>2012-07-31 13:16:58 +0900
committerRandy Morgan <[email protected]>2012-07-31 13:17:03 +0900
commit1431d1bd0851ed29e188ad17c6a9b93c316fe983 (patch)
tree1d185bfb329c62fe39bf182ddec69c9fa2ed94d5
parent5ba6dd5397ca0b305382f5e595fcd6be9d446763 (diff)
downloadcaxlsx-1431d1bd0851ed29e188ad17c6a9b93c316fe983.tar.gz
caxlsx-1431d1bd0851ed29e188ad17c6a9b93c316fe983.zip
fix typo and update readme
-rw-r--r--README.md4
-rw-r--r--lib/axlsx/workbook/defined_name.rb2
2 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index 6f146144..9bd68df1 100644
--- a/README.md
+++ b/README.md
@@ -90,9 +90,11 @@ cell level input data validation.
**16. Support for password and non password based sheet protection.
-**17. First stage interoperability support for GoogleDocs, LibraOffice,
+**17. First stage interoperability support for GoogleDocs, LibreOffice,
and Numbers
+**18. Support for defined names, which gives you repeated header rows for printing and a whole bunch of out there stuff. Have a look at lib/axlsx/workbook/defined_name.rb for all the gory glory
+
Installing
----------
diff --git a/lib/axlsx/workbook/defined_name.rb b/lib/axlsx/workbook/defined_name.rb
index 391425c7..da558956 100644
--- a/lib/axlsx/workbook/defined_name.rb
+++ b/lib/axlsx/workbook/defined_name.rb
@@ -109,7 +109,7 @@ module Axlsx
STRING_ATTRIBUTES = [:short_cut_key, :status_bar, :help, :description, :custom_menu, :comment, :name]
# boolean attributes that will be added when this class is evaluated
- BOOLEAN_ATTRIBUTES = [:workbook_parameter, :publish_to_server, :xml, :vb_proceedure, :function, :hidden]
+ BOOLEAN_ATTRIBUTES = [:workbook_parameter, :publish_to_server, :xlm, :vb_proceedure, :function, :hidden]
# Dynamically create string attribute accessors
STRING_ATTRIBUTES.each do |attr|