Windows Preliminar support for Pandoc exportation.
This commit is contained in:
parent
a2aa7b546d
commit
34447e2ae4
@ -212,7 +212,11 @@ GrafoscopioBrowser >> configureSettings [
|
|||||||
fossil := (FileSystem disk workingDirectory / 'Platform' / 'Linux' / 'Programs' / 'Fossil' / 'fossil') fullName.
|
fossil := (FileSystem disk workingDirectory / 'Platform' / 'Linux' / 'Programs' / 'Fossil' / 'fossil') fullName.
|
||||||
pandoc := (FileSystem disk workingDirectory / 'Platform' / 'Linux' / 'Programs' / 'Pandoc' / 'pandoc') fullName.
|
pandoc := (FileSystem disk workingDirectory / 'Platform' / 'Linux' / 'Programs' / 'Pandoc' / 'pandoc') fullName.
|
||||||
].
|
].
|
||||||
localRepository := (FileSystem disk workingDirectory / 'Grafoscopio' / 'Projects' / 'SoftwareLibre-Educacion' / 'soliedu.fossil')..
|
Smalltalk platform name = 'Win32'
|
||||||
|
ifTrue: [
|
||||||
|
fossil := (FileSystem disk workingDirectory / 'Platform' / 'Windows' / 'Programs' / 'Fossil' / 'fossil.exe') fullName.
|
||||||
|
pandoc := (FileSystem disk workingDirectory / 'Platform' / 'Windows' / 'Programs' / 'Pandoc' / 'pandoc.exe') fullName. ].
|
||||||
|
localRepository := (FileSystem disk workingDirectory / 'Grafoscopio' / 'Projects' / 'SoftwareLibre-Educacion' / 'soliedu.fossil').
|
||||||
remoteRepository := 'http://mutabit.com/deltas/repos.fossil/soliedu'.
|
remoteRepository := 'http://mutabit.com/deltas/repos.fossil/soliedu'.
|
||||||
]
|
]
|
||||||
|
|
||||||
@ -253,7 +257,11 @@ GrafoscopioBrowser >> exportAsHtml [
|
|||||||
| markdownFileLocation htmlFileLocation |
|
| markdownFileLocation htmlFileLocation |
|
||||||
markdownFileLocation := ((workingFile parent) / workingFile basenameWithoutExtension) fullName, '.markdown'.
|
markdownFileLocation := ((workingFile parent) / workingFile basenameWithoutExtension) fullName, '.markdown'.
|
||||||
htmlFileLocation := ((workingFile parent) / workingFile basenameWithoutExtension) fullName, '.html'.
|
htmlFileLocation := ((workingFile parent) / workingFile basenameWithoutExtension) fullName, '.html'.
|
||||||
OSProcess command: 'exec ', pandoc, ' ', markdownFileLocation , ' --standalone -o ' , htmlFileLocation.
|
Smalltalk platform name = 'unix'
|
||||||
|
ifTrue: [ OSProcess command: 'exec ', pandoc, ' ', markdownFileLocation , ' --standalone -o ' , htmlFileLocation ].
|
||||||
|
Smalltalk platform name = 'Win32'
|
||||||
|
ifTrue: [ OSProcess command: pandoc, ' ', markdownFileLocation , ' --standalone -o ' , htmlFileLocation ].
|
||||||
|
|
||||||
self customKeys.
|
self customKeys.
|
||||||
self inform: 'Archivo exportado como html'.
|
self inform: 'Archivo exportado como html'.
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user