public
Description: PHP web notepad, like a wiki, saves every 2 seconds
Homepage: http://edit.sunfox.org/
Clone URL: git://github.com/sunny/edith.git
edith / config.php.example
100644 25 lines (17 sloc) 0.702 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**
 * Edith configuration
 */
 
// root uri to your application
define('EDITH_URI', '/edith');
 
// path to the folder which will keep text files of all pages
// (needs to be read and writeable by the server)
define('EDITH_DATA_PATH', 'data');
 
 
// to handle concurrent access, the edit box uses Google Mobwrite
// http://code.google.com/p/google-mobwrite/
// Uncomment the configuration lines to enable Mobwrite
 
// choose a unique identifier for your application so that Mobwrite can
// identify all your pages
# define('MOBWRITE_KEY', 'edith-text');
 
// to host your own version of Mobwrite, change the following uri
# define('MOBWRITE_URI', 'http://edith-mobwrite.appspot.com/scripts/q.py');