mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-12 08:55:54 +00:00
- use proper version in rootDir
This commit is contained in:
parent
b3ebd12b4b
commit
0cd5f795a3
|
@ -62,11 +62,11 @@ class Settings
|
||||||
// http:// prefix or the web host name. e.g. If the full URL is
|
// http:// prefix or the web host name. e.g. If the full URL is
|
||||||
// http://www.example.com/mydms/, set $_httpRoot = "/mydms/".
|
// http://www.example.com/mydms/, set $_httpRoot = "/mydms/".
|
||||||
// If the URL is http://www.example.com/, set $_httpRoot = "/".
|
// If the URL is http://www.example.com/, set $_httpRoot = "/".
|
||||||
var $_httpRoot = "/letoDMS-1.10/";
|
var $_httpRoot = "/letoDMS-3.0.0/";
|
||||||
|
|
||||||
// Where the uploaded files are stored (best to choose a directory that
|
// Where the uploaded files are stored (best to choose a directory that
|
||||||
// is not accessible through your web-server)
|
// is not accessible through your web-server)
|
||||||
var $_contentDir = "/var/www/letoDMS-1.10/data/";
|
var $_contentDir = "/var/www/letoDMS-3.0.0/data/";
|
||||||
|
|
||||||
// To work around limitations in the underlying file system, a new
|
// To work around limitations in the underlying file system, a new
|
||||||
// directory structure has been devised that exists within the content
|
// directory structure has been devised that exists within the content
|
||||||
|
@ -89,7 +89,7 @@ class Settings
|
||||||
var $_viewOnlineFileTypes = array(".txt", ".text", ".html", ".htm", ".pdf", ".gif", ".png", ".jpg", ".jpeg");
|
var $_viewOnlineFileTypes = array(".txt", ".text", ".html", ".htm", ".pdf", ".gif", ".png", ".jpg", ".jpeg");
|
||||||
|
|
||||||
// enable/disable converting of files
|
// enable/disable converting of files
|
||||||
var $_enableConverting = true;
|
var $_enableConverting = false;
|
||||||
|
|
||||||
// default style (name of a subfolder in folder "styles")
|
// default style (name of a subfolder in folder "styles")
|
||||||
var $_theme = "clean";
|
var $_theme = "clean";
|
||||||
|
@ -102,7 +102,6 @@ class Settings
|
||||||
|
|
||||||
// enable/disable group and user view for all users
|
// enable/disable group and user view for all users
|
||||||
var $_enableUsersView = true;
|
var $_enableUsersView = true;
|
||||||
|
|
||||||
// false to don't list administrator as reviewer/approver
|
// false to don't list administrator as reviewer/approver
|
||||||
var $_enableAdminRevApp = false;
|
var $_enableAdminRevApp = false;
|
||||||
|
|
||||||
|
@ -121,7 +120,7 @@ class Settings
|
||||||
// enable calendar
|
// enable calendar
|
||||||
var $_enableCalendar = true;
|
var $_enableCalendar = true;
|
||||||
|
|
||||||
// calendar default view ("w" for week,"m" for month,"y" for year)
|
// calendar default view ("w" for week,"m" for month,"y" for year)
|
||||||
var $_calendarDefaultView = "y";
|
var $_calendarDefaultView = "y";
|
||||||
|
|
||||||
// first day of the week (0=sunday, 6=saturday)
|
// first day of the week (0=sunday, 6=saturday)
|
||||||
|
@ -130,7 +129,7 @@ class Settings
|
||||||
// false to don't show the folder tree
|
// false to don't show the folder tree
|
||||||
var $_enableFolderTree = true;
|
var $_enableFolderTree = true;
|
||||||
|
|
||||||
// 0 to start with tree hidden
|
// 0 to start with tree hidden
|
||||||
// 1 to start with tree shown and first level expanded
|
// 1 to start with tree shown and first level expanded
|
||||||
// 2 to start with tree shown fully expanded
|
// 2 to start with tree shown fully expanded
|
||||||
var $_expandFolderTree = 1;
|
var $_expandFolderTree = 1;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user