]> Cypherpunks.ru repositories - nncp.git/blobdiff - doc/cronexpr.texi
Add various documentation indices
[nncp.git] / doc / cronexpr.texi
index 3331b1223f2cb9955025d23c13deae1fa07f344c..58ce7c8f8a591719ad6aba9a16976d20c3897bb7 100644 (file)
@@ -1,3 +1,4 @@
+@cindex cron
 @anchor{CronExpr}
 This is copy-pasted documentation from
 @code{github.com/gorhill/cronexpr} library used there.
@@ -5,13 +6,13 @@ This is copy-pasted documentation from
 @multitable @columnfractions .2 .1 .2 .5
 @headitem Field name @tab Mandatory? @tab Allowed values @tab Allowed special characters
 
-@item Seconds @tab No @tab 0-59 @tab @verb{|* / , -|}
-@item Minutes @tab Yes @tab 0-59 @tab @verb{|* / , -|}
-@item Hours @tab Yes @tab 0-23 @tab @verb{|* / , -|}
-@item Day of month @tab Yes @tab 1-31 @tab @verb{|* / , - L W|}
-@item Month @tab Yes @tab 1-12 or JAN-DEC @tab @verb{|* / , -|}
-@item Day of week @tab Yes @tab 0-6 or SUN-SAT @tab @verb{|* / , - L #|}
-@item Year @tab No @tab 1970–2099 @tab @verb{|* / , -|}
+@item Seconds      @tab No  @tab 0-59            @tab @verb{|* / , -|}
+@item Minutes      @tab Yes @tab 0-59            @tab @verb{|* / , -|}
+@item Hours        @tab Yes @tab 0-23            @tab @verb{|* / , -|}
+@item Day of month @tab Yes @tab 1-31            @tab @verb{|* / , - L W|}
+@item Month        @tab Yes @tab 1-12 or JAN-DEC @tab @verb{|* / , -|}
+@item Day of week  @tab Yes @tab 0-6 or SUN-SAT  @tab @verb{|* / , - L #|}
+@item Year         @tab No  @tab 1970-2099       @tab @verb{|* / , -|}
 
 @end multitable
 
@@ -28,7 +29,7 @@ every month.
 Slashes describe increments of ranges. For example @verb{|3-59/15|} in
 the minute field indicate the third minute of the hour and every 15
 minutes thereafter. The form @verb{|*/...|} is equivalent to the form
-"first-last/...", that is, an increment over the largest possible range
+"first-last/@dots{}", that is, an increment over the largest possible range
 of the field.
 
 @item Comma (@verb{|,|})