summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Rocard <kevinx.rocard@intel.com>2014-10-01 18:20:41 +0200
committerKevin Rocard <kevinx.rocard@intel.com>2014-10-02 10:59:49 +0200
commit03b73847d00b46e5decda6f548b0c3ddf175cc76 (patch)
tree8d05b6acaafe20fb18d513788508df8b271f9350
parente3a06ba341ee81a7dbb7011ec59cecfafc6fdf79 (diff)
downloadexternal_parameter-framework-03b73847d00b46e5decda6f548b0c3ddf175cc76.zip
external_parameter-framework-03b73847d00b46e5decda6f548b0c3ddf175cc76.tar.gz
external_parameter-framework-03b73847d00b46e5decda6f548b0c3ddf175cc76.tar.bz2
Remove non ASCII char in tree representation
Some comments representing a file tree were using non ASCII characters. They are not readable on many editors leading to incoherent display. Replace them by plain ASCII characters. Signed-off-by: Kevin Rocard <kevinx.rocard@intel.com>
-rw-r--r--parameter/ParameterMgr.cpp22
-rw-r--r--tools/xmlValidator/README.md36
2 files changed, 29 insertions, 29 deletions
diff --git a/parameter/ParameterMgr.cpp b/parameter/ParameterMgr.cpp
index 32082b3..7cb1042 100644
--- a/parameter/ParameterMgr.cpp
+++ b/parameter/ParameterMgr.cpp
@@ -99,17 +99,17 @@ const char* gacSystemSchemasSubFolder = "Schemas";
// Config File System looks normally like this:
// ---------------------------------------------
-//├── <ParameterFrameworkConfiguration>.xml
-//├── Schemas
-//│ └── *.xsd
-//├── Settings
-//│ └── <SystemClassName folder>*
-//│ ├── <ConfigurableDomains>.xml
-//│ └── <Settings>.bin?
-//└── Structure
-// └── <SystemClassName folder>*
-// ├── <SystemClassName>Class.xml
-// └── <Subsystem>.xml*
+//|-- <ParameterFrameworkConfiguration>.xml
+//|-- Schemas
+//| `-- *.xsd
+//|-- Settings
+//| `-- <SystemClassName folder>*
+//| |-- <ConfigurableDomains>.xml
+//| `-- <Settings>.bin?
+//`-- Structure
+// `-- <SystemClassName folder>*
+// |-- <SystemClassName>Class.xml
+// `-- <Subsystem>.xml*
// --------------------------------------------
diff --git a/tools/xmlValidator/README.md b/tools/xmlValidator/README.md
index 11d64a6..c50f33e 100644
--- a/tools/xmlValidator/README.md
+++ b/tools/xmlValidator/README.md
@@ -27,24 +27,24 @@ where:
In the example, we have the following files:
- ├── ParameterFrameworkConfiguration.xml
- ├── Schemas
- │ ├── ComponentLibrary.xsd
- │ ├── ComponentTypeSet.xsd
- │ ├── ConfigurableDomains.xsd
- │ ├── FileIncluder.xsd
- │ ├── ParameterFrameworkConfiguration.xsd
- │ ├── ParameterSettings.xsd
- │ ├── Parameter.xsd
- │ ├── Subsystem.xsd
- │ └── SystemClass.xsd
- ├── Settings
- │ └── FS
- │ └── Genres.xml
- └── Structure
- └── FS
- ├── MusicLibraries.xml
- └── my_music.xml
+ |-- ParameterFrameworkConfiguration.xml
+ |-- Schemas
+ | |-- ComponentLibrary.xsd
+ | |-- ComponentTypeSet.xsd
+ | |-- ConfigurableDomains.xsd
+ | |-- FileIncluder.xsd
+ | |-- ParameterFrameworkConfiguration.xsd
+ | |-- ParameterSettings.xsd
+ | |-- Parameter.xsd
+ | |-- Subsystem.xsd
+ | `-- SystemClass.xsd
+ |-- Settings
+ | `-- FS
+ | `-- Genres.xml
+ `--- Structure
+ `-- FS
+ |-- MusicLibraries.xml
+ `-- my_music.xml
### Command
We are in the directory which contains the structure detailed previously.