[ARVADOS] updated: 33a6cc0d0b748b4ec5a01db6218b8fa21afb11ed

git at public.curoverse.com git at public.curoverse.com
Fri Sep 5 13:18:52 EDT 2014


Summary of changes:
 sdk/cli/bin/arv                                      |  2 +-
 services/api/.gitignore                              |  1 -
 services/api/app/assets/stylesheets/application.css  |  2 +-
 .../app/controllers/arvados/v1/schema_controller.rb  | 20 ++++++++++----------
 services/api/app/views/layouts/application.html.erb  |  2 +-
 services/api/app/views/static/intro.html.erb         | 10 +++++-----
 services/api/app/views/static/login_failure.html.erb |  2 +-
 7 files changed, 19 insertions(+), 20 deletions(-)

       via  33a6cc0d0b748b4ec5a01db6218b8fa21afb11ed (commit)
      from  f94f97fe63d3d860d373a25d3539d559b53542c5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit 33a6cc0d0b748b4ec5a01db6218b8fa21afb11ed
Author: Ward Vandewege <ward at jhvc.com>
Date:   Fri Sep 5 13:18:28 2014 -0400

    Replace all remaining references to Clinical Future with Curoverse.
    
    no issue #

diff --git a/sdk/cli/bin/arv b/sdk/cli/bin/arv
index bf8a143..9b486d2 100755
--- a/sdk/cli/bin/arv
+++ b/sdk/cli/bin/arv
@@ -2,7 +2,7 @@
 
 # Arvados cli client
 #
-# Ward Vandewege <ward at clinicalfuture.com>
+# Ward Vandewege <ward at curoverse.com>
 
 require 'fileutils'
 
diff --git a/services/api/.gitignore b/services/api/.gitignore
index a1cb5ed..c1d5219 100644
--- a/services/api/.gitignore
+++ b/services/api/.gitignore
@@ -6,7 +6,6 @@
 /tmp
 
 # Sensitive files and local configuration
-/config/api.clinicalfuture.com.*
 /config/database.yml
 /config/initializers/omniauth.rb
 /config/application.yml
diff --git a/services/api/app/assets/stylesheets/application.css b/services/api/app/assets/stylesheets/application.css
index 4804e90..6d2c3ef 100644
--- a/services/api/app/assets/stylesheets/application.css
+++ b/services/api/app/assets/stylesheets/application.css
@@ -58,7 +58,7 @@ div#header span.beta > span {
     border-bottom: 1px solid #fff;
     font-size: 0.8em;
 }
-img.clinicalfuture-logo {
+img.curoverse-logo {
     width: 221px;
     height: 44px;
 }
diff --git a/services/api/app/controllers/arvados/v1/schema_controller.rb b/services/api/app/controllers/arvados/v1/schema_controller.rb
index eccee8a..20400d2 100644
--- a/services/api/app/controllers/arvados/v1/schema_controller.rb
+++ b/services/api/app/controllers/arvados/v1/schema_controller.rb
@@ -58,10 +58,10 @@ class Arvados::V1::SchemaController < ApplicationController
         auth: {
           oauth2: {
             scopes: {
-              "https://api.clinicalfuture.com/auth/arvados" => {
+              "https://api.curoverse.com/auth/arvados" => {
                 description: "View and manage objects"
               },
-              "https://api.clinicalfuture.com/auth/arvados.readonly" => {
+              "https://api.curoverse.com/auth/arvados.readonly" => {
                 description: "View objects"
               }
             }
@@ -171,8 +171,8 @@ class Arvados::V1::SchemaController < ApplicationController
                 "$ref" => k.to_s
               },
               scopes: [
-                       "https://api.clinicalfuture.com/auth/arvados",
-                       "https://api.clinicalfuture.com/auth/arvados.readonly"
+                       "https://api.curoverse.com/auth/arvados",
+                       "https://api.curoverse.com/auth/arvados.readonly"
                       ]
             },
             list: {
@@ -248,8 +248,8 @@ class Arvados::V1::SchemaController < ApplicationController
                 "$ref" => "#{k.to_s}List"
               },
               scopes: [
-                       "https://api.clinicalfuture.com/auth/arvados",
-                       "https://api.clinicalfuture.com/auth/arvados.readonly"
+                       "https://api.curoverse.com/auth/arvados",
+                       "https://api.curoverse.com/auth/arvados.readonly"
                       ]
             },
             create: {
@@ -270,7 +270,7 @@ class Arvados::V1::SchemaController < ApplicationController
                 "$ref" => k.to_s
               },
               scopes: [
-                       "https://api.clinicalfuture.com/auth/arvados"
+                       "https://api.curoverse.com/auth/arvados"
                       ]
             },
             update: {
@@ -298,7 +298,7 @@ class Arvados::V1::SchemaController < ApplicationController
                 "$ref" => k.to_s
               },
               scopes: [
-                       "https://api.clinicalfuture.com/auth/arvados"
+                       "https://api.curoverse.com/auth/arvados"
                       ]
             },
             delete: {
@@ -318,7 +318,7 @@ class Arvados::V1::SchemaController < ApplicationController
                 "$ref" => k.to_s
               },
               scopes: [
-                       "https://api.clinicalfuture.com/auth/arvados"
+                       "https://api.curoverse.com/auth/arvados"
                       ]
             }
           }
@@ -345,7 +345,7 @@ class Arvados::V1::SchemaController < ApplicationController
                   "$ref" => (action == 'index' ? "#{k.to_s}List" : k.to_s)
                 },
                 scopes: [
-                         "https://api.clinicalfuture.com/auth/arvados"
+                         "https://api.curoverse.com/auth/arvados"
                         ]
               }
               route.segment_keys.each do |key|
diff --git a/services/api/app/views/layouts/application.html.erb b/services/api/app/views/layouts/application.html.erb
index 5e64cda..e54fa0c 100644
--- a/services/api/app/views/layouts/application.html.erb
+++ b/services/api/app/views/layouts/application.html.erb
@@ -36,7 +36,7 @@
 
 <% if current_user or session['invite_code'] %>
 <div id="footer">
-  <div style="float:right">Questions → <a href="mailto:arvados at clinicalfuture.com">arvados at clinicalfuture.com</a></div>
+  <div style="float:right">Questions → <a href="mailto:arvados at curoverse.com">arvados at curoverse.com</a></div>
   <div style="clear:both"></div>
 </div>
 <% end %>
diff --git a/services/api/app/views/static/intro.html.erb b/services/api/app/views/static/intro.html.erb
index 66605df..8ab41cb 100644
--- a/services/api/app/views/static/intro.html.erb
+++ b/services/api/app/views/static/intro.html.erb
@@ -4,14 +4,14 @@ $(function(){
 });
 <% end %>
 <div id="intropage">
-  <img class="clinicalfuture-logo" src="<%= asset_path('logo.png') %>" style="display:block; margin:2em auto"/>
+  <img class="curoverse-logo" src="<%= asset_path('logo.png') %>" style="display:block; margin:2em auto"/>
   <div style="width:30em; margin:2em auto 0 auto">
     <h1>Welcome</h1>
-    <h4>Clinical Future ARVADOS</h4>
+    <h4>Curoverse ARVADOS</h4>
 
     <% if !current_user and session['invite_code'] %>
 
-    <p>Clinical Future Arvados lets you manage and process human genomes and exomes.  You can start using the private beta
+    <p>Curoverse Arvados lets you manage and process human genomes and exomes.  You can start using the private beta
     now with your Google account.</p>
     <p style="float:right;margin-top:1em">
       <button class="login" href="/auth/joshid">Log in and get started</button>
@@ -19,11 +19,11 @@ $(function(){
 
     <% else %>
 
-    <p>Clinical Future ARVADOS is transforming how researchers and
+    <p>Curoverse ARVADOS is transforming how researchers and
     clinical geneticists use whole genome sequences. </p>
     <p>If you’re interested in learning more, we’d love to hear
     from you —
-    contact <a href="mailto:arvados at clinicalfuture.com">arvados at clinicalfuture.com</a>.</p>
+    contact <a href="mailto:arvados at curoverse.com">arvados at curoverse.com</a>.</p>
 
     <% if !current_user %>
     <p style="float:right;margin-top:1em">
diff --git a/services/api/app/views/static/login_failure.html.erb b/services/api/app/views/static/login_failure.html.erb
index 958f668..830942c 100644
--- a/services/api/app/views/static/login_failure.html.erb
+++ b/services/api/app/views/static/login_failure.html.erb
@@ -6,7 +6,7 @@ $(function(){
 
 
 <div id="intropage">
-  <img class="clinicalfuture-logo" src="<%= asset_path('logo.png') %>" style="display:block; margin:2em auto"/>
+  <img class="curoverse-logo" src="<%= asset_path('logo.png') %>" style="display:block; margin:2em auto"/>
   <div style="width:30em; margin:2em auto 0 auto">
 
     <h1>Error</h1>

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list