summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-03-03 11:44:51 +0000
committerDries Buytaert <dries@buytaert.net>2001-03-03 11:44:51 +0000
commit74d3c351ce30e351f171c215ce97817550c9f5ea (patch)
tree188bfc31d800deabc801e9160cad9475ae01a7b6 /scripts
parent4df5b8532a98421f955bc29fd499d015cdb4d041 (diff)
downloadbrdo-74d3c351ce30e351f171c215ce97817550c9f5ea.tar.gz
brdo-74d3c351ce30e351f171c215ce97817550c9f5ea.tar.bz2
- Took all "rating logic" out of the account.module and moved it into
a seperate module called "rating.module". This should allow people to experiment with different rating heuristics/algorithms. - The rating module also generates a "Top 100 users" page, see: http://drop.org/module.php?mod=rating - Adjusted ./scripts/php-clean to ignore png files. (I should do it the way around and make it ignore everything but our php files.)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/php-clean4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/php-clean b/scripts/php-clean
index fe5c589d3..5c14c3721 100644
--- a/scripts/php-clean
+++ b/scripts/php-clean
@@ -1,5 +1,5 @@
#!/bin/sh
find . -name "*~" -type f | xargs rm -f
find . -name "DEADJOE" -type f | xargs rm -f
-find . -name "*" -type f | grep -v ".gif" | grep -v ".jpg" | grep -v ".tgz" | xargs perl -wi -pe 's/\s+$/\n/'
-find . -name "*" -type f | grep -v ".gif" | grep -v ".jpg" | grep -v ".tgz" | xargs perl -wi -pe 's/\t/ /g'
+find . -name "*" -type f | grep -v ".gif" | grep -v ".jpg" | grep -v ".png" | grep -v ".tgz" | xargs perl -wi -pe 's/\s+$/\n/'
+find . -name "*" -type f | grep -v ".gif" | grep -v ".jpg" | grep -v ".png" | grep -v ".tgz" | xargs perl -wi -pe 's/\t/ /g'