This website works better with JavaScript.
Home
Help
Sign In
wiki
/
jogobot-teamstation
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
1
Activity
Browse Source
Add "bis 2000" notation
Handle cases correctly, where "bis 2000" is used as param 1. Replace with "{{0|0000}}–" construct
tags/v0.1^2
Jonathan Golder
2 years ago
parent
33fc676a7f
commit
7ae262687e
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-0
teamstation.py
+ 4
- 0
teamstation.py
View File
@@ -120,6 +120,10 @@ class TeamstationBot( CurrentPageBot ): # sets 'current_page' on each treat()
# Get value of param 1
jahre = occ.get(1);
# Normalize rarely used "bis 2000" notation
if "bis" in jahre.value:
jahre.value.replace("bis", "{{0|0000}}\u2013")
# Get parts of value
mo = re.search(r"\s*(\{\{0\|0000\}\}|(?:1|2)\d{3})\s*(–|‐|-|‑|‒|—|―|˗)?\s*((?:1|2)\d{3})?",str(jahre.value))
Write
Preview
Loading…
Cancel
Save