added: ThreadManager all threads are connected to the ThreadManager they are started/stopped by the manager changed: FunctionParser now we are parsing directly what is in URI (we were using GetParser beforehand) we are able to recognize ordinary URI scheme (with '?' and '#' characters) sample: http://domain.com/dir1/dir2/item/function?par1=val2&par2=val2#htmlanchor is the same as: http://domain.com/dir1/dir2/item/function/par1:val2/par2:val2#htmlanchor 'htmlanchor' is put in Request::anchor field, and the default function can be used like this: http://domain.com/dir1/dir2/item?par1=val2&par2=val2#htmlanchor but there is not an equivalent in winix form e.g. http://domain.com/dir1/dir2/item/par1:val2/par2:val2#htmlanchor because 'par1:val2' would be treated as a function name removed: GetParser now we don't have Request::get_tab structure removed: CKEditorGetParser it is not needed now git-svn-id: svn://ttmath.org/publicrep/winix/trunk@752 e52654a7-88a9-db11-a3e9-0013d4bc506e
82 lines
1.2 KiB
C++
Executable File
82 lines
1.2 KiB
C++
Executable File
/*
|
|
* This file is a part of Winix
|
|
* and is not publicly distributed
|
|
*
|
|
* Copyright (c) 2011, Tomasz Sowa
|
|
* All rights reserved.
|
|
*
|
|
*/
|
|
|
|
|
|
#include "core/log.h"
|
|
#include "core/plugin.h"
|
|
#include "exportthread.h"
|
|
|
|
|
|
extern "C" void Init(PluginInfo &);
|
|
|
|
|
|
|
|
|
|
namespace Export
|
|
{
|
|
|
|
|
|
const wchar_t plugin_name[] = L"export";
|
|
int mount_par_export_conf = -1;
|
|
ExportThread export_thread;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void AddMountParams(PluginInfo & info)
|
|
{
|
|
using TemplatesFunctions::system;
|
|
|
|
mount_par_export_conf = system->mounts.AddMountPar(L"export_conf");
|
|
}
|
|
|
|
|
|
|
|
void FstabChanged(PluginInfo & info)
|
|
{
|
|
}
|
|
|
|
|
|
void SendFile(PluginInfo & info)
|
|
{
|
|
Item & item = *reinterpret_cast<Item*>(info.p1);
|
|
|
|
log << log1 << "bedziemy wysylac strone o tytule: " << item.subject << ", url: " << item.url << logend;
|
|
}
|
|
|
|
|
|
|
|
void AddEzcFunctions(PluginInfo & info);
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
|
|
|
|
void Init(PluginInfo & info)
|
|
{
|
|
using namespace Export;
|
|
|
|
// plugin.Assign(WINIX_TEMPLATES_CREATEFUNCTIONS, AddEzcFunctions);
|
|
plugin.Assign(WINIX_ADD_MOUNTS, AddMountParams);
|
|
// plugin.Assign(WINIX_FSTAB_CHANGED, FstabChanged);
|
|
|
|
|
|
plugin.Assign(WINIX_FILE_ADDED, SendFile);
|
|
plugin.Assign(WINIX_FILE_CHANGED, SendFile);
|
|
|
|
info.p1 = (void*)(plugin_name);
|
|
}
|
|
|
|
|