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
| #!/bin/bash | |
| # Script Name: Sync SVN folders | |
| # Description: Use this script to sync changes from one SVN folder to another. A common use is syncing between prod and preprod repos. | |
| # Tags: svn, sync | |
| # Usage: ./sync-svn-folders.sh /path/to/from-repo /path/to/to-repo | |
| FROM_REPO=$1 | |
| TO_REPO=$2 | |
| # Check that we don't have empty paths |
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
| #!/usr/bin/env python | |
| # Reflects the requests from HTTP methods GET, POST, PUT, and DELETE | |
| # Written by Nathan Hamiel (2010) | |
| from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler | |
| from optparse import OptionParser | |
| class RequestHandler(BaseHTTPRequestHandler): | |
| def do_GET(self): |
NewerOlder