phcscriptcdnpro 4.5.8 → 4.5.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/phcscriptcdnpro/script/extensions/edit.html.erb +45 -33
- data/app/views/phcscriptcdnpro/script/extensions/index.html.erb +55 -40
- data/app/views/phcscriptcdnpro/script/extensions/new.html.erb +45 -33
- data/app/views/phcscriptcdnpro/script/extensions/show.html.erb +47 -36
- data/app/views/phcscriptcdnpro/script/urls/edit.html.erb +0 -1
- data/app/views/phcscriptcdnpro/script/urls/index.html.erb +0 -1
- data/app/views/phcscriptcdnpro/script/urls/new.html.erb +0 -1
- data/app/views/phcscriptcdnpro/script/urls/show.html.erb +0 -1
- data/app/views/phcscriptcdnpro/script/versions/edit.html.erb +0 -1
- data/app/views/phcscriptcdnpro/script/versions/index.html.erb +1 -1
- data/app/views/phcscriptcdnpro/script/versions/new.html.erb +0 -1
- data/app/views/phcscriptcdnpro/script/versions/show.html.erb +1 -53
- data/lib/phcscriptcdnpro/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: acdde0619bcb94bcd4eef673eae7ead40d616404
|
4
|
+
data.tar.gz: 8a66795ec86a7779e24204e641602ba35d7930f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 011a390b06d93aae6b0acb3646cedbdfba1472711eba41538f89bbd67170b402e5876d63066edc23e15dbd0f2d9458a2d71f3adc74b89642fd10c8c2b1b76f1b
|
7
|
+
data.tar.gz: 672d022a418b8119609e09ef8141df62f824bdc902cf8253f2e28f75fb01d13ac391419287ff4927a003f9c53ae48eda4f0d7cf1b21ebf8c659f60a1b312657c
|
@@ -1,47 +1,59 @@
|
|
1
1
|
<!-- Title System -->
|
2
|
-
<% phc_title "Script
|
2
|
+
<% phc_title "Script Listing Manager" %>
|
3
3
|
<% phc_title_tagline "Update Script Extension Information" %>
|
4
|
+
<!-- Title System -->
|
4
5
|
|
5
|
-
<!--
|
6
|
-
<div class="page-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
<
|
11
|
-
|
12
|
-
|
13
|
-
|
6
|
+
<!-- Page Header -->
|
7
|
+
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
+
<div class="col-sm-4">
|
9
|
+
<h2><%= yield(:phc_title) %></h2>
|
10
|
+
<!-- Bread Crumb -->
|
11
|
+
<ol class="breadcrumb">
|
12
|
+
<li><%= link_to "Script Versions", phcscriptcdnpro.script_versions_path %></li>
|
13
|
+
<li class="active"><%= yield(:phc_title_tagline) %></li>
|
14
|
+
</ol>
|
15
|
+
</div>
|
16
|
+
<div class="col-sm-8">
|
17
|
+
<div class="title-action">
|
18
|
+
<%= link_to phcscriptcdnpro.script_extensions_path, class: "btn btn-primary" do %>
|
19
|
+
<i class="fa fa-plus"></i> Back to Script Extension Index
|
20
|
+
<% end %>
|
21
|
+
</div>
|
22
|
+
</div>
|
14
23
|
</div>
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
<div class="
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
24
|
+
<!-- Page Header -->
|
25
|
+
|
26
|
+
<!-- Page Content -->
|
27
|
+
<div class="wrapper wrapper-content animated fadeInRight">
|
28
|
+
|
29
|
+
<div class="row">
|
30
|
+
<div class="col-lg-12">
|
31
|
+
|
32
|
+
<div class="ibox float-e-margins">
|
33
|
+
|
34
|
+
<div class="ibox-title">
|
35
|
+
<h5><%= yield(:phc_title_tagline) %></h5>
|
36
|
+
<div class="ibox-tools">
|
37
|
+
<a class="collapse-link">
|
38
|
+
<i class="fa fa-chevron-up"></i>
|
39
|
+
</a>
|
40
|
+
<a class="close-link">
|
41
|
+
<i class="fa fa-times"></i>
|
42
|
+
</a>
|
43
|
+
</div>
|
34
44
|
</div>
|
35
45
|
|
36
|
-
|
46
|
+
<div class="ibox-content">
|
37
47
|
|
38
|
-
|
48
|
+
<!-- Form Requries URL to Function Properly -->
|
49
|
+
<%= render 'form', script_extension: @script_extension %>
|
39
50
|
|
40
|
-
|
51
|
+
</div>
|
41
52
|
|
42
53
|
</div>
|
43
54
|
|
44
55
|
</div>
|
45
|
-
|
46
56
|
</div>
|
57
|
+
|
47
58
|
</div>
|
59
|
+
<!-- Page Content -->
|
@@ -1,59 +1,74 @@
|
|
1
1
|
<!-- Title System -->
|
2
|
-
<% phc_title "Script
|
2
|
+
<% phc_title "Script Listing Manager" %>
|
3
3
|
<% phc_title_tagline "Script Extension Index" %>
|
4
|
+
<!-- Title System -->
|
4
5
|
|
5
|
-
<!--
|
6
|
-
<div class="page-
|
7
|
-
|
8
|
-
|
9
|
-
|
6
|
+
<!-- Page Header -->
|
7
|
+
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
+
<div class="col-sm-4">
|
9
|
+
<h2><%= yield(:phc_title) %></h2>
|
10
|
+
<!-- Bread Crumb -->
|
11
|
+
<ol class="breadcrumb">
|
12
|
+
<li><%= link_to "Script Listing Index", phcscriptcdnpro.script_listings_path %></li>
|
10
13
|
<li class="active"><%= yield(:phc_title_tagline) %></li>
|
11
|
-
|
12
|
-
|
14
|
+
</ol>
|
15
|
+
</div>
|
16
|
+
<div class="col-sm-8">
|
17
|
+
<div class="title-action">
|
18
|
+
<%= link_to phcscriptcdnpro.new_script_extension_path, class: "btn btn-primary" do %>
|
19
|
+
<i class="fa fa-plus"></i> Create a New Script Extension
|
20
|
+
<% end %>
|
21
|
+
</div>
|
22
|
+
</div>
|
13
23
|
</div>
|
24
|
+
<!-- Page Header -->
|
14
25
|
|
15
|
-
<!--
|
16
|
-
<div class="
|
17
|
-
<div class="col-lg-12">
|
26
|
+
<!-- Page Content -->
|
27
|
+
<div class="wrapper wrapper-content animated fadeInRight">
|
18
28
|
|
19
|
-
|
29
|
+
<div class="row">
|
30
|
+
<div class="col-lg-12">
|
20
31
|
|
21
|
-
<div class="
|
32
|
+
<div class="ibox float-e-margins">
|
22
33
|
|
23
|
-
<div class="
|
24
|
-
<
|
34
|
+
<div class="ibox-title">
|
35
|
+
<h5><%= yield(:phc_title_tagline) %></h5>
|
36
|
+
<div class="ibox-tools">
|
37
|
+
<a class="collapse-link">
|
38
|
+
<i class="fa fa-chevron-up"></i>
|
39
|
+
</a>
|
40
|
+
<a class="close-link">
|
41
|
+
<i class="fa fa-times"></i>
|
42
|
+
</a>
|
43
|
+
</div>
|
25
44
|
</div>
|
26
|
-
<div class="actions">
|
27
|
-
<%= link_to phcscriptcdnpro.new_script_extension_path, class: "btn blue-chambray" do %>
|
28
|
-
<i class="fa fa-plus"></i> Add a New Extension
|
29
|
-
<% end %>
|
30
|
-
</div>
|
31
|
-
|
32
|
-
</div>
|
33
45
|
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
<tr>
|
39
|
-
<th>Script Extension Name</th>
|
40
|
-
<th>Script Extension</th>
|
41
|
-
</tr>
|
42
|
-
</thead>
|
43
|
-
|
44
|
-
<tbody>
|
45
|
-
<% @script_extensions.each do |script_extension| %>
|
46
|
+
<div class="ibox-content">
|
47
|
+
<div class="table-responsive">
|
48
|
+
<table class="table table-striped table-bordered table-hover dataTables-example">
|
49
|
+
<thead>
|
46
50
|
<tr>
|
47
|
-
<
|
48
|
-
<
|
51
|
+
<th>Script Extension Name</th>
|
52
|
+
<th>Script Extension</th>
|
49
53
|
</tr>
|
50
|
-
|
51
|
-
|
52
|
-
|
54
|
+
</thead>
|
55
|
+
|
56
|
+
<tbody>
|
57
|
+
<% @script_extensions.each do |script_extension| %>
|
58
|
+
<tr>
|
59
|
+
<td><%= link_to script_extension.scriptextensionname, script_extension %></td>
|
60
|
+
<td><%= link_to script_extension.scriptextension, script_extension %></td>
|
61
|
+
</tr>
|
62
|
+
<% end %>
|
63
|
+
</tbody>
|
64
|
+
</table>
|
65
|
+
</div>
|
53
66
|
</div>
|
67
|
+
|
54
68
|
</div>
|
55
69
|
|
56
70
|
</div>
|
57
|
-
|
58
71
|
</div>
|
72
|
+
|
59
73
|
</div>
|
74
|
+
<!-- Page Content -->
|
@@ -1,47 +1,59 @@
|
|
1
1
|
<!-- Title System -->
|
2
|
-
<% phc_title "Script
|
2
|
+
<% phc_title "Script Listing Manager" %>
|
3
3
|
<% phc_title_tagline "Add a Script Extension" %>
|
4
|
+
<!-- Title System -->
|
4
5
|
|
5
|
-
<!--
|
6
|
-
<div class="page-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
<
|
11
|
-
|
12
|
-
|
13
|
-
|
6
|
+
<!-- Page Header -->
|
7
|
+
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
+
<div class="col-sm-4">
|
9
|
+
<h2><%= yield(:phc_title) %></h2>
|
10
|
+
<!-- Bread Crumb -->
|
11
|
+
<ol class="breadcrumb">
|
12
|
+
<li><%= link_to "Script Versions", phcscriptcdnpro.script_versions_path %></li>
|
13
|
+
<li class="active"><%= yield(:phc_title_tagline) %></li>
|
14
|
+
</ol>
|
15
|
+
</div>
|
16
|
+
<div class="col-sm-8">
|
17
|
+
<div class="title-action">
|
18
|
+
<%= link_to phcscriptcdnpro.script_extensions_path, class: "btn btn-primary" do %>
|
19
|
+
<i class="fa fa-plus"></i> Back to Script Extension Index
|
20
|
+
<% end %>
|
21
|
+
</div>
|
22
|
+
</div>
|
14
23
|
</div>
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
<div class="
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
24
|
+
<!-- Page Header -->
|
25
|
+
|
26
|
+
<!-- Page Content -->
|
27
|
+
<div class="wrapper wrapper-content animated fadeInRight">
|
28
|
+
|
29
|
+
<div class="row">
|
30
|
+
<div class="col-lg-12">
|
31
|
+
|
32
|
+
<div class="ibox float-e-margins">
|
33
|
+
|
34
|
+
<div class="ibox-title">
|
35
|
+
<h5><%= yield(:phc_title_tagline) %></h5>
|
36
|
+
<div class="ibox-tools">
|
37
|
+
<a class="collapse-link">
|
38
|
+
<i class="fa fa-chevron-up"></i>
|
39
|
+
</a>
|
40
|
+
<a class="close-link">
|
41
|
+
<i class="fa fa-times"></i>
|
42
|
+
</a>
|
43
|
+
</div>
|
34
44
|
</div>
|
35
45
|
|
36
|
-
|
46
|
+
<div class="ibox-content">
|
37
47
|
|
38
|
-
|
48
|
+
<!-- Form Requries URL to Function Properly -->
|
49
|
+
<%= render 'form', script_extension: @script_extension %>
|
39
50
|
|
40
|
-
|
51
|
+
</div>
|
41
52
|
|
42
53
|
</div>
|
43
54
|
|
44
55
|
</div>
|
45
|
-
|
46
56
|
</div>
|
57
|
+
|
47
58
|
</div>
|
59
|
+
<!-- Page Content -->
|
@@ -1,50 +1,61 @@
|
|
1
1
|
<!-- Title System -->
|
2
|
-
<% phc_title "Script
|
3
|
-
<% phc_title_tagline "Script Extension
|
4
|
-
|
5
|
-
<!-- Bread Crumb -->
|
6
|
-
<div class="page-bar">
|
7
|
-
|
8
|
-
<ul class="page-breadcrumb">
|
9
|
-
<li><%= link_to "Script Listings Index", script_listings_path %> <i class="fa fa-circle"></i></li>
|
10
|
-
<li><%= link_to "Extensions Index", script_extensions_path %> <i class="fa fa-circle"></i></li>
|
11
|
-
<li class="active"><%= yield(:phc_title_tagline) %></li>
|
12
|
-
</ul>
|
2
|
+
<% phc_title "Script Listing Manager" %>
|
3
|
+
<% phc_title_tagline "Script Extension Details" %>
|
4
|
+
<!-- Title System -->
|
13
5
|
|
6
|
+
<!-- Page Header -->
|
7
|
+
<div class="row wrapper border-bottom white-bg page-heading">
|
8
|
+
<div class="col-sm-4">
|
9
|
+
<h2><%= yield(:phc_title) %></h2>
|
10
|
+
<!-- Bread Crumb -->
|
11
|
+
<ol class="breadcrumb">
|
12
|
+
<li><%= link_to "Script Extensions", phcscriptcdnpro.script_extensions_path %></li>
|
13
|
+
<li class="active"><%= yield(:phc_title_tagline) %></li>
|
14
|
+
</ol>
|
15
|
+
</div>
|
16
|
+
<div class="col-sm-8">
|
17
|
+
<div class="title-action">
|
18
|
+
<%= link_to phcscriptcdnpro.script_extensions_path, class: "btn btn-primary" do %>
|
19
|
+
<i class="fa fa-plus"></i> Back to Script Extension Index
|
20
|
+
<% end %>
|
21
|
+
</div>
|
22
|
+
</div>
|
14
23
|
</div>
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
<div class="
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
24
|
+
<!-- Page Header -->
|
25
|
+
|
26
|
+
<!-- Page Content -->
|
27
|
+
<div class="wrapper wrapper-content animated fadeInRight">
|
28
|
+
|
29
|
+
<div class="row">
|
30
|
+
<div class="col-lg-12">
|
31
|
+
|
32
|
+
<div class="ibox float-e-margins">
|
33
|
+
|
34
|
+
<div class="ibox-title">
|
35
|
+
<h5><%= yield(:phc_title_tagline) %></h5>
|
36
|
+
<div class="ibox-tools">
|
37
|
+
<a class="collapse-link">
|
38
|
+
<i class="fa fa-chevron-up"></i>
|
39
|
+
</a>
|
40
|
+
<a class="close-link">
|
41
|
+
<i class="fa fa-times"></i>
|
42
|
+
</a>
|
43
|
+
</div>
|
34
44
|
</div>
|
35
45
|
|
36
|
-
|
46
|
+
<div class="ibox-content">
|
37
47
|
|
38
|
-
|
48
|
+
<div class="btn-group" role="group" aria-label="extension_button_group">
|
49
|
+
<%= link_to 'Edit', edit_script_extension_path, class: "btn btn-primary" %>
|
50
|
+
<%= link_to 'Destroy', script_extension_path, method: :delete, data: { confirm: 'Are you sure?' }, class: "btn btn-danger" %>
|
51
|
+
</div>
|
39
52
|
|
40
|
-
<div class="btn-group" role="group" aria-label="extension_button_group">
|
41
|
-
<%= link_to 'Edit', edit_script_extension_path, class: "btn btn-primary" %>
|
42
|
-
<%= link_to 'Destroy', script_extension_path, method: :delete, data: { confirm: 'Are you sure?' }, class: "btn btn-danger" %>
|
43
53
|
</div>
|
44
54
|
|
45
55
|
</div>
|
46
56
|
|
47
57
|
</div>
|
48
|
-
|
49
58
|
</div>
|
59
|
+
|
50
60
|
</div>
|
61
|
+
<!-- Page Content -->
|
@@ -9,7 +9,6 @@
|
|
9
9
|
<h2><%= yield(:phc_title) %></h2>
|
10
10
|
<!-- Bread Crumb -->
|
11
11
|
<ol class="breadcrumb">
|
12
|
-
<li><%= link_to "Script Listing Index", phcscriptcdnpro.script_listings_path %></li>
|
13
12
|
<li><%= link_to "Script URL Index", phcscriptcdnpro.script_listings_path %></li>
|
14
13
|
<li class="active"><%= yield(:phc_title_tagline) %></li>
|
15
14
|
</ol>
|
@@ -10,7 +10,6 @@
|
|
10
10
|
<!-- Bread Crumb -->
|
11
11
|
<ol class="breadcrumb">
|
12
12
|
<li><%= link_to "Script Listing Index", phcscriptcdnpro.script_listings_path %></li>
|
13
|
-
<li><%= link_to "Script URL Index", phcscriptcdnpro.script_listings_path %></li>
|
14
13
|
<li class="active"><%= yield(:phc_title_tagline) %></li>
|
15
14
|
</ol>
|
16
15
|
</div>
|
@@ -9,7 +9,6 @@
|
|
9
9
|
<h2><%= yield(:phc_title) %></h2>
|
10
10
|
<!-- Bread Crumb -->
|
11
11
|
<ol class="breadcrumb">
|
12
|
-
<li><%= link_to "Script Listing Index", phcscriptcdnpro.script_listings_path %></li>
|
13
12
|
<li><%= link_to "Script URL Index", phcscriptcdnpro.script_listings_path %></li>
|
14
13
|
<li class="active"><%= yield(:phc_title_tagline) %></li>
|
15
14
|
</ol>
|
@@ -9,7 +9,6 @@
|
|
9
9
|
<h2><%= yield(:phc_title) %></h2>
|
10
10
|
<!-- Bread Crumb -->
|
11
11
|
<ol class="breadcrumb">
|
12
|
-
<li><%= link_to "Script Listing Index", phcscriptcdnpro.script_listings_path %></li>
|
13
12
|
<li><%= link_to "Script URL Index", phcscriptcdnpro.script_listings_path %></li>
|
14
13
|
<li class="active"><%= yield(:phc_title_tagline) %></li>
|
15
14
|
</ol>
|
@@ -9,7 +9,6 @@
|
|
9
9
|
<h2><%= yield(:phc_title) %></h2>
|
10
10
|
<!-- Bread Crumb -->
|
11
11
|
<ol class="breadcrumb">
|
12
|
-
<li><%= link_to "Script Listing Index", phcscriptcdnpro.script_listings_path %></li>
|
13
12
|
<li><%= link_to "Script Versions", phcscriptcdnpro.script_versions_path %></li>
|
14
13
|
<li class="active"><%= yield(:phc_title_tagline) %></li>
|
15
14
|
</ol>
|
@@ -16,7 +16,7 @@
|
|
16
16
|
<div class="col-sm-8">
|
17
17
|
<div class="title-action">
|
18
18
|
<%= link_to phcscriptcdnpro.new_script_version_path, class: "btn btn-primary" do %>
|
19
|
-
<i class="fa fa-plus"></i> Create a New Script
|
19
|
+
<i class="fa fa-plus"></i> Create a New Script Version
|
20
20
|
<% end %>
|
21
21
|
</div>
|
22
22
|
</div>
|
@@ -9,7 +9,6 @@
|
|
9
9
|
<h2><%= yield(:phc_title) %></h2>
|
10
10
|
<!-- Bread Crumb -->
|
11
11
|
<ol class="breadcrumb">
|
12
|
-
<li><%= link_to "Script Listing Index", phcscriptcdnpro.script_listings_path %></li>
|
13
12
|
<li><%= link_to "Script Versions", phcscriptcdnpro.script_versions_path %></li>
|
14
13
|
<li class="active"><%= yield(:phc_title_tagline) %></li>
|
15
14
|
</ol>
|
@@ -9,7 +9,6 @@
|
|
9
9
|
<h2><%= yield(:phc_title) %></h2>
|
10
10
|
<!-- Bread Crumb -->
|
11
11
|
<ol class="breadcrumb">
|
12
|
-
<li><%= link_to "Script Listing Index", phcscriptcdnpro.script_listings_path %></li>
|
13
12
|
<li><%= link_to "Script Versions", phcscriptcdnpro.script_versions_path %></li>
|
14
13
|
<li class="active"><%= yield(:phc_title_tagline) %></li>
|
15
14
|
</ol>
|
@@ -57,55 +56,4 @@
|
|
57
56
|
</div>
|
58
57
|
|
59
58
|
</div>
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
<!-- Title System -->
|
64
|
-
<% phc_title "Script Version" %>
|
65
|
-
<% phc_title_tagline "Add a Script Version Number" %>
|
66
|
-
|
67
|
-
<!-- Bread Crumb -->
|
68
|
-
<div class="page-bar">
|
69
|
-
|
70
|
-
<ul class="page-breadcrumb">
|
71
|
-
<li><%= link_to "Script Listings Index", script_listings_path %> <i class="fa fa-circle"></i></li>
|
72
|
-
<li><%= link_to "Versions Index", script_versions_path %> <i class="fa fa-circle"></i></li>
|
73
|
-
<li class="active"><%= yield(:phc_title_tagline) %></li>
|
74
|
-
</ul>
|
75
|
-
|
76
|
-
</div>
|
77
|
-
|
78
|
-
<!-- Page Title -->
|
79
|
-
<h3 class="page-title">
|
80
|
-
<%= yield(:phc_title) %> </br>
|
81
|
-
<small><%= yield(:phc_title_tagline) %></small>
|
82
|
-
</h3>
|
83
|
-
|
84
|
-
<!-- Main Content -->
|
85
|
-
<div class="row">
|
86
|
-
<div class="col-lg-12">
|
87
|
-
|
88
|
-
<div class="portlet light">
|
89
|
-
|
90
|
-
<div class="portlet-title">
|
91
|
-
|
92
|
-
<div class="caption">
|
93
|
-
<span class="caption-subject bold uppercase"><%= yield(:phc_title_tagline) %></span>
|
94
|
-
</div>
|
95
|
-
<div class="actions">
|
96
|
-
</div>
|
97
|
-
|
98
|
-
</div>
|
99
|
-
|
100
|
-
<div class="portlet-body">
|
101
|
-
|
102
|
-
<div class="btn-group" role="group" aria-label="version_button_group">
|
103
|
-
|
104
|
-
</div>
|
105
|
-
|
106
|
-
</div>
|
107
|
-
|
108
|
-
</div>
|
109
|
-
|
110
|
-
</div>
|
111
|
-
</div>
|
59
|
+
<!-- Page Content -->
|