SOURCES: eaccelerator.ini - killed trailing spaces

glen glen at pld-linux.org
Sun Sep 11 22:58:34 CEST 2005


Author: glen                         Date: Sun Sep 11 20:58:34 2005 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
- killed trailing spaces

---- Files affected:
SOURCES:
   eaccelerator.ini (1.2 -> 1.3) 

---- Diffs:

================================================================
Index: SOURCES/eaccelerator.ini
diff -u SOURCES/eaccelerator.ini:1.2 SOURCES/eaccelerator.ini:1.3
--- SOURCES/eaccelerator.ini:1.2	Sun Sep 11 19:08:06 2005
+++ SOURCES/eaccelerator.ini	Sun Sep 11 22:58:28 2005
@@ -5,70 +5,70 @@
 ;;extension="eaccelerator.so"
 ;;zend_extension="/usr/lib/php4/eaccelerator.so"
 ;;zend_extension_ts="/usr/lib/php4/eaccelerator.so"
-;;extension="eaccelerator.dll" 
+;;extension="eaccelerator.dll"
 ;;zend_extension_ts="c:\php4\eaccelerator.dll"
 ;;zend_extension="c:\php4\eaccelerator.dll"
 
-; You must uncomment one (and only one) line from the following to load 
+; You must uncomment one (and only one) line from the following to load
 ; the eAccelerator extension.
 
 eaccelerator.shm_size = "64"
-;The amount of shared memory (in megabytes) that eAccelerator will use. 
+;The amount of shared memory (in megabytes) that eAccelerator will use.
 ; "0" means OS default. Default value is "0".
 
 eaccelerator.cache_dir = "/tmp/eaccelerator"
-; The directory that is used for disk cache. eAccelerator stores precompiled 
-; code, session data, content and user entries here. The same data can also 
-; be stored in shared memory (for more quick access). Default value is 
+; The directory that is used for disk cache. eAccelerator stores precompiled
+; code, session data, content and user entries here. The same data can also
+; be stored in shared memory (for more quick access). Default value is
 ; "/tmp/eaccelerator".
 
 eaccelerator.enable = "1"
-;Enables or disables eAccelerator. Should be "1" for enabling or "0" for 
+;Enables or disables eAccelerator. Should be "1" for enabling or "0" for
 ; disabling. Default value is "1".
 
 eaccelerator.optimizer = "1"
-;Enables or disables internal peephole optimizer which may speed up code 
-; execution. Should be "1" for enabling or "0" for disabling. Default 
+;Enables or disables internal peephole optimizer which may speed up code
+; execution. Should be "1" for enabling or "0" for disabling. Default
 ; value is "1".
 
 eaccelerator.debug = "0"
-;Enables or disables debug logging. Should be "1" for enabling or "0" for 
+;Enables or disables debug logging. Should be "1" for enabling or "0" for
 ; disabling. Default value is "0".
 
 eaccelerator.check_mtime = "1"
-;Enables or disables PHP file modification checking. Should be "1" for 
-; enabling or "0" for disabling. You should set it to "1" if you want to 
+;Enables or disables PHP file modification checking. Should be "1" for
+; enabling or "0" for disabling. You should set it to "1" if you want to
 ; recompile PHP files after modification. Default value is "1".
 
 eaccelerator.filter = ""
-;Determines which PHP files must be cached. You may specify a pattern 
+;Determines which PHP files must be cached. You may specify a pattern
 ;(for example "*.php *.phtml") which specifies files to cache or exclude.
 ; If the pattern starts with the character "!", the files that match this
 ; pattern wil be excluded. Default value is "" which means - all PHP scripts will be cached.
 
 eaccelerator.shm_max = "0"
-;Disables putting large values into shared memory by "eaccelerator_put()" 
+;Disables putting large values into shared memory by "eaccelerator_put()"
 ; function. It indicates the largest allowed size in bytes (10240, 10K, 1M).
 ; A "0" disables the limit. Default value is "0".
 
 eaccelerator.shm_ttl = "0"
-;When eAccelerator fails to get shared memory for a new script it removes 
-; all scripts from shared memory which were not accessed at least "shm_ttl" 
+;When eAccelerator fails to get shared memory for a new script it removes
+; all scripts from shared memory which were not accessed at least "shm_ttl"
 ; seconds. Default value is "0" which means - don't remove any files from shared memory.
 
 eaccelerator.shm_prune_period = "0"
-;When eAccelerator fails to get shared memory for a new script it tries 
-; to remove old script if the previous try was made more then 
-; "shm_prune_period" seconds ago. Default value is "0" which means - don't 
+;When eAccelerator fails to get shared memory for a new script it tries
+; to remove old script if the previous try was made more then
+; "shm_prune_period" seconds ago. Default value is "0" which means - don't
 ; try to remove any files from shared memory.
 
 eaccelerator.shm_only = "0"
-;Enables or disables caching of compiled scripts on disk. It has no effect 
-; on session data and content caching. Default value is "0" which means - 
+;Enables or disables caching of compiled scripts on disk. It has no effect
+; on session data and content caching. Default value is "0" which means -
 ; use disk and shared memory for caching.
 
 eaccelerator.compress = "1"
-;Enables or disables cached content compression. Default value is "1" 
+;Enables or disables cached content compression. Default value is "1"
 ; which means enable compression.
 
 eaccelerator.compress_level = "9"
@@ -78,10 +78,10 @@
 eaccelerator.keys = "shm_and_disk"
 eaccelerator.sessions = "shm_and_disk"
 eaccelerator.content = "shm_and_disk"
-;Determine where keys, session data and content will be cached. 
+;Determine where keys, session data and content will be cached.
 ; The possible values are:
 ;"shm_and_disk", cache data in shared memory and on disk (default value)
-;"shm", cache data in shared memory or on disk if shared memory is full 
+;"shm", cache data in shared memory or on disk if shared memory is full
 ; or data size is greater then "eaccelerator.shm_max"
 ;"shm_only", cache data in shared memory
 ;"disk_only", cache data on disk
@@ -90,10 +90,10 @@
 eaccelerator.admin.name="yourusername"
 eaccelerator.admin.password="yourpassword"
 
-;eAccelerator can be managed through a web interface script eaccelerator.php. 
-; You need to put this file on your web site. For security reasons it is 
+;eAccelerator can be managed through a web interface script eaccelerator.php.
+; You need to put this file on your web site. For security reasons it is
 ; recommended to restrict the usage of this script by your local IP.
-; 
+;
 ; To create the eAccelerator password type:
 ;
 ; $ php -q eaccelerator_password.php
@@ -102,4 +102,4 @@
 ; New admin password: eaccelerator
 ; Retype new admin password: eaccelerator
 ;
-; btw: you should be carful about this file modes (php/httpd user read only) 
+; btw: you should be carful about this file modes (php/httpd user read only)
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/SOURCES/eaccelerator.ini?r1=1.2&r2=1.3&f=u




More information about the pld-cvs-commit mailing list