aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2014-02-16chore(docs): replace local bootstrap build with one from bowerMatias Niemelä
2014-02-16chore(ngPluralize): remove useless docs headingMatias Niemelä
2014-02-16docs(design): footer and spacing fixes added to the layoutMatias Niemelä
2014-02-17docs(design): ui-fixes for examples, layout and API componentsMatias Niemelä
2014-02-16chore(errors): rename folders to match namespacesPeter Bacon Darwin
2014-02-16chore(travis): disable Safari and JQuery e2e tests on TravisPeter Bacon Darwin
There are no real JQuery tests at this point anyway and the Safari that we are getting from SauceLabs seems to be a flakey Windows 2000 version that is not necessarily providing accurate results.
2014-02-16docs(indexPage.template): fix top-nav links to work on localhostPeter Bacon Darwin
2014-02-16docs(bike-shed-migration): convert guide <doc:...> examples to <example>...Caitlin Potter
This CL also contains style fixes as the converted scripts caused jshint to complain.
2014-02-16docs(NgModelController): don't run contenteditable example on FFPeter Bacon Darwin
2014-02-16chore(doc-gen): improve error page navigationPeter Bacon Darwin
2014-02-16chore(doc-gen): remove trailing whitespace in ptor templatePeter Bacon Darwin
2014-02-16docs(*): fix jshint issues in examplesPeter Bacon Darwin
2014-02-16chore(doc-gen): add jshint checking to examples and testsPeter Bacon Darwin
2014-02-16chore(e2etests): fix a browser check which was actually assigning the parameterJulie
2014-02-16docs(guide): remove unnecessary "Developer Guide: " from @namesPeter Bacon Darwin
2014-02-16chore(doc-gen): only output info (and more severe) log messagesPeter Bacon Darwin
2014-02-16chore(doc-gen): fix navGroup hrefsPeter Bacon Darwin
2014-02-16chore(grunt): grunt should error when doc generation grunt errorsJulie
2014-02-16chore(travis): remove test:docgen task from buildCaitlin Potter
The task was removed by an earlier commit, and executing it breaks TravisCI builds. It may be replaced at a later date.
2014-02-16chore(package.json): move to published npm version of dgeni-packagesPeter Bacon Darwin
2014-02-16docs(api): escape params that have <object> in their typePeter Bacon Darwin
Really the doc-gen process should escape there but for now this should stop the layout from breaking.
2014-02-16docs($locationProvider): tag as a provider rather than objectPeter Bacon Darwin
2014-02-16docs(docs.css): add initial type-hint stylesPeter Bacon Darwin
2014-02-16docs(content): fix bad linksPeter Bacon Darwin
2014-02-16chore(doc-gen): remove console.log statementsPeter Bacon Darwin
2014-02-16docs(ngHref): fix example that navigates away from the pagePeter Bacon Darwin
2014-02-16docs(ngRoute): ask for examples to have their base[href] fixedPeter Bacon Darwin
2014-02-16docs(ngHref): don't run the breaking protractor testPeter Bacon Darwin
2014-02-16chore(package.json): get dgeni from the npm registryPeter Bacon Darwin
2014-02-16test(docs-app-e2e): refactor test inline with new docs appPeter Bacon Darwin
The links to code elements have now changed: api/ng.directive:ngClick -> api/ng/directive/ngClick. Examples now run inside iframes, so we need to instruct Protractor to switch to the example iframe.
2014-02-16docs(api/index): fix ambiguous ngClick linkPeter Bacon Darwin
ngClick appears in more than one module so we must make it explicit.
2014-02-16docs(ngShowHide): fix icons in examplePeter Bacon Darwin
The protractor tests were failing because the spans containing the icons were not displaying anymore.
2014-02-16docs(examples): fix example dependenciesPeter Bacon Darwin
2014-02-16docs(ngSanitize): add dependency on angular-sanitize to examplePeter Bacon Darwin
2014-02-16chore(doc-gen): provide example dependencyPath in configPeter Bacon Darwin
2014-02-16chore(doc-gen): move git info into its own processorPeter Bacon Darwin
2014-02-16chore(docs-indexPage.template): add onload handler for Google AnalyticsPeter Bacon Darwin
2014-02-16chore(indexPage.template): add back Google analytics and offline supportPeter Bacon Darwin
2014-02-16docs(injector): move angular.injector to the ng modulePeter Bacon Darwin
Even though it is defined in the auto folder, it makes more sense for this function to appear in the ng module in the docs.
2014-02-16chore(docs): remove 'AngularJS ' prefix from version drop-downPeter Bacon Darwin
2014-02-16chore(protractor tests): fix up e2e testsJulie
2014-02-16chore(protractor-generator): add dgeni processor for protractorJulie
2014-02-16docs(misc): add landing page for the miscellaneous areaPeter Bacon Darwin
2014-02-16docs(tutorial): give the tutorial landing page a better namePeter Bacon Darwin
2014-02-16chore(doc-gen): new docsPeter Bacon Darwin
chore(doc-gen): implement dgeni
2014-02-16docs(bike-shed-migration): fix url-based links refs to AUTO modulePeter Bacon Darwin
2014-02-16docs(bike-shed-migration): fix invalid </file name=""> HTML in examplesPeter Bacon Darwin
2014-02-16docs(ngResource): fix over-length linePeter Bacon Darwin
2014-02-16docs(sce): fix invalid @name tagsPeter Bacon Darwin
2014-02-16docs(bike-shed-migration): let markdown deal with extenal linksPeter Bacon Darwin
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 <a href="http://www.google.com/"></a> Google} ``` Our {@link} parser then converts this to: ``` <a href="<a">&lt;</a>href="http://www.google.com/"></a> 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.