Fixing NitterUser asDictonary for export with template.
This commit is contained in:
parent
d66cc2a62c
commit
292cb444b4
@ -1,4 +1,4 @@
|
||||
accessing
|
||||
downloadProfileImage
|
||||
|
||||
self exportProfileImageOn: self folder / self userName, '.jpg'
|
||||
^ self exportProfileImageOn: self folder / self userName, 'jpg'
|
@ -7,6 +7,5 @@ exportProfileImageOn: fileReference
|
||||
file exists ifFalse: [ file ensureCreateFile ].
|
||||
file binaryWriteStreamDo: [ :stream |
|
||||
stream nextPutAll: profileImageUrl retrieveContents ].
|
||||
profileImageFile := file.
|
||||
super class inform: 'Exported as: ', String cr, file fullName.
|
||||
^ file
|
@ -1,9 +1,7 @@
|
||||
accessing
|
||||
exportWithTemplate: mustacheFile On: folder
|
||||
|
||||
| mustacheDoc |
|
||||
self exportProfileImageOn:folder / userName, '-profileImage.jpg'.
|
||||
mustacheDoc := mustacheFile asMustacheTemplate value: self asDictionary.
|
||||
MarkupFile
|
||||
exportAsFileOn: (folder / self userName , 'tex')
|
||||
containing: mustacheDoc
|
||||
containing:(mustacheFile asMustacheTemplate value:
|
||||
self asDictionary)
|
@ -14,7 +14,7 @@ externalWordCloud
|
||||
'--background' . 'white' .
|
||||
'--mode' . 'RGBA' .
|
||||
'--stopwords' . 'stopwords-es.txt' .
|
||||
'--mask' . 'nube-mascara.jpg'};
|
||||
'--mask' . '../commons/nube-mascara.jpg'};
|
||||
workingDirectory: self folder fullName;
|
||||
redirectStdout;
|
||||
redirectStderr;
|
||||
|
@ -1,4 +1,4 @@
|
||||
accessing
|
||||
profileBio
|
||||
|
||||
^ profileBio := (self documentTree xpath: '/html/body/div/div/div[2]/div[1]/div[2]/div[1]') stringValue
|
||||
^ profileBio ifNil: [ profileBio := (self documentTree xpath: '/html/body/div/div/div[2]/div[1]/div[2]/div[1]') stringValue]
|
@ -0,0 +1,7 @@
|
||||
accessing
|
||||
profileImageFile
|
||||
|
||||
| file |
|
||||
file := (self folder / self userName, 'jpg').
|
||||
file exists ifTrue: [ ^ file ].
|
||||
^ self downloadProfileImage
|
@ -1,3 +0,0 @@
|
||||
accessing
|
||||
profileImageFile
|
||||
^ profileImageFile
|
@ -16,7 +16,6 @@
|
||||
"createdAt",
|
||||
"groups",
|
||||
"url",
|
||||
"profileImageFile",
|
||||
"profileBio"
|
||||
],
|
||||
"name" : "TwitterUser",
|
||||
|
Loading…
Reference in New Issue
Block a user