Fabian S. Varon Valencia
cb72c344c4
update jest icon url
2 years ago
Fabian S. Varon Valencia
7d1f5c85a6
added source file with updated icons
2 years ago
Simon Legner
03d3f206d1
Add Astro documentation (1.4.7)
2 years ago
Simon Legner
cd41d39abc
Add Vitest documentation (0.24.0)
2 years ago
Simon Legner
4d03b4aec6
Merge pull request #1835 from fabianchoxD/fix-broken-links
...
Fix broken links
2 years ago
Fabian S. Varon Valencia
503f24bff3
replace broken link logos
2 years ago
Fabian S. Varon Valencia
882fd5d6a1
update docker trademark guidelines - added media resources
2 years ago
Tim Lim
fcbdddc741
Add FastAPI (0.85.0) documentation
2 years ago
Tim Lim
850366459b
Add Moment.js Timezone (0.5.37)
2 years ago
Simon Legner
8bbbb9e634
Add Svelte documentation (3.50.1)
2 years ago
Simon Legner
ec4885d169
manifest.json: add url_handler for devdocs.io
...
Ref: https://web.dev/pwa-url-handler/
2 years ago
Simon Legner
ed475f72e3
manifest.json: add $schema
2 years ago
Simon Legner
f7aead95e4
Add date-fns documentation (2.29.2)
2 years ago
Simon Legner
03e42df10e
Add Axios documentation (0.27.2)
2 years ago
Simon Legner
16f42e7780
Add Requests documentation (2.28.1)
2 years ago
David Chambers
6510b06a36
add Sanctuary
3 years ago
Simon Legner
d52bd7e362
fix(point_cloud_library): icons
3 years ago
Simon Legner
961d1276a8
Merge pull request #1741 from mfouad/kubernetes
...
Kubernetes documentation
3 years ago
Fouad
f7c8c8a6f8
added Kubectl documentation
3 years ago
Fouad
216a9d8f8e
Add Kubernetes docs
3 years ago
Thomas Dy
f1dd2acc08
Add nix and nixpkgs
...
This only adds a subset of nix and nixpkgs functions. Notably
derivation, stdenv and language-specific functions are omitted for now
as their formats differ significantly and will require more cleanup.
3 years ago
xjkdev
77730c3073
Added eigen3 scrapers, filters, icons, and etc.
3 years ago
Simon Legner
a8eb603198
tailwindcss: fix icons
3 years ago
Damilola Olowookere
4f0b3cc7e4
Effect commit comments
...
31233ce005 (commitcomment-50041798)
3 years ago
Damilola Olowookere
39aa5b1c90
First initial release of TailwindCSS DevDoc
3 years ago
Simon Legner
79ffe3fd6a
Update React Native documentation (0.66)
3 years ago
Simon Legner
c12b8e4797
Add React Router documentation (6.2.1)
3 years ago
Simon Legner
b5963d43a6
Update Deno logo
...
https://deno.land/logo.svg
3 years ago
Simon Legner
f19a61aa1b
Add Deno documentation (1.17.2)
3 years ago
Aditya Ardiya
5632820da9
Add PointCloudLibrary icons
3 years ago
Simon Legner
4ed22db333
Add Zig documentation (0.9.0)
3 years ago
Enoc
848f7194a0
Add Gnu Make documentation
3 years ago
Simon Legner
d49eea4640
Add Prettier documentation (2.5.1)
...
https://prettier.io/
3 years ago
Simon Legner
a9843261b9
Add esbuild documentation
3 years ago
Simon Legner
8975e9c738
Add Vite documentation
...
https://vitejs.dev/
3 years ago
Simon Legner
489975da83
Add i3 documentation
3 years ago
Darío Hereñú
2fd2eb69f0
Updated URL to download Codeigniter logotypes
3 years ago
Simon Legner
dcddb73500
Update Node.js documentation (17.0.1)
3 years ago
Simon Legner
905af1fb82
Update CoffeeScript documentation (2.6.1)
3 years ago
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
Oliver Eyton-Williams
324ad131cb
Merge pull request #1480 from ojeytonwilliams/feat/cloudflare
...
feat: migrate to Cloudflare
4 years ago
Simon Legner
a26a7eb502
Update Haskell documentation (9.0.1)
4 years ago
Oliver Eyton-Williams
c6264eb1bf
fix: remove cdn entirely and rely on Cloudflare
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
Simon Legner
6fd5b99ee2
Merge pull request #1439 from scherepn/gtk
...
Add GTK documentation
4 years ago
Phil Scherer
2d1d564582
Add GTK Documentation
4 years ago
trysten
a6140ed9ec
Revert "Update manifest.json"
...
This reverts commit f0bf956837
.
"Adds a back button to the UI"
First, minimal-ui takes up valueable screen space. We should value
the users screen space, and I believe users often install PWA's
_specifically_ to recover screen space taken by browser chrome[1]. I
know I do.
Second, devdocs already shows navigation arrows on mobile. A better
solution to a lack of back button (on desktop? where?) would be to
show those same navigation arrows there, rather than use minimal-ui.
Third, there's no rationale that I could find for this commit. No
explanation or issue linked. That's almost reason enough to revert.
Please write good commits: https://chris.beams.io/posts/git-commit/
[1] https://developer.mozilla.org/en-US/docs/Glossary/chrome
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
Simon Legner
f5eb47fadf
Merge pull request #1372 from MasterEnoc/pandas
...
Update Pandas to 1.1.4
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
6da1be0269
Merge pull request #1253 from DhanushAdithya/master
...
Changed the display absolute to flex for both 404 and 500 page
4 years ago
Simon Legner
fc65b1bc39
support_tables: update, use npm versioning
4 years ago
Eric Villarreal
f0bf956837
Update manifest.json
...
Adds a back button to the UI
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
Dhanush Adithya
35e08f9f42
Changed the display absolute to flex for both 404 and 500 page
5 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
Kayla Altepeter
f08cb87031
Update Angular documentation to include 7 and 8
5 years ago
Jasper van Merle
5824a4dced
Merge pull request #1107 from waldyrious/add-sequelize-documentation
...
Add Sequelize documentation
5 years ago
Jasper van Merle
c8380bb228
Merge pull request #841 from jmerle/mariadb
...
Add MariaDB documentation
5 years ago