Changeset 258947 in webkit


Ignore:
Timestamp:
Mar 24, 2020 3:30:49 PM (4 years ago)
Author:
Jonathan Bedard
Message:

results.webkit.org: Correct UUID capitalization in documentation
https://bugs.webkit.org/show_bug.cgi?id=209497

Reviewed by Aakash Jain.

  • resultsdbpy/resultsdbpy/view/templates/documentation.html:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r258946 r258947  
     12020-03-24  Jonathan Bedard  <jbedard@apple.com>
     2
     3        results.webkit.org: Correct UUID capitalization in documentation
     4        https://bugs.webkit.org/show_bug.cgi?id=209497
     5
     6        Reviewed by Aakash Jain.
     7
     8        * resultsdbpy/resultsdbpy/view/templates/documentation.html:
     9
    1102020-03-24  Aakash Jain  <aakash_jain@apple.com>
    211
  • trunk/Tools/resultsdbpy/resultsdbpy/view/templates/documentation.html

    r256382 r258947  
    521521        'UUID': [
    522522            `Ultimately, most data in the results database is sorted by UUID. As mentioned in the ${localLink(['API', 'Commits'], 'commits section')}, UUIDs are defined by the timestamp of a commit and the commit order, where the commit order is the order a commit appears in it's patch series. Since most commits are not in a patch series, most commits have an order of 0. Commit UUIDs are calculated with the following equation:`,
    523             codeBlock('commit.UUID = commit.timestamp * 100 + commit.order'),
     523            codeBlock('commit.uuid = commit.timestamp * 100 + commit.order'),
    524524            `All endpoints which accept time queries allow data to be retrieved by a UUID with a query like this:`,
    525             codeBlock('UUID=156295247300'),
     525            codeBlock('uuid=156295247300'),
    526526            `Since UUIDs are integers, endpoints which accept time queries also accept UUID ranges. A query looking for data between UUIDs 156295149100 and 156295247300 would be formated like this:`,
    527             codeBlock('after_UUID=156295149100&before_UUID=156295247300'),
     527            codeBlock('after_uuid=156295149100&before_uuid=156295247300'),
    528528            `We also know that timestamps can be easily converted to UUIDs. Endpoints which support querying by UUID also support querying by UTC timestamp. Our previous query could be instead written like this:`,
    529529            codeBlock('after_timestamp=1562951491&before_timestamp=1562952473'),
     
    535535            codeBlock('after_id=247391&repository_id=webkit'),
    536536            codeBlock('after_id=247390&before_timestamp=1562952473'),
    537             codeBlock('before_id=247391&after_UUID=156295149100&before_branch=trunk'),
     537            codeBlock('before_id=247391&after_uuid=156295149100&before_branch=trunk'),
    538538        ],
    539539    }
Note: See TracChangeset for help on using the changeset viewer.