summaryrefslogtreecommitdiffstats
path: root/askbot/bin
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-06-13 01:40:01 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2010-06-13 01:40:01 -0400
commit9e9f6b0a71fca40b7a118acb4db37e45609fb5b8 (patch)
tree9a9ab81940a08bfa53c485eb33dc1eda07133ff2 /askbot/bin
parent3b6143c0ebe0fbfbcc05bd61d9c34906d55f69a7 (diff)
downloadaskbot-9e9f6b0a71fca40b7a118acb4db37e45609fb5b8.tar.gz
askbot-9e9f6b0a71fca40b7a118acb4db37e45609fb5b8.tar.bz2
askbot-9e9f6b0a71fca40b7a118acb4db37e45609fb5b8.zip
renamed main django app from forum to askbot
Diffstat (limited to 'askbot/bin')
-rw-r--r--askbot/bin/dos2unix.sh12
-rwxr-xr-xaskbot/bin/rmpyc1
2 files changed, 13 insertions, 0 deletions
diff --git a/askbot/bin/dos2unix.sh b/askbot/bin/dos2unix.sh
new file mode 100644
index 00000000..2864426a
--- /dev/null
+++ b/askbot/bin/dos2unix.sh
@@ -0,0 +1,12 @@
+#please take care not to dos2unix anything in your .git directory
+#because that will probably break your repo
+dos2unix `find . -name '*.py'`
+dos2unix `find . -name '*.po'`
+dos2unix `find . -name '*.js'`
+dos2unix `find . -name '*.css'`
+dos2unix `find . -name '*.txt'`
+dos2unix `find ./sphinx -type f`
+dos2unix `find ./cron -type f`
+dos2unix settings_local.py.dist
+dos2unix README
+dos2unix INSTALL
diff --git a/askbot/bin/rmpyc b/askbot/bin/rmpyc
new file mode 100755
index 00000000..014575f6
--- /dev/null
+++ b/askbot/bin/rmpyc
@@ -0,0 +1 @@
+rm `find . -name '*.pyc'`