Changeset 271
- Timestamp:
- 04/12/04 22:51:00 (5 years ago)
- Files:
-
- trunk/gaphor/ChangeLog (modified) (1 diff)
- trunk/gaphor/MANIFEST.in (modified) (2 diffs)
- trunk/gaphor/README (modified) (1 diff)
- trunk/gaphor/gaphor/diagram/__init__.py (modified) (1 diff)
- trunk/gaphor/gaphor/diagram/actions.py (modified) (1 diff)
- trunk/gaphor/gaphor/ui/mainwindow.py (modified) (3 diffs)
- trunk/homepage/images/shot1.png (modified) (previous)
- trunk/homepage/images/shot1a.png (modified) (previous)
- trunk/homepage/images/shot2.png (modified) (previous)
- trunk/homepage/index.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/gaphor/ChangeLog
r257 r271 1 2004-04-13 Arjan Molenaar <arjanmolenaar@hetnet.nl> 2 3 RELEASE 0.3.0 4 5 * Several small changes 6 1 7 2004-03-26 Arjan Molenaar <arjanmolenaar@hetnet.nl> 2 8 trunk/gaphor/MANIFEST.in
r263 r271 1 include COPYING NEWS README TODO AUTHORS run1 include COPYING INSTALL NEWS README TODO AUTHORS run-gaphor.sh 2 2 include bin/gaphor 3 3 recursive-include doc usecases.txt ui-design.txt diagram-in-python.txt … … 7 7 include gaphor/UML/uml2.override 8 8 recursive-include po gaphor.pot *.po 9 recursive-include data *.png9 recursive-include data/pixmaps *24.png diagram16.png 10 10 recursive-include tests *.py *.sh 11 11 recursive-include utils *.py trunk/gaphor/README
r263 r271 8 8 very easy to extend (and to write ;-). 9 9 10 To get started do the following things: 11 - Get pygtk and gnome-python (the latest versions) 12 - Compile and install pygtk and gnome-python. 13 (If you installed a packaged version of PyGTK (such as RPM's or .deb files) 14 make sure you install the development packages too.) 15 - Get DiaCanvas2 and install it. If PyGTK is installed properly, it should 16 be automatically detected by DiaCanvas2's configure script. 17 - do 'python setup.py config' to check if every thing is okay. 18 - Launch gaphor using the 'run' shell script. 10 In the file 'INSTALL' you'll find information about how to get this thing 11 started. 19 12 20 13 Have fun, trunk/gaphor/gaphor/diagram/__init__.py
r262 r271 64 64 from generalization import GeneralizationItem 65 65 from association import AssociationItem 66 #from state import StateItem 66 67 #import diagramitemactions 67 68 import itemactions trunk/gaphor/gaphor/diagram/actions.py
r263 r271 146 146 147 147 148 #class StatePlacementAction(PlacementAction): 149 # id = 'InsertState' 150 # label = 'State' 151 # tooltip = 'Create a new State node' 152 # stock_id = 'gaphor-comment-line' 153 # name = 'State' 154 # type = diagram.StateItem 155 # 156 #register_action(StatePlacementAction) 157 158 148 159 class CommentPlacementAction(PlacementAction): 149 160 id = 'InsertComment' trunk/gaphor/gaphor/ui/mainwindow.py
r265 r271 19 19 'FileSave', 20 20 'FileSaveAs', 21 'separator', 22 '_Export', ( 23 'FileExportSVG',), 21 24 'separator', 22 25 'FileCloseTab', … … 39 42 'ShowGrid', 40 43 'separator', 41 'CreateDiagram', 42 'separator', 43 'FileExportSVG'), 44 'CreateDiagram'), 44 45 '_Window', ( 45 46 'OpenEditorWindow', … … 49 50 ) 50 51 51 toolbar = ('FileNew', 52 'FileOpen', 52 toolbar = ('FileOpen', 53 53 'separator', 54 54 'FileSave', 55 'FileSaveAs') 55 'FileSaveAs', 56 'separator', 57 'EditUndo', 58 'EditRedo', 59 'separator', 60 'ViewZoomIn', 61 'ViewZoomOut', 62 'ViewZoom100') 56 63 57 64 wrapbox = ('Pointer', trunk/homepage/index.php
r239 r271 6 6 <?php $topdir = "."; include "func.php"; ?> 7 7 8 <?php head(); ?> 8 <?php head(); 9 10 /* Save images with a 5x5 drop shadow, blur radius 10. 11 */ 12 ?> 9 13 10 14 </head> … … 14 18 15 19 <div id="main"> 16 <img src="images/shot1a.png" alt=" "/>20 <img src="images/shot1a.png" alt="This is what Gaphor looks like"/> 17 21 <div class="leftcontent"> 18 22 <h1>What is Gaphor</h1> 19 <p>Gaphor is an an attempt to create aneasy to use modeling environment.23 <p>Gaphor is an easy to use modeling environment. 20 24 This means that you are able to create nice 21 25 UML diagrams for documentation and to assist you with design decisions.
