9 lines
224 B
Smalltalk
9 lines
224 B
Smalltalk
accessing
|
|
options
|
|
"Return the configuration options or define a default if they are not given"
|
|
^ options ifNil: [
|
|
options := Dictionary new
|
|
at: 'caching' put: true;
|
|
at: 'pagesPerRequest' put: '1';
|
|
yourself
|
|
] |