Changes between Version 19 and Version 20 of HackingWebInspector


Ignore:
Timestamp:
Jun 24, 2022 1:04:28 PM (23 months ago)
Author:
Sam Sneddon
Comment:

Update for git, recommend minibrowser instead of Safari given SafariForWebDevelopment often not working

Legend:

Unmodified
Added
Removed
Modified
  • HackingWebInspector

    v19 v20  
    3636== Now Do Your Hacking ==
    3737
    38  1.  [https://trac.webkit.org/wiki/UsingGitWithWebKit Using Git with WebKit]
     38 1.  [https://webkit.org/getting-the-code/ Get the Code]
    3939{{{
    40 git clone git://git.webkit.org/WebKit.git
     40git clone https://github.com/WebKit/WebKit.git WebKit
    4141cd WebKit
    4242git checkout -b purple_css_values
     
    5151 3. [http://webkit.org/building/run.html Run it]
    5252{{{
    53 Tools/Scripts/run-safari --release
     53Tools/Scripts/run-minibrowser --release
    5454}}}
    5555
    56  4. Edit `Source/WebInspectorUI/UserInterface/Views/SpreadsheetCSSStyleDeclarationEditor.css` within a git repository.
     56 4. Edit `Source/WebInspectorUI/UserInterface/Views/SpreadsheetCSSStyleDeclarationEditor.css` within the repo.
    5757
    5858 5. Run `make -C Source/WebInspectorUI release` to copy files from `Source/WebInspectorUI/UserInterface` to the build directory. Do it after every time you modify Inspector's files.
    5959
    60  7. Look at your changes
     60 6. Look at your changes
    6161 {{{
    6262git status
     
    6464 }}}
    6565
    66  8.  [http://webkit.org/coding/contributing.html#changelogs ChangeLogs]
     66 7. [hhttps://webkit.org/contributing-code/#overview Submit a PR] and wait for a review!
    6767 {{{
    68 Tools/Scripts/check-webkit-style
    69 Tools/Scripts/prepare-ChangeLog --bug xxxxx
    70 # edit Source/WebInspectorUI/ChangeLog
    71  }}}
    72 
    73  Instead of xxxxx you should put bug number, like [https://bugs.webkit.org/show_bug.cgi?id=32926 32926].
    74 
    75  9. [http://webkit.org/coding/contributing.html#submit Upload a patch] and wait for a review!
    76  {{{
    77 Tools/Scripts/webkit-patch upload xxxxx -m "patch"
     68git add -u
     69git commit
     70Tools/Scripts/git-webkit pull-request
    7871 }}}
    7972