[ros-diffs] [gvg] 21726: Remove display of some email addresses in Bugzilla

gvg at svn.reactos.org gvg at svn.reactos.org
Sun Apr 23 23:01:09 CEST 2006


Author: gvg
Date: Mon Apr 24 01:01:09 2006
New Revision: 21726

URL: http://svn.reactos.ru/svn/reactos?rev=21726&view=rev
Log:
Remove display of some email addresses in Bugzilla

Modified:
    trunk/web/reactos.org/htdocs/bugzilla/Bugzilla/Constants.pm
    trunk/web/reactos.org/htdocs/bugzilla/template/en/default/bug/comments.html.tmpl
    trunk/web/reactos.org/htdocs/bugzilla/template/en/default/bug/edit.html.tmpl
    trunk/web/reactos.org/htdocs/bugzilla/template/en/default/global/userselect.html.tmpl
    trunk/web/reactos.org/htdocs/bugzilla/template/en/default/list/list.html.tmpl
    trunk/web/reactos.org/htdocs/bugzilla/template/en/default/reports/edit-series.html.tmpl

Modified: trunk/web/reactos.org/htdocs/bugzilla/Bugzilla/Constants.pm
URL: http://svn.reactos.ru/svn/reactos/trunk/web/reactos.org/htdocs/bugzilla/Bugzilla/Constants.pm?rev=21726&r1=21725&r2=21726&view=diff
==============================================================================
--- trunk/web/reactos.org/htdocs/bugzilla/Bugzilla/Constants.pm (original)
+++ trunk/web/reactos.org/htdocs/bugzilla/Bugzilla/Constants.pm Mon Apr 24 01:01:09 2006
@@ -167,7 +167,7 @@
 
 # The default list of columns for buglist.cgi
 use constant DEFAULT_COLUMN_LIST => (
-    "bug_severity", "priority", "rep_platform","assigned_to",
+    "bug_severity", "priority", "rep_platform",
     "bug_status", "resolution", "short_short_desc"
 );
 

Modified: trunk/web/reactos.org/htdocs/bugzilla/template/en/default/bug/comments.html.tmpl
URL: http://svn.reactos.ru/svn/reactos/trunk/web/reactos.org/htdocs/bugzilla/template/en/default/bug/comments.html.tmpl?rev=21726&r1=21725&r2=21726&view=diff
==============================================================================
--- trunk/web/reactos.org/htdocs/bugzilla/template/en/default/bug/comments.html.tmpl (original)
+++ trunk/web/reactos.org/htdocs/bugzilla/template/en/default/bug/comments.html.tmpl Mon Apr 24 01:01:09 2006
@@ -96,8 +96,7 @@
           ------- <i>Comment
           <a name="c[% count %]" href="show_bug.cgi?id=[% bug.bug_id %]#c[% count %]">
             #[% count %]</a> From 
-          <a href="mailto:[% comment.email FILTER html %]">
-            [% comment.name FILTER html %]</a>
+            [% comment.name FILTER html %]
           [%+ comment.time FILTER time %] 
           </i>
           [% IF mode == "edit" %]

Modified: trunk/web/reactos.org/htdocs/bugzilla/template/en/default/bug/edit.html.tmpl
URL: http://svn.reactos.ru/svn/reactos/trunk/web/reactos.org/htdocs/bugzilla/template/en/default/bug/edit.html.tmpl?rev=21726&r1=21725&r2=21726&view=diff
==============================================================================
--- trunk/web/reactos.org/htdocs/bugzilla/template/en/default/bug/edit.html.tmpl (original)
+++ trunk/web/reactos.org/htdocs/bugzilla/template/en/default/bug/edit.html.tmpl Mon Apr 24 01:01:09 2006
@@ -203,7 +203,7 @@
                 <a href="page.cgi?id=fields.html#assigned_to">Assigned&nbsp;To</a>:
               </b>
             </td>
-            <td>[% bug.assigned_to.identity FILTER html %]</td>
+            <td>[% bug.assigned_to.name FILTER html %]</td>
           </tr>
 
         </table>
@@ -274,8 +274,7 @@
               <b>Reporter:</b>
             </td>
             <td>
-              <a href="mailto:[% bug.reporter.email FILTER html %]">
-                [% bug.reporter.identity FILTER html %]</a>
+              [% bug.reporter.name FILTER html %]
             </td>
           </tr>
 

Modified: trunk/web/reactos.org/htdocs/bugzilla/template/en/default/global/userselect.html.tmpl
URL: http://svn.reactos.ru/svn/reactos/trunk/web/reactos.org/htdocs/bugzilla/template/en/default/global/userselect.html.tmpl?rev=21726&r1=21725&r2=21726&view=diff
==============================================================================
--- trunk/web/reactos.org/htdocs/bugzilla/template/en/default/global/userselect.html.tmpl (original)
+++ trunk/web/reactos.org/htdocs/bugzilla/template/en/default/global/userselect.html.tmpl Mon Apr 24 01:01:09 2006
@@ -44,7 +44,7 @@
     [% IF tmpuser.visible OR value.match("\\b$tmpuser.login\\b") %]
       <option value="[% tmpuser.login FILTER html %]"
         [% " selected=\"selected\"" IF value.match("\\b$tmpuser.login\\b") %]
-      >[% tmpuser.identity FILTER html %]</option>
+      >[% tmpuser.name FILTER html %]</option>
     [% END %]
   [% END %]
 </select>

Modified: trunk/web/reactos.org/htdocs/bugzilla/template/en/default/list/list.html.tmpl
URL: http://svn.reactos.ru/svn/reactos/trunk/web/reactos.org/htdocs/bugzilla/template/en/default/list/list.html.tmpl?rev=21726&r1=21725&r2=21726&view=diff
==============================================================================
--- trunk/web/reactos.org/htdocs/bugzilla/template/en/default/list/list.html.tmpl (original)
+++ trunk/web/reactos.org/htdocs/bugzilla/template/en/default/list/list.html.tmpl Mon Apr 24 01:01:09 2006
@@ -168,11 +168,6 @@
           |
         [% END %]
 
-        [% IF bugowners %]
-          <a href="mailto:
-            [% bugowners FILTER html %]">Send&nbsp;Mail&nbsp;to&nbsp;[% terms.Bug %]&nbsp;Assignees</a> |
-        [% END %]
-
         [%# Links to more things users can do with this bug list. %]
         [% Hook.process("links") %]
       </td>

Modified: trunk/web/reactos.org/htdocs/bugzilla/template/en/default/reports/edit-series.html.tmpl
URL: http://svn.reactos.ru/svn/reactos/trunk/web/reactos.org/htdocs/bugzilla/template/en/default/reports/edit-series.html.tmpl?rev=21726&r1=21725&r2=21726&view=diff
==============================================================================
--- trunk/web/reactos.org/htdocs/bugzilla/template/en/default/reports/edit-series.html.tmpl (original)
+++ trunk/web/reactos.org/htdocs/bugzilla/template/en/default/reports/edit-series.html.tmpl Mon Apr 24 01:01:09 2006
@@ -49,9 +49,8 @@
 
 <p>
   <b>Creator</b>: 
-  [% IF creator.email %]
-    <a href="mailto:[% creator.email FILTER html %]">
-    [% creator.email FILTER html %]</a>
+  [% IF creator.name %]
+    [% creator.name FILTER html %]
   [% ELSE %]
     (automatically created by [% terms.Bugzilla %])
   [% END %]




More information about the Ros-diffs mailing list