Simon Legner
e9c854c9e9
Merge pull request #1547 from Cimbali/R
4 years ago
Simon Legner
d55da94921
Merge pull request #1550 from Cimbali/jq
4 years ago
Cimbali
8fdca1d87c
Add jq
4 years ago
Cimbali
776ec5a35d
Add LaTeX documentation from https://latexref.xyz
...
From https://ctan.org/pkg/latex2e-help-texinfo , the license is Public Domain.
4 years ago
Cimbali
0b38f339f1
Add R documentation
...
Contains the R base + recommended package help pages converted to HTML.
Equivalent to the fullrefman.pdf generated from source, which is also
called « The R Reference Index » on https://cran.r-project.org/manuals.html
Currently does not include reference manuals and miscellanea (FAQ, etc.)
Script building the documentation:
```bash
set -e
set -o pipefail
DEVDOCSROOT=/path/to/devdocs/docs/r
RSOURCEDIR=${TMPDIR:-/tmp}/R/latest
RBUILDDIR=${TMPDIR:-/tmp}/R/build
RLATEST=https://cran.r-project.org/src/base/R-latest.tar.gz
R="$RBUILDDIR/bin/R"
libdir="$RBUILDDIR/library"
docdir=$RBUILDDIR/doc
makevars="$RSOURCEDIR/share/make/vars.mk"
if [ ! -f "$R" ] ; then
if [ ! -d "$RSOURCEDIR" ]; then
mkdir -p "$RSOURCEDIR" && curl "$RLATEST" | tar -C "$RSOURCEDIR" -xzf - --strip-components=1
fi
[ -d "$RBUILDDIR" ] || mkdir -p "$RBUILDDIR"
[ -f "$RBUILDDIR/config.status" ] || (cd "$RBUILDDIR" && "$RSOURCEDIR/configure")
make -C "$RBUILDDIR" && make -C "$RBUILDDIR" docs
fi
mkdir -p "$DEVDOCSROOT/doc" && cp -r "$docdir"/* "$DEVDOCSROOT/doc/"
find "$libdir" -type d -name 'html' -printf '%P\n' | while read d; do
mkdir -p "$DEVDOCSROOT/library/$d"
cp -r "$libdir/$d"/* "$DEVDOCSROOT/library/$d/"
done
R_PKGS_BASE="`sed -n 's/^R_PKGS_BASE *= *//p' $makevars`"
R_PKGS_RECOMMENDED="`sed -n 's/^R_PKGS_RECOMMENDED *= *//p' $makevars`"
cat <<EOF | _R_HELP_LINKS_TO_TOPICS_=FALSE $R --vanilla --no-echo
links <- tools::findHTMLlinks()
for (pkg in c(`echo $R_PKGS_BASE $R_PKGS_RECOMMENDED | sed 's/\S\+/"&"/g;s/ /, /g'`)) {
Rd <- tools::Rd_db(pkg, lib.loc="$libdir")
if (!length(Rd)) {
message(paste("ERROR: no help files found for package", pkg))
} else {
message(paste0(pkg, "..."))
}
for(f in names(Rd)) {
out <- file.path("$DEVDOCSROOT/library", pkg, "html", sub("[Rr]d$", "html", basename(f)))
tools::Rd2HTML(Rd[[f]], out, package = "$pkg", defines = .Platform\$OS.type,
outputEncoding = "UTF-8", no_links = FALSE, dynamic = FALSE,
Links = links, stages = c("build", "install", "render"))
}
}
EOF
echo "DONE! Start at $DEVDOCSROOT/doc/html/index.html (or $DEVDOCSROOT/doc/html/packages.html)"
```
4 years ago
Simon Legner
633262ac06
Update Jasmine documentation (3.7.1)
4 years ago
dohsimpson
6f1a9aab21
Added Documentation for React-bootstrap
4 years ago
Simon Legner
a26a7eb502
Update Haskell documentation (9.0.1)
4 years ago
Enoc
ed15918157
Update liquid to 5.0
...
Add prism highlight for liquid
4 years ago
Simon Legner
9709283d59
numpy: add versions 1.18 and 1.19
4 years ago
Simon Legner
9d1649233c
Merge pull request #1236 from seirl/ocaml
...
Add documentation for OCaml
4 years ago
Phil Scherer
2d1d564582
Add GTK Documentation
4 years ago
Simon Legner
c0dbaaf140
Merge pull request #1403 from MasterEnoc/twig
...
Update Twig to 3.1.1 and update previous versions
4 years ago
Simon Legner
31264ad08f
Merge pull request #1408 from scherepn/pallets-projects
...
Add Pallets projects (Flask, Jinja, and Werkzeug) documentation
4 years ago
Phil Scherer
319074f6b7
Add Pallets projects (Flask, Jinja, and Werkzeug) documentation
4 years ago
MasterEnoc
978f3e891d
Change the logo of twig to the correct one
4 years ago
MasterEnoc
7a483c5f5f
Update Twig to 3.1.1 and update previous versions
4 years ago
Phil Scherer
30fd37fc54
Add Groovy documentation
4 years ago
Phil Scherer
450adb5e72
Add HAProxy documentation
4 years ago
MasterEnoc
9c2ca1f27c
Update Pandas to 1.1.4
...
- Add version 1 of pandas, add new filters for this version
- Pandas' web page changed but the page for older version is the same,
for that reason new filters are added and the name old ones are
changed
4 years ago
Simon Legner
fc65b1bc39
support_tables: update, use npm versioning
4 years ago
samfundev
23b4378582
codeceptjs: update to 3.0.2
4 years ago
Simon Legner
ff29aa240c
homebrew: update release 2.5.11
4 years ago
Simon Legner
35d7bcd365
Merge pull request #1344 from simon04/bootstrap-4.5
...
bootstrap: update release 4.5
4 years ago
Simon Legner
852503ab41
bootstrap: update release 4.5
4 years ago
Simon Legner
eda53194b0
Merge pull request #1270 from MasterEnoc/master
...
Add Elisp docs for version 26.3
4 years ago
Simon Legner
9ad20cbc46
Merge pull request #1165 from lgeiger/tensorflow-versions
...
Split Tensorflow into separate Python and C++ docs
4 years ago
Lukas Geiger
ccd20c0472
Remove TensorFlow Guides
4 years ago
Lukas Geiger
c7a2a37280
Split Tensorflow into separate Python, C++ and Guide docs
4 years ago
Phil Scherer
be80d182e5
Update Fish scraper
4 years ago
Simon Legner
41ab102ed7
Merge pull request #1241 from xavieryao/master
...
Add PyTorch v1.7.0 documentation
4 years ago
Simon Legner
6956b9c3e0
Merge pull request #1225 from ahosni/docs-spring-boot
...
Add documentation for Spring Boot
4 years ago
Simon Legner
f6f4614708
Merge pull request #1234 from davidcgl/davidcgl/ruby-2.7
...
Update Ruby documentation (2.7.2)
4 years ago
Simon Legner
17929f1ee9
ruby: update release 2.7.2
4 years ago
Simon Legner
0eec0a85ae
postgresql: add version 13
4 years ago
MasterEnoc
258e3f954c
Add Elisp language docs for version 26.3
4 years ago
Peiran Yao
c0b94262bf
Add PyTorch v1.5.0 documentation
5 years ago
Antoine Pietri
db0746c16e
Add documentation for OCaml
5 years ago
Aymen Hosni
f4b66063ac
Add documentation for Spring Boot
5 years ago
Jed Fox
88b62616e1
Merge pull request #1161 from simon04/flow
...
flow: update to 0.116.0
5 years ago
Jed Fox
c8249126f4
Merge pull request #1144 from lgeiger/upgrade-tensorflow
...
Upgrade TensorFlow 2.1
5 years ago
Simon Legner
8c2f6e5683
flow: update to 0.116.0
5 years ago
Jed Fox
7287d0bfc6
Merge pull request #1126 from Cimbali/master
...
Add documentation for gnuplot
5 years ago
Jed Fox
598a925190
Merge pull request #1135 from simon04/eslint
...
eslint: update to 6.7.0
5 years ago
Jed Fox
8817ff28ba
Merge pull request #1132 from simon04/leaflet-1.6
...
leaflet: add version 1.6.0
5 years ago
Jed Fox
9b117a5cd5
Fix sequelize icon size
5 years ago
Lukas Geiger
02e4a384b6
Upgrade TensorFlow docs to v2.0
5 years ago
Simon Legner
73ac8c73de
eslint: update to 6.7.0
5 years ago
Simon Legner
881f4af0b6
leaflet: add version 1.6.0
...
https://leafletjs.com/2019/11/17/leaflet-1.6.0.html
Updated icon from https://leafletjs.com/docs/images/favicon.ico
5 years ago
Cimbali
f5a3152bbb
Add gnuplot documentation as source
...
Documentation is part of the gnuplot source code, available at:
- https://sourceforge.net/p/gnuplot/gnuplot-main/ci/master/tree/docs/
This can be redistributed, according the the Copyright (emphasis mine):
> * Copyright 1986 - 1993, 1998, 2004 Thomas Williams, Colin Kelley
> *
> * Permission to use, copy, and distribute this software **and its**
> * **documentation** for any purpose with or without fee is hereby granted,
> * provided that the above copyright notice appear in all copies and
> * that both that copyright notice and this permission notice appear
> * in supporting documentation.
Full copyright notice here:
https://sourceforge.net/p/gnuplot/gnuplot-main/ci/master/tree/Copyright
The term “gnuplot license” is not very widespread but brings satisfying
results on search engines (including on wikipedia), so I took the
liberty to add a link to the copyright file, taken from the “Gnuplot's
copyright” link on the gnuplot home page, http://gnuplot.info .
Here is how to build the gnuplot docs to parse them:
mkdir gnuplot-src gnuplot-conf $DEVDOCS_ROOT/docs/gnuplot
git clone -b 5.2.7 --depth 1 https://git.code.sf.net/p/gnuplot/gnuplot-main ./gnuplot-src
cd gnuplot-src/
./prepare
cd ../gnuplot-conf
../gnuplot-src/configure
make -C docs nofigures.tex
latex2html -html 5.0,math -split 4 -link 8 -long_titles 5 -dir $DEVDOCS_ROOT/docs/gnuplot -ascii_mode docs/nofigures.tex
5 years ago