Re: [R] HTML help -- as a single document for the entire package

2016-04-06 Thread Holger Hoefling
Hi David,

thanks - I do have that as well. That is a good chance to clarify. The
regular help gives a *separate* page for every single function. The regular
pdf-manual gives one document for *all* functions in a package.

The nice thing about having a single html page for all functions in a
package would be that it is easily searchable in the browser, it is more
lightweight than a pdf and wouldn't be restricted by formatting based on
the notion that it has to be printable to a page on paper.

I was wondering if something like this exists ... and Duncan very quickly
answered that for me.

Thanks

Holger

On Wed, Apr 6, 2016 at 5:57 PM, David Winsemius 
wrote:

>
> > On Apr 6, 2016, at 2:37 AM, Duncan Murdoch 
> wrote:
> >
> > On 06/04/2016 4:17 AM, Holger Hoefling wrote:
> >> Hi,
> >>
> >> I was wondering if there was an equivalent to the pdf-manual for
> >> R-packages, but rendered as a single html page? I am looking for this
> as it
> >> would make reading easier as
> >> - no restriction to the standard paper width, but flowing to the browser
> >> window size
> >> - no page breaks
> >> - full text search across the entire manual.
> >
> > No, there isn't.
>
> My somewhat different understanding may simply be a reflection of a
> different operating system (given my inferior knowledge of the R ecosystems
> to that of Duncan). I run R in the R.app GUI on a Mac and the Help menu
> dropdown choice brings up links (in browser form) to local versions of the
> documents that I thought were  shipped with every new installation.
> Assuming your request is for an html version of "Writing R Extensions",
> then I get one with:
>
> http://127.0.0.1:15834/doc/manual/R-exts.html
>
> --
> David.
>
>
> > Duncan Murdoch
> >
> > __
> > R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> > https://stat.ethz.ch/mailman/listinfo/r-help
> > PLEASE do read the posting guide
> http://www.R-project.org/posting-guide.html
> > and provide commented, minimal, self-contained, reproducible code.
>
> David Winsemius
> Alameda, CA, USA
>
>

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] HTML help -- as a single document for the entire package

2016-04-06 Thread David L Carlson
It is not quite what you are asking for, but there are several online pdf to 
html conversion websites. I tried a simple package pdf file and it converted 
fine. The page numbers are still there, but it is a single continuous page.

-
David L Carlson
Department of Anthropology
Texas A&M University
College Station, TX 77840-4352


-Original Message-
From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Duncan Murdoch
Sent: Wednesday, April 6, 2016 4:38 AM
To: Holger Hoefling; R-Help mailing list
Subject: Re: [R] HTML help -- as a single document for the entire package

On 06/04/2016 4:17 AM, Holger Hoefling wrote:
> Hi,
>
> I was wondering if there was an equivalent to the pdf-manual for
> R-packages, but rendered as a single html page? I am looking for this as it
> would make reading easier as
> - no restriction to the standard paper width, but flowing to the browser
> window size
> - no page breaks
> - full text search across the entire manual.

No, there isn't.

Duncan Murdoch

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] HTML help -- as a single document for the entire package

2016-04-06 Thread Duncan Murdoch

On 06/04/2016 12:06 PM, Holger Hoefling wrote:

Hi David,

thanks - I do have that as well. That is a good chance to clarify. The 
regular help gives a *separate* page for every single function. The 
regular pdf-manual gives one document for *all* functions in a package.


The nice thing about having a single html page for all functions in a 
package would be that it is easily searchable in the browser, it is 
more lightweight than a pdf and wouldn't be restricted by formatting 
based on the notion that it has to be printable to a page on paper.


I was wondering if something like this exists ... and Duncan very 
quickly answered that for me.


If you wanted to write it yourself, you would need to modify the 
tools::Rd2HTML function, and write a wrapper that called it for every Rd 
page.  This would be mostly straightforward:  instead of working for 
just one file, it would need to loop over all of them; it would also 
need to handle links between topics differently than it currently does, 
because some of them would be internal links, others would be external.


The source for the function is in 
https://svn.r-project.org/R/trunk/src/library/tools/R/Rd2HTML.R.


Duncan Murdoch



Thanks

Holger

On Wed, Apr 6, 2016 at 5:57 PM, David Winsemius 
mailto:dwinsem...@comcast.net>> wrote:



> On Apr 6, 2016, at 2:37 AM, Duncan Murdoch
mailto:murdoch.dun...@gmail.com>> wrote:
>
> On 06/04/2016 4:17 AM, Holger Hoefling wrote:
>> Hi,
>>
>> I was wondering if there was an equivalent to the pdf-manual for
>> R-packages, but rendered as a single html page? I am looking
for this as it
>> would make reading easier as
>> - no restriction to the standard paper width, but flowing to
the browser
>> window size
>> - no page breaks
>> - full text search across the entire manual.
>
> No, there isn't.

My somewhat different understanding may simply be a reflection of
a different operating system (given my inferior knowledge of the R
ecosystems to that of Duncan). I run R in the R.app GUI on a Mac
and the Help menu dropdown choice brings up links (in browser
form) to local versions of the documents that I thought were 
shipped with every new installation. Assuming your request is for

an html version of "Writing R Extensions", then I get one with:

http://127.0.0.1:15834/doc/manual/R-exts.html

--
David.


> Duncan Murdoch
>
> __
> R-help@r-project.org  mailing list
-- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide
http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.

David Winsemius
Alameda, CA, USA




__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] HTML help -- as a single document for the entire package

2016-04-06 Thread David Winsemius

> On Apr 6, 2016, at 2:37 AM, Duncan Murdoch  wrote:
> 
> On 06/04/2016 4:17 AM, Holger Hoefling wrote:
>> Hi,
>> 
>> I was wondering if there was an equivalent to the pdf-manual for
>> R-packages, but rendered as a single html page? I am looking for this as it
>> would make reading easier as
>> - no restriction to the standard paper width, but flowing to the browser
>> window size
>> - no page breaks
>> - full text search across the entire manual.
> 
> No, there isn't.

My somewhat different understanding may simply be a reflection of a different 
operating system (given my inferior knowledge of the R ecosystems to that of 
Duncan). I run R in the R.app GUI on a Mac and the Help menu dropdown choice 
brings up links (in browser form) to local versions of the documents that I 
thought were  shipped with every new installation. Assuming your request is for 
an html version of "Writing R Extensions", then I get one with:

http://127.0.0.1:15834/doc/manual/R-exts.html

-- 
David.


> Duncan Murdoch
> 
> __
> R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.

David Winsemius
Alameda, CA, USA

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] HTML help -- as a single document for the entire package

2016-04-06 Thread Duncan Murdoch

On 06/04/2016 4:17 AM, Holger Hoefling wrote:

Hi,

I was wondering if there was an equivalent to the pdf-manual for
R-packages, but rendered as a single html page? I am looking for this as it
would make reading easier as
- no restriction to the standard paper width, but flowing to the browser
window size
- no page breaks
- full text search across the entire manual.


No, there isn't.

Duncan Murdoch

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] HTML help -- as a single document for the entire package

2016-04-06 Thread Holger Hoefling
Hi,

I was wondering if there was an equivalent to the pdf-manual for
R-packages, but rendered as a single html page? I am looking for this as it
would make reading easier as
- no restriction to the standard paper width, but flowing to the browser
window size
- no page breaks
- full text search across the entire manual.

Thanks

Holger

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Html help

2010-06-14 Thread Murray Jorgensen
Thanks very much, Duncan. I understand this better now. It takes a bit 
of getting used to but the prospect of some day getting graphic elements 
to help should make it worthwhile. (And I guess it saves on disk space 
by only generating the help pages as needed.)


Cheers,  Murray

On 15/06/2010 4:13 a.m., Duncan Murdoch wrote:

Murray Jorgensen wrote:

I have just installed R 2.11.1 on my XP laptop.

I like html help

[...]

How do I go about getting a local set of html help files?



Since 2.10.0, HTML help is generated on demand. It doesn't go off your
local computer, it works locally. This saves a bit of space (the HTML is
generated from the same source as the text is generated from), but the
main point is that it allows help pages to contain dynamic content. For
example, Romain Francois posted some demo code a while ago to allow the
display of graphics generated by R within help pages. (Unfortunately it
depended on a particular browser feature not supported by Internet
Explorer, so I'm going to need to put together something less elegant,
but that's life.)

Duncan Murdoch


--
Dr Murray Jorgensen  http://www.stats.waikato.ac.nz/Staff/maj.html
Department of Statistics, University of Waikato, Hamilton, New Zealand
Email: m...@waikato.ac.nzFax 7 838 4155
Phone  +64 7 838 4773 wkHome +64 7 825 0441   Mobile 021 0200 8350

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Html help

2010-06-14 Thread Duncan Murdoch

Murray Jorgensen wrote:

I have just installed R 2.11.1 on my XP laptop.

I like html help for browsing but text help for on-the-fly look-ups. I 
was a bit surprised when I was asked to choose between them during the 
installation. I chose text, thinking I could fix the html help later, 
which is what I am trying to do now.


Now when I ask for html help my browser goes to

'http://-ip-number-/doc/html/index.html'

instead of where I want on my computer:

C:\apps\R\R-2.11.1\doc\html\index.html

Now I can go where I want manually but then the package list on


C:\apps\R\R-2.11.1\doc\html\packages.html

does not include all the packages that I have installed and linked. I 
don't want to read my html help from the web because sometimes I am 
off-line or on a slow connection.


How do I go about getting a local set of html help files?

  


Since 2.10.0, HTML help is generated on demand.  It doesn't go off your 
local computer, it works locally.  This saves a bit of space (the HTML 
is generated from the same source as the text is generated from), but 
the main point is that it allows help pages to contain dynamic content.  
For example, Romain Francois posted some demo code a while ago to allow 
the display of graphics generated by R within help pages.  
(Unfortunately it depended on a particular browser feature not supported 
by Internet Explorer, so I'm going to need to put together something 
less elegant, but that's life.)


Duncan Murdoch

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Html help

2010-06-14 Thread Joris Meys
If the IP number is something like 127.0.0.1:x then you are on
your local computer.
Cheers
Joris

On Mon, Jun 14, 2010 at 1:33 PM, Murray Jorgensen  wrote:
> I have just installed R 2.11.1 on my XP laptop.
>
> I like html help for browsing but text help for on-the-fly look-ups. I was a
> bit surprised when I was asked to choose between them during the
> installation. I chose text, thinking I could fix the html help later, which
> is what I am trying to do now.
>
> Now when I ask for html help my browser goes to
>
> 'http://-ip-number-/doc/html/index.html'
>
> instead of where I want on my computer:
>
> C:\apps\R\R-2.11.1\doc\html\index.html
>
> Now I can go where I want manually but then the package list on
>
>
> C:\apps\R\R-2.11.1\doc\html\packages.html
>
> does not include all the packages that I have installed and linked. I don't
> want to read my html help from the web because sometimes I am off-line or on
> a slow connection.
>
> How do I go about getting a local set of html help files?
>
> Cheers,   Murray Jorgensen
>
> --
> Dr Murray Jorgensen      http://www.stats.waikato.ac.nz/Staff/maj.html
> Department of Statistics, University of Waikato, Hamilton, New Zealand
> Email: m...@waikato.ac.nz  majorgen...@ihug.co.nz        Fax 7 838 4155
> Phone  +64 7 838 4773 wk    Home +64 7 825 0441   Mobile 021 0200 8350
>
> __
> R-help@r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>



-- 
Joris Meys
Statistical consultant

Ghent University
Faculty of Bioscience Engineering
Department of Applied mathematics, biometrics and process control

tel : +32 9 264 59 87
joris.m...@ugent.be
---
Disclaimer : http://helpdesk.ugent.be/e-maildisclaimer.php

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] Html help

2010-06-14 Thread Murray Jorgensen

I have just installed R 2.11.1 on my XP laptop.

I like html help for browsing but text help for on-the-fly look-ups. I 
was a bit surprised when I was asked to choose between them during the 
installation. I chose text, thinking I could fix the html help later, 
which is what I am trying to do now.


Now when I ask for html help my browser goes to

'http://-ip-number-/doc/html/index.html'

instead of where I want on my computer:

C:\apps\R\R-2.11.1\doc\html\index.html

Now I can go where I want manually but then the package list on


C:\apps\R\R-2.11.1\doc\html\packages.html

does not include all the packages that I have installed and linked. I 
don't want to read my html help from the web because sometimes I am 
off-line or on a slow connection.


How do I go about getting a local set of html help files?

Cheers,   Murray Jorgensen

--
Dr Murray Jorgensen  http://www.stats.waikato.ac.nz/Staff/maj.html
Department of Statistics, University of Waikato, Hamilton, New Zealand
Email: m...@waikato.ac.nz  majorgen...@ihug.co.nzFax 7 838 4155
Phone  +64 7 838 4773 wkHome +64 7 825 0441   Mobile 021 0200 8350

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] html help not built

2010-04-07 Thread Duncan Murdoch

On 07/04/2010 11:19 AM, jgar...@ija.csic.es wrote:

Hi Duncan,
I must be misunderstanding something. It is not that I want them built at
installation time, but when I try to display the html help for any
function the html page is not built; e.g. cliking on the link to get() in
the base library, the message appears:

An error occurred while loading
file:///usr/local/lib64/R/library/base/html/get.html:
The file or folder /usr/local/lib64/R/library/base/html/get.html does not
exist.
  


It sounds as though you have an old library that will need to be rebuilt 
to work with 2.10.1.  The link in the base page should be to something like


http://127.0.0.1:26057/library/base/html/get.html

(the port number will vary), not to

file:///usr/local/lib64/R/library/base/html/get.html

Duncan Murdoch



Javier
---


> On 07/04/2010 10:49 AM, jgar...@ija.csic.es wrote:
>> Hi,
>>
>> I've just installed R 2.10.1 for linux, and html help has not been built
>> (just the index page of each package but not the documentation for the
>> individual functions in the packages.
>>
>> I cannot see any flag in the ./configure to set if html is going to be
>> build.
>>
>> Please could you tell me what should I do to biuld html files?
>
> Why would you want to build them before displaying them?  There are a
> few uses for that sort of thing (e.g. Jon Baron's site that RSiteSearch
> looks at), but you have to realize that you won't get the same files as
> would be displayed to a normal user, links won't necessarily work, etc.
>
> If you still want to do it, then just re-install all of your packages
> with the "--html" option.
>
> Duncan Murdoch
>



__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] html help not built

2010-04-07 Thread jgarcia
Hi Duncan,
I must be misunderstanding something. It is not that I want them built at
installation time, but when I try to display the html help for any
function the html page is not built; e.g. cliking on the link to get() in
the base library, the message appears:

An error occurred while loading
file:///usr/local/lib64/R/library/base/html/get.html:
The file or folder /usr/local/lib64/R/library/base/html/get.html does not
exist.

Javier
---


> On 07/04/2010 10:49 AM, jgar...@ija.csic.es wrote:
>> Hi,
>>
>> I've just installed R 2.10.1 for linux, and html help has not been built
>> (just the index page of each package but not the documentation for the
>> individual functions in the packages.
>>
>> I cannot see any flag in the ./configure to set if html is going to be
>> build.
>>
>> Please could you tell me what should I do to biuld html files?
>
> Why would you want to build them before displaying them?  There are a
> few uses for that sort of thing (e.g. Jon Baron's site that RSiteSearch
> looks at), but you have to realize that you won't get the same files as
> would be displayed to a normal user, links won't necessarily work, etc.
>
> If you still want to do it, then just re-install all of your packages
> with the "--html" option.
>
> Duncan Murdoch
>

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] html help not built

2010-04-07 Thread Duncan Murdoch

On 07/04/2010 10:49 AM, jgar...@ija.csic.es wrote:

Hi,

I've just installed R 2.10.1 for linux, and html help has not been built
(just the index page of each package but not the documentation for the
individual functions in the packages.

I cannot see any flag in the ./configure to set if html is going to be build.

Please could you tell me what should I do to biuld html files?


Why would you want to build them before displaying them?  There are a 
few uses for that sort of thing (e.g. Jon Baron's site that RSiteSearch 
looks at), but you have to realize that you won't get the same files as 
would be displayed to a normal user, links won't necessarily work, etc.


If you still want to do it, then just re-install all of your packages 
with the "--html" option.


Duncan Murdoch

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] html help not built

2010-04-07 Thread jgarcia
Hi,

I've just installed R 2.10.1 for linux, and html help has not been built
(just the index page of each package but not the documentation for the
individual functions in the packages.

I cannot see any flag in the ./configure to set if html is going to be build.

Please could you tell me what should I do to biuld html files?

Thanks and best regards,
Javier
---

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] HTML help missing?

2009-11-23 Thread Antje

Thanks a lot for the hint!

Antje



Duncan Murdoch wrote:

On 20/11/2009 7:11 AM, Antje wrote:

Hey there,

I'm running R 2.10 on Windows XP (Professional) and I was wondering 
where the HTML help window disappeared?
With earlier versions everything was fine. Now I get only this 
old-fashioned text windows without any links when I type

?some_function
Can anybody help me?

Edit the R_HOME/etc/Rprofile.site file to uncomment the line

options(help_type="html")

(or just install the patched version, this installer bug was 
discovered after release).


Duncan Murdoch



__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] HTML help missing?

2009-11-20 Thread Duncan Murdoch

On 20/11/2009 7:11 AM, Antje wrote:

Hey there,

I'm running R 2.10 on Windows XP (Professional) and I was wondering 
where the HTML help window disappeared?
With earlier versions everything was fine. Now I get only this 
old-fashioned text windows without any links when I type

?some_function
Can anybody help me?

Edit the R_HOME/etc/Rprofile.site file to uncomment the line

options(help_type="html")

(or just install the patched version, this installer bug was discovered 
after release).


Duncan Murdoch

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] HTML help missing?

2009-11-20 Thread Antje

Hey there,

I'm running R 2.10 on Windows XP (Professional) and I was wondering 
where the HTML help window disappeared?
With earlier versions everything was fine. Now I get only this 
old-fashioned text windows without any links when I type

?some_function
Can anybody help me?

Antje

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] HTML help search in R 2.6.0 v 2.6.1

2007-12-05 Thread Michael Bibo
Peter Dalgaard  biostat.ku.dk> writes:


> >  
> > Has something changed from 2.6.0 to 2.6.1 that may require JVM > 1.4.1?
> >  If 
> > so, I can use that information to request an upgrade of my JVM.
> >  
> >
> >   
> Hmm, could be. They got rebuilt on my system and committted at some 
> point in the 2.6.1 run-in. and that system has 1.5.0. I did check that 
> things still worked, but I didn't think the version would matter. The 
> actual Java code is unchanged, so you could copy the .class files over 
> from 2.6.0 (& let us know if it works)
> 
Excellent!  That worked.  Thanks, Peter.
If this is going to be a continuing issue for future versions, would the best 
advice be to upgrade JVM anyway, at least to 1.5.0?

Michael

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] HTML help search in R 2.6.0 v 2.6.1

2007-12-05 Thread Peter Dalgaard
Michael Bibo wrote:
> I am running R on a corporate Windows XP SP2 machine on which I do not
> have 
> administrator privileges or access to most settings in Control Panel. 
> R is 
> installed from my limited user account.  The version of the JVM I have
>
> installed is perhaps best described as antique:
>  
>   
>> system(paste("java -version"),show.output.on.console=T)
>> 
> java version "1.4.1"
> Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1-b21)
> Java HotSpot(TM) Client VM (build 1.4.1-b21, mixed mode)
>  
> The HTML help search applet has worked for all versions of R up to and
>
> including 2.6.0, but in 2.6.1 the java applet is not initialised
> ("Applet 
> SearchEngine notinited").  I have checked Appendix D of the admin & 
> installation manual, and the test java applet referred to does not
> load, 
> but the web page says that java 1.4.2 is required.  Other java applets
> do run 
> in the browser, including R 2.6.0 HTML help search, so I presume java
> is 
> enabled. 
>  
> Has something changed from 2.6.0 to 2.6.1 that may require JVM > 1.4.1?
>  If 
> so, I can use that information to request an upgrade of my JVM.
>  
>
>   
Hmm, could be. They got rebuilt on my system and committted at some 
point in the 2.6.1 run-in. and that system has 1.5.0. I did check that 
things still worked, but I didn't think the version would matter. The 
actual Java code is unchanged, so you could copy the .class files over 
from 2.6.0 (& let us know if it works)

-- 
   O__   Peter Dalgaard Øster Farimagsgade 5, Entr.B
  c/ /'_ --- Dept. of Biostatistics PO Box 2099, 1014 Cph. K
 (*) \(*) -- University of Copenhagen   Denmark  Ph:  (+45) 35327918
~~ - ([EMAIL PROTECTED])  FAX: (+45) 35327907

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


[R] HTML help search in R 2.6.0 v 2.6.1

2007-12-05 Thread Michael Bibo
I am running R on a corporate Windows XP SP2 machine on which I do not
have 
administrator privileges or access to most settings in Control Panel. 
R is 
installed from my limited user account.  The version of the JVM I have

installed is perhaps best described as antique:
 
> system(paste("java -version"),show.output.on.console=T)
java version "1.4.1"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.1-b21)
Java HotSpot(TM) Client VM (build 1.4.1-b21, mixed mode)
 
The HTML help search applet has worked for all versions of R up to and

including 2.6.0, but in 2.6.1 the java applet is not initialised
("Applet 
SearchEngine notinited").  I have checked Appendix D of the admin & 
installation manual, and the test java applet referred to does not
load, 
but the web page says that java 1.4.2 is required.  Other java applets
do run 
in the browser, including R 2.6.0 HTML help search, so I presume java
is 
enabled. 
 
Has something changed from 2.6.0 to 2.6.1 that may require JVM > 1.4.1?
 If 
so, I can use that information to request an upgrade of my JVM.
 
Michael Bibo
Research Officer
Queensland Health
 
[EMAIL PROTECTED]

*
This email, including any attachments sent with it, is
confidential and for the sole use of the intended recipient(s).
This confidentiality is not waived or lost, if you receive it and
you are not the intended recipient(s), or if it is transmitted/
received in error.

Any unauthorised use, alteration, disclosure, distribution or
review of this email is strictly prohibited.  The information
contained in this email, including any attachment sent with
it, may be subject to a statutory duty of confidentiality if it
relates to health service matters.

If you are not the intended recipient(s), or if you have
received this email in error, you are asked to immediately
notify the sender by telephone collect on Australia
+61 1800 198 175 or by return email.  You should also
delete this email, and any copies, from your computer
system network and destroy any hard copies produced.

If not an intended recipient of this email, you must not copy,
distribute or take any action(s) that relies on it; any form of
disclosure, modification, distribution and/or publication of this
email is also prohibited.

Although Queensland Health takes all reasonable steps to
ensure this email does not contain malicious software,
Queensland Health does not accept responsibility for the
consequences if any person's computer inadvertently suffers
any disruption to services, loss of information, harm or is
infected with a virus, other malicious computer programme or
code that may occur as a consequence of receiving this
email.

Unless stated otherwise, this email represents only the ...{{dropped:8}}

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.