| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-12-20 | Removed validation for col#width | Randy Morgan | |
| This needs to be smarter and only validate when the user supplies a value directly. 10% performance increase just by removing the validataion as this gets updated every time we set a single cell value. | |||
| 2012-12-20 | Simplified to_xml_string serialization | Randy Morgan | |
| Spit out cell type based serializers and got rid of the case statement. | |||
| 2012-12-19 | Removed unused relationships_index_of method in pivot_table | Randy Morgan | |
| 2012-12-19 | changed outline_row to outline_level_row to minimize confusion with borders | Randy Morgan | |
| 2012-12-15 | Added methods to simplify outlining with specs | Randy Morgan | |
| worksheet#outline_rows worksheet#outline_columns | |||
| 2012-12-14 | Added formula_values options and specs for sheet format pr. | Randy Morgan | |
| This lets cache formula values and specify the default row height so that iOS and Max OSX previews render properly | |||
| 2012-12-12 | Test for invalid characters in the sheet name. | Hayden Ball | |
| With thanks to http://stackoverflow.com/a/451488/1322410 for providing the list of characters | |||
| 2012-12-04 | Added sheet_format_pr to help iOS/OSX preview renderers look nice | Randy Morgan | |
| This is part of https://github.com/randym/axlsx/issues/149 | |||
| 2012-11-27 | Merge pull request #148 from alexrothenberg/pivot_table | Randy Morgan (@morgan_randy) | |
| Create a simple Pivot Table | |||
| 2012-11-27 | Can configure a pivot table when creating it | Alex Rothenberg | |
| see examples/pivot_table.rb wb.add_worksheet(:name => "Data Sheet") do |sheet| sheet.add_row ['Month', 'Year', 'Type', 'Sales', 'Region'] 30.times { sheet.add_row [month, year, type, sales, region] } sheet.add_pivot_table 'G4:L17', "A1:E31" do |pivot_table| pivot_table.rows = ['Month', 'Year'] pivot_table.columns = ['Type'] pivot_table.data = ['Sales'] pivot_table.pages = ['Region'] end end | |||
| 2012-11-27 | Create a simple Pivot Table | Alex Rothenberg | |
| * an example can be run with `ruby examples/pivot_table.rb` * right now you cannot set options on the pivot table to make it useful (coming soon...) | |||
| 2012-11-25 | Added note for ::CGI.escapeHTML performance issue | Randy Morgan | |
| 2012-11-25 | Removed row data type validation for cells | Randy Morgan | |
| This gives us a 24% increase in speed. Ill take that tradeoff against the risk that a user will be manually hacking cells and making a mess of it. | |||
| 2012-11-25 | Updated readme and docs for pre 1.3.4 release | Randy Morgan | |
| 2012-11-25 | Refactored header_footer element serialization. | Randy Morgan | |
| This adds a serializable_element_attributes helper that should be integrated as we have time for serializing child elements that are based on object attributes. | |||
| 2012-11-23 | Adds an example of header/footers. | Adam Mueller | |
| Also, header and footer content is now escaped. So that the user doesn't have to worry about that. Change-Id: Ib35b2eca6755d9b2d9974be25887734873d6e64a | |||
| 2012-11-22 | Merge pull request #145 from freerunningtechnologies/master | Randy Morgan (@morgan_randy) | |
| Basic support for headers and footers. | |||
| 2012-11-23 | Updated thin_chars and replaced cover_me with simplecov | Randy Morgan | |
| 2012-11-22 | Adds basic support for headers and footers. | Adam Mueller | |
| Based on the discussion here: https://github.com/randym/axlsx/issues/111 Very simple implementation right now. Does not include any tests yet! Change-Id: Ia8ec8c52f82577d05e07e21311cdb5fe5d1294be | |||
| 2012-11-16 | Minimized two_tone class method | Randy Morgan | |
| This is really the same as just initializing the object, but anyone who knows about three_tone is going to expect two_tone to be there as well. | |||
| 2012-11-16 | Added sensible defaults for color scale | Randy Morgan | |
| You can now use Axlsx::ColorScale.three_tone or Axlsx::ColorScale.two_tone to create pretty conditional formatting. | |||
| 2012-11-15 | Patched for 1.8.7 | Randy Morgan | |
| Time to think about ending support for 1.8.7? | |||
| 2012-11-15 | Updated DataBar conditional formatting to accept cfvo hashes in the ↵ | Randy Morgan | |
| initializer to bring the API inline with ColorScale | |||
| 2012-11-15 | Added color scale initialization | Randy Morgan | |
| This lets us pass hashes defiing cfvo and colors for color scale conditional formatting with out the bs of hacking up the existing defaults. | |||
| 2012-11-12 | Escape URLs used as target for hyperlinks. | Stefan Daschek | |
| Up to now, when using an URL containing a & character, the generated XML was invalid. | |||
| 2012-11-08 | fixed cell text run validation for u and family | Randy Morgan | |
| 2012-11-05 | refactored Row serialization | Randy Morgan | |
| 2012-11-05 | completed documentation | Randy Morgan | |
| 2012-10-21 | refactored conditional formatting classes that depend on pre-initialized ↵ | Randy Morgan | |
| cfvo collections and fixed camel casing in data_bar | |||
| 2012-10-21 | Added insert_worksheet to Workbook so we can add worksheets at a specific ↵ | Randy Morgan | |
| position | |||
| 2012-10-18 | removed unneeded quotation for single word symbol | Randy Morgan | |
| 2012-10-18 | moved sort boolean reader declaration to boolean_attr_accessor | Randy Morgan | |
| 2012-10-18 | Removed unused variable | Randy Morgan | |
| 2012-10-18 | fixed indentation and removed UTF-8 hint | Randy Morgan | |
| 2012-10-14 | Refactored to use options parser, accessors and serialization attributes | Randy Morgan | |
| 2012-10-14 | Refactored to use options parser and serialized attributes. | Randy Morgan | |
| 2012-10-14 | refactored ConditionalFormatting to use options parser and serialized attributes | Randy Morgan | |
| 2012-10-14 | refactored IconSet to use options parser and serialized attributes | Randy Morgan | |
| 2012-10-14 | Refactored GradientFill to use options parser and serialized attributes and ↵ | Randy Morgan | |
| patched type on Cfvo | |||
| 2012-10-14 | refactored Cfvo to use options parser and serialized attributes | Randy Morgan | |
| 2012-10-14 | Refactored DataBar to use serializable attributes and options parser | Randy Morgan | |
| 2012-10-14 | refactored 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-14 | Applied serialized_attributes to worksheet_hyperlink | Randy Morgan | |
| 2012-10-14 | Extracted attriubte serialization | Randy Morgan | |
| 2012-10-09 | extracted accessor methods into module that is scope because polluting ↵ | Randy Morgan | |
| Module or Class is just not cool | |||
| 2012-09-30 | Forgot to add these files to last commit! | Randy Morgan | |
| extraction refactoring | |||
| 2012-09-30 | Extracted STRING_ATTRIBUTES and BOOLEAN_ATTRIBUTES into mixin from module | Randy Morgan | |
| replaced with attr_accessor like methods: string_attr_accessor boolean_attr_accessor defined in module.rb | |||
| 2012-09-30 | Extracted String Attribute method generation. | Randy Morgan | |
| 2012-09-30 | Extracted boolean attribute class method generation to module. | Randy Morgan | |
| 2012-09-30 | Finished implementation of SheetCalcPr | Randy Morgan | |
