Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
f018bfc7
Unverified
Commit
f018bfc7
authored
7 years ago
by
John Molakvoæ
Committed by
Morris Jobke
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fixed md5 generation and added fallback for scss requests
Signed-off-by:
John Molakvoæ (skjnldsv)
<
skjnldsv@protonmail.com
>
parent
820e7b5a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/private/TemplateLayout.php
+32
-6
32 additions, 6 deletions
lib/private/TemplateLayout.php
with
32 additions
and
6 deletions
lib/private/TemplateLayout.php
+
32
−
6
View file @
f018bfc7
...
@@ -188,22 +188,32 @@ class TemplateLayout extends \OC_Template {
...
@@ -188,22 +188,32 @@ class TemplateLayout extends \OC_Template {
if
(
substr
(
$file
,
-
strlen
(
'print.css'
))
===
'print.css'
)
{
if
(
substr
(
$file
,
-
strlen
(
'print.css'
))
===
'print.css'
)
{
$this
->
append
(
'printcssfiles'
,
$web
.
'/'
.
$file
.
$this
->
getVersionHashSuffix
()
);
$this
->
append
(
'printcssfiles'
,
$web
.
'/'
.
$file
.
$this
->
getVersionHashSuffix
()
);
}
else
{
}
else
{
$this
->
append
(
'cssfiles'
,
$web
.
'/'
.
$file
.
$this
->
getVersionHashSuffix
(
$web
)
);
$this
->
append
(
'cssfiles'
,
$web
.
'/'
.
$file
.
$this
->
getVersionHashSuffix
(
$web
,
$file
)
);
}
}
}
}
}
}
protected
function
getVersionHashSuffix
(
$
app
=
false
)
{
protected
function
getVersionHashSuffix
(
$
path
=
false
,
$file
=
false
)
{
if
(
\OC
::
$server
->
getConfig
()
->
getSystemValue
(
'debug'
,
false
))
{
if
(
\OC
::
$server
->
getConfig
()
->
getSystemValue
(
'debug'
,
false
))
{
// allows chrome workspace mapping in debug mode
// allows chrome workspace mapping in debug mode
return
""
;
return
""
;
}
}
if
(
$app
!==
false
&&
$app
!==
''
)
{
$v
=
\OC_App
::
getAppVersions
();
$v
=
\OC_App
::
getAppVersions
();
$appName
=
end
(
explode
(
'/'
,
$app
));
// Try the webroot path for a match
if
(
$path
!==
false
&&
$path
!==
''
)
{
$appName
=
$this
->
getAppNamefromPath
(
$path
);
if
(
array_key_exists
(
$appName
,
$v
))
{
$appVersion
=
$v
[
$appName
];
return
'?v='
.
substr
(
md5
(
$appVersion
),
0
,
8
)
.
'-'
.
$this
->
config
->
getAppValue
(
'theming'
,
'cachebuster'
,
'0'
);
}
}
// fallback to the file path instead
if
(
$file
!==
false
&&
$file
!==
''
)
{
$appName
=
$this
->
getAppNamefromPath
(
$file
);
if
(
array_key_exists
(
$appName
,
$v
))
{
if
(
array_key_exists
(
$appName
,
$v
))
{
$appVersion
=
$v
[
$appName
];
$appVersion
=
$v
[
$appName
];
return
'?v='
.
substr
(
md5
(
implode
(
','
,
$appVersion
)
)
,
0
,
8
)
.
'-'
.
$this
->
config
->
getAppValue
(
'theming'
,
'cachebuster'
,
'0'
);
return
'?v='
.
substr
(
md5
(
$appVersion
),
0
,
8
)
.
'-'
.
$this
->
config
->
getAppValue
(
'theming'
,
'cachebuster'
,
'0'
);
}
}
}
}
...
@@ -238,6 +248,22 @@ class TemplateLayout extends \OC_Template {
...
@@ -238,6 +248,22 @@ class TemplateLayout extends \OC_Template {
return
$locator
->
getResources
();
return
$locator
->
getResources
();
}
}
/**
* @param string $path
* @return string
*/
static
public
function
getAppNamefromPath
(
$path
)
{
if
(
$path
!==
''
&&
is_string
(
$path
))
{
$pathParts
=
explode
(
'/'
,
$path
);
if
(
$pathParts
[
0
]
===
'css'
)
{
// This is a scss request
return
$pathParts
[
1
];
}
return
end
(
$pathParts
);
}
}
/**
/**
* @param array $scripts
* @param array $scripts
* @return array
* @return array
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment