Initial import of the ircii-pana-1.1-final source tree.

git-svn-id: svn://svn.code.sf.net/p/bitchx/code/tags/ircii-pana-1.1-final@1 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
Kevin Easton
2008-02-25 09:25:32 +00:00
commit 28febcfea9
1429 changed files with 250653 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
Synopsis:
$tdiff(<seconds>)
$tdiff2(<seconds>)
Technical:
This converts an integer value to a human-readable string showing the
elapsed time in days, hours, minutes, and seconds. The only difference
between the functions is that $tdiff2() is more compact. Negative
numbers and decimals are permitted, though there probably isn't much use
for them.
Practical:
This function is useful for showing how much time has elapsed since a
particular event. For instance, it can convert your idle time from the
number of seconds to a more readable form.
Returns:
human-readable string representing elapsed time
Examples:
$tdiff(248576) returns "2 days 21 hours 2 minutes 56 seconds"
$tdiff2(248576) returns "2d 21h 2m 56s"
$tdiff(-248576) returns "-2 days -21 hours -2 minutes -56 seconds"
$tdiff2(-248576) returns "-2d -21h -2m -56s"