Minor fixes before testing

This commit is contained in:
Offray Vladimir Luna Cárdenas 2024-07-31 15:04:29 -05:00
parent 1d452d767d
commit cc865a6b29

View File

@ -230,14 +230,14 @@ TiddlyWiki >> downloadHTML [
{ #category : #accessing }
TiddlyWiki >> downloadLink: v into: subfolder [
| filePath fileName semiFilePath |
| filePath fileName |
fileName := v asUrl segments last.
filePath := subfolder / fileName.
GtSubprocessWithInMemoryOutput new
shellCommand: 'curl -L -# ' , v , ' -o ' , filePath;
shellCommand: 'curl -L -# ' , v asString, ' -o ' , filePath fullName;
runAndWait;
stdout.
^ semiFilePath
^ filePath
]
{ #category : #accessing }
@ -568,6 +568,7 @@ TiddlyWiki >> isInTiddlyHost [
{ #category : #accessing }
TiddlyWiki >> jsonCache [
self downloadLink: self tiddlersJSONUrl into: self folder.
^ (self folder / 'tiddlers.json') contents
]
{ #category : #accessing }