summaryrefslogtreecommitdiffhomepage
path: root/lib
AgeCommit message (Collapse)Author
2012-10-14refactored Col to use serialized attributes and correct camel cased ↵Randy Morgan
outline_level attribute An alias to outlineLevel is provided for backwards compatability
2012-10-14updated serialized_attributes to reject nil valuesRandy Morgan
2012-10-14Applied serialized_attributes to worksheet_hyperlinkRandy Morgan
2012-10-14Corrected serializable_attributes declaraion and added an ↵Randy Morgan
additional_attributes parameter to specify attributes that are not instance_values
2012-10-14Extracted attriubte serializationRandy Morgan
2012-10-09extracted accessor methods into module that is scope because polluting ↵Randy Morgan
Module or Class is just not cool
2012-10-09Added a helper to find and return a worksheet from the workbook by nameRandy Morgan
2012-10-08Fix worksheet name escaping and cell sorting in Axlsx.cell_rangeJonathan Tron
We've discovered that Excel do not allow ' in defined_names to reference a worksheet name. All it does allow is to escape the simple quote by doubling it. Given that Worksheet#name is escaped using HTMLEntities, a simple quote appears as ' we're simply replacing it by the correct '' when using absolute reference to worksheet range.
2012-10-01simplified app to_xml_string serializationRandy Morgan
2012-09-30altered scope for generic validated_attr_accessorRandy Morgan
Seems to cause some problems with 1.9.1 not willing to spend the effort time to find out why ;?
2012-09-30Forgot to add these files to last commit!Randy Morgan
extraction refactoring
2012-09-30Extracted STRING_ATTRIBUTES and BOOLEAN_ATTRIBUTES into mixin from moduleRandy Morgan
replaced with attr_accessor like methods: string_attr_accessor boolean_attr_accessor defined in module.rb
2012-09-30Extracted String Attribute method generation.Randy Morgan
2012-09-30Extracted boolean attribute class method generation to module.Randy Morgan
2012-09-30Finished implementation of SheetCalcPrRandy Morgan
2012-09-30added MOAR documentationRandy Morgan
2012-09-30update readme and version for releaseRandy Morgan
2012-09-30Finished and Specced Auto Filter with Filters (standard) filter supportRandy Morgan
This means you can add autofilters that will restrict the visible rows based on a specified value.
2012-09-30remove PageSetUpPr from sheetPrRandy Morgan
2012-09-30Extracted and completed support for PageSetUpPrRandy Morgan
2012-09-30patched range validatorRandy Morgan
2012-09-30Reformatted docs for Axlsx moduleRandy Morgan
2012-09-30fixed regular expression generation for removing control characters.Randy Morgan
2012-09-27Completed first run of auto_filter filter_columns and value based filters.Randy Morgan
This is not ready for release - needs more testing and docs!
2012-09-26implement serialized attributes for filter_columnRandy Morgan
This pattern feels much cleaner than doing crazy work in to_xml_string. Probably would be better to define serializable attributes as a constant of the class and extract this in to an includable, but for now.. this makes me happy!
2012-09-26set filter_modeRandy Morgan
2012-09-26pre-release readme updates and more work on auto_filter preset valuesRandy Morgan
2012-09-25fix typo colums -> columnsRandy Morgan
2012-09-25more work on deep autofilter implementationRandy Morgan
Adding in Filters, Filter, DateGroupItem and FilterColumns. Still needs more specs/docs but we are almost there.
2012-09-23Autofilter extended implementationRandy Morgan
Beginnings of 18.3.2 AutoFilter Settings implementation. I've moved auto_filter into its own directory as there will be a minimum of 15 or 20 classes required to implement this in full.
2012-09-15Preserve newlines in xml output for a worksheetErik Benoist
2012-09-14Patch for 1.8.7 and update table style example to use custom nameRandy Morgan
2012-09-14Implement table style info for named tables.Randy Morgan
2012-09-14New fonts should use the default font values before applying custom style ↵Randy Morgan
options via add_style
2012-09-14incorporate deeper check for cell size and adjust for boldRandy Morgan
2012-09-14small bit of code cleanupRandy Morgan
2012-09-11last release prep and early keynote for sprkRandy Morgan
2012-09-07properly recognize exponential values as floatRandy Morgan
2012-09-02update README and version for next releaseRandy Morgan
2012-09-02implement paper_size as at least some version of office ignore the paper ↵Randy Morgan
width and paper height page setup attributes. See PageSetup#paper_size for a list of sizes supported in the specification.
2012-08-30add none options for tick_lbl_posRandy Morgan
2012-08-27release prepRandy Morgan
2012-08-23show how to do border edges in the exempts and update docs in stylesheetRandy Morgan
2012-08-22do not parse auto_filter if there is no range specifiedRandy Morgan
2012-08-12Release prepRandy Morgan
2012-08-12fix error in font_size calculation when using user specified styles that do ↵Randy Morgan
not define sz and update read_example.rb
2012-08-11backward compat for 1.8.7Randy Morgan
2012-08-111.8.7 funRandy Morgan
2012-08-11anyone remember 1.8.7?Randy Morgan
2012-08-11add hyperlinks for worksheets #118Randy Morgan