namespace PT renamed to pt

This commit is contained in:
2021-05-20 20:59:12 +02:00
parent d66a36cf21
commit e48a28a5c8
100 changed files with 597 additions and 597 deletions

View File

@@ -58,7 +58,7 @@ struct TicketConfWrap
{
bool to_delete;
std::wstring file_name;
PT::Space conf;
pt::Space conf;
TicketConfWrap()
{
@@ -106,7 +106,7 @@ public:
// current ticket config
// will be set by FindCurrentConf()
TicketConfWrap * cur_conf_wrap;
PT::Space * cur_conf;
pt::Space * cur_conf;
// default: "progress"
// can be set in config in option: ticket_form_progress_prefix
@@ -127,9 +127,9 @@ public:
void ReadTicketConf(bool skip_existing_configs = false);
void FindCurrentConf(long dir_id);
void FindCurrentConf();
void ReadTicketParams(Ticket & ticket, bool clear_ticket, PT::Space & meta, bool & file_was_deleted);
void ReadTicketParams(Ticket & ticket, bool clear_ticket, pt::Space & meta, bool & file_was_deleted);
void RemoveTicket(long file_id);
void CopyTicketSpace(PT::Space & ticket_space, Item & item);
void CopyTicketSpace(pt::Space & ticket_space, Item & item);
void MakeRedirectIfPossible(const Item & item);
@@ -154,14 +154,14 @@ private:
std::wstring file_path;
// for reading config file
PT::SpaceParser conf_parser;
pt::SpaceParser conf_parser;
std::vector<Item*> config_dir_tab;
Item config_file;
// for Clearing
// (we don't want to use empty pointers)
TicketConfWrap cur_conf_wrap_empty;
PT::Space cur_conf_empty;
pt::Space cur_conf_empty;
Ticket ticket_empty;
Item item_empty;
@@ -174,17 +174,17 @@ private:
void MarkAllConfToDelete();
void DeleteAllMarkedConf();
void ReadTicketConf(const Mount & mount, bool skip_existing_configs);
PT::Space & FindAddMetaByParam(PT::Space & meta, long param);
pt::Space & FindAddMetaByParam(pt::Space & meta, long param);
void CheckMinMaxValue(PT::Space & space, Ticket::TicketParam & par);
bool ReadTicketValue(PT::Space & space, long param_id, Ticket::TicketParam & par, const std::wstring & value, PT::Space & meta);
void ReadTicketValue(PT::Space & space, long param_id, const PostFile & value, PT::Space & meta, Item & upload_dir);
void ReadTicketValue(PT::Space & space, long param_id, const PostFile & value, PT::Space & meta);
void ReadTicketParam(PT::Space & space, Ticket & ticket, long param_id, const std::wstring & value, PT::Space & meta);
void ReadTicketParam(Ticket & ticket, long param_id, const std::wstring & value, PT::Space & meta);
void ReadTicketParam(long param_id, const PostFile & value, PT::Space & meta);
bool DeleteTicketFile(Ticket & ticket, long file_id, PT::Space & meta);
void CheckMinMaxValue(pt::Space & space, Ticket::TicketParam & par);
bool ReadTicketValue(pt::Space & space, long param_id, Ticket::TicketParam & par, const std::wstring & value, pt::Space & meta);
void ReadTicketValue(pt::Space & space, long param_id, const PostFile & value, pt::Space & meta, Item & upload_dir);
void ReadTicketValue(pt::Space & space, long param_id, const PostFile & value, pt::Space & meta);
void ReadTicketParam(pt::Space & space, Ticket & ticket, long param_id, const std::wstring & value, pt::Space & meta);
void ReadTicketParam(Ticket & ticket, long param_id, const std::wstring & value, pt::Space & meta);
void ReadTicketParam(long param_id, const PostFile & value, pt::Space & meta);
bool DeleteTicketFile(Ticket & ticket, long file_id, pt::Space & meta);
};