How to get compact printout of code for (old fashioned) offline reading ?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

How to get compact printout of code for (old fashioned) offline reading ?

Sophie424
I tried a fileout, but it's syntax is full of repetitive stuff and therefore
bulky. What other options do I have? Plain text would be fine, syntax
coloring fonts etc. not essential. Something loosely like this would be
great

WADictionaryRoot subclass: #StMagmaDatabase
    instanceVariableNames: ''
    classVariableNames: ''
    poolDictionaries: ''
    category: 'STTutTodoApp'

StSession-#initialize
    super initialize.
    self db: (self magma rootAs: StMagmaDatabase)

Thanks - Sophie




Reply | Threaded
Open this post in threaded view
|

Re: How to get compact printout of code for (old fashioned) offline reading ?

Damien Cassou-3
Hi Sophie,

have a look at http://www.squeaksource.com/FileOutClasses and
http://www.squeaksource.com/SmallAutoDoc. Feel free to improve these
tools and commit directly to squeaksource.

Ask me if you have any question.

2007/12/15, itsme213 <[hidden email]>:

> I tried a fileout, but it's syntax is full of repetitive stuff and therefore
> bulky. What other options do I have? Plain text would be fine, syntax
> coloring fonts etc. not essential. Something loosely like this would be
> great
>
> WADictionaryRoot subclass: #StMagmaDatabase
>     instanceVariableNames: ''
>     classVariableNames: ''
>     poolDictionaries: ''
>     category: 'STTutTodoApp'
>
> StSession-#initialize
>     super initialize.
>     self db: (self magma rootAs: StMagmaDatabase)
>
> Thanks - Sophie
>
>
>
>
>


--
Damien Cassou