e.g.: 07555 means: 7 for owner 5 for group 5 for others 5 for guests (not logged users) added: the sticky bit for directories e.g. permissions to a directory with a sticky bit set can be set to: 017555 rewritten: rm/mv winix functions to correctly understand the sticky bit added: Dir::FollowLink() recognizes ".." and "." now consequently System::FollowAllLinks recognizes it too added: umask -- calculating privileges for new files/directories all users have their own umask (in meta) and there is one in the config (for guests and when a user has not definied its own one) removed: mount option: only_root_remove git-svn-id: svn://ttmath.org/publicrep/winix/trunk@801 e52654a7-88a9-db11-a3e9-0013d4bc506e
63 lines
1003 B
C++
Executable File
63 lines
1003 B
C++
Executable File
/*
|
|
* This file is a part of Winix
|
|
* and is not publicly distributed
|
|
*
|
|
* Copyright (c) 2008-2012, Tomasz Sowa
|
|
* All rights reserved.
|
|
*
|
|
*/
|
|
|
|
#include "reload.h"
|
|
#include "templates/templates.h"
|
|
|
|
|
|
namespace Fun
|
|
{
|
|
|
|
|
|
Reload::Reload()
|
|
{
|
|
fun.url = L"reload";
|
|
fun.privileges = 07000;
|
|
}
|
|
|
|
|
|
bool Reload::HasAccess()
|
|
{
|
|
return cur->session->puser && cur->session->puser->super_user;
|
|
}
|
|
|
|
|
|
|
|
void Reload::FunReloadTemplates()
|
|
{
|
|
log << log1 << "Content: reloading html templates" << logend;
|
|
|
|
templates->ReadTemplates();
|
|
// reload notify after templates (notify uses locales from templates)
|
|
system->notify.ReadTemplates();
|
|
}
|
|
|
|
|
|
|
|
|
|
void Reload::MakeGet()
|
|
{
|
|
// !! temporarily only an admin has access
|
|
|
|
if( !cur->session->puser || !cur->session->puser->super_user )
|
|
{
|
|
log << log1 << "Content: Only an admin has access to reload function" << logend;
|
|
cur->request->status = WINIX_ERR_PERMISSION_DENIED;
|
|
return;
|
|
}
|
|
|
|
if( cur->request->IsParam(L"templates") )
|
|
FunReloadTemplates();
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace
|