diff --git a/lib/OpenLayers/Protocol.js b/lib/OpenLayers/Protocol.js index a2d30b4c4c..f4fd833360 100755 --- a/lib/OpenLayers/Protocol.js +++ b/lib/OpenLayers/Protocol.js @@ -53,7 +53,7 @@ OpenLayers.Protocol = OpenLayers.Class({ }, /** - * Method: read + * APIMethod: read * Construct a request for reading new features. * * Parameters: @@ -69,7 +69,7 @@ OpenLayers.Protocol = OpenLayers.Class({ /** - * Method: create + * APIMethod: create * Construct a request for writing newly created features. * * Parameters: @@ -86,7 +86,7 @@ OpenLayers.Protocol = OpenLayers.Class({ }, /** - * Method: update + * APIMethod: update * Construct a request updating modified features. * * Parameters: @@ -103,7 +103,7 @@ OpenLayers.Protocol = OpenLayers.Class({ }, /** - * Method: delete + * APIMethod: delete * Construct a request deleting a removed feature. * * Parameters: @@ -119,7 +119,7 @@ OpenLayers.Protocol = OpenLayers.Class({ }, /** - * Method: commit + * APIMethod: commit * Go over the features and for each take action * based on the feature state. Possible actions are create, * update and delete. diff --git a/lib/OpenLayers/Protocol/HTTP.js b/lib/OpenLayers/Protocol/HTTP.js index 45b4cb2ca2..e4cd30c28a 100644 --- a/lib/OpenLayers/Protocol/HTTP.js +++ b/lib/OpenLayers/Protocol/HTTP.js @@ -112,7 +112,7 @@ OpenLayers.Protocol.HTTP = OpenLayers.Class(OpenLayers.Protocol, { }, /** - * Method: read + * APIMethod: read * Construct a request for reading new features. * * Parameters: @@ -185,7 +185,7 @@ OpenLayers.Protocol.HTTP = OpenLayers.Class(OpenLayers.Protocol, { }, /** - * Method: create + * APIMethod: create * Construct a request for writing newly created features. * * Parameters: @@ -234,7 +234,7 @@ OpenLayers.Protocol.HTTP = OpenLayers.Class(OpenLayers.Protocol, { }, /** - * Method: update + * APIMethod: update * Construct a request updating modified feature. * * Parameters: @@ -283,7 +283,7 @@ OpenLayers.Protocol.HTTP = OpenLayers.Class(OpenLayers.Protocol, { }, /** - * Method: delete + * APIMethod: delete * Construct a request deleting a removed feature. * * Parameters: @@ -379,7 +379,7 @@ OpenLayers.Protocol.HTTP = OpenLayers.Class(OpenLayers.Protocol, { }, /** - * Method: commit + * APIMethod: commit * Iterate over each feature and take action based on the feature state. * Possible actions are create, update and delete. * @@ -463,7 +463,7 @@ OpenLayers.Protocol.HTTP = OpenLayers.Class(OpenLayers.Protocol, { }, /** - * Method: abort + * APIMethod: abort * Abort an ongoing request, the response object passed to * this method must come from this HTTP protocol (as a result * of a create, read, update, delete or commit operation). diff --git a/lib/OpenLayers/Protocol/SQL/Gears.js b/lib/OpenLayers/Protocol/SQL/Gears.js index 0c76b3d4ba..efd4ef0b61 100644 --- a/lib/OpenLayers/Protocol/SQL/Gears.js +++ b/lib/OpenLayers/Protocol/SQL/Gears.js @@ -134,7 +134,7 @@ OpenLayers.Protocol.SQL.Gears = OpenLayers.Class(OpenLayers.Protocol.SQL, { }, /** - * Method: read + * APIMethod: read * Read all features from the database and return a * instance. If the options parameter * contains a callback attribute, the function is called with the response @@ -232,7 +232,7 @@ OpenLayers.Protocol.SQL.Gears = OpenLayers.Class(OpenLayers.Protocol.SQL, { }, /** - * Method: create + * APIMethod: create * Create new features into the database. * * Parameters: @@ -259,7 +259,7 @@ OpenLayers.Protocol.SQL.Gears = OpenLayers.Class(OpenLayers.Protocol.SQL, { }, /** - * Method: update + * APIMethod: update * Construct a request updating modified feature. * * Parameters: @@ -381,7 +381,7 @@ OpenLayers.Protocol.SQL.Gears = OpenLayers.Class(OpenLayers.Protocol.SQL, { }, /** - * Method: delete + * APIMethod: delete * Delete features from the database. * * Parameters: @@ -455,7 +455,7 @@ OpenLayers.Protocol.SQL.Gears = OpenLayers.Class(OpenLayers.Protocol.SQL, { }, /** - * Method: commit + * APIMethod: commit * Go over the features and for each take action * based on the feature state. Possible actions are create, * update and delete. diff --git a/lib/OpenLayers/Protocol/WFS.js b/lib/OpenLayers/Protocol/WFS.js index 87956a6c8e..b12173141b 100644 --- a/lib/OpenLayers/Protocol/WFS.js +++ b/lib/OpenLayers/Protocol/WFS.js @@ -1,3 +1,7 @@ +/* Copyright (c) 2006-2008 MetaCarta, Inc., published under the Clear BSD + * license. See http://svn.openlayers.org/trunk/openlayers/license.txt for the + * full text of the license. */ + /** * @requires OpenLayers/Protocol.js */