pspp-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pspp-cvs] pspp/doc ChangeLog get-commands.pl language.tex...


From: John Darrington
Subject: [Pspp-cvs] pspp/doc ChangeLog get-commands.pl language.tex...
Date: Tue, 28 Nov 2006 09:39:37 +0000

CVSROOT:        /sources/pspp
Module name:    pspp
Changes by:     John Darrington <jmd>   06/11/28 09:39:37

Modified files:
        doc            : ChangeLog get-commands.pl language.texi 
                         license.texi not-implemented.texi 
                         regression.texi statistics.texi 

Log message:
        Fixed documentation problems

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/pspp/doc/ChangeLog?cvsroot=pspp&r1=1.40&r2=1.41
http://cvs.savannah.gnu.org/viewcvs/pspp/doc/get-commands.pl?cvsroot=pspp&r1=1.1&r2=1.2
http://cvs.savannah.gnu.org/viewcvs/pspp/doc/language.texi?cvsroot=pspp&r1=1.9&r2=1.10
http://cvs.savannah.gnu.org/viewcvs/pspp/doc/license.texi?cvsroot=pspp&r1=1.3&r2=1.4
http://cvs.savannah.gnu.org/viewcvs/pspp/doc/not-implemented.texi?cvsroot=pspp&r1=1.4&r2=1.5
http://cvs.savannah.gnu.org/viewcvs/pspp/doc/regression.texi?cvsroot=pspp&r1=1.5&r2=1.6
http://cvs.savannah.gnu.org/viewcvs/pspp/doc/statistics.texi?cvsroot=pspp&r1=1.11&r2=1.12

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/pspp/pspp/doc/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -b -r1.40 -r1.41
--- ChangeLog   7 Oct 2006 03:10:14 -0000       1.40
+++ ChangeLog   28 Nov 2006 09:39:37 -0000      1.41
@@ -1,3 +1,13 @@
+Tue Nov 28 17:33:31 WST 2006 <address@hidden>
+
+       * get-commands.pl: Fixed generation of ni.texi, which was broken
+       after commands.def was reorganised.
+
+       * not-implemented.texi language.texi regression.texi 
+          statistics.texi: Added some indeces.
+
+       * license.texi: Added information from GPL.
+
 Sat Oct  7 11:02:44 WST 2006 <address@hidden>
 
        * Added documentation for RANK.

Index: get-commands.pl
===================================================================
RCS file: /sources/pspp/pspp/doc/get-commands.pl,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -b -r1.1 -r1.2
--- get-commands.pl     3 May 2005 08:26:21 -0000       1.1
+++ get-commands.pl     28 Nov 2006 09:39:37 -0000      1.2
@@ -1,28 +1,32 @@
-
-#
+#!/usr/bin/perl
 # Creates Texinfo documentation from the source 
 
 $file = $ARGV[0]; 
 open(INFO, $file) || die "Cannot open \"$file\"\n" ;   
+print "address@hidden Generated from $file by get-commands.pl\n";
+print "address@hidden Do not modify!\n\n";
+
 print "address@hidden address@hidden";
 while ($line = <INFO>)
 {
-       if ( $line =~ /^UNIMPL/ ) 
+    if ( $line =~ /^UNIMPL_CMD/ ) 
        {
                @fields = split(/,/,$line); 
                $_ = $fields[0];
-               s/^UNIMPL//;
+       s/^UNIMPL_CMD//;
                s/ *\(\"// ;
                s/\"//;
                $command = $_;
-               $_=$fields[5];
-               s/\"//;
+       $_=$fields[1];
+       s/^ *\"//;
                s/\"\)//;
-               s/^ *//;
                chomp;
                $description = $_;
                print "address@hidden $command\n$description\n\n";
        }
 }
 print "address@hidden table\n";
+
+print "address@hidden Local Variables:\n";
+print "address@hidden buffer-read-only: t\n";
 close(INFO);                   # Close the file

Index: language.texi
===================================================================
RCS file: /sources/pspp/pspp/doc/language.texi,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -b -r1.9 -r1.10
--- language.texi       26 Nov 2006 17:00:54 -0000      1.9
+++ language.texi       28 Nov 2006 09:39:37 -0000      1.10
@@ -524,8 +524,8 @@
 
 @node Sets of Variables, Input and Output Formats, System Variables, Variables
 @subsection Lists of variable names
address@hidden TO convention
address@hidden convention, TO
address@hidden @code{TO} convention
address@hidden convention, @code{TO}
 
 To refer to a set of variables, list their names one after another.
 Optionally, their names may be separated by commas.  To include a
@@ -554,6 +554,7 @@
 @node Input and Output Formats, Scratch Variables, Sets of Variables, Variables
 @subsection Input and Output Formats
 
address@hidden formats
 An @dfn{input format} describes how to interpret the contents of an
 input field as a number or a string.  It might specify that the field
 contains an ordinary decimal number, a time or date, a number in binary
@@ -601,6 +602,7 @@
 @node Basic Numeric Formats
 @subsubsection Basic Numeric Formats
 
address@hidden numeric formats
 The basic numeric formats are used for input and output of real numbers
 in standard or scientific notation.  The following table shows an
 example of how each format displays positive and negative numbers with
@@ -793,6 +795,7 @@
 @node Custom Currency Formats
 @subsubsection Custom Currency Formats
 
address@hidden currency formats
 The custom currency formats are closely related to the basic numeric
 formats, but they allow users to customize the output format.  The
 SET command configures custom currency formats, using the syntax
@@ -943,6 +946,8 @@
 @node Binary and Hexadecimal Numeric Formats
 @subsubsection Binary and Hexadecimal Numeric Formats
 
address@hidden binary formats
address@hidden hexadecimal formats
 The binary and hexadecimal formats are primarily designed for
 compatibility with existing machine formats, not for human readability.
 All of them therefore have a F format as default output format.  Some of
@@ -1034,6 +1039,8 @@
 @node Time and Date Formats
 @subsubsection Time and Date Formats
 
address@hidden time formats
address@hidden date formats
 In PSPP, a @dfn{time} is an interval.  The time formats translate
 between human-friendly descriptions of time intervals and PSPP's
 internal representation of time intervals, which is simply the number of
@@ -1212,6 +1219,7 @@
 @node String Formats
 @subsubsection String Formats
 
address@hidden string formats
 The A and AHEX formats are the only ones that may be assigned to string
 variables.  Neither format allows any decimal places.
 
@@ -1227,6 +1235,7 @@
 @node Scratch Variables,  , Input and Output Formats, Variables
 @subsection Scratch Variables
 
address@hidden scratch variables
 Most of the time, variables don't retain their values between cases.
 Instead, either they're being read from a data file or the active file,
 in which case they assume the value read, or, if created with

Index: license.texi
===================================================================
RCS file: /sources/pspp/pspp/doc/license.texi,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -b -r1.3 -r1.4
--- license.texi        16 Apr 2005 01:39:25 -0000      1.3
+++ license.texi        28 Nov 2006 09:39:37 -0000      1.4
@@ -1,11 +1,13 @@
 @node License, Invocation, Introduction, Top
 @chapter Your rights and obligations
 @cindex license
address@hidden licence
 @cindex your rights and obligations
 @cindex rights, your
address@hidden copyright
 @cindex obligations, your
 
-PSPP is not in the public domain; it is copyrighted and there are
+PSPP is not in the public domain. It is copyrighted and there are
 restrictions on its distribution, but these restrictions are designed
 to permit everything that a good cooperating citizen would want to do.
 What is not allowed is to try to prevent others from further sharing
@@ -28,8 +30,16 @@
 know that what they have is not what we distributed, so that any
 problems introduced by others will not reflect on our reputation.
 
-The precise conditions of the licenses for PSPP are found in the
-General Public Licenses that accompany them.  This manual specifically
+Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+The precise conditions of the license for PSPP are found in the
+GNU General Public License.  You should have received a copy of
+the GNU General Public License along  with this program; if not, write
+to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
+Floor, Boston, MA 02110-1301 USA. This manual specifically
 is covered by the GNU Free Documentation License (@pxref{GNU Free
 Documentation License}).
-

Index: not-implemented.texi
===================================================================
RCS file: /sources/pspp/pspp/doc/not-implemented.texi,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -b -r1.4 -r1.5
--- not-implemented.texi        3 May 2005 08:26:21 -0000       1.4
+++ not-implemented.texi        28 Nov 2006 09:39:37 -0000      1.5
@@ -4,6 +4,9 @@
 This chapter lists parts of the PSPP language that are not yet
 implemented.
 
address@hidden unimplemented commands
address@hidden commands, unimplemented
+
 @include ni.texi
 
 @setfilename ignored

Index: regression.texi
===================================================================
RCS file: /sources/pspp/pspp/doc/regression.texi,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -b -r1.5 -r1.6
--- regression.texi     7 Oct 2006 03:10:14 -0000       1.5
+++ regression.texi     28 Nov 2006 09:39:37 -0000      1.6
@@ -2,6 +2,8 @@
 @comment  node-name,  next,  previous,  up
 @section REGRESSION
 
address@hidden regression
address@hidden linear regression
 The REGRESSION procedure fits linear models to data via least-squares
 estimation. The procedure is appropriate for data which satisfy those
 assumptions typical in linear regression:

Index: statistics.texi
===================================================================
RCS file: /sources/pspp/pspp/doc/statistics.texi,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -b -r1.11 -r1.12
--- statistics.texi     3 Nov 2006 09:54:15 -0000       1.11
+++ statistics.texi     28 Nov 2006 09:39:37 -0000      1.12
@@ -4,9 +4,6 @@
 This chapter documents the statistical procedures that PSPP supports so
 far.
 
address@hidden If you add any new commands, then don't forget to remove the 
entry in 
address@hidden not-implemented.texi
-
 @menu
 * DESCRIPTIVES::                Descriptive statistics.
 * FREQUENCIES::                 Frequency tables.
@@ -207,6 +204,7 @@
 value is reported.)  By default, the mean, standard deviation of the
 mean, minimum, and maximum are reported for each variable.
 
address@hidden percentiles
 PERCENTILES causes the specified percentiles to be reported.
 The percentiles should  be presented at a list of numbers between 0
 and 100 inclusive.  
@@ -272,6 +270,7 @@
 The CINTERVAL subcommand specifies the confidence interval to use in
 calculation of the descriptives command.  The default it 95%.
 
address@hidden percentiles
 The PERCENTILES subcommand specifies which percentiles are to be calculated, 
 and which algorithm to use for calculating them.  The default is to
 calculate the 5, 10, 25, 50, 75, 90, 95 percentiles using the
@@ -414,6 +413,9 @@
 
 @table @asis
 @item CHISQ
address@hidden chisquare
address@hidden chi-square
+
 Pearson chi-square, likelihood ratio, Fisher's exact test, continuity
 correction, linear-by-linear association.
 @item PHI
@@ -655,8 +657,6 @@
 @section RANK
 
 @vindex RANK
address@hidden RANK
-
 @display
 RANK
         [VARIABLES=] var_list address@hidden,address@hidden [BY var_list]




reply via email to

[Prev in Thread] Current Thread [Next in Thread]