aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2001-10-09 13:18:41 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2001-10-09 13:18:41 +0000
commitb6912244355f29876fa09560174f4f801fca4272 (patch)
tree15734fc0b23d2c68edaf851f999d74f3c7e889e9
parent1bfc6b4d8b2e48db5c138236aa3a5d0c0f5182cc (diff)
downloadports-b6912244355f29876fa09560174f4f801fca4272.tar.gz
ports-b6912244355f29876fa09560174f4f801fca4272.zip
Notes
-rw-r--r--math/gnumeric/Makefile2
-rw-r--r--math/gnumeric/distinfo2
-rw-r--r--math/gnumeric/files/patch-plugins::gb::Makefile.in18
-rw-r--r--math/gnumeric/files/patch-plugins::psiconv::psiconv-read.c50
-rw-r--r--math/gnumeric/pkg-plist725
-rw-r--r--math/gnumeric2/Makefile2
-rw-r--r--math/gnumeric2/distinfo2
-rw-r--r--math/gnumeric2/files/patch-plugins::gb::Makefile.in18
-rw-r--r--math/gnumeric2/files/patch-plugins::psiconv::psiconv-read.c50
-rw-r--r--math/gnumeric2/pkg-plist725
10 files changed, 878 insertions, 716 deletions
diff --git a/math/gnumeric/Makefile b/math/gnumeric/Makefile
index d09567caa632..f8c06cd9baf6 100644
--- a/math/gnumeric/Makefile
+++ b/math/gnumeric/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= gnumeric
-PORTVERSION= 0.70
+PORTVERSION= 0.71
CATEGORIES?= math gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/gnumeric
diff --git a/math/gnumeric/distinfo b/math/gnumeric/distinfo
index d4da8721721e..fd41af76d096 100644
--- a/math/gnumeric/distinfo
+++ b/math/gnumeric/distinfo
@@ -1 +1 @@
-MD5 (gnumeric-0.70.tar.bz2) = 573056959d0fd96ead78599978ca1418
+MD5 (gnumeric-0.71.tar.bz2) = be97aa3c4a2a6a4c58c5b7c3a9511dea
diff --git a/math/gnumeric/files/patch-plugins::gb::Makefile.in b/math/gnumeric/files/patch-plugins::gb::Makefile.in
index 921407563055..f56b7f4e776b 100644
--- a/math/gnumeric/files/patch-plugins::gb::Makefile.in
+++ b/math/gnumeric/files/patch-plugins::gb::Makefile.in
@@ -1,14 +1,14 @@
$FreeBSD$
---- plugins/gb/Makefile.in 2001/07/09 16:19:36 1.1
-+++ plugins/gb/Makefile.in 2001/07/09 16:19:48
-@@ -181,7 +181,7 @@
- gnum_gb_la_SOURCES = common.c common.h excel-gb-application.c excel-gb-application.h excel-gb-context.c excel-gb-context.h excel-gb-interior.c excel-gb-interior.h excel-gb-range.c excel-gb-range.h excel-gb-selection.c excel-gb-selection.h excel-gb-worksheet.c excel-gb-worksheet.h excel-gb-worksheets.c excel-gb-worksheets.h excel-gb-worksheet-function.c excel-gb-worksheet-function.h plugin.c streams.h streams.c
+--- plugins/gb/Makefile.in.orig Tue Oct 9 15:16:29 2001
++++ plugins/gb/Makefile.in Tue Oct 9 15:20:18 2001
+@@ -216,7 +216,7 @@
+ gnum_gb_la_LIBADD = \
+ $(GB_LIBS) \
+ $(GNUMERIC_LIBS) \
+- -lm @GLIB_LIBS@ -lgb -lgbrun
++ -lm @GLIB_LIBS@ -lgbrun
--gnum_gb_la_LIBADD = $(GB_LIBS) $(EXTRA_GNOME_LIBS) -lm @GLIB_LIBS@ -lgb -lgbrun
-+gnum_gb_la_LIBADD = $(GB_LIBS) $(EXTRA_GNOME_LIBS) -lm @GLIB_LIBS@ -lgbrun
-
-
- EXTRA_DIST = README main.gba gnumeric.gbp $(gnum_gb_DATA)
+ xml_in_files = plugin.xml.in
diff --git a/math/gnumeric/files/patch-plugins::psiconv::psiconv-read.c b/math/gnumeric/files/patch-plugins::psiconv::psiconv-read.c
new file mode 100644
index 000000000000..d6f3e2bf29df
--- /dev/null
+++ b/math/gnumeric/files/patch-plugins::psiconv::psiconv-read.c
@@ -0,0 +1,50 @@
+
+$FreeBSD$
+
+--- plugins/psiconv/psiconv-read.c 2001/10/09 12:39:33 1.1
++++ plugins/psiconv/psiconv-read.c 2001/10/09 12:51:24
+@@ -420,7 +420,7 @@
+
+ formula = psiconv_get_formula (psi_formulas, psi_cell->ref_formula);
+
+- return (formula != NULL) ? return parse_subexpr (formula) : NULL;
++ return (formula != NULL) ? parse_subexpr (formula) : NULL;
+ }
+
+ static void
+@@ -429,27 +429,27 @@
+ {
+ Cell *cell;
+ Value *val;
+- ExprTree *tree;
++ ExprTree *tree = NULL;
+ psiconv_formula psi_formula;
+
+ cell = sheet_cell_fetch (sheet, psi_cell->column, psi_cell->row);
+ if (!cell)
+ return;
+
+- val = value_new_from_psi_cell (psi_cell);
++ val = value_new_from_psi_cell (cell, psi_cell);
+
+ if (psi_cell->calculated)
+- expr = expr_new_from_formula (psi_cell, psi_formulas);
++ tree = expr_new_from_formula (psi_cell, psi_formulas);
+
+- if (expr != NULL) {
++ if (tree != NULL) {
+ /* TODO : is there a notion of parse format ?
+ * How does it store a user entered date ?
+ */
+- if (value != NULL)
+- cell_set_expr_and_value (cell, expr, val, NULL, TRUE);
++ if (val != NULL)
++ cell_set_expr_and_value (cell, tree, val, NULL, TRUE);
+ else
+- cell_set_expr (cell, expr, NULL);
+- } else if (value != NULL) {
++ cell_set_expr (cell, tree, NULL);
++ } else if (val != NULL) {
+ /* TODO : is there a notion of parse format ?
+ * How does it store a user entered date ?
+ */
diff --git a/math/gnumeric/pkg-plist b/math/gnumeric/pkg-plist
index c8ea1dbc3eba..e789aa781e92 100644
--- a/math/gnumeric/pkg-plist
+++ b/math/gnumeric/pkg-plist
@@ -9,7 +9,6 @@ lib/gnumeric/%%VERSION%%/plugins/dif/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/excel/excel.so
lib/gnumeric/%%VERSION%%/plugins/excel/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/gb/gnum_gb.so
-lib/gnumeric/%%VERSION%%/plugins/gb/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/gdaif/gdaif.so
lib/gnumeric/%%VERSION%%/plugins/gdaif/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/gnome-glossary/glossary-po-header
@@ -19,10 +18,13 @@ lib/gnumeric/%%VERSION%%/plugins/html/html.so
lib/gnumeric/%%VERSION%%/plugins/html/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/lotus/lotus.so
lib/gnumeric/%%VERSION%%/plugins/lotus/plugin.xml
+lib/gnumeric/%%VERSION%%/plugins/mps/mps.so
+lib/gnumeric/%%VERSION%%/plugins/mps/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/numtheory/numtheory.so
lib/gnumeric/%%VERSION%%/plugins/numtheory/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/oleo/oleo.so
lib/gnumeric/%%VERSION%%/plugins/oleo/plugin.xml
+lib/gnumeric/%%VERSION%%/plugins/plan_perfect/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/psiconv/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/psiconv/psiconv.so
lib/gnumeric/%%VERSION%%/plugins/py-func/plugin.xml
@@ -81,7 +83,10 @@ share/gnome/gnumeric/%%VERSION%%/glade/cell-sort.glade
share/gnome/gnumeric/%%VERSION%%/glade/col-width.glade
share/gnome/gnumeric/%%VERSION%%/glade/colrow.glade
share/gnome/gnumeric/%%VERSION%%/glade/consolidate.glade
+share/gnome/gnumeric/%%VERSION%%/glade/correlation.glade
+share/gnome/gnumeric/%%VERSION%%/glade/covariance.glade
share/gnome/gnumeric/%%VERSION%%/glade/delete-cells.glade
+share/gnome/gnumeric/%%VERSION%%/glade/descriptive-stats.glade
share/gnome/gnumeric/%%VERSION%%/glade/dialog-stf-export.glade
share/gnome/gnumeric/%%VERSION%%/glade/dialog-stf.glade
share/gnome/gnumeric/%%VERSION%%/glade/dialog-zoom.glade
@@ -91,21 +96,26 @@ share/gnome/gnumeric/%%VERSION%%/glade/function-select.glade
share/gnome/gnumeric/%%VERSION%%/glade/graph-guru.glade
share/gnome/gnumeric/%%VERSION%%/glade/hf-config.glade
share/gnome/gnumeric/%%VERSION%%/glade/insert-cells.glade
+share/gnome/gnumeric/%%VERSION%%/glade/mean-tests.glade
share/gnome/gnumeric/%%VERSION%%/glade/names.glade
share/gnome/gnumeric/%%VERSION%%/glade/plugin-manager.glade
share/gnome/gnumeric/%%VERSION%%/glade/print.glade
+share/gnome/gnumeric/%%VERSION%%/glade/rank.glade
share/gnome/gnumeric/%%VERSION%%/glade/row-height.glade
+share/gnome/gnumeric/%%VERSION%%/glade/sampling.glade
share/gnome/gnumeric/%%VERSION%%/glade/search-replace.glade
+share/gnome/gnumeric/%%VERSION%%/glade/search.glade
share/gnome/gnumeric/%%VERSION%%/glade/sheet-order.glade
share/gnome/gnumeric/%%VERSION%%/glade/sheet-rename.glade
share/gnome/gnumeric/%%VERSION%%/glade/solver-options.glade
share/gnome/gnumeric/%%VERSION%%/glade/solver.glade
share/gnome/gnumeric/%%VERSION%%/glade/summary.glade
share/gnome/gnumeric/%%VERSION%%/glade/validate.glade
+share/gnome/gnumeric/%%VERSION%%/glade/variance-tests.glade
share/gnome/gnumeric/%%VERSION%%/glade/workbook-attr.glade
share/gnome/gnumeric/%%VERSION%%/gnome/ui/GNOME_Gnumeric.xml
-share/gnome/gnumeric/%%VERSION%%/idl/Gnumeric.idl
-share/gnome/gnumeric/%%VERSION%%/idl/gnumeric-graphs.idl
+share/gnome/gnumeric/%%VERSION%%/idl/GNOME_Gnumeric.idl
+share/gnome/gnumeric/%%VERSION%%/idl/GNOME_Gnumeric_Graph.idl
share/gnome/gnumeric/%%VERSION%%/python/gnumeric_defs.py
share/gnome/gnumeric/%%VERSION%%/python/gnumeric_startup.py
share/gnome/gnumeric/%%VERSION%%/templates/invoice.gnumeric
@@ -113,24 +123,380 @@ share/gnome/gnumeric/%%VERSION%%/templates/loan.gnumeric
share/gnome/gnumeric/%%VERSION%%/templates/mileage.gnumeric
share/gnome/gnumeric/%%VERSION%%/templates/purchase_order.gnumeric
share/gnome/help/gnumeric/C/analysis-tools.html
+share/gnome/help/gnumeric/C/anova.html
share/gnome/help/gnumeric/C/authors.html
share/gnome/help/gnumeric/C/autofill.html
+share/gnome/help/gnumeric/C/autosave.html
share/gnome/help/gnumeric/C/cell-elements.html
share/gnome/help/gnumeric/C/cell-referencing.html
share/gnome/help/gnumeric/C/copying-moving.html
+share/gnome/help/gnumeric/C/correlation-tool.html
+share/gnome/help/gnumeric/C/covariance-tool.html
share/gnome/help/gnumeric/C/data-and-time-formatting.html
-share/gnome/help/gnumeric/C/docbook.css
+share/gnome/help/gnumeric/C/descriptive-statistics-tool.html
share/gnome/help/gnumeric/C/editing-selections.html
share/gnome/help/gnumeric/C/editing.html
share/gnome/help/gnumeric/C/files.html
share/gnome/help/gnumeric/C/formatting.html
share/gnome/help/gnumeric/C/formulas.html
+share/gnome/help/gnumeric/C/ftest-two-sample-for-variances-tool.html
share/gnome/help/gnumeric/C/function-reference.html
+share/gnome/help/gnumeric/C/gnumeric-abs.html
+share/gnome/help/gnumeric/C/gnumeric-accrint.html
+share/gnome/help/gnumeric/C/gnumeric-accrintm.html
+share/gnome/help/gnumeric/C/gnumeric-acos.html
+share/gnome/help/gnumeric/C/gnumeric-acosh.html
+share/gnome/help/gnumeric/C/gnumeric-address.html
+share/gnome/help/gnumeric/C/gnumeric-amordegrc.html
+share/gnome/help/gnumeric/C/gnumeric-amorlinc.html
+share/gnome/help/gnumeric/C/gnumeric-and.html
+share/gnome/help/gnumeric/C/gnumeric-asin.html
+share/gnome/help/gnumeric/C/gnumeric-asinh.html
+share/gnome/help/gnumeric/C/gnumeric-atan.html
+share/gnome/help/gnumeric/C/gnumeric-atan2.html
+share/gnome/help/gnumeric/C/gnumeric-atanh.html
+share/gnome/help/gnumeric/C/gnumeric-avedev.html
+share/gnome/help/gnumeric/C/gnumeric-average.html
+share/gnome/help/gnumeric/C/gnumeric-averagea.html
+share/gnome/help/gnumeric/C/gnumeric-besseli.html
+share/gnome/help/gnumeric/C/gnumeric-besselj.html
+share/gnome/help/gnumeric/C/gnumeric-besselk.html
+share/gnome/help/gnumeric/C/gnumeric-bessely.html
+share/gnome/help/gnumeric/C/gnumeric-betadist.html
+share/gnome/help/gnumeric/C/gnumeric-betainv.html
+share/gnome/help/gnumeric/C/gnumeric-bin2dec.html
+share/gnome/help/gnumeric/C/gnumeric-bin2hex.html
+share/gnome/help/gnumeric/C/gnumeric-bin2oct.html
+share/gnome/help/gnumeric/C/gnumeric-binomdist.html
+share/gnome/help/gnumeric/C/gnumeric-ceil.html
+share/gnome/help/gnumeric/C/gnumeric-ceiling.html
+share/gnome/help/gnumeric/C/gnumeric-cell.html
+share/gnome/help/gnumeric/C/gnumeric-char.html
+share/gnome/help/gnumeric/C/gnumeric-chidist.html
+share/gnome/help/gnumeric/C/gnumeric-chiinv.html
+share/gnome/help/gnumeric/C/gnumeric-chitest.html
+share/gnome/help/gnumeric/C/gnumeric-choose.html
+share/gnome/help/gnumeric/C/gnumeric-clean.html
+share/gnome/help/gnumeric/C/gnumeric-code.html
+share/gnome/help/gnumeric/C/gnumeric-column.html
+share/gnome/help/gnumeric/C/gnumeric-columns.html
+share/gnome/help/gnumeric/C/gnumeric-combin.html
+share/gnome/help/gnumeric/C/gnumeric-complex.html
+share/gnome/help/gnumeric/C/gnumeric-concatenate.html
+share/gnome/help/gnumeric/C/gnumeric-confidence.html
+share/gnome/help/gnumeric/C/gnumeric-convert.html
+share/gnome/help/gnumeric/C/gnumeric-correl.html
+share/gnome/help/gnumeric/C/gnumeric-cos.html
+share/gnome/help/gnumeric/C/gnumeric-cosh.html
+share/gnome/help/gnumeric/C/gnumeric-count.html
+share/gnome/help/gnumeric/C/gnumeric-counta.html
+share/gnome/help/gnumeric/C/gnumeric-countblank.html
+share/gnome/help/gnumeric/C/gnumeric-countif.html
+share/gnome/help/gnumeric/C/gnumeric-coupdaybs.html
+share/gnome/help/gnumeric/C/gnumeric-coupdays.html
+share/gnome/help/gnumeric/C/gnumeric-coupdaysnc.html
+share/gnome/help/gnumeric/C/gnumeric-coupncd.html
+share/gnome/help/gnumeric/C/gnumeric-coupnum.html
+share/gnome/help/gnumeric/C/gnumeric-couppcd.html
+share/gnome/help/gnumeric/C/gnumeric-covar.html
+share/gnome/help/gnumeric/C/gnumeric-critbinom.html
+share/gnome/help/gnumeric/C/gnumeric-cumipmt.html
+share/gnome/help/gnumeric/C/gnumeric-cumprinc.html
+share/gnome/help/gnumeric/C/gnumeric-date.html
+share/gnome/help/gnumeric/C/gnumeric-datedif.html
+share/gnome/help/gnumeric/C/gnumeric-datevalue.html
+share/gnome/help/gnumeric/C/gnumeric-daverage.html
+share/gnome/help/gnumeric/C/gnumeric-day.html
+share/gnome/help/gnumeric/C/gnumeric-days360.html
+share/gnome/help/gnumeric/C/gnumeric-db.html
+share/gnome/help/gnumeric/C/gnumeric-dcount.html
+share/gnome/help/gnumeric/C/gnumeric-dcounta.html
+share/gnome/help/gnumeric/C/gnumeric-ddb.html
+share/gnome/help/gnumeric/C/gnumeric-dec2bin.html
+share/gnome/help/gnumeric/C/gnumeric-dec2hex.html
+share/gnome/help/gnumeric/C/gnumeric-dec2oct.html
+share/gnome/help/gnumeric/C/gnumeric-degrees.html
+share/gnome/help/gnumeric/C/gnumeric-delta.html
+share/gnome/help/gnumeric/C/gnumeric-devsq.html
+share/gnome/help/gnumeric/C/gnumeric-dget.html
+share/gnome/help/gnumeric/C/gnumeric-disc.html
+share/gnome/help/gnumeric/C/gnumeric-dmax.html
+share/gnome/help/gnumeric/C/gnumeric-dmin.html
+share/gnome/help/gnumeric/C/gnumeric-dollar.html
+share/gnome/help/gnumeric/C/gnumeric-dollarde.html
+share/gnome/help/gnumeric/C/gnumeric-dollarfr.html
+share/gnome/help/gnumeric/C/gnumeric-dproduct.html
+share/gnome/help/gnumeric/C/gnumeric-dstdev.html
+share/gnome/help/gnumeric/C/gnumeric-dstdevp.html
+share/gnome/help/gnumeric/C/gnumeric-dsum.html
+share/gnome/help/gnumeric/C/gnumeric-duration.html
+share/gnome/help/gnumeric/C/gnumeric-dvar.html
+share/gnome/help/gnumeric/C/gnumeric-dvarp.html
+share/gnome/help/gnumeric/C/gnumeric-edate.html
+share/gnome/help/gnumeric/C/gnumeric-effect.html
+share/gnome/help/gnumeric/C/gnumeric-eomonth.html
+share/gnome/help/gnumeric/C/gnumeric-erf.html
+share/gnome/help/gnumeric/C/gnumeric-erfc.html
+share/gnome/help/gnumeric/C/gnumeric-error.html
+share/gnome/help/gnumeric/C/gnumeric-error.type.html
+share/gnome/help/gnumeric/C/gnumeric-euro.html
+share/gnome/help/gnumeric/C/gnumeric-even.html
+share/gnome/help/gnumeric/C/gnumeric-exact.html
+share/gnome/help/gnumeric/C/gnumeric-exp.html
+share/gnome/help/gnumeric/C/gnumeric-expondist.html
+share/gnome/help/gnumeric/C/gnumeric-expression.html
+share/gnome/help/gnumeric/C/gnumeric-fact.html
+share/gnome/help/gnumeric/C/gnumeric-factdouble.html
+share/gnome/help/gnumeric/C/gnumeric-false.html
+share/gnome/help/gnumeric/C/gnumeric-fdist.html
+share/gnome/help/gnumeric/C/gnumeric-find.html
+share/gnome/help/gnumeric/C/gnumeric-finv.html
+share/gnome/help/gnumeric/C/gnumeric-fisher.html
+share/gnome/help/gnumeric/C/gnumeric-fisherinv.html
+share/gnome/help/gnumeric/C/gnumeric-fixed.html
+share/gnome/help/gnumeric/C/gnumeric-floor.html
+share/gnome/help/gnumeric/C/gnumeric-forecast.html
+share/gnome/help/gnumeric/C/gnumeric-frequency.html
+share/gnome/help/gnumeric/C/gnumeric-ftest.html
+share/gnome/help/gnumeric/C/gnumeric-fv.html
+share/gnome/help/gnumeric/C/gnumeric-fvschedule.html
+share/gnome/help/gnumeric/C/gnumeric-gammadist.html
+share/gnome/help/gnumeric/C/gnumeric-gammainv.html
+share/gnome/help/gnumeric/C/gnumeric-gammaln.html
+share/gnome/help/gnumeric/C/gnumeric-gcd.html
+share/gnome/help/gnumeric/C/gnumeric-geomean.html
+share/gnome/help/gnumeric/C/gnumeric-gestep.html
+share/gnome/help/gnumeric/C/gnumeric-getpivotdata.html
+share/gnome/help/gnumeric/C/gnumeric-gnumericxversion.html
+share/gnome/help/gnumeric/C/gnumeric-growth.html
+share/gnome/help/gnumeric/C/gnumeric-gxproduct.html
+share/gnome/help/gnumeric/C/gnumeric-harmean.html
+share/gnome/help/gnumeric/C/gnumeric-hex2bin.html
+share/gnome/help/gnumeric/C/gnumeric-hex2dec.html
+share/gnome/help/gnumeric/C/gnumeric-hex2oct.html
+share/gnome/help/gnumeric/C/gnumeric-hlookup.html
+share/gnome/help/gnumeric/C/gnumeric-hour.html
+share/gnome/help/gnumeric/C/gnumeric-hyperlink.html
+share/gnome/help/gnumeric/C/gnumeric-hypgeomdist.html
+share/gnome/help/gnumeric/C/gnumeric-if.html
+share/gnome/help/gnumeric/C/gnumeric-imabs.html
+share/gnome/help/gnumeric/C/gnumeric-imaginary.html
+share/gnome/help/gnumeric/C/gnumeric-imargument.html
+share/gnome/help/gnumeric/C/gnumeric-imconjugate.html
+share/gnome/help/gnumeric/C/gnumeric-imcos.html
+share/gnome/help/gnumeric/C/gnumeric-imdiv.html
+share/gnome/help/gnumeric/C/gnumeric-imexp.html
+share/gnome/help/gnumeric/C/gnumeric-imln.html
+share/gnome/help/gnumeric/C/gnumeric-imlog10.html
+share/gnome/help/gnumeric/C/gnumeric-imlog2.html
+share/gnome/help/gnumeric/C/gnumeric-impower.html
+share/gnome/help/gnumeric/C/gnumeric-improduct.html
+share/gnome/help/gnumeric/C/gnumeric-imreal.html
+share/gnome/help/gnumeric/C/gnumeric-imsin.html
+share/gnome/help/gnumeric/C/gnumeric-imsqrt.html
+share/gnome/help/gnumeric/C/gnumeric-imsub.html
+share/gnome/help/gnumeric/C/gnumeric-imsum.html
+share/gnome/help/gnumeric/C/gnumeric-imtan.html
+share/gnome/help/gnumeric/C/gnumeric-index.html
+share/gnome/help/gnumeric/C/gnumeric-indirect.html
+share/gnome/help/gnumeric/C/gnumeric-info.html
+share/gnome/help/gnumeric/C/gnumeric-int.html
+share/gnome/help/gnumeric/C/gnumeric-intercept.html
+share/gnome/help/gnumeric/C/gnumeric-intrate.html
+share/gnome/help/gnumeric/C/gnumeric-ipmt.html
+share/gnome/help/gnumeric/C/gnumeric-irr.html
+share/gnome/help/gnumeric/C/gnumeric-isblank.html
+share/gnome/help/gnumeric/C/gnumeric-iserr.html
+share/gnome/help/gnumeric/C/gnumeric-iserror.html
+share/gnome/help/gnumeric/C/gnumeric-iseven.html
+share/gnome/help/gnumeric/C/gnumeric-islogical.html
+share/gnome/help/gnumeric/C/gnumeric-isna.html
+share/gnome/help/gnumeric/C/gnumeric-isnontext.html
+share/gnome/help/gnumeric/C/gnumeric-isnumber.html
+share/gnome/help/gnumeric/C/gnumeric-isodd.html
+share/gnome/help/gnumeric/C/gnumeric-ispmt.html
+share/gnome/help/gnumeric/C/gnumeric-isref.html
+share/gnome/help/gnumeric/C/gnumeric-istext.html
+share/gnome/help/gnumeric/C/gnumeric-kurt.html
+share/gnome/help/gnumeric/C/gnumeric-kurtp.html
+share/gnome/help/gnumeric/C/gnumeric-large.html
+share/gnome/help/gnumeric/C/gnumeric-lcm.html
+share/gnome/help/gnumeric/C/gnumeric-left.html
+share/gnome/help/gnumeric/C/gnumeric-len.html
+share/gnome/help/gnumeric/C/gnumeric-linest.html
+share/gnome/help/gnumeric/C/gnumeric-ln.html
+share/gnome/help/gnumeric/C/gnumeric-log.html
+share/gnome/help/gnumeric/C/gnumeric-log10.html
+share/gnome/help/gnumeric/C/gnumeric-log2.html
+share/gnome/help/gnumeric/C/gnumeric-logest.html
+share/gnome/help/gnumeric/C/gnumeric-loginv.html
+share/gnome/help/gnumeric/C/gnumeric-lognormdist.html
+share/gnome/help/gnumeric/C/gnumeric-lookup.html
+share/gnome/help/gnumeric/C/gnumeric-lower.html
+share/gnome/help/gnumeric/C/gnumeric-match.html
+share/gnome/help/gnumeric/C/gnumeric-max.html
+share/gnome/help/gnumeric/C/gnumeric-maxa.html
+share/gnome/help/gnumeric/C/gnumeric-mdeterm.html
+share/gnome/help/gnumeric/C/gnumeric-mduration.html
+share/gnome/help/gnumeric/C/gnumeric-median.html
+share/gnome/help/gnumeric/C/gnumeric-mid.html
+share/gnome/help/gnumeric/C/gnumeric-min.html
+share/gnome/help/gnumeric/C/gnumeric-mina.html
+share/gnome/help/gnumeric/C/gnumeric-minute.html
+share/gnome/help/gnumeric/C/gnumeric-minverse.html
+share/gnome/help/gnumeric/C/gnumeric-mirr.html
+share/gnome/help/gnumeric/C/gnumeric-mmult.html
+share/gnome/help/gnumeric/C/gnumeric-mod.html
+share/gnome/help/gnumeric/C/gnumeric-mode.html
+share/gnome/help/gnumeric/C/gnumeric-month.html
+share/gnome/help/gnumeric/C/gnumeric-mround.html
+share/gnome/help/gnumeric/C/gnumeric-multinomial.html
+share/gnome/help/gnumeric/C/gnumeric-n.html
+share/gnome/help/gnumeric/C/gnumeric-na.html
+share/gnome/help/gnumeric/C/gnumeric-negbinomdist.html
+share/gnome/help/gnumeric/C/gnumeric-networkdays.html
+share/gnome/help/gnumeric/C/gnumeric-nominal.html
+share/gnome/help/gnumeric/C/gnumeric-normdist.html
+share/gnome/help/gnumeric/C/gnumeric-norminv.html
+share/gnome/help/gnumeric/C/gnumeric-normsdist.html
+share/gnome/help/gnumeric/C/gnumeric-normsinv.html
+share/gnome/help/gnumeric/C/gnumeric-not.html
+share/gnome/help/gnumeric/C/gnumeric-now.html
+share/gnome/help/gnumeric/C/gnumeric-nper.html
+share/gnome/help/gnumeric/C/gnumeric-npv.html
+share/gnome/help/gnumeric/C/gnumeric-oct2bin.html
+share/gnome/help/gnumeric/C/gnumeric-oct2dec.html
+share/gnome/help/gnumeric/C/gnumeric-oct2hex.html
+share/gnome/help/gnumeric/C/gnumeric-odd.html
+share/gnome/help/gnumeric/C/gnumeric-oddfprice.html
+share/gnome/help/gnumeric/C/gnumeric-oddfyield.html
+share/gnome/help/gnumeric/C/gnumeric-oddlprice.html
+share/gnome/help/gnumeric/C/gnumeric-oddlyield.html
+share/gnome/help/gnumeric/C/gnumeric-offset.html
+share/gnome/help/gnumeric/C/gnumeric-or.html
+share/gnome/help/gnumeric/C/gnumeric-pearson.html
+share/gnome/help/gnumeric/C/gnumeric-percentile.html
+share/gnome/help/gnumeric/C/gnumeric-percentrank.html
+share/gnome/help/gnumeric/C/gnumeric-permut.html
+share/gnome/help/gnumeric/C/gnumeric-pi.html
+share/gnome/help/gnumeric/C/gnumeric-pmt.html
+share/gnome/help/gnumeric/C/gnumeric-poisson.html
+share/gnome/help/gnumeric/C/gnumeric-power.html
+share/gnome/help/gnumeric/C/gnumeric-ppmt.html
+share/gnome/help/gnumeric/C/gnumeric-price.html
+share/gnome/help/gnumeric/C/gnumeric-pricedisc.html
+share/gnome/help/gnumeric/C/gnumeric-pricemat.html
+share/gnome/help/gnumeric/C/gnumeric-prob.html
+share/gnome/help/gnumeric/C/gnumeric-product.html
+share/gnome/help/gnumeric/C/gnumeric-proper.html
+share/gnome/help/gnumeric/C/gnumeric-pv.html
+share/gnome/help/gnumeric/C/gnumeric-quartile.html
+share/gnome/help/gnumeric/C/gnumeric-quotient.html
+share/gnome/help/gnumeric/C/gnumeric-radians.html
+share/gnome/help/gnumeric/C/gnumeric-rand.html
+share/gnome/help/gnumeric/C/gnumeric-randbernoulli.html
+share/gnome/help/gnumeric/C/gnumeric-randbetween.html
+share/gnome/help/gnumeric/C/gnumeric-randbinom.html
+share/gnome/help/gnumeric/C/gnumeric-randexp.html
+share/gnome/help/gnumeric/C/gnumeric-randnegbinom.html
+share/gnome/help/gnumeric/C/gnumeric-randpoisson.html
+share/gnome/help/gnumeric/C/gnumeric-rank.html
+share/gnome/help/gnumeric/C/gnumeric-rate.html
+share/gnome/help/gnumeric/C/gnumeric-received.html
+share/gnome/help/gnumeric/C/gnumeric-replace.html
+share/gnome/help/gnumeric/C/gnumeric-rept.html
+share/gnome/help/gnumeric/C/gnumeric-right.html
+share/gnome/help/gnumeric/C/gnumeric-roman.html
+share/gnome/help/gnumeric/C/gnumeric-round.html
+share/gnome/help/gnumeric/C/gnumeric-rounddown.html
+share/gnome/help/gnumeric/C/gnumeric-roundup.html
+share/gnome/help/gnumeric/C/gnumeric-row.html
+share/gnome/help/gnumeric/C/gnumeric-rows.html
+share/gnome/help/gnumeric/C/gnumeric-rsq.html
+share/gnome/help/gnumeric/C/gnumeric-search.html
+share/gnome/help/gnumeric/C/gnumeric-second.html
+share/gnome/help/gnumeric/C/gnumeric-selection.html
+share/gnome/help/gnumeric/C/gnumeric-seriessum.html
+share/gnome/help/gnumeric/C/gnumeric-sign.html
+share/gnome/help/gnumeric/C/gnumeric-sin.html
+share/gnome/help/gnumeric/C/gnumeric-sinh.html
+share/gnome/help/gnumeric/C/gnumeric-skew.html
+share/gnome/help/gnumeric/C/gnumeric-skewp.html
+share/gnome/help/gnumeric/C/gnumeric-sln.html
+share/gnome/help/gnumeric/C/gnumeric-slope.html
+share/gnome/help/gnumeric/C/gnumeric-small.html
+share/gnome/help/gnumeric/C/gnumeric-sqrt.html
+share/gnome/help/gnumeric/C/gnumeric-sqrtpi.html
+share/gnome/help/gnumeric/C/gnumeric-standardize.html
+share/gnome/help/gnumeric/C/gnumeric-stdev.html
+share/gnome/help/gnumeric/C/gnumeric-stdeva.html
+share/gnome/help/gnumeric/C/gnumeric-stdevp.html
+share/gnome/help/gnumeric/C/gnumeric-stdevpa.html
+share/gnome/help/gnumeric/C/gnumeric-steyx.html
+share/gnome/help/gnumeric/C/gnumeric-substitute.html
+share/gnome/help/gnumeric/C/gnumeric-subtotal.html
+share/gnome/help/gnumeric/C/gnumeric-sum.html
+share/gnome/help/gnumeric/C/gnumeric-suma.html
+share/gnome/help/gnumeric/C/gnumeric-sumif.html
+share/gnome/help/gnumeric/C/gnumeric-sumproduct.html
+share/gnome/help/gnumeric/C/gnumeric-sumsq.html
+share/gnome/help/gnumeric/C/gnumeric-sumx2my2.html
+share/gnome/help/gnumeric/C/gnumeric-sumx2py2.html
+share/gnome/help/gnumeric/C/gnumeric-sumxmy2.html
+share/gnome/help/gnumeric/C/gnumeric-syd.html
+share/gnome/help/gnumeric/C/gnumeric-t.html
+share/gnome/help/gnumeric/C/gnumeric-tan.html
+share/gnome/help/gnumeric/C/gnumeric-tanh.html
+share/gnome/help/gnumeric/C/gnumeric-tbilleq.html
+share/gnome/help/gnumeric/C/gnumeric-tbillprice.html
+share/gnome/help/gnumeric/C/gnumeric-tbillyield.html
+share/gnome/help/gnumeric/C/gnumeric-tdist.html
+share/gnome/help/gnumeric/C/gnumeric-text.html
+share/gnome/help/gnumeric/C/gnumeric-time.html
+share/gnome/help/gnumeric/C/gnumeric-timevalue.html
+share/gnome/help/gnumeric/C/gnumeric-tinv.html
+share/gnome/help/gnumeric/C/gnumeric-today.html
+share/gnome/help/gnumeric/C/gnumeric-transpose.html
+share/gnome/help/gnumeric/C/gnumeric-trend.html
+share/gnome/help/gnumeric/C/gnumeric-trim.html
+share/gnome/help/gnumeric/C/gnumeric-trimmean.html
+share/gnome/help/gnumeric/C/gnumeric-true.html
+share/gnome/help/gnumeric/C/gnumeric-trunc.html
+share/gnome/help/gnumeric/C/gnumeric-ttest.html
+share/gnome/help/gnumeric/C/gnumeric-type.html
+share/gnome/help/gnumeric/C/gnumeric-upper.html
+share/gnome/help/gnumeric/C/gnumeric-value.html
+share/gnome/help/gnumeric/C/gnumeric-var.html
+share/gnome/help/gnumeric/C/gnumeric-vara.html
+share/gnome/help/gnumeric/C/gnumeric-varp.html
+share/gnome/help/gnumeric/C/gnumeric-varpa.html
+share/gnome/help/gnumeric/C/gnumeric-vdb.html
+share/gnome/help/gnumeric/C/gnumeric-vlookup.html
+share/gnome/help/gnumeric/C/gnumeric-weekday.html
+share/gnome/help/gnumeric/C/gnumeric-weibull.html
+share/gnome/help/gnumeric/C/gnumeric-workday.html
+share/gnome/help/gnumeric/C/gnumeric-xirr.html
+share/gnome/help/gnumeric/C/gnumeric-xnpv.html
+share/gnome/help/gnumeric/C/gnumeric-year.html
+share/gnome/help/gnumeric/C/gnumeric-yield.html
+share/gnome/help/gnumeric/C/gnumeric-yielddisc.html
+share/gnome/help/gnumeric/C/gnumeric-yieldmat.html
+share/gnome/help/gnumeric/C/gnumeric-ztest.html
share/gnome/help/gnumeric/C/images/add-decimals.png
share/gnome/help/gnumeric/C/images/align-center.png
share/gnome/help/gnumeric/C/images/align-left.png
share/gnome/help/gnumeric/C/images/align-right.png
share/gnome/help/gnumeric/C/images/analysis-tools.png
+share/gnome/help/gnumeric/C/images/analysistools-correlation-ex1.png
+share/gnome/help/gnumeric/C/images/analysistools-correlation-ex2.png
+share/gnome/help/gnumeric/C/images/analysistools-correlation-ex3.png
+share/gnome/help/gnumeric/C/images/analysistools-correlation.png
+share/gnome/help/gnumeric/C/images/analysistools-covariance.png
+share/gnome/help/gnumeric/C/images/analysistools-descstats.png
+share/gnome/help/gnumeric/C/images/analysistools-outputoptions.png
+share/gnome/help/gnumeric/C/images/analysistools-ranges.png
+share/gnome/help/gnumeric/C/images/analysistools-rank.png
+share/gnome/help/gnumeric/C/images/analysistools-tools.png
share/gnome/help/gnumeric/C/images/arrow.png
share/gnome/help/gnumeric/C/images/auto-correct.png
share/gnome/help/gnumeric/C/images/auto-save.png
@@ -247,356 +613,20 @@ share/gnome/help/gnumeric/C/images/zoom.png
share/gnome/help/gnumeric/C/index.html
share/gnome/help/gnumeric/C/introduction.html
share/gnome/help/gnumeric/C/license.html
-share/gnome/help/gnumeric/C/ln8.html
share/gnome/help/gnumeric/C/menu-bar.html
+share/gnome/help/gnumeric/C/moving-average-tool.html
share/gnome/help/gnumeric/C/number-formatting-overview.html
share/gnome/help/gnumeric/C/print-preview.html
share/gnome/help/gnumeric/C/print-setup.html
share/gnome/help/gnumeric/C/printing.html
-share/gnome/help/gnumeric/C/r10002.html
-share/gnome/help/gnumeric/C/r10028.html
-share/gnome/help/gnumeric/C/r10052.html
-share/gnome/help/gnumeric/C/r10080.html
-share/gnome/help/gnumeric/C/r10100.html
-share/gnome/help/gnumeric/C/r10123.html
-share/gnome/help/gnumeric/C/r10147.html
-share/gnome/help/gnumeric/C/r10175.html
-share/gnome/help/gnumeric/C/r10196.html
-share/gnome/help/gnumeric/C/r10216.html
-share/gnome/help/gnumeric/C/r10243.html
-share/gnome/help/gnumeric/C/r10283.html
-share/gnome/help/gnumeric/C/r10308.html
-share/gnome/help/gnumeric/C/r10337.html
-share/gnome/help/gnumeric/C/r10359.html
-share/gnome/help/gnumeric/C/r10382.html
-share/gnome/help/gnumeric/C/r10409.html
-share/gnome/help/gnumeric/C/r10435.html
-share/gnome/help/gnumeric/C/r10463.html
-share/gnome/help/gnumeric/C/r10483.html
-share/gnome/help/gnumeric/C/r10508.html
-share/gnome/help/gnumeric/C/r10531.html
-share/gnome/help/gnumeric/C/r10555.html
-share/gnome/help/gnumeric/C/r10581.html
-share/gnome/help/gnumeric/C/r10603.html
-share/gnome/help/gnumeric/C/r10627.html
-share/gnome/help/gnumeric/C/r10653.html
-share/gnome/help/gnumeric/C/r10675.html
-share/gnome/help/gnumeric/C/r10700.html
-share/gnome/help/gnumeric/C/r10723.html
-share/gnome/help/gnumeric/C/r10745.html
-share/gnome/help/gnumeric/C/r10774.html
-share/gnome/help/gnumeric/C/r10795.html
-share/gnome/help/gnumeric/C/r10818.html
-share/gnome/help/gnumeric/C/r10840.html
-share/gnome/help/gnumeric/C/r10867.html
-share/gnome/help/gnumeric/C/r10887.html
-share/gnome/help/gnumeric/C/r10913.html
-share/gnome/help/gnumeric/C/r10938.html
-share/gnome/help/gnumeric/C/r10961.html
-share/gnome/help/gnumeric/C/r10984.html
-share/gnome/help/gnumeric/C/r11005.html
-share/gnome/help/gnumeric/C/r11030.html
-share/gnome/help/gnumeric/C/r11054.html
-share/gnome/help/gnumeric/C/r11076.html
-share/gnome/help/gnumeric/C/r11096.html
-share/gnome/help/gnumeric/C/r11116.html
-share/gnome/help/gnumeric/C/r11141.html
-share/gnome/help/gnumeric/C/r2696.html
-share/gnome/help/gnumeric/C/r2720.html
-share/gnome/help/gnumeric/C/r2749.html
-share/gnome/help/gnumeric/C/r2770.html
-share/gnome/help/gnumeric/C/r2794.html
-share/gnome/help/gnumeric/C/r2824.html
-share/gnome/help/gnumeric/C/r2844.html
-share/gnome/help/gnumeric/C/r2866.html
-share/gnome/help/gnumeric/C/r2889.html
-share/gnome/help/gnumeric/C/r2917.html
-share/gnome/help/gnumeric/C/r2938.html
-share/gnome/help/gnumeric/C/r2968.html
-share/gnome/help/gnumeric/C/r2988.html
-share/gnome/help/gnumeric/C/r3012.html
-share/gnome/help/gnumeric/C/r3034.html
-share/gnome/help/gnumeric/C/r3073.html
-share/gnome/help/gnumeric/C/r3096.html
-share/gnome/help/gnumeric/C/r3117.html
-share/gnome/help/gnumeric/C/r3147.html
-share/gnome/help/gnumeric/C/r3187.html
-share/gnome/help/gnumeric/C/r3210.html
-share/gnome/help/gnumeric/C/r3234.html
-share/gnome/help/gnumeric/C/r3258.html
-share/gnome/help/gnumeric/C/r3288.html
-share/gnome/help/gnumeric/C/r3312.html
-share/gnome/help/gnumeric/C/r3335.html
-share/gnome/help/gnumeric/C/r3357.html
-share/gnome/help/gnumeric/C/r3380.html
-share/gnome/help/gnumeric/C/r3409.html
-share/gnome/help/gnumeric/C/r3433.html
-share/gnome/help/gnumeric/C/r3460.html
-share/gnome/help/gnumeric/C/r3484.html
-share/gnome/help/gnumeric/C/r3509.html
-share/gnome/help/gnumeric/C/r3531.html
-share/gnome/help/gnumeric/C/r3558.html
-share/gnome/help/gnumeric/C/r3582.html
-share/gnome/help/gnumeric/C/r3602.html
-share/gnome/help/gnumeric/C/r3624.html
-share/gnome/help/gnumeric/C/r3648.html
-share/gnome/help/gnumeric/C/r3673.html
-share/gnome/help/gnumeric/C/r3696.html
-share/gnome/help/gnumeric/C/r3724.html
-share/gnome/help/gnumeric/C/r3747.html
-share/gnome/help/gnumeric/C/r3767.html
-share/gnome/help/gnumeric/C/r3789.html
-share/gnome/help/gnumeric/C/r3816.html
-share/gnome/help/gnumeric/C/r3839.html
-share/gnome/help/gnumeric/C/r3859.html
-share/gnome/help/gnumeric/C/r3970.html
-share/gnome/help/gnumeric/C/r3995.html
-share/gnome/help/gnumeric/C/r4019.html
-share/gnome/help/gnumeric/C/r4042.html
-share/gnome/help/gnumeric/C/r4071.html
-share/gnome/help/gnumeric/C/r4094.html
-share/gnome/help/gnumeric/C/r4117.html
-share/gnome/help/gnumeric/C/r4144.html
-share/gnome/help/gnumeric/C/r4165.html
-share/gnome/help/gnumeric/C/r4189.html
-share/gnome/help/gnumeric/C/r4218.html
-share/gnome/help/gnumeric/C/r4239.html
-share/gnome/help/gnumeric/C/r4262.html
-share/gnome/help/gnumeric/C/r4284.html
-share/gnome/help/gnumeric/C/r4305.html
-share/gnome/help/gnumeric/C/r4328.html
-share/gnome/help/gnumeric/C/r4348.html
-share/gnome/help/gnumeric/C/r4373.html
-share/gnome/help/gnumeric/C/r4396.html
-share/gnome/help/gnumeric/C/r4420.html
-share/gnome/help/gnumeric/C/r4443.html
-share/gnome/help/gnumeric/C/r4463.html
-share/gnome/help/gnumeric/C/r4486.html
-share/gnome/help/gnumeric/C/r4514.html
-share/gnome/help/gnumeric/C/r4538.html
-share/gnome/help/gnumeric/C/r4558.html
-share/gnome/help/gnumeric/C/r4581.html
-share/gnome/help/gnumeric/C/r4607.html
-share/gnome/help/gnumeric/C/r4632.html
-share/gnome/help/gnumeric/C/r4661.html
-share/gnome/help/gnumeric/C/r4684.html
-share/gnome/help/gnumeric/C/r4711.html
-share/gnome/help/gnumeric/C/r4738.html
-share/gnome/help/gnumeric/C/r4760.html
-share/gnome/help/gnumeric/C/r4782.html
-share/gnome/help/gnumeric/C/r4806.html
-share/gnome/help/gnumeric/C/r4831.html
-share/gnome/help/gnumeric/C/r4854.html
-share/gnome/help/gnumeric/C/r4877.html
-share/gnome/help/gnumeric/C/r4899.html
-share/gnome/help/gnumeric/C/r4924.html
-share/gnome/help/gnumeric/C/r4948.html
-share/gnome/help/gnumeric/C/r4972.html
-share/gnome/help/gnumeric/C/r5013.html
-share/gnome/help/gnumeric/C/r5035.html
-share/gnome/help/gnumeric/C/r5056.html
-share/gnome/help/gnumeric/C/r5077.html
-share/gnome/help/gnumeric/C/r5101.html
-share/gnome/help/gnumeric/C/r5127.html
-share/gnome/help/gnumeric/C/r5147.html
-share/gnome/help/gnumeric/C/r5171.html
-share/gnome/help/gnumeric/C/r5193.html
-share/gnome/help/gnumeric/C/r5215.html
-share/gnome/help/gnumeric/C/r5238.html
-share/gnome/help/gnumeric/C/r5264.html
-share/gnome/help/gnumeric/C/r5291.html
-share/gnome/help/gnumeric/C/r5312.html
-share/gnome/help/gnumeric/C/r5334.html
-share/gnome/help/gnumeric/C/r5357.html
-share/gnome/help/gnumeric/C/r5381.html
-share/gnome/help/gnumeric/C/r5422.html
-share/gnome/help/gnumeric/C/r5442.html
-share/gnome/help/gnumeric/C/r5470.html
-share/gnome/help/gnumeric/C/r5494.html
-share/gnome/help/gnumeric/C/r5518.html
-share/gnome/help/gnumeric/C/r5545.html
-share/gnome/help/gnumeric/C/r5570.html
-share/gnome/help/gnumeric/C/r5590.html
-share/gnome/help/gnumeric/C/r5610.html
-share/gnome/help/gnumeric/C/r5634.html
-share/gnome/help/gnumeric/C/r5659.html
-share/gnome/help/gnumeric/C/r5683.html
-share/gnome/help/gnumeric/C/r5708.html
-share/gnome/help/gnumeric/C/r5732.html
-share/gnome/help/gnumeric/C/r5760.html
-share/gnome/help/gnumeric/C/r5783.html
-share/gnome/help/gnumeric/C/r5810.html
-share/gnome/help/gnumeric/C/r5834.html
-share/gnome/help/gnumeric/C/r5854.html
-share/gnome/help/gnumeric/C/r5877.html
-share/gnome/help/gnumeric/C/r5901.html
-share/gnome/help/gnumeric/C/r5941.html
-share/gnome/help/gnumeric/C/r5964.html
-share/gnome/help/gnumeric/C/r5987.html
-share/gnome/help/gnumeric/C/r6012.html
-share/gnome/help/gnumeric/C/r6037.html
-share/gnome/help/gnumeric/C/r6060.html
-share/gnome/help/gnumeric/C/r6083.html
-share/gnome/help/gnumeric/C/r6106.html
-share/gnome/help/gnumeric/C/r6134.html
-share/gnome/help/gnumeric/C/r6154.html
-share/gnome/help/gnumeric/C/r6178.html
-share/gnome/help/gnumeric/C/r6200.html
-share/gnome/help/gnumeric/C/r6240.html
-share/gnome/help/gnumeric/C/r6265.html
-share/gnome/help/gnumeric/C/r6287.html
-share/gnome/help/gnumeric/C/r6308.html
-share/gnome/help/gnumeric/C/r6333.html
-share/gnome/help/gnumeric/C/r6355.html
-share/gnome/help/gnumeric/C/r6384.html
-share/gnome/help/gnumeric/C/r6408.html
-share/gnome/help/gnumeric/C/r6433.html
-share/gnome/help/gnumeric/C/r6457.html
-share/gnome/help/gnumeric/C/r6484.html
-share/gnome/help/gnumeric/C/r6506.html
-share/gnome/help/gnumeric/C/r6529.html
-share/gnome/help/gnumeric/C/r6555.html
-share/gnome/help/gnumeric/C/r6579.html
-share/gnome/help/gnumeric/C/r6599.html
-share/gnome/help/gnumeric/C/r6626.html
-share/gnome/help/gnumeric/C/r6651.html
-share/gnome/help/gnumeric/C/r6675.html
-share/gnome/help/gnumeric/C/r6698.html
-share/gnome/help/gnumeric/C/r6723.html
-share/gnome/help/gnumeric/C/r6745.html
-share/gnome/help/gnumeric/C/r6768.html
-share/gnome/help/gnumeric/C/r6790.html
-share/gnome/help/gnumeric/C/r6832.html
-share/gnome/help/gnumeric/C/r6855.html
-share/gnome/help/gnumeric/C/r6878.html
-share/gnome/help/gnumeric/C/r6899.html
-share/gnome/help/gnumeric/C/r6931.html
-share/gnome/help/gnumeric/C/r6956.html
-share/gnome/help/gnumeric/C/r6981.html
-share/gnome/help/gnumeric/C/r7001.html
-share/gnome/help/gnumeric/C/r7024.html
-share/gnome/help/gnumeric/C/r7049.html
-share/gnome/help/gnumeric/C/r7073.html
-share/gnome/help/gnumeric/C/r7094.html
-share/gnome/help/gnumeric/C/r7117.html
-share/gnome/help/gnumeric/C/r7142.html
-share/gnome/help/gnumeric/C/r7165.html
-share/gnome/help/gnumeric/C/r7194.html
-share/gnome/help/gnumeric/C/r7218.html
-share/gnome/help/gnumeric/C/r7240.html
-share/gnome/help/gnumeric/C/r7267.html
-share/gnome/help/gnumeric/C/r7289.html
-share/gnome/help/gnumeric/C/r7316.html
-share/gnome/help/gnumeric/C/r7336.html
-share/gnome/help/gnumeric/C/r7362.html
-share/gnome/help/gnumeric/C/r7387.html
-share/gnome/help/gnumeric/C/r7412.html
-share/gnome/help/gnumeric/C/r7436.html
-share/gnome/help/gnumeric/C/r7463.html
-share/gnome/help/gnumeric/C/r7503.html
-share/gnome/help/gnumeric/C/r7529.html
-share/gnome/help/gnumeric/C/r7552.html
-share/gnome/help/gnumeric/C/r7574.html
-share/gnome/help/gnumeric/C/r7597.html
-share/gnome/help/gnumeric/C/r7619.html
-share/gnome/help/gnumeric/C/r7639.html
-share/gnome/help/gnumeric/C/r7664.html
-share/gnome/help/gnumeric/C/r7686.html
-share/gnome/help/gnumeric/C/r7712.html
-share/gnome/help/gnumeric/C/r7735.html
-share/gnome/help/gnumeric/C/r7760.html
-share/gnome/help/gnumeric/C/r7788.html
-share/gnome/help/gnumeric/C/r7818.html
-share/gnome/help/gnumeric/C/r7842.html
-share/gnome/help/gnumeric/C/r7868.html
-share/gnome/help/gnumeric/C/r7888.html
-share/gnome/help/gnumeric/C/r7924.html
-share/gnome/help/gnumeric/C/r7941.html
-share/gnome/help/gnumeric/C/r7963.html
-share/gnome/help/gnumeric/C/r7988.html
-share/gnome/help/gnumeric/C/r8013.html
-share/gnome/help/gnumeric/C/r8037.html
-share/gnome/help/gnumeric/C/r8060.html
-share/gnome/help/gnumeric/C/r8083.html
-share/gnome/help/gnumeric/C/r8106.html
-share/gnome/help/gnumeric/C/r8139.html
-share/gnome/help/gnumeric/C/r8161.html
-share/gnome/help/gnumeric/C/r8188.html
-share/gnome/help/gnumeric/C/r8208.html
-share/gnome/help/gnumeric/C/r8248.html
-share/gnome/help/gnumeric/C/r8271.html
-share/gnome/help/gnumeric/C/r8294.html
-share/gnome/help/gnumeric/C/r8317.html
-share/gnome/help/gnumeric/C/r8341.html
-share/gnome/help/gnumeric/C/r8365.html
-share/gnome/help/gnumeric/C/r8391.html
-share/gnome/help/gnumeric/C/r8413.html
-share/gnome/help/gnumeric/C/r8437.html
-share/gnome/help/gnumeric/C/r8465.html
-share/gnome/help/gnumeric/C/r8488.html
-share/gnome/help/gnumeric/C/r8508.html
-share/gnome/help/gnumeric/C/r8530.html
-share/gnome/help/gnumeric/C/r8557.html
-share/gnome/help/gnumeric/C/r8580.html
-share/gnome/help/gnumeric/C/r8602.html
-share/gnome/help/gnumeric/C/r8626.html
-share/gnome/help/gnumeric/C/r8659.html
-share/gnome/help/gnumeric/C/r8687.html
-share/gnome/help/gnumeric/C/r8711.html
-share/gnome/help/gnumeric/C/r8733.html
-share/gnome/help/gnumeric/C/r8761.html
-share/gnome/help/gnumeric/C/r8787.html
-share/gnome/help/gnumeric/C/r8810.html
-share/gnome/help/gnumeric/C/r8833.html
-share/gnome/help/gnumeric/C/r8861.html
-share/gnome/help/gnumeric/C/r8885.html
-share/gnome/help/gnumeric/C/r8910.html
-share/gnome/help/gnumeric/C/r8938.html
-share/gnome/help/gnumeric/C/r8965.html
-share/gnome/help/gnumeric/C/r8983.html
-share/gnome/help/gnumeric/C/r9007.html
-share/gnome/help/gnumeric/C/r9035.html
-share/gnome/help/gnumeric/C/r9063.html
-share/gnome/help/gnumeric/C/r9086.html
-share/gnome/help/gnumeric/C/r9108.html
-share/gnome/help/gnumeric/C/r9131.html
-share/gnome/help/gnumeric/C/r9151.html
-share/gnome/help/gnumeric/C/r9179.html
-share/gnome/help/gnumeric/C/r9200.html
-share/gnome/help/gnumeric/C/r9223.html
-share/gnome/help/gnumeric/C/r9247.html
-share/gnome/help/gnumeric/C/r9271.html
-share/gnome/help/gnumeric/C/r9299.html
-share/gnome/help/gnumeric/C/r9322.html
-share/gnome/help/gnumeric/C/r9351.html
-share/gnome/help/gnumeric/C/r9373.html
-share/gnome/help/gnumeric/C/r9397.html
-share/gnome/help/gnumeric/C/r9418.html
-share/gnome/help/gnumeric/C/r9442.html
-share/gnome/help/gnumeric/C/r9465.html
-share/gnome/help/gnumeric/C/r9490.html
-share/gnome/help/gnumeric/C/r9513.html
-share/gnome/help/gnumeric/C/r9533.html
-share/gnome/help/gnumeric/C/r9554.html
-share/gnome/help/gnumeric/C/r9579.html
-share/gnome/help/gnumeric/C/r9608.html
-share/gnome/help/gnumeric/C/r9633.html
-share/gnome/help/gnumeric/C/r9653.html
-share/gnome/help/gnumeric/C/r9673.html
-share/gnome/help/gnumeric/C/r9695.html
-share/gnome/help/gnumeric/C/r9717.html
-share/gnome/help/gnumeric/C/r9741.html
-share/gnome/help/gnumeric/C/r9767.html
-share/gnome/help/gnumeric/C/r9788.html
-share/gnome/help/gnumeric/C/r9829.html
-share/gnome/help/gnumeric/C/r9857.html
-share/gnome/help/gnumeric/C/r9877.html
-share/gnome/help/gnumeric/C/r9917.html
-share/gnome/help/gnumeric/C/r9938.html
-share/gnome/help/gnumeric/C/r9961.html
+share/gnome/help/gnumeric/C/random-number-generation-tool.html
+share/gnome/help/gnumeric/C/rank-and-percentile-tool.html
+share/gnome/help/gnumeric/C/regression-tool.html
share/gnome/help/gnumeric/C/rest.html
+share/gnome/help/gnumeric/C/sampling-tool.html
share/gnome/help/gnumeric/C/selecting-cells-entering-formulas.html
share/gnome/help/gnumeric/C/solver.html
+share/gnome/help/gnumeric/C/t-test.html
share/gnome/help/gnumeric/C/toolbar-buttons.html
share/gnome/help/gnumeric/C/topic.dat
share/gnome/help/gnumeric/C/tutorials.html
@@ -697,7 +727,7 @@ share/locale/sv/LC_MESSAGES/gnumeric.mo
share/locale/tr/LC_MESSAGES/gnumeric.mo
share/locale/uk/LC_MESSAGES/gnumeric.mo
share/locale/zh_CN.GB2312/LC_MESSAGES/gnumeric.mo
-share/locale/zh_TW.Big5/LC_MESSAGES/gnumeric.mo
+share/locale/zh_TW/LC_MESSAGES/gnumeric.mo
@dirrm share/gnome/pixmaps/gnumeric
@dirrm share/gnome/help/gnumeric/C/images
@dirrm share/gnome/help/gnumeric/C
@@ -729,6 +759,7 @@ share/locale/zh_TW.Big5/LC_MESSAGES/gnumeric.mo
@dirrm lib/gnumeric/%%VERSION%%/plugins/plan_perfect
@dirrm lib/gnumeric/%%VERSION%%/plugins/oleo
@dirrm lib/gnumeric/%%VERSION%%/plugins/numtheory
+@dirrm lib/gnumeric/%%VERSION%%/plugins/mps
@dirrm lib/gnumeric/%%VERSION%%/plugins/lotus
@dirrm lib/gnumeric/%%VERSION%%/plugins/html
@dirrm lib/gnumeric/%%VERSION%%/plugins/gnome-glossary
diff --git a/math/gnumeric2/Makefile b/math/gnumeric2/Makefile
index d09567caa632..f8c06cd9baf6 100644
--- a/math/gnumeric2/Makefile
+++ b/math/gnumeric2/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= gnumeric
-PORTVERSION= 0.70
+PORTVERSION= 0.71
CATEGORIES?= math gnome
MASTER_SITES= ${MASTER_SITE_GNOME}
MASTER_SITE_SUBDIR= stable/sources/gnumeric
diff --git a/math/gnumeric2/distinfo b/math/gnumeric2/distinfo
index d4da8721721e..fd41af76d096 100644
--- a/math/gnumeric2/distinfo
+++ b/math/gnumeric2/distinfo
@@ -1 +1 @@
-MD5 (gnumeric-0.70.tar.bz2) = 573056959d0fd96ead78599978ca1418
+MD5 (gnumeric-0.71.tar.bz2) = be97aa3c4a2a6a4c58c5b7c3a9511dea
diff --git a/math/gnumeric2/files/patch-plugins::gb::Makefile.in b/math/gnumeric2/files/patch-plugins::gb::Makefile.in
index 921407563055..f56b7f4e776b 100644
--- a/math/gnumeric2/files/patch-plugins::gb::Makefile.in
+++ b/math/gnumeric2/files/patch-plugins::gb::Makefile.in
@@ -1,14 +1,14 @@
$FreeBSD$
---- plugins/gb/Makefile.in 2001/07/09 16:19:36 1.1
-+++ plugins/gb/Makefile.in 2001/07/09 16:19:48
-@@ -181,7 +181,7 @@
- gnum_gb_la_SOURCES = common.c common.h excel-gb-application.c excel-gb-application.h excel-gb-context.c excel-gb-context.h excel-gb-interior.c excel-gb-interior.h excel-gb-range.c excel-gb-range.h excel-gb-selection.c excel-gb-selection.h excel-gb-worksheet.c excel-gb-worksheet.h excel-gb-worksheets.c excel-gb-worksheets.h excel-gb-worksheet-function.c excel-gb-worksheet-function.h plugin.c streams.h streams.c
+--- plugins/gb/Makefile.in.orig Tue Oct 9 15:16:29 2001
++++ plugins/gb/Makefile.in Tue Oct 9 15:20:18 2001
+@@ -216,7 +216,7 @@
+ gnum_gb_la_LIBADD = \
+ $(GB_LIBS) \
+ $(GNUMERIC_LIBS) \
+- -lm @GLIB_LIBS@ -lgb -lgbrun
++ -lm @GLIB_LIBS@ -lgbrun
--gnum_gb_la_LIBADD = $(GB_LIBS) $(EXTRA_GNOME_LIBS) -lm @GLIB_LIBS@ -lgb -lgbrun
-+gnum_gb_la_LIBADD = $(GB_LIBS) $(EXTRA_GNOME_LIBS) -lm @GLIB_LIBS@ -lgbrun
-
-
- EXTRA_DIST = README main.gba gnumeric.gbp $(gnum_gb_DATA)
+ xml_in_files = plugin.xml.in
diff --git a/math/gnumeric2/files/patch-plugins::psiconv::psiconv-read.c b/math/gnumeric2/files/patch-plugins::psiconv::psiconv-read.c
new file mode 100644
index 000000000000..d6f3e2bf29df
--- /dev/null
+++ b/math/gnumeric2/files/patch-plugins::psiconv::psiconv-read.c
@@ -0,0 +1,50 @@
+
+$FreeBSD$
+
+--- plugins/psiconv/psiconv-read.c 2001/10/09 12:39:33 1.1
++++ plugins/psiconv/psiconv-read.c 2001/10/09 12:51:24
+@@ -420,7 +420,7 @@
+
+ formula = psiconv_get_formula (psi_formulas, psi_cell->ref_formula);
+
+- return (formula != NULL) ? return parse_subexpr (formula) : NULL;
++ return (formula != NULL) ? parse_subexpr (formula) : NULL;
+ }
+
+ static void
+@@ -429,27 +429,27 @@
+ {
+ Cell *cell;
+ Value *val;
+- ExprTree *tree;
++ ExprTree *tree = NULL;
+ psiconv_formula psi_formula;
+
+ cell = sheet_cell_fetch (sheet, psi_cell->column, psi_cell->row);
+ if (!cell)
+ return;
+
+- val = value_new_from_psi_cell (psi_cell);
++ val = value_new_from_psi_cell (cell, psi_cell);
+
+ if (psi_cell->calculated)
+- expr = expr_new_from_formula (psi_cell, psi_formulas);
++ tree = expr_new_from_formula (psi_cell, psi_formulas);
+
+- if (expr != NULL) {
++ if (tree != NULL) {
+ /* TODO : is there a notion of parse format ?
+ * How does it store a user entered date ?
+ */
+- if (value != NULL)
+- cell_set_expr_and_value (cell, expr, val, NULL, TRUE);
++ if (val != NULL)
++ cell_set_expr_and_value (cell, tree, val, NULL, TRUE);
+ else
+- cell_set_expr (cell, expr, NULL);
+- } else if (value != NULL) {
++ cell_set_expr (cell, tree, NULL);
++ } else if (val != NULL) {
+ /* TODO : is there a notion of parse format ?
+ * How does it store a user entered date ?
+ */
diff --git a/math/gnumeric2/pkg-plist b/math/gnumeric2/pkg-plist
index c8ea1dbc3eba..e789aa781e92 100644
--- a/math/gnumeric2/pkg-plist
+++ b/math/gnumeric2/pkg-plist
@@ -9,7 +9,6 @@ lib/gnumeric/%%VERSION%%/plugins/dif/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/excel/excel.so
lib/gnumeric/%%VERSION%%/plugins/excel/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/gb/gnum_gb.so
-lib/gnumeric/%%VERSION%%/plugins/gb/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/gdaif/gdaif.so
lib/gnumeric/%%VERSION%%/plugins/gdaif/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/gnome-glossary/glossary-po-header
@@ -19,10 +18,13 @@ lib/gnumeric/%%VERSION%%/plugins/html/html.so
lib/gnumeric/%%VERSION%%/plugins/html/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/lotus/lotus.so
lib/gnumeric/%%VERSION%%/plugins/lotus/plugin.xml
+lib/gnumeric/%%VERSION%%/plugins/mps/mps.so
+lib/gnumeric/%%VERSION%%/plugins/mps/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/numtheory/numtheory.so
lib/gnumeric/%%VERSION%%/plugins/numtheory/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/oleo/oleo.so
lib/gnumeric/%%VERSION%%/plugins/oleo/plugin.xml
+lib/gnumeric/%%VERSION%%/plugins/plan_perfect/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/psiconv/plugin.xml
lib/gnumeric/%%VERSION%%/plugins/psiconv/psiconv.so
lib/gnumeric/%%VERSION%%/plugins/py-func/plugin.xml
@@ -81,7 +83,10 @@ share/gnome/gnumeric/%%VERSION%%/glade/cell-sort.glade
share/gnome/gnumeric/%%VERSION%%/glade/col-width.glade
share/gnome/gnumeric/%%VERSION%%/glade/colrow.glade
share/gnome/gnumeric/%%VERSION%%/glade/consolidate.glade
+share/gnome/gnumeric/%%VERSION%%/glade/correlation.glade
+share/gnome/gnumeric/%%VERSION%%/glade/covariance.glade
share/gnome/gnumeric/%%VERSION%%/glade/delete-cells.glade
+share/gnome/gnumeric/%%VERSION%%/glade/descriptive-stats.glade
share/gnome/gnumeric/%%VERSION%%/glade/dialog-stf-export.glade
share/gnome/gnumeric/%%VERSION%%/glade/dialog-stf.glade
share/gnome/gnumeric/%%VERSION%%/glade/dialog-zoom.glade
@@ -91,21 +96,26 @@ share/gnome/gnumeric/%%VERSION%%/glade/function-select.glade
share/gnome/gnumeric/%%VERSION%%/glade/graph-guru.glade
share/gnome/gnumeric/%%VERSION%%/glade/hf-config.glade
share/gnome/gnumeric/%%VERSION%%/glade/insert-cells.glade
+share/gnome/gnumeric/%%VERSION%%/glade/mean-tests.glade
share/gnome/gnumeric/%%VERSION%%/glade/names.glade
share/gnome/gnumeric/%%VERSION%%/glade/plugin-manager.glade
share/gnome/gnumeric/%%VERSION%%/glade/print.glade
+share/gnome/gnumeric/%%VERSION%%/glade/rank.glade
share/gnome/gnumeric/%%VERSION%%/glade/row-height.glade
+share/gnome/gnumeric/%%VERSION%%/glade/sampling.glade
share/gnome/gnumeric/%%VERSION%%/glade/search-replace.glade
+share/gnome/gnumeric/%%VERSION%%/glade/search.glade
share/gnome/gnumeric/%%VERSION%%/glade/sheet-order.glade
share/gnome/gnumeric/%%VERSION%%/glade/sheet-rename.glade
share/gnome/gnumeric/%%VERSION%%/glade/solver-options.glade
share/gnome/gnumeric/%%VERSION%%/glade/solver.glade
share/gnome/gnumeric/%%VERSION%%/glade/summary.glade
share/gnome/gnumeric/%%VERSION%%/glade/validate.glade
+share/gnome/gnumeric/%%VERSION%%/glade/variance-tests.glade
share/gnome/gnumeric/%%VERSION%%/glade/workbook-attr.glade
share/gnome/gnumeric/%%VERSION%%/gnome/ui/GNOME_Gnumeric.xml
-share/gnome/gnumeric/%%VERSION%%/idl/Gnumeric.idl
-share/gnome/gnumeric/%%VERSION%%/idl/gnumeric-graphs.idl
+share/gnome/gnumeric/%%VERSION%%/idl/GNOME_Gnumeric.idl
+share/gnome/gnumeric/%%VERSION%%/idl/GNOME_Gnumeric_Graph.idl
share/gnome/gnumeric/%%VERSION%%/python/gnumeric_defs.py
share/gnome/gnumeric/%%VERSION%%/python/gnumeric_startup.py
share/gnome/gnumeric/%%VERSION%%/templates/invoice.gnumeric
@@ -113,24 +123,380 @@ share/gnome/gnumeric/%%VERSION%%/templates/loan.gnumeric
share/gnome/gnumeric/%%VERSION%%/templates/mileage.gnumeric
share/gnome/gnumeric/%%VERSION%%/templates/purchase_order.gnumeric
share/gnome/help/gnumeric/C/analysis-tools.html
+share/gnome/help/gnumeric/C/anova.html
share/gnome/help/gnumeric/C/authors.html
share/gnome/help/gnumeric/C/autofill.html
+share/gnome/help/gnumeric/C/autosave.html
share/gnome/help/gnumeric/C/cell-elements.html
share/gnome/help/gnumeric/C/cell-referencing.html
share/gnome/help/gnumeric/C/copying-moving.html
+share/gnome/help/gnumeric/C/correlation-tool.html
+share/gnome/help/gnumeric/C/covariance-tool.html
share/gnome/help/gnumeric/C/data-and-time-formatting.html
-share/gnome/help/gnumeric/C/docbook.css
+share/gnome/help/gnumeric/C/descriptive-statistics-tool.html
share/gnome/help/gnumeric/C/editing-selections.html
share/gnome/help/gnumeric/C/editing.html
share/gnome/help/gnumeric/C/files.html
share/gnome/help/gnumeric/C/formatting.html
share/gnome/help/gnumeric/C/formulas.html
+share/gnome/help/gnumeric/C/ftest-two-sample-for-variances-tool.html
share/gnome/help/gnumeric/C/function-reference.html
+share/gnome/help/gnumeric/C/gnumeric-abs.html
+share/gnome/help/gnumeric/C/gnumeric-accrint.html
+share/gnome/help/gnumeric/C/gnumeric-accrintm.html
+share/gnome/help/gnumeric/C/gnumeric-acos.html
+share/gnome/help/gnumeric/C/gnumeric-acosh.html
+share/gnome/help/gnumeric/C/gnumeric-address.html
+share/gnome/help/gnumeric/C/gnumeric-amordegrc.html
+share/gnome/help/gnumeric/C/gnumeric-amorlinc.html
+share/gnome/help/gnumeric/C/gnumeric-and.html
+share/gnome/help/gnumeric/C/gnumeric-asin.html
+share/gnome/help/gnumeric/C/gnumeric-asinh.html
+share/gnome/help/gnumeric/C/gnumeric-atan.html
+share/gnome/help/gnumeric/C/gnumeric-atan2.html
+share/gnome/help/gnumeric/C/gnumeric-atanh.html
+share/gnome/help/gnumeric/C/gnumeric-avedev.html
+share/gnome/help/gnumeric/C/gnumeric-average.html
+share/gnome/help/gnumeric/C/gnumeric-averagea.html
+share/gnome/help/gnumeric/C/gnumeric-besseli.html
+share/gnome/help/gnumeric/C/gnumeric-besselj.html
+share/gnome/help/gnumeric/C/gnumeric-besselk.html
+share/gnome/help/gnumeric/C/gnumeric-bessely.html
+share/gnome/help/gnumeric/C/gnumeric-betadist.html
+share/gnome/help/gnumeric/C/gnumeric-betainv.html
+share/gnome/help/gnumeric/C/gnumeric-bin2dec.html
+share/gnome/help/gnumeric/C/gnumeric-bin2hex.html
+share/gnome/help/gnumeric/C/gnumeric-bin2oct.html
+share/gnome/help/gnumeric/C/gnumeric-binomdist.html
+share/gnome/help/gnumeric/C/gnumeric-ceil.html
+share/gnome/help/gnumeric/C/gnumeric-ceiling.html
+share/gnome/help/gnumeric/C/gnumeric-cell.html
+share/gnome/help/gnumeric/C/gnumeric-char.html
+share/gnome/help/gnumeric/C/gnumeric-chidist.html
+share/gnome/help/gnumeric/C/gnumeric-chiinv.html
+share/gnome/help/gnumeric/C/gnumeric-chitest.html
+share/gnome/help/gnumeric/C/gnumeric-choose.html
+share/gnome/help/gnumeric/C/gnumeric-clean.html
+share/gnome/help/gnumeric/C/gnumeric-code.html
+share/gnome/help/gnumeric/C/gnumeric-column.html
+share/gnome/help/gnumeric/C/gnumeric-columns.html
+share/gnome/help/gnumeric/C/gnumeric-combin.html
+share/gnome/help/gnumeric/C/gnumeric-complex.html
+share/gnome/help/gnumeric/C/gnumeric-concatenate.html
+share/gnome/help/gnumeric/C/gnumeric-confidence.html
+share/gnome/help/gnumeric/C/gnumeric-convert.html
+share/gnome/help/gnumeric/C/gnumeric-correl.html
+share/gnome/help/gnumeric/C/gnumeric-cos.html
+share/gnome/help/gnumeric/C/gnumeric-cosh.html
+share/gnome/help/gnumeric/C/gnumeric-count.html
+share/gnome/help/gnumeric/C/gnumeric-counta.html
+share/gnome/help/gnumeric/C/gnumeric-countblank.html
+share/gnome/help/gnumeric/C/gnumeric-countif.html
+share/gnome/help/gnumeric/C/gnumeric-coupdaybs.html
+share/gnome/help/gnumeric/C/gnumeric-coupdays.html
+share/gnome/help/gnumeric/C/gnumeric-coupdaysnc.html
+share/gnome/help/gnumeric/C/gnumeric-coupncd.html
+share/gnome/help/gnumeric/C/gnumeric-coupnum.html
+share/gnome/help/gnumeric/C/gnumeric-couppcd.html
+share/gnome/help/gnumeric/C/gnumeric-covar.html
+share/gnome/help/gnumeric/C/gnumeric-critbinom.html
+share/gnome/help/gnumeric/C/gnumeric-cumipmt.html
+share/gnome/help/gnumeric/C/gnumeric-cumprinc.html
+share/gnome/help/gnumeric/C/gnumeric-date.html
+share/gnome/help/gnumeric/C/gnumeric-datedif.html
+share/gnome/help/gnumeric/C/gnumeric-datevalue.html
+share/gnome/help/gnumeric/C/gnumeric-daverage.html
+share/gnome/help/gnumeric/C/gnumeric-day.html
+share/gnome/help/gnumeric/C/gnumeric-days360.html
+share/gnome/help/gnumeric/C/gnumeric-db.html
+share/gnome/help/gnumeric/C/gnumeric-dcount.html
+share/gnome/help/gnumeric/C/gnumeric-dcounta.html
+share/gnome/help/gnumeric/C/gnumeric-ddb.html
+share/gnome/help/gnumeric/C/gnumeric-dec2bin.html
+share/gnome/help/gnumeric/C/gnumeric-dec2hex.html
+share/gnome/help/gnumeric/C/gnumeric-dec2oct.html
+share/gnome/help/gnumeric/C/gnumeric-degrees.html
+share/gnome/help/gnumeric/C/gnumeric-delta.html
+share/gnome/help/gnumeric/C/gnumeric-devsq.html
+share/gnome/help/gnumeric/C/gnumeric-dget.html
+share/gnome/help/gnumeric/C/gnumeric-disc.html
+share/gnome/help/gnumeric/C/gnumeric-dmax.html
+share/gnome/help/gnumeric/C/gnumeric-dmin.html
+share/gnome/help/gnumeric/C/gnumeric-dollar.html
+share/gnome/help/gnumeric/C/gnumeric-dollarde.html
+share/gnome/help/gnumeric/C/gnumeric-dollarfr.html
+share/gnome/help/gnumeric/C/gnumeric-dproduct.html
+share/gnome/help/gnumeric/C/gnumeric-dstdev.html
+share/gnome/help/gnumeric/C/gnumeric-dstdevp.html
+share/gnome/help/gnumeric/C/gnumeric-dsum.html
+share/gnome/help/gnumeric/C/gnumeric-duration.html
+share/gnome/help/gnumeric/C/gnumeric-dvar.html
+share/gnome/help/gnumeric/C/gnumeric-dvarp.html
+share/gnome/help/gnumeric/C/gnumeric-edate.html
+share/gnome/help/gnumeric/C/gnumeric-effect.html
+share/gnome/help/gnumeric/C/gnumeric-eomonth.html
+share/gnome/help/gnumeric/C/gnumeric-erf.html
+share/gnome/help/gnumeric/C/gnumeric-erfc.html
+share/gnome/help/gnumeric/C/gnumeric-error.html
+share/gnome/help/gnumeric/C/gnumeric-error.type.html
+share/gnome/help/gnumeric/C/gnumeric-euro.html
+share/gnome/help/gnumeric/C/gnumeric-even.html
+share/gnome/help/gnumeric/C/gnumeric-exact.html
+share/gnome/help/gnumeric/C/gnumeric-exp.html
+share/gnome/help/gnumeric/C/gnumeric-expondist.html
+share/gnome/help/gnumeric/C/gnumeric-expression.html
+share/gnome/help/gnumeric/C/gnumeric-fact.html
+share/gnome/help/gnumeric/C/gnumeric-factdouble.html
+share/gnome/help/gnumeric/C/gnumeric-false.html
+share/gnome/help/gnumeric/C/gnumeric-fdist.html
+share/gnome/help/gnumeric/C/gnumeric-find.html
+share/gnome/help/gnumeric/C/gnumeric-finv.html
+share/gnome/help/gnumeric/C/gnumeric-fisher.html
+share/gnome/help/gnumeric/C/gnumeric-fisherinv.html
+share/gnome/help/gnumeric/C/gnumeric-fixed.html
+share/gnome/help/gnumeric/C/gnumeric-floor.html
+share/gnome/help/gnumeric/C/gnumeric-forecast.html
+share/gnome/help/gnumeric/C/gnumeric-frequency.html
+share/gnome/help/gnumeric/C/gnumeric-ftest.html
+share/gnome/help/gnumeric/C/gnumeric-fv.html
+share/gnome/help/gnumeric/C/gnumeric-fvschedule.html
+share/gnome/help/gnumeric/C/gnumeric-gammadist.html
+share/gnome/help/gnumeric/C/gnumeric-gammainv.html
+share/gnome/help/gnumeric/C/gnumeric-gammaln.html
+share/gnome/help/gnumeric/C/gnumeric-gcd.html
+share/gnome/help/gnumeric/C/gnumeric-geomean.html
+share/gnome/help/gnumeric/C/gnumeric-gestep.html
+share/gnome/help/gnumeric/C/gnumeric-getpivotdata.html
+share/gnome/help/gnumeric/C/gnumeric-gnumericxversion.html
+share/gnome/help/gnumeric/C/gnumeric-growth.html
+share/gnome/help/gnumeric/C/gnumeric-gxproduct.html
+share/gnome/help/gnumeric/C/gnumeric-harmean.html
+share/gnome/help/gnumeric/C/gnumeric-hex2bin.html
+share/gnome/help/gnumeric/C/gnumeric-hex2dec.html
+share/gnome/help/gnumeric/C/gnumeric-hex2oct.html
+share/gnome/help/gnumeric/C/gnumeric-hlookup.html
+share/gnome/help/gnumeric/C/gnumeric-hour.html
+share/gnome/help/gnumeric/C/gnumeric-hyperlink.html
+share/gnome/help/gnumeric/C/gnumeric-hypgeomdist.html
+share/gnome/help/gnumeric/C/gnumeric-if.html
+share/gnome/help/gnumeric/C/gnumeric-imabs.html
+share/gnome/help/gnumeric/C/gnumeric-imaginary.html
+share/gnome/help/gnumeric/C/gnumeric-imargument.html
+share/gnome/help/gnumeric/C/gnumeric-imconjugate.html
+share/gnome/help/gnumeric/C/gnumeric-imcos.html
+share/gnome/help/gnumeric/C/gnumeric-imdiv.html
+share/gnome/help/gnumeric/C/gnumeric-imexp.html
+share/gnome/help/gnumeric/C/gnumeric-imln.html
+share/gnome/help/gnumeric/C/gnumeric-imlog10.html
+share/gnome/help/gnumeric/C/gnumeric-imlog2.html
+share/gnome/help/gnumeric/C/gnumeric-impower.html
+share/gnome/help/gnumeric/C/gnumeric-improduct.html
+share/gnome/help/gnumeric/C/gnumeric-imreal.html
+share/gnome/help/gnumeric/C/gnumeric-imsin.html
+share/gnome/help/gnumeric/C/gnumeric-imsqrt.html
+share/gnome/help/gnumeric/C/gnumeric-imsub.html
+share/gnome/help/gnumeric/C/gnumeric-imsum.html
+share/gnome/help/gnumeric/C/gnumeric-imtan.html
+share/gnome/help/gnumeric/C/gnumeric-index.html
+share/gnome/help/gnumeric/C/gnumeric-indirect.html
+share/gnome/help/gnumeric/C/gnumeric-info.html
+share/gnome/help/gnumeric/C/gnumeric-int.html
+share/gnome/help/gnumeric/C/gnumeric-intercept.html
+share/gnome/help/gnumeric/C/gnumeric-intrate.html
+share/gnome/help/gnumeric/C/gnumeric-ipmt.html
+share/gnome/help/gnumeric/C/gnumeric-irr.html
+share/gnome/help/gnumeric/C/gnumeric-isblank.html
+share/gnome/help/gnumeric/C/gnumeric-iserr.html
+share/gnome/help/gnumeric/C/gnumeric-iserror.html
+share/gnome/help/gnumeric/C/gnumeric-iseven.html
+share/gnome/help/gnumeric/C/gnumeric-islogical.html
+share/gnome/help/gnumeric/C/gnumeric-isna.html
+share/gnome/help/gnumeric/C/gnumeric-isnontext.html
+share/gnome/help/gnumeric/C/gnumeric-isnumber.html
+share/gnome/help/gnumeric/C/gnumeric-isodd.html
+share/gnome/help/gnumeric/C/gnumeric-ispmt.html
+share/gnome/help/gnumeric/C/gnumeric-isref.html
+share/gnome/help/gnumeric/C/gnumeric-istext.html
+share/gnome/help/gnumeric/C/gnumeric-kurt.html
+share/gnome/help/gnumeric/C/gnumeric-kurtp.html
+share/gnome/help/gnumeric/C/gnumeric-large.html
+share/gnome/help/gnumeric/C/gnumeric-lcm.html
+share/gnome/help/gnumeric/C/gnumeric-left.html
+share/gnome/help/gnumeric/C/gnumeric-len.html
+share/gnome/help/gnumeric/C/gnumeric-linest.html
+share/gnome/help/gnumeric/C/gnumeric-ln.html
+share/gnome/help/gnumeric/C/gnumeric-log.html
+share/gnome/help/gnumeric/C/gnumeric-log10.html
+share/gnome/help/gnumeric/C/gnumeric-log2.html
+share/gnome/help/gnumeric/C/gnumeric-logest.html
+share/gnome/help/gnumeric/C/gnumeric-loginv.html
+share/gnome/help/gnumeric/C/gnumeric-lognormdist.html
+share/gnome/help/gnumeric/C/gnumeric-lookup.html
+share/gnome/help/gnumeric/C/gnumeric-lower.html
+share/gnome/help/gnumeric/C/gnumeric-match.html
+share/gnome/help/gnumeric/C/gnumeric-max.html
+share/gnome/help/gnumeric/C/gnumeric-maxa.html
+share/gnome/help/gnumeric/C/gnumeric-mdeterm.html
+share/gnome/help/gnumeric/C/gnumeric-mduration.html
+share/gnome/help/gnumeric/C/gnumeric-median.html
+share/gnome/help/gnumeric/C/gnumeric-mid.html
+share/gnome/help/gnumeric/C/gnumeric-min.html
+share/gnome/help/gnumeric/C/gnumeric-mina.html
+share/gnome/help/gnumeric/C/gnumeric-minute.html
+share/gnome/help/gnumeric/C/gnumeric-minverse.html
+share/gnome/help/gnumeric/C/gnumeric-mirr.html
+share/gnome/help/gnumeric/C/gnumeric-mmult.html
+share/gnome/help/gnumeric/C/gnumeric-mod.html
+share/gnome/help/gnumeric/C/gnumeric-mode.html
+share/gnome/help/gnumeric/C/gnumeric-month.html
+share/gnome/help/gnumeric/C/gnumeric-mround.html
+share/gnome/help/gnumeric/C/gnumeric-multinomial.html
+share/gnome/help/gnumeric/C/gnumeric-n.html
+share/gnome/help/gnumeric/C/gnumeric-na.html
+share/gnome/help/gnumeric/C/gnumeric-negbinomdist.html
+share/gnome/help/gnumeric/C/gnumeric-networkdays.html
+share/gnome/help/gnumeric/C/gnumeric-nominal.html
+share/gnome/help/gnumeric/C/gnumeric-normdist.html
+share/gnome/help/gnumeric/C/gnumeric-norminv.html
+share/gnome/help/gnumeric/C/gnumeric-normsdist.html
+share/gnome/help/gnumeric/C/gnumeric-normsinv.html
+share/gnome/help/gnumeric/C/gnumeric-not.html
+share/gnome/help/gnumeric/C/gnumeric-now.html
+share/gnome/help/gnumeric/C/gnumeric-nper.html
+share/gnome/help/gnumeric/C/gnumeric-npv.html
+share/gnome/help/gnumeric/C/gnumeric-oct2bin.html
+share/gnome/help/gnumeric/C/gnumeric-oct2dec.html
+share/gnome/help/gnumeric/C/gnumeric-oct2hex.html
+share/gnome/help/gnumeric/C/gnumeric-odd.html
+share/gnome/help/gnumeric/C/gnumeric-oddfprice.html
+share/gnome/help/gnumeric/C/gnumeric-oddfyield.html
+share/gnome/help/gnumeric/C/gnumeric-oddlprice.html
+share/gnome/help/gnumeric/C/gnumeric-oddlyield.html
+share/gnome/help/gnumeric/C/gnumeric-offset.html
+share/gnome/help/gnumeric/C/gnumeric-or.html
+share/gnome/help/gnumeric/C/gnumeric-pearson.html
+share/gnome/help/gnumeric/C/gnumeric-percentile.html
+share/gnome/help/gnumeric/C/gnumeric-percentrank.html
+share/gnome/help/gnumeric/C/gnumeric-permut.html
+share/gnome/help/gnumeric/C/gnumeric-pi.html
+share/gnome/help/gnumeric/C/gnumeric-pmt.html
+share/gnome/help/gnumeric/C/gnumeric-poisson.html
+share/gnome/help/gnumeric/C/gnumeric-power.html
+share/gnome/help/gnumeric/C/gnumeric-ppmt.html
+share/gnome/help/gnumeric/C/gnumeric-price.html
+share/gnome/help/gnumeric/C/gnumeric-pricedisc.html
+share/gnome/help/gnumeric/C/gnumeric-pricemat.html
+share/gnome/help/gnumeric/C/gnumeric-prob.html
+share/gnome/help/gnumeric/C/gnumeric-product.html
+share/gnome/help/gnumeric/C/gnumeric-proper.html
+share/gnome/help/gnumeric/C/gnumeric-pv.html
+share/gnome/help/gnumeric/C/gnumeric-quartile.html
+share/gnome/help/gnumeric/C/gnumeric-quotient.html
+share/gnome/help/gnumeric/C/gnumeric-radians.html
+share/gnome/help/gnumeric/C/gnumeric-rand.html
+share/gnome/help/gnumeric/C/gnumeric-randbernoulli.html
+share/gnome/help/gnumeric/C/gnumeric-randbetween.html
+share/gnome/help/gnumeric/C/gnumeric-randbinom.html
+share/gnome/help/gnumeric/C/gnumeric-randexp.html
+share/gnome/help/gnumeric/C/gnumeric-randnegbinom.html
+share/gnome/help/gnumeric/C/gnumeric-randpoisson.html
+share/gnome/help/gnumeric/C/gnumeric-rank.html
+share/gnome/help/gnumeric/C/gnumeric-rate.html
+share/gnome/help/gnumeric/C/gnumeric-received.html
+share/gnome/help/gnumeric/C/gnumeric-replace.html
+share/gnome/help/gnumeric/C/gnumeric-rept.html
+share/gnome/help/gnumeric/C/gnumeric-right.html
+share/gnome/help/gnumeric/C/gnumeric-roman.html
+share/gnome/help/gnumeric/C/gnumeric-round.html
+share/gnome/help/gnumeric/C/gnumeric-rounddown.html
+share/gnome/help/gnumeric/C/gnumeric-roundup.html
+share/gnome/help/gnumeric/C/gnumeric-row.html
+share/gnome/help/gnumeric/C/gnumeric-rows.html
+share/gnome/help/gnumeric/C/gnumeric-rsq.html
+share/gnome/help/gnumeric/C/gnumeric-search.html
+share/gnome/help/gnumeric/C/gnumeric-second.html
+share/gnome/help/gnumeric/C/gnumeric-selection.html
+share/gnome/help/gnumeric/C/gnumeric-seriessum.html
+share/gnome/help/gnumeric/C/gnumeric-sign.html
+share/gnome/help/gnumeric/C/gnumeric-sin.html
+share/gnome/help/gnumeric/C/gnumeric-sinh.html
+share/gnome/help/gnumeric/C/gnumeric-skew.html
+share/gnome/help/gnumeric/C/gnumeric-skewp.html
+share/gnome/help/gnumeric/C/gnumeric-sln.html
+share/gnome/help/gnumeric/C/gnumeric-slope.html
+share/gnome/help/gnumeric/C/gnumeric-small.html
+share/gnome/help/gnumeric/C/gnumeric-sqrt.html
+share/gnome/help/gnumeric/C/gnumeric-sqrtpi.html
+share/gnome/help/gnumeric/C/gnumeric-standardize.html
+share/gnome/help/gnumeric/C/gnumeric-stdev.html
+share/gnome/help/gnumeric/C/gnumeric-stdeva.html
+share/gnome/help/gnumeric/C/gnumeric-stdevp.html
+share/gnome/help/gnumeric/C/gnumeric-stdevpa.html
+share/gnome/help/gnumeric/C/gnumeric-steyx.html
+share/gnome/help/gnumeric/C/gnumeric-substitute.html
+share/gnome/help/gnumeric/C/gnumeric-subtotal.html
+share/gnome/help/gnumeric/C/gnumeric-sum.html
+share/gnome/help/gnumeric/C/gnumeric-suma.html
+share/gnome/help/gnumeric/C/gnumeric-sumif.html
+share/gnome/help/gnumeric/C/gnumeric-sumproduct.html
+share/gnome/help/gnumeric/C/gnumeric-sumsq.html
+share/gnome/help/gnumeric/C/gnumeric-sumx2my2.html
+share/gnome/help/gnumeric/C/gnumeric-sumx2py2.html
+share/gnome/help/gnumeric/C/gnumeric-sumxmy2.html
+share/gnome/help/gnumeric/C/gnumeric-syd.html
+share/gnome/help/gnumeric/C/gnumeric-t.html
+share/gnome/help/gnumeric/C/gnumeric-tan.html
+share/gnome/help/gnumeric/C/gnumeric-tanh.html
+share/gnome/help/gnumeric/C/gnumeric-tbilleq.html
+share/gnome/help/gnumeric/C/gnumeric-tbillprice.html
+share/gnome/help/gnumeric/C/gnumeric-tbillyield.html
+share/gnome/help/gnumeric/C/gnumeric-tdist.html
+share/gnome/help/gnumeric/C/gnumeric-text.html
+share/gnome/help/gnumeric/C/gnumeric-time.html
+share/gnome/help/gnumeric/C/gnumeric-timevalue.html
+share/gnome/help/gnumeric/C/gnumeric-tinv.html
+share/gnome/help/gnumeric/C/gnumeric-today.html
+share/gnome/help/gnumeric/C/gnumeric-transpose.html
+share/gnome/help/gnumeric/C/gnumeric-trend.html
+share/gnome/help/gnumeric/C/gnumeric-trim.html
+share/gnome/help/gnumeric/C/gnumeric-trimmean.html
+share/gnome/help/gnumeric/C/gnumeric-true.html
+share/gnome/help/gnumeric/C/gnumeric-trunc.html
+share/gnome/help/gnumeric/C/gnumeric-ttest.html
+share/gnome/help/gnumeric/C/gnumeric-type.html
+share/gnome/help/gnumeric/C/gnumeric-upper.html
+share/gnome/help/gnumeric/C/gnumeric-value.html
+share/gnome/help/gnumeric/C/gnumeric-var.html
+share/gnome/help/gnumeric/C/gnumeric-vara.html
+share/gnome/help/gnumeric/C/gnumeric-varp.html
+share/gnome/help/gnumeric/C/gnumeric-varpa.html
+share/gnome/help/gnumeric/C/gnumeric-vdb.html
+share/gnome/help/gnumeric/C/gnumeric-vlookup.html
+share/gnome/help/gnumeric/C/gnumeric-weekday.html
+share/gnome/help/gnumeric/C/gnumeric-weibull.html
+share/gnome/help/gnumeric/C/gnumeric-workday.html
+share/gnome/help/gnumeric/C/gnumeric-xirr.html
+share/gnome/help/gnumeric/C/gnumeric-xnpv.html
+share/gnome/help/gnumeric/C/gnumeric-year.html
+share/gnome/help/gnumeric/C/gnumeric-yield.html
+share/gnome/help/gnumeric/C/gnumeric-yielddisc.html
+share/gnome/help/gnumeric/C/gnumeric-yieldmat.html
+share/gnome/help/gnumeric/C/gnumeric-ztest.html
share/gnome/help/gnumeric/C/images/add-decimals.png
share/gnome/help/gnumeric/C/images/align-center.png
share/gnome/help/gnumeric/C/images/align-left.png
share/gnome/help/gnumeric/C/images/align-right.png
share/gnome/help/gnumeric/C/images/analysis-tools.png
+share/gnome/help/gnumeric/C/images/analysistools-correlation-ex1.png
+share/gnome/help/gnumeric/C/images/analysistools-correlation-ex2.png
+share/gnome/help/gnumeric/C/images/analysistools-correlation-ex3.png
+share/gnome/help/gnumeric/C/images/analysistools-correlation.png
+share/gnome/help/gnumeric/C/images/analysistools-covariance.png
+share/gnome/help/gnumeric/C/images/analysistools-descstats.png
+share/gnome/help/gnumeric/C/images/analysistools-outputoptions.png
+share/gnome/help/gnumeric/C/images/analysistools-ranges.png
+share/gnome/help/gnumeric/C/images/analysistools-rank.png
+share/gnome/help/gnumeric/C/images/analysistools-tools.png
share/gnome/help/gnumeric/C/images/arrow.png
share/gnome/help/gnumeric/C/images/auto-correct.png
share/gnome/help/gnumeric/C/images/auto-save.png
@@ -247,356 +613,20 @@ share/gnome/help/gnumeric/C/images/zoom.png
share/gnome/help/gnumeric/C/index.html
share/gnome/help/gnumeric/C/introduction.html
share/gnome/help/gnumeric/C/license.html
-share/gnome/help/gnumeric/C/ln8.html
share/gnome/help/gnumeric/C/menu-bar.html
+share/gnome/help/gnumeric/C/moving-average-tool.html
share/gnome/help/gnumeric/C/number-formatting-overview.html
share/gnome/help/gnumeric/C/print-preview.html
share/gnome/help/gnumeric/C/print-setup.html
share/gnome/help/gnumeric/C/printing.html
-share/gnome/help/gnumeric/C/r10002.html
-share/gnome/help/gnumeric/C/r10028.html
-share/gnome/help/gnumeric/C/r10052.html
-share/gnome/help/gnumeric/C/r10080.html
-share/gnome/help/gnumeric/C/r10100.html
-share/gnome/help/gnumeric/C/r10123.html
-share/gnome/help/gnumeric/C/r10147.html
-share/gnome/help/gnumeric/C/r10175.html
-share/gnome/help/gnumeric/C/r10196.html
-share/gnome/help/gnumeric/C/r10216.html
-share/gnome/help/gnumeric/C/r10243.html
-share/gnome/help/gnumeric/C/r10283.html
-share/gnome/help/gnumeric/C/r10308.html
-share/gnome/help/gnumeric/C/r10337.html
-share/gnome/help/gnumeric/C/r10359.html
-share/gnome/help/gnumeric/C/r10382.html
-share/gnome/help/gnumeric/C/r10409.html
-share/gnome/help/gnumeric/C/r10435.html
-share/gnome/help/gnumeric/C/r10463.html
-share/gnome/help/gnumeric/C/r10483.html
-share/gnome/help/gnumeric/C/r10508.html
-share/gnome/help/gnumeric/C/r10531.html
-share/gnome/help/gnumeric/C/r10555.html
-share/gnome/help/gnumeric/C/r10581.html
-share/gnome/help/gnumeric/C/r10603.html
-share/gnome/help/gnumeric/C/r10627.html
-share/gnome/help/gnumeric/C/r10653.html
-share/gnome/help/gnumeric/C/r10675.html
-share/gnome/help/gnumeric/C/r10700.html
-share/gnome/help/gnumeric/C/r10723.html
-share/gnome/help/gnumeric/C/r10745.html
-share/gnome/help/gnumeric/C/r10774.html
-share/gnome/help/gnumeric/C/r10795.html
-share/gnome/help/gnumeric/C/r10818.html
-share/gnome/help/gnumeric/C/r10840.html
-share/gnome/help/gnumeric/C/r10867.html
-share/gnome/help/gnumeric/C/r10887.html
-share/gnome/help/gnumeric/C/r10913.html
-share/gnome/help/gnumeric/C/r10938.html
-share/gnome/help/gnumeric/C/r10961.html
-share/gnome/help/gnumeric/C/r10984.html
-share/gnome/help/gnumeric/C/r11005.html
-share/gnome/help/gnumeric/C/r11030.html
-share/gnome/help/gnumeric/C/r11054.html
-share/gnome/help/gnumeric/C/r11076.html
-share/gnome/help/gnumeric/C/r11096.html
-share/gnome/help/gnumeric/C/r11116.html
-share/gnome/help/gnumeric/C/r11141.html
-share/gnome/help/gnumeric/C/r2696.html
-share/gnome/help/gnumeric/C/r2720.html
-share/gnome/help/gnumeric/C/r2749.html
-share/gnome/help/gnumeric/C/r2770.html
-share/gnome/help/gnumeric/C/r2794.html
-share/gnome/help/gnumeric/C/r2824.html
-share/gnome/help/gnumeric/C/r2844.html
-share/gnome/help/gnumeric/C/r2866.html
-share/gnome/help/gnumeric/C/r2889.html
-share/gnome/help/gnumeric/C/r2917.html
-share/gnome/help/gnumeric/C/r2938.html
-share/gnome/help/gnumeric/C/r2968.html
-share/gnome/help/gnumeric/C/r2988.html
-share/gnome/help/gnumeric/C/r3012.html
-share/gnome/help/gnumeric/C/r3034.html
-share/gnome/help/gnumeric/C/r3073.html
-share/gnome/help/gnumeric/C/r3096.html
-share/gnome/help/gnumeric/C/r3117.html
-share/gnome/help/gnumeric/C/r3147.html
-share/gnome/help/gnumeric/C/r3187.html
-share/gnome/help/gnumeric/C/r3210.html
-share/gnome/help/gnumeric/C/r3234.html
-share/gnome/help/gnumeric/C/r3258.html
-share/gnome/help/gnumeric/C/r3288.html
-share/gnome/help/gnumeric/C/r3312.html
-share/gnome/help/gnumeric/C/r3335.html
-share/gnome/help/gnumeric/C/r3357.html
-share/gnome/help/gnumeric/C/r3380.html
-share/gnome/help/gnumeric/C/r3409.html
-share/gnome/help/gnumeric/C/r3433.html
-share/gnome/help/gnumeric/C/r3460.html
-share/gnome/help/gnumeric/C/r3484.html
-share/gnome/help/gnumeric/C/r3509.html
-share/gnome/help/gnumeric/C/r3531.html
-share/gnome/help/gnumeric/C/r3558.html
-share/gnome/help/gnumeric/C/r3582.html
-share/gnome/help/gnumeric/C/r3602.html
-share/gnome/help/gnumeric/C/r3624.html
-share/gnome/help/gnumeric/C/r3648.html
-share/gnome/help/gnumeric/C/r3673.html
-share/gnome/help/gnumeric/C/r3696.html
-share/gnome/help/gnumeric/C/r3724.html
-share/gnome/help/gnumeric/C/r3747.html
-share/gnome/help/gnumeric/C/r3767.html
-share/gnome/help/gnumeric/C/r3789.html
-share/gnome/help/gnumeric/C/r3816.html
-share/gnome/help/gnumeric/C/r3839.html
-share/gnome/help/gnumeric/C/r3859.html
-share/gnome/help/gnumeric/C/r3970.html
-share/gnome/help/gnumeric/C/r3995.html
-share/gnome/help/gnumeric/C/r4019.html
-share/gnome/help/gnumeric/C/r4042.html
-share/gnome/help/gnumeric/C/r4071.html
-share/gnome/help/gnumeric/C/r4094.html
-share/gnome/help/gnumeric/C/r4117.html
-share/gnome/help/gnumeric/C/r4144.html
-share/gnome/help/gnumeric/C/r4165.html
-share/gnome/help/gnumeric/C/r4189.html
-share/gnome/help/gnumeric/C/r4218.html
-share/gnome/help/gnumeric/C/r4239.html
-share/gnome/help/gnumeric/C/r4262.html
-share/gnome/help/gnumeric/C/r4284.html
-share/gnome/help/gnumeric/C/r4305.html
-share/gnome/help/gnumeric/C/r4328.html
-share/gnome/help/gnumeric/C/r4348.html
-share/gnome/help/gnumeric/C/r4373.html
-share/gnome/help/gnumeric/C/r4396.html
-share/gnome/help/gnumeric/C/r4420.html
-share/gnome/help/gnumeric/C/r4443.html
-share/gnome/help/gnumeric/C/r4463.html
-share/gnome/help/gnumeric/C/r4486.html
-share/gnome/help/gnumeric/C/r4514.html
-share/gnome/help/gnumeric/C/r4538.html
-share/gnome/help/gnumeric/C/r4558.html
-share/gnome/help/gnumeric/C/r4581.html
-share/gnome/help/gnumeric/C/r4607.html
-share/gnome/help/gnumeric/C/r4632.html
-share/gnome/help/gnumeric/C/r4661.html
-share/gnome/help/gnumeric/C/r4684.html
-share/gnome/help/gnumeric/C/r4711.html
-share/gnome/help/gnumeric/C/r4738.html
-share/gnome/help/gnumeric/C/r4760.html
-share/gnome/help/gnumeric/C/r4782.html
-share/gnome/help/gnumeric/C/r4806.html
-share/gnome/help/gnumeric/C/r4831.html
-share/gnome/help/gnumeric/C/r4854.html
-share/gnome/help/gnumeric/C/r4877.html
-share/gnome/help/gnumeric/C/r4899.html
-share/gnome/help/gnumeric/C/r4924.html
-share/gnome/help/gnumeric/C/r4948.html
-share/gnome/help/gnumeric/C/r4972.html
-share/gnome/help/gnumeric/C/r5013.html
-share/gnome/help/gnumeric/C/r5035.html
-share/gnome/help/gnumeric/C/r5056.html
-share/gnome/help/gnumeric/C/r5077.html
-share/gnome/help/gnumeric/C/r5101.html
-share/gnome/help/gnumeric/C/r5127.html
-share/gnome/help/gnumeric/C/r5147.html
-share/gnome/help/gnumeric/C/r5171.html
-share/gnome/help/gnumeric/C/r5193.html
-share/gnome/help/gnumeric/C/r5215.html
-share/gnome/help/gnumeric/C/r5238.html
-share/gnome/help/gnumeric/C/r5264.html
-share/gnome/help/gnumeric/C/r5291.html
-share/gnome/help/gnumeric/C/r5312.html
-share/gnome/help/gnumeric/C/r5334.html
-share/gnome/help/gnumeric/C/r5357.html
-share/gnome/help/gnumeric/C/r5381.html
-share/gnome/help/gnumeric/C/r5422.html
-share/gnome/help/gnumeric/C/r5442.html
-share/gnome/help/gnumeric/C/r5470.html
-share/gnome/help/gnumeric/C/r5494.html
-share/gnome/help/gnumeric/C/r5518.html
-share/gnome/help/gnumeric/C/r5545.html
-share/gnome/help/gnumeric/C/r5570.html
-share/gnome/help/gnumeric/C/r5590.html
-share/gnome/help/gnumeric/C/r5610.html
-share/gnome/help/gnumeric/C/r5634.html
-share/gnome/help/gnumeric/C/r5659.html
-share/gnome/help/gnumeric/C/r5683.html
-share/gnome/help/gnumeric/C/r5708.html
-share/gnome/help/gnumeric/C/r5732.html
-share/gnome/help/gnumeric/C/r5760.html
-share/gnome/help/gnumeric/C/r5783.html
-share/gnome/help/gnumeric/C/r5810.html
-share/gnome/help/gnumeric/C/r5834.html
-share/gnome/help/gnumeric/C/r5854.html
-share/gnome/help/gnumeric/C/r5877.html
-share/gnome/help/gnumeric/C/r5901.html
-share/gnome/help/gnumeric/C/r5941.html
-share/gnome/help/gnumeric/C/r5964.html
-share/gnome/help/gnumeric/C/r5987.html
-share/gnome/help/gnumeric/C/r6012.html
-share/gnome/help/gnumeric/C/r6037.html
-share/gnome/help/gnumeric/C/r6060.html
-share/gnome/help/gnumeric/C/r6083.html
-share/gnome/help/gnumeric/C/r6106.html
-share/gnome/help/gnumeric/C/r6134.html
-share/gnome/help/gnumeric/C/r6154.html
-share/gnome/help/gnumeric/C/r6178.html
-share/gnome/help/gnumeric/C/r6200.html
-share/gnome/help/gnumeric/C/r6240.html
-share/gnome/help/gnumeric/C/r6265.html
-share/gnome/help/gnumeric/C/r6287.html
-share/gnome/help/gnumeric/C/r6308.html
-share/gnome/help/gnumeric/C/r6333.html
-share/gnome/help/gnumeric/C/r6355.html
-share/gnome/help/gnumeric/C/r6384.html
-share/gnome/help/gnumeric/C/r6408.html
-share/gnome/help/gnumeric/C/r6433.html
-share/gnome/help/gnumeric/C/r6457.html
-share/gnome/help/gnumeric/C/r6484.html
-share/gnome/help/gnumeric/C/r6506.html
-share/gnome/help/gnumeric/C/r6529.html
-share/gnome/help/gnumeric/C/r6555.html
-share/gnome/help/gnumeric/C/r6579.html
-share/gnome/help/gnumeric/C/r6599.html
-share/gnome/help/gnumeric/C/r6626.html
-share/gnome/help/gnumeric/C/r6651.html
-share/gnome/help/gnumeric/C/r6675.html
-share/gnome/help/gnumeric/C/r6698.html
-share/gnome/help/gnumeric/C/r6723.html
-share/gnome/help/gnumeric/C/r6745.html
-share/gnome/help/gnumeric/C/r6768.html
-share/gnome/help/gnumeric/C/r6790.html
-share/gnome/help/gnumeric/C/r6832.html
-share/gnome/help/gnumeric/C/r6855.html
-share/gnome/help/gnumeric/C/r6878.html
-share/gnome/help/gnumeric/C/r6899.html
-share/gnome/help/gnumeric/C/r6931.html
-share/gnome/help/gnumeric/C/r6956.html
-share/gnome/help/gnumeric/C/r6981.html
-share/gnome/help/gnumeric/C/r7001.html
-share/gnome/help/gnumeric/C/r7024.html
-share/gnome/help/gnumeric/C/r7049.html
-share/gnome/help/gnumeric/C/r7073.html
-share/gnome/help/gnumeric/C/r7094.html
-share/gnome/help/gnumeric/C/r7117.html
-share/gnome/help/gnumeric/C/r7142.html
-share/gnome/help/gnumeric/C/r7165.html
-share/gnome/help/gnumeric/C/r7194.html
-share/gnome/help/gnumeric/C/r7218.html
-share/gnome/help/gnumeric/C/r7240.html
-share/gnome/help/gnumeric/C/r7267.html
-share/gnome/help/gnumeric/C/r7289.html
-share/gnome/help/gnumeric/C/r7316.html
-share/gnome/help/gnumeric/C/r7336.html
-share/gnome/help/gnumeric/C/r7362.html
-share/gnome/help/gnumeric/C/r7387.html
-share/gnome/help/gnumeric/C/r7412.html
-share/gnome/help/gnumeric/C/r7436.html
-share/gnome/help/gnumeric/C/r7463.html
-share/gnome/help/gnumeric/C/r7503.html
-share/gnome/help/gnumeric/C/r7529.html
-share/gnome/help/gnumeric/C/r7552.html
-share/gnome/help/gnumeric/C/r7574.html
-share/gnome/help/gnumeric/C/r7597.html
-share/gnome/help/gnumeric/C/r7619.html
-share/gnome/help/gnumeric/C/r7639.html
-share/gnome/help/gnumeric/C/r7664.html
-share/gnome/help/gnumeric/C/r7686.html
-share/gnome/help/gnumeric/C/r7712.html
-share/gnome/help/gnumeric/C/r7735.html
-share/gnome/help/gnumeric/C/r7760.html
-share/gnome/help/gnumeric/C/r7788.html
-share/gnome/help/gnumeric/C/r7818.html
-share/gnome/help/gnumeric/C/r7842.html
-share/gnome/help/gnumeric/C/r7868.html
-share/gnome/help/gnumeric/C/r7888.html
-share/gnome/help/gnumeric/C/r7924.html
-share/gnome/help/gnumeric/C/r7941.html
-share/gnome/help/gnumeric/C/r7963.html
-share/gnome/help/gnumeric/C/r7988.html
-share/gnome/help/gnumeric/C/r8013.html
-share/gnome/help/gnumeric/C/r8037.html
-share/gnome/help/gnumeric/C/r8060.html
-share/gnome/help/gnumeric/C/r8083.html
-share/gnome/help/gnumeric/C/r8106.html
-share/gnome/help/gnumeric/C/r8139.html
-share/gnome/help/gnumeric/C/r8161.html
-share/gnome/help/gnumeric/C/r8188.html
-share/gnome/help/gnumeric/C/r8208.html
-share/gnome/help/gnumeric/C/r8248.html
-share/gnome/help/gnumeric/C/r8271.html
-share/gnome/help/gnumeric/C/r8294.html
-share/gnome/help/gnumeric/C/r8317.html
-share/gnome/help/gnumeric/C/r8341.html
-share/gnome/help/gnumeric/C/r8365.html
-share/gnome/help/gnumeric/C/r8391.html
-share/gnome/help/gnumeric/C/r8413.html
-share/gnome/help/gnumeric/C/r8437.html
-share/gnome/help/gnumeric/C/r8465.html
-share/gnome/help/gnumeric/C/r8488.html
-share/gnome/help/gnumeric/C/r8508.html
-share/gnome/help/gnumeric/C/r8530.html
-share/gnome/help/gnumeric/C/r8557.html
-share/gnome/help/gnumeric/C/r8580.html
-share/gnome/help/gnumeric/C/r8602.html
-share/gnome/help/gnumeric/C/r8626.html
-share/gnome/help/gnumeric/C/r8659.html
-share/gnome/help/gnumeric/C/r8687.html
-share/gnome/help/gnumeric/C/r8711.html
-share/gnome/help/gnumeric/C/r8733.html
-share/gnome/help/gnumeric/C/r8761.html
-share/gnome/help/gnumeric/C/r8787.html
-share/gnome/help/gnumeric/C/r8810.html
-share/gnome/help/gnumeric/C/r8833.html
-share/gnome/help/gnumeric/C/r8861.html
-share/gnome/help/gnumeric/C/r8885.html
-share/gnome/help/gnumeric/C/r8910.html
-share/gnome/help/gnumeric/C/r8938.html
-share/gnome/help/gnumeric/C/r8965.html
-share/gnome/help/gnumeric/C/r8983.html
-share/gnome/help/gnumeric/C/r9007.html
-share/gnome/help/gnumeric/C/r9035.html
-share/gnome/help/gnumeric/C/r9063.html
-share/gnome/help/gnumeric/C/r9086.html
-share/gnome/help/gnumeric/C/r9108.html
-share/gnome/help/gnumeric/C/r9131.html
-share/gnome/help/gnumeric/C/r9151.html
-share/gnome/help/gnumeric/C/r9179.html
-share/gnome/help/gnumeric/C/r9200.html
-share/gnome/help/gnumeric/C/r9223.html
-share/gnome/help/gnumeric/C/r9247.html
-share/gnome/help/gnumeric/C/r9271.html
-share/gnome/help/gnumeric/C/r9299.html
-share/gnome/help/gnumeric/C/r9322.html
-share/gnome/help/gnumeric/C/r9351.html
-share/gnome/help/gnumeric/C/r9373.html
-share/gnome/help/gnumeric/C/r9397.html
-share/gnome/help/gnumeric/C/r9418.html
-share/gnome/help/gnumeric/C/r9442.html
-share/gnome/help/gnumeric/C/r9465.html
-share/gnome/help/gnumeric/C/r9490.html
-share/gnome/help/gnumeric/C/r9513.html
-share/gnome/help/gnumeric/C/r9533.html
-share/gnome/help/gnumeric/C/r9554.html
-share/gnome/help/gnumeric/C/r9579.html
-share/gnome/help/gnumeric/C/r9608.html
-share/gnome/help/gnumeric/C/r9633.html
-share/gnome/help/gnumeric/C/r9653.html
-share/gnome/help/gnumeric/C/r9673.html
-share/gnome/help/gnumeric/C/r9695.html
-share/gnome/help/gnumeric/C/r9717.html
-share/gnome/help/gnumeric/C/r9741.html
-share/gnome/help/gnumeric/C/r9767.html
-share/gnome/help/gnumeric/C/r9788.html
-share/gnome/help/gnumeric/C/r9829.html
-share/gnome/help/gnumeric/C/r9857.html
-share/gnome/help/gnumeric/C/r9877.html
-share/gnome/help/gnumeric/C/r9917.html
-share/gnome/help/gnumeric/C/r9938.html
-share/gnome/help/gnumeric/C/r9961.html
+share/gnome/help/gnumeric/C/random-number-generation-tool.html
+share/gnome/help/gnumeric/C/rank-and-percentile-tool.html
+share/gnome/help/gnumeric/C/regression-tool.html
share/gnome/help/gnumeric/C/rest.html
+share/gnome/help/gnumeric/C/sampling-tool.html
share/gnome/help/gnumeric/C/selecting-cells-entering-formulas.html
share/gnome/help/gnumeric/C/solver.html
+share/gnome/help/gnumeric/C/t-test.html
share/gnome/help/gnumeric/C/toolbar-buttons.html
share/gnome/help/gnumeric/C/topic.dat
share/gnome/help/gnumeric/C/tutorials.html
@@ -697,7 +727,7 @@ share/locale/sv/LC_MESSAGES/gnumeric.mo
share/locale/tr/LC_MESSAGES/gnumeric.mo
share/locale/uk/LC_MESSAGES/gnumeric.mo
share/locale/zh_CN.GB2312/LC_MESSAGES/gnumeric.mo
-share/locale/zh_TW.Big5/LC_MESSAGES/gnumeric.mo
+share/locale/zh_TW/LC_MESSAGES/gnumeric.mo
@dirrm share/gnome/pixmaps/gnumeric
@dirrm share/gnome/help/gnumeric/C/images
@dirrm share/gnome/help/gnumeric/C
@@ -729,6 +759,7 @@ share/locale/zh_TW.Big5/LC_MESSAGES/gnumeric.mo
@dirrm lib/gnumeric/%%VERSION%%/plugins/plan_perfect
@dirrm lib/gnumeric/%%VERSION%%/plugins/oleo
@dirrm lib/gnumeric/%%VERSION%%/plugins/numtheory
+@dirrm lib/gnumeric/%%VERSION%%/plugins/mps
@dirrm lib/gnumeric/%%VERSION%%/plugins/lotus
@dirrm lib/gnumeric/%%VERSION%%/plugins/html
@dirrm lib/gnumeric/%%VERSION%%/plugins/gnome-glossary