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
c5d33db7
Commit
c5d33db7
authored
Dec 14, 2011
by
Frédéric Buclin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 169752: Activity log should fuse data fields split because they didn't fit
r=glob a=LpSolit
parent
cc86e1bc
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
25 deletions
+26
-25
Bug.pm
Bugzilla/Bug.pm
+22
-17
Bug.pm
Bugzilla/WebService/Bug.pm
+1
-1
attachment.cgi
attachment.cgi
+1
-2
process_bug.cgi
process_bug.cgi
+1
-3
show_activity.cgi
show_activity.cgi
+1
-2
No files found.
Bugzilla/Bug.pm
View file @
c5d33db7
...
...
@@ -3754,12 +3754,13 @@ sub _bugs_in_order {
# Get the activity of a bug, starting from $starttime (if given).
# This routine assumes Bugzilla::Bug->check has been previously called.
sub
GetBugA
ctivity
{
my
(
$
bug_id
,
$attach_id
,
$starttime
)
=
@_
;
sub
get_a
ctivity
{
my
(
$
self
,
$attach_id
,
$starttime
)
=
@_
;
my
$dbh
=
Bugzilla
->
dbh
;
my
$user
=
Bugzilla
->
user
;
# Arguments passed to the SQL query.
my
@args
=
(
$
bug_
id
);
my
@args
=
(
$
self
->
id
);
# Only consider changes since $starttime, if given.
my
$datepart
=
""
;
...
...
@@ -3778,8 +3779,7 @@ sub GetBugActivity {
# Only includes attachments the user is allowed to see.
my
$suppjoins
=
""
;
my
$suppwhere
=
""
;
if
(
!
Bugzilla
->
user
->
is_insider
)
{
if
(
!
$user
->
is_insider
)
{
$suppjoins
=
"LEFT JOIN attachments
ON attachments.attach_id = bugs_activity.attach_id"
;
$suppwhere
=
"AND COALESCE(attachments.isprivate, 0) = 0"
;
...
...
@@ -3814,16 +3814,11 @@ sub GetBugActivity {
my
$activity_visible
=
1
;
# check if the user should see this field's activity
if
(
$fieldname
eq
'remaining_time'
||
$fieldname
eq
'estimated_time'
||
$fieldname
eq
'work_time'
||
$fieldname
eq
'deadline'
)
{
$activity_visible
=
Bugzilla
->
user
->
is_timetracker
;
if
(
grep
{
$fieldname
eq
$_
}
TIMETRACKING_FIELDS
)
{
$activity_visible
=
$user
->
is_timetracker
;
}
elsif
(
$fieldname
eq
'longdescs.isprivate'
&&
!
Bugzilla
->
user
->
is_insider
&&
$added
)
&&
!
$user
->
is_insider
&&
$added
)
{
$activity_visible
=
0
;
}
...
...
@@ -3854,14 +3849,24 @@ sub GetBugActivity {
$changes
=
[]
;
}
# If this is the same field as the previous item, then concatenate
# the data into the same change.
if
(
$operation
->
{
'who'
}
&&
$who
eq
$operation
->
{
'who'
}
&&
$when
eq
$operation
->
{
'when'
}
&&
$fieldname
eq
$operation
->
{
'fieldname'
}
&&
(
$attachid
||
0
)
==
(
$operation
->
{
'attachid'
}
||
0
))
{
my
$old_change
=
pop
@$changes
;
$removed
=
$old_change
->
{
'removed'
}
.
$removed
;
$added
=
$old_change
->
{
'added'
}
.
$added
;
}
$operation
->
{
'who'
}
=
$who
;
$operation
->
{
'when'
}
=
$when
;
$change
{
'fieldname'
}
=
$fieldname
;
$change
{
'attachid'
}
=
$attachid
;
$operation
->
{
'fieldname'
}
=
$change
{
'fieldname'
}
=
$fieldname
;
$operation
->
{
'attachid'
}
=
$change
{
'attachid'
}
=
$attachid
;
$change
{
'removed'
}
=
$removed
;
$change
{
'added'
}
=
$added
;
if
(
$comment_id
)
{
$change
{
'comment'
}
=
Bugzilla::
Comment
->
new
(
$comment_id
);
}
...
...
Bugzilla/WebService/Bug.pm
View file @
c5d33db7
...
...
@@ -355,7 +355,7 @@ sub history {
$bug_id
=
$bug
->
id
;
$item
{
id
}
=
$self
->
type
(
'int'
,
$bug_id
);
my
(
$activity
)
=
Bugzilla::Bug::
GetBugActivity
(
$bug_id
)
;
my
(
$activity
)
=
$bug
->
get_activity
;
my
@history
;
foreach
my
$changeset
(
@$activity
)
{
...
...
attachment.cgi
View file @
c5d33db7
...
...
@@ -676,8 +676,7 @@ sub update {
if
(
defined
$cgi
->
param
(
'delta_ts'
)
&&
$cgi
->
param
(
'delta_ts'
)
ne
$attachment
->
modification_time
)
{
(
$vars
->
{
'operations'
})
=
Bugzilla::Bug::
GetBugActivity
(
$bug
->
id
,
$attachment
->
id
,
$cgi
->
param
(
'delta_ts'
));
(
$vars
->
{
'operations'
})
=
$bug
->
get_activity
(
$attachment
->
id
,
$cgi
->
param
(
'delta_ts'
));
# The token contains the old modification_time. We need a new one.
$cgi
->
param
(
'token'
,
issue_hash_token
([
$attachment
->
id
,
$attachment
->
modification_time
]));
...
...
process_bug.cgi
View file @
c5d33db7
...
...
@@ -143,9 +143,7 @@ if (defined $cgi->param('delta_ts'))
my
$delta_ts_z
=
datetime_from
(
$cgi
->
param
(
'delta_ts'
));
my
$first_delta_tz_z
=
datetime_from
(
$first_bug
->
delta_ts
);
if
(
$first_delta_tz_z
ne
$delta_ts_z
)
{
(
$vars
->
{
'operations'
})
=
Bugzilla::Bug::
GetBugActivity
(
$first_bug
->
id
,
undef
,
scalar
$cgi
->
param
(
'delta_ts'
));
(
$vars
->
{
'operations'
})
=
$first_bug
->
get_activity
(
undef
,
$cgi
->
param
(
'delta_ts'
));
$vars
->
{
'title_tag'
}
=
"mid_air"
;
...
...
show_activity.cgi
View file @
c5d33db7
...
...
@@ -54,8 +54,7 @@ my $bug = Bugzilla::Bug->check($id);
# visible immediately due to replication lag.
Bugzilla
->
switch_to_shadow_db
;
(
$vars
->
{
'operations'
},
$vars
->
{
'incomplete_data'
})
=
Bugzilla::Bug::
GetBugActivity
(
$bug
->
id
);
(
$vars
->
{
'operations'
},
$vars
->
{
'incomplete_data'
})
=
$bug
->
get_activity
;
$vars
->
{
'bug'
}
=
$bug
;
...
...
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