Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
9c13acab
Commit
9c13acab
authored
Sep 27, 2010
by
Max Kanat-Alexander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 595380: Add a ?mtime string to all of the manually-inserted
<script src> and <link href> tags in Bugzilla r=glob, a=mkanat
parent
f64efa79
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
11 additions
and
8 deletions
+11
-8
Template.pm
Bugzilla/Template.pm
+1
-1
diff-header.html.tmpl
template/en/default/attachment/diff-header.html.tmpl
+4
-2
comments.html.tmpl
template/en/default/bug/comments.html.tmpl
+1
-1
list.html.tmpl
template/en/default/flag/list.html.tmpl
+1
-1
header.html.tmpl
template/en/default/global/header.html.tmpl
+2
-2
list-simple.html.tmpl
template/en/default/list/list-simple.html.tmpl
+2
-1
No files found.
Bugzilla/Template.pm
View file @
9c13acab
...
...
@@ -795,7 +795,7 @@ sub create {
email
=>
\&
Bugzilla::Util::
email_filter
,
mtime
_url
=>
\&
mtime_filter
,
mtime
=>
\&
mtime_filter
,
# iCalendar contentline filter
ics
=>
[
sub
{
...
...
template/en/default/attachment/diff-header.html.tmpl
View file @
9c13acab
...
...
@@ -57,8 +57,10 @@ Interdiff of #[% oldid %] and #[% newid %] for [% terms.bug %] #[% bugid %]
[% ELSE %]
<html>
<head>
<link
href=
"skins/standard/attachment.css"
rel=
"stylesheet"
type=
"text/css"
>
<script
src=
"js/attachment.js"
type=
"text/javascript"
></script>
<link
href=
"[% 'skins/standard/attachment.css' FILTER mtime %]"
rel=
"stylesheet"
type=
"text/css"
>
<script
src=
"[% 'js/attachment.js' FILTER mtime %]"
type=
"text/javascript"
></script>
</head>
<body
onload=
"[% onload FILTER html %]"
>
[% END %]
...
...
template/en/default/bug/comments.html.tmpl
View file @
9c13acab
...
...
@@ -22,7 +22,7 @@
[% PROCESS bug/time.html.tmpl %]
<script src="
js/comments.js
" type="text/javascript">
<script src="
[% 'js/comments.js' FILTER mtime %]
" type="text/javascript">
</script>
[% DEFAULT start_at = 0 mode = "show" %]
...
...
template/en/default/flag/list.html.tmpl
View file @
9c13acab
...
...
@@ -30,7 +30,7 @@
[% DEFAULT flag_table_id = "flags" %]
<script
type="text/javascript" src="js/flag.js
"></script>
<script
src="[% 'js/flag.js' FILTER mtime %]" type="text/javascript
"></script>
<table id="[% flag_table_id FILTER html %]">
[% UNLESS flag_no_header %]
...
...
template/en/default/global/header.html.tmpl
View file @
9c13acab
...
...
@@ -104,7 +104,7 @@
[%# This allows people to switch back to the "Classic" skin if they
# are in another skin.
#%]
<link
href=
"[% 'skins/standard/global.css' FILTER mtime
_url
FILTER html %]"
<link
href=
"[% 'skins/standard/global.css' FILTER mtime FILTER html %]"
rel=
"alternate stylesheet"
title=
"[% setting_descs.standard FILTER html %]"
>
[% FOREACH style_url = css_sets.standard %]
...
...
@@ -327,5 +327,5 @@
[% END %]
[% BLOCK format_js_link %]
<script
type=
"text/javascript"
src=
"[% javascript_url FILTER mtime
_url
FILTER html %]"
></script>
<script
type=
"text/javascript"
src=
"[% javascript_url FILTER mtime FILTER html %]"
></script>
[% END %]
template/en/default/list/list-simple.html.tmpl
View file @
9c13acab
...
...
@@ -39,7 +39,8 @@
<head>
<title>
[% title FILTER html %]
</title>
<base
href=
"[% urlbase FILTER html %]"
>
<link
href=
"skins/standard/buglist.css"
rel=
"stylesheet"
type=
"text/css"
>
<link
href=
"[% 'skins/standard/buglist.css' FILTER mtime %]"
rel=
"stylesheet"
type=
"text/css"
>
</head>
<body>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment