summaryrefslogtreecommitdiffhomepage
path: root/test/workbook
AgeCommit message (Collapse)Author
2012-07-20specs for d_lbls and a patch to cover for nil relationships in a worksheet.Randy Morgan
2012-07-17MOAR cleanup for worksheet.Randy Morgan
2012-07-15cleanup worksheet initializer.Randy Morgan
2012-07-15refactoring auto width calculation to improve code quality.Randy Morgan
2012-07-14Additional validations for excel sheet name and example updatesRandy Morgan
2012-07-14fixing the fix for #112 -- need coffee…Randy Morgan
2012-07-14fix for #112 - encode html entitiesRandy Morgan
2012-07-07Fix a typo in `Axlsx::Worksheet#dimension` when a row was added without value.Jonathan Tron
When `Axlsx::Worksheet#add_row` is called without values `#dimension` returned "AA:200" instead of "AA200", which resulted in a dimension of "A1:AA:200". This lead to an error in `Axlsx.name_to_indices` which is then called with "200" instead of "AA200" when using `Axlsx::Worksheet#abs_auto_filter`.
2012-07-06make to_xml_string more #readablecodeRandy Morgan
Based on some great feedback tonight, I am cleaning this up. TODO: specs & docs for each helper method
2012-07-06make fit_to_page MOAR readableRandy Morgan
Implement some of the feedback from devolves session on readable code - and remove some garbage that found its way into the repo --- github.app you are too convenient.
2012-06-26fixes #105 - disallow control characters.Randy Morgan
thanks to asakusarb - I found out about [:cntrl:] -- so no more control characters can accidentally get pushed into y our xlsx.
2012-06-20update examples and the beginings of protected_rangeRandy Morgan
2012-06-20fix xpathRandy Morgan
2012-06-18properly remove invalid XML characters ↵Randy Morgan
\u2028\u0001\u0002\u0003\u0004\u0005\u0006\u0007\u0008\u001f
2012-06-09add specs for sheet view selectionRandy Morgan
2012-06-09add test for frozen unspecified row column path in serializationRandy Morgan
2012-06-07simplify unit tests and remove default selection (spec allows 0 to 4)Randy Morgan
2012-06-07Merge branch 'master' into paneRandy Morgan
2012-06-07patch unit tests for sheet view and pane serialization.Randy Morgan
2012-06-06Test suite for selection stuff.Jan-Hendrik Hühne
2012-06-06Test fix.Jan-Hendrik Hühne
2012-06-06Changes default value of xSplit and ySplit.Jan-Hendrik Hühne
2012-06-06CosmeticsJan-Hendrik Hühne
2012-06-06Changes default value of "window protection"Jan-Hendrik Hühne
2012-06-06Pane stuff and tests.Jan-Hendrik Hühne
2012-06-06SheetView bugfixes and test suiteJan-Hendrik Hühne
2012-06-06Test moved to tc_sheet_view.rbJan-Hendrik Hühne
2012-05-30release prep for 1.1.6Randy Morgan
2012-05-24UnitTests for DataValidationJan-Hendrik Hühne
2012-05-21Adding password hash computationJan-Hendrik Hühne
2012-05-20enable sheet protection by default when it is initialized in the worksheet.Randy Morgan
2012-05-19first run at sheet_protection to provide password protection locking for sheets.Randy Morgan
2012-05-19correct relation management for comments and some spec improvements for ↵Randy Morgan
package to provide more breadth in serialization integration testing.
2012-05-17fix ALL the warnings!Randy Morgan
2012-05-17finishing off row properties.Randy Morgan
2012-05-17helper method for handling page fitting.Randy Morgan
2012-05-16depreciating Worksheet.fit_to_page as a writable attribute. Randy Morgan
2012-05-16If worksheet.fit_to_page must be true, lets set it to true. I am far too ↵Randy Morgan
lazy and forgetful to remember to set that every time I want to fit_to_width or fit_to_height.
2012-05-15Worksheet#merge_cells sometimes produced invalid merge ranges when given an ↵Stefan Daschek
array of cells. Merging e.g. cells A9 and A10 resulted in invalid range "A10:A9".
2012-05-15bring coverage up to 100% and patch a few minor bugs in cell style overrides ↵Randy Morgan
and misnamed app attributes.
2012-05-13MOAR specsRandy Morgan
2012-05-13cleaning up comments for pre-releaseRandy Morgan
2012-05-12patch formula parsing. Randy Morgan
#92 many thanks to @alexei-lexx for not only finding this, but taking time to report the problem.
2012-05-09patch nil row style issueRandy Morgan
https://github.com/randym/axlsx/issues/91
2012-05-08worksheet comments step 2. Needs docs and specs - but it works in ExcelRandy Morgan
2012-05-04Merge branch 'master' of github.com:randym/axlsxRandy Morgan
2012-05-04beginnings of comments w/o TDD (^ ^)/Randy Morgan
2012-05-03Add support for pageSetup.Stefan Daschek
2012-05-03Add support for printOptionsStefan Daschek
2012-04-27test to ensure that add_cell properly updates worksheet column widths. Randy Morgan