You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by ro...@apache.org on 2019/10/22 09:05:47 UTC

[cloudstack-primate] branch master updated (df58a20 -> 7047634)

This is an automated email from the ASF dual-hosted git repository.

rohit pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-primate.git.


    from df58a20  README: add voting/result history
     new ae2c190  CONTRIBUTING: fix new repo url
     new 7047634  api: fix sorting, checking of outstanding APIs to support

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CONTRIBUTING.md          | 4 ++--
 docs/api/apis.primate.sh | 6 +++++-
 2 files changed, 7 insertions(+), 3 deletions(-)


[cloudstack-primate] 02/02: api: fix sorting, checking of outstanding APIs to support

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-primate.git

commit 70476340331ae88b2483edb3a20ba45ebcfdd5b8
Author: Rohit Yadav <ro...@shapeblue.com>
AuthorDate: Tue Oct 22 14:32:26 2019 +0530

    api: fix sorting, checking of outstanding APIs to support
    
    Signed-off-by: Rohit Yadav <ro...@shapeblue.com>
---
 docs/api/apis.primate.sh | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/docs/api/apis.primate.sh b/docs/api/apis.primate.sh
index 92bf6a6..ed43739 100644
--- a/docs/api/apis.primate.sh
+++ b/docs/api/apis.primate.sh
@@ -5,6 +5,10 @@ grep api -R config | sed "s/.*api: '//g" | sed "s/'.*//g" | grep -v \.js | sort
 grep store.getters.apis -R . | sed "s/' in.*//g" | sed "s/').*//g" | grep "'" | sed "s/.*'//g" | grep -v ']' >> apis.txt
 grep 'permission:\ \[' -R config | sed "s/.*permission: \[ '//g" | grep -v .js | sed "s/', '/\\n/g" | sed "s/'.*//g" >> apis.txt
 cat apis.txt | sort | uniq > apis.uniq
+rm -f apis.txt
 mv apis.uniq ../docs/api/apis.txt
 cd ../docs/api
-diff -Naur apis.old apis.txt | grep ^- | grep -v "^--" | sed 's/^-//g' | grep -v -i -e cisco -e nicira -e baremetal -e srx -e f5 -e brocade -e palo -e autoscale -e counter -e condition -e ucs -e netscaler -e bigswitch -e ovs -e globalloadbalancer -e opendaylight -e region -e quota >> apis.remaining
+diff -Naur apis.old apis.txt | grep ^- | grep -v "^--" | sed 's/^-//g' | grep -v -i -e cisco -e nicira -e baremetal -e srx -e f5 -e brocade -e palo -e autoscale -e counter -e condition -e ucs -e netscaler -e bigswitch -e ovs -e globalloadbalancer -e opendaylight -e region -e quota | sort | uniq > apis.remaining
+
+echo "$(cat apis.txt | wc -l) APIs are supported by Primate"
+echo "$(cat apis.remaining | wc -l) APIs are remaining"


[cloudstack-primate] 01/02: CONTRIBUTING: fix new repo url

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack-primate.git

commit ae2c190d8827cd4516d5a20bdf17e0e53a7a6643
Author: Rohit Yadav <ro...@shapeblue.com>
AuthorDate: Tue Oct 22 14:12:39 2019 +0530

    CONTRIBUTING: fix new repo url
    
    Signed-off-by: Rohit Yadav <ro...@shapeblue.com>
---
 CONTRIBUTING.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 32bf658..3efe031 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -27,7 +27,7 @@ No back porting / cherry-picking features to existing branches!
 
 ## Forking
 
-In your browser, navigate to: [https://github.com/shapeblue/primate](https://github.com/shapeblue/primate)
+In your browser, navigate to: [https://github.com/apache/cloudstack-primate](https://github.com/apache/cloudstack-primate)
 
 Fork the repository by clicking on the 'Fork' button on the top right hand side.
 The fork will happen and you will be taken to your own fork of the repository.
@@ -38,7 +38,7 @@ On your workstation, follow these steps to setup a local repository for working
 ``` bash
 $ git clone https://github.com/YOUR_ACCOUNT/primate.git
 $ cd primate
-$ git remote add upstream https://github.com/shapeblue/primate.git
+$ git remote add upstream https://github.com/apache/cloudstack-primate.git
 $ git checkout master
 $ git fetch upstream
 $ git rebase upstream/master