lilypond web site

2007-03-02 Thread Ian Stirling
  I clicked on the W3C icon at the bottom of the home page
and was shown ten errors by the Markup Validation Service.

Ian
--


___
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel


Re: lilypond web site

2007-03-02 Thread Francisco Vila
El vie, 02 de mar de 2007, a las 01:29:42 -0500, Ian Stirling dijo:
   I clicked on the W3C icon at the bottom of the home page
 and was shown ten errors by the Markup Validation Service.

Besides that, IMO the texinfo generated pages have much a '80s look,
just change the inline style information to contain something like

!--

body {font-family: sans, helvetica;
padding: 20px;
font-size: 14px;}
a {color: #00d;}
a:hover, a:active {text-decoration:none;}
a:visited {color: #600;}

(...)
--

and see what happens.

-- 
Francisco Vila Doncel. Badajoz (Spain)
http://www.paconet.org


___
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel


Re: Missing quote in developer web site code

2007-03-02 Thread Graham Percival

Kevin Dalley wrote:

The end quote around But I am not brilliant! is mangled.  Here's a
suggested change to the html:


Thanks, applied!

Cheers,
- Graham


___
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel


Re: lilypond web site

2007-03-02 Thread Graham Percival

Ian Stirling wrote:

  I clicked on the W3C icon at the bottom of the home page
and was shown ten errors by the Markup Validation Service.


Thanks for the warning.

The errors seem to be in the News items, but I don't know enough about 
how they're generated.  Anybody want to take a look at this?  It should 
be fairly standard HTML, and we welcome any patches.


Cheers,
- Graham


___
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel


Re: lilypond web site

2007-03-02 Thread Graham Percival

Francisco Vila wrote:

El vie, 02 de mar de 2007, a las 01:29:42 -0500, Ian Stirling dijo:

  I clicked on the W3C icon at the bottom of the home page
and was shown ten errors by the Markup Validation Service.


Besides that, IMO the texinfo generated pages have much a '80s look,
just change the inline style information to contain something like


The texinfo pages are generated automagically, so I'm not going to 
change them manually.  These changes can probably be added to the 
texinfo sources; could you look up how to do it and let me know?


(that said, I dislike specifying colors on websites, so I'd rather not 
have the color in there)


Cheers,
- Graham


___
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel


Re: lilypond web site

2007-03-02 Thread Joe Neeman
On Saturday 03 March 2007 10:26, Graham Percival wrote:
 Ian Stirling wrote:
I clicked on the W3C icon at the bottom of the home page
  and was shown ten errors by the Markup Validation Service.

 Thanks for the warning.

 The errors seem to be in the News items, but I don't know enough about
 how they're generated.  Anybody want to take a look at this?  It should
 be fairly standard HTML, and we welcome any patches.

The only errors seem to be that ampersands in the URLs are written as '' 
instead of as 'amp;'. To fix it, you'd need to check out the web/master 
branch and fix the file site/news.ihtml. I'd do it, but my computer isn't set 
up for lilyponding just yet.


___
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel


Re: lilypond web site

2007-03-02 Thread Graham Percival

Joe Neeman wrote:
The only errors seem to be that ampersands in the URLs are written as '' 
instead of as 'amp;'. To fix it, you'd need to check out the web/master 
branch and fix the file site/news.ihtml. I'd do it, but my computer isn't set 
up for lilyponding just yet.


OK, thanks.  Fixed now.

Cheers,
- Graham


___
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel


Memory leaks again

2007-03-02 Thread Graham Percival
I know that Han-Wen fixed a huge number of memory leaks sometime around 
version 2.11.12; I think a few have crept back in.  I was just compiling 
the docs, and lilypond's memory footprint went above 300 megs (I stopped 
it then and restarted it).  I have no definite numbers, but I'm pretty 
certain that lilypond didn't use that much memory when I was compiling 
the docs a few weeks ago (with 2.11.18).


Cheers,
- Graham


___
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel


Support for diatonic accordeon tablature

2007-03-02 Thread wim philipsen

Hi,

I hacked together an engraver for diatonic accordion. Its based on the 
guitar tab engraver. It generates row/button and bellow direction info.


Here is a link to the output generated for the example below:

http://www.maak-t.com/nohant2.pdf

Do you think there would be a wider interest? If so I can clean it up 
and bring it up to the latest version.


Wim

===

\version 2.9.29
#(set-default-paper-size a4 )
\paper {
  ragged-right = ##f
}

push = \set DiatoTabStaff.diatoDirection = #1
pull = \set DiatoTabStaff.diatoDirection = #-1
rins = \set DiatoTabStaff.diatoRow = #0
rmid = \set DiatoTabStaff.diatoRow = #1
rout = \set DiatoTabStaff.diatoRow = #2
rany = \set DiatoTabStaff.diatoRow = #-1

frag = {
  \relative  {
\key d \minor
\time 2/4
\repeat volta 2 {
  \pull
  d8. e16 f8 g | a2 |
  a8 d cis d | a4. a8 |
  bes8. a16 g8 e | f8. e16 d8 f |
  \push
  e d e f |
  \pull
  d2
}
\repeat volta 2 {
  a'8. g16 f8 g | a8. g16 f8 g |
  a8 g a bes |
  a16 bes a g f8 g |
  a8. g16 f8 g | a8 g a bes |
  \push
  a16 bes a g f8 e |
  \pull
  d2
}
  }


}
\score {
  \new StaffGroup
  

\new Staff { \frag }
\new DiatoTabStaff { \frag }
\new ChordNames \with {
} \chordmode {
  d:min d:min d:min d:min g:min d:min a:7 d:min
  d:min d:min d:min d:min d:min d:min a:7 d:min

}
  


  \midi { }
  \layout { }
}


___
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel


tracking two git branches at once

2007-03-02 Thread Graham Percival
Is there a way to keep two branches on my filesystem at once?  Err, this 
is probably a bad way of phrasing the question, so I'll just describe 
the problem:


Most of the time I track master.  I have the documentation built, so 
whenever I make a change it only takes a few minutes to compile the 
changed the files.


Occasionally I want to make a one-line change to web/master.  If I just 
do git checkout web/master, then I get a weird mixture of master and 
web/master (because git doesn't remove my Documentation/ because I have 
compiled files in there).  I can avoid this weird mixture by deleting 
all the files before checking out the new branch, but then when I go 
back to master, it takes me an hour to compile all the docs.  As a 
result, I tend to wait for a week or two before making changes to 
web/master.


Can I have a pair of directories like
lily-main/master
lily-main/web

which track different branches of git?  (ie without downloading all 
changes twice)


Cheers,
- Graham


___
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel


Re: Support for diatonic accordeon tablature

2007-03-02 Thread Cameron Horsburgh
On Fri, Mar 02, 2007 at 09:47:16PM -0700, wim philipsen wrote:
 Hi,
 
 I hacked together an engraver for diatonic accordion. Its based on the 
 guitar tab engraver. It generates row/button and bellow direction info.
 
 Here is a link to the output generated for the example below:
 
 http://www.maak-t.com/nohant2.pdf
 
 Do you think there would be a wider interest? If so I can clean it up 
 and bring it up to the latest version.
 
 Wim
 

This looks rather interesting. I have two suggestions regarding what
you could do with it.

First, you could submit it to the LilyPond Snippet Repository. There
is already at least one example of accordion notation there, although
that's qute different to what you've done. You can do this by going to
http://lsr.dsi.unimi.it/ and clicking on 'Contributing'.

Second, you could write a page for the official documentation. There's
a whole chapter (chapter 7) devoted to instrument specific issues. Go
to http://lilypond.org/web/devel/participating/documentation-adding and
follow the instructions.

Have fun!

-- 

=
Cameron Horsburgh

=



___
lilypond-devel mailing list
lilypond-devel@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-devel