-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[docs]: Add 'Time' documentation. #1432
Conversation
METROL-847
|
docs/utils/time.md
Outdated
|
||
```c++ | ||
// Local time instead of UTC | ||
Core::Time past(/*year*/ 2023, /*month* 10, /*day*/ 13, /*hours*/ 18, /*minutes*/ 02, /*seconds 0 ,/* milliseconds*/ 0, /*local time*/ true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing / in "/month"
docs/utils/time.md
Outdated
|
||
```c++ | ||
// Local time instead of UTC | ||
Core::Time past(/*year*/ 2023, /*month* 10, /*day*/ 13, /*hours*/ 18, /*minutes*/ 02, /*seconds 0 ,/* milliseconds*/ 0, /*local time*/ true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And missing */ in seconds :)
docs/utils/time.md
Outdated
|
||
## Date and time conversion options | ||
|
||
The external representation of time is a string formatted in a predefined pattern unless a single integer valued element is represented. Such patterns are intrinsically applied for the various conversions methods made available. Among such conversions are the [RFC2311](https://www.rfc-editor.org/rfc/rfc2311) time and date specification, [RFC1036](https://www.rfc-editor.org/rfc/rfc1036) date specification, the [ISO8601]() date and time formats, and, [ANSI](https://webstore.ansi.org/standards/incits/ansiincits301997) date representation. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps good to explicitly indicate we have both from and to conversions for these formats
METROL-847 and PR-1432
… into development/docs-time
* Adding a missing Closing of the new messaging redirect feature (#1452) * Update vscode configs (#1451) Co-authored-by: Pierre Wielders <[email protected]> * [docs]: Add 'Time' documentation. (#1432) * [docs]: Add 'Time' documentation. METROL-847 * [docs]: Update 'Time' documentation. METROL-847 and PR-1432 --------- Co-authored-by: Pierre Wielders <[email protected]> Co-authored-by: Wouter Meek <[email protected]> Co-authored-by: MFransen69 <[email protected]> * Terminate after signal (#1459) --------- Co-authored-by: Mateusz Daniluk <[email protected]> Co-authored-by: Bram Oosterhuis <[email protected]> Co-authored-by: msieben <[email protected]> Co-authored-by: Wouter Meek <[email protected]> Co-authored-by: MFransen69 <[email protected]> Co-authored-by: sebaszm <[email protected]>
* [JSONRPC] Complete the work to handle JSONRPC over COMRPC so WPEFrameworks can be linked together. * Merge! (#1460) * Adding a missing Closing of the new messaging redirect feature (#1452) * Update vscode configs (#1451) Co-authored-by: Pierre Wielders <[email protected]> * [docs]: Add 'Time' documentation. (#1432) * [docs]: Add 'Time' documentation. METROL-847 * [docs]: Update 'Time' documentation. METROL-847 and PR-1432 --------- Co-authored-by: Pierre Wielders <[email protected]> Co-authored-by: Wouter Meek <[email protected]> Co-authored-by: MFransen69 <[email protected]> * Terminate after signal (#1459) --------- Co-authored-by: Mateusz Daniluk <[email protected]> Co-authored-by: Bram Oosterhuis <[email protected]> Co-authored-by: msieben <[email protected]> Co-authored-by: Wouter Meek <[email protected]> Co-authored-by: MFransen69 <[email protected]> Co-authored-by: sebaszm <[email protected]> * [SYNC] Fixes for linux. * [SYNC] Merging issues resolved.. * [TESTS] Fixes after testing and including the merges! * [FIXES] Compilation issue resolving. * Update CMakeLists.txt * Update CMakeLists.txt * Update MetaData.h * Update PluginServer.h --------- Co-authored-by: Mateusz Daniluk <[email protected]> Co-authored-by: Bram Oosterhuis <[email protected]> Co-authored-by: msieben <[email protected]> Co-authored-by: Wouter Meek <[email protected]> Co-authored-by: MFransen69 <[email protected]> Co-authored-by: sebaszm <[email protected]>
* [docs]: Add 'Time' documentation. METROL-847 * [docs]: Update 'Time' documentation. METROL-847 and PR-1432 --------- Co-authored-by: Pierre Wielders <[email protected]> Co-authored-by: Wouter Meek <[email protected]> Co-authored-by: MFransen69 <[email protected]>
* [JSONRPC] Complete the work to handle JSONRPC over COMRPC so WPEFrameworks can be linked together. * Merge! (rdkcentral#1460) * Adding a missing Closing of the new messaging redirect feature (rdkcentral#1452) * Update vscode configs (rdkcentral#1451) Co-authored-by: Pierre Wielders <[email protected]> * [docs]: Add 'Time' documentation. (rdkcentral#1432) * [docs]: Add 'Time' documentation. METROL-847 * [docs]: Update 'Time' documentation. METROL-847 and PR-1432 --------- Co-authored-by: Pierre Wielders <[email protected]> Co-authored-by: Wouter Meek <[email protected]> Co-authored-by: MFransen69 <[email protected]> * Terminate after signal (rdkcentral#1459) --------- Co-authored-by: Mateusz Daniluk <[email protected]> Co-authored-by: Bram Oosterhuis <[email protected]> Co-authored-by: msieben <[email protected]> Co-authored-by: Wouter Meek <[email protected]> Co-authored-by: MFransen69 <[email protected]> Co-authored-by: sebaszm <[email protected]> * [SYNC] Fixes for linux. * [SYNC] Merging issues resolved.. * [TESTS] Fixes after testing and including the merges! * [FIXES] Compilation issue resolving. * Update CMakeLists.txt * Update CMakeLists.txt * Update MetaData.h * Update PluginServer.h --------- Co-authored-by: Mateusz Daniluk <[email protected]> Co-authored-by: Bram Oosterhuis <[email protected]> Co-authored-by: msieben <[email protected]> Co-authored-by: Wouter Meek <[email protected]> Co-authored-by: MFransen69 <[email protected]> Co-authored-by: sebaszm <[email protected]>
METROL-847