fdroiddata/metadata/org.mumod.android.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

42 lines
1.4 KiB
YAML

Categories:
- Internet
License: GPL-3.0-only
SourceCode: https://github.com/kromonos/Mustard-Mod
IssueTracker: https://github.com/kromonos/Mustard-Mod/issues
FlattrID: '998492'
AutoName: Mustard {MOD}
Description: |-
Client for <a href="http://status.net/wiki/Take_a_tour">StatusNet</a> (now known as
<a href="http://www.gnu.org/software/social">GNU social</a>). GNU social is a microblogging
platform somewhat like Twitter, but decentralized. Some examples are:
<a href="https://status.fsf.org">fsf.org</a>, and <a href="http://bka.li">bka.li</a>. (The latter is in
German, as is the website)
Twitter is disabled in this build, but in future versions it will be possible to
enter oAuth credentials into the app, after registering your own client at
dev.twitter.com. It is already possible to add oAuth credentials for StatusNet
sites.
Status: Abandoned
RepoType: git
Repo: https://github.com/kromonos/Mustard-Mod.git
Builds:
- versionName: 0.4.0.17
versionCode: 168
commit: 05b41e1f17
prebuild:
- sed -i '53,60d' res/layout/account_create.xml
- sed -i '50,55d' src/org/mumod/android/activity/Login.java
- versionName: 0.4.0.19
versionCode: 174
disable: not a release
commit: unknown - see disabled
AutoUpdateMode: None
UpdateCheckMode: RepoManifest
CurrentVersion: 0.4.0.19
CurrentVersionCode: 174