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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
2df35fc7
Commit
2df35fc7
authored
Mar 02, 2010
by
Guy Pyrzak
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
101770
parent
8d0710ac
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
125 additions
and
16 deletions
+125
-16
attachment.js
js/attachment.js
+17
-5
attachment.css
skins/standard/attachment.css
+103
-6
create.html.tmpl
template/en/default/attachment/create.html.tmpl
+1
-1
diff-header.html.tmpl
template/en/default/attachment/diff-header.html.tmpl
+2
-2
edit.html.tmpl
template/en/default/attachment/edit.html.tmpl
+0
-0
show-multiple.html.tmpl
template/en/default/attachment/show-multiple.html.tmpl
+1
-1
create.html.tmpl
template/en/default/bug/create/create.html.tmpl
+1
-1
No files found.
js/attachment.js
View file @
2df35fc7
...
...
@@ -19,6 +19,7 @@
* Joel Peshkin <bugreport@peshkin.net>
* Erik Stambaugh <erik@dasbistro.com>
* Marc Schumann <wurblzap@gmail.com>
* Guy Pyrzak <guy.pyrzak@gmail.com>
*/
function
validateAttachmentForm
(
theform
)
{
...
...
@@ -307,7 +308,7 @@ function hideElementById(id)
{
var
elm
=
document
.
getElementById
(
id
);
if
(
elm
)
{
elm
.
style
.
display
=
'none'
;
YAHOO
.
util
.
Dom
.
addClass
(
elm
,
'bz_default_hidden'
)
;
}
}
...
...
@@ -315,8 +316,7 @@ function showElementById(id, val)
{
var
elm
=
document
.
getElementById
(
id
);
if
(
elm
)
{
if
(
!
val
)
val
=
'inline'
;
elm
.
style
.
display
=
val
;
YAHOO
.
util
.
Dom
.
removeClass
(
elm
,
'bz_default_hidden'
);
}
}
...
...
@@ -327,12 +327,24 @@ function normalizeComments()
var
small
=
document
.
getElementById
(
'smallCommentFrame'
);
var
big
=
document
.
getElementById
(
'editFrame'
);
if
(
(
small
)
&&
(
small
.
style
.
display
==
'none
'
)
)
if
(
(
small
)
&&
YAHOO
.
util
.
Dom
.
hasClass
(
small
,
'bz_default_hidden
'
)
)
{
small
.
parentNode
.
removeChild
(
small
);
}
if
(
(
big
)
&&
(
big
.
style
.
display
==
'none
'
)
)
if
(
(
big
)
&&
YAHOO
.
util
.
Dom
.
hasClass
(
big
,
'bz_default_hidden
'
)
)
{
big
.
parentNode
.
removeChild
(
big
);
}
}
function
toggle_attachment_details_visibility
(
)
{
// show hide classes
var
container
=
document
.
getElementById
(
'attachment_info'
);
if
(
YAHOO
.
util
.
Dom
.
hasClass
(
container
,
'read'
)
){
YAHOO
.
util
.
Dom
.
replaceClass
(
container
,
'read'
,
'edit'
);
}
else
{
YAHOO
.
util
.
Dom
.
replaceClass
(
container
,
'edit'
,
'read'
);
}
}
skins/standard/
create_
attachment.css
→
skins/standard/attachment.css
View file @
2df35fc7
...
...
@@ -14,6 +14,7 @@
* Joel Peshkin <bugreport@peshkin.net>
* Erik Stambaugh <erik@dasbistro.com>
* Marc Schumann <wurblzap@gmail.com>
* Guy Pyrzak <guy.pyrzak@gmail.com>
*/
table
.attachment_entry
th
{
...
...
@@ -121,10 +122,6 @@ table.attachment_info td {
vertical-align
:
middle
;
}
#attachment_attributes
{
width
:
25%
;
}
#attachment_attributes
div
{
padding-bottom
:
0.4em
;
}
...
...
@@ -140,6 +137,105 @@ table.attachment_info td {
display
:
block
;
}
#attachment_attributes
table
#flags
{
padding-top
:
1em
;
#smallCommentFrame
,
#attachment_flags
{
float
:
left
;
}
#smallCommentFrame
{
margin-right
:
1.5em
;
}
#attachment_comments_and_flags
,
#attachment_actions
{
clear
:
both
;
margin-bottom
:
1ex
;
}
#attachment_information_read_only
.title
{
font-weight
:
bold
;
font-size
:
1.5em
;
padding
:
0
;
margin
:
0
;
}
#attachment_information_read_only
.title
#bz_edit
{
font-size
:
0.7em
;
}
#attachment_information_read_only
.details
{
font-family
:
monospace
;
}
#attachment_info
.read
#attachment_information_edit
{
display
:
none
;
}
#attachment_info
.edit
#attachment_information_read_only
{
display
:
none
;
}
#attachment_info
.edit
#attachment_view_window
{
float
:
left
;
width
:
80%
;
}
#attachment_info
.edit
#attachment_information_edit
{
width
:
20%
;
}
#attachment_info
.edit
#attachment_information_edit
input
.text
,
#attachment_info
.edit
#attachment_information_edit
textarea
{
width
:
90%
;
}
#attachment_isobsolete
{
padding-right
:
1em
;
}
#attachment_information_edit
{
float
:
left
;
}
#smallCommentFrame
textarea
{
display
:
block
;
}
textarea
.bz_private
{
border
:
1px
solid
#F8C8BA
;
}
#update
{
clear
:
both
;
padding
:
1.5em
0
;
display
:
block
;
}
textarea
{
font-family
:
monospace
;
}
div
#update_container
{
clear
:
both
;
}
#attachment_flags
{
margin-bottom
:
1em
;
}
#attachment_flags
p
{
padding-bottom
:
0
;
margin-bottom
:
0
;
}
#editFrame
,
#viewDiffFrame
,
#viewFrame
{
height
:
400px
;
width
:
100%
;
}
.details
span
.bz_private
{
border-left
:
1px
solid
darkred
;
padding-left
:
0.5em
;
}
.no_javascript
.bz_hide
,
.no_javascript
.bz_edit
{
display
:
none
;
}
\ No newline at end of file
template/en/default/attachment/create.html.tmpl
View file @
2df35fc7
...
...
@@ -33,7 +33,7 @@
title = title
header = header
subheader = subheader
style_urls = [ 'skins/standard/
create_
attachment.css' ]
style_urls = [ 'skins/standard/attachment.css' ]
javascript_urls = [ "js/attachment.js", "js/util.js" ]
doc_section = "attachments.html"
%]
...
...
template/en/default/attachment/diff-header.html.tmpl
View file @
2df35fc7
...
...
@@ -53,11 +53,11 @@ Interdiff of #[% oldid %] and #[% newid %] for [% terms.bug %] #[% bugid %]
[% END %]
[% PROCESS global/header.html.tmpl doc_section = "attachments.html#patchviewer"
javascript_urls = "js/attachment.js"
style_urls = ['skins/standard/
create_
attachment.css'] %]
style_urls = ['skins/standard/attachment.css'] %]
[% ELSE %]
<html>
<head>
<link
href=
"skins/standard/
create_
attachment.css"
rel=
"stylesheet"
type=
"text/css"
>
<link
href=
"skins/standard/attachment.css"
rel=
"stylesheet"
type=
"text/css"
>
<script
src=
"js/attachment.js"
type=
"text/javascript"
></script>
</head>
<body
onload=
"[% onload FILTER html %]"
>
...
...
template/en/default/attachment/edit.html.tmpl
View file @
2df35fc7
This diff is collapsed.
Click to expand it.
template/en/default/attachment/show-multiple.html.tmpl
View file @
2df35fc7
...
...
@@ -31,7 +31,7 @@
title = title
header = header
subheader = filtered_summary
style_urls = ['skins/standard/
create_
attachment.css']
style_urls = ['skins/standard/attachment.css']
%]
<br>
...
...
template/en/default/bug/create/create.html.tmpl
View file @
2df35fc7
...
...
@@ -31,7 +31,7 @@
[% PROCESS global/header.html.tmpl
title = title
style_urls = [ 'skins/standard/yui/autocomplete.css',
'skins/standard/
create_
attachment.css',
'skins/standard/attachment.css',
'skins/standard/yui/calendar.css' ]
javascript_urls = [ "js/yui/bz_autocomplete_bundle.js",
"js/attachment.js", "js/util.js", "js/yui/calendar.js",
...
...
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