Skip to content

Commit

Permalink
Merge branch 'bug-1288'
Browse files Browse the repository at this point in the history
Conflicts:
	doc/basics.txt
	doc/basics_download.txt
	doc/basics_installation.txt
	doc/basics_installation_git.txt
	doc/cookbook_cross_compilation.txt
	doc/dev_quickstart.txt
	doc/index.txt
	doc/other_bundle_cherokee-admin.txt
	doc/other_faq.txt
  • Loading branch information
skinkie committed Jun 11, 2012
2 parents 681b76c + d0331db commit fcdebfd
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 22 deletions.
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -25,7 +25,7 @@ AC_PREREQ([2.60])
dnl Version dnl Version
m4_define([cherokee_major_version], [1]) m4_define([cherokee_major_version], [1])
m4_define([cherokee_minor_version], [2]) m4_define([cherokee_minor_version], [2])
m4_define([cherokee_micro_version], [101]) m4_define([cherokee_micro_version], [102])
m4_define([cherokee_version], m4_format('%s.%s.%s', cherokee_major_version, cherokee_minor_version, cherokee_micro_version)) m4_define([cherokee_version], m4_format('%s.%s.%s', cherokee_major_version, cherokee_minor_version, cherokee_micro_version))


dnl Init autoconf and automake dnl Init autoconf and automake
Expand Down
2 changes: 1 addition & 1 deletion doc/basics.txt
Expand Up @@ -8,6 +8,6 @@
- link:basics_installation_unix.html[Unix]: Installation on Unix/Linux platforms. - link:basics_installation_unix.html[Unix]: Installation on Unix/Linux platforms.
- link:basics_installation_osx.html[OSX]: Installation on Mac OSX platform. - link:basics_installation_osx.html[OSX]: Installation on Mac OSX platform.
- link:basics_installation_windows.html[Windows]: Installation on Windows platform. - link:basics_installation_windows.html[Windows]: Installation on Windows platform.
- link:basics_installation_git.html[From Github]: Installation of the development release. - link:basics_installation_git.html[From GIT]: Installation of the development release.
. link:basics_upgrade.html[Upgrading Cherokee]: Upgrading from a previous release? . link:basics_upgrade.html[Upgrading Cherokee]: Upgrading from a previous release?
. link:basics_running_cherokee.html[Running Cherokee]: Basic steps to run Cherokee. . link:basics_running_cherokee.html[Running Cherokee]: Basic steps to run Cherokee.
10 changes: 5 additions & 5 deletions doc/basics_download.txt
Expand Up @@ -29,17 +29,17 @@ wget http://www.cherokee-project.com/cherokee-latest-tarball -O -| tar zxvf -
------------------------------------------------------------------------------ ------------------------------------------------------------------------------


Finally, if you are a developer or simply want to test out the bleeding edge Finally, if you are a developer or simply want to test out the bleeding edge
version, you can access our Github repository. Be advised, this is the version, you can access our Git repository. Be advised, this is the
development branch, so use it at your own risk! development branch, so use it at your own risk!


To download simply use your Git client: To download simply use:


--------------------------------------------------------------------------- ---------------------------------------------------------------------------
git clone git://github.com/cherokee/webserver.git cherokee git clone https://github.com/cherokee/webserver.git
--------------------------------------------------------------------------- ---------------------------------------------------------------------------


You can also download a ZIP or tar package with the latest contents by visiting: You can also download a package with the latest GIT contents:


--------------------------------------------------------------------------- ---------------------------------------------------------------------------
https://github.com/cherokee/webserver/downloads wget https://github.com/cherokee/webserver/zipball/dev
--------------------------------------------------------------------------- ---------------------------------------------------------------------------
2 changes: 1 addition & 1 deletion doc/basics_installation.txt
Expand Up @@ -10,7 +10,7 @@ several platforms.
* link:basics_installation_unix.html[Unix installation] * link:basics_installation_unix.html[Unix installation]
* link:basics_installation_osx.html[OSX installation] * link:basics_installation_osx.html[OSX installation]
* link:basics_installation_windows.html[Windows installation] * link:basics_installation_windows.html[Windows installation]
* link:basics_installation_git.html[Installation From Github] * link:basics_installation_git.html[Installation From GIT]


For insight on more specific subjects such as cross-compilation or For insight on more specific subjects such as cross-compilation or
embedding Cherokee, check the link:cookbook.html[Cookbook]. embedding Cherokee, check the link:cookbook.html[Cookbook].
15 changes: 8 additions & 7 deletions doc/basics_installation_git.txt
Expand Up @@ -16,8 +16,9 @@ at github.com/cherokee/webserver.git.
To download the Git repository you will need a special piece of To download the Git repository you will need a special piece of
software called a Git client. software called a Git client.


[[checkout]]
Checking out the sources [[clone]]
Clonning the sourcess

This comment has been minimized.

Copy link
@Daniel15

Daniel15 Jun 12, 2012

This should be "cloning".

~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~


To check out the sources for the first time from the repository, use this command: To check out the sources for the first time from the repository, use this command:
Expand All @@ -33,20 +34,20 @@ Updating the sources
To update your sources every day, you use this command: To update your sources every day, you use this command:


---- ----
git pull git pull -u
---- ----




[[compile]] [[compile]]
Compiling and installing Compiling and installing
~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~


Once you have downloaded the latest Git revision, you will need to Once you have downloaded the latest GIT head, you will need to
follow the installation instructions for your specific platform. follow the installation instructions for your specific platform.


Note that some of the files present in the tarball are not present in the Note that some of the files present in the tarball are not present in
Git repository. Most noticeably, the file `./configure` that will be needed GIT. Most noticeably, the file `./configure` that will be needed for the
for the installation process. installation process.


To generate the missing files simply run this command: To generate the missing files simply run this command:


Expand Down
2 changes: 1 addition & 1 deletion doc/basics_installation_unix.txt
Expand Up @@ -193,7 +193,7 @@ having the repositories updated is really short.


However, in the event that they arent, some options remain if you want However, in the event that they arent, some options remain if you want
to enjoy the latest Cherokee enhancements. Besides building directly to enjoy the latest Cherokee enhancements. Besides building directly
from our SVN repository, you can build from source for from our GIT repository, you can build from source for
Debian/Ubuntu. You will be able to build it cleanly in a `.deb` Debian/Ubuntu. You will be able to build it cleanly in a `.deb`
package with dependencies, and push the new release as fast as package with dependencies, and push the new release as fast as
possible to production. possible to production.
Expand Down
4 changes: 2 additions & 2 deletions doc/dev_quickstart.txt
Expand Up @@ -11,14 +11,14 @@ environming for Cherokee.


The relevant documents would be those about The relevant documents would be those about
link:basics_requirements.html[software requirements], link:basics_requirements.html[software requirements],
link:basics_download.html[downloading the Git repository], and the link:basics_download.html[downloading the GIT repository], and the
link:basics_installation_unix.html[quickstart installation notes]. link:basics_installation_unix.html[quickstart installation notes].


In principle, provided you have the required tools in your system, it In principle, provided you have the required tools in your system, it
should be as easy as: should be as easy as:


---- ----
git clone git://github.com/cherokee/webserver.git ~/cherokee_dev git clone git://github.com/cherokee/webserver.git ~/cherokee
cd ~/cherokee_dev cd ~/cherokee_dev
git submodule init git submodule init
git submodule update git submodule update
Expand Down
2 changes: 1 addition & 1 deletion doc/index.txt
Expand Up @@ -12,7 +12,7 @@ link:basics.html[Getting started]: Cherokee basics
- link:basics_installation_unix.html[Unix]: Installation on Unix/Linux platforms. - link:basics_installation_unix.html[Unix]: Installation on Unix/Linux platforms.
- link:basics_installation_osx.html[OSX]: Installation on Mac OSX platform. - link:basics_installation_osx.html[OSX]: Installation on Mac OSX platform.
- link:basics_installation_windows.html[Windows]: Installation on Windows platform. - link:basics_installation_windows.html[Windows]: Installation on Windows platform.
- link:basics_installation_git.html[From Github]: Installation of the development release. - link:basics_installation_git.html[From GIT]: Installation of the development release.
. link:basics_upgrade.html[Upgrading Cherokee]: Upgrading from a previous release? . link:basics_upgrade.html[Upgrading Cherokee]: Upgrading from a previous release?
. link:basics_running_cherokee.html[Running Cherokee]: Basic steps to run Cherokee. . link:basics_running_cherokee.html[Running Cherokee]: Basic steps to run Cherokee.


Expand Down
2 changes: 1 addition & 1 deletion doc/other_community.txt
Expand Up @@ -35,7 +35,7 @@ These are the lists currently in existence:


- link:http://lists.octality.com/listinfo/cherokee[General list] - link:http://lists.octality.com/listinfo/cherokee[General list]
- link:http://lists.octality.com/listinfo/cherokee-dev[Development list] - link:http://lists.octality.com/listinfo/cherokee-dev[Development list]
- link:http://lists.octality.com/listinfo/cherokee-commits[SVN Reports] - link:http://lists.octality.com/listinfo/cherokee-commits[GIT Reports]




#cherokee IRC channel #cherokee IRC channel
Expand Down
4 changes: 2 additions & 2 deletions doc/other_faq.txt
Expand Up @@ -162,8 +162,8 @@ please take a look at the
link:http://powerman.name/doc/asciidoc[AsciiDoc Cheatsheet] and start link:http://powerman.name/doc/asciidoc[AsciiDoc Cheatsheet] and start
editing the documentation sources right ahead. They are distributed editing the documentation sources right ahead. They are distributed
with the source code and are located under `./doc` of the source tree. with the source code and are located under `./doc` of the source tree.
If you don't have Git access, simply mail your contributions to If you don't have GIT access, simply mail your contributions to
link:mailto:feedback@cherokee-project.com[feedback@cherokee-project.com]. link:mailto:feedback@cherokee-project.com[feedback@cherokee-project.com] or create fork on github and request pull.


[[faq14]] [[faq14]]
=== Can encoders be set for specific file types? === Can encoders be set for specific file types?
Expand Down

0 comments on commit fcdebfd

Please sign in to comment.