summaryrefslogtreecommitdiff
path: root/docs/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* docs/RESOURCES: removeDaniel Stenberg2020-09-181-1/+0
| | | | | | | | This document is not maintained and rather than trying to refresh it, let's kill it. A more up-to-date document with relevant RFCs is this page on the curl website: https://curl.haxx.se/rfc/ Closes #5980
* docs/TheArtOfHttpScripting: convert to markdownDaniel Stenberg2020-09-181-1/+1
| | | | | | | | | | Makes it easier to browse on github etc. Offers (better) links. It should be noted that this document is already mostly outdated and "Everything curl" at https://ec.haxx.se/ is a better resource and tutorial. Closes #5981
* BUGS: convert document to markdownDaniel Stenberg2020-09-181-1/+1
| | | | Closes #5979
* docs/LICENSE-MIXING: removeDaniel Stenberg2020-09-111-1/+0
| | | | | | | This document is not maintained and I feel that it doesn't provide much value to users anymore (if it ever did). Closes #5955
* CODE_REVIEW.md: how to do code reviews in curlDaniel Stenberg2020-06-131-0/+1
| | | | | | | | | | | Assisted-by: Daniel Gustafsson Assisted-by: Rich Salz Assisted-by: Hugo van Kemenade Assisted-by: James Fuller Assisted-by: Marc Hörsken Assisted-by: Jay Satiro Closes #5555
* docs/options-in-versions: which version added each cmdline optionDaniel Stenberg2020-05-131-0/+1
| | | | | | | | Added test 971 to verify that the list is in sync with the files in cmdline-opts. The check also verifies that .d-files that uses Added: specify the same version number as the options-in-versions file does. Closes #5381
* dynbuf: introduce internal generic dynamic buffer functionsDaniel Stenberg2020-05-041-0/+1
| | | | | | | | | | | | | A common set of functions instead of many separate implementations for creating buffers that can grow when appending data to them. Existing functionality has been ported over. In my early basic testing, the total number of allocations seem at roughly the same amount as before, possibly a few less. See docs/DYNBUF.md for a description of the API. Closes #5300
* doc: Rename VERSIONS to VERSIONS.md as it already has Markdown syntaxEmil Engler2020-05-021-1/+1
| | | | Closes #5325
* mqtt: add new experimental protocolBjorn Stenberg2020-04-141-0/+1
| | | | Closes #5173
* copyright: fix out-of-date copyright ranges and missing headersDaniel Stenberg2020-03-241-4/+1
| | | | | | | | | Reported by the new script 'scripts/copyright.pl'. The script has a regex whitelist for the files that don't need copyright headers. Removed three (mostly usesless) README files from docs/ Closes #5141
* CURL-DISABLE: initial docs for the CURL_DISABLE_* definesDaniel Stenberg2019-11-121-0/+1
| | | | | | | | | | The disable-scan script used in test 1165 is extended to also verify that the docs cover all used defines and all defines offered by configure. Reported-by: SLDiggie on github Fixes #4545 Closes #4587
* ESNI: initial build/setupNiall2019-10-021-0/+1
| | | | Closes #4011
* docs/EXPERIMENTAL: explain what it means and what's experimental nowDaniel Stenberg2019-08-071-0/+1
|
* HTTP3: initial (experimental) supportDaniel Stenberg2019-07-211-0/+1
| | | | | | | | | USe configure --with-ngtcp2 or --with-quiche Using either option will enable a HTTP3 build. Co-authored-by: Alessandro Ghedini <alessandro@ghedini.me> Closes #3500
* docs/PARALLEL-TRANSFERS: addedDaniel Stenberg2019-07-201-0/+1
|
* docs/BUG-BOUNTY: bug bounty time [skip ci]Daniel Stenberg2019-04-221-0/+1
| | | | | | | | | | Introducing the curl bug bounty program on hackerone. We now recommend filing security issues directly in the hackerone ticket system which only is readable to curl security team members. Assisted-by: Daniel Gustafsson Closes #3488
* docs/ALTSVC.md: docs describing the approachDaniel Stenberg2019-03-031-0/+1
| | | | Closes #3498
* curl: remove MANUAL from -M outputDaniel Stenberg2019-02-201-2/+1
| | | | | | | | | | | | | | | ... and remove it from the dist tarball. It has served its time, it barely gets updated anymore and "everything curl" is now convering all this document once tried to include, and does it more and better. In the compressed scenario, this removes ~15K data from the binary, which is 25% of the -M output. It remains in the git repo for now for as long as the web site builds a page using that as source. It renders poorly on the site (especially for mobile users) so its not even good there. Closes #3587
* docs: use $(INSTALL_DATA) to install man pageJulian Z2019-02-041-1/+1
| | | | | Fixes #3518 Closes #3522
* whitespace fixesViktor Szakats2018-09-231-1/+0
| | | | | | | | | | | - replace tabs with spaces where possible - remove line ending spaces - remove double/triple newlines at EOF - fix a non-UTF-8 character - cleanup a few indentations/line continuations in manual examples Closes https://github.com/curl/curl/pull/3037
* DEPRECATE: new doc describing planned item removalsDaniel Stenberg2018-07-021-0/+1
| | | | Closes #2704
* docs/RELEASE-PROCEDURE.md: renamed to use .md extensionDaniel Stenberg2018-06-151-7/+39
| | | | Closes #2663
* GOVERNANCE.md: explains how this project is runDaniel Stenberg2018-06-141-1/+1
| | | | Closes #2657
* docs/SECURITY.md -> docs/SECURITY-PROCESS.mdDaniel Stenberg2018-03-111-2/+2
|
* make: fix "make distclean"Daniel Stenberg2017-11-241-0/+3
| | | | | Fixes #2097 Closes #2108
* HELP-US.md: "How to get started helping out in the curl project"Daniel Stenberg2017-08-291-1/+1
| | | | Closes #1837
* make: build the docs subdir only from within srcDaniel Stenberg2017-06-301-2/+2
| | | | | | | | ... and don't build at all in include Prompted-by-work-by: Simon Warta Ref: #1590 Closes #1591
* Makefile: fix make distDan Fandrich2017-04-261-3/+6
| | | | | | Commit 80a87e8a broke 'make dist' as it can't handle installing from absolute target names. Rearranged the dependencies so the absolute name is used for building but the relative name is use for distributing.
* Makefile: avoid use of GNU-specific form of $<Dan Fandrich2017-04-241-3/+15
| | | | | | | | | | $< is only allowed in implicit rules in some non-GNU makes (e.g. BSD, AIX) so avoid use elsewhere by referencing the dependent curl.1 file directly instead. This is somewhat tricky because the file is supplied in the packaged tar ball (but not in git) but must still be able to be rebuilt when its dependencies change. The right thing must happen in both tar ball and git source trees, as well as in both in-tree and out-of-tree builds.
* dist: add missing files to the tarballDaniel Stenberg2017-03-311-6/+7
|
* docs/Makefile.am: include CMakeLists.txt in the dist tarballDaniel Stenberg2017-03-301-1/+1
|
* make: use the variable MAKE for recursive callsMaksim Stsepanenka2017-03-291-3/+3
| | | | Closes #1366
* make: regenerate docs/curl.1 by runinng make in docsDaniel Stenberg2017-03-131-1/+2
| | | | | | | ... previously, docs/ was only a dist subdir, now also a build subdir. Reported-by: Dan Fandrich Bug: https://curl.haxx.se/mail/lib-2017-03/0017.html
* Makefile.am: Remove distribution man pages when running 'make clean'Steve Brokenshire2017-03-071-1/+2
|
* docs/curl.1: generate from the cmdline-opts scriptDaniel Stenberg2017-01-231-2/+5
|
* cmdline-opts: include the man page split up files in the distDaniel Stenberg2016-12-171-1/+1
|
* BINDINGS: converted to markdownDaniel Stenberg2016-10-281-1/+1
| | | | | To make it render better on the web site, at the price of it becoming slightly less readable as text.
* INSTALL: converted to markdown => INSTALL.mdDaniel Stenberg2016-10-211-6/+6
| | | | | | | Also heavily edited for content. Removed lots of old cruft that we added like 10+ years ago that is likely incorrect by now. Also removed INSTALL.devcpp for same reason.
* dist: remove PDF and HTML converted docs from the releasesDaniel Stenberg2016-10-101-6/+6
|
* LICENSE-MIXING.md: switched to markdownDaniel Stenberg2016-08-091-1/+1
|
* docs-make: have markdown files use .mdDaniel Stenberg2016-08-091-1/+1
|
* HISTORY.md: use markdown extensionDaniel Stenberg2016-08-091-1/+1
|
* SSLCERTS.md: renamed to markdown extensionDaniel Stenberg2016-08-091-1/+1
|
* INTERNALS.md: use markdown extension for markdown contentDaniel Stenberg2016-08-091-1/+1
|
* CONTRIBUTE.md: markdown extensionDaniel Stenberg2016-08-091-1/+1
|
* dist: include CHECKSRC.mdDaniel Stenberg2016-05-181-1/+1
| | | | | Reported-by: Paul Howarth Bug: https://curl.haxx.se/mail/lib-2016-05/0116.html
* build: use roffit 0.11 featureDaniel Stenberg2016-03-291-1/+1
| | | | ... load file specified as argument.
* docs/HTTP-COOKIES: converted to markdownDaniel Stenberg2016-03-291-5/+5
|
* docs/Makefile.am: include CODE_STYLE in tarball tooDaniel Stenberg2016-03-141-2/+2
|
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|