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
672397b3
Commit
672397b3
authored
Dec 01, 2011
by
Byron Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 301656: Adds a preference to CC flag requestees to bugs
r=LpSolit, a=LpSolit
parent
f825a4de
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
8 deletions
+23
-8
Flag.pm
Bugzilla/Flag.pm
+20
-8
Install.pm
Bugzilla/Install.pm
+2
-0
setting-descs.none.tmpl
template/en/default/global/setting-descs.none.tmpl
+1
-0
No files found.
Bugzilla/Flag.pm
View file @
672397b3
...
...
@@ -282,7 +282,7 @@ sub count {
sub
set_flag
{
my
(
$class
,
$obj
,
$params
)
=
@_
;
my
(
$bug
,
$attachment
);
my
(
$bug
,
$attachment
,
$obj_flag
,
$requestee_changed
);
if
(
blessed
(
$obj
)
&&
$obj
->
isa
(
'Bugzilla::Attachment'
))
{
$attachment
=
$obj
;
$bug
=
$attachment
->
bug
;
...
...
@@ -320,13 +320,14 @@ sub set_flag {
(
$obj_flagtype
)
=
grep
{
$_
->
id
==
$flag
->
type_id
}
@
{
$obj
->
flag_types
};
push
(
@
{
$obj_flagtype
->
{
flags
}},
$flag
);
}
my
(
$obj_flag
)
=
grep
{
$_
->
id
==
$flag
->
id
}
@
{
$obj_flagtype
->
{
flags
}};
(
$obj_flag
)
=
grep
{
$_
->
id
==
$flag
->
id
}
@
{
$obj_flagtype
->
{
flags
}};
# If the flag has the correct type but cannot be found above, this means
# the flag is going to be removed (e.g. because this is a pending request
# and the attachment is being marked as obsolete).
return
unless
$obj_flag
;
$class
->
_validate
(
$obj_flag
,
$obj_flagtype
,
$params
,
$bug
,
$attachment
);
(
$obj_flag
,
$requestee_changed
)
=
$class
->
_validate
(
$obj_flag
,
$obj_flagtype
,
$params
,
$bug
,
$attachment
);
}
# Create a new flag.
elsif
(
$params
->
{
type_id
})
{
...
...
@@ -358,12 +359,21 @@ sub set_flag {
}
}
$class
->
_validate
(
undef
,
$obj_flagtype
,
$params
,
$bug
,
$attachment
);
(
$obj_flag
,
$requestee_changed
)
=
$class
->
_validate
(
undef
,
$obj_flagtype
,
$params
,
$bug
,
$attachment
);
}
else
{
ThrowCodeError
(
'param_required'
,
{
function
=>
$class
.
'->set_flag'
,
param
=>
'id/type_id'
});
}
if
(
$obj_flag
&&
$requestee_changed
&&
$obj_flag
->
requestee_id
&&
$obj_flag
->
requestee
->
setting
(
'requestee_cc'
)
eq
'on'
)
{
$bug
->
add_cc
(
$obj_flag
->
requestee
);
}
}
sub
_validate
{
...
...
@@ -383,23 +393,25 @@ sub _validate {
$obj_flag
->
_set_status
(
$params
->
{
status
});
$obj_flag
->
_set_requestee
(
$params
->
{
requestee
},
$attachment
,
$params
->
{
skip_roe
});
# The requestee ID can be undefined.
my
$requestee_changed
=
(
$obj_flag
->
requestee_id
||
0
)
!=
(
$old_requestee_id
||
0
);
# The setter field MUST NOT be updated if neither the status
# nor the requestee fields changed.
if
((
$obj_flag
->
status
ne
$old_status
)
# The requestee ID can be undefined.
||
((
$obj_flag
->
requestee_id
||
0
)
!=
(
$old_requestee_id
||
0
)))
{
if
((
$obj_flag
->
status
ne
$old_status
)
||
$requestee_changed
)
{
$obj_flag
->
_set_setter
(
$params
->
{
setter
});
}
# If the flag is deleted, remove it from the list.
if
(
$obj_flag
->
status
eq
'X'
)
{
@
{
$flag_type
->
{
flags
}}
=
grep
{
$_
->
id
!=
$obj_flag
->
id
}
@
{
$flag_type
->
{
flags
}};
return
;
}
# Add the newly created flag to the list.
elsif
(
!
$obj_flag
->
id
)
{
push
(
@
{
$flag_type
->
{
flags
}},
$obj_flag
);
}
return
wantarray
?
(
$obj_flag
,
$requestee_changed
)
:
$obj_flag
;
}
=pod
...
...
Bugzilla/Install.pm
View file @
672397b3
...
...
@@ -93,6 +93,8 @@ sub SETTINGS {
# 2011-06-21 glob@mozilla.com -- Bug 589128
email_format
=>
{
options
=>
[
'html'
,
'text_only'
],
default
=>
'html'
},
# 2011-10-11 glob@mozilla.com -- Bug 301656
requestee_cc
=>
{
options
=>
[
'on'
,
'off'
],
default
=>
'on'
},
}
};
...
...
template/en/default/global/setting-descs.none.tmpl
View file @
672397b3
...
...
@@ -50,6 +50,7 @@
"email_format" => "Preferred email format",
"html" => "HTML",
"text_only" => "Text Only",
"requestee_cc" => "Automatically add me to the CC list of $terms.bugs I am requested to review",
}
%]
...
...
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