aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorIgor Minar2011-10-12 12:19:39 -0700
committerIgor Minar2011-10-12 23:04:48 -0700
commitb3c4cb7cff8bab6e0e3d7e68870ed6316bbd5241 (patch)
treed7561b1e2704197c8f0e441abbf98661d2145ac5 /src
parent4af4378b11c971f99205b7e712c13e8ef3467749 (diff)
downloadangular.js-b3c4cb7cff8bab6e0e3d7e68870ed6316bbd5241.tar.bz2
docs(*): remove @workInProgress from everywhere
it's not useful any more and it only makes the docs look ugly
Diffstat (limited to 'src')
-rw-r--r--src/Browser.js8
-rw-r--r--src/Compiler.js1
-rw-r--r--src/angular-mocks.js4
-rw-r--r--src/directives.js11
-rw-r--r--src/filters.js9
-rw-r--r--src/markups.js7
-rw-r--r--src/service/cookieStore.js4
-rw-r--r--src/service/cookies.js1
-rw-r--r--src/service/defer.js1
-rw-r--r--src/service/document.js1
-rw-r--r--src/service/exceptionHandler.js1
-rw-r--r--src/service/formFactory.js2
-rw-r--r--src/service/log.js5
-rw-r--r--src/service/resource.js1
-rw-r--r--src/service/route.js8
-rw-r--r--src/service/routeParams.js1
-rw-r--r--src/service/sniffer.js1
-rw-r--r--src/service/window.js1
-rw-r--r--src/service/xhr.bulk.js1
-rw-r--r--src/service/xhr.cache.js1
-rw-r--r--src/service/xhr.error.js1
-rw-r--r--src/service/xhr.js1
-rw-r--r--src/widget/form.js1
-rw-r--r--src/widget/input.js9
-rw-r--r--src/widget/select.js1
-rw-r--r--src/widgets.js5
26 files changed, 0 insertions, 87 deletions
diff --git a/src/Browser.js b/src/Browser.js
index e45c7042..cc5e257b 100644
--- a/src/Browser.js
+++ b/src/Browser.js
@@ -77,7 +77,6 @@ function Browser(window, document, body, XHR, $log, $sniffer) {
}
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$browser#xhr
* @methodOf angular.service.$browser
@@ -157,7 +156,6 @@ function Browser(window, document, body, XHR, $log, $sniffer) {
pollTimeout;
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$browser#addPollFn
* @methodOf angular.service.$browser
@@ -198,7 +196,6 @@ function Browser(window, document, body, XHR, $log, $sniffer) {
var lastBrowserUrl = location.href;
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$browser#url
* @methodOf angular.service.$browser
@@ -250,7 +247,6 @@ function Browser(window, document, body, XHR, $log, $sniffer) {
}
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$browser#onUrlChange
* @methodOf angular.service.$browser
@@ -301,7 +297,6 @@ function Browser(window, document, body, XHR, $log, $sniffer) {
var lastCookieString = '';
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$browser#cookies
* @methodOf angular.service.$browser
@@ -363,7 +358,6 @@ function Browser(window, document, body, XHR, $log, $sniffer) {
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$browser#defer
* @methodOf angular.service.$browser
@@ -417,7 +411,6 @@ function Browser(window, document, body, XHR, $log, $sniffer) {
//////////////////////////////////////////////////////////////
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$browser#addCss
* @methodOf angular.service.$browser
@@ -436,7 +429,6 @@ function Browser(window, document, body, XHR, $log, $sniffer) {
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$browser#addJs
* @methodOf angular.service.$browser
diff --git a/src/Compiler.js b/src/Compiler.js
index adbab7e7..23bce084 100644
--- a/src/Compiler.js
+++ b/src/Compiler.js
@@ -62,7 +62,6 @@ Template.prototype = {
//////////////////////////////////
/**
- * @workInProgress
* @ngdoc function
* @name angular.compile
* @function
diff --git a/src/angular-mocks.js b/src/angular-mocks.js
index 86f1b46f..e9b01c40 100644
--- a/src/angular-mocks.js
+++ b/src/angular-mocks.js
@@ -41,7 +41,6 @@
/**
- * @workInProgress
* @ngdoc overview
* @name angular.mock
* @description
@@ -61,7 +60,6 @@ angular.mock = {};
/**
- * @workInProgress
* @ngdoc service
* @name angular.mock.service.$browser
*
@@ -365,7 +363,6 @@ angular.service('$browser', function() {
/**
- * @workInProgress
* @ngdoc service
* @name angular.mock.service.$exceptionHandler
*
@@ -382,7 +379,6 @@ angular.service('$exceptionHandler', function() {
/**
- * @workInProgress
* @ngdoc service
* @name angular.mock.service.$log
*
diff --git a/src/directives.js b/src/directives.js
index 5cafab47..b9779adf 100644
--- a/src/directives.js
+++ b/src/directives.js
@@ -42,7 +42,6 @@
*/
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:init
*
@@ -75,7 +74,6 @@ angularDirective("ng:init", function(expression){
});
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:controller
*
@@ -306,7 +304,6 @@ function compileBindTemplate(template){
}
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:bind-template
*
@@ -441,7 +438,6 @@ angularDirective("ng:bind-attr", function(expression){
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:click
*
@@ -490,7 +486,6 @@ angularDirective("ng:click", function(expression, element){
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:submit
*
@@ -557,7 +552,6 @@ function ngClass(selector) {
}
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:class
*
@@ -603,7 +597,6 @@ function ngClass(selector) {
angularDirective("ng:class", ngClass(function() {return true;}));
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:class-odd
*
@@ -644,7 +637,6 @@ angularDirective("ng:class", ngClass(function() {return true;}));
angularDirective("ng:class-odd", ngClass(function(i){return i % 2 === 0;}));
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:class-even
*
@@ -685,7 +677,6 @@ angularDirective("ng:class-odd", ngClass(function(i){return i % 2 === 0;}));
angularDirective("ng:class-even", ngClass(function(i){return i % 2 === 1;}));
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:show
*
@@ -726,7 +717,6 @@ angularDirective("ng:show", function(expression, element){
});
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:hide
*
@@ -767,7 +757,6 @@ angularDirective("ng:hide", function(expression, element){
});
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:style
*
diff --git a/src/filters.js b/src/filters.js
index e4ee7453..b2d6f4b7 100644
--- a/src/filters.js
+++ b/src/filters.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc overview
* @name angular.filter
* @description
@@ -29,7 +28,6 @@
*/
/**
- * @workInProgress
* @ngdoc filter
* @name angular.filter.currency
* @function
@@ -83,7 +81,6 @@ angularFilter.currency = function(amount, currencySymbol){
};
/**
- * @workInProgress
* @ngdoc filter
* @name angular.filter.number
* @function
@@ -269,7 +266,6 @@ var GET_TIME_ZONE = /[A-Z]{3}(?![+\-])/,
NUMBER_STRING = /^\d+$/;
/**
- * @workInProgress
* @ngdoc filter
* @name angular.filter.date
* @function
@@ -391,7 +387,6 @@ angularFilter.date = function(date, format) {
/**
- * @workInProgress
* @ngdoc filter
* @name angular.filter.json
* @function
@@ -427,7 +422,6 @@ angularFilter.json = function(object) {
/**
- * @workInProgress
* @ngdoc filter
* @name angular.filter.lowercase
* @function
@@ -438,7 +432,6 @@ angularFilter.lowercase = lowercase;
/**
- * @workInProgress
* @ngdoc filter
* @name angular.filter.uppercase
* @function
@@ -449,7 +442,6 @@ angularFilter.uppercase = uppercase;
/**
- * @workInProgress
* @ngdoc filter
* @name angular.filter.html
* @function
@@ -549,7 +541,6 @@ angularFilter.html = function(html, option){
/**
- * @workInProgress
* @ngdoc filter
* @name angular.filter.linky
* @function
diff --git a/src/markups.js b/src/markups.js
index 40f4322b..75329169 100644
--- a/src/markups.js
+++ b/src/markups.js
@@ -134,7 +134,6 @@ angularTextMarkup('option', function(text, textNode, parentElement){
});
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:href
*
@@ -215,7 +214,6 @@ angularTextMarkup('option', function(text, textNode, parentElement){
*/
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:src
*
@@ -241,7 +239,6 @@ angularTextMarkup('option', function(text, textNode, parentElement){
*/
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:disabled
*
@@ -280,7 +277,6 @@ angularTextMarkup('option', function(text, textNode, parentElement){
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:checked
*
@@ -310,7 +306,6 @@ angularTextMarkup('option', function(text, textNode, parentElement){
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:multiple
*
@@ -346,7 +341,6 @@ angularTextMarkup('option', function(text, textNode, parentElement){
/**
- * @workInProgress
* @ngdoc directive
* @name angular.directive.ng:readonly
*
@@ -376,7 +370,6 @@ angularTextMarkup('option', function(text, textNode, parentElement){
/**
-* @workInProgress
* @ngdoc directive
* @name angular.directive.ng:selected
*
diff --git a/src/service/cookieStore.js b/src/service/cookieStore.js
index facce284..1b38cfac 100644
--- a/src/service/cookieStore.js
+++ b/src/service/cookieStore.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$cookieStore
* @requires $cookies
@@ -16,7 +15,6 @@ angularServiceInject('$cookieStore', function($store) {
return {
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$cookieStore#get
* @methodOf angular.service.$cookieStore
@@ -32,7 +30,6 @@ angularServiceInject('$cookieStore', function($store) {
},
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$cookieStore#put
* @methodOf angular.service.$cookieStore
@@ -48,7 +45,6 @@ angularServiceInject('$cookieStore', function($store) {
},
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$cookieStore#remove
* @methodOf angular.service.$cookieStore
diff --git a/src/service/cookies.js b/src/service/cookies.js
index c02fd8a8..a2ccee09 100644
--- a/src/service/cookies.js
+++ b/src/service/cookies.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$cookies
* @requires $browser
diff --git a/src/service/defer.js b/src/service/defer.js
index 1ea4bf0c..7d0fdeb7 100644
--- a/src/service/defer.js
+++ b/src/service/defer.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$defer
* @requires $browser
diff --git a/src/service/document.js b/src/service/document.js
index 37a5bba2..ae13c1ed 100644
--- a/src/service/document.js
+++ b/src/service/document.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$document
* @requires $window
diff --git a/src/service/exceptionHandler.js b/src/service/exceptionHandler.js
index aa4eed47..4bf6b6a6 100644
--- a/src/service/exceptionHandler.js
+++ b/src/service/exceptionHandler.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$exceptionHandler
* @requires $log
diff --git a/src/service/formFactory.js b/src/service/formFactory.js
index 1efbe363..e7ff42ff 100644
--- a/src/service/formFactory.js
+++ b/src/service/formFactory.js
@@ -152,7 +152,6 @@ function propertiesUpdate(widget) {
*/
/**
- * @workInProgress
* @ngdoc property
* @name $invalid
* @propertyOf angular.service.$formFactory
@@ -163,7 +162,6 @@ function propertiesUpdate(widget) {
*/
/**
- * @workInProgress
* @ngdoc property
* @name $valid
* @propertyOf angular.service.$formFactory
diff --git a/src/service/log.js b/src/service/log.js
index 01254178..29577166 100644
--- a/src/service/log.js
+++ b/src/service/log.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$log
* @requires $window
@@ -39,7 +38,6 @@ var $logFactory; //reference to be used only in tests
angularServiceInject("$log", $logFactory = function($window){
return {
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$log#log
* @methodOf angular.service.$log
@@ -50,7 +48,6 @@ angularServiceInject("$log", $logFactory = function($window){
log: consoleLog('log'),
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$log#warn
* @methodOf angular.service.$log
@@ -61,7 +58,6 @@ angularServiceInject("$log", $logFactory = function($window){
warn: consoleLog('warn'),
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$log#info
* @methodOf angular.service.$log
@@ -72,7 +68,6 @@ angularServiceInject("$log", $logFactory = function($window){
info: consoleLog('info'),
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$log#error
* @methodOf angular.service.$log
diff --git a/src/service/resource.js b/src/service/resource.js
index 27bb1632..8d77a9e4 100644
--- a/src/service/resource.js
+++ b/src/service/resource.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$resource
* @requires $xhr.cache
diff --git a/src/service/route.js b/src/service/route.js
index f5c8a672..ddc3df49 100644
--- a/src/service/route.js
+++ b/src/service/route.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$route
* @requires $location
@@ -65,7 +64,6 @@
*/
angularServiceInject('$route', function($location, $routeParams) {
/**
- * @workInProgress
* @ngdoc event
* @name angular.service.$route#$beforeRouteChange
* @eventOf angular.service.$route
@@ -84,7 +82,6 @@ angularServiceInject('$route', function($location, $routeParams) {
*/
/**
- * @workInProgress
* @ngdoc event
* @name angular.service.$route#$afterRouteChange
* @eventOf angular.service.$route
@@ -103,7 +100,6 @@ angularServiceInject('$route', function($location, $routeParams) {
*/
/**
- * @workInProgress
* @ngdoc event
* @name angular.service.$route#$routeUpdate
* @eventOf angular.service.$route
@@ -124,7 +120,6 @@ angularServiceInject('$route', function($location, $routeParams) {
routes: routes,
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$route#parent
* @methodOf angular.service.$route
@@ -141,7 +136,6 @@ angularServiceInject('$route', function($location, $routeParams) {
},
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$route#when
* @methodOf angular.service.$route
@@ -197,7 +191,6 @@ angularServiceInject('$route', function($location, $routeParams) {
},
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$route#otherwise
* @methodOf angular.service.$route
@@ -213,7 +206,6 @@ angularServiceInject('$route', function($location, $routeParams) {
},
/**
- * @workInProgress
* @ngdoc method
* @name angular.service.$route#reload
* @methodOf angular.service.$route
diff --git a/src/service/routeParams.js b/src/service/routeParams.js
index ac496ec7..a9e201a3 100644
--- a/src/service/routeParams.js
+++ b/src/service/routeParams.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$routeParams
* @requires $route
diff --git a/src/service/sniffer.js b/src/service/sniffer.js
index c71a9bde..ed6d688d 100644
--- a/src/service/sniffer.js
+++ b/src/service/sniffer.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$sniffer
* @requires $window
diff --git a/src/service/window.js b/src/service/window.js
index 9795e4fc..bc264e30 100644
--- a/src/service/window.js
+++ b/src/service/window.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$window
*
diff --git a/src/service/xhr.bulk.js b/src/service/xhr.bulk.js
index db560556..33c9384b 100644
--- a/src/service/xhr.bulk.js
+++ b/src/service/xhr.bulk.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$xhr.bulk
* @requires $xhr
diff --git a/src/service/xhr.cache.js b/src/service/xhr.cache.js
index 14051c40..630caa5b 100644
--- a/src/service/xhr.cache.js
+++ b/src/service/xhr.cache.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$xhr.cache
* @function
diff --git a/src/service/xhr.error.js b/src/service/xhr.error.js
index 0ff6de1c..01fb8fff 100644
--- a/src/service/xhr.error.js
+++ b/src/service/xhr.error.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$xhr.error
* @function
diff --git a/src/service/xhr.js b/src/service/xhr.js
index 8a50964b..fe7d42d9 100644
--- a/src/service/xhr.js
+++ b/src/service/xhr.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc service
* @name angular.service.$xhr
* @function
diff --git a/src/widget/form.js b/src/widget/form.js
index b01a07ef..065ee74d 100644
--- a/src/widget/form.js
+++ b/src/widget/form.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc widget
* @name angular.widget.form
*
diff --git a/src/widget/input.js b/src/widget/input.js
index a4f04e57..7f1a5773 100644
--- a/src/widget/input.js
+++ b/src/widget/input.js
@@ -7,7 +7,6 @@ var NUMBER_REGEXP = /^\s*(\-|\+)?(\d+|(\d*(\.\d*)))\s*$/;
var INTEGER_REGEXP = /^\s*(\-|\+)?\d+\s*$/;
/**
- * @workInProgress
* @ngdoc inputType
* @name angular.inputType.text
*
@@ -70,7 +69,6 @@ var INTEGER_REGEXP = /^\s*(\-|\+)?\d+\s*$/;
/**
- * @workInProgress
* @ngdoc inputType
* @name angular.inputType.email
*
@@ -138,7 +136,6 @@ angularInputType('email', function() {
});
/**
- * @workInProgress
* @ngdoc inputType
* @name angular.inputType.url
*
@@ -208,7 +205,6 @@ angularInputType('url', function() {
});
/**
- * @workInProgress
* @ngdoc inputType
* @name angular.inputType.list
*
@@ -280,7 +276,6 @@ angularInputType('list', function() {
});
/**
- * @workInProgress
* @ngdoc inputType
* @name angular.inputType.number
*
@@ -346,7 +341,6 @@ angularInputType('list', function() {
angularInputType('number', numericRegexpInputType(NUMBER_REGEXP, 'NUMBER'));
/**
- * @workInProgress
* @ngdoc inputType
* @name angular.inputType.integer
*
@@ -412,7 +406,6 @@ angularInputType('number', numericRegexpInputType(NUMBER_REGEXP, 'NUMBER'));
angularInputType('integer', numericRegexpInputType(INTEGER_REGEXP, 'INTEGER'));
/**
- * @workInProgress
* @ngdoc inputType
* @name angular.inputType.checkbox
*
@@ -487,7 +480,6 @@ angularInputType('checkbox', function(inputElement) {
});
/**
- * @workInProgress
* @ngdoc inputType
* @name angular.inputType.radio
*
@@ -591,7 +583,6 @@ var HTML5_INPUTS_TYPES = makeMap(
/**
- * @workInProgress
* @ngdoc widget
* @name angular.widget.input
*
diff --git a/src/widget/select.js b/src/widget/select.js
index 1687721c..8184d8f9 100644
--- a/src/widget/select.js
+++ b/src/widget/select.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc widget
* @name angular.widget.select
*
diff --git a/src/widgets.js b/src/widgets.js
index 189dff29..f6ebbde0 100644
--- a/src/widgets.js
+++ b/src/widgets.js
@@ -1,7 +1,6 @@
'use strict';
/**
- * @workInProgress
* @ngdoc overview
* @name angular.widget
* @description
@@ -29,7 +28,6 @@
*/
/**
- * @workInProgress
* @ngdoc widget
* @name angular.widget.ng:include
*
@@ -136,7 +134,6 @@ angularWidget('ng:include', function(element){
});
/**
- * @workInProgress
* @ngdoc widget
* @name angular.widget.ng:switch
*
@@ -277,7 +274,6 @@ angularWidget('a', function() {
/**
- * @workInProgress
* @ngdoc widget
* @name angular.widget.@ng:repeat
*
@@ -444,7 +440,6 @@ angularWidget('@ng:repeat', function(expression, element){
/**
- * @workInProgress
* @ngdoc widget
* @name angular.widget.@ng:non-bindable
*