Revert "Revert "made registry read-only""

This reverts commit f0b3f27c960b7a5ddce6c0219f29c7278356045f.
diff --git a/updates.js b/updates.js
index ab79481..3c76f3b 100644
--- a/updates.js
+++ b/updates.js
@@ -1,8 +1,11 @@
 var updates = exports
 
 updates.package = function (doc, req) {
+return error('The plugin reigstry has switcehd to read-only!, please publish your plugins to npm. Learn more at http://plugins.cordova.io/npm/authors.html.');
+/*
   require("monkeypatch").patch(Object, Date, Array, String)
 
+
 var tempbody = JSON.parse(req.body);
 //only allow npm client 1.3.4 to publish
 if(tempbody['_npmVersion']) {
@@ -20,9 +23,11 @@
 }
   var semver = require("semver")
   var valid = require("valid")
+  */
   function error (reason) {
     return [{_id: "error: forbidden", forbidden:reason}, JSON.stringify({forbidden:reason})]
   }
+/*
 
   function ok (doc, message) {
     delete doc.mtime
@@ -143,5 +148,5 @@
     if (!doc['dist-tags']) doc['dist-tags'] = {}
     if (latest) doc["dist-tags"].latest = latest
     return ok(doc, "created new entry")
-  }
+  }*/
 }