| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-12-14 | Updated readme and version for next release | Randy Morgan | |
| 2012-12-12 | Merge pull request #153 from ball-hayden/master | Randy Morgan (@morgan_randy) | |
| Test for invalid characters in the sheet name | |||
| 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 | Created ios preview example | Randy Morgan | |
| This shows that shared_strings are required. Formula parsing is still outstanding. https://github.com/randym/axlsx/issues/149 | |||
| 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-12-04 | Added unsigned_int and float attr_accessor helpers | Randy Morgan | |
| These need to be added to existing classes to replace all the repeated accessor method validation. | |||
| 2012-12-04 | Moved defined names in workbook to be serialized before pivot tables | Randy Morgan | |
| This fixes https://github.com/randym/axlsx/issues/150 | |||
| 2012-11-28 | Commented out defined_name test | Randy Morgan | |
| Seems the validation crashes on this, and it should not. Need to dig in and work it out. | |||
| 2012-11-28 | Added example of overriding data types | Randy Morgan | |
| 2012-11-28 | Uncommented named parts package serialization validation testing | Randy Morgan | |
| 2012-11-27 | Merge pull request #148 from alexrothenberg/pivot_table | Randy Morgan (@morgan_randy) | |
| Create a simple Pivot Table | |||
| 2012-11-27 | Merge pull request #147 from raiis/master | Randy Morgan (@morgan_randy) | |
| Different left/right border style | |||
| 2012-11-28 | Better way hot to override borders style. | raiis | |
| 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-27 | reverted changes to travis.yml | Randy Morgan | |
| 2012-11-27 | updated travis.yml | Randy Morgan | |
| 2012-11-26 | Added individual border override options. | raiis | |
| 2012-11-25 | Added note for ::CGI.escapeHTML performance issue | Randy Morgan | |
| 2012-11-25 | Updated profiler to use the standard 'no shared strings, autowith on' options | 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 | moved sheet view example into examples.rb | Randy Morgan | |
| 2012-11-25 | Cleaned up examples directory | Randy Morgan | |
| 2012-11-25 | Cleaned up gemspec and removed pdf export example | Randy Morgan | |
| 2012-11-25 | Updated readme and docs for pre 1.3.4 release | Randy Morgan | |
| 2012-11-25 | Patched serilalized_element_attributes to properly update value from called ↵ | Randy Morgan | |
| block | |||
| 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-23 | Updated readme to give adammathys the respect he deserves! | Randy Morgan | |
| 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 tests for HeaderFooter. | Adam Mueller | |
| Change-Id: I77c92cb6af09a13193517adc102093c26cd0cead | |||
| 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 | Updated README & version for next release | Randy Morgan | |
| 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 | Merge pull request #140 from die-antwort/escape-hyperlink-urls | Randy Morgan (@morgan_randy) | |
| Escape URLs used as target for hyperlinks. Awesome | |||
| 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 | updated read me for new version | Randy Morgan | |
| Unfortunately I already pushed the gem….. | |||
| 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-11-05 | updated readme and version for 1.3.2 release | Randy Morgan | |
| 2012-11-05 | added example for surrounding border | Randy Morgan | |
| 2012-10-27 | removed instance caching for package parts | Randy Morgan | |
| Some users have reported that they are repeatedly serializing the package. They need to know that it is not additive, and I need to remove the instance variable as there is no reason to maintain completed parts list since it is only used for serialization. | |||
| 2012-10-21 | Added index_of to drawing for finding the position of a chart, image or ↵ | Randy Morgan | |
| hyperlink | |||
| 2012-10-21 | refactored conditional formatting classes that depend on pre-initialized ↵ | Randy Morgan | |
| cfvo collections and fixed camel casing in data_bar | |||
