-
Basics Git commands
-
Table of YP’s Repositories
-
Patch’s creation
-
Patch’s submission
-
Post-patch submission
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
== Patching in the YP | |
. <<anchor-git-basics,Basics>> Git commands | |
. Table of YP's <<anchor-yp-repositories, Repositories>> | |
. Patch's <<anchor-patch-creation,creation>> | |
. Patch's <<anchor-patch-submission,submission>> | |
. <<anchor-post-patch, Post-patch>> submission | |
. <<anchor-good-os-practices,Good OpenSource practices>> | |
. <<anchor-scripts, Scritps>> | |
. <<anchor-links, Links>> |
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
Pseudocode | |
# first part: remove disable accounts | |
disabled_accounts = query("where"=> "status is pause or delete") # This is a Ooyala V2 Request | |
for each disabled_account in disabled_accounts | |
remove disabled_account folder on webDav server (there is no need to mark embed code's as deleted, I believe) | |
# second part: remove delete assets on (live) accounts | |
accounts = query("where" => "status is live") # This is an Ooyala V2 Request | |
for each account in accounts |
NewerOlder