Author: lindner
Date: Wed Jun 17 20:57:26 2009
New Revision: 785795

URL: http://svn.apache.org/viewvc?rev=785795&view=rev
Log:
Add some javascript semicolons

Modified:
    
incubator/shindig/trunk/features/src/main/javascript/features/i18n/numberformattest.js
    
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-0.8/opensocial8to9.js
    
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-base/jsonmessage.js
    
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-base/jsonmessagecollection.js
    
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-data/data.js
    
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-reference/container.js

Modified: 
incubator/shindig/trunk/features/src/main/javascript/features/i18n/numberformattest.js
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/features/src/main/javascript/features/i18n/numberformattest.js?rev=785795&r1=785794&r2=785795&view=diff
==============================================================================
--- 
incubator/shindig/trunk/features/src/main/javascript/features/i18n/numberformattest.js
 (original)
+++ 
incubator/shindig/trunk/features/src/main/javascript/features/i18n/numberformattest.js
 Wed Jun 17 20:57:26 2009
@@ -50,7 +50,7 @@
 NumberFormatTest.prototype.setUp = function() {
     gadgets.i18n.numFormatter_
             = new gadgets.i18n.NumberFormat(NumberFormatConstants_en);
-}
+};
 
 NumberFormatTest.prototype.testStandardFormat = function() {
     var str;

Modified: 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-0.8/opensocial8to9.js
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/features/src/main/javascript/features/opensocial-0.8/opensocial8to9.js?rev=785795&r1=785794&r2=785795&view=diff
==============================================================================
--- 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-0.8/opensocial8to9.js
 (original)
+++ 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-0.8/opensocial8to9.js
 Wed Jun 17 20:57:26 2009
@@ -28,7 +28,7 @@
     throw Error("Cannot update app data for person "  + id);
   }
   return this.newUpdatePersonAppDataRequest_09(key, value);
-}
+};
 
 opensocial.DataRequest.prototype.newRemovePersonAppDataRequest_09 =
     opensocial.DataRequest.prototype.newRemovePersonAppDataRequest;
@@ -42,5 +42,5 @@
   }
 
   return this.newRemovePersonAppDataRequest_09(keys);
-}
+};
     

Modified: 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-base/jsonmessage.js
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/features/src/main/javascript/features/opensocial-base/jsonmessage.js?rev=785795&r1=785794&r2=785795&view=diff
==============================================================================
--- 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-base/jsonmessage.js
 (original)
+++ 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-base/jsonmessage.js
 Wed Jun 17 20:57:26 2009
@@ -31,7 +31,7 @@
 
 JsonMessage.prototype.toJsonObject = function() {
   return JsonMessage.copyFields(this.fields_);
-}
+};
 
 // TODO: Pull into common class as well
 JsonMessage.copyFields = function(oldObject) {
@@ -40,6 +40,6 @@
     newObject[field] = oldObject[field];
   }
   return newObject;
-}
+};
 
 

Modified: 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-base/jsonmessagecollection.js
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/features/src/main/javascript/features/opensocial-base/jsonmessagecollection.js?rev=785795&r1=785794&r2=785795&view=diff
==============================================================================
--- 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-base/jsonmessagecollection.js
 (original)
+++ 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-base/jsonmessagecollection.js
 Wed Jun 17 20:57:26 2009
@@ -31,7 +31,7 @@
 
 JsonMessageCollection.prototype.toJsonObject = function() {
   return JsonMessageCollection.copyFields(this.fields_);
-}
+};
 
 // TODO: Pull this method into a common class, it is from jsonperson.js
 //JsonMessage.constructArrayObject = function(map, fieldName, className) {
@@ -50,6 +50,6 @@
     newObject[field] = oldObject[field];
   }
   return newObject;
-}
+};
 
 

Modified: 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-data/data.js
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/features/src/main/javascript/features/opensocial-data/data.js?rev=785795&r1=785794&r2=785795&view=diff
==============================================================================
--- 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-data/data.js
 (original)
+++ 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-data/data.js
 Wed Jun 17 20:57:26 2009
@@ -169,7 +169,7 @@
   var self = this;
   return function() {
     self.sendRequest();
-  }
+  };
 };
 
 
@@ -329,7 +329,7 @@
   var callbacks = opensocial.data.currentAPIRequestCallbacks_;
   return function(data) {
     opensocial.data.onAPIResponse(data, keys, callbacks);
-  }
+  };
 };
 
 

Modified: 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-reference/container.js
URL: 
http://svn.apache.org/viewvc/incubator/shindig/trunk/features/src/main/javascript/features/opensocial-reference/container.js?rev=785795&r1=785794&r2=785795&view=diff
==============================================================================
--- 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-reference/container.js
 (original)
+++ 
incubator/shindig/trunk/features/src/main/javascript/features/opensocial-reference/container.js
 Wed Jun 17 20:57:26 2009
@@ -571,24 +571,24 @@
       message = html_sanitize(message);
       return this.mm_.createDismissibleMessage(message,
                                               tameCallback($vs, opt_callback));
-    }
+    };
     tamedMiniMessage.prototype.createStaticMessage = function(message,
                                                              opt_callback) {
       message = html_sanitize(message);
       return this.mm_.createStaticMessage(message,
                                          tameCallback($vs, opt_callback));
-    }
+    };
     tamedMiniMessage.prototype.createTimerMessage = function(message, seconds,
                                                             opt_callback) {
       message = html_sanitize(message);
       return this.mm_.createTimerMessage(message, seconds,
                                         tameCallback($vs, opt_callback));
-    }
+    };
     // FIXME: message should be a DOM element within our tree, other
     // than the root (dismissMessage deletes it).
     tamedMiniMessage.prototype.dismissMessage = function(message) {
       return this.mm_.dismissMessage(message);
-    }
+    };
     return tamedMiniMessage;
   },
 
@@ -617,13 +617,13 @@
        })
       };
       return dr;
-    }
+    };
   },
 
   TabSet: function($v, orig) {
     var tamedTabSet = function(opt_moduleId, opt_defaultTab, opt_container) {
       this.ts_ = new orig(opt_moduleId, opt_defaultTab, opt_container);
-    }
+    };
 
     tamedTabSet.prototype.addTab = function(tabName, opt_params) {
       // TODO(benl): tame the rest of opt_params
@@ -632,15 +632,15 @@
          undefined : ___.guard(blah) && opt_params.contentContainer.node___;
       }
       this.ts_.addTab(html_sanitize(tabName), opt_params);
-    }
+    };
 
     tamedTabSet.prototype.alignTabs = function(align, opt_offset) {
       this.ts_.alignTabs(String(align), Number(opt_offset));
-    }
+    };
 
     tamedTabSet.prototype.displayTabs = function(display) {
       this.ts_.displayTabs(Boolean(display));
-    }
+    };
 
     return tamedTabSet;
   },
@@ -662,7 +662,7 @@
        ___.grantGeneric(view, 'getName');
        ___.grantGeneric(view, 'isOnlyVisibleGadget');
        return view;
-      }
+      };
     }
   }
 };


Reply via email to