1
0
mirror of https://github.com/Tygs/0bin.git synced 2023-08-10 21:13:00 +03:00

Misspelling check.

Fixed the spelling using the following command:

  misspellings -s fix.sh $(find * -type f)
  sh fix.sh

Nothing very important, just was using it for a quick test.
This commit is contained in:
Kevin Lyda
2013-03-03 16:27:39 +00:00
parent 9a0efa7fa7
commit d599aed09a
17 changed files with 26 additions and 26 deletions

View File

@@ -16,7 +16,7 @@ An Apache setup is still much more robust and secure than an easy installation.
Une installation apache est aussi beaucoup plus solide et sécurisé qu'une
installation facile. You'll benefit from having:
- the possiblity to have several projects listening to the port 80;
- the possibility to have several projects listening to the port 80;
- several Apache module at your disposal (like requests throttling);
- Apache robustness in front end: it's secure, and there is much less chance
it will crash under heavy load;
@@ -97,4 +97,4 @@ CGI
===
You can also run 0bin using CGI, but infortunaly we didn't have time to cover
it yet. Please contact us if you ever get the need to use it.
it yet. Please contact us if you ever get the need to use it.

View File

@@ -45,7 +45,7 @@ Other features
- copy paste to clipboard in a click;
- get paste short URL in a click;
- own previous pastes history;
- visual hash of a paste to easily tell it appart from others in a list.
- visual hash of a paste to easily tell it apart from others in a list.
Technologies used
==================
@@ -84,4 +84,4 @@ What does 0bin not implement?
.. _Bootstrap: http://twitter.github.com/bootstrap/
.. _VizHash.js: https://github.com/sametmax/VizHash.js
.. _Cherrypy: http://www.cherrypy.org/ (server only)
.. _is not worth it: http://stackoverflow.com/questions/201705/how-many-random-elements-before-md5-produces-collisions
.. _is not worth it: http://stackoverflow.com/questions/201705/how-many-random-elements-before-md5-produces-collisions

View File

@@ -24,7 +24,7 @@ Therefor there are two steps:
You will benefit from having:
- the possiblity to have several projects listening to the port 80;
- the possibility to have several projects listening to the port 80;
- several Apache module at your disposal (like requests throttling);
- Apache robustness in front end: it's secure, and there is much less chance
it will crash under heavy load;
@@ -40,7 +40,7 @@ Run 0bin as usual, but this time make it listen to a local port and host. E.G::
zerobin --host 127.0.0.1 --port 8000
In PHP, when you edit a file, the changes are immediatly visible. In Python,
In PHP, when you edit a file, the changes are immediately visible. In Python,
the whole code is often loaded in memory for performance reasons. This means
you have to restart the Python process to see the changes effect. Having a
separate process let you do this without having to restart the server.

View File

@@ -159,7 +159,7 @@ List of absolute path to directories containing templates that 0bin uses to
generate the web site pages. The first list items have priotity on the later.
If you wish to use your own templates, add the directory containing them
at the begining of the list::
at the beginning of the list::
from zerobin.defauls_settings import TEMPLATE_DIRS
@@ -225,4 +225,4 @@ Valeur approximative de limite de taille d'un paste.
Default = 500000 octets (500 ko)
Command line equivalent: None
Command line equivalent: None

View File

@@ -50,7 +50,7 @@ MENU = (
('Contact', 'mailto:your@email.com') # email
)
# limit size of pasted text in bytes. Be carefull allowing too much size can slow down user's
# limit size of pasted text in bytes. Be careful allowing too much size can slow down user's
# browser
MAX_SIZE = 1024 * 500
MAX_SIZE_KB = int(math.ceil(MAX_SIZE / 1024.0))

View File

@@ -33,8 +33,8 @@ Les serveurs Web Python modernes fonctionnent tous de la même manière, en suiv
une norme d'interfaçage: WSGI.
C'est la solution la plus performante, et celle recommandée. Mais elle demande
l'installation du modle Apache mod_wsgi. Si vous ne savez pas comment faire,
ou si vous ne pouvez pas le faire (par exemple sur un hébergement mutualisé
l'installation du model Apache mod_wsgi. Si vous ne savez pas comment faire,
ou si vous ne pouvez pas le faire (par example sur un hébergement mutualisé
qui ne le propose pas), il vous faudra choisir l'installation CGI.
Premièrement, assurez-vous d'avoir mod_wsgi installé et chargé (en tant qu'admin)::

View File

@@ -40,7 +40,7 @@ solutions.
*Pour un petit site:*
Lancer simplement 0bin en processus shell d'arrière plan. Exemple sous GNU/Linux::
Lancer simplement 0bin en processus shell d'arrière plan. Example sous GNU/Linux::
nohup python zerobin.py --host 0.0.0.0 --port 80 --compressed-static &