fdroiddata/metadata/de.nico.ha_manager.yml
Hans-Christoph Steiner cf4e8a40ff convert all MediaWiki links to HTML links
```python
import yaml, glob, re, os
from fdroidserver import metadata

pat = re.compile(r'\[(https?://[^ \]]+)\s+([^\]]+)\]')

for f in glob.glob('metadata/*.yml'):
    with open(f) as fp:
        data = yaml.load(fp)
    description = data.get('Description', '')
    for m in pat.finditer(data.get('Description', '')):
        link = m.group(1)
        text = m.group(2)
        print(f, link, text, flush=True)
        description = description.replace(m.group(), '<a href="%s">%s</a>' % (link, text))
    data['Description'] = description
    app = metadata.App(data)
    metadata.write_metadata(f, app)
```

```
sed -i 's,^      - true,      - yes,' metadata/*.yml
sed -i 's,^      - false,      - no,' metadata/*.yml
```

closes fdroid-website#510
2020-12-09 19:10:44 +01:00

121 lines
2.3 KiB
YAML

Categories:
- Science & Education
License: GPL-3.0-only
AuthorName: Nico Alt
AuthorEmail: nicoalt@posteo.org
SourceCode: https://gitlab.com/hw-manager/android
IssueTracker: https://gitlab.com/hw-manager/android/issues
Changelog: https://gitlab.com/hw-manager/android/blob/HEAD/CHANGELOG.md
AutoName: HW-Manager
Summary: Manage your homework
Description: |-
As of April 2018, this app is
<a href="https://gitlab.com/hw-manager/android/commit/471b28a05741f4564a55e6c2ef64b0386be75567">unmaintained</a>.
Make your schoolday easier by keeping the overview over your homework. The
project follows the "KISS" principle - Keep it simple, stupid.
RepoType: git
Repo: https://gitlab.com/hw-manager/android.git
Builds:
- versionName: '0.61'
versionCode: 8
commit: '0.61'
subdir: HA-Manager
- versionName: '0.62'
versionCode: 9
commit: '0.62'
subdir: HA-Manager
- versionName: '0.63'
versionCode: 10
commit: '0.63'
subdir: HA-Manager
- versionName: '0.65'
versionCode: 12
commit: '0.65'
subdir: HA-Manager
- versionName: '0.7'
versionCode: 13
commit: '0.7'
subdir: HA-Manager
- versionName: '0.8'
versionCode: 14
commit: '0.8'
subdir: app
- versionName: '0.81'
versionCode: 15
commit: '0.81'
subdir: app
- versionName: '0.82'
versionCode: 16
commit: '0.82'
subdir: app
- versionName: '0.83'
versionCode: 17
commit: '0.83'
subdir: app
- versionName: '0.84'
versionCode: 18
commit: '0.84'
subdir: app
- versionName: '0.91'
versionCode: 20
commit: '0.91'
subdir: app
- versionName: '0.92'
versionCode: 21
commit: '0.92'
subdir: app
gradle:
- yes
- versionName: '0.93'
versionCode: 22
commit: '0.93'
subdir: app
gradle:
- yes
- versionName: '0.94'
versionCode: 23
commit: '0.94'
subdir: app
gradle:
- yes
- versionName: 0.94.1
versionCode: 24
commit: 0.94.1
gradle:
- yes
- versionName: 0.94.2
versionCode: 25
commit: 0.94.2
gradle:
- yes
- versionName: 0.94.3
versionCode: 26
commit: 0.94.3
gradle:
- yes
ArchivePolicy: 0 versions
AutoUpdateMode: None
UpdateCheckMode: Tags
CurrentVersion: 0.94.3
CurrentVersionCode: 26