Csound Csound-dev Csound-tekno Search About

[Csnd] Compressed HTML version of the manual

Date2012-09-27 05:55
Fromandy fillebrown
Subject[Csnd] Compressed HTML version of the manual
Howdy,

Is there an updated version of the manual in compressed html format?
The one I've got is pretty old, now, and I can't seem to find a newer
version.

Cheers,
~ andy.f

Date2012-09-27 07:44
FromFrancois PINOT
SubjectRe: [Csnd] Compressed HTML version of the manual
You can download the different packages of the manual from sourceforge:

http://sourceforge.net/projects/csound/files/csound5/csound5.18/manual/

Regards

Francois

2012/9/27 andy fillebrown <andy.fillebrown@gmail.com>
Howdy,

Is there an updated version of the manual in compressed html format?
The one I've got is pretty old, now, and I can't seem to find a newer
version.

Cheers,
~ andy.f


Send bugs reports to the Sourceforge bug tracker
            https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"



Date2012-09-27 11:32
Fromandy fillebrown
SubjectRe: [Csnd] Compressed HTML version of the manual
Thank you Francois.  I don't know how I missed the "manual" folder
when I was looking through the files section.  Doh!

Cheers,
~ andy.f



On Thu, Sep 27, 2012 at 2:44 AM, Francois PINOT  wrote:
> You can download the different packages of the manual from sourceforge:
>
> http://sourceforge.net/projects/csound/files/csound5/csound5.18/manual/
>
> Regards
>
> Francois
>
> 2012/9/27 andy fillebrown 
>>
>> Howdy,
>>
>> Is there an updated version of the manual in compressed html format?
>> The one I've got is pretty old, now, and I can't seem to find a newer
>> version.
>>
>> Cheers,
>> ~ andy.f
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>

Date2012-09-27 11:35
Fromandy fillebrown
SubjectRe: [Csnd] Compressed HTML version of the manual
Are there instructions posted for building the .chm file?

~ andy.f



On Thu, Sep 27, 2012 at 2:44 AM, Francois PINOT  wrote:
> You can download the different packages of the manual from sourceforge:
>
> http://sourceforge.net/projects/csound/files/csound5/csound5.18/manual/
>
> Regards
>
> Francois
>
> 2012/9/27 andy fillebrown 
>>
>> Howdy,
>>
>> Is there an updated version of the manual in compressed html format?
>> The one I've got is pretty old, now, and I can't seem to find a newer
>> version.
>>
>> Cheers,
>> ~ andy.f
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>

Date2012-09-27 12:18
FromSteven Yi
SubjectRe: [Csnd] Compressed HTML version of the manual
Hi Andy,

There's a make target:

htmlhelp: ${XSL_HTMLHELP} manual.xml $(SRCS)
        -mkdir -p ${HTMLHELP_DIR}
        xsltproc  --xinclude -o ${HTMLHELP_DIR}/ ${XSL_HTMLHELP} manual.xml
        cp images -R ${HTMLHELP_DIR}/
        cp examples -R ${HTMLHELP_DIR}/
        cp csound.css ${HTMLHELP_DIR}/
        rm -rf ${HTMLHELP_DIR}/images/CVS
        rm -rf ${HTMLHELP_DIR}/images/callouts/CVS
        rm -rf ${HTMLHELP_DIR}/examples/CVS
        hhc.exe ${HTMLHELP_DIR}/htmlhelp.hhp
        mv ${HTMLHELP_DIR}/htmlhelp.chm csound_manual.chm

You'll just need to hhc.exe in addition to the other tools for
building the manual and you should be good.

Cheers!
steven


On Thu, Sep 27, 2012 at 12:35 PM, andy fillebrown
 wrote:
> Are there instructions posted for building the .chm file?
>
> ~ andy.f
>
>
>
> On Thu, Sep 27, 2012 at 2:44 AM, Francois PINOT  wrote:
>> You can download the different packages of the manual from sourceforge:
>>
>> http://sourceforge.net/projects/csound/files/csound5/csound5.18/manual/
>>
>> Regards
>>
>> Francois
>>
>> 2012/9/27 andy fillebrown 
>>>
>>> Howdy,
>>>
>>> Is there an updated version of the manual in compressed html format?
>>> The one I've got is pretty old, now, and I can't seem to find a newer
>>> version.
>>>
>>> Cheers,
>>> ~ andy.f
>>>
>>>
>>> Send bugs reports to the Sourceforge bug tracker
>>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>> Discussions of bugs and features can be posted here
>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>> csound"
>>>
>>
>
>
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>

Date2012-09-27 16:35
Fromandy fillebrown
SubjectRe: [Csnd] Compressed HTML version of the manual
Thank you Steven.  I am reading that hhc.exe is included with Visual
Studio and I'd rather not download it just for hhc.exe.  When googling
hhc.exe I find htmlhelp.exe available from Microsoft.  Do you know if
htmlhelp.exe can be substituted for hhc.exe?

Cheers,
~ andy.f



On Thu, Sep 27, 2012 at 7:18 AM, Steven Yi  wrote:
> Hi Andy,
>
> There's a make target:
>
> htmlhelp: ${XSL_HTMLHELP} manual.xml $(SRCS)
>         -mkdir -p ${HTMLHELP_DIR}
>         xsltproc  --xinclude -o ${HTMLHELP_DIR}/ ${XSL_HTMLHELP} manual.xml
>         cp images -R ${HTMLHELP_DIR}/
>         cp examples -R ${HTMLHELP_DIR}/
>         cp csound.css ${HTMLHELP_DIR}/
>         rm -rf ${HTMLHELP_DIR}/images/CVS
>         rm -rf ${HTMLHELP_DIR}/images/callouts/CVS
>         rm -rf ${HTMLHELP_DIR}/examples/CVS
>         hhc.exe ${HTMLHELP_DIR}/htmlhelp.hhp
>         mv ${HTMLHELP_DIR}/htmlhelp.chm csound_manual.chm
>
> You'll just need to hhc.exe in addition to the other tools for
> building the manual and you should be good.
>
> Cheers!
> steven
>
>
> On Thu, Sep 27, 2012 at 12:35 PM, andy fillebrown
>  wrote:
>> Are there instructions posted for building the .chm file?
>>
>> ~ andy.f
>>
>>
>>
>> On Thu, Sep 27, 2012 at 2:44 AM, Francois PINOT  wrote:
>>> You can download the different packages of the manual from sourceforge:
>>>
>>> http://sourceforge.net/projects/csound/files/csound5/csound5.18/manual/
>>>
>>> Regards
>>>
>>> Francois
>>>
>>> 2012/9/27 andy fillebrown 
>>>>
>>>> Howdy,
>>>>
>>>> Is there an updated version of the manual in compressed html format?
>>>> The one I've got is pretty old, now, and I can't seem to find a newer
>>>> version.
>>>>
>>>> Cheers,
>>>> ~ andy.f
>>>>
>>>>
>>>> Send bugs reports to the Sourceforge bug tracker
>>>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>> Discussions of bugs and features can be posted here
>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>>> csound"
>>>>
>>>
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>>
>
>
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>

Date2012-09-27 16:59
FromSteven Yi
SubjectRe: [Csnd] Compressed HTML version of the manual
Hi Andy,

I don't know.  I haven't been a regular Windows user in a while.
Perhaps someone will know where to get hhc.exe or if htmlhelp.exe will
work.

Thanks,
steven


On Thu, Sep 27, 2012 at 5:35 PM, andy fillebrown
 wrote:
> Thank you Steven.  I am reading that hhc.exe is included with Visual
> Studio and I'd rather not download it just for hhc.exe.  When googling
> hhc.exe I find htmlhelp.exe available from Microsoft.  Do you know if
> htmlhelp.exe can be substituted for hhc.exe?
>
> Cheers,
> ~ andy.f
>
>
>
> On Thu, Sep 27, 2012 at 7:18 AM, Steven Yi  wrote:
>> Hi Andy,
>>
>> There's a make target:
>>
>> htmlhelp: ${XSL_HTMLHELP} manual.xml $(SRCS)
>>         -mkdir -p ${HTMLHELP_DIR}
>>         xsltproc  --xinclude -o ${HTMLHELP_DIR}/ ${XSL_HTMLHELP} manual.xml
>>         cp images -R ${HTMLHELP_DIR}/
>>         cp examples -R ${HTMLHELP_DIR}/
>>         cp csound.css ${HTMLHELP_DIR}/
>>         rm -rf ${HTMLHELP_DIR}/images/CVS
>>         rm -rf ${HTMLHELP_DIR}/images/callouts/CVS
>>         rm -rf ${HTMLHELP_DIR}/examples/CVS
>>         hhc.exe ${HTMLHELP_DIR}/htmlhelp.hhp
>>         mv ${HTMLHELP_DIR}/htmlhelp.chm csound_manual.chm
>>
>> You'll just need to hhc.exe in addition to the other tools for
>> building the manual and you should be good.
>>
>> Cheers!
>> steven
>>
>>
>> On Thu, Sep 27, 2012 at 12:35 PM, andy fillebrown
>>  wrote:
>>> Are there instructions posted for building the .chm file?
>>>
>>> ~ andy.f
>>>
>>>
>>>
>>> On Thu, Sep 27, 2012 at 2:44 AM, Francois PINOT  wrote:
>>>> You can download the different packages of the manual from sourceforge:
>>>>
>>>> http://sourceforge.net/projects/csound/files/csound5/csound5.18/manual/
>>>>
>>>> Regards
>>>>
>>>> Francois
>>>>
>>>> 2012/9/27 andy fillebrown 
>>>>>
>>>>> Howdy,
>>>>>
>>>>> Is there an updated version of the manual in compressed html format?
>>>>> The one I've got is pretty old, now, and I can't seem to find a newer
>>>>> version.
>>>>>
>>>>> Cheers,
>>>>> ~ andy.f
>>>>>
>>>>>
>>>>> Send bugs reports to the Sourceforge bug tracker
>>>>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>>> Discussions of bugs and features can be posted here
>>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>>>> csound"
>>>>>
>>>>
>>>
>>>
>>> Send bugs reports to the Sourceforge bug tracker
>>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>> Discussions of bugs and features can be posted here
>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>>>
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>>
>
>
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>

Date2012-09-27 17:17
Fromandy fillebrown
SubjectRe: [Csnd] Compressed HTML version of the manual
Ok, no problem.  I'll probably give it a try myself in the next few
days and report back.

Cheers,
~ andy.f



On Thu, Sep 27, 2012 at 11:59 AM, Steven Yi  wrote:
> Hi Andy,
>
> I don't know.  I haven't been a regular Windows user in a while.
> Perhaps someone will know where to get hhc.exe or if htmlhelp.exe will
> work.
>
> Thanks,
> steven
>
>
> On Thu, Sep 27, 2012 at 5:35 PM, andy fillebrown
>  wrote:
>> Thank you Steven.  I am reading that hhc.exe is included with Visual
>> Studio and I'd rather not download it just for hhc.exe.  When googling
>> hhc.exe I find htmlhelp.exe available from Microsoft.  Do you know if
>> htmlhelp.exe can be substituted for hhc.exe?
>>
>> Cheers,
>> ~ andy.f
>>
>>
>>
>> On Thu, Sep 27, 2012 at 7:18 AM, Steven Yi  wrote:
>>> Hi Andy,
>>>
>>> There's a make target:
>>>
>>> htmlhelp: ${XSL_HTMLHELP} manual.xml $(SRCS)
>>>         -mkdir -p ${HTMLHELP_DIR}
>>>         xsltproc  --xinclude -o ${HTMLHELP_DIR}/ ${XSL_HTMLHELP} manual.xml
>>>         cp images -R ${HTMLHELP_DIR}/
>>>         cp examples -R ${HTMLHELP_DIR}/
>>>         cp csound.css ${HTMLHELP_DIR}/
>>>         rm -rf ${HTMLHELP_DIR}/images/CVS
>>>         rm -rf ${HTMLHELP_DIR}/images/callouts/CVS
>>>         rm -rf ${HTMLHELP_DIR}/examples/CVS
>>>         hhc.exe ${HTMLHELP_DIR}/htmlhelp.hhp
>>>         mv ${HTMLHELP_DIR}/htmlhelp.chm csound_manual.chm
>>>
>>> You'll just need to hhc.exe in addition to the other tools for
>>> building the manual and you should be good.
>>>
>>> Cheers!
>>> steven
>>>
>>>
>>> On Thu, Sep 27, 2012 at 12:35 PM, andy fillebrown
>>>  wrote:
>>>> Are there instructions posted for building the .chm file?
>>>>
>>>> ~ andy.f
>>>>
>>>>
>>>>
>>>> On Thu, Sep 27, 2012 at 2:44 AM, Francois PINOT  wrote:
>>>>> You can download the different packages of the manual from sourceforge:
>>>>>
>>>>> http://sourceforge.net/projects/csound/files/csound5/csound5.18/manual/
>>>>>
>>>>> Regards
>>>>>
>>>>> Francois
>>>>>
>>>>> 2012/9/27 andy fillebrown 
>>>>>>
>>>>>> Howdy,
>>>>>>
>>>>>> Is there an updated version of the manual in compressed html format?
>>>>>> The one I've got is pretty old, now, and I can't seem to find a newer
>>>>>> version.
>>>>>>
>>>>>> Cheers,
>>>>>> ~ andy.f
>>>>>>
>>>>>>
>>>>>> Send bugs reports to the Sourceforge bug tracker
>>>>>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>>>> Discussions of bugs and features can be posted here
>>>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>>>>> csound"
>>>>>>
>>>>>
>>>>
>>>>
>>>> Send bugs reports to the Sourceforge bug tracker
>>>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>> Discussions of bugs and features can be posted here
>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>>>>
>>>
>>>
>>> Send bugs reports to the Sourceforge bug tracker
>>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>> Discussions of bugs and features can be posted here
>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>>>
>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>>
>
>
> Send bugs reports to the Sourceforge bug tracker
>             https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>

Date2012-09-27 21:02
FromPINOT Francois
SubjectRe: [Csnd] Compressed HTML version of the manual
Hi Andy,

htmlhelp.exe is a setup program. When you launch it, it will install 
hhc.exe and all the stuff around in a directory called 'HTML Help 
Workshop', in the Program Files directory.

Regards

Francois

Le 27/09/2012 18:17, andy fillebrown a écrit :
> Ok, no problem.  I'll probably give it a try myself in the next few
> days and report back.
>
> Cheers,
> ~ andy.f
>
>
>
> On Thu, Sep 27, 2012 at 11:59 AM, Steven Yi  wrote:
>> Hi Andy,
>>
>> I don't know.  I haven't been a regular Windows user in a while.
>> Perhaps someone will know where to get hhc.exe or if htmlhelp.exe will
>> work.
>>
>> Thanks,
>> steven
>>
>>
>> On Thu, Sep 27, 2012 at 5:35 PM, andy fillebrown
>>  wrote:
>>> Thank you Steven.  I am reading that hhc.exe is included with Visual
>>> Studio and I'd rather not download it just for hhc.exe.  When googling
>>> hhc.exe I find htmlhelp.exe available from Microsoft.  Do you know if
>>> htmlhelp.exe can be substituted for hhc.exe?
>>>
>>> Cheers,
>>> ~ andy.f
>>>
>>>
>>>
>>> On Thu, Sep 27, 2012 at 7:18 AM, Steven Yi  wrote:
>>>> Hi Andy,
>>>>
>>>> There's a make target:
>>>>
>>>> htmlhelp: ${XSL_HTMLHELP} manual.xml $(SRCS)
>>>>          -mkdir -p ${HTMLHELP_DIR}
>>>>          xsltproc  --xinclude -o ${HTMLHELP_DIR}/ ${XSL_HTMLHELP} manual.xml
>>>>          cp images -R ${HTMLHELP_DIR}/
>>>>          cp examples -R ${HTMLHELP_DIR}/
>>>>          cp csound.css ${HTMLHELP_DIR}/
>>>>          rm -rf ${HTMLHELP_DIR}/images/CVS
>>>>          rm -rf ${HTMLHELP_DIR}/images/callouts/CVS
>>>>          rm -rf ${HTMLHELP_DIR}/examples/CVS
>>>>          hhc.exe ${HTMLHELP_DIR}/htmlhelp.hhp
>>>>          mv ${HTMLHELP_DIR}/htmlhelp.chm csound_manual.chm
>>>>
>>>> You'll just need to hhc.exe in addition to the other tools for
>>>> building the manual and you should be good.
>>>>
>>>> Cheers!
>>>> steven
>>>>
>>>>
>>>> On Thu, Sep 27, 2012 at 12:35 PM, andy fillebrown
>>>>  wrote:
>>>>> Are there instructions posted for building the .chm file?
>>>>>
>>>>> ~ andy.f
>>>>>
>>>>>
>>>>>
>>>>> On Thu, Sep 27, 2012 at 2:44 AM, Francois PINOT  wrote:
>>>>>> You can download the different packages of the manual from sourceforge:
>>>>>>
>>>>>> http://sourceforge.net/projects/csound/files/csound5/csound5.18/manual/
>>>>>>
>>>>>> Regards
>>>>>>
>>>>>> Francois
>>>>>>
>>>>>> 2012/9/27 andy fillebrown 
>>>>>>> Howdy,
>>>>>>>
>>>>>>> Is there an updated version of the manual in compressed html format?
>>>>>>> The one I've got is pretty old, now, and I can't seem to find a newer
>>>>>>> version.
>>>>>>>
>>>>>>> Cheers,
>>>>>>> ~ andy.f
>>>>>>>
>>>>>>>
>>>>>>> Send bugs reports to the Sourceforge bug tracker
>>>>>>>              https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>>>>> Discussions of bugs and features can be posted here
>>>>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>>>>>> csound"
>>>>>>>
>>>>>
>>>>> Send bugs reports to the Sourceforge bug tracker
>>>>>              https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>>> Discussions of bugs and features can be posted here
>>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>>>>>
>>>>
>>>> Send bugs reports to the Sourceforge bug tracker
>>>>              https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>> Discussions of bugs and features can be posted here
>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>>>>
>>>
>>> Send bugs reports to the Sourceforge bug tracker
>>>              https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>> Discussions of bugs and features can be posted here
>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>              https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>>
>
> Send bugs reports to the Sourceforge bug tracker
>              https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
>


Date2012-09-27 22:04
Fromandy fillebrown
SubjectRe: [Csnd] Compressed HTML version of the manual
Heh, I hadn't considered that possibility.  Linux is apparently
ruining my Windows chops.

Cheers,
~ andy.f



On Thu, Sep 27, 2012 at 4:02 PM, PINOT Francois  wrote:
> Hi Andy,
>
> htmlhelp.exe is a setup program. When you launch it, it will install hhc.exe
> and all the stuff around in a directory called 'HTML Help Workshop', in the
> Program Files directory.
>
> Regards
>
> Francois
>
> Le 27/09/2012 18:17, andy fillebrown a écrit :
>
>> Ok, no problem.  I'll probably give it a try myself in the next few
>> days and report back.
>>
>> Cheers,
>> ~ andy.f
>>
>>
>>
>> On Thu, Sep 27, 2012 at 11:59 AM, Steven Yi  wrote:
>>>
>>> Hi Andy,
>>>
>>> I don't know.  I haven't been a regular Windows user in a while.
>>> Perhaps someone will know where to get hhc.exe or if htmlhelp.exe will
>>> work.
>>>
>>> Thanks,
>>> steven
>>>
>>>
>>> On Thu, Sep 27, 2012 at 5:35 PM, andy fillebrown
>>>  wrote:
>>>>
>>>> Thank you Steven.  I am reading that hhc.exe is included with Visual
>>>> Studio and I'd rather not download it just for hhc.exe.  When googling
>>>> hhc.exe I find htmlhelp.exe available from Microsoft.  Do you know if
>>>> htmlhelp.exe can be substituted for hhc.exe?
>>>>
>>>> Cheers,
>>>> ~ andy.f
>>>>
>>>>
>>>>
>>>> On Thu, Sep 27, 2012 at 7:18 AM, Steven Yi  wrote:
>>>>>
>>>>> Hi Andy,
>>>>>
>>>>> There's a make target:
>>>>>
>>>>> htmlhelp: ${XSL_HTMLHELP} manual.xml $(SRCS)
>>>>>          -mkdir -p ${HTMLHELP_DIR}
>>>>>          xsltproc  --xinclude -o ${HTMLHELP_DIR}/ ${XSL_HTMLHELP}
>>>>> manual.xml
>>>>>          cp images -R ${HTMLHELP_DIR}/
>>>>>          cp examples -R ${HTMLHELP_DIR}/
>>>>>          cp csound.css ${HTMLHELP_DIR}/
>>>>>          rm -rf ${HTMLHELP_DIR}/images/CVS
>>>>>          rm -rf ${HTMLHELP_DIR}/images/callouts/CVS
>>>>>          rm -rf ${HTMLHELP_DIR}/examples/CVS
>>>>>          hhc.exe ${HTMLHELP_DIR}/htmlhelp.hhp
>>>>>          mv ${HTMLHELP_DIR}/htmlhelp.chm csound_manual.chm
>>>>>
>>>>> You'll just need to hhc.exe in addition to the other tools for
>>>>> building the manual and you should be good.
>>>>>
>>>>> Cheers!
>>>>> steven
>>>>>
>>>>>
>>>>> On Thu, Sep 27, 2012 at 12:35 PM, andy fillebrown
>>>>>  wrote:
>>>>>>
>>>>>> Are there instructions posted for building the .chm file?
>>>>>>
>>>>>> ~ andy.f
>>>>>>
>>>>>>
>>>>>>
>>>>>> On Thu, Sep 27, 2012 at 2:44 AM, Francois PINOT 
>>>>>> wrote:
>>>>>>>
>>>>>>> You can download the different packages of the manual from
>>>>>>> sourceforge:
>>>>>>>
>>>>>>>
>>>>>>> http://sourceforge.net/projects/csound/files/csound5/csound5.18/manual/
>>>>>>>
>>>>>>> Regards
>>>>>>>
>>>>>>> Francois
>>>>>>>
>>>>>>> 2012/9/27 andy fillebrown 
>>>>>>>>
>>>>>>>> Howdy,
>>>>>>>>
>>>>>>>> Is there an updated version of the manual in compressed html format?
>>>>>>>> The one I've got is pretty old, now, and I can't seem to find a
>>>>>>>> newer
>>>>>>>> version.
>>>>>>>>
>>>>>>>> Cheers,
>>>>>>>> ~ andy.f
>>>>>>>>
>>>>>>>>
>>>>>>>> Send bugs reports to the Sourceforge bug tracker
>>>>>>>>
>>>>>>>> https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>>>>>> Discussions of bugs and features can be posted here
>>>>>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body
>>>>>>>> "unsubscribe
>>>>>>>> csound"
>>>>>>>>
>>>>>>
>>>>>> Send bugs reports to the Sourceforge bug tracker
>>>>>>
>>>>>> https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>>>> Discussions of bugs and features can be posted here
>>>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body
>>>>>> "unsubscribe csound"
>>>>>>
>>>>>
>>>>> Send bugs reports to the Sourceforge bug tracker
>>>>>
>>>>> https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>>> Discussions of bugs and features can be posted here
>>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body
>>>>> "unsubscribe csound"
>>>>>
>>>>
>>>> Send bugs reports to the Sourceforge bug tracker
>>>>              https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>>> Discussions of bugs and features can be posted here
>>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>>> csound"
>>>>
>>>
>>> Send bugs reports to the Sourceforge bug tracker
>>>              https://sourceforge.net/tracker/?group_id=81968&atid=564599
>>> Discussions of bugs and features can be posted here
>>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>>> csound"
>>>
>>
>> Send bugs reports to the Sourceforge bug tracker
>>              https://sourceforge.net/tracker/?group_id=81968&atid=564599
>> Discussions of bugs and features can be posted here
>> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
>> csound"
>>
>
>
>
> Send bugs reports to the Sourceforge bug tracker
>            https://sourceforge.net/tracker/?group_id=81968&atid=564599
> Discussions of bugs and features can be posted here
> To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe
> csound"
>