forked from SheetJS/sheetjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
version bump 0.8.0: unification with js-xls 0.7.5
- Loading branch information
1 parent
61b17e6
commit 0d38d4c
Showing
70 changed files
with
20,750 additions
and
843 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"bitwise": false, | ||
"curly": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
language: node_js | ||
node_js: | ||
- "0.11" | ||
- "iojs" | ||
- "0.11.14" | ||
- "0.10" | ||
- "0.8" | ||
before_install: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ order to maintain that, every contributor must be vigilant. | |
|
||
There have been many projects in the past that have been very lax regarding | ||
licensing, and we are of the opinion that those are ticking timebombs and that | ||
no corporate product should depend on them. | ||
no commercial product should depend on them. | ||
|
||
|
||
# Required Reading | ||
|
@@ -17,6 +17,17 @@ These are pretty short reads and emphasize the importance of proper licensing: | |
- http://www.codinghorror.com/blog/2007/04/pick-a-license-any-license.html | ||
|
||
|
||
# Raising Issues | ||
|
||
Issues should generally be accompanied by test files. Since github does not | ||
support attachments, the best method is to send files to <[email protected]> | ||
(subject line should contain issue number or message) or to share using some | ||
storage service. Unless expressly permitted, any attachments will not be | ||
shared or included in a test suite (although I will ask :) | ||
|
||
If sending email to a gmail account is problematic, the <[email protected]> email | ||
inbox is self-hosted. | ||
|
||
# Pre-Contribution Checklist | ||
|
||
Before thinking about contributing, make sure that: | ||
|
@@ -27,7 +38,7 @@ Before thinking about contributing, make sure that: | |
Corporation or a subsidiary | ||
|
||
- You have not consulted any existing relevant codebase (if you have, please | ||
take note of which codebases were consulted). | ||
take note of which codebases were consulted). | ||
|
||
If you cannot attest to each of these items, the best approach is to raise an | ||
issue. If it is a particularly high-priority issue, please drop an email to | ||
|
@@ -45,9 +56,8 @@ Keep these in mind as you work: | |
- You are working on your own time. Unless they explicitly grant permission, | ||
your employer may be the ultimate owner of your IP | ||
|
||
|
||
# Post-Contribution | ||
|
||
Before contributions are merged, you will receive an email (at the address | ||
associated with the git commit) and will be asked to confirm the aforementioned | ||
items. | ||
items. Ensure that the email addresses associated with the commits is valid. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
/* xlsx.js (C) 2013-2014 SheetJS -- http://sheetjs.com */ | ||
/* xlsx.js (C) 2013-2015 SheetJS -- http://sheetjs.com */ | ||
/* vim: set ts=2: */ | ||
/*jshint -W041 */ | ||
/*jshint funcscope:true, eqnull:true */ | ||
var XLSX = {}; | ||
(function(XLSX){ | ||
(function make_xlsx(XLSX){ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
XLSX.version = '0.7.12'; | ||
XLSX.version = '0.8.0'; |
Oops, something went wrong.