Fixed lots of issues with installing a low-caps version of fshell from SIS file.
* Fixed issue in CCommandFactory whereby some APIs like GetCommandInfoL could trigger allocations on the wrong heap or signals to the wrong thread. The symptoms were often seen as a crash in the which_00 thread when running ciftest.
* Lots of build fixes for when FSHELL_PROTECTED_UIDS isn't defined and when all capabilities aren't available.
* Added new platform.mmh macro FSHELL_OPEN_SIGNED.
* Open signing of fshell SIS files is now supported for production S60 handsets. Build fshell with the FSHELL_OPEN_SIGNED macro defined (and without defining FSHELL_CAP_ALL or FSHELL_PROTECTED_UIDS) in your platform.mmh and submit \epoc32\fshell\fshell.unsigned.sis to https://www.symbiansigned.com/app/page/public/openSignedOnline.do . The following commands are not available when using Open Signing due to Platform Security restrictions: fdb; kerninfo; chunkinfo; svrinfo; objinfo; sudo; fsck; localdrive; ramdefrag; readmem; reboot; setcritical; setpriority. Others such as chkdeps, e32header, ps, and fshell itself will run but in a restricted capacity (for example, fshell will no longer allow you to modify files in the \sys\bin directory).
* Removed commands objinfo, svrinfo, chunkinfo, readmem, fsck completely when memory access isn't present - previously they would still appear in the help but would give an error if you tried to run them.
# date.cif
#
# Copyright (c) 2010 Accenture. All rights reserved.
# This component and the accompanying materials are made available
# under the terms of the "Eclipse Public License v1.0"
# which accompanies this distribution, and is available
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
#
# Initial Contributors:
# Accenture - Initial contribution
#
==name date
==short-description
Displays or sets the current time and date.
==long-description
Example usage:
To get the current date and time:
c:\>date
07/04/2010 13:46:58.647500
To check how a human readable date is parsed:
c:\>date --set --just-display "07/04/2010 13:47:00"
07/04/2010 13:47:00.000000
To convert a raw TInt64 timestamp to a human-readable string:
c:\>date --raw-set 1234567890 --display-only
01/01/0000 00:20:34.567890
To set the current local time:
c:\>date --set "07/04/2010 13:47:00"
c:\>
To use a timestamp in a filename:
date --timestamp | export -s TIMESTAMP
do-something > C:\logs\myoutput-$TIMESTAMP.txt
==option bool u universal
Display or set universal time (UTC) rather than local time.
==option string s set
Sets the time and date. Format is that accepted by TTime::Parse(). For UK English localisations, C<DD/MM/YYYY HH:MM:SS> is one such acceptable format.
==option int o utc-offset
Sets the UTC offset in seconds. Must be used in conjunction with the C<--set> option.
==option bool S secure
Displays or sets the secure variant of the kernel's reckoning of time.
==option bool r raw
Displays the time and date as the number of microseconds since 0AD nominal Gregorian (Symbian OS's native time format).
==option bool j just-display
Rather than going ahead and setting the specified time and date, do a dry run and just displays it in human readable form. Must be used in conjunction with C<--set> or <--raw-set>. In effect it is an option to check that the set string has been parsed correctly before actually making the change.
==option int64 R raw-set
Sets the time and date from a number corresponding to the number of microseconds since 0AD nominal Gregorian (Symbian OS's native time format).
==option bool t timestamp
Display the date in timestamp format C<YYYYMMDD-HHMM.SS> suitable for use in a file name.
==option bool Y y2k
Only applicable with C<--raw> and/or C<--raw-set>. Instead of using 0AD as the epoc, assume 2000AD. Some APIs use 2000 instead of 0AD as the epoc so this option is occasionally useful for converting between the two.
==copyright
Copyright (c) 2006-2010 Accenture. All rights reserved.
==smoke-test
date $Quiet
date --raw $Quiet
date --timestamp $Quiet