Show
Ignore:
Timestamp:
02/18/07 20:40:28 (2 years ago)
Author:
arjanmol
Message:

renamed undomanager.undoable to transactional. added misc.partial

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gaphor/trunk/doc/gaphor.txt

    r173 r1132  
    22~~~~~~ 
    33 
    4 Gaphor is a UML CASE tool aiming for symplicity. It is written in Python and 
    5 C. The goal is to write as much as possible in Python (easy scriptable for 
    6 code generators) and only some elementary parts are written in C (this involves 
    7 mainly the graphical items). 
     4Gaphor is a UML CASE tool aiming for symplicity. It is written in Python. 
     5The goal is to write as much as possible in Python (easy scriptable for 
     6code generators). 
    87 
    98So here's what has to be created: 
     
    4039~~~~~~~~~~~~~~~ 
    4140Of course we need something to draw. The items that are to be placed on the 
    42 diagrams need to be created. Since graphical stuff can take up a lot of time 
    43 I think it is wise to create those things in C, instead of Python. 
    44 We will however create hooks for the graphical items, so we can at least move 
    45 them around and place them on a diagram from within Python. 
     41diagrams need to be created. 
    4642 
    4743