Page Menu
Home
GRNET
Search
Configure Global Search
Log In
Files
F1614808
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Mar 21, 6:37 AM
Size
2 KB
Mime Type
text/x-diff
Expires
Mon, Mar 23, 6:37 AM (9 h, 35 m)
Engine
blob
Format
Raw Data
Handle
354202
Attached To
rARCHIVING archiving
View Options
diff --git a/app/views/admin/index.html.erb b/app/views/admin/index.html.erb
index be1cc05..b6ad4f1 100644
--- a/app/views/admin/index.html.erb
+++ b/app/views/admin/index.html.erb
@@ -1,3 +1,3 @@
-<h1>BaaS</h1>
+<h1>Archiving</h1>
<%= render partial: 'clients/client_graphs', locals: { path: admin_path } %>
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index cd4be5e..0f367aa 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -1,29 +1,29 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
- <title>Baas</title>
+ <title>Archiving</title>
<%= stylesheet_link_tag 'application', media: 'all' %>
<!--[if lt IE 9]>
<%= javascript_include_tag 'html5shiv.min' %>
<![endif]-->
<%= javascript_include_tag 'application' %>
<%= csrf_meta_tags %>
</head>
<body>
<%= render "shared/nav" %>
<div class="container-fluid">
<div class="row">
<div class="col-xs-12">
<%= flash_messages %>
<%= yield %>
</div> <!-- /layout-col -->
</div> <!-- /layout-row -->
</div> <!-- /container -->
</body>
</html>
diff --git a/lib/tasks/db.rake b/lib/tasks/db.rake
index 76baa0a..4ba6cef 100644
--- a/lib/tasks/db.rake
+++ b/lib/tasks/db.rake
@@ -1,7 +1,7 @@
namespace :db do
desc 'Create schema migrations on local database'
task :generate_migrations => :environment do
- ActiveRecord::Base.establish_connection(Baas::settings[:local_db]).
+ ActiveRecord::Base.establish_connection(Archiving::settings[:local_db]).
connection.execute("CREATE TABLE `schema_migrations` (`version` varchar(255) NOT NULL, UNIQUE KEY `unique_schema_migrations` (`version`));")
end
end
diff --git a/lib/tasks/user.rake b/lib/tasks/user.rake
index 8c10052..61c8826 100644
--- a/lib/tasks/user.rake
+++ b/lib/tasks/user.rake
@@ -1,11 +1,11 @@
namespace :user do
desc 'Create a temp user for development reasons'
task :generate_user => :environment do |t|
u = User.new
- u.username = 'baas_dev'
- u.email = 'baas_dev@example.com'
+ u.username = 'archiving_dev'
+ u.email = 'archiving_dev@example.com'
u.user_type = :admin
u.save
end
end
Event Timeline
Log In to Comment