• R/O
  • SSH

Joypy: Commit

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


Commit MetaInfo

Revisão1048aa2cb1ab138cbbc54c5715e4667c3d13aabb (tree)
Hora2020-05-28 13:09:50
AutorSimon Forman <sforman@hush...>
CommiterSimon Forman

Mensagem de Log

A bit more docs.

Mudança Sumário

Diff

diff -r d3aeb3661dc4 -r 1048aa2cb1ab docs/GUI-docs/source/controllerlistbox.rst
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/GUI-docs/source/controllerlistbox.rst Wed May 27 21:09:50 2020 -0700
@@ -0,0 +1,3 @@
1+
2+.. automodule:: xerblin.gui.controllerlistbox
3+ :members:
\ No newline at end of file
diff -r d3aeb3661dc4 -r 1048aa2cb1ab docs/GUI-docs/source/index.rst
--- a/docs/GUI-docs/source/index.rst Wed May 27 18:05:57 2020 -0700
+++ b/docs/GUI-docs/source/index.rst Wed May 27 21:09:50 2020 -0700
@@ -124,9 +124,12 @@
124124 .. toctree::
125125 :maxdepth: 2
126126
127+ controllerlistbox
128+ mousebindings
127129 textwidget
128130 utils
129131 world
132+ init_joy_home
130133
131134
132135 Indices and tables
diff -r d3aeb3661dc4 -r 1048aa2cb1ab docs/GUI-docs/source/init_joy_home.rst
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/GUI-docs/source/init_joy_home.rst Wed May 27 21:09:50 2020 -0700
@@ -0,0 +1,3 @@
1+
2+.. automodule:: xerblin.gui.init_joy_home
3+ :members:
diff -r d3aeb3661dc4 -r 1048aa2cb1ab docs/GUI-docs/source/mousebindings.rst
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/docs/GUI-docs/source/mousebindings.rst Wed May 27 21:09:50 2020 -0700
@@ -0,0 +1,3 @@
1+
2+.. automodule:: xerblin.gui.mousebindings
3+ :members:
diff -r d3aeb3661dc4 -r 1048aa2cb1ab xerblin/gui/controllerlistbox.py
--- a/xerblin/gui/controllerlistbox.py Wed May 27 18:05:57 2020 -0700
+++ b/xerblin/gui/controllerlistbox.py Wed May 27 21:09:50 2020 -0700
@@ -1,21 +1,27 @@
1+# -*- coding: utf-8 -*-
2+#
3+# Copyright © 2014-2020 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+#
120 '''
2- Copyright (C) 2004 - 2008 Simon Forman
3-
4- This file is part of Xerblin.
521
6- Xerblin is free software; you can redistribute it and/or modify
7- it under the terms of the GNU General Public License as published by
8- the Free Software Foundation; either version 2 of the License, or
9- (at your option) any later version.
22+Stack Viewer
23+===========================================================
1024
11- This program is distributed in the hope that it will be useful,
12- but WITHOUT ANY WARRANTY; without even the implied warranty of
13- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14- GNU General Public License for more details.
15-
16- You should have received a copy of the GNU General Public License
17- along with this program; if not, write to the Free Software
18- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
1925
2026 '''
2127 from tkinter import Listbox, SINGLE
diff -r d3aeb3661dc4 -r 1048aa2cb1ab xerblin/gui/init_joy_home.py
--- a/xerblin/gui/init_joy_home.py Wed May 27 18:05:57 2020 -0700
+++ b/xerblin/gui/init_joy_home.py Wed May 27 21:09:50 2020 -0700
@@ -1,12 +1,37 @@
1+# -*- coding: utf-8 -*-
2+#
3+# Copyright © 2014-2020 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+#
120 '''
21+
22+Home Directory Initialization
23+===========================================================
24+
225 Utility module to help with setting up the initial contents of the
326 JOY_HOME directory.
427
528 These contents are kept in this Python module as a base64-encoded zip
6-file, so you can just do, e.g.:
29+file, so you can just do, e.g.::
730
8- import init_joy_home
9- init_joy_home.initialize(JOY_HOME)
31+
32+ import init_joy_home
33+ init_joy_home.initialize(JOY_HOME)
34+
1035
1136 '''
1237 from __future__ import print_function
diff -r d3aeb3661dc4 -r 1048aa2cb1ab xerblin/gui/mousebindings.py
--- a/xerblin/gui/mousebindings.py Wed May 27 18:05:57 2020 -0700
+++ b/xerblin/gui/mousebindings.py Wed May 27 21:09:50 2020 -0700
@@ -2,21 +2,29 @@
22 #
33 # Copyright © 2014, 2015 Simon Forman
44 #
5-# This file is part of joy.py
5+# This file is part of Xerblin.
66 #
7-# joy.py is free software: you can redistribute it and/or modify
7+# Xerblin is free software: you can redistribute it and/or modify
88 # it under the terms of the GNU General Public License as published by
99 # the Free Software Foundation, either version 3 of the License, or
1010 # (at your option) any later version.
1111 #
12-# joy.py is distributed in the hope that it will be useful,
12+# Xerblin is distributed in the hope that it will be useful,
1313 # but WITHOUT ANY WARRANTY; without even the implied warranty of
1414 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1515 # GNU General Public License for more details.
1616 #
1717 # You should have received a copy of the GNU General Public License
18-# along with joy.py. If not see <http://www.gnu.org/licenses/>.
18+# along with Xerblin. If not see <http://www.gnu.org/licenses/>.
1919 #
20+'''
21+
22+Mouse Bindings
23+===========================================================
24+
25+
26+
27+'''
2028 from builtins import object
2129
2230
diff -r d3aeb3661dc4 -r 1048aa2cb1ab xerblin/gui/textwidget.py
--- a/xerblin/gui/textwidget.py Wed May 27 18:05:57 2020 -0700
+++ b/xerblin/gui/textwidget.py Wed May 27 21:09:50 2020 -0700
@@ -18,6 +18,7 @@
1818 # along with joy.py. If not see <http://www.gnu.org/licenses/>.
1919 #
2020 '''
21+
2122 Text Viewer
2223 ===========================================================
2324
Show on old repository browser