Skip to content

Commit 7d3edb0

Browse files
author
Chris Car
committed
changed IdeaSpaceVR for IdeaSpace
1 parent 9dd3d51 commit 7d3edb0

12 files changed

+20
-20
lines changed

LICENSE

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
IdeaSpaceVR - Web VR publishing software
1+
IdeaSpace - a content management system for the virtual reality web
22

3-
All IdeaSpaceVR code is Copyright 2016 by the original authors.
3+
All IdeaSpace code is Copyright 2016 by the original authors.
44

55
This program is free software; you can redistribute it and/or modify
66
it under the terms of the GNU General Public License as published by

app/Http/Controllers/InstallationController.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,6 @@ public function install_submit(Request $request) {
137137
'password' => Hash::make($request->input('password'))
138138
]);
139139

140-
return redirect('login')->with('alert-success', 'IdeaSpaceVR has been successfully installed!');
140+
return redirect('login')->with('alert-success', 'IdeaSpace has been successfully installed!');
141141
}
142142
}

resources/views/admin/dashboard.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@extends('layouts.app')
22

3-
@section('title', 'IdeaSpaceVR')
3+
@section('title', 'IdeaSpace')
44

55
@section('content')
66
<div class="row">

resources/views/admin/space/space.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@extends('layouts.app')
22

3-
@section('title', 'IdeaSpaceVR')
3+
@section('title', 'IdeaSpace')
44

55
@section('content')
66

resources/views/admin/space/space_add_select_theme.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@extends('layouts.app')
22

3-
@section('title', 'IdeaSpaceVR')
3+
@section('title', 'IdeaSpace')
44

55
@section('content')
66

resources/views/admin/spaces.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@extends('layouts.app')
22

3-
@section('title', 'IdeaSpaceVR')
3+
@section('title', 'IdeaSpace')
44

55
@section('content')
66

resources/views/admin/themes_config.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@extends('layouts.app')
22

3-
@section('title', 'IdeaSpaceVR')
3+
@section('title', 'IdeaSpace')
44

55
@section('content')
66

resources/views/install/db_config.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
@extends('layouts.install_app')
22

3-
@section('title', 'IdeaSpaceVR')
3+
@section('title', 'IdeaSpace')
44

55
@section('content')
66

77
<div class="row">
88

99
<div class="col-md-8 col-md-offset-2">
10-
<h1>IdeaSpaceVR</h1>
10+
<h1>IdeaSpace</h1>
1111
</div>
1212
</div>
1313

resources/views/install/user_config.blade.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
@extends('layouts.install_app')
22

3-
@section('title', 'IdeaSpaceVR')
3+
@section('title', 'IdeaSpace')
44

55
@section('content')
66

77
<div class="row">
88

99
<div class="col-md-8 col-md-offset-2">
10-
<h1>IdeaSpaceVR</h1>
10+
<h1>IdeaSpace</h1>
1111
</div>
1212
</div>
1313

@@ -68,7 +68,7 @@
6868
<div class="form-group">
6969
<label for="" class="col-sm-2 col-sm-offset-2 control-label"></label>
7070
<div class="col-sm-4">
71-
<button class="btn btn-primary" type="submit">Install IdeaSpaceVR</button>
71+
<button class="btn btn-primary" type="submit">Install IdeaSpace</button>
7272
</div>
7373
</div>
7474

resources/views/layouts/app.blade.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99

1010
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
1111

12-
<meta name="abstract" content="Web VR publishing software" />
13-
<meta name="description" content="Web VR publishing software" />
12+
<meta name="abstract" content="IdeaSpace is a content management system for the virtual reality web" />
13+
<meta name="description" content="IdeaSpace is a content management system for the virtual reality web" />
1414
<meta name="keywords" content="web vr webvr virtual reality" />
1515
<meta name="robots" content="follow, index" />
1616

17-
<meta property="og:site_name" content="" />
17+
<meta property="og:site_name" content="@yield('title')" />
1818
<meta property="og:image:secure_url" content="" />
1919
<meta property="og:image" content="" />
20-
<meta property="og:description" content="" />
20+
<meta property="og:description" content="IdeaSpace is a content management system for the virtual reality web" />
2121
<meta property="og:title" content="@yield('title')" />
2222
<meta property="og:type" content="website" />
2323
<meta property="og:url" content="" />
@@ -54,7 +54,7 @@
5454
</button>
5555

5656
<!-- Branding Image -->
57-
<a class="navbar-brand" href="{{ url('/') }}"><img alt="IdeaSpaceVR" style="width:20px;display:inline" src="{{ asset('public/assets/layouts/app/images/isvr-logo-v1.png') }}"></a>
57+
<a class="navbar-brand" href="{{ url('/') }}"><img alt="IdeaSpace" style="width:20px;display:inline" src="{{ asset('public/assets/layouts/app/images/isvr-logo-v1.png') }}"></a>
5858
</div>
5959

6060
<div class="collapse navbar-collapse" id="spark-navbar-collapse">

resources/views/layouts/install_app.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<div class="navbar-header">
4848

4949
<!-- Branding Image -->
50-
<a class="navbar-brand" href="{{ url('/') }}"><img alt="IdeaSpaceVR" style="width:20px;display:inline" src="{{ asset('public/assets/layouts/app/images/isvr-logo-v1.png') }}"></a>
50+
<a class="navbar-brand" href="{{ url('/') }}"><img alt="IdeaSpace" style="width:20px;display:inline" src="{{ asset('public/assets/layouts/app/images/isvr-logo-v1.png') }}"></a>
5151
</div>
5252

5353
</div>

resources/views/welcome.blade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@extends('layouts.app')
22

3-
@section('title', 'IdeaSpaceVR')
3+
@section('title', 'IdeaSpace')
44

55
@section('content')
66
<div class="row">

0 commit comments

Comments
 (0)