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
6f49101e
Commit
6f49101e
authored
5 years ago
by
Sven Mäder
Browse files
Options
Downloads
Patches
Plain Diff
Rename project
parent
8d46b9a8
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
LICENSE
+21
-0
21 additions, 0 deletions
LICENSE
base-config.yaml
+2
-2
2 additions, 2 deletions
base-config.yaml
maubot.yaml
+6
-6
6 additions, 6 deletions
maubot.yaml
rt.py
+2
-2
2 additions, 2 deletions
rt.py
with
31 additions
and
10 deletions
LICENSE
0 → 100644
+
21
−
0
View file @
6f49101e
MIT License
Copyright (c) 2020 Sven Mäder
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
This diff is collapsed.
Click to expand it.
base-config.yaml
+
2
−
2
View file @
6f49101e
...
...
@@ -4,9 +4,9 @@ prefix: 'rt'
# RT base URL
url
:
https://example.com/rt
# RT Username
user
:
rtlinks
user
:
maubot
# RT Password
pass
:
secret
# The list of user IDs who are allowed to
modify stuff.
# The list of user IDs who are allowed to
use commands
whitelist
:
-
'
@user:example.com'
This diff is collapsed.
Click to expand it.
maubot.yaml
+
6
−
6
View file @
6f49101e
...
...
@@ -2,27 +2,27 @@
maubot
:
0.1.0
# The unique ID for the plugin. Java package naming style. (i.e. use your own domain, not xyz.maubot)
id
:
isg.rda.rtlinks
id
:
ch.ethz.phys.rt
# A PEP 440 compliant version string.
version
:
0.2.
7
version
:
0.2.
8
# The SPDX license identifier for the plugin. https://spdx.org/licenses/
# Optional, assumes all rights reserved if omitted.
license
:
GPL3
license
:
MIT
# The list of modules to load from the plugin archive.
# Modules can be directories with an __init__.py file or simply python files.
# Submodules that are imported by modules listed here don't need to be listed separately.
# However, top-level modules must always be listed even if they're imported by other modules.
modules
:
-
rt
links
-
rt
# The main class of the plugin. Format: module/Class
# If `module` is omitted, will default to last module specified in the module list.
# Even if `module` is not omitted here, it must be included in the modules list.
# The main class must extend maubot.Plugin
main_class
:
RT
LinksPlugin
main_class
:
RT
# Whether or not instances need a database
database
:
false
...
...
@@ -30,7 +30,7 @@ database: false
# Extra files that the upcoming build tool should include in the mbp file.
extra_files
:
-
base-config.yaml
#
- LICENSE
-
LICENSE
# List of dependencies
#dependencies:
...
...
This diff is collapsed.
Click to expand it.
rt
links
.py
→
rt.py
+
2
−
2
View file @
6f49101e
...
...
@@ -15,10 +15,10 @@ class Config(BaseProxyConfig):
helper
.
copy
(
"
whitelist
"
)
class
RT
LinksPlugin
(
Plugin
):
class
RT
(
Plugin
):
prefix
:
str
whitelist
:
Set
[
UserID
]
headers
=
{
"
User-agent
"
:
"
rtlinks
maubot
"
}
headers
=
{
"
User-agent
"
:
"
maubot
-rt
"
}
regex_number
=
re
.
compile
(
r
'
[0-9]{6}
'
)
regex_properties
=
re
.
compile
(
r
'
([a-zA-z]+): (.+)
'
)
regex_history
=
re
.
compile
(
r
'
([0-9]+): (.+)
'
)
...
...
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