Ivan Habunek
d91c73520e
Better function name
2023-11-04 07:38:47 +01:00
Ivan Habunek
d4f8acb3ce
Resolve circular import by moving get_config_dir
2023-06-28 14:46:35 +02:00
Ivan Habunek
953cad5023
Respect quiet setting
2023-06-28 14:17:35 +02:00
Ivan Habunek
4388175cb4
Respect color setting
2023-06-28 13:56:59 +02:00
Ivan Habunek
3a375b77ee
Add toot status command
2023-06-28 12:23:33 +02:00
Ivan Habunek
b2c2f7466e
Fix type hints for older versions of python
2023-06-26 17:00:39 +02:00
Ivan Habunek
f3439ad30d
Use entitites to simpliy print functions
2023-06-26 16:59:14 +02:00
Ivan Habunek
7b08e39f00
Decrease the amount of color
2023-06-22 11:33:07 +02:00
Daniel Schwarz
01afbe1f2f
If toot activate is invoked without an account, show list of accounts
2023-06-22 11:30:43 +02:00
Ivan Habunek
a19670d0c3
Add integration tests for lists
2023-03-30 12:00:12 +02:00
Ivan Habunek
8624ddb175
Add a simple table printer and apply to lists
2023-03-30 12:00:12 +02:00
Daniel Schwarz
bfdd84870f
Added "toot list_delete" and "toot list_create" commands
2023-03-30 10:01:03 +02:00
Daniel Schwarz
08bb7aae71
added "toot list_accounts" command
2023-03-30 10:01:03 +02:00
Daniel Schwarz
855b2a1526
"toot list" console command added
2023-03-30 10:01:02 +02:00
Ivan Habunek
40076ab0c4
Print verified flag
2023-01-30 17:09:41 +01:00
Ivan Habunek
baa5a37125
Add custom fields to status output
2023-01-30 17:04:21 +01:00
Ivan Habunek
15d377e889
Expand tests
2023-01-02 11:53:50 +01:00
Ivan Habunek
2d8791e629
Remove coding directives, no longer needed
2022-12-31 09:31:32 +01:00
Ivan Habunek
7be74f9240
Print if no tags are followed
2022-12-31 09:31:32 +01:00
Daniel Schwarz
67b52757a4
Command line support for following hashtags (Mastodon 4+)
2022-12-31 09:02:38 +01:00
Ivan Habunek
02d358907c
Embrace f-strings
2022-12-12 12:47:45 +01:00
Ivan Habunek
ef697c3bee
Show only registration date on whois
...
Time is not that relevant and causes noise
2022-12-12 12:47:45 +01:00
Ivan Habunek
59b98a7f33
Improve colorize
2022-12-02 08:50:34 +01:00
Ivan Habunek
7b4063fddc
Remove use of deprecated status.text_url
2022-11-30 08:55:46 +01:00
Ivan Habunek
942dd36cd6
Fix tests
2022-11-29 10:08:21 +01:00
Ivan Habunek
916b4cc4bf
Extract code for printing a poll
2022-11-29 09:20:00 +01:00
Daniel Schwarz
f15310cc75
Display polls in command line status output
...
Also display your own votes in toot tui poll displays.
2022-11-29 09:03:19 +01:00
Ivan Habunek
654bc06166
Fix formatting
2022-11-24 11:21:01 +01:00
Ivan Habunek
d03a329b1a
Improve print_instance
2022-11-24 11:21:01 +01:00
Ivan Habunek
0b671be0c6
Use exisiting functon to parse datetime
2022-11-21 08:35:23 +01:00
Giuseppe Bilotta
e171578878
Implement following/followers list retrieval
2022-11-18 08:23:12 +01:00
Andy Loven
3315a87463
Local time in toot timeline
2022-11-08 07:11:26 +01:00
Ivan Habunek
cf78cd20ac
Upgrade to v2 search endpoint
2019-09-22 22:08:04 +02:00
Ivan Habunek
367ced2eef
Don't use ANSI color codes when not desired
...
Which is when not supported by terminal or when not in a tty.
2019-09-06 15:03:47 +02:00
Ivan Habunek
474d9c432f
Move notification printing to output module
...
Removed sorting, since notifications are already sorted.
2019-04-16 14:12:42 +02:00
Ivan Habunek
10595be865
Show full account name in timeline
2019-02-15 14:13:11 +01:00
Ivan Habunek
e6d585ae5d
Nicer timeline output
2019-02-14 17:31:48 +01:00
Ivan Habunek
996228d224
Employ wcstring utils to improve rendering
2019-02-14 15:47:40 +01:00
Denis Laxalde
0bf4b2a21a
Fix left column padding in timeline with wide characters
...
When the left column contains wide characters (which occupy more than
one cell when printed to screen), padding to 30-characters with
"{:30}".format() does not work well. This happens for instance when the
display name contains unicode characters such as emojis.
We fix this by introducing a pad() function in utils module which uses
the wcwidth library (https://pypi.org/project/wcwidth/ ) to compute the
length of the text for the column. trunc() function is also adjusted to
optionally compute the length of the text to be truncated since, when
called from pad(), we now pre-compute this value.
We update test for timeline rendering so that the display name now
includes an emoji. (Without the fix, the test would not pass as left
column would be misaligned.)
2019-02-14 14:21:53 +01:00
Balazs Nadasdi
ee417df60e
Status ID + thread view
...
- Status ID on timeline list view
- thread command to view a complete thread
Display order:
- ancestors
- status
- descendants
2019-01-19 19:28:17 +01:00
Denis Laxalde
0f6bd920c3
Replace ' by "'" before parsing HTML
...
Beautiful will does not parse HTML entities like `'` as we expect
and the previous logic of replacing this *after* HTML parsing occurred
did not produced expected results.
To illustrate this, we change data in "test_timeline" to include a
literal `'` as it sometimes occur in data returned by Mastodon API.
New HTML content is:
<p>The computer can't tell you the emotional story [...] </p>
Beautiful will parse this as as:
<p>The computer can&apost tell you the emotional story [...] </p>
which is not what we expect.
We fix this by replacing `'` *before* HTML parsing by Beautiful.
Since test data in "test_timeline" got updated we also add an extra
assertion checking that part of the content with a literal "'" is
(still) properly rendered.
2019-01-01 23:14:54 +01:00
Ivan Habunek
92435d630c
Add a global --silent flag to silence output
...
issue #46
2018-06-15 09:02:19 +02:00
Ivan Habunek
b3d81c43cc
Tweak timeline output
2018-06-12 11:43:47 +02:00
Ivan Habunek
3f79b76aab
Fix alignment in timeline
2018-06-12 10:52:47 +02:00
Ivan Habunek
ceb324e9b0
Move timeline printing code to output.py
2018-06-07 10:27:11 +02:00
Ivan Habunek
177af4fac9
Fix code style
2017-12-30 13:14:37 +01:00
Ivan Habunek
787e0d28b4
Move printing logic to output
2017-12-29 14:42:51 +01:00
Ivan Habunek
dfdad045f0
Add instance command
2017-12-29 14:26:40 +01:00
Ivan Habunek
1b86cdd404
Drop support for Python 2
...
It's hard to maintain both versions, having unicode issues in py2, etc.
2017-12-29 11:31:21 +01:00
Ivan Habunek
39c2cc661d
Rework how colors are shown in the commandline
...
Add an option to disable colors.
fixes #15
2017-05-08 09:09:20 +02:00