Skip to content

Commit

Permalink
no ISBNs for help pages and manuals
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.r-project.org/R/trunk@62412 00db46b3-68df-0310-9c12-caf00c1e9a41
  • Loading branch information
leisch committed Mar 26, 2013
1 parent 7ba53ee commit d7d26a0
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 17 deletions.
4 changes: 4 additions & 0 deletions doc/NEWS.Rd
Expand Up @@ -974,6 +974,10 @@
in the installer is now the full reference index, including all
base and recommended packages.

\item \R help pages and manuals have no ISBNs because ISBN
rules no longer allow constantly changing content to be assigned
an ISBN.

\item The Windows installer no longer installs a Start Menu
link to the static help pages; as most pages are generated
dynamically, this led to a lot of broken links.
Expand Down
14 changes: 7 additions & 7 deletions doc/manual/R-defs.texi
Expand Up @@ -63,11 +63,11 @@ except that this permission notice may be stated in a translation
approved by the R Core Team.
@end macro
@set ISBN-FAQ ISBN 3-900051-08-9
@set ISBN-admin ISBN 3-900051-09-7
@set ISBN-data ISBN 3-900051-10-0
@set ISBN-exts ISBN 3-900051-11-9
@set ISBN-intro ISBN 3-900051-12-7
@set ISBN-lang ISBN 3-900051-13-5
@set ISBN-ints ISBN 3-900051-14-3
@set ISBN-FAQ
@set ISBN-admin
@set ISBN-data
@set ISBN-exts
@set ISBN-intro
@set ISBN-lang
@set ISBN-ints
2 changes: 0 additions & 2 deletions doc/manual/refman.top
Expand Up @@ -73,8 +73,6 @@
welcome to redistribute it under the terms of the GNU General Public
License. For more information about these matters, see
\textsf{http://www.gnu.org/copyleft/gpl.html}.
\par\bigskip\noindent
ISBN 3-900051-07-0
\end{titlepage}

\pagenumbering{roman}
Expand Down
3 changes: 1 addition & 2 deletions src/library/base/inst/CITATION
Expand Up @@ -4,14 +4,13 @@ bibentry("Manual",
organization = "R Foundation for Statistical Computing",
address = "Vienna, Austria",
year = version$year,
note = "{ISBN} 3-900051-07-0",
url = "http://www.R-project.org/",

textVersion =
paste("R Core Team (", version$year, "). ",
"R: A language and environment for statistical computing. ",
"R Foundation for Statistical Computing, Vienna, Austria. ",
"ISBN 3-900051-07-0, URL http://www.R-project.org/.",
"URL http://www.R-project.org/.",
sep=""),

mheader = "To cite R in publications use:",
Expand Down
1 change: 0 additions & 1 deletion src/library/tools/man/bibstyle.Rd
Expand Up @@ -109,7 +109,6 @@ c(bibentry(bibtype = "manual",
organization = "R Foundation for Statistical Computing",
address = "Vienna, Austria",
year = 2013,
isbn = "3-900051-07-0",
url = "http://www.R-project.org"),
bibentry(bibtype = "article",
author = c(person(c("George", "E.", "P."), "Box"),
Expand Down
3 changes: 1 addition & 2 deletions src/library/utils/man/bibentry.Rd
Expand Up @@ -171,8 +171,7 @@ rref <- bibentry(
author = person("R Core Team"),
organization = "R Foundation for Statistical Computing",
address = "Vienna, Austria",
year = 2012,
isbn = "3-900051-07-0",
year = 2013,
url = "http://www.R-project.org/")

## Different printing styles
Expand Down
3 changes: 1 addition & 2 deletions src/library/utils/man/cite.Rd
Expand Up @@ -101,8 +101,7 @@ rref <- bibentry(
author = person("R Core Team"),
organization = "R Foundation for Statistical Computing",
address = "Vienna, Austria",
year = 2012,
isbn = "3-900051-07-0",
year = 2013,
url = "http://www.R-project.org/",
key = "R")

Expand Down
2 changes: 1 addition & 1 deletion src/main/version.c
Expand Up @@ -138,7 +138,7 @@ void attribute_hidden PrintVersion_part_1(char *s)
}
SPRINTF_2("\nCopyright (C) %s The R Foundation for Statistical Computing\n",
R_YEAR);
strcat(s, "ISBN 3-900051-07-0\n");
/* strcat(s, "ISBN 3-900051-07-0\n"); */
SPRINTF_2("Platform: %s", R_PLATFORM);
if(strlen(R_ARCH)) { SPRINTF_2("/%s", R_ARCH); }
SPRINTF_2(" (%d-bit)\n", 8*(int)sizeof(void *));
Expand Down

0 comments on commit d7d26a0

Please sign in to comment.