Changeset 271

Show
Ignore:
Timestamp:
04/12/04 22:51:00 (5 years ago)
Author:
arjanmol
Message:

*** empty log message ***

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/gaphor/ChangeLog

    r257 r271  
     12004-04-13  Arjan Molenaar  <arjanmolenaar@hetnet.nl> 
     2 
     3        RELEASE 0.3.0 
     4 
     5        * Several small changes 
     6 
    172004-03-26  Arjan Molenaar  <arjanmolenaar@hetnet.nl> 
    28 
  • trunk/gaphor/MANIFEST.in

    r263 r271  
    1 include COPYING NEWS README TODO AUTHORS run 
     1include COPYING INSTALL NEWS README TODO AUTHORS run-gaphor.sh 
    22include bin/gaphor 
    33recursive-include doc usecases.txt ui-design.txt diagram-in-python.txt 
     
    77include gaphor/UML/uml2.override 
    88recursive-include po gaphor.pot *.po  
    9 recursive-include data *.png 
     9recursive-include data/pixmaps *24.png diagram16.png 
    1010recursive-include tests *.py *.sh 
    1111recursive-include utils *.py 
  • trunk/gaphor/README

    r263 r271  
    88very easy to extend (and to write ;-). 
    99 
    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. 
     10In the file 'INSTALL' you'll find information about how to get this thing 
     11started. 
    1912 
    2013Have fun, 
  • trunk/gaphor/gaphor/diagram/__init__.py

    r262 r271  
    6464from generalization import GeneralizationItem 
    6565from association import AssociationItem 
     66#from state import StateItem 
    6667#import diagramitemactions 
    6768import itemactions 
  • trunk/gaphor/gaphor/diagram/actions.py

    r263 r271  
    146146 
    147147 
     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 
    148159class CommentPlacementAction(PlacementAction): 
    149160    id = 'InsertComment' 
  • trunk/gaphor/gaphor/ui/mainwindow.py

    r265 r271  
    1919                'FileSave', 
    2020                'FileSaveAs', 
     21                'separator', 
     22                '_Export', ( 
     23                    'FileExportSVG',), 
    2124                'separator', 
    2225                'FileCloseTab', 
     
    3942                'ShowGrid', 
    4043                'separator', 
    41                 'CreateDiagram', 
    42                 'separator', 
    43                 'FileExportSVG'), 
     44                'CreateDiagram'), 
    4445            '_Window', ( 
    4546                'OpenEditorWindow', 
     
    4950            ) 
    5051 
    51     toolbar =  ('FileNew', 
    52                 'FileOpen', 
     52    toolbar =  ('FileOpen', 
    5353                'separator', 
    5454                'FileSave', 
    55                 'FileSaveAs') 
     55                'FileSaveAs', 
     56                'separator', 
     57                'EditUndo', 
     58                'EditRedo', 
     59                'separator', 
     60                'ViewZoomIn', 
     61                'ViewZoomOut', 
     62                'ViewZoom100') 
    5663 
    5764    wrapbox =  ('Pointer', 
  • trunk/homepage/index.php

    r239 r271  
    66<?php $topdir = "."; include "func.php"; ?> 
    77 
    8 <?php head(); ?> 
     8<?php head();  
     9 
     10/* Save images with a 5x5 drop shadow, blur radius 10. 
     11 */ 
     12?> 
    913 
    1014</head> 
     
    1418 
    1519  <div id="main"> 
    16     <img src="images/shot1a.png" alt=""/> 
     20    <img src="images/shot1a.png" alt="This is what Gaphor looks like"/> 
    1721    <div class="leftcontent"> 
    1822       <h1>What is Gaphor</h1> 
    19        <p>Gaphor is an an attempt to create an easy to use modeling environment. 
     23       <p>Gaphor is an easy to use modeling environment. 
    2024       This means that you are able to create nice 
    2125       UML diagrams for documentation and to assist you with design decisions.