fdroiddata/metadata/com.google.marvin.shell.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.4 KiB
YAML

Categories:
- System
License: Apache-2.0
WebSite: https://groups.google.com/group/eyes-free
SourceCode: https://code.google.com/p/eyes-free/source
AutoName: Eyes-Free Shell
Description: |-
Turns your Android into an eyes-free communication device. Provides one-touch
access to applications, as well as useful mini-apps built into the Eyes-Free
Shell.
Move your finger over the screen to explore; lift your finger up to run what you
stopped on.
See the
<a href="https://eyes-free.googlecode.com/svn/trunk/documentation/android_access/index.html">FAQ</a> or the <a href="http://eyes-free.blogspot.com">Eyes-Free blog</a> for more on Android
accessibility.
RepoType: srclib
Repo: EyesFree
Builds:
- versionName: 3.0.4
versionCode: 33
commit: '787'
subdir: apps/shell
prebuild:
- sed -i 's@\(android.library.reference.1=\).*@\1../../libraries/utils@' project.properties
- echo "android.library.reference.2=../../libraries/compatutils" >> project.properties
- cd ../../
- rm -rf accessibilityServices archived braille devtools documentation eSpeakEngine
ideal ime ocr samplecode thirdparty tts
androidupdate:
- .
- ../../libraries/utils
- ../../libraries/compatutils
target: android-15
AutoUpdateMode: None
UpdateCheckMode: Static
CurrentVersion: 3.0.4
CurrentVersionCode: 33
NoSourceSince: 3.2.0