j1-template 2022.0.10 → 2022.0.14

Sign up to get free protection for your applications and to get access to all the features.
Files changed (148) hide show
  1. checksums.yaml +4 -4
  2. data/assets/themes/j1/adapter/js/advertising.js +66 -48
  3. data/assets/themes/j1/adapter/js/algolia.js +10 -13
  4. data/assets/themes/j1/adapter/js/analytics.js +259 -0
  5. data/assets/themes/j1/adapter/js/asciidoctor.js +10 -13
  6. data/assets/themes/j1/adapter/js/attic.js +10 -5
  7. data/assets/themes/j1/adapter/js/bmd.js +10 -14
  8. data/assets/themes/j1/adapter/js/carousel.js +10 -13
  9. data/assets/themes/j1/adapter/js/clipboard.js +9 -10
  10. data/assets/themes/j1/adapter/js/comments.js +407 -0
  11. data/assets/themes/j1/adapter/js/cookieConsent.js +106 -87
  12. data/assets/themes/j1/adapter/js/fab.js +11 -11
  13. data/assets/themes/j1/adapter/js/framer.js +60 -62
  14. data/assets/themes/j1/adapter/js/j1.js +225 -268
  15. data/assets/themes/j1/adapter/js/justifiedGallery.js +12 -14
  16. data/assets/themes/j1/adapter/js/justifiedGalleryCustomizer.js +10 -13
  17. data/assets/themes/j1/adapter/js/lightbox.js +12 -9
  18. data/assets/themes/j1/adapter/js/logger.js +11 -5
  19. data/assets/themes/j1/adapter/js/mmenu.js +11 -12
  20. data/assets/themes/j1/adapter/js/navigator.js +13 -12
  21. data/assets/themes/j1/adapter/js/quicksearch.js +10 -13
  22. data/assets/themes/j1/adapter/js/rouge.js +10 -13
  23. data/assets/themes/j1/adapter/js/rtable.js +10 -13
  24. data/assets/themes/j1/adapter/js/rtextResizer.js +10 -13
  25. data/assets/themes/j1/adapter/js/scroller.js +13 -11
  26. data/assets/themes/j1/adapter/js/themer.js +12 -3
  27. data/assets/themes/j1/adapter/js/toccer.js +10 -13
  28. data/assets/themes/j1/adapter/js/translator.js +35 -81
  29. data/assets/themes/j1/core/js/template.js +13 -5
  30. data/assets/themes/j1/core/js/template.min.js +1 -1
  31. data/assets/themes/j1/core/js/template.min.js.map +1 -1
  32. data/assets/themes/j1/modules/advertising/js/google/adInitializer.js +14 -4
  33. data/assets/themes/j1/modules/cookieConsent/js/cookieConsent.js +11 -2
  34. data/assets/themes/j1/modules/cookieConsent/js/cookieConsent.min.js +1 -1
  35. data/lib/j1/version.rb +1 -1
  36. data/lib/starter_web/Gemfile +1 -1
  37. data/lib/starter_web/_config.yml +1 -9
  38. data/lib/starter_web/_data/apps/carousel.yml +2 -2
  39. data/lib/starter_web/_data/apps/defaults/carousel.yml +3 -2
  40. data/lib/starter_web/_data/apps/defaults/justifiedGallery.yml +2 -2
  41. data/lib/starter_web/_data/apps/defaults/justifiedGalleryCustomizer.yml +2 -2
  42. data/lib/starter_web/_data/apps/defaults/lightGallery.yml +2 -2
  43. data/lib/starter_web/_data/apps/defaults/lightbox.yml +2 -2
  44. data/lib/starter_web/_data/apps/justifiedGallery.yml +2 -2
  45. data/lib/starter_web/_data/apps/justifiedGalleryCustomizer.yml +2 -2
  46. data/lib/starter_web/_data/apps/lightGallery.yml +2 -2
  47. data/lib/starter_web/_data/apps/lightbox.yml +2 -2
  48. data/lib/starter_web/_data/blocks/banner.yml +3 -2
  49. data/lib/starter_web/_data/blocks/defaults/banner.yml +9 -0
  50. data/lib/starter_web/_data/blocks/defaults/footer.yml +9 -0
  51. data/lib/starter_web/_data/blocks/defaults/panel.yml +9 -0
  52. data/lib/starter_web/_data/blocks/footer.yml +3 -2
  53. data/lib/starter_web/_data/blocks/panel.yml +3 -2
  54. data/lib/starter_web/_data/builder/blog_navigator.yml +3 -2
  55. data/lib/starter_web/_data/builder/defaults/blog_navigator.yml +8 -8
  56. data/lib/starter_web/_data/j1_config.yml +0 -116
  57. data/lib/starter_web/_data/layouts/default.yml +14 -14
  58. data/lib/starter_web/_data/layouts/home.ads.yml +262 -0
  59. data/lib/starter_web/_data/layouts/home.no-ads.yml +262 -0
  60. data/lib/starter_web/_data/layouts/home.yml +1 -1
  61. data/lib/starter_web/_data/layouts/page.yml +7 -18
  62. data/lib/starter_web/_data/layouts/post.yml +0 -11
  63. data/lib/starter_web/_data/modules/advertising.yml +4 -14
  64. data/lib/starter_web/_data/modules/analytics.yml +99 -0
  65. data/lib/starter_web/_data/modules/attics.yml +3 -2
  66. data/lib/starter_web/_data/modules/comments.yml +55 -0
  67. data/lib/starter_web/_data/modules/cookieconsent.yml +2 -1
  68. data/lib/starter_web/_data/modules/cookies.yml +6 -1
  69. data/lib/starter_web/_data/modules/defaults/advertising.yml +9 -9
  70. data/lib/starter_web/_data/modules/defaults/analytics.yml +93 -0
  71. data/lib/starter_web/_data/modules/defaults/attics.yml +3 -2
  72. data/lib/starter_web/_data/modules/defaults/authentication.yml +51 -48
  73. data/lib/starter_web/_data/modules/defaults/comments.yml +114 -0
  74. data/lib/starter_web/_data/modules/defaults/cookieconsent.yml +3 -3
  75. data/lib/starter_web/_data/modules/defaults/cookies.yml +107 -26
  76. data/lib/starter_web/_data/modules/defaults/fab.yml +4 -2
  77. data/lib/starter_web/_data/modules/defaults/framer.yml +2 -3
  78. data/lib/starter_web/_data/modules/defaults/log4javascript.yml +3 -2
  79. data/lib/starter_web/_data/modules/defaults/log4r.yml +2 -2
  80. data/lib/starter_web/_data/modules/defaults/navigator.yml +4 -2
  81. data/lib/starter_web/_data/modules/defaults/quicksearch.yml +4 -3
  82. data/lib/starter_web/_data/modules/defaults/rtable.yml +3 -2
  83. data/lib/starter_web/_data/modules/defaults/scoller.yml +3 -2
  84. data/lib/starter_web/_data/modules/defaults/themer.yml +119 -118
  85. data/lib/starter_web/_data/modules/defaults/toccer.yml +1 -1
  86. data/lib/starter_web/_data/modules/defaults/translator.yml +1 -1
  87. data/lib/starter_web/_data/modules/fab.yml +3 -2
  88. data/lib/starter_web/_data/modules/framer.yml +3 -4
  89. data/lib/starter_web/_data/modules/log4r.yml +2 -2
  90. data/lib/starter_web/_data/modules/navigator.yml +4 -2
  91. data/lib/starter_web/_data/modules/quicksearch.yml +3 -3
  92. data/lib/starter_web/_data/modules/rtable.yml +3 -3
  93. data/lib/starter_web/_data/modules/scroller.yml +2 -3
  94. data/lib/starter_web/_data/modules/themer.yml +2 -3
  95. data/lib/starter_web/_data/modules/toccer.yml +3 -3
  96. data/lib/starter_web/_data/modules/translator.yml +1 -1
  97. data/lib/starter_web/_data/plugins/defaults/paginator.yml +2 -2
  98. data/lib/starter_web/_data/plugins/paginator.yml +2 -2
  99. data/lib/starter_web/_data/resources.yml +442 -309
  100. data/lib/starter_web/_includes/attributes.asciidoc +1 -1
  101. data/lib/starter_web/_plugins/lunr_index.rb +1 -1
  102. data/lib/starter_web/collections/posts/public/featured/_posts/0000-00-00-welcome-to-j1.adoc.erb +1 -1
  103. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.adoc +1 -1
  104. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.ads.asciidoc +196 -0
  105. data/lib/starter_web/collections/posts/public/featured/_posts/2021-01-01-about-cookies.comments.asciidoc +182 -0
  106. data/lib/starter_web/collections/posts/public/featured/_posts/2021-02-01-site-generators.adoc +1 -1
  107. data/lib/starter_web/collections/posts/public/featured/_posts/2021-03-03-about-j1.adoc +1 -1
  108. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-01-post-wiki-series.adoc +1 -1
  109. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-02-post-wiki-series.adoc +1 -1
  110. data/lib/starter_web/collections/posts/public/series/_posts/2020-01-03-post-wiki-series.adoc +1 -1
  111. data/lib/starter_web/index.html +0 -3
  112. data/lib/starter_web/package.json +1 -1
  113. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/000_intro.adoc +1 -1
  114. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/100_converter.adoc +1 -1
  115. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/200_themes.adoc +1 -1
  116. data/lib/starter_web/pages/public/asciidoc_skeletons/documentation/documentation.adoc +1 -4
  117. data/lib/starter_web/pages/public/asciidoc_skeletons/multi-document/multi.adoc +1 -4
  118. data/lib/starter_web/pages/public/asciidoc_skeletons/simple-document/simple.adoc +1 -4
  119. data/lib/starter_web/pages/public/learn/roundtrip/{100_present_images.no_ads.asciidoc → 100_present_images.base.asciidoc} +0 -0
  120. data/lib/starter_web/pages/public/learn/roundtrip/100_present_images.comments.asciidoc +237 -0
  121. data/lib/starter_web/pages/public/manuals/dropdown-help.adoc +23 -2
  122. data/lib/starter_web/pages/public/previewer/preview_bootstrap_theme.adoc +100 -166
  123. data/lib/starter_web/utilsrv/_defaults/package.json +1 -1
  124. data/lib/starter_web/utilsrv/package.json +1 -1
  125. metadata +14 -26
  126. data/_includes/themes/j1/blocks/ads/ad.html +0 -64
  127. data/_includes/themes/j1/modules/boards/news_pin_board.html +0 -183
  128. data/_includes/themes/j1/modules/connectors/analytic/custom-provider.html +0 -32
  129. data/_includes/themes/j1/modules/connectors/analytic/google-analytics.html +0 -30
  130. data/_includes/themes/j1/modules/connectors/analytics +0 -60
  131. data/_includes/themes/j1/modules/connectors/comment/commento.html +0 -31
  132. data/_includes/themes/j1/modules/connectors/comment/custom-provider.html +0 -30
  133. data/_includes/themes/j1/modules/connectors/comment/disqus.html +0 -32
  134. data/_includes/themes/j1/modules/connectors/comment/facebook.html +0 -30
  135. data/_includes/themes/j1/modules/connectors/comment/hyvor.html +0 -32
  136. data/_includes/themes/j1/modules/connectors/comment/just-comments.html +0 -31
  137. data/_includes/themes/j1/modules/connectors/comments +0 -64
  138. data/_includes/themes/j1/modules/connectors/sharing +0 -29
  139. data/_includes/themes/j1/modules/connectors/survey/custom-provider.html +0 -30
  140. data/_includes/themes/j1/modules/connectors/survey/jotform.html +0 -32
  141. data/_includes/themes/j1/modules/connectors/surveys +0 -58
  142. data/_includes/themes/j1/modules/connectors/translator +0 -58
  143. data/_includes/themes/j1/modules/connectors/translators/custom-translator.html +0 -32
  144. data/_includes/themes/j1/modules/connectors/translators/google-translator.html +0 -53
  145. data/_includes/themes/j1/modules/search/algolia.html +0 -181
  146. data/_includes/themes/j1/modules/search/docsearch.html +0 -42
  147. data/assets/data/disqus.js +0 -81
  148. data/assets/data/hyvor.js +0 -72
@@ -28,9 +28,81 @@ description:
28
28
  # Default settings
29
29
  #
30
30
  defaults:
31
+ enabled: true
31
32
 
32
33
  # ----------------------------------------------------------------------------
33
- # Settings/Attributes
34
+ # Switches
35
+ #
36
+ # checkCookies
37
+ # --------------------------------------------------------------------------
38
+ # Check if cookies are created and available to the browser. If the
39
+ # cookie attributes does NOT allow to create and|or access on cookies,
40
+ # setting-up a page will fail.
41
+ # For testing sites deplayed on the Internet, it is recommended to enable
42
+ # checks on cookies to issue an error page (HTML 445) if access on cookies
43
+ # has failed for some reason. This will prevent severe failures and|or
44
+ # endless loops accessing a page on missing cookies or invalid cookie
45
+ # settings.
46
+ #
47
+ # values: [false|true]
48
+ # default: false
49
+ #
50
+ # encryptCookiesOnHttp (currently NOT supported)
51
+ # --------------------------------------------------------------------------
52
+ # If a website does not use encryption over the HTTPS protocol, the
53
+ # content written by J1 to cookies can be (AES) encrypted to prevent
54
+ # unwanted manipulation.
55
+ #
56
+ # NOTE: For sites deployed on the Internet, it is highly recommended
57
+ # to use encryption (HTTPS protocol) for all sites to prevent
58
+ # (man-in-the-middle) attacks. If this is NOT possible, at least
59
+ # cookies should be encrypted to prevent attacks based on manipulated
60
+ # contents.
61
+ #
62
+ # NOTE: Encrpytion on cookies is only enabled, if an unsecure connection
63
+ # over the HTTP protocol is detected. This is for performance reasons
64
+ # to not do time consuming calculations if a site is already
65
+ # encrypted.
66
+ #
67
+ # values: [false|true]
68
+ # default: false
69
+ #
70
+ # expireCookiesOnRequiredOnly
71
+ # --------------------------------------------------------------------------
72
+ # J1 uses permanent cookies to store user-related data and process stored
73
+ # data on subsequent visits. permanent cookies require consent, which is
74
+ # automatically displayed as a cookie banner on the first visit.
75
+ #
76
+ # If the switch 'expireCookiesOnRequiredOnly' is set to 'true', all
77
+ # permanent cookies created by J1 are rewritten to session cookies if
78
+ # the consent for advanced cookies (type personalization or analysis) has
79
+ # been denied.
80
+ # The browser automatically deletes all session cookies when all browser
81
+ # sessions (windows/tabs) are closed. Since all session cookies are deleted
82
+ # automatically, this will result in a cookie consent dialog being
83
+ # displayed again on visitors next visit.
84
+ #
85
+ # NOTE: It is recommended that permanent J1 cookies be rewritten to
86
+ # session cookies for visitors who reject advanced cookies. In
87
+ # addition, session cookies improve privacy policy compliance and
88
+ # increase the chance all cookies are accepted on return.
89
+ #
90
+ # NOTE: Make sure that your website complies with applicable privacy
91
+ # regulations, such as the GDPR (DSGVO) or California California
92
+ # Consumer Privacy Act (CCPA) by using the cookie banner provided
93
+ # by J1 Template.
94
+ #
95
+ # values: [false|true]
96
+ # default: true
97
+ #
98
+ # ----------------------------------------------------------------------------
99
+ #
100
+ checkCookies: false
101
+ encryptCookiesOnHttp: false
102
+ expireCookiesOnRequiredOnly: true
103
+
104
+ # ----------------------------------------------------------------------------
105
+ # Attributes
34
106
  #
35
107
  # path
36
108
  # --------------------------------------------------------------------------
@@ -43,19 +115,19 @@ defaults:
43
115
  # domain
44
116
  # --------------------------------------------------------------------------
45
117
  # Switch 'domain' controls if the value for the attribute 'domain' is
46
- # used (= auto|domain) or NOT used (false). If 'auto' is given, the domain
47
- # is calculated from the hostname. Otherwise domain is treates as domain
48
- # to be used.
49
- # If the switch 'domain' is to 'false', the attribute 'domain' is
50
- # automatically set to the (fully qualified) hostname and all subdomains
51
- # are EXCLUDED from accessing the cookies.
118
+ # used (= auto|domain_string) or NOT used (false). If 'auto' is given,
119
+ # the domain is calculated from the hostname found in URL of the current
120
+ # page. Otherwise 'domain_string' is treates as domain to be used.
121
+ # If the switch 'domain' is set to 'false', the attribute 'domain' is
122
+ # not set, but automatically set by the browser to the (fully qualified)
123
+ # hostname and all subdomains are excluded from accessing the cookies.
52
124
  #
53
125
  # NOTE: Be carefull setting switch 'domain' to auto. For sites deployed
54
126
  # to hosts of public domain providers like Netlify (netlify.app),
55
127
  # this will open the access on cookies to ALL hosts (subdomains)!
56
128
  # See 'same_site'.
57
129
  #
58
- # values: [false|auto|domain]
130
+ # values: [false|auto|domain_string]
59
131
  # default: false
60
132
  #
61
133
  # expires
@@ -69,44 +141,53 @@ defaults:
69
141
  #
70
142
  # same_site
71
143
  # --------------------------------------------------------------------------
72
- # Lax: sent for all requests (including subdomains).
73
- # Strict: the cookie is only sent to the site where it originated
74
- # (excluding subdomains)
75
- #
76
- # values: [Strict|Lax]
144
+ # Lax: Sent cookie for all requests, including subdomains, but
145
+ # not in cross-site requests.
146
+ # Strict: The cookie is only sent to the site where it originated,
147
+ # excluding subdomains, but not in cross-site requests.
148
+ # None: Send cookies in cross-site requests if the attribute
149
+ # 'secure' is enabled. Note, the value 'None' can be only
150
+ # used for HTTPS requests.
151
+ #
152
+ # values: [Strict|Lax|None]
77
153
  # default: Strict
78
154
  #
79
155
  # http_only
80
156
  # --------------------------------------------------------------------------
81
- # prevent access to cookie values via JavaScript
157
+ # Prevent access on cookies via JavaScript (client-side). Note, for
158
+ # client-side processing of cookies, like J1 Modules, never change
159
+ # the attribute to 'true'.
160
+ #
161
+ # NOTE: The attribute 'http_only' is only used for web applications to
162
+ # store sensitive private user data (like passwords, account data) to
163
+ # to cookies. Only 'server-sided' web applications will be able to
164
+ # read cookies secured by 'http_only'.
82
165
  #
83
166
  # values: [false|true]
84
167
  # default: false
85
168
  #
86
169
  # secure
87
170
  # --------------------------------------------------------------------------
88
- # Cookies are only sent to the server with an encrypted request over
89
- # the HTTPS protocol
171
+ # If set to 'true', cookies are only sent to the server with an encrypted
172
+ # request over the HTTPS protocol. If set to 'auto', the attribute is
173
+ # ENABLED (set to 'true') automatically, if a secure connection (HTTPS)
174
+ # is detected.
90
175
  #
91
- # values: [false|true]
92
- # default: false
176
+ # NOTE: For sites deployed on the Internet, it is highly recommended
177
+ # to use encryption (HTTPS protocol) for all sites to prevent
178
+ # (man-in-the-middle) attacks (and manipulation on cookies).
93
179
  #
94
- # check_cookies
95
- # --------------------------------------------------------------------------
96
- # Check if cookies created/available
97
- #
98
- # values: [false|true]
99
- # default: true
180
+ # values: [auto|false|true]
181
+ # default: auto
100
182
  #
101
183
  # ----------------------------------------------------------------------------
102
184
  #
103
- check_cookies: false
104
185
  path: /
105
186
  domain: false
106
187
  expires: 365
107
188
  same_site: Strict
189
+ secure: auto
108
190
  http_only: false
109
- secure: false
110
191
 
111
192
  # ------------------------------------------------------------------------------
112
193
  # END config
@@ -16,9 +16,10 @@
16
16
  # ------------------------------------------------------------------------------
17
17
 
18
18
  # ------------------------------------------------------------------------------
19
- # About this configuration (used for J1 CC only)
19
+ # Description (used for J1 CC only)
20
20
  #
21
- about_config:
21
+ description:
22
+
22
23
  title: Floating Action Button
23
24
  scope: Default settings
24
25
  location: _data/modules/defaults/fab.yml
@@ -28,6 +29,7 @@ about_config:
28
29
  #
29
30
  defaults:
30
31
  enabled: false
32
+
31
33
  mode: icon
32
34
 
33
35
  xhr_container_id: fab-container
@@ -12,9 +12,9 @@
12
12
  # ------------------------------------------------------------------------------
13
13
 
14
14
  # ------------------------------------------------------------------------------
15
- # About this configuration (used for J1 CC only)
15
+ # Description (used for J1 CC only)
16
16
  #
17
- about_config:
17
+ description:
18
18
 
19
19
  title: Framer
20
20
  scope: Default settings
@@ -245,7 +245,6 @@ about_config:
245
245
  # DEFAULTS
246
246
  #
247
247
  defaults:
248
-
249
248
  enabled: true
250
249
 
251
250
  load: sync
@@ -13,9 +13,9 @@
13
13
  # ------------------------------------------------------------------------------
14
14
 
15
15
  # ------------------------------------------------------------------------------
16
- # About this configuration (used for J1 CC only)
16
+ # Description (used for J1 CC only)
17
17
  #
18
- about_config:
18
+ description:
19
19
 
20
20
  title: Logger
21
21
  scope: Default settings
@@ -25,6 +25,7 @@ about_config:
25
25
  # User configuration settings
26
26
  #
27
27
  defaults:
28
+ enabled: true
28
29
 
29
30
  # ----------------------------------------------------------------------------
30
31
  # APPENDER configurations
@@ -12,9 +12,9 @@
12
12
  # ------------------------------------------------------------------------------
13
13
 
14
14
  # ------------------------------------------------------------------------------
15
- # About this configuration (used for J1 CC only)
15
+ # Description (used for J1 CC only)
16
16
  #
17
- about_config:
17
+ description:
18
18
 
19
19
  title: Ruby Logger
20
20
  scope: Default settings
@@ -17,9 +17,10 @@
17
17
  # ------------------------------------------------------------------------------
18
18
 
19
19
  # ------------------------------------------------------------------------------
20
- # About this configuration (used for J1 CC only)
20
+ # Description (used for J1 CC only)
21
21
  #
22
- about_config:
22
+ description:
23
+
23
24
  title: Navigator
24
25
  scope: Default settings
25
26
  location: _data/modules/defaults/navigator.yml
@@ -28,6 +29,7 @@ about_config:
28
29
  # Default settings
29
30
  #
30
31
  defaults:
32
+ enabled: true
31
33
 
32
34
  # ------------------------------------------------------------------------------
33
35
  # Font icon settings
@@ -12,9 +12,10 @@
12
12
  # ------------------------------------------------------------------------------
13
13
 
14
14
  # ------------------------------------------------------------------------------
15
- # About this configuration (used for J1 CC only)
15
+ # Description (used for J1 CC only)
16
16
  #
17
- about_config:
17
+ description:
18
+
18
19
  title: J1 QuickSearch
19
20
  scope: Default settings
20
21
  location: _data/modules/defaults/quicksearch.yml
@@ -23,8 +24,8 @@ about_config:
23
24
  # Default settings
24
25
  #
25
26
  defaults:
26
-
27
27
  enabled: false
28
+
28
29
  placement: navbar
29
30
  target: _blank
30
31
  rebuild: false
@@ -16,9 +16,10 @@
16
16
  # ------------------------------------------------------------------------------
17
17
 
18
18
  # ------------------------------------------------------------------------------
19
- # About this configuration (used for J1 CC only)
19
+ # Description (used for J1 CC only)
20
20
  #
21
- about_config:
21
+ description:
22
+
22
23
  title: rTable Module
23
24
  scope: Default settings
24
25
  location: _data/modules/defaults/rtable.yml
@@ -16,9 +16,10 @@
16
16
  # ------------------------------------------------------------------------------
17
17
 
18
18
  # ------------------------------------------------------------------------------
19
- # About this configuration (used for J1 CC only)
19
+ # Description (used for J1 CC only)
20
20
  #
21
- about_config:
21
+ description:
22
+
22
23
  title: Scroller API
23
24
  scope: Default settings
24
25
  location: _data/modules/defaults/rtable.yml
@@ -13,125 +13,9 @@
13
13
  # ------------------------------------------------------------------------------
14
14
 
15
15
  # ------------------------------------------------------------------------------
16
- # Themer settings
16
+ # Description (used for J1 CC only)
17
17
  #
18
- # enabled
19
- # ----------------------------------------------------------------------------
20
- # Enables|Disables the use of J1 Themer
21
- #
22
- # values: boolean (true|false)
23
- # default: false
24
- #
25
- # debug
26
- # ----------------------------------------------------------------------------
27
- # Enables|Disables the console log
28
- #
29
- # values: boolean (true|false)
30
- # default: false
31
- #
32
- # cssThemeLink
33
- # ----------------------------------------------------------------------------
34
- # The ID used for the bootstrap theme css file
35
- #
36
- # values: string
37
- # default: bootstrapTheme
38
- #
39
- # saveToCookie
40
- # ----------------------------------------------------------------------------
41
- # If true, a cookie will be saved with the currently selected theme
42
- #
43
- # values: boolean (true|false)
44
- # default: true
45
- #
46
- # cookieThemeName
47
- # The name of the cookie to be used to store the theme name
48
- #
49
- # values: string
50
- # default: bootstrapTheme.name
51
- #
52
- # cookieDefaultThemeName
53
- # ----------------------------------------------------------------------------
54
- # The name of the cookie to be used to store the default theme name
55
- #
56
- # values: string
57
- # default: bootstrapDefaultTheme.name
58
- #
59
- # cookieThemeCss
60
- # ----------------------------------------------------------------------------
61
- # The name of the cookie to be used to store the css file name
62
- # used for the theme
63
- #
64
- # values: string
65
- # default: bootstrapTheme.css
66
- #
67
- # cookieExpiration
68
- # ----------------------------------------------------------------------------
69
- # The number of days the cookies should expire
70
- #
71
- # values: integer
72
- # default: 7
73
- #
74
- # cookiePath
75
- # ----------------------------------------------------------------------------
76
- # The path the cookie should be stored
77
- #
78
- # values: string (path)
79
- # default: /
80
- #
81
- # defaultCssFile
82
- # ----------------------------------------------------------------------------
83
- # The default css file the plugin should use if it can not load
84
- # the themes from Bootswatch
85
- #
86
- # values: string (URI)
87
- # default: https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css
88
- #
89
- # bootswatchApiUrl
90
- # ----------------------------------------------------------------------------
91
- # The url for the bootswatch api
92
- #
93
- # values: string (URI)
94
- # default: http://api.bootswatch.com
95
- #
96
- # bootswatchApiVersion
97
- # ----------------------------------------------------------------------------
98
- # The version of the bootswatch api to use
99
- #
100
- # values: integer
101
- # default: 3
102
- #
103
- # localFeed
104
- # ----------------------------------------------------------------------------
105
- # The path to a JSON file that contains the themes you want to use.
106
- # If this parameter is used, the control will be loaded the themes
107
- # from here and not go to the bootswatchApiUrl. A sample of the json
108
- # file can be found at themes.json
109
- #
110
- # values: string
111
- # default: empty string
112
- #
113
- # excludeBootswatch
114
- # ----------------------------------------------------------------------------
115
- # Comma separated list of BootSwatch names (e.g. Slate,Yeti) that
116
- # should be excluded from the rendered <ul> or <select>
117
- #
118
- # values: string
119
- # default: empty string
120
- #
121
- # hideOnReload
122
- # ----------------------------------------------------------------------------
123
- # Number of milliseconds (msec) the current page is hidden (display: none)
124
- # to prevent "DOM flicker" aka "FOUC" (Flash of unstyled content) while
125
- # the css file is loaded|activated
126
- #
127
- # values: integer
128
- # default: 150
129
- # ------------------------------------------------------------------------------
130
-
131
- # ------------------------------------------------------------------------------
132
- # About this configuration (used for J1 CC only)
133
- #
134
- about_config:
18
+ description:
135
19
 
136
20
  title: Themer
137
21
  scope: Default settings
@@ -142,6 +26,123 @@ about_config:
142
26
  #
143
27
  defaults:
144
28
 
29
+ # ----------------------------------------------------------------------------
30
+ # Themer settings
31
+ #
32
+ # enabled
33
+ # --------------------------------------------------------------------------
34
+ # Enables|Disables the use of J1 Themer
35
+ #
36
+ # values: boolean (true|false)
37
+ # default: false
38
+ #
39
+ # debug
40
+ # --------------------------------------------------------------------------
41
+ # Enables|Disables the console log
42
+ #
43
+ # values: boolean (true|false)
44
+ # default: false
45
+ #
46
+ # cssThemeLink
47
+ # --------------------------------------------------------------------------
48
+ # The ID used for the bootstrap theme css file
49
+ #
50
+ # values: string
51
+ # default: bootstrapTheme
52
+ #
53
+ # saveToCookie
54
+ # --------------------------------------------------------------------------
55
+ # If true, a cookie will be saved with the currently selected theme
56
+ #
57
+ # values: boolean (true|false)
58
+ # default: true
59
+ #
60
+ # cookieThemeName
61
+ # The name of the cookie to be used to store the theme name
62
+ #
63
+ # values: string
64
+ # default: bootstrapTheme.name
65
+ #
66
+ # cookieDefaultThemeName
67
+ # --------------------------------------------------------------------------
68
+ # The name of the cookie to be used to store the default theme name
69
+ #
70
+ # values: string
71
+ # default: bootstrapDefaultTheme.name
72
+ #
73
+ # cookieThemeCss
74
+ # --------------------------------------------------------------------------
75
+ # The name of the cookie to be used to store the css file name
76
+ # used for the theme
77
+ #
78
+ # values: string
79
+ # default: bootstrapTheme.css
80
+ #
81
+ # cookieExpiration
82
+ # --------------------------------------------------------------------------
83
+ # The number of days the cookies should expire
84
+ #
85
+ # values: integer
86
+ # default: 7
87
+ #
88
+ # cookiePath
89
+ # --------------------------------------------------------------------------
90
+ # The path the cookie should be stored
91
+ #
92
+ # values: string (path)
93
+ # default: /
94
+ #
95
+ # defaultCssFile
96
+ # --------------------------------------------------------------------------
97
+ # The default css file the plugin should use if it can not load
98
+ # the themes from Bootswatch
99
+ #
100
+ # values: string (URI)
101
+ # default: https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css
102
+ #
103
+ # bootswatchApiUrl
104
+ # --------------------------------------------------------------------------
105
+ # The url for the bootswatch api
106
+ #
107
+ # values: string (URI)
108
+ # default: http://api.bootswatch.com
109
+ #
110
+ # bootswatchApiVersion
111
+ # --------------------------------------------------------------------------
112
+ # The version of the bootswatch api to use
113
+ #
114
+ # values: integer
115
+ # default: 3
116
+ #
117
+ # localFeed
118
+ # --------------------------------------------------------------------------
119
+ # The path to a JSON file that contains the themes you want to use.
120
+ # If this parameter is used, the control will be loaded the themes
121
+ # from here and not go to the bootswatchApiUrl. A sample of the json
122
+ # file can be found at themes.json
123
+ #
124
+ # values: string
125
+ # default: empty string
126
+ #
127
+ # excludeBootswatch
128
+ # --------------------------------------------------------------------------
129
+ # Comma separated list of BootSwatch names (e.g. Slate,Yeti) that
130
+ # should be excluded from the rendered <ul> or <select>
131
+ #
132
+ # values: string
133
+ # default: empty string
134
+ #
135
+ # hideOnReload
136
+ # --------------------------------------------------------------------------
137
+ # Number of milliseconds (msec) the current page is hidden (display: none)
138
+ # to prevent "DOM flicker" aka "FOUC" (Flash of unstyled content) while
139
+ # the css file is loaded|activated
140
+ #
141
+ # values: integer
142
+ # default: 150
143
+ #
144
+ # ----------------------------------------------------------------------------
145
+ #
145
146
  enabled: false
146
147
 
147
148
  reloadPageOnChange: false # reload current page, if theme has been changed
@@ -44,7 +44,6 @@ defaults:
44
44
  # default: false
45
45
  # ----------------------------------------------------------------------------
46
46
  enabled: true
47
- log: false
48
47
 
49
48
  # ----------------------------------------------------------------------------
50
49
  # MODULE settings
@@ -153,6 +152,7 @@ defaults:
153
152
  # default: true
154
153
  #
155
154
  # ----------------------------------------------------------------------------
155
+ log: false
156
156
  tocSelector: .js-toc
157
157
  contentSelector: .js-toc-content
158
158
  headingSelector: "h2, h3, h4, h5, h6"
@@ -15,6 +15,7 @@
15
15
  # About this configuration (used for J1 CC only)
16
16
  #
17
17
  about_config:
18
+
18
19
  title: J1 Translator
19
20
  scope: Default settings
20
21
  location: _data/modules/defaults/translator.yml
@@ -23,7 +24,6 @@ about_config:
23
24
  # Default translator settings (general)
24
25
  #
25
26
  defaults:
26
-
27
27
  enabled: false
28
28
 
29
29
  translationEnabled: false
@@ -16,9 +16,10 @@
16
16
  # ------------------------------------------------------------------------------
17
17
 
18
18
  # ------------------------------------------------------------------------------
19
- # About this configuration (used for J1 CC only)
19
+ # Description (used for J1 CC only)
20
20
  #
21
- about_config:
21
+ description:
22
+
22
23
  title: Floating Action Button
23
24
  scope: User settings
24
25
  location: _data/modules/fab.yml
@@ -12,9 +12,9 @@
12
12
  # ------------------------------------------------------------------------------
13
13
 
14
14
  # ------------------------------------------------------------------------------
15
- # About this configuration (used for J1 CC only)
15
+ # Description (used for J1 CC only)
16
16
  #
17
- about_config:
17
+ description:
18
18
 
19
19
  title: Framer
20
20
  scope: User settings
@@ -24,8 +24,7 @@ about_config:
24
24
  # SETTINGS
25
25
  #
26
26
  settings:
27
-
28
- enabled: true
27
+ enabled: false
29
28
 
30
29
  load: sync
31
30
  log: false
@@ -12,9 +12,9 @@
12
12
  # ------------------------------------------------------------------------------
13
13
 
14
14
  # ------------------------------------------------------------------------------
15
- # About this configuration (used for J1 CC only)
15
+ # Description (used for J1 CC only)
16
16
  #
17
- about_config:
17
+ description:
18
18
 
19
19
  title: Ruby Logger
20
20
  scope: User settings