<feed xmlns='http://www.w3.org/2005/Atom'>
<title>angular.js/docs/src/templates/docs-scenario.html, branch v1.2.2</title>
<subtitle></subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/'/>
<entry>
<title>chore(package.json): kill version.yaml in favor of package.json</title>
<updated>2013-05-21T10:39:36+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2013-05-20T23:37:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=d458d7350b8a26752e649bd2b8d061137d0247de'/>
<id>d458d7350b8a26752e649bd2b8d061137d0247de</id>
<content type='text'>
all versioning info is now in package.json and that's where the build scripts read it from
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
all versioning info is now in package.json and that's where the build scripts read it from
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(docs): fix docs-scenario.html</title>
<updated>2012-11-11T09:31:27+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-11-08T21:15:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=8650843603be6f6f17aa3f90fb9991420669cb53'/>
<id>8650843603be6f6f17aa3f90fb9991420669cb53</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>chore(docs): use GAE and Google CDN for docs</title>
<updated>2012-08-24T21:54:35+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-08-20T15:28:04+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4a4b28dbf3af9a1871f00dfeded6da9eda557412'/>
<id>4a4b28dbf3af9a1871f00dfeded6da9eda557412</id>
<content type='text'>
Short summary: if you use local node server everything should work as before,
if you use GAE, everything should work now as well, but we pull assets from CDN.

- GAE doesn't support ':' in filenames, so I had to replace it with '_'
  but only in the filename, all servers were reconfigured to rewrite the
  urls from : to _ when doing file lookup
- We now pull angular assets from google CDN when deployed on GAE (locally
  or in production). When running on a non GAE server we pull assets from
  ../ directory as before
- Since only certain versions of Angular are available on CDN and we want
  to be able to autodeploy docs, I had to pin down the Angular files
  to a "stable" version when running on GAE
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Short summary: if you use local node server everything should work as before,
if you use GAE, everything should work now as well, but we pull assets from CDN.

- GAE doesn't support ':' in filenames, so I had to replace it with '_'
  but only in the filename, all servers were reconfigured to rewrite the
  urls from : to _ when doing file lookup
- We now pull angular assets from google CDN when deployed on GAE (locally
  or in production). When running on a non GAE server we pull assets from
  ../ directory as before
- Since only certain versions of Angular are available on CDN and we want
  to be able to autodeploy docs, I had to pin down the Angular files
  to a "stable" version when running on GAE
</pre>
</div>
</content>
</entry>
<entry>
<title>style(docs-scenario.html): rename &lt;angular/&gt; to AngularJS in the title</title>
<updated>2012-04-12T09:36:03+00:00</updated>
<author>
<name>Igor Minar</name>
</author>
<published>2012-04-12T09:18:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=b2d0a386f693d768cd82a3a0c54c43a926b4f339'/>
<id>b2d0a386f693d768cd82a3a0c54c43a926b4f339</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>JSTD adapter for running e2e tests</title>
<updated>2011-05-19T16:43:56+00:00</updated>
<author>
<name>Vojta Jina</name>
</author>
<published>2011-05-19T15:33:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=1abdc097b235366759a889bdcc68359653a9b8a3'/>
<id>1abdc097b235366759a889bdcc68359653a9b8a3</id>
<content type='text'>
Couple of changes into angular.scenario runner:
 - add autotest config (runs tests when document ready)
 - update ObjectModel (forwards events)
 - use only one ObjectModel instance for all outputters
 - expose error msg and line number in ObjectModel.Spec and ObjectModel.Step
 - fix generating spec.ids
 - fix 'html' output so that it does not mutate ObjectModel

Couple of changes into docs / generator:
 - rename copy -&gt; copyTpl
 - move docs/static into docs/examples (to avoid conflict with jstd proxy)

Running all docs e2e tests:
========================================================
1/ compile angular-scenario, jstd-scenario-adapter
&gt;&gt; rake compile

2/ build docs
&gt;&gt; rake docs

3/ start jstd server
&gt;&gt; ./server-scenario.sh

4/ capture some browser

5/ run node server to serve static content
&gt;&gt; node ../lib/nodeserver/server.js

6/ run tests
&gt;&gt; ./test-scenario.sh
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Couple of changes into angular.scenario runner:
 - add autotest config (runs tests when document ready)
 - update ObjectModel (forwards events)
 - use only one ObjectModel instance for all outputters
 - expose error msg and line number in ObjectModel.Spec and ObjectModel.Step
 - fix generating spec.ids
 - fix 'html' output so that it does not mutate ObjectModel

Couple of changes into docs / generator:
 - rename copy -&gt; copyTpl
 - move docs/static into docs/examples (to avoid conflict with jstd proxy)

Running all docs e2e tests:
========================================================
1/ compile angular-scenario, jstd-scenario-adapter
&gt;&gt; rake compile

2/ build docs
&gt;&gt; rake docs

3/ start jstd server
&gt;&gt; ./server-scenario.sh

4/ capture some browser

5/ run node server to serve static content
&gt;&gt; node ../lib/nodeserver/server.js

6/ run tests
&gt;&gt; ./test-scenario.sh
</pre>
</div>
</content>
</entry>
<entry>
<title>fixed example rendering, add tests for it.</title>
<updated>2011-01-24T22:23:51+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2011-01-19T23:42:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=c2f2587a79aeb77aad66f081cf924a79348a698e'/>
<id>c2f2587a79aeb77aad66f081cf924a79348a698e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>complete rewrite of documentation generation</title>
<updated>2011-01-10T19:50:11+00:00</updated>
<author>
<name>Misko Hevery</name>
</author>
<published>2010-12-22T23:44:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/fork/angular.js/commit/?id=4f22d6866c052fb5b770ce4f377cecacacd9e6d8'/>
<id>4f22d6866c052fb5b770ce4f377cecacacd9e6d8</id>
<content type='text'>
- romeved mustache.js
- unified templates
- improved testability of the code
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- romeved mustache.js
- unified templates
- improved testability of the code
</pre>
</div>
</content>
</entry>
</feed>
