bisos.gitist 0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- bisos_gitist-0.1/PKG-INFO +187 -0
- bisos_gitist-0.1/README.rst +154 -0
- bisos_gitist-0.1/_description.org +127 -0
- bisos_gitist-0.1/bin/bxoGitlab.cs +1478 -0
- bisos_gitist-0.1/bin/gitist.cs +245 -0
- bisos_gitist-0.1/bin/pub-anon-github-gitist.pcs +56 -0
- bisos_gitist-0.1/bin/pub-anon-gitlab-gitist.pcs +57 -0
- bisos_gitist-0.1/bin/pub-auth-github-gitist.pcs +56 -0
- bisos_gitist-0.1/bin/pub-auth-gitlab-gitist.pcs +57 -0
- bisos_gitist-0.1/bisos/__init__.py +1 -0
- bisos_gitist-0.1/bisos/gitist/__init__.py +0 -0
- bisos_gitist-0.1/bisos/gitist/gitist_csu.py +604 -0
- bisos_gitist-0.1/bisos/gitist/gitist_seed.py +116 -0
- bisos_gitist-0.1/bisos/gitist/gitist_seedInfo.py +229 -0
- bisos_gitist-0.1/bisos.gitist.egg-info/PKG-INFO +187 -0
- bisos_gitist-0.1/bisos.gitist.egg-info/SOURCES.txt +22 -0
- bisos_gitist-0.1/bisos.gitist.egg-info/dependency_links.txt +1 -0
- bisos_gitist-0.1/bisos.gitist.egg-info/not-zip-safe +1 -0
- bisos_gitist-0.1/bisos.gitist.egg-info/requires.txt +7 -0
- bisos_gitist-0.1/bisos.gitist.egg-info/top_level.txt +1 -0
- bisos_gitist-0.1/lh-agpl3-LICENSE.txt +679 -0
- bisos_gitist-0.1/pyproject.toml +8 -0
- bisos_gitist-0.1/setup.cfg +4 -0
- bisos_gitist-0.1/setup.py +119 -0
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
|
+
Name: bisos.gitist
|
|
3
|
+
Version: 0.1
|
|
4
|
+
Summary: bisos.gitist: Git Mass Cloning and More
|
|
5
|
+
Author: Mohsen Banan
|
|
6
|
+
Author-email: libre@mohsen.1.banan.byname.net
|
|
7
|
+
Maintainer: Mohsen Banan
|
|
8
|
+
Maintainer-email: libre@mohsen.1.banan.byname.net
|
|
9
|
+
License: AGPL
|
|
10
|
+
Classifier: Development Status :: 5 - Production/Stable
|
|
11
|
+
Classifier: Intended Audience :: Developers
|
|
12
|
+
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
13
|
+
Classifier: Operating System :: POSIX
|
|
14
|
+
Classifier: Programming Language :: Python
|
|
15
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
16
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
17
|
+
Requires-Dist: bisos
|
|
18
|
+
Requires-Dist: bisos.b
|
|
19
|
+
Requires-Dist: bisos.common
|
|
20
|
+
Requires-Dist: bisos.csPlayer
|
|
21
|
+
Requires-Dist: bisos.csSeed
|
|
22
|
+
Requires-Dist: setuptools==75.8.0
|
|
23
|
+
Requires-Dist: wheel==0.38.4
|
|
24
|
+
Dynamic: author
|
|
25
|
+
Dynamic: author-email
|
|
26
|
+
Dynamic: classifier
|
|
27
|
+
Dynamic: description
|
|
28
|
+
Dynamic: license
|
|
29
|
+
Dynamic: maintainer
|
|
30
|
+
Dynamic: maintainer-email
|
|
31
|
+
Dynamic: requires-dist
|
|
32
|
+
Dynamic: summary
|
|
33
|
+
|
|
34
|
+
=======================================
|
|
35
|
+
bisos.gitist: Git Mass Cloning and More
|
|
36
|
+
=======================================
|
|
37
|
+
|
|
38
|
+
.. contents::
|
|
39
|
+
:depth: 3
|
|
40
|
+
..
|
|
41
|
+
|
|
42
|
+
Overview
|
|
43
|
+
========
|
|
44
|
+
|
|
45
|
+
*bisos.gitist* provides general facilities for mass cloning of public
|
|
46
|
+
github and gitlab and also private gitlab instances.
|
|
47
|
+
|
|
48
|
+
bisos.gitist is a python package that uses the
|
|
49
|
+
`PyCS-Framework <https://github.com/bisos-pip/pycs>`__.
|
|
50
|
+
|
|
51
|
+
gitist.cs is a seed. Common usages of gitist take the form of a
|
|
52
|
+
gitistProc.pcs.
|
|
53
|
+
|
|
54
|
+
.. _table-of-contents:
|
|
55
|
+
|
|
56
|
+
Table of Contents TOC
|
|
57
|
+
=====================
|
|
58
|
+
|
|
59
|
+
- `Overview <#overview>`__
|
|
60
|
+
- `Gitist Layers <#gitist-layers>`__
|
|
61
|
+
- `Post-Installation Setup <#post-installation-setup>`__
|
|
62
|
+
- `Installation <#installation>`__
|
|
63
|
+
|
|
64
|
+
- `Installation With pip <#installation-with-pip>`__
|
|
65
|
+
- `Installation With pipx <#installation-with-pipx>`__
|
|
66
|
+
|
|
67
|
+
- `Usage <#usage>`__
|
|
68
|
+
|
|
69
|
+
- `Local Usage (system
|
|
70
|
+
command-line) <#local-usage-system-command-line>`__
|
|
71
|
+
|
|
72
|
+
- `Documentation and Blee-Panels <#documentation-and-blee-panels>`__
|
|
73
|
+
|
|
74
|
+
- `bisos.gitist Blee-Panels <#bisosgitist-blee-panels>`__
|
|
75
|
+
|
|
76
|
+
- `Support <#support>`__
|
|
77
|
+
- `Planned Improvements <#planned-improvements>`__
|
|
78
|
+
|
|
79
|
+
Gitist Layers
|
|
80
|
+
=============
|
|
81
|
+
|
|
82
|
+
#. PyCS Framework
|
|
83
|
+
#. Seeded/Planted PyCS Framework (gitist.cs)
|
|
84
|
+
#. Common csCmndsList (bisos.csSeed)
|
|
85
|
+
#. Gitist Commands CSUs
|
|
86
|
+
|
|
87
|
+
Post-Installation Setup
|
|
88
|
+
=======================
|
|
89
|
+
|
|
90
|
+
After installing, run the provisioning script to create the credentials
|
|
91
|
+
directory and place the configuration templates:
|
|
92
|
+
|
|
93
|
+
.. code:: bash
|
|
94
|
+
|
|
95
|
+
config/provision.pcs -i credsSetup
|
|
96
|
+
|
|
97
|
+
This creates ``~/credentials/git/`` and copies two config files there if
|
|
98
|
+
they do not already exist:
|
|
99
|
+
|
|
100
|
+
- ``~/credentials/git/githubHosts.cfg`` — GitHub configuration; insert
|
|
101
|
+
your GitHub PAT (Personal Access Token) here.
|
|
102
|
+
- ``~/credentials/git/gitlabHosts.cfg`` — GitLab configuration; insert
|
|
103
|
+
your GitLab PAT here.
|
|
104
|
+
|
|
105
|
+
Once the PATs are in place, you can run the gitist proc scripts, e.g.:
|
|
106
|
+
|
|
107
|
+
.. code:: bash
|
|
108
|
+
|
|
109
|
+
bin/github-pub-gitist.pcs
|
|
110
|
+
bin/gitlab-pub-gitist.pcs
|
|
111
|
+
|
|
112
|
+
Installation
|
|
113
|
+
============
|
|
114
|
+
|
|
115
|
+
The sources for the bisos.gitist pip package are maintained at:
|
|
116
|
+
https://github.com/bisos-pip/gitist.
|
|
117
|
+
|
|
118
|
+
The bisos.gitist pip package is available at PYPI as
|
|
119
|
+
https://pypi.org/project/bisos.gitist
|
|
120
|
+
|
|
121
|
+
You can install bisos.gitist with pip or pipx.
|
|
122
|
+
|
|
123
|
+
Installation With pip
|
|
124
|
+
---------------------
|
|
125
|
+
|
|
126
|
+
If you need access to bisos.gitist as a python module, you can install
|
|
127
|
+
it with pip:
|
|
128
|
+
|
|
129
|
+
.. code:: bash
|
|
130
|
+
|
|
131
|
+
pip install bisos.gitist
|
|
132
|
+
|
|
133
|
+
Installation With pipx
|
|
134
|
+
----------------------
|
|
135
|
+
|
|
136
|
+
If you only need access to bisos.gitist on command-line, you can install
|
|
137
|
+
it with pipx:
|
|
138
|
+
|
|
139
|
+
.. code:: bash
|
|
140
|
+
|
|
141
|
+
pipx install bisos.gitist
|
|
142
|
+
|
|
143
|
+
Usage
|
|
144
|
+
=====
|
|
145
|
+
|
|
146
|
+
Local Usage (system command-line)
|
|
147
|
+
---------------------------------
|
|
148
|
+
|
|
149
|
+
``gitist.cs`` does the equivalent of gitist.
|
|
150
|
+
|
|
151
|
+
.. code:: bash
|
|
152
|
+
|
|
153
|
+
bin/gitist.cs
|
|
154
|
+
bin/gitistProc.pcs
|
|
155
|
+
|
|
156
|
+
Documentation and Blee-Panels
|
|
157
|
+
=============================
|
|
158
|
+
|
|
159
|
+
bisos.gitist is part of ByStar Digital Ecosystem http://www.by-star.net.
|
|
160
|
+
|
|
161
|
+
This module's primary documentation is in the form of Blee-Panels.
|
|
162
|
+
Additional information is also available in:
|
|
163
|
+
http://www.by-star.net/PLPC/180047
|
|
164
|
+
|
|
165
|
+
bisos.gitist Blee-Panels
|
|
166
|
+
------------------------
|
|
167
|
+
|
|
168
|
+
bisos.gitist Blee-Panles are in ./panels directory. From within Blee and
|
|
169
|
+
BISOS these panles are accessible under the Blee "Panels" menu.
|
|
170
|
+
|
|
171
|
+
See
|
|
172
|
+
`file:./panels/_nodeBase_/fullUsagePanel-en.org <./panels/_nodeBase_/fullUsagePanel-en.org>`__
|
|
173
|
+
for a starting point.
|
|
174
|
+
|
|
175
|
+
Support
|
|
176
|
+
=======
|
|
177
|
+
|
|
178
|
+
| For support, criticism, comments and questions; please contact the
|
|
179
|
+
author/maintainer
|
|
180
|
+
| `Mohsen Banan <http://mohsen.1.banan.byname.net>`__ at:
|
|
181
|
+
http://mohsen.1.banan.byname.net/contact
|
|
182
|
+
|
|
183
|
+
Planned Improvements
|
|
184
|
+
====================
|
|
185
|
+
|
|
186
|
+
- Enumerate applicabilities: telecom/SON, datacenter, CMIP-MOs
|
|
187
|
+
- py3/bisos/gitist/tocsModule\ :sub:`csu`.py
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
=======================================
|
|
2
|
+
bisos.gitist: Git Mass Cloning and More
|
|
3
|
+
=======================================
|
|
4
|
+
|
|
5
|
+
.. contents::
|
|
6
|
+
:depth: 3
|
|
7
|
+
..
|
|
8
|
+
|
|
9
|
+
Overview
|
|
10
|
+
========
|
|
11
|
+
|
|
12
|
+
*bisos.gitist* provides general facilities for mass cloning of public
|
|
13
|
+
github and gitlab and also private gitlab instances.
|
|
14
|
+
|
|
15
|
+
bisos.gitist is a python package that uses the
|
|
16
|
+
`PyCS-Framework <https://github.com/bisos-pip/pycs>`__.
|
|
17
|
+
|
|
18
|
+
gitist.cs is a seed. Common usages of gitist take the form of a
|
|
19
|
+
gitistProc.pcs.
|
|
20
|
+
|
|
21
|
+
.. _table-of-contents:
|
|
22
|
+
|
|
23
|
+
Table of Contents TOC
|
|
24
|
+
=====================
|
|
25
|
+
|
|
26
|
+
- `Overview <#overview>`__
|
|
27
|
+
- `Gitist Layers <#gitist-layers>`__
|
|
28
|
+
- `Post-Installation Setup <#post-installation-setup>`__
|
|
29
|
+
- `Installation <#installation>`__
|
|
30
|
+
|
|
31
|
+
- `Installation With pip <#installation-with-pip>`__
|
|
32
|
+
- `Installation With pipx <#installation-with-pipx>`__
|
|
33
|
+
|
|
34
|
+
- `Usage <#usage>`__
|
|
35
|
+
|
|
36
|
+
- `Local Usage (system
|
|
37
|
+
command-line) <#local-usage-system-command-line>`__
|
|
38
|
+
|
|
39
|
+
- `Documentation and Blee-Panels <#documentation-and-blee-panels>`__
|
|
40
|
+
|
|
41
|
+
- `bisos.gitist Blee-Panels <#bisosgitist-blee-panels>`__
|
|
42
|
+
|
|
43
|
+
- `Support <#support>`__
|
|
44
|
+
- `Planned Improvements <#planned-improvements>`__
|
|
45
|
+
|
|
46
|
+
Gitist Layers
|
|
47
|
+
=============
|
|
48
|
+
|
|
49
|
+
#. PyCS Framework
|
|
50
|
+
#. Seeded/Planted PyCS Framework (gitist.cs)
|
|
51
|
+
#. Common csCmndsList (bisos.csSeed)
|
|
52
|
+
#. Gitist Commands CSUs
|
|
53
|
+
|
|
54
|
+
Post-Installation Setup
|
|
55
|
+
=======================
|
|
56
|
+
|
|
57
|
+
After installing, run the provisioning script to create the credentials
|
|
58
|
+
directory and place the configuration templates:
|
|
59
|
+
|
|
60
|
+
.. code:: bash
|
|
61
|
+
|
|
62
|
+
config/provision.pcs -i credsSetup
|
|
63
|
+
|
|
64
|
+
This creates ``~/credentials/git/`` and copies two config files there if
|
|
65
|
+
they do not already exist:
|
|
66
|
+
|
|
67
|
+
- ``~/credentials/git/githubHosts.cfg`` — GitHub configuration; insert
|
|
68
|
+
your GitHub PAT (Personal Access Token) here.
|
|
69
|
+
- ``~/credentials/git/gitlabHosts.cfg`` — GitLab configuration; insert
|
|
70
|
+
your GitLab PAT here.
|
|
71
|
+
|
|
72
|
+
Once the PATs are in place, you can run the gitist proc scripts, e.g.:
|
|
73
|
+
|
|
74
|
+
.. code:: bash
|
|
75
|
+
|
|
76
|
+
bin/github-pub-gitist.pcs
|
|
77
|
+
bin/gitlab-pub-gitist.pcs
|
|
78
|
+
|
|
79
|
+
Installation
|
|
80
|
+
============
|
|
81
|
+
|
|
82
|
+
The sources for the bisos.gitist pip package are maintained at:
|
|
83
|
+
https://github.com/bisos-pip/gitist.
|
|
84
|
+
|
|
85
|
+
The bisos.gitist pip package is available at PYPI as
|
|
86
|
+
https://pypi.org/project/bisos.gitist
|
|
87
|
+
|
|
88
|
+
You can install bisos.gitist with pip or pipx.
|
|
89
|
+
|
|
90
|
+
Installation With pip
|
|
91
|
+
---------------------
|
|
92
|
+
|
|
93
|
+
If you need access to bisos.gitist as a python module, you can install
|
|
94
|
+
it with pip:
|
|
95
|
+
|
|
96
|
+
.. code:: bash
|
|
97
|
+
|
|
98
|
+
pip install bisos.gitist
|
|
99
|
+
|
|
100
|
+
Installation With pipx
|
|
101
|
+
----------------------
|
|
102
|
+
|
|
103
|
+
If you only need access to bisos.gitist on command-line, you can install
|
|
104
|
+
it with pipx:
|
|
105
|
+
|
|
106
|
+
.. code:: bash
|
|
107
|
+
|
|
108
|
+
pipx install bisos.gitist
|
|
109
|
+
|
|
110
|
+
Usage
|
|
111
|
+
=====
|
|
112
|
+
|
|
113
|
+
Local Usage (system command-line)
|
|
114
|
+
---------------------------------
|
|
115
|
+
|
|
116
|
+
``gitist.cs`` does the equivalent of gitist.
|
|
117
|
+
|
|
118
|
+
.. code:: bash
|
|
119
|
+
|
|
120
|
+
bin/gitist.cs
|
|
121
|
+
bin/gitistProc.pcs
|
|
122
|
+
|
|
123
|
+
Documentation and Blee-Panels
|
|
124
|
+
=============================
|
|
125
|
+
|
|
126
|
+
bisos.gitist is part of ByStar Digital Ecosystem http://www.by-star.net.
|
|
127
|
+
|
|
128
|
+
This module's primary documentation is in the form of Blee-Panels.
|
|
129
|
+
Additional information is also available in:
|
|
130
|
+
http://www.by-star.net/PLPC/180047
|
|
131
|
+
|
|
132
|
+
bisos.gitist Blee-Panels
|
|
133
|
+
------------------------
|
|
134
|
+
|
|
135
|
+
bisos.gitist Blee-Panles are in ./panels directory. From within Blee and
|
|
136
|
+
BISOS these panles are accessible under the Blee "Panels" menu.
|
|
137
|
+
|
|
138
|
+
See
|
|
139
|
+
`file:./panels/_nodeBase_/fullUsagePanel-en.org <./panels/_nodeBase_/fullUsagePanel-en.org>`__
|
|
140
|
+
for a starting point.
|
|
141
|
+
|
|
142
|
+
Support
|
|
143
|
+
=======
|
|
144
|
+
|
|
145
|
+
| For support, criticism, comments and questions; please contact the
|
|
146
|
+
author/maintainer
|
|
147
|
+
| `Mohsen Banan <http://mohsen.1.banan.byname.net>`__ at:
|
|
148
|
+
http://mohsen.1.banan.byname.net/contact
|
|
149
|
+
|
|
150
|
+
Planned Improvements
|
|
151
|
+
====================
|
|
152
|
+
|
|
153
|
+
- Enumerate applicabilities: telecom/SON, datacenter, CMIP-MOs
|
|
154
|
+
- py3/bisos/gitist/tocsModule\ :sub:`csu`.py
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
#+title: bisos.gitist: Git Mass Cloning and More
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
* Overview
|
|
7
|
+
|
|
8
|
+
/bisos.gitist/ provides general facilities for mass cloning of public github and gitlab
|
|
9
|
+
and also private gitlab instances.
|
|
10
|
+
|
|
11
|
+
bisos.gitist is a python package that uses the [[https://github.com/bisos-pip/pycs][PyCS-Framework]].
|
|
12
|
+
|
|
13
|
+
gitist.cs is a seed. Common usages of gitist take the form of a gitistProc.pcs.
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
* Table of Contents :TOC:
|
|
18
|
+
- [[#overview][Overview]]
|
|
19
|
+
- [[#gitist-layers][Gitist Layers]]
|
|
20
|
+
- [[#post-installation-setup][Post-Installation Setup]]
|
|
21
|
+
- [[#installation][Installation]]
|
|
22
|
+
- [[#installation-with-pip][Installation With pip]]
|
|
23
|
+
- [[#installation-with-pipx][Installation With pipx]]
|
|
24
|
+
- [[#usage][Usage]]
|
|
25
|
+
- [[#local-usage-system-command-line][Local Usage (system command-line)]]
|
|
26
|
+
- [[#documentation-and-blee-panels][Documentation and Blee-Panels]]
|
|
27
|
+
- [[#bisosgitist-blee-panels][bisos.gitist Blee-Panels]]
|
|
28
|
+
- [[#support][Support]]
|
|
29
|
+
- [[#planned-improvements][Planned Improvements]]
|
|
30
|
+
|
|
31
|
+
* Gitist Layers
|
|
32
|
+
|
|
33
|
+
1) PyCS Framework
|
|
34
|
+
2) Seeded/Planted PyCS Framework (gitist.cs)
|
|
35
|
+
3) Common csCmndsList (bisos.csSeed)
|
|
36
|
+
4) Gitist Commands CSUs
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
* Post-Installation Setup
|
|
40
|
+
|
|
41
|
+
After installing, run the provisioning script to create the credentials directory
|
|
42
|
+
and place the configuration templates:
|
|
43
|
+
|
|
44
|
+
#+begin_src bash
|
|
45
|
+
config/provision.pcs -i credsSetup
|
|
46
|
+
#+end_src
|
|
47
|
+
|
|
48
|
+
This creates =~/credentials/git/= and copies two config files there if they do
|
|
49
|
+
not already exist:
|
|
50
|
+
|
|
51
|
+
- =~/credentials/git/githubHosts.cfg= — GitHub configuration; insert your GitHub PAT (Personal Access Token) here.
|
|
52
|
+
- =~/credentials/git/gitlabHosts.cfg= — GitLab configuration; insert your GitLab PAT here.
|
|
53
|
+
|
|
54
|
+
Once the PATs are in place, you can run the gitist proc scripts, e.g.:
|
|
55
|
+
|
|
56
|
+
#+begin_src bash
|
|
57
|
+
bin/github-pub-gitist.pcs
|
|
58
|
+
bin/gitlab-pub-gitist.pcs
|
|
59
|
+
#+end_src
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
* Installation
|
|
63
|
+
|
|
64
|
+
The sources for the bisos.gitist pip package are maintained at:
|
|
65
|
+
https://github.com/bisos-pip/gitist.
|
|
66
|
+
|
|
67
|
+
The bisos.gitist pip package is available at PYPI as
|
|
68
|
+
https://pypi.org/project/bisos.gitist
|
|
69
|
+
|
|
70
|
+
You can install bisos.gitist with pip or pipx.
|
|
71
|
+
|
|
72
|
+
** Installation With pip
|
|
73
|
+
|
|
74
|
+
If you need access to bisos.gitist as a python module, you can install it with pip:
|
|
75
|
+
|
|
76
|
+
#+begin_src bash
|
|
77
|
+
pip install bisos.gitist
|
|
78
|
+
#+end_src
|
|
79
|
+
|
|
80
|
+
** Installation With pipx
|
|
81
|
+
|
|
82
|
+
If you only need access to bisos.gitist on command-line, you can install it with pipx:
|
|
83
|
+
|
|
84
|
+
#+begin_src bash
|
|
85
|
+
pipx install bisos.gitist
|
|
86
|
+
#+end_src
|
|
87
|
+
|
|
88
|
+
* Usage
|
|
89
|
+
|
|
90
|
+
** Local Usage (system command-line)
|
|
91
|
+
|
|
92
|
+
=gitist.cs= does the equivalent of gitist.
|
|
93
|
+
|
|
94
|
+
#+begin_src bash
|
|
95
|
+
bin/gitist.cs
|
|
96
|
+
bin/gitistProc.pcs
|
|
97
|
+
#+end_src
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
* Documentation and Blee-Panels
|
|
101
|
+
|
|
102
|
+
bisos.gitist is part of ByStar Digital Ecosystem [[http://www.by-star.net]].
|
|
103
|
+
|
|
104
|
+
This module's primary documentation is in the form of Blee-Panels.
|
|
105
|
+
Additional information is also available in: [[http://www.by-star.net/PLPC/180047]]
|
|
106
|
+
|
|
107
|
+
** bisos.gitist Blee-Panels
|
|
108
|
+
|
|
109
|
+
bisos.gitist Blee-Panles are in ./panels directory.
|
|
110
|
+
From within Blee and BISOS these panles are accessible under the
|
|
111
|
+
Blee "Panels" menu.
|
|
112
|
+
|
|
113
|
+
See [[file:./panels/_nodeBase_/fullUsagePanel-en.org]] for a starting point.
|
|
114
|
+
|
|
115
|
+
* Support
|
|
116
|
+
|
|
117
|
+
For support, criticism, comments and questions; please contact the
|
|
118
|
+
author/maintainer\\
|
|
119
|
+
[[http://mohsen.1.banan.byname.net][Mohsen Banan]] at:
|
|
120
|
+
[[http://mohsen.1.banan.byname.net/contact]]
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
* Planned Improvements
|
|
124
|
+
|
|
125
|
+
- Enumerate applicabilities: telecom/SON, datacenter, CMIP-MOs
|
|
126
|
+
- py3/bisos/gitist/tocsModule_csu.py
|
|
127
|
+
|