[Pkg-javascript-commits] [node-millstone] branch upstream updated (065c4cf -> aed56ff)
Jérémy Lal
kapouer at alioth.debian.org
Fri Oct 25 20:15:38 UTC 2013
This is an automated email from the git hooks/post-receive script.
kapouer pushed a change to branch upstream
in repository node-millstone.
from 065c4cf Imported Upstream version 0.4.0
adds aed56ff Imported Upstream version 0.6.8
No new revisions were added by this update.
Summary of changes:
.npmignore => .gitignore | 0
.npmignore | 3 +-
.travis.yml | 27 +
CHANGELOG.md | 153 ++++
README.md | 3 +
bin/millstone | 38 +
lib/millstone.js | 933 +++++++++++++++-----
lib/util.js | 159 +++-
package.json | 33 +-
test/UPPERCASE_EXT/project.mml | 13 +
test/UPPERCASE_EXT/style.mss | 1 +
test/UPPERCASE_EXT/test1.CSV | 8 +
test/cache/cache.mml | 12 +-
test/corrupt-zip.test.js | 57 ++
test/corrupt-zip/project.mml | 13 +
test/corrupt-zip/style.mss | 1 +
test/data/9368bdd9-zip_no_ext/.9368bdd9-zip_no_ext | 1 +
test/data/9368bdd9-zip_no_ext/9368bdd9-zip_no_ext | Bin 0 -> 1162 bytes
...e_10m_admin_0_boundary_lines_disputed_areas.zip | Bin 0 -> 49525 bytes
test/data/snow-cover.tif | Bin 0 -> 2876 bytes
test/error.test.js | 64 ++
test/image-noext.test.js | 39 +
test/image-noext/project.mml | 14 +
test/image-noext/style.mss | 1 +
test/invalid-json/broken.json | 8 +
test/invalid-json/project.mml | 13 +
test/invalid-json/style.mss | 1 +
test/macosx-zipped.test.js | 41 +
test/macosx-zipped/project.mml | 13 +
test/macosx-zipped/style.mss | 1 +
test/markers.test.js | 73 ++
test/markers/layers/points.csv | 2 +
test/markers/project.mml | 14 +
test/markers/style.mss | 2 +
test/missing-file-absolute/project.mml | 13 +
test/missing-file-absolute/style.mss | 1 +
test/missing-file-relative/project.mml | 13 +
test/missing-file-relative/style.mss | 1 +
test/multi-shape-zip.test.js | 48 +
test/multi-shape-zip/project.mml | 11 +
test/nosymlink.test.js | 102 +++
test/nosymlink/points.csv | 2 +
test/nosymlink/points.dbf | Bin 0 -> 33 bytes
test/nosymlink/points.prj | 1 +
test/nosymlink/points.shp | Bin 0 -> 100 bytes
test/nosymlink/points.shx | Bin 0 -> 100 bytes
test/nosymlink/points.vrt | 9 +
test/nosymlink/project.mml | 37 +
test/nosymlink/pshape.zip | Bin 0 -> 759 bytes
test/nosymlink/style.mss | 1 +
test/raster-linking.test.js | 48 +
test/raster-linking/project.mml | 12 +
test/support.js | 28 +
test/test.js | 273 ++++--
test/uppercase-ext.test.js | 49 +
test/zip-with-shapefile-and-txt.test.js | 38 +
test/zip-with-shapefile-and-txt/project.mml | 11 +
test/zipped-json/project.mml | 13 +
test/zipped-json/style.mss | 1 +
59 files changed, 2129 insertions(+), 324 deletions(-)
copy .npmignore => .gitignore (100%)
create mode 100644 .travis.yml
create mode 100644 CHANGELOG.md
create mode 100755 bin/millstone
create mode 100644 test/UPPERCASE_EXT/project.mml
create mode 100644 test/UPPERCASE_EXT/style.mss
create mode 100644 test/UPPERCASE_EXT/test1.CSV
create mode 100644 test/corrupt-zip.test.js
create mode 100644 test/corrupt-zip/project.mml
create mode 100644 test/corrupt-zip/style.mss
create mode 100644 test/data/9368bdd9-zip_no_ext/.9368bdd9-zip_no_ext
create mode 100644 test/data/9368bdd9-zip_no_ext/9368bdd9-zip_no_ext
create mode 100644 test/data/ne_10m_admin_0_boundary_lines_disputed_areas.zip
create mode 100644 test/data/snow-cover.tif
create mode 100644 test/error.test.js
create mode 100644 test/image-noext.test.js
create mode 100644 test/image-noext/project.mml
create mode 100644 test/image-noext/style.mss
create mode 100644 test/invalid-json/broken.json
create mode 100644 test/invalid-json/project.mml
create mode 100644 test/invalid-json/style.mss
create mode 100644 test/macosx-zipped.test.js
create mode 100644 test/macosx-zipped/project.mml
create mode 100644 test/macosx-zipped/style.mss
create mode 100644 test/markers.test.js
create mode 100644 test/markers/layers/points.csv
create mode 100644 test/markers/project.mml
create mode 100644 test/markers/style.mss
create mode 100644 test/missing-file-absolute/project.mml
create mode 100644 test/missing-file-absolute/style.mss
create mode 100644 test/missing-file-relative/project.mml
create mode 100644 test/missing-file-relative/style.mss
create mode 100644 test/multi-shape-zip.test.js
create mode 100644 test/multi-shape-zip/project.mml
create mode 100644 test/nosymlink.test.js
create mode 100644 test/nosymlink/points.csv
create mode 100644 test/nosymlink/points.dbf
create mode 100644 test/nosymlink/points.prj
create mode 100644 test/nosymlink/points.shp
create mode 100644 test/nosymlink/points.shx
create mode 100644 test/nosymlink/points.vrt
create mode 100644 test/nosymlink/project.mml
create mode 100644 test/nosymlink/pshape.zip
create mode 100644 test/nosymlink/style.mss
create mode 100644 test/raster-linking.test.js
create mode 100644 test/raster-linking/project.mml
create mode 100644 test/support.js
create mode 100644 test/uppercase-ext.test.js
create mode 100644 test/zip-with-shapefile-and-txt.test.js
create mode 100644 test/zip-with-shapefile-and-txt/project.mml
create mode 100644 test/zipped-json/project.mml
create mode 100644 test/zipped-json/style.mss
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/node-millstone.git
More information about the Pkg-javascript-commits
mailing list