<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/node.git/doc/api/path.markdown, branch master</title>
<subtitle>github.com: joyent/node.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/'/>
<entry>
<title>doc: fix '\\' typos on Windows</title>
<updated>2015-03-16T18:38:25+00:00</updated>
<author>
<name>Steven Vercruysse</name>
<email>stcruy@users.noreply.github.com</email>
</author>
<published>2015-03-15T11:29:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=2b64132101f179c30957e3c5f16fc47a8ec942e1'/>
<id>2b64132101f179c30957e3c5f16fc47a8ec942e1</id>
<content type='text'>
This commit changes the Windows examples in path.markdown to
correctly display '\\'.

PR-URL: https://github.com/joyent/node/pull/9412
Reviewed-By: Colin Ihrig &lt;cjihrig@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit changes the Windows examples in path.markdown to
correctly display '\\'.

PR-URL: https://github.com/joyent/node/pull/9412
Reviewed-By: Colin Ihrig &lt;cjihrig@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>path: added parse() and format() functions</title>
<updated>2014-11-21T00:21:11+00:00</updated>
<author>
<name>Rory Bradford</name>
<email>roryrjb@gmail.com</email>
</author>
<published>2014-04-08T21:48:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=2d17193f20930bfe594d7008fe5c08f813f03c7b'/>
<id>2d17193f20930bfe594d7008fe5c08f813f03c7b</id>
<content type='text'>
The parse() function splits a path and returns an object
with the different elements. The format() function is the
reverse of this and adds an objects corresponding path
elements to make up a string. Fixes #6976.

Fixes: https://github.com/joyent/node/issues/6976
PR-URL: https://github.com/joyent/node/pull/8750
Reviewed-by: Julien Gilli &lt;julien.gilli@joyent.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The parse() function splits a path and returns an object
with the different elements. The format() function is the
reverse of this and adds an objects corresponding path
elements to make up a string. Fixes #6976.

Fixes: https://github.com/joyent/node/issues/6976
PR-URL: https://github.com/joyent/node/pull/8750
Reviewed-by: Julien Gilli &lt;julien.gilli@joyent.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>path: allow calling platform specific methods</title>
<updated>2014-11-21T00:10:55+00:00</updated>
<author>
<name>Timothy J Fontaine</name>
<email>tjfontaine@gmail.com</email>
</author>
<published>2013-06-11T00:09:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=6a90a060023dac4fc827613243e496237403f29f'/>
<id>6a90a060023dac4fc827613243e496237403f29f</id>
<content type='text'>
Add path.posix and path.win32 which have the specific methods like
resolve and normalize so you can specifically normalize or resolve
based on the target platform.

PR-URL: https://github.com/joyent/node/pull/5661
Reviewed-by: Chris Dickinson &lt;christopher.s.dickinson@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add path.posix and path.win32 which have the specific methods like
resolve and normalize so you can specifically normalize or resolve
based on the target platform.

PR-URL: https://github.com/joyent/node/pull/5661
Reviewed-by: Chris Dickinson &lt;christopher.s.dickinson@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>doc: fix optional parameter parsing</title>
<updated>2014-09-29T23:32:34+00:00</updated>
<author>
<name>Trevor Norris</name>
<email>trev.norris@gmail.com</email>
</author>
<published>2014-09-29T23:32:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=f2a78de6ec134f4050531ba6a52dee47e0aee165'/>
<id>f2a78de6ec134f4050531ba6a52dee47e0aee165</id>
<content type='text'>
The parameter parser specifically looked for the old bracket syntax.
This generated a lot of warnings when building the docs. Those warnings
have been fixed by changing the parsing logic.

Signed-off-by: Trevor Norris &lt;trev.norris@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The parameter parser specifically looked for the old bracket syntax.
This generated a lot of warnings when building the docs. Those warnings
have been fixed by changing the parsing logic.

Signed-off-by: Trevor Norris &lt;trev.norris@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>doc: fix brackets for optional parameters</title>
<updated>2014-09-25T18:26:15+00:00</updated>
<author>
<name>Trevor Norris</name>
<email>trev.norris@gmail.com</email>
</author>
<published>2014-09-24T22:41:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=51b6b6844e9156ab84ae9d0f4592e09f994060b2'/>
<id>51b6b6844e9156ab84ae9d0f4592e09f994060b2</id>
<content type='text'>
Documentation incorrectly used bracket notation for optional parameters.
This caused inconsistencies in usage because of examples like the
following:

    fs.write(fd, data[, position[, encoding]], callback)

This simply fixes all uses of bracket notation in documentation.

Signed-off-by: Trevor Norris &lt;trev.norris@gmail.com&gt;
Reviewed-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Documentation incorrectly used bracket notation for optional parameters.
This caused inconsistencies in usage because of examples like the
following:

    fs.write(fd, data[, position[, encoding]], callback)

This simply fixes all uses of bracket notation in documentation.

Signed-off-by: Trevor Norris &lt;trev.norris@gmail.com&gt;
Reviewed-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'upstream/v0.10' into v0.12</title>
<updated>2014-08-07T23:33:35+00:00</updated>
<author>
<name>Timothy J Fontaine</name>
<email>tjfontaine@gmail.com</email>
</author>
<published>2014-08-07T23:33:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=a5778cdf01425ae39cea80b62f9ec6740aec724a'/>
<id>a5778cdf01425ae39cea80b62f9ec6740aec724a</id>
<content type='text'>
Conflicts:
	ChangeLog
	Makefile
	deps/uv/ChangeLog
	deps/uv/build.mk
	deps/uv/src/unix/darwin.c
	deps/uv/src/unix/getaddrinfo.c
	deps/uv/src/version.c
	deps/v8/src/checks.h
	deps/v8/src/isolate.h
	lib/cluster.js
	lib/module.js
	lib/timers.js
	lib/tls.js
	src/node_version.h
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	ChangeLog
	Makefile
	deps/uv/ChangeLog
	deps/uv/build.mk
	deps/uv/src/unix/darwin.c
	deps/uv/src/unix/getaddrinfo.c
	deps/uv/src/version.c
	deps/v8/src/checks.h
	deps/v8/src/isolate.h
	lib/cluster.js
	lib/module.js
	lib/timers.js
	lib/tls.js
	src/node_version.h
</pre>
</div>
</content>
</entry>
<entry>
<title>docs: fix non-string ignore note in path.resolve</title>
<updated>2014-07-31T18:59:30+00:00</updated>
<author>
<name>Jakob Gillich</name>
<email>jakob@gillich.me</email>
</author>
<published>2014-06-25T17:08:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=92518892ec8d99a04cee9d51ab071087f06032d2'/>
<id>92518892ec8d99a04cee9d51ab071087f06032d2</id>
<content type='text'>
Reviewed-By: Fedor Indutny &lt;fedor@indutny.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Reviewed-By: Fedor Indutny &lt;fedor@indutny.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge remote-tracking branch 'upstream/v0.10'</title>
<updated>2014-02-09T00:45:27+00:00</updated>
<author>
<name>Timothy J Fontaine</name>
<email>tjfontaine@gmail.com</email>
</author>
<published>2014-02-09T00:45:27+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=eadb4f56063ff27781323451987e181fe724ed21'/>
<id>eadb4f56063ff27781323451987e181fe724ed21</id>
<content type='text'>
Conflicts:
	deps/v8/src/preparser.cc
	deps/v8/src/win32-math.h
	doc/api/http.markdown
	src/node_buffer.h
	src/node_crypto.cc
	src/node_file.cc
	src/node_http_parser.cc
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Conflicts:
	deps/v8/src/preparser.cc
	deps/v8/src/win32-math.h
	doc/api/http.markdown
	src/node_buffer.h
	src/node_crypto.cc
	src/node_file.cc
	src/node_http_parser.cc
</pre>
</div>
</content>
</entry>
<entry>
<title>doc: add an example about multiple extensions</title>
<updated>2014-02-03T08:38:40+00:00</updated>
<author>
<name>Maxime Quandalle</name>
<email>maxime.quandalle@gmail.com</email>
</author>
<published>2014-02-01T15:10:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=154d9d2163987f8f9c1be5fdc9d2a8cb3b2134a6'/>
<id>154d9d2163987f8f9c1be5fdc9d2a8cb3b2134a6</id>
<content type='text'>
`path.extname` returns only the last extension
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`path.extname` returns only the last extension
</pre>
</div>
</content>
</entry>
<entry>
<title>path: add path.isAbsolute(path)</title>
<updated>2013-04-19T17:15:22+00:00</updated>
<author>
<name>Ryan Doenges</name>
<email>rhdoenges@gmail.com</email>
</author>
<published>2013-04-14T19:44:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=90266750617adb1ce1ca4ce43fe48f9b0fa11343'/>
<id>90266750617adb1ce1ca4ce43fe48f9b0fa11343</id>
<content type='text'>
An absolute path will always open the same location regardless of your
current working directory. For posix, this just means path.charAt(0) ===
'/', but on Windows it's a little more complicated.

Fixes joyent/node#5299.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
An absolute path will always open the same location regardless of your
current working directory. For posix, this just means path.charAt(0) ===
'/', but on Windows it's a little more complicated.

Fixes joyent/node#5299.
</pre>
</div>
</content>
</entry>
</feed>
