1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
# 2022-05-22 - Version 2.3.3
- Fix HTML.ftable failing when there are no column variables
- Fix returning results, invisibly
# 2016-06-23 - Version 2.3.2
- Fix error on pqR due to '..' instead of '...'.
# 2014-09-21 - Version 2.3.1
- Fixed message "Warning in formatC(Signif) : class of 'x' was discarded"
- Fixed problem looking up objects in Sweave. R Code inside
Sweave files is now evaluated in .GlobalEnv, again, as
before version 2.3.0.
# 2014-09-06 - Version 2.3
- API BREAK: Make package conform to new CRAN policies.
- .HTML.file is no longer stored in the global environment:
use HTMLSetFile() and HTMLGetFile() instead of modifying it directly.
- .HTMLenv is no longer stored in the global environment:
it should never have been accessed directly in the first place.
- fix() is no longer replaced during HTMLStart()/HTMLStop() sessions.
- Remove obsolete handling of 'date' class from package survival.
- Remove obsolete support for old format of objects from the rpart package.
# 2010-10-04
- Correction of a minor bug in HTMLInitFile discovered by Benot Beck
# 2010-05-19 - Version 2.1
- Add line breaks in HTML generation for better readability.
# 2008-05-23 - Version 1.59
- Corrected call of unexported function from
Sweave.R (utils package) in RweaveHTMLWritedoc.
- Corrected explicit call of S3Method print from
package xtable.
- Corrected explicit call of S3Method from package
nnet.
- Corrected explicit call of isInitialized from
nlme package.
- Corrected explicit call of volume from
cluster package.
- Corrected explicit calls of imp.moments
from boot package.
- Corrected explicit calls of splineOrder and
splineKnots from splines package.
- Corrected explicit call of date.ddmmmyy from
survival package.
- Fixed rpart HTML S3 method to include tree.depth
function defined internally, as rpart package is not
exporting it anymore.
- Fixed .HTML.file warning of no visible bindings
in almost every function of the package.
- Fixed bug in HTML.data.frame outputing invalid
code (missing opening <tr>) when row.names was
set to FALSE. As patch submited by Michael Irskens and
also reported by Rik Schoemaker.
- Fixed bug in HTML.matrix, opening of <tbody>
wasn't being carried. Pending the fixing of
excess of </tr>'s.
- Fixed miscelaneous bugs in CSS files.
# 2006-09-28 - Version 1.58
- Fixed bug in HTMLcore.R (unintended \ interpolation)
- Fixed bug in HTMLfi() call inside HTML.summary.lm,
which made R CMD check fail on Windows.
- Uniformization of capitalization of HTML tags
(to lowercase), in conformity with the
XHTML 1.0 standard.
- Updated HTML.data.frame to include row.names
option, as contributed by Tobias Verbeke on
2006-05-27.
# 2006-07-04 - Version 1.57
- Added the HTML2clip wrapper, suggested by Gabor
Gronthendieck.
- Miscelaneous fixes to documentation (contributed
by Tobias Verbeke)
- Cleaning up of man directory of spurious files as
suggested by Kurt Honik
# 2006-01-25 - Version 1.56
- Replaced instances of format.char (now deprecated in
R 2.2.0) by formatC.
- Enclosed HTMLInsertGraph examples in \dontrun{}, so
that R CMD check runs fine without an interactive display.
# 2005-02-28 - Version 1.52
- Added methods for lme/nlme, submitted by:
Dieter Menne, (Dr. Menne Biomed Software Tbingen)
# 2005-01-13 - Version 1.51
- Added as.latex and HTML.latex to write pieces of equations in Latex.
They will be displayed using AsciiMathML
# 2004-11-20 - Version 1.5
- Includes a grid xHTML/css/Javascript compoment from ActiveWidgets
<http://www.activewidgets.comhttp://www.activewidgets.com>.
This grid is used by some functions, basically:
HTMLgrid (use data exported in a raw text file)
HTMLgrid_inline (include data within the HTML file)
HTMLgrid_summary (a summary method for data.frames)
WARNING: may not fully work on Firefox.
# 2004-10-19 - Version 1.4-3
- HTML.matrix and HTML.data.frame now can use several new output options
as they call now 'format. This allows using a comma "," as decimal
separator for example. All 'format' arguments are allowed and can be used
as a single element (value applies to all columns) or a vector (provide
values for each column). - Suggestion by Arne Henningsen
- HTML.data.frame now has a sortableDF option. When using it, a link to
an external DHTML behavior file is done (suggestion by Tom Short, could be
used by it's wonderful Rpad)
- Available options that user may want to change
(default for every matrix/DF):
R2HTML.sortableDF (FALSE)
R2HTML.format.digits (2)
R2HTML.format.nsmall (0)
R2HTML.format.big.mark ("")
R2HTML.format.big.interval (3)
R2HTML.format.decimal.mark= (Sys.localeconv()[["decimal_point"]])
- Bug fixed: HTML.table
Following modifications contributed by Philippe Grosjean
- Now uses NAMESPACE
- Renamed .First.lib() into .onLoad()
- In RweaveHTMLSetup(), commented if(!require(R2HTML))
stop("R2HTML package is required.").
This is not useful, becasue this function IS in R2HTML package!!!
- Changed utils:::XXX and utils::XXX into XXX everywhere, and added
import(utils) in NAMESPACE instead.
|