-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added module:doc to abstract documentation
- Loading branch information
Showing
9 changed files
with
69 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ Please see https://ck.readthedocs.io/en/latest/guide/how-to-contribute.html | |
N: Grigori Fursin (alias: FGG) | ||
E: [email protected] | ||
H: https://fursin.net | ||
O: cTuning foundation, France | ||
O: cTuning foundation, France / OctoML.ai, USA | ||
C: original concept and prototyping, real-world use cases, development of https://cKnowledge.org and https://cKnowledge.io | ||
W: since Nov.1, 2014 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
52b840ae194e640b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"backup_data_uid": "52b840ae194e640b", | ||
"backup_module_uid": "032630d041b4fd8a", | ||
"backup_module_uoa": "module", | ||
"control": { | ||
"author": "Grigori Fursin", | ||
"author_email": "[email protected]", | ||
"author_webpage": "http://fursin.net", | ||
"copyright": "See CK COPYRIGHT.txt for copyright details", | ||
"engine": "CK", | ||
"iso_datetime": "2021-04-16T15:54:03.688043", | ||
"license": "See CK LICENSE.txt for licensing details", | ||
"version": [ | ||
"1", | ||
"55", | ||
"4", | ||
"1" | ||
] | ||
}, | ||
"data_name": "doc" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"actions": {}, | ||
"copyright": "See CK COPYRIGHT.txt for copyright details", | ||
"desc": "documentation", | ||
"developer": "Grigori Fursin", | ||
"developer_email": "[email protected]", | ||
"developer_webpage": "http://fursin.net", | ||
"license": "See CK LICENSE.txt for licensing details" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# | ||
# Collective Knowledge (documentation) | ||
# | ||
# See CK LICENSE.txt for licensing details | ||
# See CK COPYRIGHT.txt for copyright details | ||
# | ||
# Developer: Grigori Fursin, [email protected], http://fursin.net | ||
# | ||
|
||
cfg = {} # Will be updated by CK (meta description of this module) | ||
work = {} # Will be updated by CK (temporal data) | ||
ck = None # Will be updated by CK (initialized CK kernel) | ||
|
||
# Local settings | ||
|
||
############################################################################## | ||
# Initialize module | ||
|
||
|
||
def init(i): | ||
""" | ||
Input: {} | ||
Output: { | ||
return - return code = 0, if successful | ||
> 0, if error | ||
(error) - error text if return > 0 | ||
} | ||
""" | ||
return {'return': 0} |