~l3on/ubuntu/precise/rkward/rebuild1

« back to all changes in this revision

Viewing changes to rkward/plugins/analysis/irt/polytomous/par_est_pcm.js

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Friedrichsmeier
  • Date: 2010-10-04 14:30:00 UTC
  • mfrom: (12.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20101004143000-qey73molmxxwy4w6
Tags: 0.5.4-1
* new upstream release
* bump standards version to 3.9.1 (no changes needed)
* no more need to remove svncopy.sh-script in rules

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
function printout () {
25
25
        // check whether parameter estimations should be kept in the global enviroment
26
 
        var save         = getValue("chk_save");
 
26
        var save         = getValue("save_name.active");
27
27
        var save_name    = getValue("save_name");
28
28
 
29
29
        echo ('rk.header ("PCM  parameter estimation")\n');
36
36
// check if results are to be saved:
37
37
        if (save && save_name) {
38
38
                echo ('# keep results in current workspace\n');
39
 
                echo (save_name + ' <<- estimates.pcm\n');
 
39
                echo ('.GlobalEnv$' + save_name + ' <- estimates.pcm\n');
40
40
        }
41
41
}