Modifying export overview LaTex and nitter user id for deleted users.
This commit is contained in:
parent
7a7058f30c
commit
9544a92392
@ -1,11 +1,5 @@
|
|||||||
accessing
|
accessing
|
||||||
exportOverviewReportLatex
|
exportOverviewReportLatex
|
||||||
|
|
||||||
self
|
self exportOverviewReportLatexWithBars: 9.
|
||||||
exportDefaultReport;
|
|
||||||
externalWordCloud;
|
|
||||||
exportTweetsHistogramWithBars: 7;
|
|
||||||
exportRetweetsHistogramWithBars: 7;
|
|
||||||
exportRepliesHistogramWithBars: 7;
|
|
||||||
exportQuotesHistogramWithBars: 7.
|
|
||||||
^ self folder
|
^ self folder
|
@ -0,0 +1,11 @@
|
|||||||
|
accessing
|
||||||
|
exportOverviewReportLatexWithBars: anInteger
|
||||||
|
|
||||||
|
self
|
||||||
|
exportDefaultReport;
|
||||||
|
externalWordCloud;
|
||||||
|
exportTweetsHistogramWithBars: anInteger;
|
||||||
|
exportRetweetsHistogramWithBars: anInteger;
|
||||||
|
exportRepliesHistogramWithBars: anInteger;
|
||||||
|
exportQuotesHistogramWithBars: anInteger.
|
||||||
|
^ self folder
|
@ -1,3 +1,7 @@
|
|||||||
accessing
|
accessing
|
||||||
id
|
id
|
||||||
^ id ifNil: [ id := (self profileImageUrl asUrl segments select: [ :each | each isAllDigits ]) first.]
|
^ id ifNil: [
|
||||||
|
self profileImageUrl
|
||||||
|
ifNil: [ id := 0 ]
|
||||||
|
ifNotNil: [ id := (self profileImageUrl asUrl segments select: [ :each | each isAllDigits ]) first. ]
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user