~l3on/ubuntu/precise/rkward/rebuild1

« back to all changes in this revision

Viewing changes to rkward/plugins/00saveload/import/load_data.xml

  • 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:
3
3
        <code file="load_data.js"/>
4
4
        <help file="load_data.rkh"/>
5
5
        <logic>
6
 
                <convert id="use_globalenv" mode="equals" sources="other_env.state" standard="0"/>
7
 
                <connect client="globalenv_warning.visible" governor="use_globalenv"/>
8
 
 
9
 
                <connect client="envir.enabled" governor="other_env.state"/>
10
 
                <connect client="otherenv_warning.visible" governor="other_env.state"/>
 
6
                <connect client="globalenv_warning.visible" governor="envir.active.not"/>
 
7
                <connect client="otherenv_warning.visible" governor="envir.active"/>
11
8
        </logic>
12
9
        <dialog label="Load an R data file">
13
10
                <browser size="small" id="file" label="R data file to load" filter="*.RData" />
14
11
                <text id="globalenv_warning" type="warning">WARNING: This may overwrite existing objects in .GlobalEnv. Be sure to save your workspace, first.</text>
15
 
                <checkbox id="other_env" label="Save to specified environment" value="1" value_unchecked="0"/>
16
 
                <saveobject id="envir" label="Environment to save to" initial="my.env"/>
 
12
                <saveobject id="envir" label="Save to environment" initial="my.env" checkable="true"/>
17
13
                <text id="otherenv_warning" type="warning">WARNING: If the environment already exists, all objects inside it will be lost.</text>
18
14
        </dialog>
19
15
</document>