Changeset 165338 in webkit


Ignore:
Timestamp:
Mar 8, 2014 2:14:47 PM (10 years ago)
Author:
zoltan@webkit.org
Message:

Update perf.webkit.org json example
https://bugs.webkit.org/show_bug.cgi?id=129907

Reviewed by Andreas Kling.

The current example is not valid json syntax. I fixed the syntax errors and indented the code properly.

  • ReadMe.md:
Location:
trunk/Websites/perf.webkit.org
Files:
2 edited

Legend:

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

    r163688 r165338  
     12014-03-08  Zoltan Horvath  <zoltan@webkit.org>
     2
     3        Update perf.webkit.org json example
     4        https://bugs.webkit.org/show_bug.cgi?id=129907
     5
     6        Reviewed by Andreas Kling.
     7
     8        The current example is not valid json syntax. I fixed the syntax errors and indented the code properly.
     9
     10        * ReadMe.md:
     11
    1122014-01-31  Ryosuke Niwa  <rniwa@webkit.org>
    213
  • trunk/Websites/perf.webkit.org/ReadMe.md

    r163688 r165338  
    116116A sample JSON:
    117117
    118     {
    119         "buildNumber": "651",
    120         "buildTime": "2013-01-31T22:22:12.121051",
    121         "builderName": "bot-111",
    122         "builderPassword": "********"
    123         "platform": "Mountain Lion",
    124         "revisions": {
    125             "OS X": {"revision": "10.8.2"},
    126             "WebKit": {"revision": "141469", "timestamp": "2013-01-31T20:55:15.452267Z"}
     118[{
     119    "buildNumber": "651",
     120    "buildTime": "2013-01-31T22:22:12.121051",
     121    "builderName": "bot-111",
     122    "builderPassword": "********",
     123    "platform": "Mountain Lion",
     124    "revisions": {
     125        "OS X": {
     126            "revision": "10.8.2"
    127127        },
    128                 "tests": {
    129             "PageLoadingTest": {
    130                 "metrics": {"Time": ["Arithmetic", "Geometric"]},
    131                 "tests": {
    132                     "webkit.org": {
    133                     "metrics": {"Time": {"current": [629.1, 654.8, 598.9]}}
     128        "WebKit": {
     129            "revision": "141469",
     130            "timestamp": "2013-01-31T20:55:15.452267Z"
     131        }
     132    },
     133    "tests": {
     134        "PageLoadingTest": {
     135            "metrics": {
     136                "Time": [
     137                    "Arithmetic",
     138                    "Geometric"
     139                ]
     140            },
     141            "tests": {
     142                "webkit.org": {
     143                    "metrics": {
     144                        "Time": {
     145                            "current": [
     146                                629.1,
     147                                654.8,
     148                                598.9
     149                            ]
     150                        }
     151                    }
    134152                },
    135153                "url": "http://www.webkit.org/"
     
    137155        }
    138156    }
    139 
     157}]
    140158
    141159FIXME: Add a section describing how the application is structured.
Note: See TracChangeset for help on using the changeset viewer.