Improving STON exporting, as recomended by Sven.

This commit is contained in:
Offray Vladimir Luna Cárdenas 2017-05-26 08:51:57 +00:00
parent 41a739487e
commit f3335e4bb9
2 changed files with 5 additions and 21 deletions

View File

@ -265,19 +265,6 @@ GrafoscopioBrowser >> exportAsPdf [
http://xetex.sourceforge.net/' ].
]
{ #category : #persistence }
GrafoscopioBrowser >> exportAsSton: aTree on: locator [
| stonPrettyString |
aTree flatten.
stonPrettyString := String streamContents: [ :stream |
(STON writer on: stream)
newLine: String crlf;
prettyPrint: true;
keepNewLines: true;
nextPut: aTree children].
locator nextPutAll: stonPrettyString
]
{ #category : #'graphical interface' }
GrafoscopioBrowser >> headerOn: constructor [
"Shows the body of a selected node"

View File

@ -192,15 +192,12 @@ GrafoscopioNotebook >> exportAsPDF [
{ #category : #persistence }
GrafoscopioNotebook >> exportAsSton: aNotebook on: aFileStream [
| stonPrettyString |
aNotebook flatten.
stonPrettyString := String streamContents: [ :stream |
(STON writer on: stream)
newLine: String crlf;
prettyPrint: true;
keepNewLines: true;
nextPut: aNotebook children].
aFileStream nextPutAll: stonPrettyString
(STON writer on: aFileStream)
newLine: String crlf;
prettyPrint: true;
keepNewLines: true;
nextPut: aNotebook children
]
{ #category : #persistence }