mirror of https://gitlab.com/bashrc2/epicyon
Separators for shell browser
parent
d2633867a3
commit
9496db2bf3
|
@ -524,40 +524,57 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
|
||||||
tlStr += \
|
tlStr += \
|
||||||
' <input type="submit" title="' + \
|
' <input type="submit" title="' + \
|
||||||
translate['Information about current blocks/suspensions'] + \
|
translate['Information about current blocks/suspensions'] + \
|
||||||
'" name="submitInfo" value="' + translate['Info'] + '">\n'
|
'" alt="' + \
|
||||||
|
translate['Information about current blocks/suspensions'] + \
|
||||||
|
' | " ' + \
|
||||||
|
'name="submitInfo" value="' + translate['Info'] + '">\n'
|
||||||
tlStr += \
|
tlStr += \
|
||||||
' <input type="submit" title="' + \
|
' <input type="submit" title="' + \
|
||||||
translate['Remove the above item'] + \
|
translate['Remove the above item'] + '"' + \
|
||||||
'" name="submitRemove" value="' + \
|
'alt="' + translate['Remove the above item'] + ' | " ' + \
|
||||||
|
'name="submitRemove" value="' + \
|
||||||
translate['Remove'] + '">\n'
|
translate['Remove'] + '">\n'
|
||||||
|
|
||||||
tlStr += \
|
tlStr += \
|
||||||
' <input type="submit" title="' + \
|
' <input type="submit" title="' + \
|
||||||
translate['Suspend the above account nickname'] + \
|
translate['Suspend the above account nickname'] + '" ' + \
|
||||||
'" name="submitSuspend" value="' + translate['Suspend'] + '">\n'
|
'alt="' + \
|
||||||
|
translate['Suspend the above account nickname'] + ' | " ' + \
|
||||||
|
'name="submitSuspend" value="' + translate['Suspend'] + '">\n'
|
||||||
tlStr += \
|
tlStr += \
|
||||||
' <input type="submit" title="' + \
|
' <input type="submit" title="' + \
|
||||||
|
translate['Remove a suspension for an account nickname'] + '"' + \
|
||||||
|
'alt="' + \
|
||||||
translate['Remove a suspension for an account nickname'] + \
|
translate['Remove a suspension for an account nickname'] + \
|
||||||
'" name="submitUnsuspend" value="' + \
|
' | " ' + \
|
||||||
|
'name="submitUnsuspend" value="' + \
|
||||||
translate['Unsuspend'] + '">\n'
|
translate['Unsuspend'] + '">\n'
|
||||||
|
|
||||||
tlStr += \
|
tlStr += \
|
||||||
' <input type="submit" title="' + \
|
' <input type="submit" title="' + \
|
||||||
translate['Block an account on another instance'] + \
|
translate['Block an account on another instance'] + '" ' + \
|
||||||
'" name="submitBlock" value="' + translate['Block'] + '">\n'
|
'alt="' + \
|
||||||
|
translate['Block an account on another instance'] + ' | " ' + \
|
||||||
|
'name="submitBlock" value="' + translate['Block'] + '">\n'
|
||||||
tlStr += \
|
tlStr += \
|
||||||
' <input type="submit" title="' + \
|
' <input type="submit" title="' + \
|
||||||
translate['Unblock an account on another instance'] + \
|
translate['Unblock an account on another instance'] + '" ' + \
|
||||||
'" name="submitUnblock" value="' + translate['Unblock'] + '">\n'
|
'alt="' + \
|
||||||
|
translate['Unblock an account on another instance'] + ' | " ' + \
|
||||||
|
'name="submitUnblock" value="' + translate['Unblock'] + '">\n'
|
||||||
|
|
||||||
tlStr += \
|
tlStr += \
|
||||||
' <input type="submit" title="' + \
|
' <input type="submit" title="' + \
|
||||||
translate['Filter out words'] + \
|
translate['Filter out words'] + '" ' + \
|
||||||
'" name="submitFilter" value="' + translate['Filter'] + '">\n'
|
'alt="' + \
|
||||||
|
translate['Filter out words'] + ' | " ' + \
|
||||||
|
'name="submitFilter" value="' + translate['Filter'] + '">\n'
|
||||||
tlStr += \
|
tlStr += \
|
||||||
' <input type="submit" title="' + \
|
' <input type="submit" title="' + \
|
||||||
translate['Unfilter words'] + \
|
translate['Unfilter words'] + '" ' + \
|
||||||
'" name="submitUnfilter" value="' + translate['Unfilter'] + '">\n'
|
'alt="' + \
|
||||||
|
translate['Unfilter words'] + ' | " ' + \
|
||||||
|
'name="submitUnfilter" value="' + translate['Unfilter'] + '">\n'
|
||||||
|
|
||||||
tlStr += '</div>\n</form>\n'
|
tlStr += '</div>\n</form>\n'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue