Changeset 464 for trunk/conf

Show
Ignore:
Timestamp:
04/25/07 21:24:50 (19 months ago)
Author:
michiel
Message:

Introduce sections in the ini config file.

Re #123

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/conf/mvblog.ini

    r414 r464  
    33; 
    44 
     5; Anything that's put before the general section will be ignored. 
     6; Empty lines will be ignored. 
     7; Lines starting with an ; or an # will be ignored and are meant for comments. 
     8 
     9; General section. 
     10[general] 
    511; 
    612; debug controls the outputting of debugging information by MvBlog. MvBlog may 
     
    1117; 
    1218debug = on 
     19 
     20; Database connection information. 
     21[database] 
     22; Database to store mvblog info in 
     23; Accepted values: string 
     24database = mvblog 
     25; Database server address 
     26; Accepted values: ip address or hostname 
     27hostname = 127.0.0.1 
     28; Database username 
     29; Accepted values: string 
     30username = mvblog 
     31; Database password 
     32; Accepted values: string 
     33password = mvblog 
     34; Database backend engine 
     35; Accepted values: mysql/pgsql/sqlite 
     36type = mysql