Not all outputs are stored by default.
This commit is contained in:
parent
ebeb8acfcb
commit
40a8a58e70
@ -702,6 +702,12 @@ GrafoscopioNode >> preorderTraversal [
|
|||||||
^ nodesInPreorder.
|
^ nodesInPreorder.
|
||||||
]
|
]
|
||||||
|
|
||||||
|
{ #category : #'as yet unclassified' }
|
||||||
|
GrafoscopioNode >> processOutput [
|
||||||
|
(self headerStartsWith: '%output')
|
||||||
|
ifTrue: [ self output: (Compiler evaluate: self body) ]
|
||||||
|
]
|
||||||
|
|
||||||
{ #category : #movement }
|
{ #category : #movement }
|
||||||
GrafoscopioNode >> promote [
|
GrafoscopioNode >> promote [
|
||||||
"Moves the current node up in the hierachy, making it a slibing of its current parent"
|
"Moves the current node up in the hierachy, making it a slibing of its current parent"
|
||||||
|
@ -66,7 +66,7 @@ GrafoscopioNotebook >> autoSaveBodyOf: aNode [
|
|||||||
onChangeOfPort: #text
|
onChangeOfPort: #text
|
||||||
act: [ :x | aNode body: x entity value content ];
|
act: [ :x | aNode body: x entity value content ];
|
||||||
onChangeOfPort: #activePresentation
|
onChangeOfPort: #activePresentation
|
||||||
act: [ aNode output: (Compiler evaluate: aNode body) ]
|
act: [ aNode output: aNode processOutput ]
|
||||||
]
|
]
|
||||||
|
|
||||||
{ #category : #accessing }
|
{ #category : #accessing }
|
||||||
|
Loading…
Reference in New Issue
Block a user