This repo is not current. Development has moved from Hg to Git. For the latest code use the "Source Code" tab above to go to the "Thun" git repo or navigate to:
https://osdn.net/projects/joypy/scm/git/Thun
Révision | d3aeb3661dc4134f9a3186cc838744c93c7fc424 (tree) |
---|---|
l'heure | 2020-05-28 10:05:57 |
Auteur | ![]() |
Commiter | Simon Forman |
Utils docs.
@@ -1,7 +1,5 @@ | ||
1 | 1 | .. Xerblin documentation master file, created by |
2 | 2 | sphinx-quickstart on Mon May 25 20:33:57 2020. |
3 | - You can adapt this file completely to your liking, but it should at least | |
4 | - contain the root `toctree` directive. | |
5 | 3 | |
6 | 4 | Xerblin Documentation |
7 | 5 | =================================== |
@@ -126,8 +124,9 @@ | ||
126 | 124 | .. toctree:: |
127 | 125 | :maxdepth: 2 |
128 | 126 | |
127 | + textwidget | |
128 | + utils | |
129 | 129 | world |
130 | - textwidget | |
131 | 130 | |
132 | 131 | |
133 | 132 | Indices and tables |
@@ -0,0 +1,3 @@ | ||
1 | + | |
2 | +.. automodule:: xerblin.gui.utils | |
3 | + :members: |
@@ -1,3 +1,29 @@ | ||
1 | +# -*- coding: utf-8 -*- | |
2 | +# | |
3 | +# Copyright © 2014, 2015 Simon Forman | |
4 | +# | |
5 | +# This file is part of Xerblin | |
6 | +# | |
7 | +# Xerblin is free software: you can redistribute it and/or modify | |
8 | +# it under the terms of the GNU General Public License as published by | |
9 | +# the Free Software Foundation, either version 3 of the License, or | |
10 | +# (at your option) any later version. | |
11 | +# | |
12 | +# Xerblin is distributed in the hope that it will be useful, | |
13 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | +# GNU General Public License for more details. | |
16 | +# | |
17 | +# You should have received a copy of the GNU General Public License | |
18 | +# along with Xerblin. If not see <http://www.gnu.org/licenses/>. | |
19 | +# | |
20 | +''' | |
21 | + | |
22 | +Utilities | |
23 | +=================================== | |
24 | + | |
25 | + | |
26 | +''' | |
1 | 27 | from __future__ import print_function |
2 | 28 | from builtins import object |
3 | 29 | import argparse, os, sys |
@@ -71,7 +97,7 @@ | ||
71 | 97 | |
72 | 98 | |
73 | 99 | argparser = argparse.ArgumentParser( |
74 | - prog='joy.gui', | |
100 | + prog='xerblin', | |
75 | 101 | description='Experimental Brutalist UI for Joy.', |
76 | 102 | ) |
77 | 103 |