Changeset 551 in tmcsimulator for trunk/webapps/cgi-bin


Ignore:
Timestamp:
12/26/2019 03:14:52 PM (6 years ago)
Author:
jdalbey
Message:

Multi-file commit to implement saving evaluation ratings from einotebook to a log file and merging with unified log. Also fix defect #212. cgi-bin/saveEvals.py cgi-bin/saveRatingsToLog.py common/js/displayutils.js common/js/fileutils.js common/js/revision_number.dat common/unifiedlog.css dynamicdata/CADcomments.log dynamicdata/caddetails.csv dynamicdata cms_messages.json dynamicdata/har_messages.json dynamicdata highway_status.json dynamicdata/ratings.csv dynamicdata/unifiedlog.csv dynamicdata/unifiedlog_final.csv einotebook/roles/index.html einotebook roles/roles.js einotebook/script/index.html einotebook/script scrollframe.js einotebook/scripts/Evaluation.js einotebook/scripts/Event.js mergelogs.bash unifiedlogdisplay.html unifiedlogmonitor.html

Location:
trunk/webapps/cgi-bin
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/webapps/cgi-bin/saveEvals.py

    r547 r551  
    77output = "" 
    88for j in range(1, 3): 
    9     output +=  form.getvalue('group'+str(j)) 
    10     output += ", " 
     9    rating =  form.getvalue('evaluationGroup'+str(j)) 
     10    if rating is not None: 
     11        output +=  form.getvalue('evaluationGroup'+str(j)) 
     12        output += ", " 
    1113 
    1214print "Content-type:text/html\r\n\r\n" 
Note: See TracChangeset for help on using the changeset viewer.