[rkward-cvs] SF.net SVN: rkward: [1218] trunk/rkward/rkward/plugins
tfry at users.sourceforge.net
tfry at users.sourceforge.net
Wed Jan 24 23:09:28 UTC 2007
Revision: 1218
http://svn.sourceforge.net/rkward/?rev=1218&view=rev
Author: tfry
Date: 2007-01-24 15:09:28 -0800 (Wed, 24 Jan 2007)
Log Message:
-----------
Add help file for export graphics plugin
Most changes in Makefile.am have no real meaning (caused by automatic script)
Modified Paths:
--------------
trunk/rkward/rkward/plugins/Makefile.am
trunk/rkward/rkward/plugins/x11device/export.xml
Added Paths:
-----------
trunk/rkward/rkward/plugins/x11device/export.rkh
Modified: trunk/rkward/rkward/plugins/Makefile.am
===================================================================
--- trunk/rkward/rkward/plugins/Makefile.am 2007-01-24 22:41:33 UTC (rev 1217)
+++ trunk/rkward/rkward/plugins/Makefile.am 2007-01-24 23:09:28 UTC (rev 1218)
@@ -4,9 +4,9 @@
plots.pluginmap \
distributions.pluginmap \
analysis.pluginmap \
+ x11device.pluginmap \
import_export.pluginmap \
- under_development.pluginmap \
- x11device.pluginmap
+ under_development.pluginmap
pluginsXplotsdir = $(kde_datadir)/rkward/plots
dist_pluginsXplots_DATA = \
@@ -26,13 +26,13 @@
plots/density_plot.xml \
plots/cor_graph.php \
plots/cor_graph.xml \
+ plots/barplot.rkh \
+ plots/barplot.php \
+ plots/barplot.xml \
plots/scatterplot_matrix.php \
plots/scatterplot_matrix.xml \
plots/cor_graph.rkh \
- plots/scatterplot_matrix.rkh \
- plots/barplot.php \
- plots/barplot.xml \
- plots/barplot.rkh
+ plots/scatterplot_matrix.rkh
pluginsXdistributionsdir = $(kde_datadir)/rkward/distributions
dist_pluginsXdistributions_DATA = \
@@ -205,6 +205,13 @@
00saveload/save/save/code.php \
00saveload/save/save/description.xml
+pluginsXwilcoxondir = $(kde_datadir)/rkward/wilcoxon
+dist_pluginsXwilcoxon_DATA = \
+ wilcoxon/wilcoxon_test.xml \
+ wilcoxon/wilcoxon_exact_test.xml \
+ wilcoxon/wilcoxon_test.php \
+ wilcoxon/wilcoxon_exact_test.php
+
pluginsXdescriptivedir = $(kde_datadir)/rkward/descriptive
dist_pluginsXdescriptive_DATA = \
descriptive/descriptive_statistics.php \
@@ -216,12 +223,6 @@
pluginsXx11devicedir = $(kde_datadir)/rkward/x11device
dist_pluginsXx11device_DATA = \
x11device/export.xml \
- x11device/export.php
+ x11device/export.php \
+ x11device/export.rkh
-pluginsXwilcoxondir = $(kde_datadir)/rkward/wilcoxon
-dist_pluginsXwilcoxon_DATA = \
- wilcoxon/wilcoxon_test.php \
- wilcoxon/wilcoxon_test.xml \
- wilcoxon/wilcoxon_exact_test.xml \
- wilcoxon/wilcoxon_exact_test.php
-
Added: trunk/rkward/rkward/plugins/x11device/export.rkh
===================================================================
--- trunk/rkward/rkward/plugins/x11device/export.rkh (rev 0)
+++ trunk/rkward/rkward/plugins/x11device/export.rkh 2007-01-24 23:09:28 UTC (rev 1218)
@@ -0,0 +1,29 @@
+<!DOCTYPE rkhelp>
+<document>
+ <summary>
+ Export the current contents of a graphics device to a graphics file
+ </summary>
+ <usage>
+ Chose a filename and filetype to save to. Additional options for size and resolution are available. Exporting is done using ghostscript. You need to have ghostscript installed for this to work.
+
+ This plugin is only available in the context of a graphics device.
+ </usage>
+ <settings>
+ <caption id="file_and_type"/>
+ <setting id="file">The filename to save to</setting>
+ <setting id="format">File format to use. Only the most common ones are listed, but many more are supported by ghostscript. Select "Other" and see the option below to use these formats.</setting>
+ <setting id="specifiedformat">Select "Other" in the option above to use this setting. Specify the device identifier as used by ghostscript. Running "ghostscript --help" in a terminal should give a list of available devices.</setting>
+ <caption id="size_resolution"/>
+ <setting id="autowidth">Should the width be determined automatically? If yes, and height is specified, the width will be adjusted to keep the current aspect ratio as visible in the device. If yes, and height is also set to automatic, the current size of the device will be used.</setting>
+ <setting id="width">Width in inches. Uncheck the option above to use this.</setting>
+ <setting id="autoheight">See width options above.</setting>
+ <setting id="height">See width options above.</setting>
+ <setting id="resolution">Resolution in dpi (dots per inch). Only meaningful for bitmap file formats.</setting>
+ </settings>
+ <related>
+ <ul>
+ <li><link href="rkward://rhelp/dev2bitmap"/></li>
+ </ul>
+ </related>
+</document>
+
Modified: trunk/rkward/rkward/plugins/x11device/export.xml
===================================================================
--- trunk/rkward/rkward/plugins/x11device/export.xml 2007-01-24 22:41:33 UTC (rev 1217)
+++ trunk/rkward/rkward/plugins/x11device/export.xml 2007-01-24 23:09:28 UTC (rev 1218)
@@ -1,6 +1,7 @@
<!DOCTYPE rkplugin>
<document>
<code file="export.php" />
+ <help file="export.rkh" />
<logic>
<external id="devnum"/>
@@ -23,7 +24,7 @@
<browser size="small" id="file" label="File name" initial="Rplot.pdf" />
<dropdown id="format" label="Output format" >
<option value="pdfwrite" label="PDF" />
- <option value="postscript" label="PostScript" />
+ <option value="pswrite" label="PostScript" />
<option value="pngmono" label="PNG (b/w)" />
<option value="pnggray" label="PNG (grayscale)" />
<option value="png256" label="PNG (256 colors)" />
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