[Pkg-javascript-commits] [node-url-parse] 04/04: Imported Debian patch 1.0.5-1
Thorsten Alteholz
alteholz at moszumanska.debian.org
Sun Feb 7 13:11:19 UTC 2016
This is an automated email from the git hooks/post-receive script.
alteholz pushed a commit to branch master
in repository node-url-parse.
commit e889a4744eb93f77a60fc228891241bc989ce95f
Merge: 7e46840 4d4db79
Author: Thorsten Alteholz <debian at alteholz.de>
Date: Sat Feb 6 18:07:46 2016 +0100
Imported Debian patch 1.0.5-1
.travis.yml | 39 +++++++++++++++++++------------------
.zuul.yml | 21 ++++++++++++++++++++
README.md | 18 ++++++++++-------
debian/changelog | 8 ++++++++
debian/control | 8 ++++----
fuzzy.js | 55 +++++++++++++++++++++++++++++++++++++++++++++++-----
index.js | 8 ++------
package.json | 59 +++++++++++++++++++-------------------------------------
test.js | 30 +++++++++++++++++++++++++---
9 files changed, 163 insertions(+), 83 deletions(-)
diff --cc debian/changelog
index d66cad1,0000000..0bc8a71
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,6 -1,0 +1,14 @@@
++node-url-parse (1.0.5-1) unstable; urgency=medium
++
++ * new upstream version
++ * debian/control: use correct version numbers for dependencies
++ (Closes: #801143)
++
++ -- Thorsten Alteholz <debian at alteholz.de> Sat, 06 Feb 2016 18:07:46 +0100
++
+node-url-parse (1.0.2-1) unstable; urgency=low
+
+ * Initial release
+
+ -- Thorsten Alteholz <debian at alteholz.de> Wed, 02 Sep 2015 18:07:46 +0200
+
diff --cc debian/control
index a5053de,0000000..f620a6c
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,38 -1,0 +1,38 @@@
+Source: node-url-parse
+Section: web
+Priority: extra
+Maintainer: Debian Javascript Maintainers <pkg-javascript-devel at lists.alioth.debian.org>
+Uploaders: Thorsten Alteholz <debian at alteholz.de>
+Build-Depends:
+ debhelper (>= 9)
+ , dh-buildinfo
+ , nodejs
+Standards-Version: 3.9.6
+Homepage: https://github.com/unshiftio/url-parse#readme
- Vcs-Git: git://anonscm.debian.org/pkg-javascript/node-url-parse.git
- Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-javascript/node-url-parse.git
++Vcs-Git: https://anonscm.debian.org/git/pkg-javascript/node-url-parse.git
++Vcs-Browser: https://anonscm.debian.org/gitweb/?p=pkg-javascript/node-url-parse.git
+
+Package: node-url-parse
+Architecture: all
+Depends:
+ ${misc:Depends}
+ , nodejs
- , node-requires-port (>= 0.0.x)
- , node-querystringify (>= 0.0.x)
++ , node-requires-port (>= 0.0.1)
++ , node-querystringify (>= 0.0.3)
+Description: Parse URL in node using the URL module and in the browser using the DOM
+ The url-parse method exposes two different API interfaces. The url interface
+ that you know from Node.js and the new URL interface that is available in
+ the latest browsers.
+ .
+ Since 0.1 we've moved away from using the DOM's <a> element for URL parsing
+ and moving to a full Regular Expression solution. The main reason for this
+ change is to make the URL parser available in different JavaScript
+ environments as you don't always have access to the DOM like Worker
+ environments. This module still have a really small foot print as this
+ module's main intention is to be bundled with client-side code. The only
+ problem however with a RegExp based solution is that it required a lot of
+ lookups causing major problems in FireFox. So the last and the current
+ solution was a pure string parsing solution which chops up the URL in
+ smaller pieces.
+ .
+ Node.js is an event-based server-side JavaScript engine.
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/node-url-parse.git
More information about the Pkg-javascript-commits
mailing list