added: we can use different redirect codes now

(int Request::redirect_type variable)
       we can set following integer values:
       300 - Multiple Choices
       301 - Moved Permanently
       302 - Found
       307 - Temporary Redirect
       303 - See Other
       default is 303 for all redirects



git-svn-id: svn://ttmath.org/publicrep/winix/trunk@749 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2011-07-07 17:02:14 +00:00
parent eaf10c70b7
commit ccc02f41bf
9 changed files with 106 additions and 48 deletions

View File

@@ -424,11 +424,6 @@ return locale_files[lang];
}
size_t Locale::Size()
{
return loc_tab.size();
}
void Locale::UTF8(bool utf)
{

View File

@@ -64,9 +64,6 @@ public:
// how many languages we have
size_t Size();
// setting/getting current language
// default: 0
void SetLang(size_t lang);