Changeset 1293
- Timestamp:
- Aug 25, 2010, 7:01:11 PM (11 years ago)
- Location:
- cpc/trunk/project
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
cpc/trunk/project/batch/amendements/compute_latest.sh
r1035 r1293 2 2 3 3 . ../../bin/db.inc 4 5 if [ ! -d html ] ; then mkdir html; fi 6 if [ ! -d json ] ; then mkdir json; fi 4 7 5 8 echo 'SELECT source FROM amendement WHERE sort LIKE "Ind%" AND date > DATE_SUB(CURDATE() , INTERVAL 1 YEAR)' | mysql $MYSQLID $DBNAME | grep -v source > liste_sort_indefini.txt -
cpc/trunk/project/batch/commission/compute_latest.sh
r1227 r1293 1 1 #!/bin/bash 2 3 if [ ! -d html ] ; then mkdir html; fi 4 if [ ! -d out ] ; then mkdir out; fi 2 5 3 6 for file in $(perl download_commission.pl); do -
cpc/trunk/project/batch/depute/parse_tous.sh
r852 r1293 8 8 fi 9 9 10 if [ ! -d out ] || [ ! -d html ] 11 then 12 tar zxvf last_data.tgz 13 exit; 14 fi 10 if [ ! -d out ] ; then mkdir out; fi 15 11 16 12 for d in html/* ; -
cpc/trunk/project/batch/hemicycle/compute_latest.sh
r888 r1293 1 1 #!/bin/bash 2 3 if [ ! -d html ] ; then mkdir html; fi 4 if [ ! -d out ] ; then mkdir out; fi 2 5 3 6 #SCRIPT=download_via_recherche.pl -
cpc/trunk/project/batch/questions/compute_latest.sh
r1146 r1293 1 1 #!/bin/bash 2 3 if [ ! -d html ] ; then mkdir html; fi 4 if [ ! -d json ] ; then mkdir json; fi 2 5 3 6 if [[ $1 != "all" && $1 != "recent" ]]; then -
cpc/trunk/project/config/databases.yml.example
r1258 r1293 3 3 class: sfDoctrineDatabase 4 4 param: 5 dsn: 'mysql:host=my.cpc. tangui.eu.org;dbname=cpc'5 dsn: 'mysql:host=my.cpc.server;dbname=cpc' 6 6 username: cpc 7 7 password: M_O_T__D_E__P_A_S_S_E -
cpc/trunk/project/config/vhost.sample
r1260 r1293 1 1 <VirtualHost *:80> 2 ServerName my.cpc. tangui.eu.org2 ServerName my.cpc.server 3 3 DocumentRoot "/home/cpc/project/web" 4 4 DirectoryIndex index.php
Note: See TracChangeset
for help on using the changeset viewer.