Changes between Version 32 and Version 33 of macros


Ignore:
Timestamp:
03/31/2011 09:54:54 AM (13 years ago)
Author:
marcel.taeumel
Comment:

Added copy&paste installation code to "How to Install" and shortened that section slightly

Legend:

Unmodified
Added
Removed
Modified
  • macros

    v32 v33  
    3131}}}
    3232
    33 You can install the macro system
     33Using Metacello, just run the following code in your workspace:
    3434
    35  * either by loading the Metacello configuration (`ConfigurationOfMacros`)
    36  * or by loading the `CTM` package (''CTM'' stands for ''compile-time metaprogramming'') and a subsequent `CTMEventListener instance register.`.
     35{{{
     36(Installer mc http: 'http://www.hpi.uni-potsdam.de/hirschfeld/squeaksource/')
     37   project: 'MetacelloRepository';
     38   install: 'ConfigurationOfMacros'.
     39ConfigurationOfMacros load.
     40}}}
     41
     42You can install the project into your image manually by loading the `CTM` package via Monticello followed by a do-it of `CTMEventListener instance register.`.  ''CTM'' stands for ''compile-time metaprogramming''.
    3743
    3844If you also want !OmniBrowser support, load the `CTMOB` package, too.
     
    4046You can find the following categories in the packages:
    4147
    42  `CTM-Core`::
    43     core implemenation including the event listener
    44  `CTM-Operations`::
    45     supported operations, currently those for methods
    46  `CTM-Tests`::
    47     some basic tests, all should pass
    48  `CTM-Examples`::
    49     basic macros, see the class documentation of each for details
     48 `CTM-Core` ... core implemenation including the event listener[[br]]
     49 `CTM-Operations` ... supported operations, currently those for methods[[br]]
     50 `CTM-Tests` ... some basic tests, all should pass[[br]]
     51 `CTM-Examples` ... basic macros, see the class documentation of each for details[[br]]
    5052
    51  `CTMOB`::
    52     !OmniBrowser support
    53 
     53 `CTMOB` ... !OmniBrowser support
    5454
    5555{{{