[Rt-commit] rt branch, 4.4-trunk, updated. rt-4.4.2-48-gd908dee

Alex Vandiver alexmv at bestpractical.com
Mon Nov 6 13:54:48 EST 2017


The branch, 4.4-trunk has been updated
       via  d908deeebf9c47514ccdb4253dd12ae80d8f1612 (commit)
       via  2e6351b4196d081d9ef3ed0b0c8c8b377de3ed4e (commit)
      from  8713a66cb87097a01d51289b6b68fa0a174559a6 (commit)

Summary of changes:
 lib/RT/Action/LinearEscalate.pm         |  8 -----
 lib/RT/Action/NotifyGroup.pm            |  8 -----
 lib/RT/Action/NotifyGroupAsComment.pm   |  6 ----
 lib/RT/Action/UpdateParentTimeWorked.pm |  6 ----
 lib/RT/Condition/TimeWorkedChange.pm    |  6 ----
 lib/RT/Group.pm                         | 14 --------
 lib/RT/Shredder.pm                      | 64 ---------------------------------
 lib/RT/Ticket.pm                        | 17 ---------
 8 files changed, 129 deletions(-)

- Log -----------------------------------------------------------------
commit 2e6351b4196d081d9ef3ed0b0c8c8b377de3ed4e
Author: Alex Vandiver <alex at chmrr.net>
Date:   Mon Nov 6 13:49:44 2017 -0500

    Remove AUTHORS from files which don't need it
    
    The AUTHORS information is primarily from extensions that were merged
    in, or files dating back to the very first vestiges of the codebase.
    It is redundant with the git author information, and the primary
    points of contact should not be encouraged to be anything but the
    general Discourse site or issues.bestpractical.com
    
    This also removes vestigal and out-of-date information left over from
    before when Shredder was merged into core.
    
    Closes GH-233.

diff --git a/lib/RT/Action/LinearEscalate.pm b/lib/RT/Action/LinearEscalate.pm
index b209177..ad8234d 100644
--- a/lib/RT/Action/LinearEscalate.pm
+++ b/lib/RT/Action/LinearEscalate.pm
@@ -263,11 +263,3 @@ sub Commit {
 RT::Base->_ImportOverlays();
 
 1;
-
-=head1 AUTHORS
-
-Kevin Riggle E<lt>kevinr at bestpractical.comE<gt>
-
-Ruslan Zakirov E<lt>ruz at bestpractical.comE<gt>
-
-=cut
diff --git a/lib/RT/Action/NotifyGroup.pm b/lib/RT/Action/NotifyGroup.pm
index 41f2b78..0cfa233 100644
--- a/lib/RT/Action/NotifyGroup.pm
+++ b/lib/RT/Action/NotifyGroup.pm
@@ -189,14 +189,6 @@ sub __PushUserAddress {
 }
 
 
-=head1 AUTHOR
-
-Ruslan U. Zakirov E<lt>ruz at bestpractical.comE<gt>
-
-L<RT::Action::NotifyGroupAsComment>, F<rt-email-group-admin>
-
-=cut
-
 RT::Base->_ImportOverlays();
 
 1;
diff --git a/lib/RT/Action/NotifyGroupAsComment.pm b/lib/RT/Action/NotifyGroupAsComment.pm
index 82841d5..53a0120 100644
--- a/lib/RT/Action/NotifyGroupAsComment.pm
+++ b/lib/RT/Action/NotifyGroupAsComment.pm
@@ -70,12 +70,6 @@ sub SetReturnAddress {
     return $self->SUPER::SetReturnAddress( @_, is_comment => 1 );
 }
 
-=head1 AUTHOR
-
-Ruslan U. Zakirov E<lt>ruz at bestpractical.comE<gt>
-
-=cut
-
 RT::Base->_ImportOverlays();
 
 1;
diff --git a/lib/RT/Action/UpdateParentTimeWorked.pm b/lib/RT/Action/UpdateParentTimeWorked.pm
index 1e1b543..0708955 100644
--- a/lib/RT/Action/UpdateParentTimeWorked.pm
+++ b/lib/RT/Action/UpdateParentTimeWorked.pm
@@ -136,10 +136,4 @@ sub Commit {
     }
 }
 
-=head1 AUTHOR
-
-Best Practical Solutions, LLC E<lt>modules at bestpractical.comE<gt>
-
-=cut
-
 1;
diff --git a/lib/RT/Condition/TimeWorkedChange.pm b/lib/RT/Condition/TimeWorkedChange.pm
index 0325526..57f20b6 100644
--- a/lib/RT/Condition/TimeWorkedChange.pm
+++ b/lib/RT/Condition/TimeWorkedChange.pm
@@ -75,10 +75,4 @@ sub IsApplicable {
     return 0;
 }
 
-=head1 AUTHOR
-
-Best Practical Solutions, LLC E<lt>modules at bestpractical.comE<gt>
-
-=cut
-
 1;
diff --git a/lib/RT/Group.pm b/lib/RT/Group.pm
index e6fe7dd..280ac61 100644
--- a/lib/RT/Group.pm
+++ b/lib/RT/Group.pm
@@ -1353,20 +1353,6 @@ sub Label {
     return $self->loc($self->Name);
 }
 
-=head1 AUTHOR
-
-Jesse Vincent, jesse at bestpractical.com
-
-=head1 SEE ALSO
-
-RT
-
-=cut
-
-
-
-
-
 =head2 id
 
 Returns the current value of id.
diff --git a/lib/RT/Shredder.pm b/lib/RT/Shredder.pm
index 108164d..da61b67 100644
--- a/lib/RT/Shredder.pm
+++ b/lib/RT/Shredder.pm
@@ -799,70 +799,6 @@ sub RollbackDumpTo {
 1;
 __END__
 
-=head1 NOTES
-
-=head2 Database transactions support
-
-Since 0.03_01 RT::Shredder uses database transactions and should be
-much safer to run on production servers.
-
-=head2 Foreign keys
-
-Mainstream RT doesn't use FKs, but at least I posted DDL script that creates them
-in mysql DB, note that if you use FKs then this two valid keys don't allow delete
-Tickets because of bug in MySQL:
-
-  ALTER TABLE Tickets ADD FOREIGN KEY (EffectiveId) REFERENCES Tickets(id);
-  ALTER TABLE CachedGroupMembers ADD FOREIGN KEY (Via) REFERENCES CachedGroupMembers(id);
-
-L<http://bugs.mysql.com/bug.php?id=4042>
-
-=head1 BUGS AND HOW TO CONTRIBUTE
-
-We need your feedback in all cases: if you use it or not,
-is it works for you or not.
-
-=head2 Testing
-
-Don't skip C<make test> step while install and send me reports if it's fails.
-Add your own tests, it's easy enough if you've writen at list one perl script
-that works with RT. Read more about testing in F<t/utils.pl>.
-
-=head2 Reporting
-
-Send reports to L</AUTHOR> or to the RT mailing lists.
-
-=head2 Documentation
-
-Many bugs in the docs: insanity, spelling, gramar and so on.
-Patches are wellcome.
-
-=head2 Todo
-
-Please, see Todo file, it has some technical notes
-about what I plan to do, when I'll do it, also it
-describes some problems code has.
-
-=head2 Repository
-
-Since RT-3.7 shredder is a part of the RT distribution.
-Versions of the RTx::Shredder extension could
-be downloaded from the CPAN. Those work with older
-RT versions or you can find repository at
-L<https://opensvn.csie.org/rtx_shredder>
-
-=head1 AUTHOR
-
-    Ruslan U. Zakirov <Ruslan.Zakirov at gmail.com>
-
-=head1 COPYRIGHT
-
-This program is free software; you can redistribute
-it and/or modify it under the same terms as Perl itself.
-
-The full text of the license can be found in the
-Perl distribution.
-
 =head1 SEE ALSO
 
 L<rt-shredder>, L<rt-validator>
diff --git a/lib/RT/Ticket.pm b/lib/RT/Ticket.pm
index 6b96135..08169fb 100644
--- a/lib/RT/Ticket.pm
+++ b/lib/RT/Ticket.pm
@@ -3210,25 +3210,8 @@ sub CurrentUserCanSeeTime {
            !RT->Config->Get('HideTimeFieldsFromUnprivilegedUsers');
 }
 
-1;
-
-=head1 AUTHOR
-
-Jesse Vincent, jesse at bestpractical.com
-
-=head1 SEE ALSO
-
-RT
-
-=cut
-
 sub Table {'Tickets'}
 
-
-
-
-
-
 =head2 id
 
 Returns the current value of id.

commit d908deeebf9c47514ccdb4253dd12ae80d8f1612
Merge: 8713a66 2e6351b
Author: Alex Vandiver <alex at chmrr.net>
Date:   Mon Nov 6 13:54:36 2017 -0500

    Merge branch '4.4/remove-authors' into 4.4-trunk


-----------------------------------------------------------------------


More information about the rt-commit mailing list