Changeset 15363

Show
Ignore:
Timestamp:
06/05/08 11:36:31 (6 months ago)
Author:
davea
Message:

- validator/assimilator: fix bug in 2 June checkin

(xml_doc_in wasn't included in DB query)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/boinc/checkin_notes

    r15362 r15363  
    46674667        user/ 
    46684668            forum_reply.php 
     4669 
     4670David  5 June 2008 
     4671    - validator/assimilator: fix bug in 2 June checkin 
     4672        (xml_doc_in wasn't included in DB query) 
     4673 
     4674    db/ 
     4675        boinc_db.C 
     4676    tools/ 
     4677        make_project 
  • trunk/boinc/db/boinc_db.C

    r15357 r15363  
    11441144    res.claimed_credit = atof(r[i++]); 
    11451145    res.granted_credit = atof(r[i++]); 
     1146    strcpy2(res.xml_doc_in, r[i++]); 
    11461147    strcpy2(res.xml_doc_out, r[i++]); 
    11471148    strcpy2(res.stderr_out, r[i++]); 
     
    11981199            "   res.claimed_credit, " 
    11991200            "   res.granted_credit, " 
     1201            "   res.xml_doc_in, " 
    12001202            "   res.xml_doc_out, " 
    12011203            "   res.stderr_out, " 
  • trunk/boinc/doc/get_platforms.inc

    r15282 r15363  
    8080            file_put_contents($fname, json_encode($l)); 
    8181        } else { 
    82             if (!file_exists($fname)) { 
     82            if (file_exists($fname)) { 
     83                touch($fname); 
     84            } else { 
    8385                $l[] = "Unknown"; 
    8486                file_put_contents($fname, json_encode($l)); 
  • trunk/boinc/tools/make_project

    r15358 r15363  
    3563561. Change Apache configuration (as root): 
    357357 
    358    cat %(httpd_conf_template_filename)s >> /etc/apache/httpd.conf && apachectl restart 
     358   cat %(httpd_conf_template_filename)s >> /etc/apache/httpd.conf 
    359359 
    360360   (path to httpd.conf varies) 
     361   Then restart the web server: 
     362 
     363   /usr/sbin/apache2ctl restart 
     364   (or /usr/sbin/apachectl restart) 
    361365 
    3623662. Add to crontab (as %(USER)s) 

If this page is incomplete or incorrect, please edit it or add it to the wiki to-do list. To do this, you must be logged in; click Login or Register above.