sequenceDiagram
participant HttpChannelChild
participant HttpChannelParent
participant nsHttpChannel
% slightly simplified to avoid HttpChannelParentListener and nsAsyncRedirectVerifyHelper
Note over HttpChannelChild: AsyncOpen
HttpChannelChild->>HttpChannelParent: gNeckoChild->SendPHttpChannelConstructor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import subprocess | |
| import re | |
| import requests | |
| import os | |
| # Retrieve the API token from an environment variable | |
| API_TOKEN = os.getenv('PHABRICATOR_API_TOKEN') | |
| PHABRICATOR_URL = 'https://phabricator.services.mozilla.com/api/differential.revision.search' | |
| def get_wip_commits(): |
OlderNewer