saving device settings had no effect
[mygpo.git] / bin / touch-views.sh
blob717c912e97766e327fbd223f89430bef1e841998
1 #!/bin/bash
3 DIR=`dirname $0`
4 DB=`$DIR/../mygpo/print-couchdb.py`
6 echo -n "Touching View core ... "
7 curl -s -X GET ${DB}/_design/core/_view/podcasts_by_id?limit=0 > /dev/null
8 echo done
10 echo -n "Touching View directory ... "
11 curl -s -X GET ${DB}/_design/directory/_view/toplist?limit=0 > /dev/null
12 echo done
14 echo -n "Touching View users ... "
15 curl -s -X GET ${DB}/_design/users/_view/users_by_oldid?limit=0 > /dev/null
16 echo done
18 echo -n "Touching View django_couchdb_utils ... "
19 curl -s -X GET ${DB}/_design/django_couchdb_utils/_view/emails?limit=0 > /dev/null
20 echo done