home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / applications / wp / gedproject.lha / Project.readme < prev   
Encoding:
Text File  |  1995-01-23  |  3.3 KB  |  87 lines

  1.    Project.ged
  2.    ~~~~~~~~~~~
  3.        Save windowpositions, cursorpositions and filenames.
  4.  
  5.    Installation:
  6.    ~~~~~~~~~~~~~
  7.        Make three new menu entries. Set the command type to ARexx.
  8.        New Project:    Cmd:    GoldEd:arexx/project.ged new
  9.        Open Project:   Cmd:    GoldEd:arexx/project.ged open
  10.        Close Project:  Cmd:    GoldEd:arexx/project.ged close
  11.  
  12.       Commands:
  13.            NEW   - Add a new project.
  14.                Request projectdirectory and projectname.
  15.                The user specific code in this script should set
  16.                up a direktory at "projectdirektory" with the name "projectname".
  17.                It should copy defaultfiles for your work in this direktory.
  18.  
  19.            OPEN  - Opens a existing project.
  20.                It requests the PROJECT-file in your project's direktory.
  21.                After this it will open all files and it reads all important
  22.                files in this directory into the Project-requester form GoldEd.
  23.                You may modify this readprocess to use e.g. Modula or Pascal.
  24.  
  25.            CLOSE - Close the current project.
  26.                Every time you open or add a new project you have to close it.
  27.                All important parameter will be saved.
  28.  
  29.    Usage:
  30.    ~~~~~~
  31.        1. Opening a new project:
  32.            Every time you want to start a new project, you have to
  33.            open a NEW PROJECT with this script.
  34.            After you have started the script via
  35.  
  36.                    Golded:arexx/project.ged new
  37.  
  38.            you will be asked for the projects home.
  39.            Select a directory (e.g. RAM:). Then you can enter the name
  40.            of your new project (e.g. TEST). The script will
  41.            make a new directory. The name will be RAM:TEST.
  42.            After that it changes the editors directory to this.
  43.  
  44.        2. Closing a project:
  45.            If you have opened a new or an existing project and you
  46.            stop working at this day, you have to close this project via
  47.  
  48.                    Golded:arexx/project.ged close
  49.  
  50.            The script will save the position and file of each opened
  51.            window (ATTENTION: Freezed windows will not be saved!!!).
  52.  
  53.        3. Opening an exsiting project:
  54.            If you want to start working the next day, you have to open
  55.            the project via
  56.  
  57.                    Golded:arexx/project.ged open
  58.  
  59.            You will be asked for the PROJECT-file of the project. It
  60.            can be found in the projects directory. In this case:
  61.            RAM:TEST/PROJECT.
  62.            Select this file via the upcoming filerequester.
  63.            The script changes the editors directory to the selected.
  64.            Then it reads the PROJECT-file and opens all windows at it's
  65.            old positions.
  66.            After that all files (pattern!!) in this directory will be
  67.            inserted in GoldEds Project-Requester.
  68.  
  69.  
  70. ==============================================================================
  71.  
  72.     This is only a little hack and no well-thought script!!!!
  73.     You may use it at your own risc!!!
  74.  
  75.     Bugs & suggestions to
  76.         engelbert.roidl@extern.uni-regensburg.de
  77.  
  78.         Engelbert Roidl
  79.         Max-Reger-Str. 8
  80.         92442 Wackersdorf / Germany :-)
  81.  
  82.     If you want a GoldEd-Option to use Command-Coloring like Borland-C++
  83.     please mail me. I will try to convince Dietmar!! :-)
  84.  
  85.  
  86.  
  87.