Changeset 192517 in webkit


Ignore:
Timestamp:
Nov 17, 2015 11:30:14 AM (8 years ago)
Author:
Lucas Forschler
Message:

Commit working changes from build.webkit.org

Location:
trunk/Websites/bugs.webkit.org
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Websites/bugs.webkit.org/Bugzilla/Util.pm

    r174779 r192517  
    655655    my ($addr) = @_;
    656656    my $match = Bugzilla->params->{'emailregexp'};
    657     my $ret = ($addr =~ /$match/ && $addr !~ /[\\\(\)<>&,;:"\[\] \t\r\n\P{ASCII}]/);
    658     if ($ret) {
     657    # We set the max length to 127 to ensure addresses aren't truncated when
     658    # inserted into the tokens.eventdata field.
     659    if ($addr =~ /$match/
     660        && $addr !~ /[\\\(\)<>&,;:"\[\] \t\r\n\P{ASCII}]/
     661        && length($addr) <= 127)
     662    {
    659663        # We assume these checks to suffice to consider the address untainted.
    660664        trick_taint($_[0]);
    661     }
    662     return $ret ? 1 : 0;
     665        return 1;
     666    }
     667    return 0;
    663668}
    664669
  • trunk/Websites/bugs.webkit.org/ChangeLog

    r187605 r192517  
     12015-11-17  Lucas Forschler  <lforschler@apple.com>
     2
     3        bugs.webkit.org is running with changes that are not checked in.
     4        Check them in.
     5
     6        Reviewed by Matt Hanson.
     7 
    182015-07-30  Aakash Jain  <aakash_jain@apple.com>
    29
  • trunk/Websites/bugs.webkit.org/data/params

    r174851 r192517  
    8686           'upgrade_notification' => 'latest_stable_release',
    8787           'urlbase' => 'https://bugs.webkit.org/',
    88            'use_mailer_queue' => 0,
     88           'use_mailer_queue' => '1',
    8989           'use_see_also' => 1,
    9090           'usebugaliases' => '1',
  • trunk/Websites/bugs.webkit.org/jobqueue.pl

    r174765 r192517  
    1 #!/usr/bin/env perl -w
     1#!/usr/bin/perl
    22# -*- Mode: perl; indent-tabs-mode: nil -*-
    33#
Note: See TracChangeset for help on using the changeset viewer.