aboutsummaryrefslogtreecommitdiffstats
path: root/script
diff options
context:
space:
mode:
Diffstat (limited to 'script')
-rwxr-xr-xscript/generate_pot.sh22
-rwxr-xr-xscript/rails-post-deploy6
2 files changed, 0 insertions, 28 deletions
diff --git a/script/generate_pot.sh b/script/generate_pot.sh
deleted file mode 100755
index c0540c3d9..000000000
--- a/script/generate_pot.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-
-echo "This is NOT a completed script! Just use it as reference for what to do from the command line, or fix it until it works!"
-exit 1
-
-cd `dirname $0`
-# grab latest po files from Transifex
-tx pull -a -f
-git status | grep app.po | awk '{print $3}' | xargs git add
-git commit -m "Backup latest po files from Transifex"
-
-# now regenerate POT and PO files from Alaveteli source
-bundle exec rake gettext:store_model_attributes
-bundle exec rake gettext:findpot
-
-# upload the result to Transifex
-tx push -t
-
-# re-download (it removes the fuzzy strings and normalises it to the format last committed)
-tx pull -a -f
-git status | grep app.po | awk '{print $3}' | xargs git add
-git commit -m "Updated POT"
diff --git a/script/rails-post-deploy b/script/rails-post-deploy
index 6eca2f68f..de950311c 100755
--- a/script/rails-post-deploy
+++ b/script/rails-post-deploy
@@ -46,12 +46,6 @@ else
fi
mkdir -p log
fi
-# link the "downloads" directory in the cache to somewhere it can be served
-if [ ! -e "$TOP_DIR/public/download" ]
-then
- mkdir -p "$TOP_DIR/cache/zips/download"
- ln -s "../cache/zips/download" "$TOP_DIR/public/"
-fi
cd log
touch development.log fastcgi.crash.log production.log test.log