Skip to content

Commit

Permalink
Renamed docs to doc
Browse files Browse the repository at this point in the history
  • Loading branch information
lammertb committed Dec 13, 2016
1 parent 6326c7b commit 65971b0
Show file tree
Hide file tree
Showing 69 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile.osx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ package: build
install -m 644 resources/itworks.html $(OSXBIN_DIR)/index.html
install -m 644 resources/civetweb_64x64.png $(OSXBIN_DIR)/
install -m 755 $(CPROG) $(OSXBIN_DIR)/$(PACKAGE)
install -m 644 docs/Installing.md $(DMG_DIR)/Installing.txt
install -m 644 doc/Installing.md $(DMG_DIR)/Installing.txt
install -m 644 LICENSE.md $(DMG_DIR)/License.txt
rm -rf $(ZIPFILENAME)
cd $(DMG_DIR) && zip -r ../../$(ZIPFILENAME) .
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ Trouble tickets should be filed on GitHub
Quick start documentation
--------------------------

- [docs/APIReference.md](docs/APIReference.md) - Reference of the C programming API
- [docs/Installing.md](docs/Installing.md) - Install Guide (for end users using pre-built binaries)
- [docs/UserManual.md](docs/UserManual.md) - End User Guide
- [docs/Building.md](docs/Building.md) - Building the Server (quick start guide)
- [docs/Embedding.md](docs/Embedding.md) - Embedding (how to add HTTP support to an existing application)
- [docs/OpenSSL.md](docs/OpenSSL.md) - Adding HTTPS (SSL/TLS) support using OpenSSL.
- [doc/APIReference.md](doc/APIReference.md) - Reference of the C programming API
- [doc/Installing.md](doc/Installing.md) - Install Guide (for end users using pre-built binaries)
- [doc/UserManual.md](doc/UserManual.md) - End User Guide
- [doc/Building.md](doc/Building.md) - Building the Server (quick start guide)
- [doc/Embedding.md](doc/Embedding.md) - Embedding (how to add HTTP support to an existing application)
- [doc/OpenSSL.md](doc/OpenSSL.md) - Adding HTTPS (SSL/TLS) support using OpenSSL.
- [RELEASE_NOTES.md](RELEASE_NOTES.md) - Release Notes
- [LICENSE.md](LICENSE.md) - Copyright License

Expand All @@ -61,7 +61,7 @@ simplicity by a carefully selected list of features:
Support
-------

This project is very easy to install and use. Please read the [documentation](docs/) and have a look at the [examples] (examples/).
This project is very easy to install and use. Please read the [documentation](doc/) and have a look at the [examples] (examples/).


Contributions
Expand All @@ -71,7 +71,7 @@ Contributions are welcome provided all contributions carry the MIT license.

DO NOT APPLY fixes copied from Mongoose to this project to prevent GPL tainting. LibHTTP which is a Civetweb fork is based on a 2014 version of Mongoose and they are developed independently. By now the code base differs, so patches cannot be safely transfered in either direction.

Some guidelines can be found in [docs/Contribution.md](docs/Contribution.md).
Some guidelines can be found in [doc/Contribution.md](doc/Contribution.md).


### Authors
Expand Down
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ Changes
- Added new C++ abstraction class CivetServer
- Added thread safety for and fixed websocket defects (Morgan McGuire)
- Created PKGBUILD to use Arch distribution (Daniel Oaks)
- Created new documentation on Embeddeding, Building and yaSSL (see docs/).
- Created new documentation on Embeddeding, Building and yaSSL (see doc/).
- Updated License file to include all licenses.
- Replaced MD5 implementation due to questionable license.
+ This requires new source file md5.inl
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ static NO_RETURN void show_usage_and_exit(const char *exeName) {
static const char *config_file_top_comment =
"# LibHTTP web server configuration file.\n"
"# For detailed description of every option, visit\n"
"# https://github.com/lammertb/libhttp/blob/master/docs/UserManual.md\n"
"# https://github.com/lammertb/libhttp/blob/master/doc/UserManual.md\n"
"# Lines starting with '#' and empty lines are ignored.\n"
"# To make a change, remove leading '#', modify option's value,\n"
"# save this file and then restart LibHTTP.\n\n";
Expand Down

0 comments on commit 65971b0

Please sign in to comment.