added: function: mkdir

git-svn-id: svn://ttmath.org/publicrep/cmslu/trunk@471 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2008-12-31 13:36:46 +00:00
parent 3e328932fc
commit 114b5724f8
18 changed files with 77 additions and 22 deletions

View File

@@ -95,7 +95,7 @@ int attempts = 100;
request.session = const_cast<Session*>( &(*res.first) );
request.SetCookie(data.http_session_id_name.c_str(), request.session->id);
log << log1 << "created a new session: " << s.id << logend;
log << log2 << "SM: created a new session: " << s.id << logend;
return;
}
@@ -104,7 +104,7 @@ int attempts = 100;
// there is a problem with generating a new session id
// we do not set a session cookie
CreateTemporarySession();
log << log1 << "cannot create a session id (temporary used: with id 0)" << logend;
log << log1 << "SM: cannot create a session id (temporary used: with id 0)" << logend;
}
@@ -127,7 +127,7 @@ void SessionManager::SetSession()
{
// that session is in the table
request.session = const_cast<Session*>( &(*s) );
log << log1 << "session: " << s->id << logend;
log << log1 << "SM: session: " << s->id << logend;
}
else
{