From ca442eb9e8661deca99bf7174a4a43156157b842 Mon Sep 17 00:00:00 2001 From: Jeff Teunissen Date: Wed, 2 Aug 2000 22:55:44 +0000 Subject: [PATCH] timestamps.txt: A description of the format codes that work on both Unix and Windows. --- doc/cvarlist.txt | 18 +++++------ doc/timestamps.txt | 77 ++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+), 9 deletions(-) create mode 100644 doc/timestamps.txt diff --git a/doc/cvarlist.txt b/doc/cvarlist.txt index 1024112..d0cba71 100644 --- a/doc/cvarlist.txt +++ b/doc/cvarlist.txt @@ -487,14 +487,14 @@ Targets : gl clients Category : gl renderer Type : Boolean Default : 1 -Description : whether or not to use RGBA lightmaps +Description : whether or not to use RGB lightmaps Cvar : gl_conalpha Targets : gl clients Category : gl console ui Type : number Default : 0.6 -Description : alpha value for console +Description : alpha value for console when fully lowered Cvar : gl_conspin Targets : gl clients @@ -1316,11 +1316,11 @@ Default : 800 Description : Cvar : sv_highchars -Targets : +Targets : Server Category : -Type : +Type : Boolean Default : 1 -Description : +Description : Allow high-ASCII characters in serverinfo keys Cvar : sv_mapcheck Targets : @@ -1396,8 +1396,8 @@ Cvar : sv_timekick_fuzz Targets : Category : Type : float -Default : 10 -Description : Timecheat sensitivity (10 = 1%) +Default : 15 +Description : Timecheat sensitivity (15 = 1.5%) Cvar : sv_timekick_interval Targets : @@ -1440,7 +1440,7 @@ Category : Type : integer Default : 8 for Win9x, 0 for WinNT Description : Numbers of milliseconds to try to Sleep() every frame. - : Needed when running the server on localhost in Win9x. + : Needed when running the server on localhost in Win9x. Cvar : team Targets : @@ -1692,5 +1692,5 @@ Targets : Category : Type : Default : 2 -Description : +Description : Number of seconds server ignores client after disconnect diff --git a/doc/timestamps.txt b/doc/timestamps.txt new file mode 100644 index 0000000..328823e --- /dev/null +++ b/doc/timestamps.txt @@ -0,0 +1,77 @@ +To enable time-stamped messages in the server, set the Cvar sv_timestamps to a +value other than 0. When enabled, the string Cvar sv_timefmt is used to format +the date and time. + +The following special codes are interpreted inside sv_timefmt strings. + + %a The abbreviated weekday name according to the cur­ + rent locale. + + %A The full weekday name according to the current + locale. + + %b The abbreviated month name according to the current + locale. + + %B The full month name according to the current + locale. + + %c The preferred date and time representation for the + current locale. + + %d The day of the month as a decimal number (range 01 + to 31). + + %h Equivalent to %b. (SU) + + %H The hour as a decimal number using a 24-hour clock + (range 00 to 23). + + %I The hour as a decimal number using a 12-hour clock + (range 01 to 12). + + %j The day of the year as a decimal number (range 001 + to 366). + + %k The hour (24-hour clock) as a decimal number (range + 0 to 23); single digits are preceded by a blank. + (See also %H.) (TZ) + + %m The month as a decimal number (range 01 to 12). + + %M The minute as a decimal number (range 00 to 59). + + %p Either `AM' or `PM' according to the given time + value, or the corresponding strings for the current + locale. Noon is treated as `pm' and midnight as + `am'. + + %S The second as a decimal number (range 00 to 61). + + %U The week number of the current year as a decimal + number, range 00 to 53, starting with the first + Sunday as the first day of week 01. See also %V and + %W. + + %w The day of the week as a decimal, range 0 to 6, + Sunday being 0. See also %u. + + %W The week number of the current year as a decimal + number, range 00 to 53, starting with the first + Monday as the first day of week 01. + + %x The preferred date representation for the current + locale without the time. + + %X The preferred time representation for the current + locale without the date. + + %y The year as a decimal number without a century + (range 00 to 99). + + %Y The year as a decimal number including the century. + + %Z The time zone name or abbreviation. + + %% A literal `%' character. +