phcscriptcdnpro 2.1.0 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (119) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/phcscriptcdnpro/application.js +2 -5
  3. data/app/assets/stylesheets/phcscriptcdnpro/application.scss +15 -20
  4. data/app/controllers/phcscriptcdnpro/application_controller.rb +1 -19
  5. data/app/controllers/phcscriptcdnpro/script/authors_controller.rb +74 -0
  6. data/app/controllers/phcscriptcdnpro/script/extensions_controller.rb +65 -0
  7. data/app/controllers/phcscriptcdnpro/script/licences_controller.rb +65 -0
  8. data/app/controllers/phcscriptcdnpro/script/listings_controller.rb +65 -0
  9. data/app/controllers/phcscriptcdnpro/script/urls_controller.rb +74 -0
  10. data/app/controllers/phcscriptcdnpro/script/versions_controller.rb +65 -0
  11. data/app/models/phcscriptcdnpro/application_record.rb +2 -0
  12. data/app/models/phcscriptcdnpro/{scriptcdn.rb → script.rb} +4 -2
  13. data/app/models/phcscriptcdnpro/script/author.rb +10 -0
  14. data/app/models/phcscriptcdnpro/script/extension.rb +8 -0
  15. data/app/models/phcscriptcdnpro/script/licence.rb +4 -0
  16. data/app/models/phcscriptcdnpro/script/listing.rb +17 -0
  17. data/app/models/phcscriptcdnpro/script/url.rb +16 -0
  18. data/app/models/phcscriptcdnpro/script/version.rb +13 -0
  19. data/app/views/phcscriptcdnpro/{scriptcdn → script}/authors/_form.html.erb +14 -11
  20. data/app/views/phcscriptcdnpro/script/authors/edit.html.erb +32 -0
  21. data/app/views/phcscriptcdnpro/script/authors/index.html.erb +55 -0
  22. data/app/views/phcscriptcdnpro/script/authors/new.html.erb +32 -0
  23. data/app/views/phcscriptcdnpro/script/authors/show.html.erb +4 -0
  24. data/app/views/phcscriptcdnpro/script/extensions/_form.html.erb +22 -0
  25. data/app/views/phcscriptcdnpro/script/extensions/edit.html.erb +32 -0
  26. data/app/views/phcscriptcdnpro/script/extensions/index.html.erb +49 -0
  27. data/app/views/phcscriptcdnpro/script/extensions/new.html.erb +32 -0
  28. data/app/views/phcscriptcdnpro/script/extensions/show.html.erb +4 -0
  29. data/app/views/phcscriptcdnpro/script/licences/_form.html.erb +42 -0
  30. data/app/views/phcscriptcdnpro/script/licences/edit.html.erb +32 -0
  31. data/app/views/phcscriptcdnpro/script/licences/index.html.erb +59 -0
  32. data/app/views/phcscriptcdnpro/script/licences/new.html.erb +32 -0
  33. data/app/views/phcscriptcdnpro/script/licences/show.html.erb +4 -0
  34. data/app/views/phcscriptcdnpro/{scriptcdn/informations → script/listings}/_form.html.erb +20 -10
  35. data/app/views/phcscriptcdnpro/script/listings/edit.html.erb +31 -0
  36. data/app/views/phcscriptcdnpro/script/listings/index.html.erb +54 -0
  37. data/app/views/phcscriptcdnpro/script/listings/new.html.erb +31 -0
  38. data/app/views/phcscriptcdnpro/script/listings/show.html.erb +27 -0
  39. data/app/views/phcscriptcdnpro/script/urls/_form.html.erb +32 -0
  40. data/app/views/phcscriptcdnpro/script/urls/edit.html.erb +32 -0
  41. data/app/views/phcscriptcdnpro/script/urls/index.html.erb +51 -0
  42. data/app/views/phcscriptcdnpro/script/urls/new.html.erb +32 -0
  43. data/app/views/phcscriptcdnpro/script/urls/show.html.erb +4 -0
  44. data/app/views/phcscriptcdnpro/script/versions/_form.html.erb +12 -0
  45. data/app/views/phcscriptcdnpro/script/versions/edit.html.erb +32 -0
  46. data/app/views/phcscriptcdnpro/script/versions/index.html.erb +47 -0
  47. data/app/views/phcscriptcdnpro/script/versions/new.html.erb +32 -0
  48. data/app/views/phcscriptcdnpro/script/versions/show.html.erb +4 -0
  49. data/config/routes.rb +14 -16
  50. data/db/migrate/{20160704185337_create_phcscriptcdnpro_scriptcdn_information.rb → 20160821183652_create_phcscriptcdnpro_script_listings.rb} +14 -8
  51. data/db/migrate/{20160704185254_create_phcscriptcdnpro_scriptcdn_authors.rb → 20160821183714_create_phcscriptcdnpro_script_authors.rb} +6 -6
  52. data/db/migrate/20160821183735_create_phcscriptcdnpro_script_extensions.rb +19 -0
  53. data/db/migrate/20160821183805_create_phcscriptcdnpro_script_licences.rb +25 -0
  54. data/db/migrate/20160821183830_create_phcscriptcdnpro_script_urls.rb +23 -0
  55. data/db/migrate/20160821183946_create_phcscriptcdnpro_script_versions.rb +17 -0
  56. data/lib/phcscriptcdnpro/engine.rb +2 -0
  57. data/lib/phcscriptcdnpro/version.rb +1 -1
  58. metadata +73 -84
  59. data/app/assets/javascripts/phcscriptcdnpro/api/mains.js +0 -2
  60. data/app/assets/javascripts/phcscriptcdnpro/cdnsite/cdnpages.js +0 -2
  61. data/app/assets/javascripts/phcscriptcdnpro/scriptcdn/authors.js +0 -2
  62. data/app/assets/javascripts/phcscriptcdnpro/scriptcdn/information.js +0 -2
  63. data/app/assets/javascripts/phcscriptcdnpro/scriptcdn/mains.js +0 -2
  64. data/app/assets/javascripts/phcscriptcdnpro/scriptcdn/urls.js +0 -2
  65. data/app/assets/javascripts/phcscriptcdnpro/scriptcdn/versions.js +0 -2
  66. data/app/assets/stylesheets/phcscriptcdnpro/api/mains.scss +0 -3
  67. data/app/assets/stylesheets/phcscriptcdnpro/cdnsite/cdnpages.scss +0 -3
  68. data/app/assets/stylesheets/phcscriptcdnpro/custom.scss +0 -0
  69. data/app/assets/stylesheets/phcscriptcdnpro/scriptcdn/authors.scss +0 -3
  70. data/app/assets/stylesheets/phcscriptcdnpro/scriptcdn/information.scss +0 -3
  71. data/app/assets/stylesheets/phcscriptcdnpro/scriptcdn/mains.scss +0 -3
  72. data/app/assets/stylesheets/phcscriptcdnpro/scriptcdn/urls.scss +0 -3
  73. data/app/assets/stylesheets/phcscriptcdnpro/scriptcdn/versions.scss +0 -3
  74. data/app/assets/stylesheets/scaffolds.scss +0 -89
  75. data/app/controllers/phcscriptcdnpro/api/mains_controller.rb +0 -17
  76. data/app/controllers/phcscriptcdnpro/scriptcdn/authors_controller.rb +0 -70
  77. data/app/controllers/phcscriptcdnpro/scriptcdn/informations_controller.rb +0 -70
  78. data/app/controllers/phcscriptcdnpro/scriptcdn/mains_controller.rb +0 -63
  79. data/app/controllers/phcscriptcdnpro/scriptcdn/urls_controller.rb +0 -70
  80. data/app/controllers/phcscriptcdnpro/scriptcdn/versions_controller.rb +0 -70
  81. data/app/helpers/phcscriptcdnpro/api/mains_helper.rb +0 -4
  82. data/app/helpers/phcscriptcdnpro/cdnsite/cdnpages_helper.rb +0 -4
  83. data/app/helpers/phcscriptcdnpro/scriptcdn/authors_helper.rb +0 -4
  84. data/app/helpers/phcscriptcdnpro/scriptcdn/information_helper.rb +0 -4
  85. data/app/helpers/phcscriptcdnpro/scriptcdn/mains_helper.rb +0 -4
  86. data/app/helpers/phcscriptcdnpro/scriptcdn/urls_helper.rb +0 -4
  87. data/app/helpers/phcscriptcdnpro/scriptcdn/versions_helper.rb +0 -4
  88. data/app/models/phcscriptcdnpro/scriptcdn/author.rb +0 -8
  89. data/app/models/phcscriptcdnpro/scriptcdn/information.rb +0 -8
  90. data/app/models/phcscriptcdnpro/scriptcdn/main.rb +0 -11
  91. data/app/models/phcscriptcdnpro/scriptcdn/url.rb +0 -8
  92. data/app/models/phcscriptcdnpro/scriptcdn/version.rb +0 -8
  93. data/app/views/phcscriptcdnpro/api/mains/index.json.rabl +0 -18
  94. data/app/views/phcscriptcdnpro/api/mains/show.json.rabl +0 -18
  95. data/app/views/phcscriptcdnpro/scriptcdn/authors/_formpatch.html.erb +0 -29
  96. data/app/views/phcscriptcdnpro/scriptcdn/authors/edit.html.erb +0 -43
  97. data/app/views/phcscriptcdnpro/scriptcdn/authors/index.html.erb +0 -65
  98. data/app/views/phcscriptcdnpro/scriptcdn/authors/new.html.erb +0 -43
  99. data/app/views/phcscriptcdnpro/scriptcdn/informations/_formpatch.html.erb +0 -49
  100. data/app/views/phcscriptcdnpro/scriptcdn/informations/edit.html.erb +0 -43
  101. data/app/views/phcscriptcdnpro/scriptcdn/informations/index.html.erb +0 -69
  102. data/app/views/phcscriptcdnpro/scriptcdn/informations/new.html.erb +0 -43
  103. data/app/views/phcscriptcdnpro/scriptcdn/mains/_form.html.erb +0 -13
  104. data/app/views/phcscriptcdnpro/scriptcdn/mains/edit.html.erb +0 -42
  105. data/app/views/phcscriptcdnpro/scriptcdn/mains/index.html.erb +0 -61
  106. data/app/views/phcscriptcdnpro/scriptcdn/mains/new.html.erb +0 -42
  107. data/app/views/phcscriptcdnpro/scriptcdn/urls/_form.html.erb +0 -17
  108. data/app/views/phcscriptcdnpro/scriptcdn/urls/_formpatch.html.erb +0 -17
  109. data/app/views/phcscriptcdnpro/scriptcdn/urls/edit.html.erb +0 -43
  110. data/app/views/phcscriptcdnpro/scriptcdn/urls/index.html.erb +0 -62
  111. data/app/views/phcscriptcdnpro/scriptcdn/urls/new.html.erb +0 -43
  112. data/app/views/phcscriptcdnpro/scriptcdn/versions/_form.html.erb +0 -13
  113. data/app/views/phcscriptcdnpro/scriptcdn/versions/_formpatch.html.erb +0 -13
  114. data/app/views/phcscriptcdnpro/scriptcdn/versions/edit.html.erb +0 -43
  115. data/app/views/phcscriptcdnpro/scriptcdn/versions/index.html.erb +0 -63
  116. data/app/views/phcscriptcdnpro/scriptcdn/versions/new.html.erb +0 -43
  117. data/db/migrate/20160704185441_create_phcscriptcdnpro_scriptcdn_urls.rb +0 -19
  118. data/db/migrate/20160704185454_create_phcscriptcdnpro_scriptcdn_versions.rb +0 -17
  119. data/db/migrate/20160704190509_create_phcscriptcdnpro_scriptcdn_mains.rb +0 -17
@@ -0,0 +1,17 @@
1
+ class CreatePhcscriptcdnproScriptVersions < ActiveRecord::Migration[5.0]
2
+ def change
3
+
4
+ create_table :phcscriptcdnpro_script_versions do |t|
5
+
6
+ t.string :scriptversion
7
+
8
+ t.string :user_id
9
+ t.string :membership_id
10
+ t.string :oganization_id
11
+
12
+ t.timestamps
13
+
14
+ end
15
+
16
+ end
17
+ end
@@ -3,6 +3,7 @@ module Phcscriptcdnpro
3
3
 
4
4
  # Load Security
5
5
  require 'authrocket'
6
+ require 'phcaccountspro'
6
7
 
7
8
  # Main Dependencies
8
9
  require 'phcnotifi'
@@ -37,6 +38,7 @@ module Phcscriptcdnpro
37
38
  ApplicationController.helper(ApplicationHelper)
38
39
  Phcnotifi::ApplicationController.helper(ApplicationHelper)
39
40
  Phctitleseo::ApplicationController.helper(ApplicationHelper)
41
+ Phcaccountspro::ApplicationController.helper(ApplicationHelper)
40
42
  end
41
43
 
42
44
  end
@@ -1,3 +1,3 @@
1
1
  module Phcscriptcdnpro
2
- VERSION = "2.1.0"
2
+ VERSION = "3.0.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: phcscriptcdnpro
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - BradPotts
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-17 00:00:00.000000000 Z
11
+ date: 2016-08-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -84,14 +84,14 @@ dependencies:
84
84
  requirements:
85
85
  - - "~>"
86
86
  - !ruby/object:Gem::Version
87
- version: '2.9'
87
+ version: '2.10'
88
88
  type: :runtime
89
89
  prerelease: false
90
90
  version_requirements: !ruby/object:Gem::Requirement
91
91
  requirements:
92
92
  - - "~>"
93
93
  - !ruby/object:Gem::Version
94
- version: '2.9'
94
+ version: '2.10'
95
95
  - !ruby/object:Gem::Dependency
96
96
  name: phctitleseo
97
97
  requirement: !ruby/object:Gem::Requirement
@@ -99,6 +99,9 @@ dependencies:
99
99
  - - "~>"
100
100
  - !ruby/object:Gem::Version
101
101
  version: '3.3'
102
+ - - ">="
103
+ - !ruby/object:Gem::Version
104
+ version: 3.3.2
102
105
  type: :runtime
103
106
  prerelease: false
104
107
  version_requirements: !ruby/object:Gem::Requirement
@@ -106,6 +109,9 @@ dependencies:
106
109
  - - "~>"
107
110
  - !ruby/object:Gem::Version
108
111
  version: '3.3'
112
+ - - ">="
113
+ - !ruby/object:Gem::Version
114
+ version: 3.3.2
109
115
  - !ruby/object:Gem::Dependency
110
116
  name: phcnotifi
111
117
  requirement: !ruby/object:Gem::Requirement
@@ -113,6 +119,9 @@ dependencies:
113
119
  - - "~>"
114
120
  - !ruby/object:Gem::Version
115
121
  version: '3.3'
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: 3.3.2
116
125
  type: :runtime
117
126
  prerelease: false
118
127
  version_requirements: !ruby/object:Gem::Requirement
@@ -120,46 +129,43 @@ dependencies:
120
129
  - - "~>"
121
130
  - !ruby/object:Gem::Version
122
131
  version: '3.3'
132
+ - - ">="
133
+ - !ruby/object:Gem::Version
134
+ version: 3.3.2
123
135
  - !ruby/object:Gem::Dependency
124
136
  name: phcadmins
125
137
  requirement: !ruby/object:Gem::Requirement
126
138
  requirements:
127
139
  - - "~>"
128
140
  - !ruby/object:Gem::Version
129
- version: '3.8'
130
- - - ">="
131
- - !ruby/object:Gem::Version
132
- version: 3.8.1
141
+ version: '3.9'
133
142
  type: :runtime
134
143
  prerelease: false
135
144
  version_requirements: !ruby/object:Gem::Requirement
136
145
  requirements:
137
146
  - - "~>"
138
147
  - !ruby/object:Gem::Version
139
- version: '3.8'
140
- - - ">="
141
- - !ruby/object:Gem::Version
142
- version: 3.8.1
148
+ version: '3.9'
143
149
  - !ruby/object:Gem::Dependency
144
150
  name: jquery-rails
145
151
  requirement: !ruby/object:Gem::Requirement
146
152
  requirements:
147
153
  - - "~>"
148
154
  - !ruby/object:Gem::Version
149
- version: '4.1'
155
+ version: '4.2'
150
156
  - - ">="
151
157
  - !ruby/object:Gem::Version
152
- version: 4.1.1
158
+ version: 4.2.1
153
159
  type: :runtime
154
160
  prerelease: false
155
161
  version_requirements: !ruby/object:Gem::Requirement
156
162
  requirements:
157
163
  - - "~>"
158
164
  - !ruby/object:Gem::Version
159
- version: '4.1'
165
+ version: '4.2'
160
166
  - - ">="
161
167
  - !ruby/object:Gem::Version
162
- version: 4.1.1
168
+ version: 4.2.1
163
169
  - !ruby/object:Gem::Dependency
164
170
  name: jquery-ui-rails
165
171
  requirement: !ruby/object:Gem::Requirement
@@ -508,8 +514,8 @@ dependencies:
508
514
  - - ">="
509
515
  - !ruby/object:Gem::Version
510
516
  version: 2.53.4
511
- description: PHCScriptCDN(Pro) script listing engine purpose built for PHCNetworks
512
- Enterprise use.
517
+ description: PHCScriptCDN(Pro) script listing engine purpose built for enterprise
518
+ use.
513
519
  email:
514
520
  - developers@phcnetworks.net
515
521
  executables: []
@@ -520,85 +526,68 @@ files:
520
526
  - README.md
521
527
  - Rakefile
522
528
  - app/assets/config/phcscriptcdnpro_manifest.js
523
- - app/assets/javascripts/phcscriptcdnpro/api/mains.js
524
529
  - app/assets/javascripts/phcscriptcdnpro/application.js
525
- - app/assets/javascripts/phcscriptcdnpro/cdnsite/cdnpages.js
526
- - app/assets/javascripts/phcscriptcdnpro/scriptcdn/authors.js
527
- - app/assets/javascripts/phcscriptcdnpro/scriptcdn/information.js
528
- - app/assets/javascripts/phcscriptcdnpro/scriptcdn/mains.js
529
- - app/assets/javascripts/phcscriptcdnpro/scriptcdn/urls.js
530
- - app/assets/javascripts/phcscriptcdnpro/scriptcdn/versions.js
531
- - app/assets/stylesheets/phcscriptcdnpro/api/mains.scss
532
530
  - app/assets/stylesheets/phcscriptcdnpro/application.scss
533
- - app/assets/stylesheets/phcscriptcdnpro/cdnsite/cdnpages.scss
534
- - app/assets/stylesheets/phcscriptcdnpro/custom.scss
535
- - app/assets/stylesheets/phcscriptcdnpro/scriptcdn/authors.scss
536
- - app/assets/stylesheets/phcscriptcdnpro/scriptcdn/information.scss
537
- - app/assets/stylesheets/phcscriptcdnpro/scriptcdn/mains.scss
538
- - app/assets/stylesheets/phcscriptcdnpro/scriptcdn/urls.scss
539
- - app/assets/stylesheets/phcscriptcdnpro/scriptcdn/versions.scss
540
- - app/assets/stylesheets/scaffolds.scss
541
- - app/controllers/phcscriptcdnpro/api/mains_controller.rb
542
531
  - app/controllers/phcscriptcdnpro/application_controller.rb
543
532
  - app/controllers/phcscriptcdnpro/cdnsite/cdnpages_controller.rb
544
- - app/controllers/phcscriptcdnpro/scriptcdn/authors_controller.rb
545
- - app/controllers/phcscriptcdnpro/scriptcdn/informations_controller.rb
546
- - app/controllers/phcscriptcdnpro/scriptcdn/mains_controller.rb
547
- - app/controllers/phcscriptcdnpro/scriptcdn/urls_controller.rb
548
- - app/controllers/phcscriptcdnpro/scriptcdn/versions_controller.rb
549
- - app/helpers/phcscriptcdnpro/api/mains_helper.rb
533
+ - app/controllers/phcscriptcdnpro/script/authors_controller.rb
534
+ - app/controllers/phcscriptcdnpro/script/extensions_controller.rb
535
+ - app/controllers/phcscriptcdnpro/script/licences_controller.rb
536
+ - app/controllers/phcscriptcdnpro/script/listings_controller.rb
537
+ - app/controllers/phcscriptcdnpro/script/urls_controller.rb
538
+ - app/controllers/phcscriptcdnpro/script/versions_controller.rb
550
539
  - app/helpers/phcscriptcdnpro/application_helper.rb
551
- - app/helpers/phcscriptcdnpro/cdnsite/cdnpages_helper.rb
552
- - app/helpers/phcscriptcdnpro/scriptcdn/authors_helper.rb
553
- - app/helpers/phcscriptcdnpro/scriptcdn/information_helper.rb
554
- - app/helpers/phcscriptcdnpro/scriptcdn/mains_helper.rb
555
- - app/helpers/phcscriptcdnpro/scriptcdn/urls_helper.rb
556
- - app/helpers/phcscriptcdnpro/scriptcdn/versions_helper.rb
557
540
  - app/jobs/phcscriptcdnpro/application_job.rb
558
541
  - app/mailers/phcscriptcdnpro/application_mailer.rb
559
542
  - app/models/phcscriptcdnpro/application_record.rb
560
- - app/models/phcscriptcdnpro/scriptcdn.rb
561
- - app/models/phcscriptcdnpro/scriptcdn/author.rb
562
- - app/models/phcscriptcdnpro/scriptcdn/information.rb
563
- - app/models/phcscriptcdnpro/scriptcdn/main.rb
564
- - app/models/phcscriptcdnpro/scriptcdn/url.rb
565
- - app/models/phcscriptcdnpro/scriptcdn/version.rb
543
+ - app/models/phcscriptcdnpro/script.rb
544
+ - app/models/phcscriptcdnpro/script/author.rb
545
+ - app/models/phcscriptcdnpro/script/extension.rb
546
+ - app/models/phcscriptcdnpro/script/licence.rb
547
+ - app/models/phcscriptcdnpro/script/listing.rb
548
+ - app/models/phcscriptcdnpro/script/url.rb
549
+ - app/models/phcscriptcdnpro/script/version.rb
566
550
  - app/views/layouts/phcscriptcdnpro/application.html.erb
567
551
  - app/views/layouts/phcscriptcdnpro/frontend.html.erb
568
- - app/views/phcscriptcdnpro/api/mains/index.json.rabl
569
- - app/views/phcscriptcdnpro/api/mains/show.json.rabl
570
552
  - app/views/phcscriptcdnpro/cdnsite/cdnpages/index.html.erb
571
553
  - app/views/phcscriptcdnpro/cdnsite/cdnpages/show.html.erb
572
- - app/views/phcscriptcdnpro/scriptcdn/authors/_form.html.erb
573
- - app/views/phcscriptcdnpro/scriptcdn/authors/_formpatch.html.erb
574
- - app/views/phcscriptcdnpro/scriptcdn/authors/edit.html.erb
575
- - app/views/phcscriptcdnpro/scriptcdn/authors/index.html.erb
576
- - app/views/phcscriptcdnpro/scriptcdn/authors/new.html.erb
577
- - app/views/phcscriptcdnpro/scriptcdn/informations/_form.html.erb
578
- - app/views/phcscriptcdnpro/scriptcdn/informations/_formpatch.html.erb
579
- - app/views/phcscriptcdnpro/scriptcdn/informations/edit.html.erb
580
- - app/views/phcscriptcdnpro/scriptcdn/informations/index.html.erb
581
- - app/views/phcscriptcdnpro/scriptcdn/informations/new.html.erb
582
- - app/views/phcscriptcdnpro/scriptcdn/mains/_form.html.erb
583
- - app/views/phcscriptcdnpro/scriptcdn/mains/edit.html.erb
584
- - app/views/phcscriptcdnpro/scriptcdn/mains/index.html.erb
585
- - app/views/phcscriptcdnpro/scriptcdn/mains/new.html.erb
586
- - app/views/phcscriptcdnpro/scriptcdn/urls/_form.html.erb
587
- - app/views/phcscriptcdnpro/scriptcdn/urls/_formpatch.html.erb
588
- - app/views/phcscriptcdnpro/scriptcdn/urls/edit.html.erb
589
- - app/views/phcscriptcdnpro/scriptcdn/urls/index.html.erb
590
- - app/views/phcscriptcdnpro/scriptcdn/urls/new.html.erb
591
- - app/views/phcscriptcdnpro/scriptcdn/versions/_form.html.erb
592
- - app/views/phcscriptcdnpro/scriptcdn/versions/_formpatch.html.erb
593
- - app/views/phcscriptcdnpro/scriptcdn/versions/edit.html.erb
594
- - app/views/phcscriptcdnpro/scriptcdn/versions/index.html.erb
595
- - app/views/phcscriptcdnpro/scriptcdn/versions/new.html.erb
554
+ - app/views/phcscriptcdnpro/script/authors/_form.html.erb
555
+ - app/views/phcscriptcdnpro/script/authors/edit.html.erb
556
+ - app/views/phcscriptcdnpro/script/authors/index.html.erb
557
+ - app/views/phcscriptcdnpro/script/authors/new.html.erb
558
+ - app/views/phcscriptcdnpro/script/authors/show.html.erb
559
+ - app/views/phcscriptcdnpro/script/extensions/_form.html.erb
560
+ - app/views/phcscriptcdnpro/script/extensions/edit.html.erb
561
+ - app/views/phcscriptcdnpro/script/extensions/index.html.erb
562
+ - app/views/phcscriptcdnpro/script/extensions/new.html.erb
563
+ - app/views/phcscriptcdnpro/script/extensions/show.html.erb
564
+ - app/views/phcscriptcdnpro/script/licences/_form.html.erb
565
+ - app/views/phcscriptcdnpro/script/licences/edit.html.erb
566
+ - app/views/phcscriptcdnpro/script/licences/index.html.erb
567
+ - app/views/phcscriptcdnpro/script/licences/new.html.erb
568
+ - app/views/phcscriptcdnpro/script/licences/show.html.erb
569
+ - app/views/phcscriptcdnpro/script/listings/_form.html.erb
570
+ - app/views/phcscriptcdnpro/script/listings/edit.html.erb
571
+ - app/views/phcscriptcdnpro/script/listings/index.html.erb
572
+ - app/views/phcscriptcdnpro/script/listings/new.html.erb
573
+ - app/views/phcscriptcdnpro/script/listings/show.html.erb
574
+ - app/views/phcscriptcdnpro/script/urls/_form.html.erb
575
+ - app/views/phcscriptcdnpro/script/urls/edit.html.erb
576
+ - app/views/phcscriptcdnpro/script/urls/index.html.erb
577
+ - app/views/phcscriptcdnpro/script/urls/new.html.erb
578
+ - app/views/phcscriptcdnpro/script/urls/show.html.erb
579
+ - app/views/phcscriptcdnpro/script/versions/_form.html.erb
580
+ - app/views/phcscriptcdnpro/script/versions/edit.html.erb
581
+ - app/views/phcscriptcdnpro/script/versions/index.html.erb
582
+ - app/views/phcscriptcdnpro/script/versions/new.html.erb
583
+ - app/views/phcscriptcdnpro/script/versions/show.html.erb
596
584
  - config/routes.rb
597
- - db/migrate/20160704185254_create_phcscriptcdnpro_scriptcdn_authors.rb
598
- - db/migrate/20160704185337_create_phcscriptcdnpro_scriptcdn_information.rb
599
- - db/migrate/20160704185441_create_phcscriptcdnpro_scriptcdn_urls.rb
600
- - db/migrate/20160704185454_create_phcscriptcdnpro_scriptcdn_versions.rb
601
- - db/migrate/20160704190509_create_phcscriptcdnpro_scriptcdn_mains.rb
585
+ - db/migrate/20160821183652_create_phcscriptcdnpro_script_listings.rb
586
+ - db/migrate/20160821183714_create_phcscriptcdnpro_script_authors.rb
587
+ - db/migrate/20160821183735_create_phcscriptcdnpro_script_extensions.rb
588
+ - db/migrate/20160821183805_create_phcscriptcdnpro_script_licences.rb
589
+ - db/migrate/20160821183830_create_phcscriptcdnpro_script_urls.rb
590
+ - db/migrate/20160821183946_create_phcscriptcdnpro_script_versions.rb
602
591
  - lib/phcscriptcdnpro.rb
603
592
  - lib/phcscriptcdnpro/engine.rb
604
593
  - lib/phcscriptcdnpro/version.rb
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,2 +0,0 @@
1
- // Place all the behaviors and hooks related to the matching controller here.
2
- // All this logic will automatically be available in application.js.
@@ -1,3 +0,0 @@
1
- // Place all the styles related to the api/mains controller here.
2
- // They will automatically be included in application.css.
3
- // You can use Sass (SCSS) here: http://sass-lang.com/
@@ -1,3 +0,0 @@
1
- // Place all the styles related to the cdnsite/cdnpages controller here.
2
- // They will automatically be included in application.css.
3
- // You can use Sass (SCSS) here: http://sass-lang.com/
File without changes
@@ -1,3 +0,0 @@
1
- // Place all the styles related to the scriptcdn::authors controller here.
2
- // They will automatically be included in application.css.
3
- // You can use Sass (SCSS) here: http://sass-lang.com/
@@ -1,3 +0,0 @@
1
- // Place all the styles related to the scriptcdn::information controller here.
2
- // They will automatically be included in application.css.
3
- // You can use Sass (SCSS) here: http://sass-lang.com/
@@ -1,3 +0,0 @@
1
- // Place all the styles related to the scriptcdn::mains controller here.
2
- // They will automatically be included in application.css.
3
- // You can use Sass (SCSS) here: http://sass-lang.com/
@@ -1,3 +0,0 @@
1
- // Place all the styles related to the scriptcdn::urls controller here.
2
- // They will automatically be included in application.css.
3
- // You can use Sass (SCSS) here: http://sass-lang.com/
@@ -1,3 +0,0 @@
1
- // Place all the styles related to the scriptcdn::versions controller here.
2
- // They will automatically be included in application.css.
3
- // You can use Sass (SCSS) here: http://sass-lang.com/
@@ -1,89 +0,0 @@
1
- body {
2
- background-color: #fff;
3
- color: #333;
4
- font-family: verdana, arial, helvetica, sans-serif;
5
- font-size: 13px;
6
- line-height: 18px;
7
- margin: 33px;
8
- }
9
-
10
- p, ol, ul, td {
11
- font-family: verdana, arial, helvetica, sans-serif;
12
- font-size: 13px;
13
- line-height: 18px;
14
- margin: 33px;
15
- }
16
-
17
- pre {
18
- background-color: #eee;
19
- padding: 10px;
20
- font-size: 11px;
21
- }
22
-
23
- a {
24
- color: #000;
25
-
26
- &:visited {
27
- color: #666;
28
- }
29
-
30
- &:hover {
31
- color: #fff;
32
- background-color: #000;
33
- }
34
- }
35
-
36
- th {
37
- padding-bottom: 5px;
38
- }
39
-
40
- td {
41
- padding-bottom: 7px;
42
- padding-left: 5px;
43
- padding-right: 5px;
44
- }
45
-
46
- div {
47
- &.field, &.actions {
48
- margin-bottom: 10px;
49
- }
50
- }
51
-
52
- #notice {
53
- color: green;
54
- }
55
-
56
- .field_with_errors {
57
- padding: 2px;
58
- background-color: red;
59
- display: table;
60
- }
61
-
62
- #error_explanation {
63
- width: 450px;
64
- border: 2px solid red;
65
- padding: 7px;
66
- padding-bottom: 0;
67
- margin-bottom: 20px;
68
- background-color: #f0f0f0;
69
-
70
- h2 {
71
- text-align: left;
72
- font-weight: bold;
73
- padding: 5px 5px 5px 15px;
74
- font-size: 12px;
75
- margin: -7px;
76
- margin-bottom: 0;
77
- background-color: #c00;
78
- color: #fff;
79
- }
80
-
81
- ul li {
82
- font-size: 12px;
83
- list-style: square;
84
- }
85
- }
86
-
87
- label {
88
- display: block;
89
- }