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
29b76138
Commit
29b76138
authored
Jul 09, 2013
by
Simon Green
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 885646: Bugzilla::BugMail::_get_diff should rejoin split activity entries
r=glob, a=justdave
parent
6029d198
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
60 additions
and
34 deletions
+60
-34
Bug.pm
Bugzilla/Bug.pm
+2
-31
BugMail.pm
Bugzilla/BugMail.pm
+21
-2
Util.pm
Bugzilla/Util.pm
+37
-1
No files found.
Bugzilla/Bug.pm
View file @
29b76138
...
...
@@ -3899,8 +3899,8 @@ sub get_activity {
&&
(
$attachid
||
0
)
==
(
$operation
->
{
'attachid'
}
||
0
))
{
my
$old_change
=
pop
@$changes
;
$removed
=
_
join_activity_entries
(
$fieldname
,
$old_change
->
{
'removed'
},
$removed
);
$added
=
_
join_activity_entries
(
$fieldname
,
$old_change
->
{
'added'
},
$added
);
$removed
=
join_activity_entries
(
$fieldname
,
$old_change
->
{
'removed'
},
$removed
);
$added
=
join_activity_entries
(
$fieldname
,
$old_change
->
{
'added'
},
$added
);
}
$operation
->
{
'who'
}
=
$who
;
$operation
->
{
'when'
}
=
$when
;
...
...
@@ -3925,35 +3925,6 @@ sub get_activity {
return
(
\
@operations
,
$incomplete_data
);
}
sub
_join_activity_entries
{
my
(
$field
,
$current_change
,
$new_change
)
=
@_
;
# We need to insert characters as these were removed by old
# LogActivityEntry code.
return
$new_change
if
$current_change
eq
''
;
# Buglists and see_also need the comma restored
if
(
$field
eq
'dependson'
||
$field
eq
'blocked'
||
$field
eq
'see_also'
)
{
if
(
substr
(
$new_change
,
0
,
1
)
eq
','
||
substr
(
$new_change
,
0
,
1
)
eq
' '
)
{
return
$current_change
.
$new_change
;
}
else
{
return
$current_change
.
', '
.
$new_change
;
}
}
# Assume bug_file_loc contain a single url, don't insert a delimiter
if
(
$field
eq
'bug_file_loc'
)
{
return
$current_change
.
$new_change
;
}
# All other fields get a space
if
(
substr
(
$new_change
,
0
,
1
)
eq
' '
)
{
return
$current_change
.
$new_change
;
}
else
{
return
$current_change
.
' '
.
$new_change
;
}
}
# Update the bugs_activity table to reflect changes made in bugs.
sub
LogActivityEntry
{
my
(
$i
,
$col
,
$removed
,
$added
,
$whoid
,
$timestamp
,
$comment_id
)
=
@_
;
...
...
Bugzilla/BugMail.pm
View file @
29b76138
...
...
@@ -418,7 +418,8 @@ sub _get_diffs {
ON fielddefs.id = bugs_activity.fieldid
WHERE bugs_activity.bug_id = ?
$when_restriction
ORDER BY bugs_activity.bug_when"
,
{
Slice
=>
{}},
@args
);
ORDER BY bugs_activity.bug_when, bugs_activity.id"
,
{
Slice
=>
{}},
@args
);
foreach
my
$diff
(
@$diffs
)
{
$user_cache
->
{
$diff
->
{
who
}}
||=
new
Bugzilla::
User
(
$diff
->
{
who
});
...
...
@@ -435,7 +436,25 @@ sub _get_diffs {
}
}
return
@$diffs
;
my
@changes
=
();
foreach
my
$diff
(
@$diffs
)
{
# If this is the same field as the previous item, then concatenate
# the data into the same change.
if
(
scalar
(
@changes
)
&&
$diff
->
{
field_name
}
eq
$changes
[
-
1
]
->
{
field_name
}
&&
$diff
->
{
bug_when
}
eq
$changes
[
-
1
]
->
{
bug_when
}
&&
$diff
->
{
who
}
eq
$changes
[
-
1
]
->
{
who
}
&&
(
$diff
->
{
attach_id
}
//
0
)
==
(
$changes
[
-
1
]
->
{
attach_id
}
//
0
)
&&
(
$diff
->
{
comment_id
}
//
0
)
==
(
$changes
[
-
1
]
->
{
comment_id
}
//
0
)
)
{
my
$old_change
=
pop
@changes
;
$diff
->
{
old
}
=
join_activity_entries
(
$diff
->
{
field_name
},
$old_change
->
{
old
},
$diff
->
{
old
});
$diff
->
{
new
}
=
join_activity_entries
(
$diff
->
{
field_name
},
$old_change
->
{
new
},
$diff
->
{
new
});
}
push
@changes
,
$diff
;
}
return
@changes
;
}
sub
_get_new_bugmail_fields
{
...
...
Bugzilla/Util.pm
View file @
29b76138
...
...
@@ -21,7 +21,8 @@ use base qw(Exporter);
is_7bit_clean bz_crypt generate_random_password
validate_email_syntax check_email_syntax clean_text
get_text template_var disable_utf8
detect_encoding)
;
detect_encoding
join_activity_entries)
;
use
Bugzilla::
Constants
;
use
Bugzilla::
RNG
qw(irand)
;
...
...
@@ -472,6 +473,35 @@ sub find_wrap_point {
return
$wrappoint
;
}
sub
join_activity_entries
{
my
(
$field
,
$current_change
,
$new_change
)
=
@_
;
# We need to insert characters as these were removed by old
# LogActivityEntry code.
return
$new_change
if
$current_change
eq
''
;
# Buglists and see_also need the comma restored
if
(
$field
eq
'dependson'
||
$field
eq
'blocked'
||
$field
eq
'see_also'
)
{
if
(
substr
(
$new_change
,
0
,
1
)
eq
','
||
substr
(
$new_change
,
0
,
1
)
eq
' '
)
{
return
$current_change
.
$new_change
;
}
else
{
return
$current_change
.
', '
.
$new_change
;
}
}
# Assume bug_file_loc contain a single url, don't insert a delimiter
if
(
$field
eq
'bug_file_loc'
)
{
return
$current_change
.
$new_change
;
}
# All other fields get a space
if
(
substr
(
$new_change
,
0
,
1
)
eq
' '
)
{
return
$current_change
.
$new_change
;
}
else
{
return
$current_change
.
' '
.
$new_change
;
}
}
sub
wrap_hard
{
my
(
$string
,
$columns
)
=
@_
;
local
$
Text::Wrap::
columns
=
$columns
;
...
...
@@ -1029,6 +1059,12 @@ Search for a comma, a whitespace or a hyphen to split $string, within the first
$maxpos characters. If none of them is found, just split $string at $maxpos.
The search starts at $maxpos and goes back to the beginning of the string.
=item C<join_activity_entries($field, $current_change, $new_change)>
Joins two strings together so they appear as one. The field name is specified
as the method of joining the two strings depends on this. Returns the
combined string.
=item C<is_7bit_clean($str)>
Returns true is the string contains only 7-bit characters (ASCII 32 through 126,
...
...
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