fdroiddata/metadata/de.enaikoon.android.keypadmapper3.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

45 lines
1.3 KiB
YAML

AntiFeatures:
- Tracking
Categories:
- Navigation
License: BSD-3-Clause
WebSite: http://wiki.openstreetmap.org/wiki/Keypad-Mapper_3
SourceCode: https://github.com/msemm/Keypad-Mapper-3
IssueTracker: https://github.com/msemm/Keypad-Mapper-3/issues
AutoName: Keypad-Mapper 3
Description: |-
Keypad-Mapper 3 makes it easy for you to record the GPS coordinates of house
numbers for adding them later to OpenStreetMap.
Features:
* records house numbers
* saves address data
* takes GPS photos for entering in JOSM
* indicates the GPS reception strength of GPS and GLONASS
* exports the recorded information
Note that although it's not mentioned anywhere except very deep in the help
page, this application collects and uploads GSM cell data. See
<a href="https://f-droid.org/repository/issues/?do=view_issue&issue=421">here</a> for more
information.
RepoType: git
Repo: https://github.com/msemm/Keypad-Mapper-3.git
Builds:
- versionName: 3.1.00
versionCode: 47
commit: 0c81f1
subdir: KeypadMapper3
init: sed -i 's/\\\\/\//g' project.properties
androidupdate:
- .
- ../actionbarsherlock
- ../enaikoon_resources_lib
AutoUpdateMode: None
UpdateCheckMode: RepoManifest
CurrentVersion: 3.1.00
CurrentVersionCode: 47