aboutsummaryrefslogtreecommitdiffstats
path: root/lib
AgeCommit message (Collapse)Author
2011-09-26feat(docs): use html5 history api for all routing in the docs appVojta Jina
- Configure our docs app to use new $location with html5 history api! - Update simple node web server to serve index.html for all links (rewritting). - Update .htaccess file to serve index.html for all links (rewritting). - At runtime determine the base href path and attach it to the DOM. We needed the absolute URL to get all browsers to work well. - Because of the above, we also need to dynamically determine all needed js/css resources and add them to the DOM. This was needed because FF6 would eagerly fetch resources with wrong URL since the base element is added to the dom at runtime. - All content html files were moved to the partials directory, because with the new html5 urls it was impossible to tell if request for http://domain/api/angular.filter.html was an html5 url for the html filter doc page, or an xhr/appcache request for the content html file for the html filter. f
2011-09-16feat (jquery): upgrade everything to jQuery 1.6.4Igor Minar
Closes #556
2011-08-15chore(jasmine): disable 'Jasmine waiting for..' msgIgor Minar
2011-07-18chore(closure-compiler): upgrading to v20110615Igor Minar
2011-06-07add appcache for docs site - caches only css/js/img resourcesIgor Minar
2011-06-06Use node's vm module instead of deprecated process.compileVojta Jina
So that I don't have to watch the warning all the time :-D
2011-04-25Fix some typos, missing semi-colons, etc...Vojta Jina
This is a combination of 4 commits: * Fix some small typos, missing semi-colons, etc. * Fix comment for angular.scenario.SpecRunner.run method * Fixed some missing semi-colons in cookbook * Fixed missing semi-colon in nodeserver/server.js
2011-04-12Have iit have higher priority then ddesrcibeMisko Hevery
2011-04-01upgrade jstd to 1.3.2 + improve test-coverage.sh scriptIgor Minar
2011-03-26upgrade closure compiler to version 20110322Igor Minar
the new version minifies our js better: before | after | diff ----------------------------------------- min | 62161 | 60868 | -2.1% min+gzip | 25176 | 24552 | -2.5%
2011-03-26renaming lib/compiler-closure to lib/closure-compilerIgor Minar
2011-03-07upgrading jasmin-jstd-adapter to 1ade1ad7cad4caadb3a3 11-03-07Igor Minar
2011-03-07jstd r899 2011-02-18 (post 1.3.1) + fix for jasmine adapter.Igor Minar
2011-02-15split up services into individual filesIgor Minar
- split up services into files under src/service - split up specs into files under test/service - rewrite all specs so that they don't depend on one global forEach - get rid of obsolete code and tests in ng:switch - rename mock $log spec from "$log" to "$log mock"
2011-02-01upgrading jstd to r845Igor Minar
2011-01-31upgrading jstd to r844 2011-01-31Igor Minar
2011-01-10complete rewrite of documentation generationMisko Hevery
- romeved mustache.js - unified templates - improved testability of the code
2011-01-07jasmine adapter with better stack tracesIgor Minar
2011-01-07remove unused jquery ui libIgor Minar
2011-01-06upgrade to latest jasmine adapterMisko Hevery
2010-12-28upgrading JSTD to r788Igor Minar
2010-11-12Add test coverage analysis.Igor Minar
- jstd upgrade to head from 2010-11-11 - coverage plugin from the same head as jstd - test-coverage.sh and server-coverage.sh scripts - jstd configuration Generate html by installing lconv (brew or port) and run: genhtml tmp/lcov/jsTestDriver.conf-coverage.dat to generate html docs.
2010-11-05changed to showdown from markup. added validator overviewMisko Hevery
2010-11-04added documentation for ng:include and ng:widget and test for doc collector.Misko Hevery
2010-11-04rename Index.js to index.jsMisko Hevery
2010-11-03jsdoc parser + generator + viewer + scenario runnerMisko Hevery
- parse jsdocs from source code - generate prerendered (markdown + mustache) partials - generate json - generate scenario runner for examples in docs - basic angular doc viewer
2010-10-29Check if file exists (not a 404) and that document is accessible and not ↵Elliott Sprehn
using file:// URLs in Application
2010-10-26create HTML sanitizer to allow inclusion of untrusted HTML in safe manner.Misko Hevery
Sanitization works in two phases: 1) We parse the HTML into sax-like events (start, end, chars). HTML parsing is very complex, and so it may very well be that what most browser consider valid HTML may not pares properly here, but we do best effort. We treat this parser as untrusted. 2) We have safe sanitizeWriter which treats its input (start, end, chars) as untrusted content and escapes everything. It only allows elements in the whitelist and only allows attributes which are whitelisted. Any attribute value must not start with 'javascript:'. This check is performed after escaping for entity (&xAB; etc..) and ignoring any whitespace. - Correct linky filter to use safeHtmlWriter - Correct html filter to use safeHtmlWriter Close #33; Close #34
2010-10-23Fix issue where directories don't have a slash on the end and allow ↵Elliott Sprehn
specifying a different port
2010-10-23Fix test which was causing the Chrome runner to fail. Upgraded JSTD to ↵Misko Hevery
latest. Cleanup whitespace.
2010-10-22Workaround for http://bugs.jquery.com/ticket/7292Misko Hevery
2010-10-22Better nodeserver that implements an HTTP server more completelyElliott Sprehn
2010-10-20fix some of the failing ie testsMisko Hevery
2010-10-19upgrade jstdMisko Hevery
2010-10-17upgraded jasmine to 1.0.1Misko Hevery
Close #63
2010-10-15fixed lint warnings and one flaky testMisko Hevery
2010-10-15Updated JSTDMisko Hevery
2010-09-23delete unused files (e.g. swfobject and underscore libs)Bolek Szewczyk
2010-09-21Upgrade JsTestDriver to 1.2.2 sans annoying 'runTestConfiguration' loggingIgor Minar
2010-09-21Upgrade closure compiler to the latest versionIgor Minar
2010-05-10improved handling of text fields when formater fails to prevent clobering of ↵Misko Hevery
field
2010-04-21more if tests passMisko Hevery
2010-04-20fixes to enable ieMisko Hevery
2010-04-19lintMisko Hevery
2010-04-09various bug fixesMisko Hevery
2010-04-08tests failing jstd to show coryMisko Hevery
2010-04-05added ng:includeMisko Hevery
2010-04-03injection is now workingMisko Hevery
2010-03-29tests broken, but bootstrap worksMisko Hevery
2010-03-24mergeMisko Hevery