[rkward-cvs] SF.net SVN: rkward: [1637] trunk/rkward/rkward/plugins
tfry at users.sourceforge.net
tfry at users.sourceforge.net
Mon Mar 19 18:15:28 UTC 2007
Revision: 1637
http://svn.sourceforge.net/rkward/?rev=1637&view=rev
Author: tfry
Date: 2007-03-19 11:15:28 -0700 (Mon, 19 Mar 2007)
Log Message:
-----------
Prepare more movements
Modified Paths:
--------------
trunk/rkward/rkward/plugins/import_export.pluginmap
trunk/rkward/rkward/plugins/writetable/code.php
trunk/rkward/rkward/plugins/writetable/description.xml
Modified: trunk/rkward/rkward/plugins/import_export.pluginmap
===================================================================
--- trunk/rkward/rkward/plugins/import_export.pluginmap 2007-03-19 18:13:10 UTC (rev 1636)
+++ trunk/rkward/rkward/plugins/import_export.pluginmap 2007-03-19 18:15:28 UTC (rev 1637)
@@ -2,8 +2,8 @@
<document base_prefix="" namespace="rkward">
<components>
- <component type="standard" id="load_r_object" file="00saveload/load/load/description.xml" label="Load an R Object" />
- <component type="standard" id="load_source" file="00saveload/load/source/description.xml" label="Load R source" />
+ <component type="standard" id="load_r_object" file="00saveload/import/load_data.xml" label="Load an R Object" />
+ <component type="standard" id="load_source" file="00saveload/import/source.xml" label="Load R source" />
<component type="standard" id="save_r_object" file="00saveload/save/save/description.xml" label="Save an R Object" />
<component type="standard" id="save_skeleton" file="00saveload/save/skeleton/description.xml" label="Save package" />
Modified: trunk/rkward/rkward/plugins/writetable/code.php
===================================================================
--- trunk/rkward/rkward/plugins/writetable/code.php 2007-03-19 18:13:10 UTC (rev 1636)
+++ trunk/rkward/rkward/plugins/writetable/code.php 2007-03-19 18:15:28 UTC (rev 1637)
@@ -1,19 +1,13 @@
<?
- function preprocess () {
- }
-
- function calculate () {
+function preprocess () {
+}
+
+function calculate () {
?>
write.table ( x = <? getRK("data") ; ?> , file = "<? getRK("file") ; ?>" , append = <? getRK("append") ; ?> ,quote = <? getRK("quote") ?> , sep = <? getRK("sep") ?> , eol = "<? getRK("eol") ?>" , na = "<? getRK("na") ?>" , dec = <? getRK("dec") ?> , row.names = <? if (getRK_val("rows") == "custoRow") getRK("rownames") ; else getRK("rows") ; ?> , col.names = <? if (getRK_val("columns") == "custoCol") getRK("colnames") ; else getRK("columns") ; ?> , qmethod= <? getRK("qmethod") ; ?> )
<?
- }
-
- function printout () {
- // produce the output
-?><?
- }
-
- function cleanup () {
-?><?
- }
+}
+
+function printout () {
+}
?>
Modified: trunk/rkward/rkward/plugins/writetable/description.xml
===================================================================
--- trunk/rkward/rkward/plugins/writetable/description.xml 2007-03-19 18:13:10 UTC (rev 1636)
+++ trunk/rkward/rkward/plugins/writetable/description.xml 2007-03-19 18:15:28 UTC (rev 1637)
@@ -1,6 +1,7 @@
<!DOCTYPE rkplugin>
<document>
- <code file="code.php"/>
+ <code file="write_table.php"/>
+
<logic>
<convert id="customizerow" mode="equals" sources="rows.string" standard="custoRow" />
<convert id="customizecol" mode="equals" sources="columns.string" standard="custoCol" />
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