fixed: dots in url-es (now only one dot is available in the whole name and it cannot be only one dot ".")

added:   cmslu can act as an authorizer (fast cgi authorize role)
added:   Item::static_auth we can have additional static content on the file system
         this content is authorized through cmslu (fastcgi authorizer mode)
changed: some changes in config
changed: the way how the www server is using cmslu
         added new virtuals: static static_auth
changed: cmslu returns correct http headers (200, 404, 403)
changed: in cookie parser: we get the last cookie (if the server has more than one cookie with the same name)



git-svn-id: svn://ttmath.org/publicrep/cmslu/trunk@540 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2009-12-30 20:46:12 +00:00
parent 118bf1fc65
commit 60fccea703
23 changed files with 431 additions and 128 deletions

View File

@@ -64,7 +64,12 @@ public:
std::string db_database;
std::string db_user;
std::string db_pass;
std::string base_url;
std::string base_server;
std::string base_url_prefix;
std::string base_url_static_prefix;
std::string base_url_static_auth_prefix;
std::string http_session_id_name;
// when the HOST_HTTP environment variable doesn't point into 'base_url' (the part 'http://' and the last slash is removed)
@@ -101,10 +106,25 @@ public:
// the html code is cleaned by our filter
bool html_filter;
// the url of a new empty item (if there is not the subject too)
std::string item_url_empty;
// below variables are based on the other config variables
// base_url_prefix + base_server
std::string base_url;
// base_url_static_prefix + base_server
std::string base_url_static;
// base_url_static_auth_prefix + base_server
std::string base_url_static_auth;
// end config members
// -----------------------------------------------------------------
// false at the beginning
bool stdout_is_closed;
@@ -116,7 +136,11 @@ public:
// based on base_url
// set by SetAdditionalVariables()
// without the first part http:// (or https://) or the whole string is empty
std::string base_url_http_host;
std::string base_url_static_auth_http_host;
// call this method after the config file is read
void SetAdditionalVariables();
@@ -146,7 +170,7 @@ public:
private:
void SetHttpHost();
void SetHttpHost(const std::string & in, std::string & out);
};