[rkward-cvs] SF.net SVN: rkward: [1770] trunk/rkward/rkward/plugins

kapatp at users.sourceforge.net kapatp at users.sourceforge.net
Fri Mar 30 19:17:10 UTC 2007


Revision: 1770
          http://svn.sourceforge.net/rkward/?rev=1770&view=rev
Author:   kapatp
Date:     2007-03-30 12:17:09 -0700 (Fri, 30 Mar 2007)

Log Message:
-----------
Import/Export menu entry relabeling and a typo fix

Modified Paths:
--------------
    trunk/rkward/rkward/plugins/00saveload/import/source.xml
    trunk/rkward/rkward/plugins/00saveload/save/save/description.xml
    trunk/rkward/rkward/plugins/00saveload/save/skeleton/description.xml
    trunk/rkward/rkward/plugins/00saveload/save/write/description.xml
    trunk/rkward/rkward/plugins/00saveload/save/write_table.xml
    trunk/rkward/rkward/plugins/import_export.pluginmap
    trunk/rkward/rkward/plugins/plots/plot_options.xml

Modified: trunk/rkward/rkward/plugins/00saveload/import/source.xml
===================================================================
--- trunk/rkward/rkward/plugins/00saveload/import/source.xml	2007-03-30 15:19:59 UTC (rev 1769)
+++ trunk/rkward/rkward/plugins/00saveload/import/source.xml	2007-03-30 19:17:09 UTC (rev 1770)
@@ -1,5 +1,5 @@
 <!DOCTYPE rkplugin>
-<document> 
+<document>
 	<code file="source.php"/>
 	<help file="source.rkh"/>
 
@@ -11,7 +11,7 @@
 		<connect client="promptecho.enabled" governor="echo.state" />
 		<connect client="verbose.enabled" governor="echo.state" />
 	</logic>
-	<dialog label="Load R source file" >
+	<dialog label="Source an R file" >
 		<tabbook>
 			<tab label="Main options" id="tab_main">
 				<browser filter="*.R *.r" id="file" label="File name" />

Modified: trunk/rkward/rkward/plugins/00saveload/save/save/description.xml
===================================================================
--- trunk/rkward/rkward/plugins/00saveload/save/save/description.xml	2007-03-30 15:19:59 UTC (rev 1769)
+++ trunk/rkward/rkward/plugins/00saveload/save/save/description.xml	2007-03-30 19:17:09 UTC (rev 1770)
@@ -2,7 +2,7 @@
 <document>
 	<code file="code.php"/>
 
-	<dialog label="Save as R object" >
+	<dialog label="Save R objects" >
 		<tabbook>
 			<tab label="Select variables" >
 				<column>

Modified: trunk/rkward/rkward/plugins/00saveload/save/skeleton/description.xml
===================================================================
--- trunk/rkward/rkward/plugins/00saveload/save/skeleton/description.xml	2007-03-30 15:19:59 UTC (rev 1769)
+++ trunk/rkward/rkward/plugins/00saveload/save/skeleton/description.xml	2007-03-30 19:17:09 UTC (rev 1770)
@@ -2,7 +2,7 @@
 <document>
 	<code file="code.php"/>
 
-	<dialog label="Save package">
+	<dialog label="Create package">
 		<tabbook>
 			<tab label="Select variables" >
 				<column>

Modified: trunk/rkward/rkward/plugins/00saveload/save/write/description.xml
===================================================================
--- trunk/rkward/rkward/plugins/00saveload/save/write/description.xml	2007-03-30 15:19:59 UTC (rev 1769)
+++ trunk/rkward/rkward/plugins/00saveload/save/write/description.xml	2007-03-30 19:17:09 UTC (rev 1770)
@@ -2,7 +2,7 @@
 <document>
 	<code file="code.php"/>
 
-	<dialog label="Save variables" >
+	<dialog label="Write variables" >
 		<tabbook>
 			<tab label="Select variables" >
 			<column>

Modified: trunk/rkward/rkward/plugins/00saveload/save/write_table.xml
===================================================================
--- trunk/rkward/rkward/plugins/00saveload/save/write_table.xml	2007-03-30 15:19:59 UTC (rev 1769)
+++ trunk/rkward/rkward/plugins/00saveload/save/write_table.xml	2007-03-30 19:17:09 UTC (rev 1770)
@@ -10,12 +10,12 @@
 		<connect client="colnames.enabled" governor="customizecol" />
 		<connect client="colnames.required" governor="customizecol" />
 	</logic>
-	<dialog label="Save as table">
+	<dialog label="Write as table">
 		<tabbook>
 			<tab label="Save as ..." >
 				<column>
 					<text>
-	Be careful : your data will be converted into a data frame. If you don't want that, use the plugin 'write' for mere variables. 
+	Be careful : your data will be converted into a data frame. If you don't want that, use the plugin 'write' for mere variables.
 					</text>
 					<varselector id="vars" label="Select a variable or a table" />
 					<varslot multi="false" classes="array data.frame matrix character numeric integer" source="vars" id="data" label="Data" required="true" />

Modified: trunk/rkward/rkward/plugins/import_export.pluginmap
===================================================================
--- trunk/rkward/rkward/plugins/import_export.pluginmap	2007-03-30 15:19:59 UTC (rev 1769)
+++ trunk/rkward/rkward/plugins/import_export.pluginmap	2007-03-30 19:17:09 UTC (rev 1770)
@@ -3,12 +3,12 @@
 <document base_prefix="00saveload/" namespace="rkward">
 	<components>
 		<component type="standard" id="load_r_object" file="import/load_data.xml" label="Load R data file" />
-		<component type="standard" id="load_source" file="import/source.xml" label="Load R source" />
+		<component type="standard" id="load_source" file="import/source.xml" label="Source an R file" />
 
-		<component type="standard" id="save_r" file="save/save/description.xml" label="Save an R Object" />
-		<component type="standard" id="save_skeleton" file="save/skeleton/description.xml" label="Save package" />
-		<component type="standard" id="save_variables" file="save/write/description.xml" label="Save variables" />
-		<component type="standard" id="save_table" file="save/write_table.xml" label="Save as table" />
+		<component type="standard" id="save_r" file="save/save/description.xml" label="Save R Objects" />
+		<component type="standard" id="save_skeleton" file="save/skeleton/description.xml" label="Create package" />
+		<component type="standard" id="save_variables" file="save/write/description.xml" label="Write variables" />
+		<component type="standard" id="save_table" file="save/write_table.xml" label="Write as table" />
 
 		<component type="standard" id="import_spss" file="import/import_spss.xml" label="Import SPSS">
 			<attribute id="format" value="*.sav *.por" label="SPSS data files"/>
@@ -32,9 +32,9 @@
 			</menu>
 			<menu id="export" label="Export" index="5">
 				<entry component="save_r" />
-				<entry component="save_skeleton" />
 				<entry component="save_variables" />
 				<entry component="save_table" />
+				<entry component="save_skeleton" />
 			</menu>
 		</menu>
 		<menu id="workspace" label="Workspace" index="5">
@@ -49,5 +49,5 @@
 		</menu>
 	</context>
 </document>
- 
- 
+
+

Modified: trunk/rkward/rkward/plugins/plots/plot_options.xml
===================================================================
--- trunk/rkward/rkward/plugins/plots/plot_options.xml	2007-03-30 15:19:59 UTC (rev 1769)
+++ trunk/rkward/rkward/plugins/plots/plot_options.xml	2007-03-30 19:17:09 UTC (rev 1770)
@@ -135,7 +135,7 @@
 				<column>
 					<spinbox type="real" label="Aspect ratio" id="asp" initial="0"/>
 					<text>Note that if Aspect is a finite positive value then the window is set up so that one data unit in the x direction is equal in length to asp * one data unit in the y direction.</text>
-					<text>The special case Aspect == 1 produces plots where distances between points are represented accurately on screen. Values with Aspect > 1 can be used to produce more accurate maps when using latitufile and longitude.</text>
+					<text>The special case Aspect == 1 produces plots where distances between points are represented accurately on screen. Values with Aspect > 1 can be used to produce more accurate maps when using latitude and longitude.</text>
 					<stretch/>
 				</column>
 			</tab>


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the rkward-tracker mailing list