Skip to content

Commit

Permalink
[TASK] update includeCSS and includeJS TS conf
Browse files Browse the repository at this point in the history
  • Loading branch information
dmh committed Apr 13, 2017
1 parent c2a34b2 commit e99d657
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 38 deletions.
51 changes: 23 additions & 28 deletions Configuration/TypoScript/Library/page.includeCSS.setupts
Original file line number Diff line number Diff line change
@@ -1,64 +1,59 @@
[globalVar = LIT:less = {$themes.configuration.feLayoutMode}]
page {
includeCSS {
bootstrap = {$themes.configuration.feLayoutPath}/bootstrap.less
bootstrap = {$themes.configuration.feLayoutPath}/less/bootstrap.less
bootstrap {
# excludeFromConcatenation =
# disableCompression =
}
rteFrontend = EXT:theme_t3kit/Resources/Public/Extensions/Rtehtmlarea/Css/rteFrontend.css
rteFrontend {
# excludeFromConcatenation =
# disableCompression =
}
components = {$themes.configuration.feLayoutPath}/components.css
# rteFrontend = EXT:theme_t3kit/Resources/Public/Extensions/Rtehtmlarea/Css/rteFrontend.css
# rteFrontend {
# # excludeFromConcatenation =
# # disableCompression =
# }
components = {$themes.configuration.feLayoutPath}/less/components.css
components {
#excludeFromConcatenation =
#disableCompression =
}
maincss = {$themes.configuration.feLayoutPath}/main.less
maincss = {$themes.configuration.feLayoutPath}/less/main.less
maincss {
#excludeFromConcatenation =
#disableCompression =
}
customLess = {$themes.configuration.customPath}/css/custom.less
customLess = {$themes.configuration.customPath}/custom.less
customLess {
#excludeFromConcatenation =
#disableCompression =
}
customCss = {$themes.configuration.customPath}/css/custom.css
customCss {
#excludeFromConcatenation =
#disableCompression =
}
}
}
[global]

[globalVar = LIT:css = {$themes.configuration.feLayoutMode}]
page {
includeCSS {
bootstrap = {$themes.configuration.feLayoutPath}/bootstrap.css
bootstrap = {$themes.configuration.feLayoutPath}/css/bootstrap.css
bootstrap {
#excludeFromConcatenation =
#disableCompression =
}
rteFrontend = EXT:theme_t3kit/Resources/Public/Extensions/Rtehtmlarea/Css/rteFrontend.css
rteFrontend {
# excludeFromConcatenation =
# disableCompression =
}
components = {$themes.configuration.feLayoutPath}/components.css
# rteFrontend = EXT:theme_t3kit/Resources/Public/Extensions/Rtehtmlarea/Css/rteFrontend.css
# rteFrontend {
# # excludeFromConcatenation =
# # disableCompression =
# }
components = {$themes.configuration.feLayoutPath}/css/components.css
components {
#excludeFromConcatenation =
#disableCompression =
}
maincss = {$themes.configuration.feLayoutPath}/main.css
maincss = {$themes.configuration.feLayoutPath}/css/main.css
maincss {
#excludeFromConcatenation =
#disableCompression =
}
customCss = {$themes.configuration.customPath}/css/custom.css
customCss = {$themes.configuration.customPath}/custom.css
customCss {
#excludeFromConcatenation =
#disableCompression =
Expand All @@ -68,10 +63,10 @@
[global]
[globalVar = LIT:dev = {$themes.configuration.feLayoutMode}]
page {
includeCSS {
rteFrontend = EXT:theme_t3kit/Resources/Public/Extensions/Rtehtmlarea/Css/rteFrontend.css
rteFrontend {
}
}
# includeCSS {
# rteFrontend = EXT:theme_t3kit/Resources/Public/Extensions/Rtehtmlarea/Css/rteFrontend.css
# rteFrontend {
# }
# }
}
[global]
18 changes: 9 additions & 9 deletions Configuration/TypoScript/Library/page.includeJS.setupts
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
[globalVar = LIT:less = {$themes.configuration.feLayoutMode}]
page {
includeJSFooterlibs {
jquery = {$themes.configuration.feLayoutPath}/jquery.js
jquery = {$themes.configuration.feLayoutPath}/less/jquery.js
jquery {
external = 0
# disableCompression =
# excludeFromConcatenation =
}
bootstrap = {$themes.configuration.feLayoutPath}/bootstrap.js
bootstrap = {$themes.configuration.feLayoutPath}/less/bootstrap.js
bootstrap {
external = 0
# disableCompression =
# excludeFromConcatenation =
}
components = {$themes.configuration.feLayoutPath}/components.js
components = {$themes.configuration.feLayoutPath}/less/components.js
components {
external = 0
# disableCompression =
# excludeFromConcatenation =
}
}
includeJSFooter {
mainjs = {$themes.configuration.feLayoutPath}/main.js
mainjs = {$themes.configuration.feLayoutPath}/less/main.js
mainjs {
external = 0
# disableCompression =
Expand All @@ -31,30 +31,30 @@
}
[global]

[globalVar = LIT:less = {$themes.configuration.feLayoutMode}]
[globalVar = LIT:css = {$themes.configuration.feLayoutMode}]
page {
includeJSFooterlibs {
jquery = {$themes.configuration.feLayoutPath}/jquery.js
jquery = {$themes.configuration.feLayoutPath}/css/jquery.js
jquery {
external = 0
# disableCompression =
# excludeFromConcatenation =
}
bootstrap = {$themes.configuration.feLayoutPath}/bootstrap.js
bootstrap = {$themes.configuration.feLayoutPath}/css/bootstrap.js
bootstrap {
external = 0
# disableCompression =
# excludeFromConcatenation =
}
components = {$themes.configuration.feLayoutPath}/components.js
components = {$themes.configuration.feLayoutPath}/css/components.js
components {
external = 0
# disableCompression =
# excludeFromConcatenation =
}
}
includeJSFooter {
mainjs = {$themes.configuration.feLayoutPath}/main.js
mainjs = {$themes.configuration.feLayoutPath}/css/main.js
mainjs {
external = 0
# disableCompression =
Expand Down
1 change: 0 additions & 1 deletion Configuration/TypoScript/Library/plugin.themes.setupts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

plugin.tx_themes {
view {
templateRootPaths {
Expand Down

0 comments on commit e99d657

Please sign in to comment.