forked from mantisbt/mantisbt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bug_revision_view_page.php
154 lines (118 loc) · 4.38 KB
/
bug_revision_view_page.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
# Mantis - a php based bugtracking system
# Mantis is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# Mantis is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Mantis. If not, see <http://www.gnu.org/licenses/>.
/**
* @package MantisBT
* @version $Id$
* @copyright Copyright (C) 2000 - 2002 Kenzaburo Ito - [email protected]
* @copyright Copyright (C) 2002 - 2013 MantisBT Team - [email protected]
* @link http://www.mantisbt.org
*/
require_once( 'core.php' );
$f_bug_id = gpc_get_int( 'bug_id', 0 );
$f_bugnote_id = gpc_get_int( 'bugnote_id', 0 );
$f_rev_id = gpc_get_int( 'rev_id', 0 );
$t_title = '';
if ( $f_bug_id ) {
$t_bug_id = $f_bug_id;
$t_bug_data = bug_get( $t_bug_id, true );
$t_bug_revisions = array_reverse( bug_revision_list( $t_bug_id ), true );
$t_title = lang_get( 'issue_id' ) . $t_bug_id;
} else if ( $f_bugnote_id ) {
$t_bug_id = bugnote_get_field( $f_bugnote_id, 'bug_id' );
$t_bug_data = bug_get( $t_bug_id, true );
$t_bug_revisions = bug_revision_list( $t_bug_id, REV_ANY, $f_bugnote_id );
$t_title = lang_get( 'bugnote' ) . ' ' . $f_bugnote_id;
} else if ( $f_rev_id ) {
$t_bug_revisions = bug_revision_like( $f_rev_id );
if ( count( $t_bug_revisions ) < 1 ) {
trigger_error( ERROR_GENERIC, ERROR );
}
$t_bug_id = $t_bug_revisions[$f_rev_id]['bug_id'];
$t_bug_data = bug_get( $t_bug_id, true );
$t_title = lang_get( 'issue_id' ) . $t_bug_id;
} else {
trigger_error( ERROR_GENERIC, ERROR );
}
function show_revision( $t_revision ) {
static $s_can_drop = null;
static $s_drop_token = null;
static $s_user_access = null;
if ( is_null( $s_can_drop ) ) {
$s_can_drop = access_has_bug_level( config_get( 'bug_revision_drop_threshold' ), $t_revision['bug_id'] );
$s_drop_token = form_security_param( 'bug_revision_drop' );
}
switch( $t_revision['type'] ) {
case REV_DESCRIPTION:
$t_label = lang_get( 'description' );
break;
case REV_STEPS_TO_REPRODUCE:
$t_label = lang_get( 'steps_to_reproduce' );
break;
case REV_ADDITIONAL_INFO:
$t_label = lang_get( 'additional_information' );
break;
case REV_BUGNOTE:
if ( is_null( $s_user_access ) ) {
$s_user_access = access_has_bug_level( config_get( 'private_bugnote_threshold' ), $t_revision['bug_id'] );
}
if ( !$s_user_access ) {
return null;
}
$t_label = lang_get( 'bugnote' );
break;
default:
$t_label = '';
}
$t_by_string = sprintf( lang_get( 'revision_by' ), string_display_line( date( config_get( 'normal_date_format' ), $t_revision['timestamp'] ) ), string_display_line( user_get_name( $t_revision['user_id'] ) ) );
?>
<tr class="spacer"><td><a name="r<?php echo $t_revision['id'] ?>"></a></td></tr>
<tr <?php echo helper_alternate_class() ?>>
<td class="category"><?php echo lang_get( 'revision' ) ?></td>
<td colspan="2"><?php echo $t_by_string ?></td>
<td class="center" width="5%">
<?php if ( $s_can_drop ) {
print_bracket_link( 'bug_revision_drop.php?id=' . $t_revision['id'] . $s_drop_token, lang_get( 'revision_drop' ) );
} ?>
</tr>
<tr <?php echo helper_alternate_class() ?>>
<td class="category"><?php echo $t_label ?></td>
<td colspan="3"><?php echo string_display_links( $t_revision['value'] ) ?></td>
</tr>
<?php
}
html_page_top( bug_format_summary( $t_bug_id, SUMMARY_CAPTION ) );
print_recently_visited();
?>
<br />
<table class="width100" cellspacing="1">
<tr>
<td class="form-title" colspan="2"><?php echo lang_get( 'view_revisions' ), ': ', $t_title ?></td>
<td class="right" colspan="2">
<?php
if ( !$f_bug_id && !$f_bugnote_id ) { print_bracket_link( '?bug_id=' . $t_bug_id, lang_get( 'all_revisions' ) ); }
print_bracket_link( 'view.php?id=' . $t_bug_id, lang_get( 'back_to_issue' ) );
?>
</td>
</tr>
<tr <?php echo helper_alternate_class() ?>>
<td class="category" width="15%"><?php echo lang_get( 'summary' ) ?></td>
<td colspan="3"><?php echo bug_format_summary( $t_bug_id, SUMMARY_FIELD ) ?></td>
</tr>
<?php foreach( $t_bug_revisions as $t_rev ) {
show_revision( $t_rev );
} ?>
</table>
<?php
html_page_bottom();