summaryrefslogtreecommitdiffstats
path: root/yaml
diff options
context:
space:
mode:
authormartin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2009-02-23 07:04:29 +0000
committermartin_r <martin_r@b9310e46-f624-0410-8ea1-cfbb3a30dc96>2009-02-23 07:04:29 +0000
commit5c2b5ae5afe84dfa398fa9281b5bc22e9199c6f8 (patch)
treeba5e29a88f21cbf20d887295b7ee09ca036cb191 /yaml
parent1d885016a6d947e3869549100b784a01e02388f4 (diff)
Pfad zu Python korrigiert
coding korrigiert neo_yaml eingefügt NEO durch Neo ersetzt etc. Verweis auf get_dependencies.sh ausführbar gemacht Coding style git-svn-id: https://svn.neo-layout.org@1687 b9310e46-f624-0410-8ea1-cfbb3a30dc96
Diffstat (limited to 'yaml')
-rwxr-xr-xyaml/get_dependencies.sh13
-rwxr-xr-x[-rw-r--r--]yaml/parse_neo.py15
-rw-r--r--yaml/readme.txt4
3 files changed, 23 insertions, 9 deletions
diff --git a/yaml/get_dependencies.sh b/yaml/get_dependencies.sh
new file mode 100755
index 0000000..01f4740
--- /dev/null
+++ b/yaml/get_dependencies.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+# installing the neo_yaml-dependencies: python >= 3.0, pyyaml >= 3.08
+cd ~
+# sudo pacman -Sy python3 # arch linux example
+wget http://pyyaml.org/download/pyyaml/PyYAML-3.08.tar.gz
+tar xzf PyYAML-3.08.tar.gz
+rm PyYAML-3.08.tar.gz
+# svn co http://svn.pyyaml.org/pyyaml/trunk PyYAML-3.08 # alternative to the 3
+# commands above
+cd PyYAML-3.08
+sudo python3 setup.py install
+cd ..
+rm -r PyYAML-3.08
diff --git a/yaml/parse_neo.py b/yaml/parse_neo.py
index c4cef2c..e004961 100644..100755
--- a/yaml/parse_neo.py
+++ b/yaml/parse_neo.py
@@ -1,15 +1,15 @@
-#!usr/bin/python
-# -*- coding: utf8 -*-
+#!/usr/bin/python3
+# -*- coding: utf-8 -*-
#===============================================================================
-# YAML Parser for the Neo reference
+# YAML Parser for the Neo reference (neo_yaml)
# Copyright 2009 Martin Roppelt (m.p.roppelt ἢτ web in Germany)
#
-# This file is part of German NEO-Layout Version 2.
-# German Neo Layout Version 2 is free software: you can redistribute it and/or
+# This file is part of German Neo-Layout Version 2.
+# German Neo-Layout Version 2 is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or (at your
# option) any later version. You should have received a copy of the GNU General
-# Public License along with German NEO-Layout Version 2. If not, see
+# Public License along with German Neo-Layout Version 2. If not, see
# <http://www.gnu.org/licenses/>.
#===============================================================================
'''
@@ -17,7 +17,8 @@ Converts the reference into both human and machine readable and editable files
for automated creating of keyboard drivers, pictures and references.
'''
#===============================================================================
-# Needs at least Phyton 3.0 and PyYAML 3.08 (pyyaml.org) to run.
+# Needs at least Phyton 3.0 and PyYAML 3.08 (pyyaml.org) to run (In GNU/Linux
+# you can run get_dependencies.sh to install them.)
#
# Call with -h|--help to print command line options.
#===============================================================================
diff --git a/yaml/readme.txt b/yaml/readme.txt
index 0a13bd8..5d5a98f 100644
--- a/yaml/readme.txt
+++ b/yaml/readme.txt
@@ -1,9 +1,9 @@
-Neo-Projekt: Maschinenlesbare Referenz
+Neo-Projekt: Maschinenlesbare Referenz (neo_yaml)
Martin Roppelt (m.p.roppelt ät web in Deutschland)
Ressourcen:
-- https://svn.neo-layout.org/grafik/xml-vorschlag/, Revision 200
+- https://svn.neo-layout.org/grafik/xml-vorschlag/@200
- http://www.eigenheimstrasse.de/~ben/layoutgen/layoutgen/
- svn://svn.tuxfamily.org/svnroot/dvorak/svn/pilotes/trunk/configGenerator/
- http://pyyaml.org/