Browse Source

initial commit

bmallred 12 years ago
commit
579417528a
47 changed files with 1958 additions and 0 deletions
  1. 3 0
      .gitignore
  2. 3 0
      .quickly
  3. 1 0
      AUTHORS
  4. 36 0
      bin/organiccode
  5. BIN
      data/glib-2.0/schemas/gschemas.compiled
  6. 10 0
      data/glib-2.0/schemas/net.launchpad.organiccode.gschema.xml
  7. BIN
      data/media/background.png
  8. 74 0
      data/media/organiccode.svg
  9. 39 0
      data/ui/AboutOrganiccodeDialog.ui
  10. 489 0
      data/ui/OrganiccodeWindow.ui
  11. 112 0
      data/ui/PreferencesOrganiccodeDialog.ui
  12. 9 0
      data/ui/about_organiccode_dialog.xml
  13. 8 0
      data/ui/organiccode_window.xml
  14. 9 0
      data/ui/preferences_organiccode_dialog.xml
  15. BIN
      help/C/figures/icon.png
  16. 19 0
      help/C/gource.page
  17. 36 0
      help/C/index.page
  18. 23 0
      help/C/usage.page
  19. 8 0
      organiccode.desktop.in
  20. BIN
      organiccode/AboutOrganicCodeDialog.pyc
  21. 21 0
      organiccode/AboutOrganiccodeDialog.py
  22. BIN
      organiccode/AboutOrganiccodeDialog.pyc
  23. BIN
      organiccode/OrganicCodeWindow.pyc
  24. 109 0
      organiccode/OrganiccodeWindow.py
  25. BIN
      organiccode/OrganiccodeWindow.pyc
  26. BIN
      organiccode/PreferencesOrganicCodeDialog.pyc
  27. 32 0
      organiccode/PreferencesOrganiccodeDialog.py
  28. BIN
      organiccode/PreferencesOrganiccodeDialog.pyc
  29. 31 0
      organiccode/__init__.py
  30. BIN
      organiccode/__init__.pyc
  31. 38 0
      organiccode_lib/AboutDialog.py
  32. BIN
      organiccode_lib/AboutDialog.pyc
  33. 312 0
      organiccode_lib/Builder.py
  34. BIN
      organiccode_lib/Builder.pyc
  35. 53 0
      organiccode_lib/PreferencesDialog.py
  36. BIN
      organiccode_lib/PreferencesDialog.pyc
  37. 118 0
      organiccode_lib/Window.py
  38. BIN
      organiccode_lib/Window.pyc
  39. 13 0
      organiccode_lib/__init__.py
  40. BIN
      organiccode_lib/__init__.pyc
  41. 100 0
      organiccode_lib/helpers.py
  42. BIN
      organiccode_lib/helpers.pyc
  43. 58 0
      organiccode_lib/organiccodeconfig.py
  44. BIN
      organiccode_lib/organiccodeconfig.pyc
  45. 138 0
      setup.py
  46. 26 0
      tests/test_example.py
  47. 30 0
      tests/test_lint.py

+ 3 - 0
.gitignore

@ -0,0 +1,3 @@
1
.bzr
2
.bzrignore
3
*.sublime*

+ 3 - 0
.quickly

@ -0,0 +1,3 @@
1
project = organiccode
2
version = 12.08.1
3
template = ubuntu-application

+ 1 - 0
AUTHORS

@ -0,0 +1 @@
1
Copyright (C) 2013 Bryan M. Allred <bryan.allred@gmail.com>

+ 36 - 0
bin/organiccode

@ -0,0 +1,36 @@
1
#!/usr/bin/python
2
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
3
### BEGIN LICENSE
4
# This file is in the public domain
5
### END LICENSE
6
7
### DO NOT EDIT THIS FILE ###
8
9
import sys
10
import os
11
12
import locale
13
locale.textdomain('organiccode')
14
15
# Add project root directory (enable symlink and trunk execution)
16
PROJECT_ROOT_DIRECTORY = os.path.abspath(
17
    os.path.dirname(os.path.dirname(os.path.realpath(sys.argv[0]))))
18
19
python_path = []
20
if os.path.abspath(__file__).startswith('/opt'):
21
    locale.bindtextdomain('organiccode', '/opt/extras.ubuntu.com/organiccode/share/locale')
22
    syspath = sys.path[:] # copy to avoid infinite loop in pending objects
23
    for path in syspath:
24
        opt_path = path.replace('/usr', '/opt/extras.ubuntu.com/organiccode')
25
        python_path.insert(0, opt_path)
26
        sys.path.insert(0, opt_path)
27
    os.putenv("XDG_DATA_DIRS", "%s:%s" % ("/opt/extras.ubuntu.com/organiccode/share/", os.getenv("XDG_DATA_DIRS", "/usr/local/share/:/usr/share/")))
28
if (os.path.exists(os.path.join(PROJECT_ROOT_DIRECTORY, 'organiccode'))
29
    and PROJECT_ROOT_DIRECTORY not in sys.path):
30
    python_path.insert(0, PROJECT_ROOT_DIRECTORY)
31
    sys.path.insert(0, PROJECT_ROOT_DIRECTORY)
32
if python_path:
33
    os.putenv('PYTHONPATH', "%s:%s" % (os.getenv('PYTHONPATH', ''), ':'.join(python_path))) # for subprocesses
34
35
import organiccode
36
organiccode.main()

BIN
data/glib-2.0/schemas/gschemas.compiled


+ 10 - 0
data/glib-2.0/schemas/net.launchpad.organiccode.gschema.xml

@ -0,0 +1,10 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
<schemalist gettext-domain="organiccode">
3
  <schema id="net.launchpad.organiccode" path="/net/launchpad/organiccode/">
4
    <key name="example" type="s">
5
      <default>''</default>
6
      <summary>Sample setting</summary>
7
      <description>Longer description of this sample setting.  Talk about allowed values and what it does.</description>
8
    </key>
9
  </schema>
10
</schemalist>

BIN
data/media/background.png


+ 74 - 0
data/media/organiccode.svg

@ -0,0 +1,74 @@
1
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
<!-- Created with Inkscape (http://www.inkscape.org/) -->
3
4
<svg
5
   xmlns:dc="http://purl.org/dc/elements/1.1/"
6
   xmlns:cc="http://creativecommons.org/ns#"
7
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
   xmlns:svg="http://www.w3.org/2000/svg"
9
   xmlns="http://www.w3.org/2000/svg"
10
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
   width="64"
13
   height="64.000008"
14
   id="svg2"
15
   version="1.1"
16
   inkscape:version="0.48.0 r9654"
17
   inkscape:export-filename="/home/daniel/Projects/test1/data/media/logo.png"
18
   inkscape:export-xdpi="90"
19
   inkscape:export-ydpi="90"
20
   sodipodi:docname="logo1.svg">
21
  <defs
22
     id="defs4" />
23
  <sodipodi:namedview
24
     id="base"
25
     pagecolor="#ffffff"
26
     bordercolor="#666666"
27
     borderopacity="1.0"
28
     inkscape:pageopacity="0.0"
29
     inkscape:pageshadow="2"
30
     inkscape:zoom="1"
31
     inkscape:cx="37.013172"
32
     inkscape:cy="128"
33
     inkscape:document-units="px"
34
     inkscape:current-layer="layer1"
35
     showgrid="false"
36
     fit-margin-top="0"
37
     fit-margin-left="0"
38
     fit-margin-right="0"
39
     fit-margin-bottom="0"
40
     showborder="false"
41
     inkscape:window-width="1280"
42
     inkscape:window-height="753"
43
     inkscape:window-x="0"
44
     inkscape:window-y="24"
45
     inkscape:window-maximized="1" />
46
  <metadata
47
     id="metadata7">
48
    <rdf:RDF>
49
      <cc:Work
50
         rdf:about="">
51
        <dc:format>image/svg+xml</dc:format>
52
        <dc:type
53
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
54
        <dc:title></dc:title>
55
      </cc:Work>
56
    </rdf:RDF>
57
  </metadata>
58
  <g
59
     inkscape:label="Layer 1"
60
     inkscape:groupmode="layer"
61
     id="layer1"
62
     transform="translate(-355.97817,-385.42867)">
63
    <path
64
       style="fill:#f37320"
65
       d="m 384.83834,449.28391 c -8.14057,-0.84905 -15.49055,-4.63875 -20.99488,-10.8251 -8.42757,-9.47182 -10.28693,-23.7434 -4.58555,-35.19659 6.88824,-13.8374 22.76153,-20.85855 37.51104,-16.59205 11.98015,3.46543 20.6717,13.18933 22.83033,25.54204 0.67518,3.86376 0.42901,9.41585 -0.58713,13.24168 -2.42757,9.13998 -8.98351,17.01406 -17.44916,20.95748 -5.03786,2.34672 -11.35816,3.43226 -16.72465,2.87254 z"
66
       id="path3061"
67
       inkscape:connector-curvature="0" />
68
    <path
69
       style="fill:#ffffff"
70
       d="m 398.73202,394.34273 c -1.08285,0.0211 -2.15589,0.48165 -2.98979,1.42969 -1.18348,1.34547 -1.40418,2.71621 -0.71223,4.38281 1.03576,2.49465 3.94418,3.42259 6.13611,1.96094 1.67694,-1.11824 2.46376,-3.57017 1.65143,-5.14844 -0.89738,-1.74353 -2.5029,-2.65576 -4.08552,-2.625 z m -10.89472,4.5625 c -2.42555,0.0486 -5.06336,0.54882 -7.13793,1.41406 l -0.98616,0.41407 1.4401,2.58593 c 0.7934,1.42317 1.57848,2.58594 1.73753,2.58594 0.15904,0 1.00483,-0.20744 1.8784,-0.46094 1.11892,-0.32468 2.32043,-0.42761 4.07769,-0.34375 2.11554,0.10097 2.79469,0.26709 4.4612,1.08594 3.49728,1.7184 6.43694,5.49864 6.88747,8.85156 l 0.15654,1.14063 3.12284,0 3.12285,0 -0.18785,-1.35156 c -0.4425,-3.10716 -2.22228,-7.05351 -4.21857,-9.35157 -0.98973,-1.13933 -0.99683,-1.14194 -2.84891,-1.04687 -1.42823,0.0733 -2.1054,-0.0309 -2.95848,-0.46875 -1.4763,-0.75774 -2.64614,-2.0279 -3.10719,-3.375 -0.36828,-1.07602 -0.42039,-1.11073 -2.33235,-1.46094 -0.94616,-0.1733 -2.00467,-0.24083 -3.10718,-0.21875 z m -10.40166,3.29688 c -0.21996,-0.004 -1.37809,0.98671 -2.57497,2.20312 -2.13408,2.16892 -3.79668,4.8071 -4.58642,7.27344 -0.30595,0.95543 -0.27996,1.1251 0.27392,1.71094 2.02961,2.14667 2.13473,5.62909 0.23481,7.78906 l -0.82964,0.95312 0.57918,1.64063 c 0.31829,0.90395 0.99768,2.35651 1.51055,3.22656 0.98269,1.66709 4.84642,5.73569 5.43954,5.72656 0.19139,-0.003 1.00069,-1.12768 1.7923,-2.5 l 1.44011,-2.49218 -1.46359,-1.42969 c -1.74469,-1.7009 -3.15687,-4.42419 -3.60027,-6.94531 -0.65587,-3.72915 0.73477,-7.91313 3.58462,-10.75782 l 1.4949,-1.48437 -1.44794,-2.45313 c -0.79721,-1.3482 -1.62713,-2.457 -1.8471,-2.46093 z m -11.48172,11.00781 c -0.9633,0.0352 -1.91614,0.41377 -2.69237,1.1875 -2.00987,2.00337 -1.64736,5.13021 0.77483,6.64844 1.21586,0.7621 3.46635,0.64626 4.72731,-0.25 0.50706,-0.3604 1.08552,-1.17918 1.36967,-1.92188 0.42186,-1.10264 0.44357,-1.46028 0.14089,-2.46875 -0.6246,-2.08092 -2.48131,-3.26251 -4.32033,-3.19531 z m 34.48431,5.39844 -0.21914,1.28125 c -0.3438,1.98869 -1.85107,4.75045 -3.48287,6.375 -3.52802,3.51233 -9.02028,4.5823 -13.61059,2.65625 -0.31683,-0.13294 -0.81591,0.51278 -1.90188,2.46093 l -1.47141,2.63282 1.08791,0.5 c 2.35906,1.08328 4.03098,1.35097 7.7171,1.25 1.9655,-0.0538 3.79469,-0.19399 4.06987,-0.3125 0.27517,-0.11852 0.50091,-0.41217 0.50091,-0.65625 0,-0.80589 1.40637,-2.86257 2.36365,-3.45313 1.32111,-0.81501 3.27853,-1.20069 4.58643,-0.90625 1.07501,0.24202 1.1022,0.22987 2.37147,-1.36719 0.70576,-0.88801 1.72249,-2.51849 2.25409,-3.61718 0.92244,-1.90647 2.06223,-6.31651 1.72186,-6.65625 -0.0888,-0.0886 -1.47469,-0.16332 -3.07588,-0.17188 l -2.91152,-0.0156 z m -1.72969,13.57031 c -0.6657,0.006 -1.3092,0.12563 -1.7923,0.375 -2.86148,1.47704 -2.99196,5.66848 -0.22699,7.35156 1.16072,0.70654 3.18099,0.68769 4.37512,-0.0391 2.51763,-1.53224 2.76259,-4.74097 0.52439,-6.82813 -0.60311,-0.56239 -1.77072,-0.86862 -2.88022,-0.85937 z"
71
       id="path3059"
72
       inkscape:connector-curvature="0" />
73
  </g>
74
</svg>

+ 39 - 0
data/ui/AboutOrganiccodeDialog.ui

@ -0,0 +1,39 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
<interface>
3
  <!-- interface-requires about_organiccode_dialog 1.0 -->
4
  <!-- interface-requires gtk+ 3.0 -->
5
  <object class="AboutOrganiccodeDialog" id="about_organiccode_dialog">
6
    <property name="can_focus">False</property>
7
    <property name="border_width">5</property>
8
    <property name="icon">../media/organiccode.svg</property>
9
    <property name="type_hint">normal</property>
10
    <property name="program_name">Organic Code</property>
11
    <property name="version">0.1</property>
12
    <property name="authors">Bryan M. Allred</property>
13
    <property name="logo">../media/organiccode.svg</property>
14
    <child internal-child="vbox">
15
      <object class="GtkBox" id="dialog-vbox1">
16
        <property name="visible">True</property>
17
        <property name="can_focus">False</property>
18
        <property name="orientation">vertical</property>
19
        <property name="spacing">2</property>
20
        <child internal-child="action_area">
21
          <object class="GtkButtonBox" id="dialog-action_area1">
22
            <property name="visible">True</property>
23
            <property name="can_focus">False</property>
24
            <property name="layout_style">end</property>
25
          </object>
26
          <packing>
27
            <property name="expand">False</property>
28
            <property name="fill">True</property>
29
            <property name="pack_type">end</property>
30
            <property name="position">0</property>
31
          </packing>
32
        </child>
33
        <child>
34
          <placeholder/>
35
        </child>
36
      </object>
37
    </child>
38
  </object>
39
</interface>

+ 489 - 0
data/ui/OrganiccodeWindow.ui

@ -0,0 +1,489 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
<interface>
3
  <!-- interface-requires gtk+ 3.0 -->
4
  <!-- interface-requires organiccode_window 1.0 -->
5
  <!-- interface-local-resource-path ../media -->
6
  <object class="GtkAdjustment" id="heightAdjustment">
7
    <property name="lower">100</property>
8
    <property name="upper">9999</property>
9
    <property name="value">400</property>
10
    <property name="step_increment">1</property>
11
    <property name="page_increment">10</property>
12
  </object>
13
  <object class="GtkImage" id="image2">
14
    <property name="visible">True</property>
15
    <property name="can_focus">False</property>
16
    <property name="stock">gtk-help</property>
17
  </object>
18
  <object class="GtkAdjustment" id="startAdjustment">
19
    <property name="lower">0.10000000000000001</property>
20
    <property name="upper">1</property>
21
    <property name="value">0.10000000000000001</property>
22
    <property name="step_increment">0.10000000000000001</property>
23
    <property name="page_increment">10</property>
24
  </object>
25
  <object class="GtkAdjustment" id="stopAdjustment">
26
    <property name="lower">0.10000000000000001</property>
27
    <property name="upper">1</property>
28
    <property name="value">0.10000000000000001</property>
29
    <property name="step_increment">0.10000000000000001</property>
30
    <property name="page_increment">10</property>
31
  </object>
32
  <object class="GtkAdjustment" id="widthAdjustment">
33
    <property name="lower">100</property>
34
    <property name="upper">9999</property>
35
    <property name="value">600</property>
36
    <property name="step_increment">1</property>
37
    <property name="page_increment">10</property>
38
  </object>
39
  <object class="OrganiccodeWindow" id="organiccode_window">
40
    <property name="width_request">600</property>
41
    <property name="height_request">350</property>
42
    <property name="can_focus">False</property>
43
    <property name="title" translatable="yes">Organiccode</property>
44
    <property name="icon">../media/organiccode.svg</property>
45
    <child>
46
      <object class="GtkVBox" id="vbox1">
47
        <property name="visible">True</property>
48
        <property name="can_focus">False</property>
49
        <property name="spacing">5</property>
50
        <child>
51
          <object class="GtkMenuBar" id="menubar1">
52
            <property name="visible">True</property>
53
            <property name="can_focus">False</property>
54
            <child>
55
              <object class="GtkMenuItem" id="mnu_file">
56
                <property name="visible">True</property>
57
                <property name="can_focus">False</property>
58
                <property name="label" translatable="yes">_File</property>
59
                <property name="use_underline">True</property>
60
                <child type="submenu">
61
                  <object class="GtkMenu" id="menu1">
62
                    <property name="visible">True</property>
63
                    <property name="can_focus">False</property>
64
                    <child>
65
                      <object class="GtkImageMenuItem" id="mnu_close">
66
                        <property name="label">gtk-close</property>
67
                        <property name="visible">True</property>
68
                        <property name="can_focus">False</property>
69
                        <property name="use_underline">True</property>
70
                        <property name="use_stock">True</property>
71
                        <accelerator key="w" signal="activate" modifiers="GDK_CONTROL_MASK"/>
72
                      </object>
73
                    </child>
74
                  </object>
75
                </child>
76
              </object>
77
            </child>
78
            <child>
79
              <object class="GtkMenuItem" id="mnu_help">
80
                <property name="visible">True</property>
81
                <property name="can_focus">False</property>
82
                <property name="label" translatable="yes">_Help</property>
83
                <property name="use_underline">True</property>
84
                <child type="submenu">
85
                  <object class="GtkMenu" id="helpMenu">
86
                    <property name="visible">True</property>
87
                    <property name="can_focus">False</property>
88
                    <child>
89
                      <object class="GtkImageMenuItem" id="mnu_contents">
90
                        <property name="label" translatable="yes">Contents</property>
91
                        <property name="visible">True</property>
92
                        <property name="can_focus">False</property>
93
                        <property name="image">image2</property>
94
                        <property name="use_stock">False</property>
95
                        <accelerator key="F1" signal="activate"/>
96
                      </object>
97
                    </child>
98
                    <child>
99
                      <object class="GtkImageMenuItem" id="mnu_about">
100
                        <property name="label">gtk-about</property>
101
                        <property name="visible">True</property>
102
                        <property name="can_focus">False</property>
103
                        <property name="use_underline">True</property>
104
                        <property name="use_stock">True</property>
105
                      </object>
106
                    </child>
107
                  </object>
108
                </child>
109
              </object>
110
            </child>
111
          </object>
112
          <packing>
113
            <property name="expand">False</property>
114
            <property name="fill">True</property>
115
            <property name="position">0</property>
116
          </packing>
117
        </child>
118
        <child>
119
          <object class="GtkBox" id="box1">
120
            <property name="visible">True</property>
121
            <property name="can_focus">False</property>
122
            <child>
123
              <object class="GtkFileChooserButton" id="projectFolder">
124
                <property name="visible">True</property>
125
                <property name="can_focus">False</property>
126
                <property name="orientation">vertical</property>
127
                <property name="action">select-folder</property>
128
                <property name="create_folders">False</property>
129
                <property name="preview_widget_active">False</property>
130
                <property name="use_preview_label">False</property>
131
              </object>
132
              <packing>
133
                <property name="expand">True</property>
134
                <property name="fill">True</property>
135
                <property name="position">0</property>
136
              </packing>
137
            </child>
138
            <child>
139
              <object class="GtkButton" id="generateButton">
140
                <property name="label" translatable="yes">Generate</property>
141
                <property name="visible">True</property>
142
                <property name="can_focus">True</property>
143
                <property name="receives_default">True</property>
144
              </object>
145
              <packing>
146
                <property name="expand">True</property>
147
                <property name="fill">True</property>
148
                <property name="padding">20</property>
149
                <property name="position">1</property>
150
              </packing>
151
            </child>
152
          </object>
153
          <packing>
154
            <property name="expand">False</property>
155
            <property name="fill">True</property>
156
            <property name="position">1</property>
157
          </packing>
158
        </child>
159
        <child>
160
          <object class="GtkBox" id="box2">
161
            <property name="visible">True</property>
162
            <property name="can_focus">False</property>
163
            <child>
164
              <object class="GtkBox" id="box3">
165
                <property name="visible">True</property>
166
                <property name="can_focus">False</property>
167
                <property name="orientation">vertical</property>
168
                <child>
169
                  <object class="GtkExpander" id="expander1">
170
                    <property name="visible">True</property>
171
                    <property name="can_focus">True</property>
172
                    <property name="expanded">True</property>
173
                    <child>
174
                      <object class="GtkGrid" id="grid1">
175
                        <property name="visible">True</property>
176
                        <property name="can_focus">False</property>
177
                        <child>
178
                          <object class="GtkCheckButton" id="fullScreen">
179
                            <property name="label" translatable="yes">Full Screen</property>
180
                            <property name="visible">True</property>
181
                            <property name="can_focus">True</property>
182
                            <property name="receives_default">False</property>
183
                            <property name="xalign">0</property>
184
                            <property name="draw_indicator">True</property>
185
                          </object>
186
                          <packing>
187
                            <property name="left_attach">0</property>
188
                            <property name="top_attach">0</property>
189
                            <property name="width">1</property>
190
                            <property name="height">1</property>
191
                          </packing>
192
                        </child>
193
                        <child>
194
                          <object class="GtkBox" id="box4">
195
                            <property name="visible">True</property>
196
                            <property name="can_focus">False</property>
197
                            <child>
198
                              <object class="GtkLabel" id="label4">
199
                                <property name="visible">True</property>
200
                                <property name="can_focus">False</property>
201
                                <property name="label" translatable="yes">Height</property>
202
                              </object>
203
                              <packing>
204
                                <property name="expand">True</property>
205
                                <property name="fill">True</property>
206
                                <property name="position">0</property>
207
                              </packing>
208
                            </child>
209
                            <child>
210
                              <object class="GtkSpinButton" id="height">
211
                                <property name="visible">True</property>
212
                                <property name="can_focus">True</property>
213
                                <property name="invisible_char">•</property>
214
                                <property name="invisible_char_set">True</property>
215
                                <property name="input_purpose">number</property>
216
                                <property name="adjustment">heightAdjustment</property>
217
                              </object>
218
                              <packing>
219
                                <property name="expand">False</property>
220
                                <property name="fill">False</property>
221
                                <property name="position">1</property>
222
                              </packing>
223
                            </child>
224
                          </object>
225
                          <packing>
226
                            <property name="left_attach">1</property>
227
                            <property name="top_attach">0</property>
228
                            <property name="width">1</property>
229
                            <property name="height">1</property>
230
                          </packing>
231
                        </child>
232
                        <child>
233
                          <object class="GtkBox" id="box5">
234
                            <property name="visible">True</property>
235
                            <property name="can_focus">False</property>
236
                            <child>
237
                              <object class="GtkLabel" id="label5">
238
                                <property name="visible">True</property>
239
                                <property name="can_focus">False</property>
240
                                <property name="label" translatable="yes">Width</property>
241
                              </object>
242
                              <packing>
243
                                <property name="expand">True</property>
244
                                <property name="fill">True</property>
245
                                <property name="position">0</property>
246
                              </packing>
247
                            </child>
248
                            <child>
249
                              <object class="GtkSpinButton" id="width">
250
                                <property name="visible">True</property>
251
                                <property name="can_focus">True</property>
252
                                <property name="invisible_char">•</property>
253
                                <property name="invisible_char_set">True</property>
254
                                <property name="progress_pulse_step">0.10000000149011612</property>
255
                                <property name="input_purpose">number</property>
256
                                <property name="adjustment">widthAdjustment</property>
257
                                <property name="numeric">True</property>
258
                              </object>
259
                              <packing>
260
                                <property name="expand">False</property>
261
                                <property name="fill">False</property>
262
                                <property name="position">1</property>
263
                              </packing>
264
                            </child>
265
                          </object>
266
                          <packing>
267
                            <property name="left_attach">1</property>
268
                            <property name="top_attach">1</property>
269
                            <property name="width">1</property>
270
                            <property name="height">1</property>
271
                          </packing>
272
                        </child>
273
                        <child>
274
                          <object class="GtkCheckButton" id="noVsync">
275
                            <property name="label" translatable="yes">No VSync</property>
276
                            <property name="visible">True</property>
277
                            <property name="can_focus">True</property>
278
                            <property name="receives_default">False</property>
279
                            <property name="xalign">0</property>
280
                            <property name="draw_indicator">True</property>
281
                          </object>
282
                          <packing>
283
                            <property name="left_attach">0</property>
284
                            <property name="top_attach">3</property>
285
                            <property name="width">1</property>
286
                            <property name="height">1</property>
287
                          </packing>
288
                        </child>
289
                        <child>
290
                          <object class="GtkCheckButton" id="multiSampling">
291
                            <property name="label" translatable="yes">Multi-Sampling</property>
292
                            <property name="visible">True</property>
293
                            <property name="can_focus">True</property>
294
                            <property name="receives_default">False</property>
295
                            <property name="xalign">0</property>
296
                            <property name="draw_indicator">True</property>
297
                          </object>
298
                          <packing>
299
                            <property name="left_attach">0</property>
300
                            <property name="top_attach">2</property>
301
                            <property name="width">1</property>
302
                            <property name="height">1</property>
303
                          </packing>
304
                        </child>
305
                        <child>
306
                          <placeholder/>
307
                        </child>
308
                        <child>
309
                          <placeholder/>
310
                        </child>
311
                        <child>
312
                          <placeholder/>
313
                        </child>
314
                      </object>
315
                    </child>
316
                    <child type="label">
317
                      <object class="GtkLabel" id="label1">
318
                        <property name="visible">True</property>
319
                        <property name="can_focus">False</property>
320
                        <property name="label" translatable="yes">Screen</property>
321
                      </object>
322
                    </child>
323
                  </object>
324
                  <packing>
325
                    <property name="expand">False</property>
326
                    <property name="fill">True</property>
327
                    <property name="position">0</property>
328
                  </packing>
329
                </child>
330
                <child>
331
                  <object class="GtkExpander" id="expander2">
332
                    <property name="visible">True</property>
333
                    <property name="can_focus">True</property>
334
                    <property name="expanded">True</property>
335
                    <child>
336
                      <object class="GtkGrid" id="grid2">
337
                        <property name="visible">True</property>
338
                        <property name="can_focus">False</property>
339
                        <child>
340
                          <object class="GtkCheckButton" id="startPosition">
341
                            <property name="label" translatable="yes">Start position</property>
342
                            <property name="visible">True</property>
343
                            <property name="can_focus">True</property>
344
                            <property name="receives_default">False</property>
345
                            <property name="xalign">0</property>
346
                            <property name="draw_indicator">True</property>
347
                          </object>
348
                          <packing>
349
                            <property name="left_attach">0</property>
350
                            <property name="top_attach">0</property>
351
                            <property name="width">1</property>
352
                            <property name="height">1</property>
353
                          </packing>
354
                        </child>
355
                        <child>
356
                          <object class="GtkCheckButton" id="stopPosition">
357
                            <property name="label" translatable="yes">Stop position</property>
358
                            <property name="visible">True</property>
359
                            <property name="can_focus">True</property>
360
                            <property name="receives_default">False</property>
361
                            <property name="xalign">0</property>
362
                            <property name="draw_indicator">True</property>
363
                          </object>
364
                          <packing>
365
                            <property name="left_attach">0</property>
366
                            <property name="top_attach">1</property>
367
                            <property name="width">1</property>
368
                            <property name="height">1</property>
369
                          </packing>
370
                        </child>
371
                        <child>
372
                          <object class="GtkCheckButton" id="loop">
373
                            <property name="label" translatable="yes">Loop</property>
374
                            <property name="visible">True</property>
375
                            <property name="can_focus">True</property>
376
                            <property name="receives_default">False</property>
377
                            <property name="xalign">0</property>
378
                            <property name="draw_indicator">True</property>
379
                          </object>
380
                          <packing>
381
                            <property name="left_attach">0</property>
382
                            <property name="top_attach">2</property>
383
                            <property name="width">1</property>
384
                            <property name="height">1</property>
385
                          </packing>
386
                        </child>
387
                        <child>
388
                          <object class="GtkScale" id="stopScale">
389
                            <property name="width_request">300</property>
390
                            <property name="visible">True</property>
391
                            <property name="sensitive">False</property>
392
                            <property name="can_focus">True</property>
393
                            <property name="margin_left">20</property>
394
                            <property name="margin_right">20</property>
395
                            <property name="adjustment">stopAdjustment</property>
396
                            <property name="round_digits">1</property>
397
                            <property name="value_pos">right</property>
398
                          </object>
399
                          <packing>
400
                            <property name="left_attach">1</property>
401
                            <property name="top_attach">1</property>
402
                            <property name="width">1</property>
403
                            <property name="height">1</property>
404
                          </packing>
405
                        </child>
406
                        <child>
407
                          <object class="GtkScale" id="startScale">
408
                            <property name="width_request">300</property>
409
                            <property name="visible">True</property>
410
                            <property name="sensitive">False</property>
411
                            <property name="can_focus">True</property>
412
                            <property name="margin_left">20</property>
413
                            <property name="margin_right">20</property>
414
                            <property name="adjustment">startAdjustment</property>
415
                            <property name="round_digits">1</property>
416
                            <property name="value_pos">right</property>
417
                          </object>
418
                          <packing>
419
                            <property name="left_attach">1</property>
420
                            <property name="top_attach">0</property>
421
                            <property name="width">1</property>
422
                            <property name="height">1</property>
423
                          </packing>
424
                        </child>
425
                        <child>
426
                          <placeholder/>
427
                        </child>
428
                      </object>
429
                    </child>
430
                    <child type="label">
431
                      <object class="GtkLabel" id="label3">
432
                        <property name="visible">True</property>
433
                        <property name="can_focus">False</property>
434
                        <property name="label" translatable="yes">Timeline</property>
435
                      </object>
436
                    </child>
437
                  </object>
438
                  <packing>
439
                    <property name="expand">False</property>
440
                    <property name="fill">True</property>
441
                    <property name="position">1</property>
442
                  </packing>
443
                </child>
444
              </object>
445
              <packing>
446
                <property name="expand">True</property>
447
                <property name="fill">True</property>
448
                <property name="position">0</property>
449
              </packing>
450
            </child>
451
          </object>
452
          <packing>
453
            <property name="expand">True</property>
454
            <property name="fill">True</property>
455
            <property name="position">2</property>
456
          </packing>
457
        </child>
458
        <child>
459
          <object class="GtkStatusbar" id="statusbar1">
460
            <property name="visible">True</property>
461
            <property name="can_focus">False</property>
462
            <property name="spacing">2</property>
463
            <child>
464
              <object class="GtkLabel" id="status">
465
                <property name="visible">True</property>
466
                <property name="can_focus">False</property>
467
                <property name="xalign">0</property>
468
                <property name="xpad">5</property>
469
                <property name="ypad">5</property>
470
                <property name="label" translatable="yes">Ready</property>
471
              </object>
472
              <packing>
473
                <property name="expand">True</property>
474
                <property name="fill">True</property>
475
                <property name="position">0</property>
476
              </packing>
477
            </child>
478
          </object>
479
          <packing>
480
            <property name="expand">False</property>
481
            <property name="fill">True</property>
482
            <property name="pack_type">end</property>
483
            <property name="position">3</property>
484
          </packing>
485
        </child>
486
      </object>
487
    </child>
488
  </object>
489
</interface>

+ 112 - 0
data/ui/PreferencesOrganiccodeDialog.ui

@ -0,0 +1,112 @@
1
<?xml version="1.0" encoding="UTF-8"?>
2
<interface>
3
  <!-- interface-requires gtk+ 3.0 -->
4
  <!-- interface-requires preferences_organiccode_dialog 1.0 -->
5
  <object class="PreferencesOrganiccodeDialog" id="preferences_organiccode_dialog">
6
    <property name="can_focus">False</property>
7
    <property name="title" translatable="yes">Organiccode Preferences</property>
8
    <property name="icon">../media/organiccode.svg</property>
9
    <property name="type_hint">normal</property>
10
    <child internal-child="vbox">
11
      <object class="GtkBox" id="dialog-vbox1">
12
        <property name="visible">True</property>
13
        <property name="can_focus">False</property>
14
        <property name="orientation">vertical</property>
15
        <property name="spacing">12</property>
16
        <child internal-child="action_area">
17
          <object class="GtkButtonBox" id="dialog-action_area1">
18
            <property name="visible">True</property>
19
            <property name="can_focus">False</property>
20
            <property name="layout_style">end</property>
21
            <child>
22
              <object class="GtkButton" id="btn_help">
23
                <property name="label">gtk-help</property>
24
                <property name="visible">True</property>
25
                <property name="can_focus">True</property>
26
                <property name="receives_default">True</property>
27
                <property name="use_action_appearance">False</property>
28
                <property name="use_stock">True</property>
29
              </object>
30
              <packing>
31
                <property name="expand">False</property>
32
                <property name="fill">False</property>
33
                <property name="position">0</property>
34
                <property name="secondary">True</property>
35
              </packing>
36
            </child>
37
            <child>
38
              <object class="GtkButton" id="btn_close">
39
                <property name="label">gtk-close</property>
40
                <property name="visible">True</property>
41
                <property name="can_focus">True</property>
42
                <property name="receives_default">True</property>
43
                <property name="use_action_appearance">False</property>
44
                <property name="use_stock">True</property>
45
              </object>
46
              <packing>
47
                <property name="expand">False</property>
48
                <property name="fill">False</property>
49
                <property name="position">1</property>
50
              </packing>
51
            </child>
52
          </object>
53
          <packing>
54
            <property name="expand">False</property>
55
            <property name="fill">True</property>
56
            <property name="pack_type">end</property>
57
            <property name="position">0</property>
58
          </packing>
59
        </child>
60
        <child>
61
          <object class="GtkGrid" id="table1">
62
            <property name="visible">True</property>
63
            <property name="can_focus">False</property>
64
            <property name="row_spacing">6</property>
65
            <property name="column_spacing">6</property>
66
            <property name="n_rows">1</property>
67
            <property name="n_columns">2</property>
68
            <child>
69
              <object class="GtkEntry" id="example_entry">
70
                <property name="visible">True</property>
71
                <property name="can_focus">True</property>
72
                <property name="hexpand">True</property>
73
                <property name="invisible_char">•</property>
74
              </object>
75
              <packing>
76
                <property name="left_attach">1</property>
77
                <property name="top_attach">0</property>
78
                <property name="width">1</property>
79
                <property name="height">1</property>
80
              </packing>
81
            </child>
82
            <child>
83
              <object class="GtkLabel" id="example_entry_label">
84
                <property name="visible">True</property>
85
                <property name="can_focus">False</property>
86
                <property name="xalign">0</property>
87
                <property name="label" translatable="yes">_Example entry:</property>
88
                <property name="use_underline">True</property>
89
                <property name="mnemonic_widget">example_entry</property>
90
              </object>
91
              <packing>
92
                <property name="left_attach">0</property>
93
                <property name="top_attach">0</property>
94
                <property name="width">1</property>
95
                <property name="height">1</property>
96
              </packing>
97
            </child>
98
          </object>
99
          <packing>
100
            <property name="expand">False</property>
101
            <property name="fill">True</property>
102
            <property name="position">1</property>
103
          </packing>
104
        </child>
105
      </object>
106
    </child>
107
    <action-widgets>
108
      <action-widget response="-11">btn_help</action-widget>
109
      <action-widget response="-7">btn_close</action-widget>
110
    </action-widgets>
111
  </object>
112
</interface>

+ 9 - 0
data/ui/about_organiccode_dialog.xml

@ -0,0 +1,9 @@
1
<glade-catalog name="about_organiccode_dialog" domain="glade-3" 
2
               depends="gtk+" version="1.0">
3
  <glade-widget-classes>
4
    <glade-widget-class title="About Organiccode Dialog" name="AboutOrganiccodeDialog" 
5
                        generic-name="AboutOrganiccodeDialog" parent="GtkAboutDialog"
6
                        icon-name="widget-gtk-about-dialog"/>
7
  </glade-widget-classes>
8
9
</glade-catalog>

+ 8 - 0
data/ui/organiccode_window.xml

@ -0,0 +1,8 @@
1
<glade-catalog name="organiccode_window" domain="glade-3" 
2
               depends="gtk+" version="1.0">
3
  <glade-widget-classes>
4
    <glade-widget-class title="Organiccode Window" name="OrganiccodeWindow" 
5
                        generic-name="OrganiccodeWindow" parent="GtkWindow"
6
                        icon-name="widget-gtk-window"/>
7
  </glade-widget-classes>
8
</glade-catalog>

+ 9 - 0
data/ui/preferences_organiccode_dialog.xml

@ -0,0 +1,9 @@
1
<glade-catalog name="preferences_organiccode_dialog" domain="glade-3" 
2
               depends="gtk+" version="1.0">
3
  <glade-widget-classes>
4
    <glade-widget-class title="Organiccode Preferences Dialog" name="PreferencesOrganiccodeDialog" 
5
                        generic-name="PreferenceOrganiccodeDialog" parent="GtkDialog"
6
                        icon-name="widget-gtk-dialog"/>
7
  </glade-widget-classes>
8
9
</glade-catalog>

BIN
help/C/figures/icon.png


+ 19 - 0
help/C/gource.page

@ -0,0 +1,19 @@
1
<page xmlns="http://projectmallard.org/1.0/" type="topic" id="gource">
2
	<info>
3
		<link type="guide" xref="index#contents"/>
4
		<credit type="author">
5
			<name>Bryan M. Allred</name>
6
			<email>bryan.allred@gmail.com</email>
7
			<years>2013</years>
8
		</credit>
9
		<desc>Information concerning Gource.</desc>
10
	</info>
11
12
	<title>Gource</title>
13
	
14
	<p>The actual rendering of the version control repositories is done by the use of <link href="http://code.google.com/p/gource">Gource</link>.</p>
15
16
	<p>Installation on Ubuntu systems is as easy as running the following command:</p>
17
18
	<p><cmd>sudo apt-get install gource</cmd></p>
19
</page>

+ 36 - 0
help/C/index.page

@ -0,0 +1,36 @@
1
<page xmlns="http://projectmallard.org/1.0/"
2
      type="guide"
3
      id="index">
4
5
<info>
6
  <!-- This shows in the title bar so does not show [icon] -->
7
  <title type="text">Organic Code</title>
8
  <desc>The <app>Organic Code</app> help.</desc>
9
  <credit type="author">
10
    <name>Bryan M. Allred</name>
11
    <email>bryan.allred@gmail.com</email>
12
    <years>2013</years>
13
  </credit>
14
  <license href="http://www.gnu.org/licenses/gpl.html">
15
  <p>GNU General Public License version 3.0 License</p>
16
  </license>
17
</info>
18
19
<title>
20
<!-- This shows on the page in title font -->
21
<!-- the icon only shows when installed -->
22
<media type="image" mime="image/png" src="figures/icon.png">[icon]</media>
23
<app>Organic Code</app> Help
24
</title>
25
26
<p>This is an example guide page. It's main function is to link together the help topics.</p>
27
28
<!-- This is the visible index -->
29
<section id="contents" style="2column">
30
<!-- other pages needs to have a link to index#contents for this to work -->
31
<title>Contents</title>
32
</section>
33
34
<note></note>
35
36
</page>

+ 23 - 0
help/C/usage.page

@ -0,0 +1,23 @@
1
<page xmlns="http://projectmallard.org/1.0/" type="topic" id="usage">
2
	<info>
3
		<link type="guide" xref="index#contents"/>
4
		<credit type="author">
5
			<name>Bryan M. Allred</name>
6
			<email>bryan.allred@gmail.com</email>
7
			<years>2013</years>
8
		</credit>
9
		<desc>General usage information.</desc>
10
	</info>
11
12
	<title>Common Usage</title>
13
14
	<p>At the very minimum you need to select the project folder.</p>
15
16
	<list>
17
		<title>Commonly used settings</title>
18
19
		<item><p>Height and width</p></item>
20
		<item><p>Full Screen</p></item>
21
		<item><p>Start position</p></item>
22
	</list>
23
</page>

+ 8 - 0
organiccode.desktop.in

@ -0,0 +1,8 @@
1
[Desktop Entry]
2
_Name=Organic Code
3
_Comment=Organic Code application
4
Categories=GNOME;Utility;
5
Exec=organiccode
6
Icon=organiccode
7
Terminal=false
8
Type=Application

BIN
organiccode/AboutOrganicCodeDialog.pyc


+ 21 - 0
organiccode/AboutOrganiccodeDialog.py

@ -0,0 +1,21 @@
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
2
### BEGIN LICENSE
3
# This file is in the public domain
4
### END LICENSE
5
6
import logging
7
from locale import gettext as _
8
from organiccode_lib.AboutDialog import AboutDialog
9
10
logger = logging.getLogger('organiccode')
11
12
13
class AboutOrganiccodeDialog(AboutDialog):
14
    # See organiccode_lib.AboutDialog.py for more details about how this class works.
15
    __gtype_name__ = "AboutOrganiccodeDialog"
16
17
    def finish_initializing(self, builder):  # pylint: disable=E1002
18
        """Set up the about dialog"""
19
        super(AboutOrganiccodeDialog, self).finish_initializing(builder)
20
21
        # Code for other initialization actions should be added here.

BIN
organiccode/AboutOrganiccodeDialog.pyc


BIN
organiccode/OrganicCodeWindow.pyc


+ 109 - 0
organiccode/OrganiccodeWindow.py

@ -0,0 +1,109 @@
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
2
### BEGIN LICENSE
3
# This file is in the public domain
4
### END LICENSE
5
6
import logging
7
from subprocess import call
8
from locale import gettext as _
9
from gi.repository import Gtk  # pylint: disable=E0611
10
from organiccode_lib import Window
11
from organiccode.AboutOrganiccodeDialog import AboutOrganiccodeDialog
12
from organiccode.PreferencesOrganiccodeDialog import PreferencesOrganiccodeDialog
13
14
logger = logging.getLogger('organiccode')
15
16
17
class OrganiccodeWindow(Window):
18
    # See organiccode_lib.Window.py for more details about how this class works
19
    __gtype_name__ = "OrganiccodeWindow"
20
21
    def finish_initializing(self, builder):  # pylint: disable=E1002
22
        """Set up the main window"""
23
        super(OrganiccodeWindow, self).finish_initializing(builder)
24
25
        self.AboutDialog = AboutOrganiccodeDialog
26
        self.PreferencesDialog = PreferencesOrganiccodeDialog
27
28
        # Code for other initialization actions should be added here.
29
        self.openMenu = self.builder.get_object("mnu_open")
30
        self.projectFolder = self.builder.get_object("projectFolder")
31
        self.generateButton = self.builder.get_object("generateButton")
32
        self.fullScreen = self.builder.get_object("fullScreen")
33
        self.multiSampling = self.builder.get_object("multiSampling")
34
        self.noVsync = self.builder.get_object("noVsync")
35
        self.height = self.builder.get_object("height")
36
        self.width = self.builder.get_object("width")
37
        self.startPosition = self.builder.get_object("startPosition")
38
        self.stopPosition = self.builder.get_object("stopPosition")
39
        self.startScale = self.builder.get_object("startScale")
40
        self.stopScale = self.builder.get_object("stopScale")
41
        self.loop = self.builder.get_object("loop")
42
        self.status = self.builder.get_object("status")
43
44
    def on_openMenu_clicked(self, widget):
45
        self.projectFolder.click()
46
47
    def on_generateButton_clicked(self, widget):
48
        self.status.set_label("Building parameters...")
49
50
        args = []
51
        args.append("gource")
52
53
        # Retrieve, or formulate, the options.
54
        if (self.fullScreen.get_active()):
55
            args.append("--fullscreen")
56
        else:
57
            args.append("-{:.0f}x{:.0f}".format(self.width.get_value(), self.height.get_value()))
58
59
        if (self.multiSampling.get_active()):
60
            args.append("--multi-sampling")
61
62
        if (self.noVsync.get_active()):
63
            args.append("--no-vsync")
64
65
        if (self.startPosition.get_active()):
66
            args.append("--start-position")
67
            args.append("{:.1f}".format(self.startScale.get_value()))
68
69
        if (self.stopPosition.get_active()):
70
            args.append("--stop-position")
71
            args.append("{:.1f}".format(self.stopScale.get_value()))
72
73
        if (self.loop.get_active()):
74
            args.append("--loop")
75
76
        # Append the path of the project
77
        args.append(self.projectFolder.get_current_folder())
78
79
        # Execute the shell command
80
        try:
81
            self.status.set_label("Rendering source control visualization...")
82
            retvalue = call(args)
83
84
            if (retvalue < 0):
85
                self.status.set_label("Rendering cancelled by user")
86
            else:
87
                self.status.set_label("Rendering complete")
88
        except Exception:
89
            self.status.set_label("Rendering failed")
90
91
    def on_fullScreen_toggled(self, widget):
92
        isActive = widget.get_active()
93
        self.height.set_sensitive(not isActive)
94
        self.width.set_sensitive(not isActive)
95
96
    def on_startPosition_toggled(self, widget):
97
        isActive = widget.get_active()
98
        self.startScale.set_sensitive(isActive)
99
100
    def on_stopPosition_toggled(self, widget):
101
        isActive = widget.get_active()
102
        self.stopScale.set_sensitive(isActive)
103
104
    def on_loop_toggled(self, widget):
105
        isActive = widget.get_active()
106
107
        if (isActive):
108
            self.startPosition.set_active(not isActive)
109
            self.stopPosition.set_active(not isActive)

BIN
organiccode/OrganiccodeWindow.pyc


BIN
organiccode/PreferencesOrganicCodeDialog.pyc


+ 32 - 0
organiccode/PreferencesOrganiccodeDialog.py

@ -0,0 +1,32 @@
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
2
### BEGIN LICENSE
3
# This file is in the public domain
4
### END LICENSE
5
6
# This is your preferences dialog.
7
#
8
# Define your preferences in
9
# data/glib-2.0/schemas/net.launchpad.organiccode.gschema.xml
10
# See http://developer.gnome.org/gio/stable/GSettings.html for more info.
11
12
import logging
13
from gi.repository import Gio  # pylint: disable=E0611
14
from locale import gettext as _
15
from organiccode_lib.PreferencesDialog import PreferencesDialog
16
17
logger = logging.getLogger('organiccode')
18
19
20
class PreferencesOrganiccodeDialog(PreferencesDialog):
21
    __gtype_name__ = "PreferencesOrganiccodeDialog"
22
23
    def finish_initializing(self, builder):  # pylint: disable=E1002
24
        """Set up the preferences dialog"""
25
        super(PreferencesOrganiccodeDialog, self).finish_initializing(builder)
26
27
        # Bind each preference widget to gsettings
28
        settings = Gio.Settings("net.launchpad.organiccode")
29
        widget = self.builder.get_object('example_entry')
30
        settings.bind("example", widget, "text", Gio.SettingsBindFlags.DEFAULT)
31
32
        # Code for other initialization actions should be added here.

BIN
organiccode/PreferencesOrganiccodeDialog.pyc


+ 31 - 0
organiccode/__init__.py

@ -0,0 +1,31 @@
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
2
### BEGIN LICENSE
3
# This file is in the public domain
4
### END LICENSE
5
6
import optparse
7
from locale import gettext as _
8
from gi.repository import Gtk  # pylint: disable=E0611
9
from organiccode import OrganiccodeWindow
10
from organiccode_lib import set_up_logging, get_version
11
12
13
def parse_options():
14
    """Support for command line options"""
15
    parser = optparse.OptionParser(version="%%prog %s" % get_version())
16
    parser.add_option(
17
        "-v", "--verbose", action="count", dest="verbose",
18
        help=_("Show debug messages (-vv debugs organiccode_lib also)"))
19
    (options, args) = parser.parse_args()
20
21
    set_up_logging(options)
22
23
24
def main():
25
    'constructor for your class instances'
26
    parse_options()
27
28
    # Run the application.
29
    window = OrganiccodeWindow.OrganiccodeWindow()
30
    window.show()
31
    Gtk.main()

BIN
organiccode/__init__.pyc


+ 38 - 0
organiccode_lib/AboutDialog.py

@ -0,0 +1,38 @@
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
2
### BEGIN LICENSE
3
# This file is in the public domain
4
### END LICENSE
5
6
### DO NOT EDIT THIS FILE ###
7
8
from gi.repository import Gtk  # pylint: disable=E0611
9
from . helpers import get_builder
10
11
12
class AboutDialog(Gtk.AboutDialog):
13
    __gtype_name__ = "AboutDialog"
14
15
    def __new__(cls):
16
        """Special static method that's automatically called by Python when
17
        constructing a new instance of this class.
18
19
        Returns a fully instantiated AboutDialog object.
20
        """
21
        builder = get_builder('AboutOrganiccodeDialog')
22
        new_object = builder.get_object("about_organiccode_dialog")
23
        new_object.finish_initializing(builder)
24
        return new_object
25
26
    def finish_initializing(self, builder):
27
        """Called while initializing this instance in __new__
28
29
        finish_initalizing should be called after parsing the ui definition
30
        and creating a AboutDialog object with it in order
31
        to finish initializing the start of the new AboutOrganiccodeDialog
32
        instance.
33
34
        Put your initialization code in here and leave __init__ undefined.
35
        """
36
        # Get a reference to the builder and set up the signals.
37
        self.builder = builder
38
        self.ui = builder.get_ui(self)

BIN
organiccode_lib/AboutDialog.pyc


+ 312 - 0
organiccode_lib/Builder.py

@ -0,0 +1,312 @@
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
2
### BEGIN LICENSE
3
# This file is in the public domain
4
### END LICENSE
5
6
### DO NOT EDIT THIS FILE ###
7
8
'''Enhances builder connections, provides object to access glade objects'''
9
import inspect
10
import functools
11
import logging
12
from gi.repository import GObject, Gtk # pylint: disable=E0611
13
from xml.etree.cElementTree import ElementTree
14
15
logger = logging.getLogger('organiccode_lib')
16
17
# this module is big so uses some conventional prefixes and postfixes
18
# *s list, except self.widgets is a dictionary
19
# *_dict dictionary
20
# *name string
21
# ele_* element in a ElementTree
22
23
24
# pylint: disable=R0904
25
# the many public methods is a feature of Gtk.Builder
26
class Builder(Gtk.Builder):
27
    ''' extra features
28
    connects glade defined handler to default_handler if necessary
29
    auto connects widget to handler with matching name or alias
30
    auto connects several widgets to a handler via multiple aliases
31
    allow handlers to lookup widget name
32
    logs every connection made, and any on_* not made
33
    '''
34
35
    def __init__(self):
36
        Gtk.Builder.__init__(self)
37
        self.widgets = {}
38
        self.glade_handler_dict = {}
39
        self.connections = []
40
        self._reverse_widget_dict = {}
41
42
# pylint: disable=R0201
43
# this is a method so that a subclass of Builder can redefine it
44
    def default_handler(self,
45
        handler_name, filename, *args, **kwargs):
46
        '''helps the apprentice guru
47
48
    glade defined handlers that do not exist come here instead.
49
    An apprentice guru might wonder which signal does what he wants,
50
    now he can define any likely candidates in glade and notice which
51
    ones get triggered when he plays with the project.
52
    this method does not appear in Gtk.Builder'''
53
        logger.debug('''tried to call non-existent function:%s()
54
        expected in %s
55
        args:%s
56
        kwargs:%s''', handler_name, filename, args, kwargs)
57
# pylint: enable=R0201
58
59
    def get_name(self, widget):
60
        ''' allows a handler to get the name (id) of a widget
61
62
        this method does not appear in Gtk.Builder'''
63
        return self._reverse_widget_dict.get(widget)
64
65
    def add_from_file(self, filename):
66
        '''parses xml file and stores wanted details'''
67
        Gtk.Builder.add_from_file(self, filename)
68
69
        # extract data for the extra interfaces
70
        tree = ElementTree()
71
        tree.parse(filename)
72
73
        ele_widgets = tree.getiterator("object")
74
        for ele_widget in ele_widgets:
75
            name = ele_widget.attrib['id']
76
            widget = self.get_object(name)
77
78
            # populate indexes - a dictionary of widgets
79
            self.widgets[name] = widget
80
81
            # populate a reversed dictionary
82
            self._reverse_widget_dict[widget] = name
83
84
            # populate connections list
85
            ele_signals = ele_widget.findall("signal")
86
87
            connections = [
88
                (name,
89
                ele_signal.attrib['name'],
90
                ele_signal.attrib['handler']) for ele_signal in ele_signals]
91
92
            if connections:
93
                self.connections.extend(connections)
94
95
        ele_signals = tree.getiterator("signal")
96
        for ele_signal in ele_signals:
97
            self.glade_handler_dict.update(
98
            {ele_signal.attrib["handler"]: None})
99
100
    def connect_signals(self, callback_obj):
101
        '''connect the handlers defined in glade
102
103
        reports successful and failed connections
104
        and logs call to missing handlers'''
105
        filename = inspect.getfile(callback_obj.__class__)
106
        callback_handler_dict = dict_from_callback_obj(callback_obj)
107
        connection_dict = {}
108
        connection_dict.update(self.glade_handler_dict)
109
        connection_dict.update(callback_handler_dict)
110
        for item in connection_dict.items():
111
            if item[1] is None:
112
                # the handler is missing so reroute to default_handler
113
                handler = functools.partial(
114
                    self.default_handler, item[0], filename)
115
116
                connection_dict[item[0]] = handler
117
118
                # replace the run time warning
119
                logger.warn("expected handler '%s' in %s",
120
                 item[0], filename)
121
122
        # connect glade define handlers
123
        Gtk.Builder.connect_signals(self, connection_dict)
124
125
        # let's tell the user how we applied the glade design
126
        for connection in self.connections:
127
            widget_name, signal_name, handler_name = connection
128
            logger.debug("connect builder by design '%s', '%s', '%s'",
129
             widget_name, signal_name, handler_name)
130
131
    def get_ui(self, callback_obj=None, by_name=True):
132
        '''Creates the ui object with widgets as attributes
133
134
        connects signals by 2 methods
135
        this method does not appear in Gtk.Builder'''
136
137
        result = UiFactory(self.widgets)
138
139
        # Hook up any signals the user defined in glade
140
        if callback_obj is not None:
141
            # connect glade define handlers
142
            self.connect_signals(callback_obj)
143
144
            if by_name:
145
                auto_connect_by_name(callback_obj, self)
146
147
        return result
148
149
150
# pylint: disable=R0903
151
# this class deliberately does not provide any public interfaces
152
# apart from the glade widgets
153
class UiFactory():
154
    ''' provides an object with attributes as glade widgets'''
155
    def __init__(self, widget_dict):
156
        self._widget_dict = widget_dict
157
        for (widget_name, widget) in widget_dict.items():
158
            setattr(self, widget_name, widget)
159
160
        # Mangle any non-usable names (like with spaces or dashes)
161
        # into pythonic ones
162
        cannot_message = """cannot bind ui.%s, name already exists
163
        consider using a pythonic name instead of design name '%s'"""
164
        consider_message = """consider using a pythonic name instead of design name '%s'"""
165
        
166
        for (widget_name, widget) in widget_dict.items():
167
            pyname = make_pyname(widget_name)
168
            if pyname != widget_name:
169
                if hasattr(self, pyname):
170
                    logger.debug(cannot_message, pyname, widget_name)
171
                else:
172
                    logger.debug(consider_message, widget_name)
173
                    setattr(self, pyname, widget)
174
175
        def iterator():
176
            '''Support 'for o in self' '''
177
            return iter(widget_dict.values())
178
        setattr(self, '__iter__', iterator)
179
180
    def __getitem__(self, name):
181
        'access as dictionary where name might be non-pythonic'
182
        return self._widget_dict[name]
183
# pylint: enable=R0903
184
185
186
def make_pyname(name):
187
    ''' mangles non-pythonic names into pythonic ones'''
188
    pyname = ''
189
    for character in name:
190
        if (character.isalpha() or character == '_' or
191
            (pyname and character.isdigit())):
192
            pyname += character
193
        else:
194
            pyname += '_'
195
    return pyname
196
197
198
# Until bug https://bugzilla.gnome.org/show_bug.cgi?id=652127 is fixed, we 
199
# need to reimplement inspect.getmembers.  GObject introspection doesn't
200
# play nice with it.
201
def getmembers(obj, check):
202
    members = []
203
    for k in dir(obj):
204
        try:
205
            attr = getattr(obj, k)
206
        except:
207
            continue
208
        if check(attr):
209
            members.append((k, attr))
210
    members.sort()
211
    return members
212
213
214
def dict_from_callback_obj(callback_obj):
215
    '''a dictionary interface to callback_obj'''
216
    methods = getmembers(callback_obj, inspect.ismethod)
217
218
    aliased_methods = [x[1] for x in methods if hasattr(x[1], 'aliases')]
219
220
    # a method may have several aliases
221
    #~ @alias('on_btn_foo_clicked')
222
    #~ @alias('on_tool_foo_activate')
223
    #~ on_menu_foo_activate():
224
        #~ pass
225
    alias_groups = [(x.aliases, x) for x in aliased_methods]
226
227
    aliases = []
228
    for item in alias_groups:
229
        for alias in item[0]:
230
            aliases.append((alias, item[1]))
231
232
    dict_methods = dict(methods)
233
    dict_aliases = dict(aliases)
234
235
    results = {}
236
    results.update(dict_methods)
237
    results.update(dict_aliases)
238
239
    return results
240
241
242
def auto_connect_by_name(callback_obj, builder):
243
    '''finds handlers like on_<widget_name>_<signal> and connects them
244
245
    i.e. find widget,signal pair in builder and call
246
    widget.connect(signal, on_<widget_name>_<signal>)'''
247
248
    callback_handler_dict = dict_from_callback_obj(callback_obj)
249
250
    for item in builder.widgets.items():
251
        (widget_name, widget) = item
252
        signal_ids = []
253
        try:
254
            widget_type = type(widget)
255
            while widget_type:
256
                signal_ids.extend(GObject.signal_list_ids(widget_type))
257
                widget_type = GObject.type_parent(widget_type)
258
        except RuntimeError:  # pylint wants a specific error
259
            pass
260
        signal_names = [GObject.signal_name(sid) for sid in signal_ids]
261
262
        # Now, automatically find any the user didn't specify in glade
263
        for sig in signal_names:
264
            # using convention suggested by glade
265
            sig = sig.replace("-", "_")
266
            handler_names = ["on_%s_%s" % (widget_name, sig)]
267
268
            # Using the convention that the top level window is not
269
            # specified in the handler name. That is use
270
            # on_destroy() instead of on_windowname_destroy()
271
            if widget is callback_obj:
272
                handler_names.append("on_%s" % sig)
273
274
            do_connect(item, sig, handler_names,
275
             callback_handler_dict, builder.connections)
276
277
    log_unconnected_functions(callback_handler_dict, builder.connections)
278
279
280
def do_connect(item, signal_name, handler_names,
281
        callback_handler_dict, connections):
282
    '''connect this signal to an unused handler'''
283
    widget_name, widget = item
284
285
    for handler_name in handler_names:
286
        target = handler_name in callback_handler_dict.keys()
287
        connection = (widget_name, signal_name, handler_name)
288
        duplicate = connection in connections
289
        if target and not duplicate:
290
            widget.connect(signal_name, callback_handler_dict[handler_name])
291
            connections.append(connection)
292
293
            logger.debug("connect builder by name '%s','%s', '%s'",
294
             widget_name, signal_name, handler_name)
295
296
297
def log_unconnected_functions(callback_handler_dict, connections):
298
    '''log functions like on_* that we could not connect'''
299
300
    connected_functions = [x[2] for x in connections]
301
302
    handler_names = callback_handler_dict.keys()
303
    unconnected = [x for x in handler_names if x.startswith('on_')]
304
305
    for handler_name in connected_functions:
306
        try:
307
            unconnected.remove(handler_name)
308
        except ValueError:
309
            pass
310
311
    for handler_name in unconnected:
312
        logger.debug("Not connected to builder '%s'", handler_name)

BIN
organiccode_lib/Builder.pyc


+ 53 - 0
organiccode_lib/PreferencesDialog.py

@ -0,0 +1,53 @@
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
2
### BEGIN LICENSE
3
# This file is in the public domain
4
### END LICENSE
5
6
### DO NOT EDIT THIS FILE ###
7
8
"""this dialog adjusts values in gsettings
9
"""
10
11
import logging
12
from gi.repository import Gtk # pylint: disable=E0611
13
from . helpers import get_builder, show_uri, get_help_uri
14
15
logger = logging.getLogger('organiccode_lib')
16
17
18
class PreferencesDialog(Gtk.Dialog):
19
    __gtype_name__ = "PreferencesDialog"
20
21
    def __new__(cls):
22
        """Special static method that's automatically called by Python when
23
        constructing a new instance of this class.
24
25
        Returns a fully instantiated PreferencesDialog object.
26
        """
27
        builder = get_builder('PreferencesOrganiccodeDialog')
28
        new_object = builder.get_object("preferences_organiccode_dialog")
29
        new_object.finish_initializing(builder)
30
        return new_object
31
32
    def finish_initializing(self, builder):
33
        """Called while initializing this instance in __new__
34
35
        finish_initalizing should be called after parsing the ui definition
36
        and creating a PreferencesDialog object with it in order to
37
        finish initializing the start of the new PerferencesOrganiccodeDialog
38
        instance.
39
40
        Put your initialization code in here and leave __init__ undefined.
41
        """
42
43
        # Get a reference to the builder and set up the signals.
44
        self.builder = builder
45
        self.ui = builder.get_ui(self, True)
46
47
        # code for other initialization actions should be added here
48
49
    def on_btn_close_clicked(self, widget, data=None):
50
        self.destroy()
51
52
    def on_btn_help_clicked(self, widget, data=None):
53
        show_uri(self, "ghelp:%s" % get_help_uri('preferences'))

BIN
organiccode_lib/PreferencesDialog.pyc


+ 118 - 0
organiccode_lib/Window.py

@ -0,0 +1,118 @@
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
2
### BEGIN LICENSE
3
# This file is in the public domain
4
### END LICENSE
5
6
### DO NOT EDIT THIS FILE ###
7
8
import logging
9
from gi.repository import Gio, Gtk # pylint: disable=E0611
10
from . helpers import get_builder, show_uri, get_help_uri
11
12
logger = logging.getLogger('organiccode_lib')
13
14
15
# This class is meant to be subclassed by OrganiccodeWindow.  It provides
16
# common functions and some boilerplate.
17
class Window(Gtk.Window):
18
    __gtype_name__ = "Window"
19
20
    # To construct a new instance of this method, the following notable
21
    # methods are called in this order:
22
    # __new__(cls)
23
    # __init__(self)
24
    # finish_initializing(self, builder)
25
    # __init__(self)
26
    #
27
    # For this reason, it's recommended you leave __init__ empty and put
28
    # your initialization code in finish_initializing
29
30
    def __new__(cls):
31
        """Special static method that's automatically called by Python when
32
        constructing a new instance of this class.
33
34
        Returns a fully instantiated BaseOrganiccodeWindow object.
35
        """
36
        builder = get_builder('OrganiccodeWindow')
37
        new_object = builder.get_object("organiccode_window")
38
        new_object.finish_initializing(builder)
39
        return new_object
40
41
    def finish_initializing(self, builder):
42
        """Called while initializing this instance in __new__
43
44
        finish_initializing should be called after parsing the UI definition
45
        and creating a OrganiccodeWindow object with it in order to finish
46
        initializing the start of the new OrganiccodeWindow instance.
47
        """
48
        # Get a reference to the builder and set up the signals.
49
        self.builder = builder
50
        self.ui = builder.get_ui(self, True)
51
        self.PreferencesDialog = None  # class
52
        self.preferences_dialog = None  # instance
53
        self.AboutDialog = None  # class
54
55
        self.settings = Gio.Settings("net.launchpad.organiccode")
56
        self.settings.connect('changed', self.on_preferences_changed)
57
58
        # Optional application indicator support
59
        # Run 'quickly add indicator' to get started.
60
        # More information:
61
        #  http://owaislone.org/quickly-add-indicator/
62
        #  https://wiki.ubuntu.com/DesktopExperienceTeam/ApplicationIndicators
63
        try:
64
            from organiccode import indicator
65
            # self is passed so methods of this class can be called from indicator.py
66
            # Comment this next line out to disable appindicator
67
            self.indicator = indicator.new_application_indicator(self)
68
        except ImportError:
69
            pass
70
71
    def on_mnu_contents_activate(self, widget, data=None):
72
        show_uri(self, "ghelp:%s" % get_help_uri())
73
74
    def on_mnu_about_activate(self, widget, data=None):
75
        """Display the about box for organiccode."""
76
        if self.AboutDialog is not None:
77
            about = self.AboutDialog()  # pylint: disable=E1102
78
            response = about.run()
79
            about.destroy()
80
81
    def on_mnu_preferences_activate(self, widget, data=None):
82
        """Display the preferences window for organiccode."""
83
84
        """ From the PyGTK Reference manual
85
           Say for example the preferences dialog is currently open,
86
           and the user chooses Preferences from the menu a second time;
87
           use the present() method to move the already-open dialog
88
           where the user can see it."""
89
        if self.preferences_dialog is not None:
90
            logger.debug('show existing preferences_dialog')
91
            self.preferences_dialog.present()
92
        elif self.PreferencesDialog is not None:
93
            logger.debug('create new preferences_dialog')
94
            self.preferences_dialog = self.PreferencesDialog()  # pylint: disable=E1102
95
            self.preferences_dialog.connect('destroy', self.on_preferences_dialog_destroyed)
96
            self.preferences_dialog.show()
97
        # destroy command moved into dialog to allow for a help button
98
99
    def on_mnu_close_activate(self, widget, data=None):
100
        """Signal handler for closing the OrganiccodeWindow."""
101
        self.destroy()
102
103
    def on_destroy(self, widget, data=None):
104
        """Called when the OrganiccodeWindow is closed."""
105
        # Clean up code for saving application state should be added here.
106
        Gtk.main_quit()
107
108
    def on_preferences_changed(self, settings, key, data=None):
109
        logger.debug('preference changed: %s = %s' % (key, str(settings.get_value(key))))
110
111
    def on_preferences_dialog_destroyed(self, widget, data=None):
112
        '''only affects gui
113
114
        logically there is no difference between the user closing,
115
        minimising or ignoring the preferences dialog'''
116
        logger.debug('on_preferences_dialog_destroyed')
117
        # to determine whether to create or present preferences_dialog
118
        self.preferences_dialog = None

BIN
organiccode_lib/Window.pyc


+ 13 - 0
organiccode_lib/__init__.py

@ -0,0 +1,13 @@
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
2
### BEGIN LICENSE
3
# This file is in the public domain
4
### END LICENSE
5
6
### DO NOT EDIT THIS FILE ###
7
8
'''facade - makes organiccode_lib package easy to refactor
9
10
while keeping its api constant'''
11
from . helpers import set_up_logging
12
from . Window import Window
13
from . organiccodeconfig import get_version

BIN
organiccode_lib/__init__.pyc


+ 100 - 0
organiccode_lib/helpers.py

@ -0,0 +1,100 @@
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
2
### BEGIN LICENSE
3
# This file is in the public domain
4
### END LICENSE
5
6
### DO NOT EDIT THIS FILE ###
7
8
"""Helpers for an Ubuntu application."""
9
import logging
10
import os
11
12
from . organiccodeconfig import get_data_file
13
from . Builder import Builder
14
15
from locale import gettext as _
16
17
def get_builder(builder_file_name):
18
    """Return a fully-instantiated Gtk.Builder instance from specified ui 
19
    file
20
    
21
    :param builder_file_name: The name of the builder file, without extension.
22
        Assumed to be in the 'ui' directory under the data path.
23
    """
24
    # Look for the ui file that describes the user interface.
25
    ui_filename = get_data_file('ui', '%s.ui' % (builder_file_name,))
26
    if not os.path.exists(ui_filename):
27
        ui_filename = None
28
29
    builder = Builder()
30
    builder.set_translation_domain('organiccode')
31
    builder.add_from_file(ui_filename)
32
    return builder
33
34
35
# Owais Lone : To get quick access to icons and stuff.
36
def get_media_file(media_file_name):
37
    media_filename = get_data_file('media', '%s' % (media_file_name,))
38
    if not os.path.exists(media_filename):
39
        media_filename = None
40
41
    return "file:///"+media_filename
42
43
class NullHandler(logging.Handler):
44
    def emit(self, record):
45
        pass
46
47
def set_up_logging(opts):
48
    # add a handler to prevent basicConfig
49
    root = logging.getLogger()
50
    null_handler = NullHandler()
51
    root.addHandler(null_handler)
52
53
    formatter = logging.Formatter("%(levelname)s:%(name)s: %(funcName)s() '%(message)s'")
54
55
    logger = logging.getLogger('organiccode')
56
    logger_sh = logging.StreamHandler()
57
    logger_sh.setFormatter(formatter)
58
    logger.addHandler(logger_sh)
59
60
    lib_logger = logging.getLogger('organiccode_lib')
61
    lib_logger_sh = logging.StreamHandler()
62
    lib_logger_sh.setFormatter(formatter)
63
    lib_logger.addHandler(lib_logger_sh)
64
65
    # Set the logging level to show debug messages.
66
    if opts.verbose:
67
        logger.setLevel(logging.DEBUG)
68
        logger.debug('logging enabled')
69
    if opts.verbose > 1:
70
        lib_logger.setLevel(logging.DEBUG)
71
72
def get_help_uri(page=None):
73
    # help_uri from source tree - default language
74
    here = os.path.dirname(__file__)
75
    help_uri = os.path.abspath(os.path.join(here, '..', 'help', 'C'))
76
77
    if not os.path.exists(help_uri):
78
        # installed so use gnome help tree - user's language
79
        help_uri = 'organiccode'
80
81
    # unspecified page is the index.page
82
    if page is not None:
83
        help_uri = '%s#%s' % (help_uri, page)
84
85
    return help_uri
86
87
def show_uri(parent, link):
88
    from gi.repository import Gtk # pylint: disable=E0611
89
    screen = parent.get_screen()
90
    Gtk.show_uri(screen, link, Gtk.get_current_event_time())
91
92
def alias(alternative_function_name):
93
    '''see http://www.drdobbs.com/web-development/184406073#l9'''
94
    def decorator(function):
95
        '''attach alternative_function_name(s) to function'''
96
        if not hasattr(function, 'aliases'):
97
            function.aliases = []
98
        function.aliases.append(alternative_function_name)
99
        return function
100
    return decorator

BIN
organiccode_lib/helpers.pyc


+ 58 - 0
organiccode_lib/organiccodeconfig.py

@ -0,0 +1,58 @@
1
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
2
### BEGIN LICENSE
3
# This file is in the public domain
4
### END LICENSE
5
6
### DO NOT EDIT THIS FILE ###
7
8
__all__ = [
9
    'project_path_not_found',
10
    'get_data_file',
11
    'get_data_path',
12
    ]
13
14
# Where your project will look for your data (for instance, images and ui
15
# files). By default, this is ../data, relative your trunk layout
16
__organiccode_data_directory__ = '../data/'
17
__license__ = ''
18
__version__ = 'VERSION'
19
20
import os
21
22
from locale import gettext as _
23
24
class project_path_not_found(Exception):
25
    """Raised when we can't find the project directory."""
26
27
28
def get_data_file(*path_segments):
29
    """Get the full path to a data file.
30
31
    Returns the path to a file underneath the data directory (as defined by
32
    `get_data_path`). Equivalent to os.path.join(get_data_path(),
33
    *path_segments).
34
    """
35
    return os.path.join(get_data_path(), *path_segments)
36
37
38
def get_data_path():
39
    """Retrieve organiccode data path
40
41
    This path is by default <organiccode_lib_path>/../data/ in trunk
42
    and /usr/share/organiccode in an installed version but this path
43
    is specified at installation time.
44
    """
45
46
    # Get pathname absolute or relative.
47
    path = os.path.join(
48
        os.path.dirname(__file__), __organiccode_data_directory__)
49
50
    abs_data_path = os.path.abspath(path)
51
    if not os.path.exists(abs_data_path):
52
        raise project_path_not_found
53
54
    return abs_data_path
55
56
57
def get_version():
58
    return __version__

BIN
organiccode_lib/organiccodeconfig.pyc


+ 138 - 0
setup.py

@ -0,0 +1,138 @@
1
#!/usr/bin/env python
2
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
3
### BEGIN LICENSE
4
# This file is in the public domain
5
### END LICENSE
6
7
###################### DO NOT TOUCH THIS (HEAD TO THE SECOND PART) ######################
8
9
import os
10
import sys
11
12
try:
13
    import DistUtilsExtra.auto
14
except ImportError:
15
    print >> sys.stderr, 'To build organiccode you need https://launchpad.net/python-distutils-extra'
16
    sys.exit(1)
17
assert DistUtilsExtra.auto.__version__ >= '2.18', 'needs DistUtilsExtra.auto >= 2.18'
18
19
20
def update_config(libdir, values={}):
21
22
    filename = os.path.join(libdir, 'organiccode_lib/organiccodeconfig.py')
23
    oldvalues = {}
24
    try:
25
        fin = file(filename, 'r')
26
        fout = file(filename + '.new', 'w')
27
28
        for line in fin:
29
            fields = line.split(' = ')  # Separate variable from value
30
            if fields[0] in values:
31
                oldvalues[fields[0]] = fields[1].strip()
32
                line = "%s = %s\n" % (fields[0], values[fields[0]])
33
            fout.write(line)
34
35
        fout.flush()
36
        fout.close()
37
        fin.close()
38
        os.rename(fout.name, fin.name)
39
    except (OSError, IOError):
40
        print ("ERROR: Can't find %s" % filename)
41
        sys.exit(1)
42
    return oldvalues
43
44
45
def move_desktop_file(root, target_data, prefix):
46
    # The desktop file is rightly installed into install_data.  But it should
47
    # always really be installed into prefix, because while we can install
48
    # normal data files anywhere we want, the desktop file needs to exist in
49
    # the main system to be found.  Only actually useful for /opt installs.
50
51
    old_desktop_path = os.path.normpath(root + target_data +
52
                                        '/share/applications')
53
    old_desktop_file = old_desktop_path + '/organiccode.desktop'
54
    desktop_path = os.path.normpath(root + prefix + '/share/applications')
55
    desktop_file = desktop_path + '/organiccode.desktop'
56
57
    if not os.path.exists(old_desktop_file):
58
        print ("ERROR: Can't find", old_desktop_file)
59
        sys.exit(1)
60
    elif target_data != prefix + '/':
61
        # This is an /opt install, so rename desktop file to use extras-
62
        desktop_file = desktop_path + '/extras-organiccode.desktop'
63
        try:
64
            os.makedirs(desktop_path)
65
            os.rename(old_desktop_file, desktop_file)
66
            os.rmdir(old_desktop_path)
67
        except OSError as e:
68
            print ("ERROR: Can't rename", old_desktop_file, ":", e)
69
            sys.exit(1)
70
71
    return desktop_file
72
73
74
def update_desktop_file(filename, target_pkgdata, target_scripts):
75
76
    try:
77
        fin = file(filename, 'r')
78
        fout = file(filename + '.new', 'w')
79
80
        for line in fin:
81
            if 'Icon=' in line:
82
                line = "Icon=%s\n" % (target_pkgdata + 'media/organiccode.svg')
83
            elif 'Exec=' in line:
84
                cmd = line.split("=")[1].split(None, 1)
85
                line = "Exec=%s" % (target_scripts + 'organiccode')
86
                if len(cmd) > 1:
87
                    line += " %s" % cmd[1].strip()  # Add script arguments back
88
                line += "\n"
89
            fout.write(line)
90
        fout.flush()
91
        fout.close()
92
        fin.close()
93
        os.rename(fout.name, fin.name)
94
    except (OSError, IOError):
95
        print ("ERROR: Can't find %s" % filename)
96
        sys.exit(1)
97
98
99
def compile_schemas(root, target_data):
100
    if target_data == '/usr/':
101
        return  # /usr paths don't need this, they will be handled by dpkg
102
    schemadir = os.path.normpath(root + target_data + 'share/glib-2.0/schemas')
103
    if (os.path.isdir(schemadir) and
104
            os.path.isfile('/usr/bin/glib-compile-schemas')):
105
        os.system('/usr/bin/glib-compile-schemas "%s"' % schemadir)
106
107
108
class InstallAndUpdateDataDirectory(DistUtilsExtra.auto.install_auto):
109
    def run(self):
110
        DistUtilsExtra.auto.install_auto.run(self)
111
112
        target_data = '/' + os.path.relpath(self.install_data, self.root) + '/'
113
        target_pkgdata = target_data + 'share/organiccode/'
114
        target_scripts = '/' + os.path.relpath(self.install_scripts, self.root) + '/'
115
116
        values = {'__organiccode_data_directory__': "'%s'" % (target_pkgdata),
117
                  '__version__': "'%s'" % self.distribution.get_version()}
118
        update_config(self.install_lib, values)
119
120
        desktop_file = move_desktop_file(self.root, target_data, self.prefix)
121
        update_desktop_file(desktop_file, target_pkgdata, target_scripts)
122
        compile_schemas(self.root, target_data)
123
124
##################################################################################
125
###################### YOU SHOULD MODIFY ONLY WHAT IS BELOW ######################
126
##################################################################################
127
128
DistUtilsExtra.auto.setup(
129
    name='organiccode',
130
    version='0.1',
131
    license='GPL-3',
132
    author='Bryan M. Allred',
133
    author_email='bryan.allred@gmail.com',
134
    description='UI for managing Gource',
135
    long_description='A simple front-end program designed to help create version control visualizations using Gource.',
136
    url='https://launchpad.net/organiccode',
137
    cmdclass={'install': InstallAndUpdateDataDirectory}
138
    )

+ 26 - 0
tests/test_example.py

@ -0,0 +1,26 @@
1
#!/usr/bin/python
2
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
3
### BEGIN LICENSE
4
# This file is in the public domain
5
### END LICENSE
6
7
import sys
8
import os.path
9
import unittest
10
sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__), "..")))
11
12
from organiccode import AboutOrganiccodeDialog
13
14
class TestExample(unittest.TestCase):
15
    def setUp(self):
16
        self.AboutOrganiccodeDialog_members = [
17
        'AboutDialog', 'AboutOrganiccodeDialog', 'gettext', 'logger', 'logging']
18
19
    def test_AboutOrganiccodeDialog_members(self):
20
        all_members = dir(AboutOrganiccodeDialog)
21
        public_members = [x for x in all_members if not x.startswith('_')]
22
        public_members.sort()
23
        self.assertEqual(self.AboutOrganiccodeDialog_members, public_members)
24
25
if __name__ == '__main__':    
26
    unittest.main()

+ 30 - 0
tests/test_lint.py

@ -0,0 +1,30 @@
1
#!/usr/bin/python
2
# -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*-
3
### BEGIN LICENSE
4
# This file is in the public domain
5
### END LICENSE
6
7
import unittest
8
import subprocess
9
10
class TestPylint(unittest.TestCase):
11
    def test_project_errors_only(self):
12
        '''run pylint in error only mode
13
        
14
        your code may well work even with pylint errors
15
        but have some unusual code'''
16
        return_code = subprocess.call(["pylint", '-E', 'organiccode'])
17
        # not needed because nosetests displays pylint console output
18
        #self.assertEqual(return_code, 0)
19
20
    # un-comment the following for loads of diagnostics   
21
    #~ def test_project_full_report(self):
22
        #~ '''Only for the brave
23
#~ 
24
        #~ you will have to make judgement calls about your code standards
25
        #~ that differ from the norm'''
26
        #~ return_code = subprocess.call(["pylint", 'organiccode'])
27
28
if __name__ == '__main__':
29
    'you will get better results with nosetests'
30
    unittest.main()