Add sample pac file and release script

This commit is contained in:
Tatsuhiro Tsujikawa 2013-01-12 17:05:11 +09:00
parent 040d1452ac
commit 757e6d7066
2 changed files with 17 additions and 0 deletions

11
makerelease.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/sh -e
VERSION=$1
PREV_VERSION=$2
git checkout refs/tags/release-$VERSION
git log --pretty=fuller --date=short refs/tags/release-$PREV_VERSION..HEAD > ChangeLog
./configure && \
make dist-bzip2 && make dist-gzip && make dist-xz || echo "error"
make distclean

6
proxy.pac.sample Normal file
View File

@ -0,0 +1,6 @@
function FindProxyForURL(url, host) {
// For SPDY proxy
return "HTTPS localhost:3000";
// For conventional HTTP proxy
// return "PROXY localhost:3000";
}