<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/src/ngResource, branch g3_v1_3</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>docs($resource): fix example using promise</title>
<updated>2014-03-13T23:33:38+00:00</updated>
<author>
<name>Wesley Cho</name>
</author>
<published>2014-01-28T03:59:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=91ef3a31a0080de2b5a3db8f2a20dba00dcd2ae1'/>
<id>91ef3a31a0080de2b5a3db8f2a20dba00dcd2ae1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(*): ensure jsdoc type expressions are valid</title>
<updated>2014-03-02T15:02:29+00:00</updated>
<author>
<name>Peter Bacon Darwin</name>
</author>
<published>2014-02-27T21:54:26+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=e89139dc9dd4a9c104d71167bea4987b766767df'/>
<id>e89139dc9dd4a9c104d71167bea4987b766767df</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(modules): remove unused {@installModule} tags</title>
<updated>2014-02-19T21:22:27+00:00</updated>
<author>
<name>Peter Bacon Darwin</name>
</author>
<published>2014-02-19T21:22:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=cc1f7539d414038212b83dca86cf04f71731f24b'/>
<id>cc1f7539d414038212b83dca86cf04f71731f24b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>style: remove ws and enfore no-trailing-ws jscs rule</title>
<updated>2014-02-18T18:44:48+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2014-02-18T11:04:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=481508d0e7ae9e4984ea380b9a43e589551c7a5b'/>
<id>481508d0e7ae9e4984ea380b9a43e589551c7a5b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(api): escape params that have &lt;object&gt; in their type</title>
<updated>2014-02-16T19:03:44+00:00</updated>
<author>
<name>Peter Bacon Darwin</name>
</author>
<published>2014-02-14T15:52:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2123772a653eeb969ef6f8c21d1daee878098fe1'/>
<id>2123772a653eeb969ef6f8c21d1daee878098fe1</id>
<content type='text'>
Really the doc-gen process should escape there but for now this should
stop the layout from breaking.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Really the doc-gen process should escape there but for now this should
stop the layout from breaking.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(ngResource): fix over-length line</title>
<updated>2014-02-16T19:03:41+00:00</updated>
<author>
<name>Peter Bacon Darwin</name>
</author>
<published>2014-02-07T20:58:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=9f828a07dc63ed13bda991cc7cf21cae89b64948'/>
<id>9f828a07dc63ed13bda991cc7cf21cae89b64948</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(bike-shed-migration): let markdown deal with extenal links</title>
<updated>2014-02-16T19:03:41+00:00</updated>
<author>
<name>Peter Bacon Darwin</name>
</author>
<published>2014-02-07T20:40:35+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2f7c57233ad2d578952dbba5c63ae8d50c1b487a'/>
<id>2f7c57233ad2d578952dbba5c63ae8d50c1b487a</id>
<content type='text'>
It is problematic to use {@link} tags with external links because the
markdown parser converts them to links for us before we parse the @links.
This means that the following tag:

```
{@link http://www.google.com Google}
```

get converted to:

```
{@link &lt;a href="http://www.google.com/"&gt;&lt;/a&gt; Google}
```

Our {@link} parser then converts this to:

```
&lt;a href="&lt;a"&gt;&amp;lt;&lt;/a&gt;href="http://www.google.com/"&gt;&lt;/a&gt; Google}
```

which is clearly a mess.  The best solution is not to use {@link} tags
for external links and just use the standard markdown syntax:

```
[Google](http://www.google.com)
```

In the long run, we could look into configuring or modifying `marked` not
to convert these external links or we could provide a "pre-parser"
processor that dealt with such links before `marked` gets its hands on it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is problematic to use {@link} tags with external links because the
markdown parser converts them to links for us before we parse the @links.
This means that the following tag:

```
{@link http://www.google.com Google}
```

get converted to:

```
{@link &lt;a href="http://www.google.com/"&gt;&lt;/a&gt; Google}
```

Our {@link} parser then converts this to:

```
&lt;a href="&lt;a"&gt;&amp;lt;&lt;/a&gt;href="http://www.google.com/"&gt;&lt;/a&gt; Google}
```

which is clearly a mess.  The best solution is not to use {@link} tags
for external links and just use the standard markdown syntax:

```
[Google](http://www.google.com)
```

In the long run, we could look into configuring or modifying `marked` not
to convert these external links or we could provide a "pre-parser"
processor that dealt with such links before `marked` gets its hands on it.
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(all): convert &lt;pre&gt;/&lt;/pre&gt; snippets to GFM snippets</title>
<updated>2014-02-16T19:03:40+00:00</updated>
<author>
<name>Caitlin Potter</name>
</author>
<published>2014-02-06T14:02:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=f7d28cd377f06224247b950680517a187a7b6749'/>
<id>f7d28cd377f06224247b950680517a187a7b6749</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>docs(bike-shed-migration): convert doctype and names</title>
<updated>2014-02-16T19:03:40+00:00</updated>
<author>
<name>Peter Bacon Darwin</name>
</author>
<published>2014-02-06T13:33:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=2e641ac49f121a6e2cc70bd3879930b44a8a7710'/>
<id>2e641ac49f121a6e2cc70bd3879930b44a8a7710</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix(ngResource): don't filter "$"-prefixed properties from ngResource requests/responses</title>
<updated>2014-02-04T15:51:24+00:00</updated>
<author>
<name>Thomas Belin</name>
</author>
<published>2014-01-07T15:09:37+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d2e4e499862aeca157dbe7a7422c465e7c79205e'/>
<id>d2e4e499862aeca157dbe7a7422c465e7c79205e</id>
<content type='text'>
ngResource no longer filters properties prefixed with a single "$" character from requests or
responses, correcting a regression introduced in 1.2.6 (cb29632a) which caused shallowCopy and
shallowClearAndCopy to ignore properties prefixed with a single "$".

Closes #5666
Closes #6080
Closes #6033
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ngResource no longer filters properties prefixed with a single "$" character from requests or
responses, correcting a regression introduced in 1.2.6 (cb29632a) which caused shallowCopy and
shallowClearAndCopy to ignore properties prefixed with a single "$".

Closes #5666
Closes #6080
Closes #6033
</pre>
</div>
</content>
</entry>
</feed>
