[Lilypond-auto] [LilyIssues-auto] [testlilyissues:issues] #4905 Documentation - --include requires absolute paths

2016-06-24 Thread Auto mailings of changes to Lily Issues



---

** [issues:#4905] Documentation -   --include requires absolute paths**

**Status:** New
**Created:** Fri Jun 24, 2016 06:58 PM UTC by Palmer Ralph
**Last Updated:** Fri Jun 24, 2016 06:58 PM UTC
**Owner:** nobody


Federico Bruni wrote :

Should we say explicitly in the doc that -I or --include option requires 
absolute path(s)?
Paragraph to be modified is in Usage 1.2:

-I, --include=directory

   Add directory to the search path for input files.

   Multiple -I options may be given. The search will start in the first defined 
directory, and if the file to be included is not found the search will continue 
in subsequent directories.


Perhaps a warning like "~ cannot be used, use absolute path" may be also 
helpful.



$ ~/.local/bin/lilypond --include=~/Documenti/spartiti/ly Aggressive-Lady.ly
GNU LilyPond 2.19.43
Processing `Aggressive-Lady.ly'
Parsing...
Aggressive-Lady.ly:2:10: error: cannot find file: `myStyle.ly'
(search path: 
`/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/svg/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/type1/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/otf/:/home/fede/.local/lilypond/usr/share/lilypond/current/scm:/home/fede/.local/lilypond/usr/share/lilypond/current/ps:/home/fede/.local/lilypond/usr/share/lilypond/current/ly:~/Documenti/spartiti/ly:')
\include
"myStyle.ly"
Aggressive-Lady.ly:13:19: error: unknown escaped string: `\I'

%


---

Sent from sourceforge.net because testlilyissues-a...@lists.sourceforge.net is 
subscribed to https://sourceforge.net/p/testlilyissues/issues/

To unsubscribe from further messages, a project admin can change settings at 
https://sourceforge.net/p/testlilyissues/admin/issues/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.--
Attend Shape: An AT&T Tech Expo July 15-16. Meet us at AT&T Park in San
Francisco, CA to explore cutting-edge tech and listen to tech luminaries
present their vision of the future. This family event has something for
everyone, including kids. Get more information and register today.
http://sdm.link/attshape___
Testlilyissues-auto mailing list
testlilyissues-a...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/testlilyissues-auto


[Lilypond-auto] [LilyIssues-auto] [testlilyissues:issues] #4905 Documentation - --include requires absolute paths

2016-09-27 Thread Auto mailings of changes to Lily Issues
- **status**: New --> Accepted



---

** [issues:#4905] Documentation -   --include requires absolute paths**

**Status:** Accepted
**Created:** Fri Jun 24, 2016 06:58 PM UTC by Palmer Ralph
**Last Updated:** Fri Jun 24, 2016 06:58 PM UTC
**Owner:** nobody


Federico Bruni wrote :

Should we say explicitly in the doc that -I or --include option requires 
absolute path(s)?
Paragraph to be modified is in Usage 1.2:

-I, --include=directory

   Add directory to the search path for input files.

   Multiple -I options may be given. The search will start in the first defined 
directory, and if the file to be included is not found the search will continue 
in subsequent directories.


Perhaps a warning like "~ cannot be used, use absolute path" may be also 
helpful.



$ ~/.local/bin/lilypond --include=~/Documenti/spartiti/ly Aggressive-Lady.ly
GNU LilyPond 2.19.43
Processing `Aggressive-Lady.ly'
Parsing...
Aggressive-Lady.ly:2:10: error: cannot find file: `myStyle.ly'
(search path: 
`/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/svg/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/type1/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/otf/:/home/fede/.local/lilypond/usr/share/lilypond/current/scm:/home/fede/.local/lilypond/usr/share/lilypond/current/ps:/home/fede/.local/lilypond/usr/share/lilypond/current/ly:~/Documenti/spartiti/ly:')
\include
"myStyle.ly"
Aggressive-Lady.ly:13:19: error: unknown escaped string: `\I'

%


---

Sent from sourceforge.net because testlilyissues-a...@lists.sourceforge.net is 
subscribed to https://sourceforge.net/p/testlilyissues/issues/

To unsubscribe from further messages, a project admin can change settings at 
https://sourceforge.net/p/testlilyissues/admin/issues/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.--
___
Testlilyissues-auto mailing list
testlilyissues-a...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/testlilyissues-auto


[Lilypond-auto] [LilyIssues-auto] [testlilyissues:issues] #4905 Documentation - --include requires absolute paths

2016-09-27 Thread Auto mailings of changes to Lily Issues
`~` is neither an absolute not a relative path, it is a shell shorthand for 
some shells.  Programs need to interpret it explicitly unless it starts an 
unquoted word:

`echo ~` -> `/home/myself`
`echo "~"` -> `~`
`xxx=~ && echo "$xxx"` -> `/home/myself`
`xxx="~" && echo "$xxx"` -> `~`
`xxx="~" && echo $xxx` -> `~`
`xxx=--include=~ && echo $xxx` -> `--include=~`

So if you want to use a home-relative directory, you need to write something 
like
`-I ~` and must not quote the `~` and cannot use `--include=`.

Unless LilyPond were to use something like _wordexp(3)_ but since LilyPond 
usually is called from a shell already, that would result in having to quote 
special characters _twice_.  So I am not really in favor of it.


---

** [issues:#4905] Documentation -   --include requires absolute paths**

**Status:** Accepted
**Created:** Fri Jun 24, 2016 06:58 PM UTC by Palmer Ralph
**Last Updated:** Tue Sep 27, 2016 08:51 AM UTC
**Owner:** nobody


Federico Bruni wrote :

Should we say explicitly in the doc that -I or --include option requires 
absolute path(s)?
Paragraph to be modified is in Usage 1.2:

-I, --include=directory

   Add directory to the search path for input files.

   Multiple -I options may be given. The search will start in the first defined 
directory, and if the file to be included is not found the search will continue 
in subsequent directories.


Perhaps a warning like "~ cannot be used, use absolute path" may be also 
helpful.



$ ~/.local/bin/lilypond --include=~/Documenti/spartiti/ly Aggressive-Lady.ly
GNU LilyPond 2.19.43
Processing `Aggressive-Lady.ly'
Parsing...
Aggressive-Lady.ly:2:10: error: cannot find file: `myStyle.ly'
(search path: 
`/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/svg/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/type1/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/otf/:/home/fede/.local/lilypond/usr/share/lilypond/current/scm:/home/fede/.local/lilypond/usr/share/lilypond/current/ps:/home/fede/.local/lilypond/usr/share/lilypond/current/ly:~/Documenti/spartiti/ly:')
\include
"myStyle.ly"
Aggressive-Lady.ly:13:19: error: unknown escaped string: `\I'

%


---

Sent from sourceforge.net because testlilyissues-a...@lists.sourceforge.net is 
subscribed to https://sourceforge.net/p/testlilyissues/issues/

To unsubscribe from further messages, a project admin can change settings at 
https://sourceforge.net/p/testlilyissues/admin/issues/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.--
___
Testlilyissues-auto mailing list
testlilyissues-a...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/testlilyissues-auto


[Lilypond-auto] [LilyIssues-auto] [testlilyissues:issues] #4905 Documentation - --include requires absolute paths

2017-10-08 Thread Auto mailings of changes to Lily Issues via Testlilyissues-auto
Fix issue number in commit message

http://codereview.appspot.com/326700043


---

** [issues:#4905] Documentation -   --include requires absolute paths**

**Status:** Started
**Created:** Fri Jun 24, 2016 06:58 PM UTC by Palmer Ralph
**Last Updated:** Sun Oct 08, 2017 10:45 AM UTC
**Owner:** nobody


Federico Bruni wrote :

Should we say explicitly in the doc that -I or --include option requires 
absolute path(s)?
Paragraph to be modified is in Usage 1.2:

-I, --include=directory

   Add directory to the search path for input files.

   Multiple -I options may be given. The search will start in the first defined 
directory, and if the file to be included is not found the search will continue 
in subsequent directories.


Perhaps a warning like "~ cannot be used, use absolute path" may be also 
helpful.



$ ~/.local/bin/lilypond --include=~/Documenti/spartiti/ly Aggressive-Lady.ly
GNU LilyPond 2.19.43
Processing `Aggressive-Lady.ly'
Parsing...
Aggressive-Lady.ly:2:10: error: cannot find file: `myStyle.ly'
(search path: 
`/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/svg/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/type1/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/otf/:/home/fede/.local/lilypond/usr/share/lilypond/current/scm:/home/fede/.local/lilypond/usr/share/lilypond/current/ps:/home/fede/.local/lilypond/usr/share/lilypond/current/ly:~/Documenti/spartiti/ly:')
\include
"myStyle.ly"
Aggressive-Lady.ly:13:19: error: unknown escaped string: `\I'

%


---

Sent from sourceforge.net because testlilyissues-a...@lists.sourceforge.net is 
subscribed to https://sourceforge.net/p/testlilyissues/issues/

To unsubscribe from further messages, a project admin can change settings at 
https://sourceforge.net/p/testlilyissues/admin/issues/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Testlilyissues-auto mailing list
testlilyissues-a...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/testlilyissues-auto


[Lilypond-auto] [LilyIssues-auto] [testlilyissues:issues] #4905 Documentation - --include requires absolute paths

2017-10-08 Thread Auto mailings of changes to Lily Issues via Testlilyissues-auto
- Description has changed:

Diff:



--- old
+++ new
@@ -1,3 +1,11 @@
+Running.itely - warning when using the tilde char 
+
+Added @warning about using the tilde char with the -I switch.
+
+http://codereview.appspot.com/326700043
+
+**
+
 Federico Bruni wrote :
 
 Should we say explicitly in the doc that -I or --include option requires 
absolute path(s)?



- **assigned_to**: pkx166h
- **Needs**:  -->  
- **Type**:  --> Documentation



---

** [issues:#4905] Documentation -   --include requires absolute paths**

**Status:** Started
**Created:** Fri Jun 24, 2016 06:58 PM UTC by Palmer Ralph
**Last Updated:** Sun Oct 08, 2017 10:45 AM UTC
**Owner:** pkx166h


Running.itely - warning when using the tilde char 

Added @warning about using the tilde char with the -I switch.

http://codereview.appspot.com/326700043

**

Federico Bruni wrote :

Should we say explicitly in the doc that -I or --include option requires 
absolute path(s)?
Paragraph to be modified is in Usage 1.2:

-I, --include=directory

   Add directory to the search path for input files.

   Multiple -I options may be given. The search will start in the first defined 
directory, and if the file to be included is not found the search will continue 
in subsequent directories.


Perhaps a warning like "~ cannot be used, use absolute path" may be also 
helpful.



$ ~/.local/bin/lilypond --include=~/Documenti/spartiti/ly Aggressive-Lady.ly
GNU LilyPond 2.19.43
Processing `Aggressive-Lady.ly'
Parsing...
Aggressive-Lady.ly:2:10: error: cannot find file: `myStyle.ly'
(search path: 
`/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/svg/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/type1/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/otf/:/home/fede/.local/lilypond/usr/share/lilypond/current/scm:/home/fede/.local/lilypond/usr/share/lilypond/current/ps:/home/fede/.local/lilypond/usr/share/lilypond/current/ly:~/Documenti/spartiti/ly:')
\include
"myStyle.ly"
Aggressive-Lady.ly:13:19: error: unknown escaped string: `\I'

%


---

Sent from sourceforge.net because testlilyissues-a...@lists.sourceforge.net is 
subscribed to https://sourceforge.net/p/testlilyissues/issues/

To unsubscribe from further messages, a project admin can change settings at 
https://sourceforge.net/p/testlilyissues/admin/issues/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Testlilyissues-auto mailing list
testlilyissues-a...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/testlilyissues-auto


[Lilypond-auto] [LilyIssues-auto] [testlilyissues:issues] #4905 Documentation - --include requires absolute paths

2017-10-08 Thread Auto mailings of changes to Lily Issues via Testlilyissues-auto
- **Patch**: new --> review
- **Comment**:

Passes make, make check and a full make doc



---

** [issues:#4905] Documentation -   --include requires absolute paths**

**Status:** Started
**Created:** Fri Jun 24, 2016 06:58 PM UTC by Palmer Ralph
**Last Updated:** Sun Oct 08, 2017 10:46 AM UTC
**Owner:** pkx166h


Running.itely - warning when using the tilde char 

Added @warning about using the tilde char with the -I switch.

http://codereview.appspot.com/326700043

**

Federico Bruni wrote :

Should we say explicitly in the doc that -I or --include option requires 
absolute path(s)?
Paragraph to be modified is in Usage 1.2:

-I, --include=directory

   Add directory to the search path for input files.

   Multiple -I options may be given. The search will start in the first defined 
directory, and if the file to be included is not found the search will continue 
in subsequent directories.


Perhaps a warning like "~ cannot be used, use absolute path" may be also 
helpful.



$ ~/.local/bin/lilypond --include=~/Documenti/spartiti/ly Aggressive-Lady.ly
GNU LilyPond 2.19.43
Processing `Aggressive-Lady.ly'
Parsing...
Aggressive-Lady.ly:2:10: error: cannot find file: `myStyle.ly'
(search path: 
`/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/svg/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/type1/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/otf/:/home/fede/.local/lilypond/usr/share/lilypond/current/scm:/home/fede/.local/lilypond/usr/share/lilypond/current/ps:/home/fede/.local/lilypond/usr/share/lilypond/current/ly:~/Documenti/spartiti/ly:')
\include
"myStyle.ly"
Aggressive-Lady.ly:13:19: error: unknown escaped string: `\I'

%


---

Sent from sourceforge.net because testlilyissues-a...@lists.sourceforge.net is 
subscribed to https://sourceforge.net/p/testlilyissues/issues/

To unsubscribe from further messages, a project admin can change settings at 
https://sourceforge.net/p/testlilyissues/admin/issues/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Testlilyissues-auto mailing list
testlilyissues-a...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/testlilyissues-auto


[Lilypond-auto] [LilyIssues-auto] [testlilyissues:issues] #4905 Documentation - --include requires absolute paths

2017-10-11 Thread Auto mailings of changes to Lily Issues via Testlilyissues-auto
- **Patch**: review --> countdown
- **Comment**:

Patch on countdown for Oct 14th



---

** [issues:#4905] Documentation -   --include requires absolute paths**

**Status:** Started
**Created:** Fri Jun 24, 2016 06:58 PM UTC by Palmer Ralph
**Last Updated:** Sun Oct 08, 2017 09:10 PM UTC
**Owner:** pkx166h


Running.itely - warning when using the tilde char 

Added @warning about using the tilde char with the -I switch.

http://codereview.appspot.com/326700043

**

Federico Bruni wrote :

Should we say explicitly in the doc that -I or --include option requires 
absolute path(s)?
Paragraph to be modified is in Usage 1.2:

-I, --include=directory

   Add directory to the search path for input files.

   Multiple -I options may be given. The search will start in the first defined 
directory, and if the file to be included is not found the search will continue 
in subsequent directories.


Perhaps a warning like "~ cannot be used, use absolute path" may be also 
helpful.



$ ~/.local/bin/lilypond --include=~/Documenti/spartiti/ly Aggressive-Lady.ly
GNU LilyPond 2.19.43
Processing `Aggressive-Lady.ly'
Parsing...
Aggressive-Lady.ly:2:10: error: cannot find file: `myStyle.ly'
(search path: 
`/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/svg/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/type1/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/otf/:/home/fede/.local/lilypond/usr/share/lilypond/current/scm:/home/fede/.local/lilypond/usr/share/lilypond/current/ps:/home/fede/.local/lilypond/usr/share/lilypond/current/ly:~/Documenti/spartiti/ly:')
\include
"myStyle.ly"
Aggressive-Lady.ly:13:19: error: unknown escaped string: `\I'

%


---

Sent from sourceforge.net because testlilyissues-a...@lists.sourceforge.net is 
subscribed to https://sourceforge.net/p/testlilyissues/issues/

To unsubscribe from further messages, a project admin can change settings at 
https://sourceforge.net/p/testlilyissues/admin/issues/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Testlilyissues-auto mailing list
testlilyissues-a...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/testlilyissues-auto


[Lilypond-auto] [LilyIssues-auto] [testlilyissues:issues] #4905 Documentation - --include requires absolute paths

2017-10-14 Thread Auto mailings of changes to Lily Issues via Testlilyissues-auto
- **Patch**: countdown --> push
- **Comment**:

Patch counted down - please push



---

** [issues:#4905] Documentation -   --include requires absolute paths**

**Status:** Started
**Created:** Fri Jun 24, 2016 06:58 PM UTC by Palmer Ralph
**Last Updated:** Wed Oct 11, 2017 09:53 AM UTC
**Owner:** pkx166h


Running.itely - warning when using the tilde char 

Added @warning about using the tilde char with the -I switch.

http://codereview.appspot.com/326700043

**

Federico Bruni wrote :

Should we say explicitly in the doc that -I or --include option requires 
absolute path(s)?
Paragraph to be modified is in Usage 1.2:

-I, --include=directory

   Add directory to the search path for input files.

   Multiple -I options may be given. The search will start in the first defined 
directory, and if the file to be included is not found the search will continue 
in subsequent directories.


Perhaps a warning like "~ cannot be used, use absolute path" may be also 
helpful.



$ ~/.local/bin/lilypond --include=~/Documenti/spartiti/ly Aggressive-Lady.ly
GNU LilyPond 2.19.43
Processing `Aggressive-Lady.ly'
Parsing...
Aggressive-Lady.ly:2:10: error: cannot find file: `myStyle.ly'
(search path: 
`/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/svg/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/type1/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/otf/:/home/fede/.local/lilypond/usr/share/lilypond/current/scm:/home/fede/.local/lilypond/usr/share/lilypond/current/ps:/home/fede/.local/lilypond/usr/share/lilypond/current/ly:~/Documenti/spartiti/ly:')
\include
"myStyle.ly"
Aggressive-Lady.ly:13:19: error: unknown escaped string: `\I'

%


---

Sent from sourceforge.net because testlilyissues-a...@lists.sourceforge.net is 
subscribed to https://sourceforge.net/p/testlilyissues/issues/

To unsubscribe from further messages, a project admin can change settings at 
https://sourceforge.net/p/testlilyissues/admin/issues/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Testlilyissues-auto mailing list
testlilyissues-a...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/testlilyissues-auto


[Lilypond-auto] [LilyIssues-auto] [testlilyissues:issues] #4905 Documentation - --include requires absolute paths

2017-10-14 Thread Auto mailings of changes to Lily Issues via Testlilyissues-auto
- **labels**:  --> Fixed_2_21_0
- **status**: Started --> Fixed
- **Patch**: push -->  
- **Comment**:

~~~
author  James Lowe   
Sat, 14 Oct 2017 12:29:48 +0100 (12:29 +0100)
committer   James Lowe   
Sat, 14 Oct 2017 12:29:48 +0100 (12:29 +0100)
commit  8a781c6ad66cde327f903878847e5ec37d40bf24
~~~



---

** [issues:#4905] Documentation -   --include requires absolute paths**

**Status:** Fixed
**Labels:** Fixed_2_21_0 
**Created:** Fri Jun 24, 2016 06:58 PM UTC by Palmer Ralph
**Last Updated:** Sat Oct 14, 2017 10:52 AM UTC
**Owner:** pkx166h


Running.itely - warning when using the tilde char 

Added @warning about using the tilde char with the -I switch.

http://codereview.appspot.com/326700043

**

Federico Bruni wrote :

Should we say explicitly in the doc that -I or --include option requires 
absolute path(s)?
Paragraph to be modified is in Usage 1.2:

-I, --include=directory

   Add directory to the search path for input files.

   Multiple -I options may be given. The search will start in the first defined 
directory, and if the file to be included is not found the search will continue 
in subsequent directories.


Perhaps a warning like "~ cannot be used, use absolute path" may be also 
helpful.



$ ~/.local/bin/lilypond --include=~/Documenti/spartiti/ly Aggressive-Lady.ly
GNU LilyPond 2.19.43
Processing `Aggressive-Lady.ly'
Parsing...
Aggressive-Lady.ly:2:10: error: cannot find file: `myStyle.ly'
(search path: 
`/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/svg/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/type1/:/home/fede/.local/lilypond/usr/share/lilypond/current/fonts/otf/:/home/fede/.local/lilypond/usr/share/lilypond/current/scm:/home/fede/.local/lilypond/usr/share/lilypond/current/ps:/home/fede/.local/lilypond/usr/share/lilypond/current/ly:~/Documenti/spartiti/ly:')
\include
"myStyle.ly"
Aggressive-Lady.ly:13:19: error: unknown escaped string: `\I'

%


---

Sent from sourceforge.net because testlilyissues-a...@lists.sourceforge.net is 
subscribed to https://sourceforge.net/p/testlilyissues/issues/

To unsubscribe from further messages, a project admin can change settings at 
https://sourceforge.net/p/testlilyissues/admin/issues/options.  Or, if this is 
a mailing list, you can unsubscribe from the mailing list.--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Testlilyissues-auto mailing list
testlilyissues-a...@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/testlilyissues-auto