summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/workbook/worksheet
AgeCommit message (Collapse)Author
2012-05-20yield sheet_protection so we can edit it in a blockRandy Morgan
2012-05-20enable sheet protection by default when it is initialized in the worksheet.Randy Morgan
2012-05-20bit of clean up for iterative password hash... still does not work though!Randy Morgan
2012-05-20more work on sheet protection. Protection is working, but specifying a ↵Randy Morgan
password does not work. Having a bit of trouble implementing the hashing algorithm...
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-17docsRandy 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-16needs to be a dual comparison. Possible to set both values to 0 after ↵Randy Morgan
initialization.
2012-05-16revise docs. Note - worksheet is a "required - option" as I dont want to ↵Randy Morgan
break the interface.
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-15Doc fixes for PrintOptions, PageSetup and Worksheet#fit_to_page.Stefan Daschek
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-13updating docsRandy 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-08documentation for comments.Randy Morgan
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-29Merge branch 'master' of github.com:randym/axlsxRandy Morgan
2012-04-29examples and read me clean up as well as implementing outlineLevel for row ↵Randy Morgan
and col.
2012-04-28fix Table#header_cells methodJurriaan Pruis
2012-04-27bug fix. https://github.com/randym/axlsx/issues/86Randy Morgan
2012-04-25documentation updates and example dir restructuring.Randy Morgan
2012-04-25bug fix to properly assign style/type data when creating rows and partial ↵Randy Morgan
style/types arrays
2012-04-23Merge branch 'master' of github.com:randym/axlsxRandy Morgan
2012-04-23first stage refactoring for Style#add_style [inprogress]Randy Morgan
2012-04-21Update icon_set to use percent in its value_objectsStephen Pike
Extend conditional formatting to the entire examples Rename example file to "example_conditional_formatting.xls"
2012-04-21adding in icon set and MOAR examples for conditional formatting.Randy Morgan
2012-04-21add data bar conditional formatting support.Randy Morgan
2012-04-21adding in color scale for conditional formattingRandy Morgan
2012-04-20Add some more documentation for example of conditional formattingStephen Pike
2012-04-20Formatting and documentation cleanupStephen Pike
2012-04-20Put encoding back... whoopsStephen Pike
2012-04-20# Support for conditional formattingStephen Pike
Adds support for conditional formatting via two new classes, ConditionalFormatting and ConditionalFormattingRule. Conditional Formats apply to ranges of cells, and can include multiple rules, ranked by priority. A single worksheet has many @conditional_formattings applied to different ranges. There are still pieces of the spec missing from the implementation. The biggest glaring ommission are the child elements colorScale, dataBar, and iconSet (I only implemented formula). http://msdn.microsoft.com/en-us/library/documentformat.openxml.spreadsheet.conditionalformattingrule.aspx
2012-04-18update docs and remove unused mdw_count declarationRandy Morgan
2012-04-18use method not instance variable for determining if cell level style ↵Randy Morgan
customizations have been made and the cell is now a text run.
2012-04-16use class variable for counting stringRandy Morgan
2012-04-16The beginning of the end of RMagick! Still needs lots of testing but seems ↵Randy Morgan
comparable to the current autowidth calculations, is much faster than RMagick and more than anything - it removes a dependency on a Gem that is a huge pain in the ass.
2012-04-13fix both autowidth calculations and column_widths assignation. Randy Morgan
2012-04-13update cell to use common lib methodRandy Morgan
2012-04-12fix bug for autowidth in handling nil cells.Randy Morgan