From 757e6d7066377b864a4470ba88c1c10bbe09a767 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sat, 12 Jan 2013 17:05:11 +0900 Subject: [PATCH] Add sample pac file and release script --- makerelease.sh | 11 +++++++++++ proxy.pac.sample | 6 ++++++ 2 files changed, 17 insertions(+) create mode 100755 makerelease.sh create mode 100644 proxy.pac.sample diff --git a/makerelease.sh b/makerelease.sh new file mode 100755 index 00000000..42037955 --- /dev/null +++ b/makerelease.sh @@ -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 diff --git a/proxy.pac.sample b/proxy.pac.sample new file mode 100644 index 00000000..9283920b --- /dev/null +++ b/proxy.pac.sample @@ -0,0 +1,6 @@ +function FindProxyForURL(url, host) { + // For SPDY proxy + return "HTTPS localhost:3000"; + // For conventional HTTP proxy + // return "PROXY localhost:3000"; +}