* [gentoo-commits] proj/gentoo-bugzilla:master commit in: template/en/default/attachment/
@ 2018-09-30 8:01 Michał Górny
0 siblings, 0 replies; 3+ messages in thread
From: Michał Górny @ 2018-09-30 8:01 UTC (permalink / raw
To: gentoo-commits
commit: 607033bbd1e5b524eaf5c74e3914590d82b3742a
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sun Sep 30 08:00:54 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Sep 30 08:00:54 2018 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-bugzilla.git/commit/?id=607033bb
attachment/list: Display attachment filename
Bug: https://bugs.gentoo.org/667272
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
template/en/default/attachment/list.html.tmpl | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/template/en/default/attachment/list.html.tmpl b/template/en/default/attachment/list.html.tmpl
index 9676dd67b..a7205ddcd 100644
--- a/template/en/default/attachment/list.html.tmpl
+++ b/template/en/default/attachment/list.html.tmpl
@@ -75,7 +75,8 @@ function toggle_display(link) {
<span class="bz_attach_extra_info">
[% IF attachment.datasize %]
- ([% attachment.datasize FILTER unitconvert %],
+ ([% attachment.filename FILTER html %],
+ [% attachment.datasize FILTER unitconvert %],
[% IF attachment.ispatch %]
patch)
[% ELSE %]
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gentoo-bugzilla:master commit in: template/en/default/attachment/
@ 2018-12-01 11:52 Michał Górny
0 siblings, 0 replies; 3+ messages in thread
From: Michał Górny @ 2018-12-01 11:52 UTC (permalink / raw
To: gentoo-commits
commit: 4c97db6dec7d51c7c1bcdef6e8798a1741051b3f
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 25 15:02:37 2018 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 1 11:52:06 2018 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-bugzilla.git/commit/?id=4c97db6d
Add notification about GLEP 76 and some more attachment tips
Bug: https://bugs.gentoo.org/668368
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
template/en/default/attachment/createformcontents.html.tmpl | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/template/en/default/attachment/createformcontents.html.tmpl b/template/en/default/attachment/createformcontents.html.tmpl
index c7963712e..a12dee82d 100644
--- a/template/en/default/attachment/createformcontents.html.tmpl
+++ b/template/en/default/attachment/createformcontents.html.tmpl
@@ -8,6 +8,15 @@
[% max_local = Param('maxlocalattachment') * 1024 %]
[% max_limit = Param('maxattachmentsize')> max_local ? Param('maxattachmentsize') : max_local %]
+<tr>
+ <td class="comment" colspan="2">
+ <ol>
+ <li>Please attach build logs and other informational files as <em>plain text</em>. If build log is larger than [% max_limit FILTER html %] KB, please compress it using compression tool such as bzip2 or xz (<em>without</em> tar).</li>
+ <li>Patches, ebuilds and other copyrightable files meant for integration must conform to the Gentoo <a rel='external' href='https://www.gentoo.org/glep/glep-0076.html'>copyright policy</a>. Such conformance must be explicitly acknowledged through <a rel='external' href='https://www.gentoo.org/glep/glep-0076.html#certificate-of-origin'>GCO</a> sign-off, confirmed with <em>your real name</em>.</li>
+ <li>Please attach ebuild updates and new packages preferably as git-format patches with explanatory commit messages (see: <a rel='external' href='https://www.gentoo.org/glep/glep-0066.html'>GLEP 66</a>) and a GCO sign-off. Alternatively, please include the sign-off in a comment when attaching non-patch format files.</li>
+ </ol>
+ </td>
+</tr>
<tr class="attachment_data">
<th><label for="data">File</label>:</th>
<td>
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gentoo-bugzilla:master commit in: template/en/default/attachment/
@ 2019-10-31 3:43 Michał Górny
0 siblings, 0 replies; 3+ messages in thread
From: Michał Górny @ 2019-10-31 3:43 UTC (permalink / raw
To: gentoo-commits
commit: a1c661884709ee728a24acd336fb770b90d06893
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 31 03:42:13 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Oct 31 03:42:13 2019 +0000
URL: https://gitweb.gentoo.org/proj/gentoo-bugzilla.git/commit/?id=a1c66188
attachment: Add a note about file read permissions
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
template/en/default/attachment/createformcontents.html.tmpl | 1 +
1 file changed, 1 insertion(+)
diff --git a/template/en/default/attachment/createformcontents.html.tmpl b/template/en/default/attachment/createformcontents.html.tmpl
index a12dee82d..e38ab27a9 100644
--- a/template/en/default/attachment/createformcontents.html.tmpl
+++ b/template/en/default/attachment/createformcontents.html.tmpl
@@ -11,6 +11,7 @@
<tr>
<td class="comment" colspan="2">
<ol>
+ <li>Make sure that your user has permissions to read the file you are trying to attach. If you don't, you will most likel get a confusing error message.</li>
<li>Please attach build logs and other informational files as <em>plain text</em>. If build log is larger than [% max_limit FILTER html %] KB, please compress it using compression tool such as bzip2 or xz (<em>without</em> tar).</li>
<li>Patches, ebuilds and other copyrightable files meant for integration must conform to the Gentoo <a rel='external' href='https://www.gentoo.org/glep/glep-0076.html'>copyright policy</a>. Such conformance must be explicitly acknowledged through <a rel='external' href='https://www.gentoo.org/glep/glep-0076.html#certificate-of-origin'>GCO</a> sign-off, confirmed with <em>your real name</em>.</li>
<li>Please attach ebuild updates and new packages preferably as git-format patches with explanatory commit messages (see: <a rel='external' href='https://www.gentoo.org/glep/glep-0066.html'>GLEP 66</a>) and a GCO sign-off. Alternatively, please include the sign-off in a comment when attaching non-patch format files.</li>
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-10-31 3:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-31 3:43 [gentoo-commits] proj/gentoo-bugzilla:master commit in: template/en/default/attachment/ Michał Górny
-- strict thread matches above, loose matches on Subject: below --
2018-12-01 11:52 Michał Górny
2018-09-30 8:01 Michał Górny
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox