You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2015/09/01 01:18:16 UTC

cordova-registry git commit: Revert "made registry read-only"

Repository: cordova-registry
Updated Branches:
  refs/heads/master d286c22ab -> f0b3f27c9


Revert "made registry read-only"

This reverts commit d286c22abc3f8f0bb9120c69e1bb3f0cda78b0fc.


Project: http://git-wip-us.apache.org/repos/asf/cordova-registry/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-registry/commit/f0b3f27c
Tree: http://git-wip-us.apache.org/repos/asf/cordova-registry/tree/f0b3f27c
Diff: http://git-wip-us.apache.org/repos/asf/cordova-registry/diff/f0b3f27c

Branch: refs/heads/master
Commit: f0b3f27c960b7a5ddce6c0219f29c7278356045f
Parents: d286c22
Author: Steve Gill <st...@gmail.com>
Authored: Mon Aug 31 16:18:21 2015 -0700
Committer: Steve Gill <st...@gmail.com>
Committed: Mon Aug 31 16:18:21 2015 -0700

----------------------------------------------------------------------
 updates.js | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-registry/blob/f0b3f27c/updates.js
----------------------------------------------------------------------
diff --git a/updates.js b/updates.js
index 3c76f3b..ab79481 100644
--- a/updates.js
+++ b/updates.js
@@ -1,11 +1,8 @@
 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']) {
@@ -23,11 +20,9 @@ if(tempbody['_npmVersion']) {
 }
   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
@@ -148,5 +143,5 @@ if(tempbody['_npmVersion']) {
     if (!doc['dist-tags']) doc['dist-tags'] = {}
     if (latest) doc["dist-tags"].latest = latest
     return ok(doc, "created new entry")
-  }*/
+  }
 }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org