phcdevworks_scripts 8.2.0 → 9.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (108) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +20 -20
  3. data/README.md +3 -1
  4. data/Rakefile +8 -8
  5. data/app/assets/config/phcdevworks_scripts_manifest.js +2 -3
  6. data/app/controllers/phcdevworks_scripts/application_controller.rb +0 -0
  7. data/app/controllers/phcdevworks_scripts/script/authors_controller.rb +0 -0
  8. data/app/controllers/phcdevworks_scripts/script/extensions_controller.rb +0 -0
  9. data/app/controllers/phcdevworks_scripts/script/listings_controller.rb +0 -0
  10. data/app/controllers/phcdevworks_scripts/script/urls_controller.rb +0 -0
  11. data/app/controllers/phcdevworks_scripts/script/versions_controller.rb +0 -0
  12. data/app/controllers/phcdevworks_scripts/snippet/posts_controller.rb +0 -0
  13. data/app/controllers/phcdevworks_scripts/snippet/urls_controller.rb +0 -0
  14. data/app/helpers/phcdevworks_scripts/application_helper.rb +0 -0
  15. data/app/helpers/phcdevworks_scripts/script/authors_helper.rb +0 -0
  16. data/app/helpers/phcdevworks_scripts/script/extensions_helper.rb +0 -0
  17. data/app/helpers/phcdevworks_scripts/script/listings_helper.rb +0 -0
  18. data/app/helpers/phcdevworks_scripts/script/urls_helper.rb +0 -0
  19. data/app/helpers/phcdevworks_scripts/script/versions_helper.rb +0 -0
  20. data/app/helpers/phcdevworks_scripts/snippet/posts_helper.rb +0 -0
  21. data/app/helpers/phcdevworks_scripts/snippet/urls_helper.rb +0 -0
  22. data/app/jobs/phcdevworks_scripts/application_job.rb +0 -0
  23. data/app/mailers/phcdevworks_scripts/application_mailer.rb +0 -0
  24. data/app/models/phcdevworks_scripts/application_record.rb +0 -0
  25. data/app/models/phcdevworks_scripts/script/author.rb +0 -0
  26. data/app/models/phcdevworks_scripts/script/extension.rb +0 -0
  27. data/app/models/phcdevworks_scripts/script/listing.rb +0 -0
  28. data/app/models/phcdevworks_scripts/script/url.rb +0 -0
  29. data/app/models/phcdevworks_scripts/script/version.rb +0 -0
  30. data/app/models/phcdevworks_scripts/script.rb +0 -0
  31. data/app/models/phcdevworks_scripts/script_author_versions.rb +0 -0
  32. data/app/models/phcdevworks_scripts/script_extension_versions.rb +0 -0
  33. data/app/models/phcdevworks_scripts/script_listing_versions.rb +0 -0
  34. data/app/models/phcdevworks_scripts/script_url_versions.rb +0 -0
  35. data/app/models/phcdevworks_scripts/script_version_versions.rb +0 -0
  36. data/app/models/phcdevworks_scripts/snippet/post.rb +0 -0
  37. data/app/models/phcdevworks_scripts/snippet/url.rb +0 -0
  38. data/app/models/phcdevworks_scripts/snippet.rb +0 -0
  39. data/app/models/phcdevworks_scripts/snippet_post_versions.rb +0 -0
  40. data/app/models/phcdevworks_scripts/snippet_url_versions.rb +0 -0
  41. data/app/views/layouts/phcdevworks_scripts/application.html.erb +73 -131
  42. data/app/views/layouts/phcdevworks_scripts/components/backend/footer/_footer.html.erb +10 -9
  43. data/app/views/layouts/phcdevworks_scripts/components/backend/navigation/_top_menu.html.erb +26 -25
  44. data/app/views/layouts/phcdevworks_scripts/components/backend/sidebars/_side_menu.html.erb +491 -349
  45. data/app/views/phcdevworks_scripts/script/authors/_form.html.erb +16 -16
  46. data/app/views/phcdevworks_scripts/script/authors/edit.html.erb +23 -31
  47. data/app/views/phcdevworks_scripts/script/authors/index.html.erb +50 -58
  48. data/app/views/phcdevworks_scripts/script/authors/new.html.erb +23 -31
  49. data/app/views/phcdevworks_scripts/script/authors/show.html.erb +13 -13
  50. data/app/views/phcdevworks_scripts/script/extensions/_form.html.erb +14 -14
  51. data/app/views/phcdevworks_scripts/script/extensions/edit.html.erb +23 -31
  52. data/app/views/phcdevworks_scripts/script/extensions/index.html.erb +46 -54
  53. data/app/views/phcdevworks_scripts/script/extensions/new.html.erb +23 -31
  54. data/app/views/phcdevworks_scripts/script/extensions/show.html.erb +13 -13
  55. data/app/views/phcdevworks_scripts/script/listings/_form.html.erb +29 -29
  56. data/app/views/phcdevworks_scripts/script/listings/edit.html.erb +23 -31
  57. data/app/views/phcdevworks_scripts/script/listings/index.html.erb +50 -58
  58. data/app/views/phcdevworks_scripts/script/listings/new.html.erb +23 -31
  59. data/app/views/phcdevworks_scripts/script/listings/show.html.erb +13 -13
  60. data/app/views/phcdevworks_scripts/script/urls/_form.html.erb +18 -18
  61. data/app/views/phcdevworks_scripts/script/urls/edit.html.erb +27 -35
  62. data/app/views/phcdevworks_scripts/script/urls/index.html.erb +48 -56
  63. data/app/views/phcdevworks_scripts/script/urls/new.html.erb +23 -31
  64. data/app/views/phcdevworks_scripts/script/urls/show.html.erb +13 -13
  65. data/app/views/phcdevworks_scripts/script/versions/_form.html.erb +10 -10
  66. data/app/views/phcdevworks_scripts/script/versions/edit.html.erb +23 -31
  67. data/app/views/phcdevworks_scripts/script/versions/index.html.erb +43 -51
  68. data/app/views/phcdevworks_scripts/script/versions/new.html.erb +23 -31
  69. data/app/views/phcdevworks_scripts/script/versions/show.html.erb +13 -13
  70. data/app/views/phcdevworks_scripts/snippet/posts/_form.html.erb +12 -12
  71. data/app/views/phcdevworks_scripts/snippet/posts/edit.html.erb +23 -31
  72. data/app/views/phcdevworks_scripts/snippet/posts/index.html.erb +54 -62
  73. data/app/views/phcdevworks_scripts/snippet/posts/new.html.erb +23 -31
  74. data/app/views/phcdevworks_scripts/snippet/posts/show.html.erb +25 -25
  75. data/app/views/phcdevworks_scripts/snippet/urls/_form.html.erb +10 -10
  76. data/app/views/phcdevworks_scripts/snippet/urls/edit.html.erb +23 -31
  77. data/app/views/phcdevworks_scripts/snippet/urls/index.html.erb +52 -60
  78. data/app/views/phcdevworks_scripts/snippet/urls/new.html.erb +23 -31
  79. data/app/views/phcdevworks_scripts/snippet/urls/show.html.erb +25 -25
  80. data/config/routes.rb +0 -4
  81. data/config/spring.rb +0 -0
  82. data/db/migrate/20170517064030_create_phcdevworks_scripts_script_extension_versions.rb +1 -1
  83. data/db/migrate/20170517064049_create_phcdevworks_scripts_script_listing_versions.rb +1 -1
  84. data/db/migrate/20170517064114_create_phcdevworks_scripts_script_version_versions.rb +1 -1
  85. data/db/migrate/20170517064150_create_phcdevworks_scripts_script_url_versions.rb +1 -1
  86. data/db/migrate/20170517064208_create_phcdevworks_scripts_script_author_versions.rb +1 -1
  87. data/db/migrate/20190818022002_create_phcdevworks_scripts_snippet_posts.rb +1 -1
  88. data/db/migrate/20190818022024_create_phcdevworks_scripts_snippet_urls.rb +1 -1
  89. data/db/migrate/20190818022939_create_phcdevworks_scripts_script_authors.rb +1 -1
  90. data/db/migrate/20190818023353_create_phcdevworks_scripts_script_listings.rb +1 -1
  91. data/db/migrate/20190818023709_create_phcdevworks_scripts_script_extensions.rb +1 -1
  92. data/db/migrate/20190818023911_create_phcdevworks_scripts_script_urls.rb +1 -1
  93. data/db/migrate/20190818031653_create_phcdevworks_scripts_script_versions.rb +1 -1
  94. data/db/migrate/20191102092649_create_phcdevworks_scripts_snippet_url_versions.rb +1 -1
  95. data/db/migrate/20191102092711_create_phcdevworks_scripts_snippet_post_versions.rb +1 -1
  96. data/lib/phcdevworks_scripts/engine.rb +47 -47
  97. data/lib/phcdevworks_scripts/version.rb +1 -1
  98. data/lib/phcdevworks_scripts.rb +6 -6
  99. data/lib/tasks/phcdevworks_scripts_tasks.rake +4 -4
  100. metadata +28 -79
  101. data/app/assets/stylesheets/phcdevworks_scripts/application.scss +0 -15
  102. data/app/assets/stylesheets/phcdevworks_scripts/script/authors.scss +0 -3
  103. data/app/assets/stylesheets/phcdevworks_scripts/script/extensions.scss +0 -3
  104. data/app/assets/stylesheets/phcdevworks_scripts/script/listings.scss +0 -3
  105. data/app/assets/stylesheets/phcdevworks_scripts/script/urls.scss +0 -3
  106. data/app/assets/stylesheets/phcdevworks_scripts/script/versions.scss +0 -3
  107. data/app/assets/stylesheets/phcdevworks_scripts/snippet/posts.scss +0 -3
  108. data/app/assets/stylesheets/phcdevworks_scripts/snippet/urls.scss +0 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ca0fce49c21a7be6d21170424b91cb7593abff3787f2e852bca23cbdf94856df
4
- data.tar.gz: ba32e66d3f2cbc8eec0bd9d1db9d846a4155981f3d22e76d9fe0be4e55e151e7
3
+ metadata.gz: ece012dda79ce2d8f98a749e92e69e439f1cdf3a04866b61eaea1e34f76a1d29
4
+ data.tar.gz: cb19e1df9b418cf6d9ce776648f1b75cf3b6a5b17114e3762425e4611adceb22
5
5
  SHA512:
6
- metadata.gz: 561d695bc93cbdaeb69bfa6dca4f4c859afb0ad291194e3a4830fa7a6d41b91e4d15d23ef21453180ebb134e087eb858d02b1bf24b6ec9e0d01406ea5511edfa
7
- data.tar.gz: 88a076961f18efb99f24cbcb66b96cf44be5c6f3111646c945bc9073c089052595cdb9152c2a92c2bb1a22bcc2f3e38da94907920713c04737a858f524406b2c
6
+ metadata.gz: 1c47cedea0f5f737ba07e9ecf8258e6da5122f4288a2ea7846adb55dd36ad914c743c6ec4ea5a35bfd425ead5394c8d22e269ed2fd27d894e173c2abb5ad500c
7
+ data.tar.gz: 906a1a5d4207ac4fda3691f8a3ef56fce9ebb8038df35356939aa4d5870b975899675e12b51e3d8d54a5701ddad44383915f7fc3817a7ac357321f4b337375b3
data/MIT-LICENSE CHANGED
@@ -1,20 +1,20 @@
1
- Copyright 2020 BradPotts
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining
4
- a copy of this software and associated documentation files (the
5
- "Software"), to deal in the Software without restriction, including
6
- without limitation the rights to use, copy, modify, merge, publish,
7
- distribute, sublicense, and/or sell copies of the Software, and to
8
- permit persons to whom the Software is furnished to do so, subject to
9
- the following conditions:
10
-
11
- The above copyright notice and this permission notice shall be
12
- included in all copies or substantial portions of the Software.
13
-
14
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
- LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
- OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
- WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1
+ Copyright 2022 PHCDevworks
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -1 +1,3 @@
1
- [![Gem Version](https://badge.fury.io/rb/phcdevworks_scripts.svg)](https://badge.fury.io/rb/phcdevworks_scripts)
1
+ ### Status
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/phcdevworks_scripts.svg)](https://badge.fury.io/rb/phcdevworks_scripts) [![Publish to Github.com](https://github.com/phcdevworks/phcdevworks_scripts/actions/workflows/publish_gem_github_com.yml/badge.svg)](https://github.com/phcdevworks/phcdevworks_scripts/actions/workflows/publish_gem_github_com.yml) [![Publish to Rubygems.org](https://github.com/phcdevworks/phcdevworks_scripts/actions/workflows/publish_gem_rubygems_org.yml/badge.svg)](https://github.com/phcdevworks/phcdevworks_scripts/actions/workflows/publish_gem_rubygems_org.yml)
data/Rakefile CHANGED
@@ -1,8 +1,8 @@
1
- require "bundler/setup"
2
-
3
- APP_RAKEFILE = File.expand_path("spec/test_app/Rakefile", __dir__)
4
- load "rails/tasks/engine.rake"
5
-
6
- load "rails/tasks/statistics.rake"
7
-
8
- require "bundler/gem_tasks"
1
+ require "bundler/setup"
2
+
3
+ APP_RAKEFILE = File.expand_path("spec/test_app/Rakefile", __dir__)
4
+ load "rails/tasks/engine.rake"
5
+
6
+ load "rails/tasks/statistics.rake"
7
+
8
+ require "bundler/gem_tasks"
@@ -1,3 +1,2 @@
1
- //= link_directory ../stylesheets/phcdevworks_scripts .scss
2
- //= link phcthemes_admin_panel_pack_coloradmin.css
3
- //= link phcthemes_admin_panel_pack_coloradmin.js
1
+ //= link coloradmin/default/phcthemes_admin_panel_pack_coloradmin.css
2
+ //= link coloradmin/phcthemes_admin_panel_pack_coloradmin.js
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,131 +1,73 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
-
5
- <!-- SEO System -->
6
- <% phc_seo_title "PHCDevworks Scripts" %>
7
- <% phc_seo_description "Ruby on Rails 6 Script CDN and Code Snippets Listing Management Engine." %>
8
- <!-- SEO System -->
9
-
10
- <!-- SEO and Site Description -->
11
- <meta charset="utf-8">
12
- <title><%= yield(:phc_seo_title) %></title>
13
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
14
- <meta name="description" content="<%= yield(:phc_seo_description) %>">
15
- <!-- SEO and Site Description -->
16
-
17
- <!-- Rails Security Tags -->
18
- <%= csrf_meta_tags %>
19
- <%= csp_meta_tag %>
20
- <!-- Rails Security Tags -->
21
-
22
- <!-- CSS Styles -->
23
- <%= stylesheet_link_tag "phcthemes_admin_panel_pack_coloradmin", media: "all" %>
24
- <!-- CSS Styles -->
25
-
26
- <!-- JavaScript -->
27
- <%= javascript_include_tag "phcthemes_admin_panel_pack_coloradmin" %>
28
- <!-- JavaScript -->
29
-
30
- </head>
31
- <body>
32
-
33
- <!-- Page Container -->
34
- <div id="page-container" class="fade page-sidebar-fixed page-header-fixed">
35
-
36
- <!-- Page Header -->
37
- <div id="header" class="header navbar-default">
38
- <%= render "layouts/phcdevworks_scripts/components/backend/navigation/top_menu" %>
39
- </div>
40
- <!-- Page Header -->
41
-
42
- <!-- Page Sidebar -->
43
- <div id="sidebar" class="sidebar">
44
- <%= render "layouts/phcdevworks_scripts/components/backend/sidebars/side_menu" %>
45
- </div>
46
- <div class="sidebar-bg"></div>
47
- <!-- Page Sidebar -->
48
-
49
- <!-- Page Content -->
50
- <div id="content" class="content">
51
- <%= render "phcdevworks_notifications/bootstrap/notifications" %>
52
- <%= yield %>
53
- </div>
54
- <!-- Page Content -->
55
-
56
- <!-- Footer Content -->
57
- <div id="footer" class="footer mb-4">
58
- <%= render "layouts/phcdevworks_scripts/components/backend/footer/footer" %>
59
- </div>
60
- <!-- Footer Content -->
61
-
62
- </div>
63
- <!-- Page Container -->
64
-
65
- <!-- JavaScript CKEditor -->
66
- <script>ClassicEditor
67
- .create( document.querySelector( '.editor' ), {
68
- toolbar: {
69
- items: [
70
- 'heading',
71
- '|',
72
- 'fontBackgroundColor',
73
- 'fontColor',
74
- 'horizontalLine',
75
- 'fontSize',
76
- 'fontFamily',
77
- 'highlight',
78
- '|',
79
- 'bold',
80
- 'underline',
81
- 'italic',
82
- 'strikethrough',
83
- 'link',
84
- 'removeFormat',
85
- '|',
86
- 'alignment',
87
- 'indent',
88
- 'outdent',
89
- '|',
90
- 'blockQuote',
91
- 'insertTable',
92
- 'undo',
93
- 'redo',
94
- '|',
95
- 'subscript',
96
- 'superscript',
97
- '|',
98
- 'codeBlock',
99
- 'code',
100
- '|',
101
- 'MathType',
102
- 'ChemType',
103
- 'specialCharacters'
104
- ]
105
- },
106
- language: 'en',
107
- table: {
108
- contentToolbar: [
109
- 'tableColumn',
110
- 'tableRow',
111
- 'mergeTableCells',
112
- 'tableCellProperties',
113
- 'tableProperties'
114
- ]
115
- },
116
- licenseKey: '',
117
- } )
118
- .then( editor => {
119
- window.editor = editor;
120
- } )
121
- .catch( error => {
122
- console.error( 'Oops, something gone wrong!' );
123
- console.error( 'Please, report the following error in the https://github.com/ckeditor/ckeditor5 with the build id and the error stack trace:' );
124
- console.warn( 'Build id: ulhl6ym1zxhr-qh8kt6relt0l' );
125
- console.error( error );
126
- } );
127
- </script>
128
- <!-- JavaScript CKEditor -->
129
-
130
- </body>
131
- </html>
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+
5
+ <!-- SEO System -->
6
+ <% phc_seo_title "PHCDevworks Scripts & Snippets" %>
7
+ <% phc_seo_description "Ruby on Rails 7 Script CDN and Code Snippets Listing Management Engine." %>
8
+ <!-- SEO System -->
9
+
10
+ <!-- SEO and Site Description -->
11
+ <meta charset="utf-8">
12
+ <title><%= yield(:phc_seo_title) %></title>
13
+ <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
14
+ <meta name="description" content="<%= yield(:phc_seo_description) %>">
15
+ <!-- SEO and Site Description -->
16
+
17
+ <!-- Rails Security Tags -->
18
+ <%= csrf_meta_tags %>
19
+ <%= csp_meta_tag %>
20
+ <!-- Rails Security Tags -->
21
+
22
+ <!-- CSS Styles -->
23
+ <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" />
24
+ <%= stylesheet_link_tag "coloradmin/default/phcthemes_admin_panel_pack_coloradmin", media: "all" %>
25
+ <!-- CSS Styles -->
26
+
27
+ </head>
28
+ <body>
29
+
30
+ <!-- -PHCDEV- Page Container -->
31
+ <div id="app" class="app app-header-fixed app-sidebar-fixed app-with-wide-sidebar">
32
+
33
+ <!-- -PHCDEV- Page Container - Header -->
34
+ <div id="header" class="app-header">
35
+ <%= render "layouts/phcdevworks_scripts/components/backend/navigation/top_menu" %>
36
+ </div>
37
+ <!-- -PHCDEV- Page Container - Header -->
38
+
39
+ <!-- -PHCDEV- Page Container - Sidebar -->
40
+ <div id="sidebar" class="app-sidebar" data-disable-slide-animation="true">
41
+ <%= render "layouts/phcdevworks_scripts/components/backend/sidebars/side_menu" %>
42
+ </div>
43
+ <div class="app-sidebar-bg"></div>
44
+ <div class="app-sidebar-mobile-backdrop"><a href="#" data-dismiss="app-sidebar-mobile" class="stretched-link"></a></div>
45
+ <!-- -PHCDEV- Page Container - Sidebar -->
46
+
47
+ <!-- -PHCDEV- Page Container - Content -->
48
+ <div id="app" class="app app-content-full-height">
49
+ <div id="content" class="app-content d-flex flex-column p-0">
50
+ <!-- -PHCDEV- Page Container - Main -->
51
+ <div class="app-content-padding flex-grow-1 overflow-hidden" data-scrollbar="true" data-height="100%">
52
+ <%= render "phcdevworks_notifications/bootstrap/notifications" %>
53
+ <%= yield %>
54
+ </div>
55
+ <!-- -PHCDEV- Page Container - Main -->
56
+ <!-- -PHCDEV- Page Container - Footer -->
57
+ <div id="footer" class="app-footer m-0">
58
+ <%= render "layouts/phcdevworks_scripts/components/backend/footer/footer" %>
59
+ </div>
60
+ <!-- -PHCDEV- Page Container - Footer -->
61
+ </div>
62
+ </div>
63
+ <!-- -PHCDEV- Page Container - Content -->
64
+
65
+ </div>
66
+ <!-- -PHCDEV- Page Container -->
67
+
68
+ <!-- JavaScript -->
69
+ <%= javascript_include_tag "coloradmin/phcthemes_admin_panel_pack_coloradmin" %>
70
+ <!-- JavaScript -->
71
+
72
+ </body>
73
+ </html>
@@ -1,16 +1,17 @@
1
- <!-- Footer Content - Left -->
1
+ <!-- -PHCDEV- Page Container - Footer - Left -->
2
2
  <span>
3
- <!-- Footer Content - Left - Time in Production -->
3
+ <!-- -PHCDEV- Page Container - Footer - Left - Copyright -->
4
4
  <i class="fab fa-osi font-weight-bolder"></i> 2012-<%= Time.now.year %> -
5
- <span class="font-weight-bold">PHC</span>Devworks Scripts & Snippets -
6
- Engine v<%= Gem.loaded_specs["phcdevworks_scripts"].version.to_s %>
7
- <!-- Footer Content - Left - Time in Production -->
5
+ <span class="phc_dev_strong_plugin">PHC</span><span class="phc_dev_light_plugin">Devworks</span> Script - Engine v<%= Gem.loaded_specs["phcdevworks_scripts"].version.to_s %>
6
+ <!-- -PHCDEV- Page Container - Footer - Left - Copyright -->
8
7
  </span>
9
- <!-- Footer Content - Left -->
8
+ <!-- -PHCDEV- Page Container - Footer - Left -->
10
9
 
11
- <!-- Footer Content - Right -->
10
+ <!-- -PHCDEV- Page Container - Footer - Right -->
12
11
  <span class="float-right">
12
+ <!-- -PHCDEV- Page Container - Footer - Right - Developed -->
13
13
  Developed with <i class="fas fa-heart hanna_hearts"></i> by
14
- <a class="phcnet_copyright text-dark" href="https://phcdevworks.com/"><u><span class="font-weight-bold">PHC</span>Devworks</u></a>
14
+ <a class="phcnet_copyright text-dark" href="https://phcdevworks.com/"><u><span class="phc_dev_strong_plugin">PHC</span><span class="phc_dev_light_plugin">Devworks</span></u></a>
15
+ <!-- -PHCDEV- Page Container - Footer - Right - Developed -->
15
16
  </span>
16
- <!-- Footer Content - Right -->
17
+ <!-- -PHCDEV- Page Container - Footer - Right -->
@@ -1,40 +1,41 @@
1
- <!-- -PHC- Topbar - Navigation Header -->
1
+ <!-- -PHCDEV- Topbar - Navigation Header -->
2
2
  <div class="navbar-header">
3
3
 
4
- <%= link_to phcdevworks_scripts.script_listings_path, class: "navbar-brand" do %>
5
- <strong>PHCDevworks</strong>Scripts
6
- <% end %>
7
-
8
- <button type="button" class="navbar-toggle" data-click="sidebar-toggled">
9
- <span class="icon-bar"></span>
10
- <span class="icon-bar"></span>
11
- <span class="icon-bar"></span>
4
+ <button type="button" class="navbar-mobile-toggler" data-toggle="app-sidebar-mobile">
5
+ <span class="icon-bar"></span>
6
+ <span class="icon-bar"></span>
7
+ <span class="icon-bar"></span>
12
8
  </button>
13
9
 
10
+ <%= link_to phcdevworks_accounts_devise.user_path, class: "navbar-brand" do %>
11
+ <span class="phc_dev_strong_plugin_logo">PHC</span><span class="phc_dev_light_plugin_logo">Devworks</span>
12
+ <% end %>
13
+
14
14
  </div>
15
- <!-- -PHC- Topbar - Navigation Header -->
15
+ <!-- -PHCDEV- Topbar - Navigation Header -->
16
16
 
17
- <!-- -PHC- Topbar - Navigation Main -->
17
+ <!-- -PHCDEV- Topbar - Navigation Main -->
18
18
  <% if current_user %>
19
- <ul class="navbar-nav navbar-right">
20
-
21
- <!-- -PHC- Topbar - Navigation Main - User Menu -->
22
- <li class="dropdown navbar-user">
23
- <a href="javascript:;" class="dropdown-toggle" data-toggle="dropdown">
19
+ <div class="navbar-nav">
20
+ <div class="navbar-item navbar-user dropdown">
21
+ <a href="#" class="navbar-link dropdown-toggle d-flex align-items-center" data-bs-toggle="dropdown">
24
22
  <%= image_tag current_user.gravatar_url %>
25
- <span class="d-none d-md-inline"><%= current_user.firstname + " " + current_user.lastname %></span> <b class="caret"></b>
23
+ <span>
24
+ <span class="d-none d-md-inline"><%= current_user.firstname + " " + current_user.lastname %></span>
25
+ <b class="caret"></b>
26
+ </span>
26
27
  </a>
27
- <div class="dropdown-menu dropdown-menu-right">
28
- <%= link_to phcdevworks_accounts.edit_user_registration_path, class: "dropdown-item" do %>
28
+ <div class="dropdown-menu dropdown-menu-end me-1">
29
+ <%= link_to phcdevworks_accounts_devise.edit_user_registration_path, class: "dropdown-item" do %>
29
30
  <i class="fad fa-cogs"></i> Account Settings
30
31
  <% end %>
31
- <%= link_to phcdevworks_accounts.destroy_user_session_path, method: :delete, class: "dropdown-item" do %>
32
+ <%= link_to phcdevworks_accounts_devise.destroy_user_session_path, method: :delete, class: "dropdown-item" do %>
32
33
  <i class="fad fa-sign-out-alt"></i> Logout
33
34
  <% end %>
34
35
  </div>
35
- </li>
36
- <!-- -PHC- Topbar - Navigation Main - User Menu -->
37
-
38
- </ul>
36
+ </div>
37
+ </div>
39
38
  <% end %>
40
- <!-- -PHC- Topbar - Navigation Main -->
39
+
40
+ </div>
41
+ <!-- -PHCDEV- Topbar - Navigation Main -->