⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 276536 in webkit


Ignore:
Timestamp:
Apr 23, 2021, 5:18:32 PM (5 years ago)
Author:
Jonathan Bedard
Message:

Bugzilla needs to linkify identifiers (Part 1)
https://bugs.webkit.org/show_bug.cgi?id=224312
<rdar://problem/75845629>

Reviewed by Dewei Zhu.

  • extensions/Commits: Moved from Trac.
  • extensions/Commits/Config.pm: Changed Plugin name.
  • extensions/Commits/Extension.pm: Ditto.

(_replace_revision): Use commit.webkit.org instead of trac.

  • extensions/Trac: Moved to Commits.
Location:
trunk/Websites/bugs.webkit.org
Files:
1 added
1 deleted
1 edited
2 copied

Legend:

Unmodified
Added
Removed
  • trunk/Websites/bugs.webkit.org/ChangeLog

    r271552 r276536  
     12021-04-23  Jonathan Bedard  <jbedard@apple.com>
     2
     3        Bugzilla needs to linkify identifiers (Part 1)
     4        https://bugs.webkit.org/show_bug.cgi?id=224312
     5        <rdar://problem/75845629>
     6
     7        Reviewed by Dewei Zhu.
     8
     9        * extensions/Commits: Moved from Trac.
     10        * extensions/Commits/Config.pm: Changed Plugin name.
     11        * extensions/Commits/Extension.pm: Ditto.
     12        (_replace_revision): Use commit.webkit.org instead of trac.
     13        * extensions/Trac: Moved to Commits.
     14
    1152021-01-15  Ling Ho  <lingho@apple.com>
    216
  • trunk/Websites/bugs.webkit.org/extensions/Commits/Config.pm

    r276530 r276536  
    1 # Copyright (C) 2019 Apple Inc. All rights reserved.
     1# Copyright (C) 2019-2021 Apple Inc. All rights reserved.
    22#
    33# Redistribution and use in source and binary forms, with or without
     
    2121# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2222
    23 package Bugzilla::Extension::Trac;
     23package Bugzilla::Extension::Commits;
    2424
    2525use strict;
    2626use warnings;
    2727
    28 use constant NAME => "Trac";
     28use constant NAME => "Commits";
    2929use constant REQUIRED_MODULES => [];
    3030use constant OPTIONAL_MODULES => [];
  • trunk/Websites/bugs.webkit.org/extensions/Commits/Extension.pm

    r276530 r276536  
    1 # Copyright (C) 2019 Apple Inc. All rights reserved.
     1# Copyright (C) 2019-2021 Apple Inc. All rights reserved.
    22#
    33# Redistribution and use in source and binary forms, with or without
     
    2121# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
    2222
    23 package Bugzilla::Extension::Trac;
     23package Bugzilla::Extension::Commits;
    2424
    2525use strict;
     
    4343    my $text = $args->{matches}->[0];
    4444    my $revision = $args->{matches}->[1];
    45     return qq{<a href="https://trac.webkit.org/$revision">$text</a>};
     45    return qq{<a href="https://commits.webkit.org/$revision">$text</a>};
    4646};
    4747
Note: See TracChangeset for help on using the changeset viewer.