add @workInProgress tag and mark all @ngdocs as work in progress

This commit is contained in:
Igor Minar 2010-11-18 16:28:42 -08:00
parent 3c7874b07b
commit fc7f11d03b
24 changed files with 198 additions and 0 deletions

View file

@ -240,6 +240,9 @@ var TAG = {
css: valueTag, css: valueTag,
see: valueTag, see: valueTag,
deprecated: valueTag, deprecated: valueTag,
workInProgress: function(doc, name, value) {
doc[name] = {description: markdown(value)};
},
usageContent: valueTag, usageContent: valueTag,
'function': valueTag, 'function': valueTag,
description: markdownTag, description: markdownTag,

View file

@ -1,5 +1,13 @@
<h1>{{name}}</h1> <h1>{{name}}</h1>
{{#workInProgress}}
<fieldset class="workInProgress">
<legend>Work In Progress</legend>
This page is currently being revised. It might be incomplete or contain inaccuracies.
{{{workInProgress.description}}}
</fieldset>
{{/workInProgress}}
{{#deprecated}} {{#deprecated}}
<fieldset class="deprecated"> <fieldset class="deprecated">
<legend>Deprecated API</legend> <legend>Deprecated API</legend>

View file

@ -159,3 +159,12 @@ a {
font-weight: bold; font-weight: bold;
color: red; color: red;
} }
.workInProgress {
border: 2px solid orange;
}
.workInProgress legend {
font-weight: bold;
color: orange;
}

View file

@ -1,5 +1,13 @@
<h1>{{name}}</h1> <h1>{{name}}</h1>
{{#workInProgress}}
<fieldset class="workInProgress">
<legend>Work In Progress</legend>
This page is currently being revised. It might be incomplete or contain inaccuracies.
{{{workInProgress.description}}}
</fieldset>
{{/workInProgress}}
{{#deprecated}} {{#deprecated}}
<fieldset class="deprecated"> <fieldset class="deprecated">
<legend>Deprecated API</legend> <legend>Deprecated API</legend>

View file

@ -1,5 +1,13 @@
<h1>{{name}}</h1> <h1>{{name}}</h1>
{{#workInProgress}}
<fieldset class="workInProgress">
<legend>Work In Progress</legend>
This page is currently being revised. It might be incomplete or contain inaccuracies.
{{{workInProgress.description}}}
</fieldset>
{{/workInProgress}}
{{#deprecated}} {{#deprecated}}
<fieldset class="deprecated"> <fieldset class="deprecated">
<legend>Deprecated API</legend> <legend>Deprecated API</legend>

View file

@ -1,5 +1,13 @@
<h1>{{name}}</h1> <h1>{{name}}</h1>
{{#workInProgress}}
<fieldset class="workInProgress">
<legend>Work In Progress</legend>
This page is currently being revised. It might be incomplete or contain inaccuracies.
{{{workInProgress.description}}}
</fieldset>
{{/workInProgress}}
{{#deprecated}} {{#deprecated}}
<fieldset class="deprecated"> <fieldset class="deprecated">
<legend>Deprecated API</legend> <legend>Deprecated API</legend>

View file

@ -1,5 +1,13 @@
<h1>{{name}}</h1> <h1>{{name}}</h1>
{{#workInProgress}}
<fieldset class="workInProgress">
<legend>Work In Progress</legend>
This page is currently being revised. It might be incomplete or contain inaccuracies.
{{{workInProgress.description}}}
</fieldset>
{{/workInProgress}}
{{#deprecated}} {{#deprecated}}
<fieldset class="deprecated"> <fieldset class="deprecated">
<legend>Deprecated API</legend> <legend>Deprecated API</legend>

View file

@ -1,5 +1,13 @@
<h1><tt>{{name}}</tt></h1> <h1><tt>{{name}}</tt></h1>
{{#workInProgress}}
<fieldset class="workInProgress">
<legend>Work In Progress</legend>
This page is currently being revised. It might be incomplete or contain inaccuracies.
{{{workInProgress.description}}}
</fieldset>
{{/workInProgress}}
{{#deprecated}} {{#deprecated}}
<fieldset class="deprecated"> <fieldset class="deprecated">
<legend>Deprecated API</legend> <legend>Deprecated API</legend>

View file

@ -230,6 +230,18 @@ describe('collect', function(){
}) })
}); });
describe('@workInProgress', function() {
it('should parse @workInProgress without a description and default to true', function() {
TAG.workInProgress(doc, 'workInProgress', '');
expect(doc.workInProgress).toEqual({description: ''});
});
it('should parse @workInProgress with a description', function() {
TAG.workInProgress(doc, 'workInProgress', 'my description');
expect(doc.workInProgress).toEqual({description: '<p>my description</p>'});
});
});
}); });
describe('trim', function(){ describe('trim', function(){

View file

@ -1,5 +1,13 @@
<h1>{{name}}</h1> <h1>{{name}}</h1>
{{#workInProgress}}
<fieldset class="workInProgress">
<legend>Work In Progress</legend>
This page is currently being revised. It might be incomplete or contain inaccuracies.
{{{workInProgress.description}}}
</fieldset>
{{/workInProgress}}
{{#deprecated}} {{#deprecated}}
<fieldset class="deprecated"> <fieldset class="deprecated">
<legend>Deprecated API</legend> <legend>Deprecated API</legend>

View file

@ -1,5 +1,13 @@
<h1>{{name}}</h1> <h1>{{name}}</h1>
{{#workInProgress}}
<fieldset class="workInProgress">
<legend>Work In Progress</legend>
This page is currently being revised. It might be incomplete or contain inaccuracies.
{{{workInProgress.description}}}
</fieldset>
{{/workInProgress}}
{{#deprecated}} {{#deprecated}}
<fieldset class="deprecated"> <fieldset class="deprecated">
<legend>Deprecated API</legend> <legend>Deprecated API</legend>

View file

@ -4,6 +4,7 @@ if (typeof document.getAttribute == $undefined)
document.getAttribute = function() {}; document.getAttribute = function() {};
/** /**
* @workInProgress
* @ngdoc function * @ngdoc function
* @name angular.lowercase * @name angular.lowercase
* @function * @function
@ -16,6 +17,7 @@ var lowercase = function (string){ return isString(string) ? string.toLowerCase(
/** /**
* @workInProgress
* @ngdoc function * @ngdoc function
* @name angular.uppercase * @name angular.uppercase
* @function * @function
@ -86,6 +88,7 @@ var _undefined = undefined,
error = window[$console] ? bind(window[$console], window[$console]['error'] || noop) : noop, error = window[$console] ? bind(window[$console], window[$console]['error'] || noop) : noop,
/** /**
* @workInProgress
* @ngdoc overview * @ngdoc overview
* @name angular * @name angular
* @namespace The exported angular namespace. * @namespace The exported angular namespace.
@ -94,6 +97,7 @@ var _undefined = undefined,
angularTextMarkup = extensionMap(angular, 'markup'), angularTextMarkup = extensionMap(angular, 'markup'),
angularAttrMarkup = extensionMap(angular, 'attrMarkup'), angularAttrMarkup = extensionMap(angular, 'attrMarkup'),
/** /**
* @workInProgress
* @ngdoc overview * @ngdoc overview
* @name angular.directive * @name angular.directive
* @namespace Namespace for all directives. * @namespace Namespace for all directives.
@ -150,6 +154,7 @@ var _undefined = undefined,
angularDirective = extensionMap(angular, 'directive'), angularDirective = extensionMap(angular, 'directive'),
/** /**
* @workInProgress
* @ngdoc overview * @ngdoc overview
* @name angular.widget * @name angular.widget
* @namespace Namespace for all widgets. * @namespace Namespace for all widgets.
@ -225,6 +230,7 @@ var _undefined = undefined,
angularWidget = extensionMap(angular, 'widget', lowercase), angularWidget = extensionMap(angular, 'widget', lowercase),
/** /**
* @workInProgress
* @ngdoc overview * @ngdoc overview
* @name angular.validator * @name angular.validator
* @namespace Namespace for all filters. * @namespace Namespace for all filters.
@ -302,6 +308,7 @@ var _undefined = undefined,
angularValidator = extensionMap(angular, 'validator'), angularValidator = extensionMap(angular, 'validator'),
/** /**
* @workInProgress
* @ngdoc overview * @ngdoc overview
* @name angular.filter * @name angular.filter
* @namespace Namespace for all filters. * @namespace Namespace for all filters.
@ -380,6 +387,7 @@ var _undefined = undefined,
*/ */
angularFilter = extensionMap(angular, 'filter'), angularFilter = extensionMap(angular, 'filter'),
/** /**
* @workInProgress
* @ngdoc overview * @ngdoc overview
* @name angular.formatter * @name angular.formatter
* @namespace Namespace for all formats. * @namespace Namespace for all formats.
@ -461,6 +469,7 @@ var _undefined = undefined,
angularFormatter = extensionMap(angular, 'formatter'), angularFormatter = extensionMap(angular, 'formatter'),
/** /**
* @workInProgress
* @ngdoc overview * @ngdoc overview
* @name angular.service * @name angular.service
* *
@ -883,6 +892,7 @@ function toKeyValue(obj) {
} }
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:autobind * @name angular.directive.ng:autobind
* @element script * @element script

View file

@ -1,5 +1,6 @@
var browserSingleton; var browserSingleton;
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$browser * @name angular.service.$browser
* @requires $log * @requires $log

View file

@ -20,6 +20,7 @@ function Browser(location, document, head, XHR, $log) {
var outstandingRequestCallbacks = []; var outstandingRequestCallbacks = [];
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$browser#xhr * @name angular.service.$browser#xhr
* @methodOf angular.service.$browser * @methodOf angular.service.$browser
@ -77,6 +78,7 @@ function Browser(location, document, head, XHR, $log) {
}; };
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$browser#notifyWhenNoOutstandingRequests * @name angular.service.$browser#notifyWhenNoOutstandingRequests
* @methodOf angular.service.$browser * @methodOf angular.service.$browser
@ -97,6 +99,7 @@ function Browser(location, document, head, XHR, $log) {
var pollFns = []; var pollFns = [];
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$browser#poll * @name angular.service.$browser#poll
* @methodOf angular.service.$browser * @methodOf angular.service.$browser
@ -106,6 +109,7 @@ function Browser(location, document, head, XHR, $log) {
}; };
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$browser#addPollFn * @name angular.service.$browser#addPollFn
* @methodOf angular.service.$browser * @methodOf angular.service.$browser
@ -123,6 +127,7 @@ function Browser(location, document, head, XHR, $log) {
}; };
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$browser#startPoller * @name angular.service.$browser#startPoller
* @methodOf angular.service.$browser * @methodOf angular.service.$browser
@ -146,6 +151,7 @@ function Browser(location, document, head, XHR, $log) {
////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$browser#setUrl * @name angular.service.$browser#setUrl
* @methodOf angular.service.$browser * @methodOf angular.service.$browser
@ -163,6 +169,7 @@ function Browser(location, document, head, XHR, $log) {
}; };
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$browser#getUrl * @name angular.service.$browser#getUrl
* @methodOf angular.service.$browser * @methodOf angular.service.$browser
@ -184,6 +191,7 @@ function Browser(location, document, head, XHR, $log) {
var lastCookieString = ''; var lastCookieString = '';
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$browser#cookies * @name angular.service.$browser#cookies
* @methodOf angular.service.$browser * @methodOf angular.service.$browser
@ -248,6 +256,7 @@ function Browser(location, document, head, XHR, $log) {
var hoverListener = noop; var hoverListener = noop;
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$browser#hover * @name angular.service.$browser#hover
* @methodOf angular.service.$browser * @methodOf angular.service.$browser
@ -261,6 +270,7 @@ function Browser(location, document, head, XHR, $log) {
self.hover = function(listener) { hoverListener = listener; }; self.hover = function(listener) { hoverListener = listener; };
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$browser#bind * @name angular.service.$browser#bind
* @methodOf angular.service.$browser * @methodOf angular.service.$browser
@ -281,6 +291,7 @@ function Browser(location, document, head, XHR, $log) {
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$browser#addCss * @name angular.service.$browser#addCss
* @methodOf angular.service.$browser * @methodOf angular.service.$browser
@ -299,6 +310,7 @@ function Browser(location, document, head, XHR, $log) {
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$browser#addJs * @name angular.service.$browser#addJs
* @methodOf angular.service.$browser * @methodOf angular.service.$browser

View file

@ -111,6 +111,7 @@ Compiler.prototype = {
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:eval-order * @name angular.directive.ng:eval-order
* *

View file

@ -1,6 +1,7 @@
var array = [].constructor; var array = [].constructor;
/** /**
* @workInProgress
* @ngdoc function * @ngdoc function
* @name angular.toJson * @name angular.toJson
* @function * @function
@ -19,6 +20,7 @@ function toJson(obj, pretty) {
} }
/** /**
* @workInProgress
* @ngdoc function * @ngdoc function
* @name angular.fromJson * @name angular.fromJson
* @function * @function

View file

@ -105,6 +105,7 @@ function errorHandlerFor(element, error) {
} }
/** /**
* @workInProgress
* @ngdoc overview * @ngdoc overview
* @name angular.scope * @name angular.scope
* *
@ -241,6 +242,7 @@ function createScope(parent, providers, instanceCache) {
$parent: parent, $parent: parent,
/** /**
* @workInProgress
* @ngdoc function * @ngdoc function
* @name angular.scope.$bind * @name angular.scope.$bind
* @function * @function
@ -264,6 +266,7 @@ function createScope(parent, providers, instanceCache) {
/** /**
* @workInProgress
* @ngdoc function * @ngdoc function
* @name angular.scope.$eval * @name angular.scope.$eval
* @function * @function
@ -322,6 +325,7 @@ function createScope(parent, providers, instanceCache) {
/** /**
* @workInProgress
* @ngdoc function * @ngdoc function
* @name angular.scope.$tryEval * @name angular.scope.$tryEval
* @function * @function
@ -379,6 +383,7 @@ function createScope(parent, providers, instanceCache) {
/** /**
* @workInProgress
* @ngdoc function * @ngdoc function
* @name angular.scope.$watch * @name angular.scope.$watch
* @function * @function
@ -440,6 +445,7 @@ function createScope(parent, providers, instanceCache) {
}, },
/** /**
* @workInProgress
* @ngdoc function * @ngdoc function
* @name angular.scope.$onEval * @name angular.scope.$onEval
* @function * @function
@ -484,6 +490,7 @@ function createScope(parent, providers, instanceCache) {
}, },
/** /**
* @workInProgress
* @ngdoc function * @ngdoc function
* @name angular.scope.$postEval * @name angular.scope.$postEval
* @function * @function
@ -504,6 +511,7 @@ function createScope(parent, providers, instanceCache) {
/** /**
* @workInProgress
* @ngdoc function * @ngdoc function
* @name angular.scope.$become * @name angular.scope.$become
* @function * @function
@ -547,6 +555,7 @@ function createScope(parent, providers, instanceCache) {
}, },
/** /**
* @workInProgress
* @ngdoc function * @ngdoc function
* @name angular.scope.$new * @name angular.scope.$new
* @function * @function

View file

@ -1,4 +1,5 @@
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:init * @name angular.directive.ng:init
* *
@ -27,6 +28,7 @@ angularDirective("ng:init", function(expression){
}); });
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:controller * @name angular.directive.ng:controller
* *
@ -105,6 +107,7 @@ angularDirective("ng:controller", function(expression){
}); });
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:eval * @name angular.directive.ng:eval
* *
@ -147,6 +150,7 @@ angularDirective("ng:eval", function(expression){
}); });
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:bind * @name angular.directive.ng:bind
* *
@ -250,6 +254,7 @@ function compileBindTemplate(template){
} }
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:bind-template * @name angular.directive.ng:bind-template
* *
@ -302,6 +307,7 @@ var REMOVE_ATTRIBUTES = {
'checked':'checked' 'checked':'checked'
}; };
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:bind-attr * @name angular.directive.ng:bind-attr
* *
@ -380,6 +386,7 @@ angularDirective("ng:bind-attr", function(expression){
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:click * @name angular.directive.ng:click
* *
@ -423,6 +430,7 @@ angularDirective("ng:click", function(expression, element){
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:submit * @name angular.directive.ng:submit
* *
@ -470,6 +478,7 @@ angularDirective("ng:submit", function(expression, element) {
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:watch * @name angular.directive.ng:watch
* *
@ -525,6 +534,7 @@ function ngClass(selector) {
} }
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:class * @name angular.directive.ng:class
* *
@ -561,6 +571,7 @@ function ngClass(selector) {
angularDirective("ng:class", ngClass(function(){return true;})); angularDirective("ng:class", ngClass(function(){return true;}));
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:class-odd * @name angular.directive.ng:class-odd
* *
@ -596,6 +607,7 @@ angularDirective("ng:class", ngClass(function(){return true;}));
angularDirective("ng:class-odd", ngClass(function(i){return i % 2 === 0;})); angularDirective("ng:class-odd", ngClass(function(i){return i % 2 === 0;}));
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:class-even * @name angular.directive.ng:class-even
* *
@ -631,6 +643,7 @@ angularDirective("ng:class-odd", ngClass(function(i){return i % 2 === 0;}));
angularDirective("ng:class-even", ngClass(function(i){return i % 2 === 1;})); angularDirective("ng:class-even", ngClass(function(i){return i % 2 === 1;}));
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:show * @name angular.directive.ng:show
* *
@ -668,6 +681,7 @@ angularDirective("ng:show", function(expression, element){
}); });
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:hide * @name angular.directive.ng:hide
* *
@ -705,6 +719,7 @@ angularDirective("ng:hide", function(expression, element){
}); });
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:style * @name angular.directive.ng:style
* *

View file

@ -1,4 +1,5 @@
/** /**
* @workInProgress
* @ngdoc filter * @ngdoc filter
* @name angular.filter.currency * @name angular.filter.currency
* @function * @function
@ -33,6 +34,7 @@ angularFilter.currency = function(amount){
}; };
/** /**
* @workInProgress
* @ngdoc filter * @ngdoc filter
* @name angular.filter.number * @name angular.filter.number
* @function * @function
@ -148,6 +150,7 @@ var NUMBER_STRING = /^\d+$/;
/** /**
* @workInProgress
* @ngdoc filter * @ngdoc filter
* @name angular.filter.date * @name angular.filter.date
* @function * @function
@ -229,6 +232,7 @@ angularFilter.date = function(date, format) {
/** /**
* @workInProgress
* @ngdoc filter * @ngdoc filter
* @name angular.filter.json * @name angular.filter.json
* @function * @function
@ -267,6 +271,7 @@ angularFilter.json = function(object) {
/** /**
* @workInProgress
* @ngdoc filter * @ngdoc filter
* @name angular.filter.lowercase * @name angular.filter.lowercase
* @function * @function
@ -277,6 +282,7 @@ angularFilter.lowercase = lowercase;
/** /**
* @workInProgress
* @ngdoc filter * @ngdoc filter
* @name angular.filter.uppercase * @name angular.filter.uppercase
* @function * @function
@ -287,6 +293,7 @@ angularFilter.uppercase = uppercase;
/** /**
* @workInProgress
* @ngdoc filter * @ngdoc filter
* @name angular.filter.html * @name angular.filter.html
* @function * @function
@ -375,6 +382,7 @@ angularFilter.html = function(html, option){
/** /**
* @workInProgress
* @ngdoc filter * @ngdoc filter
* @name angular.filter.linky * @name angular.filter.linky
* @function * @function

View file

@ -8,6 +8,7 @@ var NUMBER = /^\s*[-+]?\d*(\.\d*)?\s*$/;
angularFormatter.noop = formatter(identity, identity); angularFormatter.noop = formatter(identity, identity);
/** /**
* @workInProgress
* @ngdoc formatter * @ngdoc formatter
* @name angular.formatter.json * @name angular.formatter.json
* *
@ -32,6 +33,7 @@ angularFormatter.noop = formatter(identity, identity);
angularFormatter.json = formatter(toJson, fromJson); angularFormatter.json = formatter(toJson, fromJson);
/** /**
* @workInProgress
* @ngdoc formatter * @ngdoc formatter
* @name angular.formatter.boolean * @name angular.formatter.boolean
* *
@ -56,6 +58,7 @@ angularFormatter.json = formatter(toJson, fromJson);
angularFormatter['boolean'] = formatter(toString, toBoolean); angularFormatter['boolean'] = formatter(toString, toBoolean);
/** /**
* @workInProgress
* @ngdoc formatter * @ngdoc formatter
* @name angular.formatter.number * @name angular.formatter.number
* *
@ -85,6 +88,7 @@ angularFormatter.number = formatter(toString, function(obj){
}); });
/** /**
* @workInProgress
* @ngdoc formatter * @ngdoc formatter
* @name angular.formatter.list * @name angular.formatter.list
* *
@ -122,6 +126,7 @@ angularFormatter.list = formatter(
); );
/** /**
* @workInProgress
* @ngdoc formatter * @ngdoc formatter
* @name angular.formatter.trim * @name angular.formatter.trim
* *

View file

@ -69,6 +69,7 @@ angularTextMarkup('OPTION', function(text, textNode, parentElement){
}); });
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:href * @name angular.directive.ng:href
* *
@ -95,6 +96,7 @@ angularTextMarkup('OPTION', function(text, textNode, parentElement){
*/ */
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:src * @name angular.directive.ng:src
* *

View file

@ -9,6 +9,7 @@ function angularServiceInject(name, fn, inject, eager) {
} }
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$window * @name angular.service.$window
* *
@ -28,6 +29,7 @@ function angularServiceInject(name, fn, inject, eager) {
angularServiceInject("$window", bind(window, identity, window), [], EAGER_PUBLISHED); angularServiceInject("$window", bind(window, identity, window), [], EAGER_PUBLISHED);
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$document * @name angular.service.$document
* @requires $window * @requires $window
@ -40,6 +42,7 @@ angularServiceInject("$document", function(window){
}, ['$window'], EAGER_PUBLISHED); }, ['$window'], EAGER_PUBLISHED);
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$location * @name angular.service.$location
* @requires $browser * @requires $browser
@ -92,6 +95,7 @@ angularServiceInject("$location", function(browser) {
// PUBLIC METHODS // PUBLIC METHODS
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$location#update * @name angular.service.$location#update
* @methodOf angular.service.$location * @methodOf angular.service.$location
@ -127,6 +131,7 @@ angularServiceInject("$location", function(browser) {
} }
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$location#updateHash * @name angular.service.$location#updateHash
* @methodOf angular.service.$location * @methodOf angular.service.$location
@ -162,6 +167,7 @@ angularServiceInject("$location", function(browser) {
} }
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$location#toString * @name angular.service.$location#toString
* @methodOf angular.service.$location * @methodOf angular.service.$location
@ -291,6 +297,7 @@ angularServiceInject("$location", function(browser) {
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$log * @name angular.service.$log
* @requires $window * @requires $window
@ -313,6 +320,7 @@ angularServiceInject("$location", function(browser) {
angularServiceInject("$log", function($window){ angularServiceInject("$log", function($window){
return { return {
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$log#log * @name angular.service.$log#log
* @methodOf angular.service.$log * @methodOf angular.service.$log
@ -323,6 +331,7 @@ angularServiceInject("$log", function($window){
log: consoleLog('log'), log: consoleLog('log'),
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$log#warn * @name angular.service.$log#warn
* @methodOf angular.service.$log * @methodOf angular.service.$log
@ -333,6 +342,7 @@ angularServiceInject("$log", function($window){
warn: consoleLog('warn'), warn: consoleLog('warn'),
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$log#info * @name angular.service.$log#info
* @methodOf angular.service.$log * @methodOf angular.service.$log
@ -343,6 +353,7 @@ angularServiceInject("$log", function($window){
info: consoleLog('info'), info: consoleLog('info'),
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$log#error * @name angular.service.$log#error
* @methodOf angular.service.$log * @methodOf angular.service.$log
@ -372,6 +383,7 @@ angularServiceInject("$log", function($window){
}, ['$window'], EAGER_PUBLISHED); }, ['$window'], EAGER_PUBLISHED);
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$exceptionHandler * @name angular.service.$exceptionHandler
* @requires $log * @requires $log
@ -395,6 +407,7 @@ angularServiceInject('$exceptionHandler', function($log){
}, ['$log'], EAGER_PUBLISHED); }, ['$log'], EAGER_PUBLISHED);
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$hover * @name angular.service.$hover
* @requires $browser * @requires $browser
@ -451,6 +464,7 @@ angularServiceInject("$hover", function(browser, document) {
}, ['$browser', '$document'], EAGER); }, ['$browser', '$document'], EAGER);
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$invalidWidgets * @name angular.service.$invalidWidgets
* *
@ -543,6 +557,7 @@ function switchRouteMatcher(on, when, dstName) {
} }
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$route * @name angular.service.$route
* @requires $location * @requires $location
@ -604,6 +619,7 @@ angularServiceInject('$route', function(location) {
routes: routes, routes: routes,
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$route#onChange * @name angular.service.$route#onChange
* @methodOf angular.service.$route * @methodOf angular.service.$route
@ -616,6 +632,7 @@ angularServiceInject('$route', function(location) {
onChange: bind(onChange, onChange.push), onChange: bind(onChange, onChange.push),
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$route#when * @name angular.service.$route#when
* @methodOf angular.service.$route * @methodOf angular.service.$route
@ -662,6 +679,7 @@ angularServiceInject('$route', function(location) {
}, ['$location'], EAGER_PUBLISHED); }, ['$location'], EAGER_PUBLISHED);
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$xhr * @name angular.service.$xhr
* @requires $browser * @requires $browser
@ -704,6 +722,7 @@ angularServiceInject('$xhr', function($browser, $error, $log){
}, ['$browser', '$xhr.error', '$log']); }, ['$browser', '$xhr.error', '$log']);
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$xhr.error * @name angular.service.$xhr.error
* @requires $log * @requires $log
@ -719,6 +738,7 @@ angularServiceInject('$xhr.error', function($log){
}, ['$log']); }, ['$log']);
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$xhr.bulk * @name angular.service.$xhr.bulk
* @requires $xhr * @requires $xhr
@ -780,6 +800,7 @@ angularServiceInject('$xhr.bulk', function($xhr, $error, $log){
}, ['$xhr', '$xhr.error', '$log']); }, ['$xhr', '$xhr.error', '$log']);
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$xhr.cache * @name angular.service.$xhr.cache
* @requires $xhr * @requires $xhr
@ -833,6 +854,7 @@ angularServiceInject('$xhr.cache', function($xhr){
}, ['$xhr.bulk']); }, ['$xhr.bulk']);
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$resource * @name angular.service.$resource
* @requires $xhr * @requires $xhr
@ -889,6 +911,7 @@ angularServiceInject('$resource', function($xhr){
}, ['$xhr.cache']); }, ['$xhr.cache']);
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$cookies * @name angular.service.$cookies
* @requires $browser * @requires $browser
@ -973,6 +996,7 @@ angularServiceInject('$cookies', function($browser) {
}, ['$browser'], EAGER_PUBLISHED); }, ['$browser'], EAGER_PUBLISHED);
/** /**
* @workInProgress
* @ngdoc service * @ngdoc service
* @name angular.service.$cookieStore * @name angular.service.$cookieStore
* @requires $cookies * @requires $cookies
@ -987,6 +1011,7 @@ angularServiceInject('$cookieStore', function($store) {
return { return {
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$cookieStore#get * @name angular.service.$cookieStore#get
* @methodOf angular.service.$cookieStore * @methodOf angular.service.$cookieStore
@ -1002,6 +1027,7 @@ angularServiceInject('$cookieStore', function($store) {
}, },
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$cookieStore#put * @name angular.service.$cookieStore#put
* @methodOf angular.service.$cookieStore * @methodOf angular.service.$cookieStore
@ -1017,6 +1043,7 @@ angularServiceInject('$cookieStore', function($store) {
}, },
/** /**
* @workInProgress
* @ngdoc method * @ngdoc method
* @name angular.service.$cookieStore#remove * @name angular.service.$cookieStore#remove
* @methodOf angular.service.$cookieStore * @methodOf angular.service.$cookieStore

View file

@ -2,6 +2,7 @@ extend(angularValidator, {
'noop': function() { return _null; }, 'noop': function() { return _null; },
/** /**
* @workInProgress
* @ngdoc validator * @ngdoc validator
* @name angular.validator.regexp * @name angular.validator.regexp
* @description * @description
@ -36,6 +37,7 @@ extend(angularValidator, {
}, },
/** /**
* @workInProgress
* @ngdoc validator * @ngdoc validator
* @name angular.validator.number * @name angular.validator.number
* @description * @description
@ -88,6 +90,7 @@ extend(angularValidator, {
}, },
/** /**
* @workInProgress
* @ngdoc validator * @ngdoc validator
* @name angular.validator.integer * @name angular.validator.integer
* @description * @description
@ -133,6 +136,7 @@ extend(angularValidator, {
}, },
/** /**
* @workInProgress
* @ngdoc validator * @ngdoc validator
* @name angular.validator.date * @name angular.validator.date
* @description * @description
@ -166,6 +170,7 @@ extend(angularValidator, {
}, },
/** /**
* @workInProgress
* @ngdoc validator * @ngdoc validator
* @name angular.validator.email * @name angular.validator.email
* @description * @description
@ -195,6 +200,7 @@ extend(angularValidator, {
}, },
/** /**
* @workInProgress
* @ngdoc validator * @ngdoc validator
* @name angular.validator.phone * @name angular.validator.phone
* @description * @description
@ -227,6 +233,7 @@ extend(angularValidator, {
}, },
/** /**
* @workInProgress
* @ngdoc validator * @ngdoc validator
* @name angular.validator.url * @name angular.validator.url
* @description * @description
@ -256,6 +263,7 @@ extend(angularValidator, {
}, },
/** /**
* @workInProgress
* @ngdoc validator * @ngdoc validator
* @name angular.validator.json * @name angular.validator.json
* @description * @description
@ -288,6 +296,7 @@ extend(angularValidator, {
}, },
/** /**
* @workInProgress
* @ngdoc validator * @ngdoc validator
* @name angular.validator.asynchronous * @name angular.validator.asynchronous
* @description * @description

View file

@ -1,4 +1,5 @@
/** /**
* @workInProgress
* @ngdoc widget * @ngdoc widget
* @name angular.widget.HTML * @name angular.widget.HTML
* *
@ -166,6 +167,7 @@ function compileValidator(expr) {
} }
/** /**
* @workInProgress
* @ngdoc widget * @ngdoc widget
* @name angular.widget.@ng:validate * @name angular.widget.@ng:validate
* *
@ -202,6 +204,7 @@ function compileValidator(expr) {
}); });
*/ */
/** /**
* @workInProgress
* @ngdoc widget * @ngdoc widget
* @name angular.widget.@ng:required * @name angular.widget.@ng:required
* *
@ -227,6 +230,7 @@ function compileValidator(expr) {
}); });
*/ */
/** /**
* @workInProgress
* @ngdoc widget * @ngdoc widget
* @name angular.widget.@ng:format * @name angular.widget.@ng:format
* *
@ -413,6 +417,7 @@ function radioInit(model, view, element) {
} }
/** /**
* @workInProgress
* @ngdoc directive * @ngdoc directive
* @name angular.directive.ng:change * @name angular.directive.ng:change
* *
@ -499,6 +504,7 @@ angularWidget('option', function(){
/** /**
* @workInProgress
* @ngdoc widget * @ngdoc widget
* @name angular.widget.ng:include * @name angular.widget.ng:include
* *
@ -584,6 +590,7 @@ angularWidget('ng:include', function(element){
}); });
/** /**
* @workInProgress
* @ngdoc widget * @ngdoc widget
* @name angular.widget.ng:switch * @name angular.widget.ng:switch
* *
@ -722,6 +729,7 @@ angularWidget('a', function() {
/** /**
* @workInProgress
* @ngdoc widget * @ngdoc widget
* @name angular.widget.@ng:repeat * @name angular.widget.@ng:repeat
* *
@ -848,6 +856,7 @@ angularWidget("@ng:repeat", function(expression, element){
/** /**
* @workInProgress
* @ngdoc widget * @ngdoc widget
* @name angular.widget.@ng:non-bindable * @name angular.widget.@ng:non-bindable
* *