Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
maubot-rt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
isgphys
maubot-rt
Commits
8d46b9a8
Commit
8d46b9a8
authored
5 years ago
by
Sven Mäder
Browse files
Options
Downloads
Patches
Plain Diff
Improve help texts, improve rtlink format
parent
d58da972
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
rtlinks.py
+6
-9
6 additions, 9 deletions
rtlinks.py
with
6 additions
and
9 deletions
rtlinks.py
+
6
−
9
View file @
8d46b9a8
...
...
@@ -104,12 +104,12 @@ class RTLinksPlugin(Plugin):
content
=
await
response
.
text
()
ticket
=
dict
(
self
.
regex_properties
.
findall
(
content
))
markdown_link
=
await
self
.
get_markdown_link
(
number
)
markdown
=
"
{}
({})
is **{}** in **{}** from {}
"
.
format
(
markdown
=
"
{} is **{}** in **{}** from {}
\n
{}
"
.
format
(
markdown_link
,
ticket
[
'
Subject
'
],
ticket
[
'
Status
'
],
ticket
[
'
Queue
'
],
ticket
[
'
Creator
'
]
ticket
[
'
Creator
'
],
ticket
[
'
Subject
'
]
)
msg_lines
.
append
(
markdown
)
...
...
@@ -191,8 +191,7 @@ class RTLinksPlugin(Plugin):
markdown_link
=
await
self
.
get_markdown_link
(
number
)
await
evt
.
respond
(
'
{} comment added
'
.
format
(
markdown_link
))
@rt.subcommand
(
"
history
"
,
aliases
=
(
"
h
"
,
"
hist
"
),
help
=
"
Get a list of all history items for a given ticket.
"
)
@rt.subcommand
(
"
history
"
,
aliases
=
(
"
h
"
,
"
hist
"
),
help
=
"
Get a list of all history entries.
"
)
@command.argument
(
"
number
"
,
"
ticket number
"
,
pass_raw
=
True
)
async
def
history
(
self
,
evt
:
MessageEvent
,
number
:
str
)
->
None
:
if
not
await
self
.
can_manage
(
evt
)
or
not
self
.
is_valid_number
(
number
):
...
...
@@ -204,8 +203,7 @@ class RTLinksPlugin(Plugin):
markdown
=
'
{} history entries:
\n
{}
'
.
format
(
markdown_link
,
'
\n
'
.
join
(
history_list
))
await
evt
.
respond
(
markdown
)
@rt.subcommand
(
"
entry
"
,
aliases
=
(
"
e
"
,
"
ent
"
),
help
=
"
Gets the history information for a single history entry.
"
)
@rt.subcommand
(
"
entry
"
,
aliases
=
(
"
e
"
,
"
ent
"
),
help
=
"
Gets a single history entry.
"
)
@command.argument
(
"
number
"
,
"
ticket number
"
,
parser
=
str
)
@command.argument
(
"
entry
"
,
"
history entry number
"
,
parser
=
str
)
async
def
entry
(
self
,
evt
:
MessageEvent
,
number
:
str
,
entry
:
str
)
->
None
:
...
...
@@ -219,8 +217,7 @@ class RTLinksPlugin(Plugin):
'
\n
'
.
join
(
entry_list
))
await
evt
.
respond
(
markdown
)
@rt.subcommand
(
"
last
"
,
aliases
=
(
"
l
"
,
"
la
"
),
help
=
"
Gets the last history entry with correspondence.
"
)
@rt.subcommand
(
"
last
"
,
aliases
=
(
"
l
"
,
"
la
"
),
help
=
"
Gets the last correspondence entry.
"
)
@command.argument
(
"
number
"
,
"
ticket number
"
,
parser
=
str
)
async
def
last
(
self
,
evt
:
MessageEvent
,
number
:
str
)
->
None
:
if
not
await
self
.
can_manage
(
evt
)
or
not
self
.
is_valid_number
(
number
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment