From: Eran I. <no...@so...> - 2014-01-10 08:53:15
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "codelite". The branch, master has been updated via ddb49421c9355eda174f884ee0f521b7f43f445c (commit) from 1b4fce2de80fe8a184ebba99dd7d4ebe8996f834 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- https://sourceforge.net/p/codelite/codelitegit/ci/ddb49421c9355eda174f884ee0f521b7f43f445c commit ddb49421c9355eda174f884ee0f521b7f43f445c Author: Eran <era...@gm...> Date: Fri Jan 10 10:52:28 2014 +0200 codelite-terminal: added support for saving the terminal content into a file diff --git a/codelite_terminal/MainFrame.cpp b/codelite_terminal/MainFrame.cpp index b87f1d2..1917c24 100644 --- a/codelite_terminal/MainFrame.cpp +++ b/codelite_terminal/MainFrame.cpp @@ -5,6 +5,7 @@ #include <wx/settings.h> #include <wx/colordlg.h> #include "SettingsDlg.h" +#include <wx/filedlg.h> #ifndef __WXMSW__ #if defined(__WXGTK__) @@ -147,11 +148,11 @@ void MainFrame::DoExecuteCurrentLine(const wxString &command) cmd.RemoveLast(); async = true; } - + if ( command.IsEmpty() ) { AppendNewLine(); } - + if ( cmd.IsEmpty() ) { SetCartAtEnd(); return; @@ -413,3 +414,19 @@ void MainFrame::DoApplySettings() DoSetColour( m_config.GetBgColour(), true ); DoSetFont ( m_config.GetFont() ); } + +void MainFrame::OnSaveContent(wxCommandEvent& event) +{ + const wxString ALL(wxT("All Files (*)|*")); + wxFileDialog dlg(this, _("Save As"), ::wxGetCwd(), "codelite-terminal.txt", ALL, + wxFD_SAVE | wxFD_OVERWRITE_PROMPT , + wxDefaultPosition); + if ( dlg.ShowModal() == wxID_OK ) { + m_stc->SaveFile( dlg.GetPath() ); + } +} + +void MainFrame::OnSaveContentUI(wxUpdateUIEvent& event) +{ + event.Enable( !m_stc->IsEmpty() ); +} diff --git a/codelite_terminal/MainFrame.h b/codelite_terminal/MainFrame.h index fb9c14f..6d44739 100644 --- a/codelite_terminal/MainFrame.h +++ b/codelite_terminal/MainFrame.h @@ -23,6 +23,8 @@ class MainFrame : public MainFrameBaseClass MyConfig m_config; protected: + virtual void OnSaveContentUI(wxUpdateUIEvent& event); + virtual void OnSaveContent(wxCommandEvent& event); virtual void OnSettings(wxCommandEvent& event); virtual void OnSignalInferiorUI(wxUpdateUIEvent& event); virtual void OnSignalinferior(wxAuiToolBarEvent& event); diff --git a/codelite_terminal/codelite_terminal.project b/codelite_terminal/codelite_terminal.project index fd30674..470ddb9 100644 --- a/codelite_terminal/codelite_terminal.project +++ b/codelite_terminal/codelite_terminal.project @@ -3,6 +3,15 @@ <Plugins> <Plugin Name="CMakePlugin"> <![CDATA[[{ + "name": "Debug", + "enabled": false, + "buildDirectory": "build", + "sourceDirectory": "$(ProjectPath)", + "generator": "", + "buildType": "", + "arguments": [], + "parentProject": "" + }, { "name": "Debug_Linux", "enabled": false, "buildDirectory": "build", @@ -71,7 +80,7 @@ </Compiler> <Linker Options="$(shell wx-config --libs std,stc --debug);-mwindows" Required="yes"/> <ResourceCompiler Options="$(shell wx-config --rcflags)" Required="no"/> - <General OutputFile="$(IntermediateDirectory)/codelite-terminal" IntermediateDirectory="./Debug" Command="./codelite-terminal" CommandArguments="--exit --wait -- D:\src\cmake\build-debug\bin\cmake.exe -G "CodeLite - MinGW Makefiles" .." UseSeparateDebugArgs="yes" DebugArguments="--exit --wait -- D:\src\cmake\build-debug\bin\cmake.exe -G "CodeLite - MinGW Makefiles" .." WorkingDirectory="$(IntermediateDirectory)" PauseExecWhenProcTerminates="no" IsGUIProgram="yes" IsEnabled="yes"/> + <General OutputFile="$(IntermediateDirectory)/codelite-terminal" IntermediateDirectory="./Debug" Command="./codelite-terminal" CommandArguments="" UseSeparateDebugArgs="no" DebugArguments="" WorkingDirectory="$(IntermediateDirectory)" PauseExecWhenProcTerminates="no" IsGUIProgram="yes" IsEnabled="yes"/> <Environment EnvVarSetName="<Use Defaults>" DbgSetName="<Use Defaults>"> <![CDATA[]]> </Environment> diff --git a/codelite_terminal/codelite_terminal.workspace b/codelite_terminal/codelite_terminal.workspace index ef815cb..bfb51eb 100644 --- a/codelite_terminal/codelite_terminal.workspace +++ b/codelite_terminal/codelite_terminal.workspace @@ -8,10 +8,10 @@ <WorkspaceConfiguration Name="Debug" Selected="no"> <Project Name="codelite_terminal" ConfigName="Debug"/> </WorkspaceConfiguration> - <WorkspaceConfiguration Name="Release" Selected="no"> + <WorkspaceConfiguration Name="Release" Selected="yes"> <Project Name="codelite_terminal" ConfigName="Release"/> </WorkspaceConfiguration> - <WorkspaceConfiguration Name="Debug_Linux" Selected="yes"> + <WorkspaceConfiguration Name="Debug_Linux" Selected="no"> <Project Name="codelite_terminal" ConfigName="Debug_Linux"/> </WorkspaceConfiguration> </BuildMatrix> diff --git a/codelite_terminal/resources/stop.png b/codelite_terminal/resources/stop.png index 5df4c6d..ac10f17 100644 Binary files a/codelite_terminal/resources/stop.png and b/codelite_terminal/resources/stop.png differ diff --git a/codelite_terminal/terminal-16.png b/codelite_terminal/terminal-16.png index 0ba97eb..7ee6a00 100644 Binary files a/codelite_terminal/terminal-16.png and b/codelite_terminal/terminal-16.png differ diff --git a/codelite_terminal/terminal-32.png b/codelite_terminal/terminal-32.png index bb40fe0..e168af8 100644 Binary files a/codelite_terminal/terminal-32.png and b/codelite_terminal/terminal-32.png differ diff --git a/codelite_terminal/wxcrafter.cpp b/codelite_terminal/wxcrafter.cpp index bfa7a04..64c7ba5 100644 --- a/codelite_terminal/wxcrafter.cpp +++ b/codelite_terminal/wxcrafter.cpp @@ -54,11 +54,13 @@ MainFrameBaseClass::MainFrameBaseClass(wxWindow* parent, wxWindowID id, const wx boxSizer11->Add(m_auibar17, 0, wxEXPAND, 5); - m_auibar17->AddTool(wxID_CLEAR, _("Clear"), wxXmlResource::Get()->LoadBitmap(wxT("clean")), wxNullBitmap, wxITEM_NORMAL, _("Clear view"), _("Clear view"), NULL); + m_auibar17->AddTool(wxID_CLEAR, _("Clear"), wxXmlResource::Get()->LoadBitmap(wxT("stop")), wxNullBitmap, wxITEM_NORMAL, _("Clear view"), _("Clear view"), NULL); - m_auibar17->AddTool(ID_KILL_INFIRIOR, _("Send inferior process signal"), wxXmlResource::Get()->LoadBitmap(wxT("stop")), wxNullBitmap, wxITEM_NORMAL, wxT(""), _("Send inferior process signal"), NULL)->SetHasDropDown(true); + m_auibar17->AddTool(ID_KILL_INFIRIOR, _("Send inferior process signal"), wxXmlResource::Get()->LoadBitmap(wxT("signal")), wxNullBitmap, wxITEM_NORMAL, wxT(""), _("Send inferior process signal"), NULL)->SetHasDropDown(true); - m_auibar17->AddTool(ID_SETTINGS, _("Settings..."), wxXmlResource::Get()->LoadBitmap(wxT("cog")), wxNullBitmap, wxITEM_NORMAL, _("Settings..."), _("Settings..."), NULL); + m_auibar17->AddTool(ID_SETTINGS, _("Settings..."), wxXmlResource::Get()->LoadBitmap(wxT("settings")), wxNullBitmap, wxITEM_NORMAL, _("Settings..."), _("Settings..."), NULL); + + m_auibar17->AddTool(wxID_SAVE, _("Save"), wxXmlResource::Get()->LoadBitmap(wxT("save")), wxNullBitmap, wxITEM_NORMAL, _("Save"), _("Save"), NULL); m_auibar17->Realize(); m_stc = new wxStyledTextCtrl(m_mainPanel, wxID_ANY, wxDefaultPosition, wxSize(-1,-1), 0); @@ -142,6 +144,8 @@ MainFrameBaseClass::MainFrameBaseClass(wxWindow* parent, wxWindowID id, const wx this->Connect(ID_KILL_INFIRIOR, wxEVT_UPDATE_UI, wxUpdateUIEventHandler(MainFrameBaseClass::OnSignalInferiorUI), NULL, this); this->Connect(ID_KILL_INFIRIOR, wxEVT_COMMAND_AUITOOLBAR_TOOL_DROPDOWN, wxAuiToolBarEventHandler(MainFrameBaseClass::OnSignalinferior), NULL, this); this->Connect(ID_SETTINGS, wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler(MainFrameBaseClass::OnSettings), NULL, this); + this->Connect(wxID_SAVE, wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler(MainFrameBaseClass::OnSaveContent), NULL, this); + this->Connect(wxID_SAVE, wxEVT_UPDATE_UI, wxUpdateUIEventHandler(MainFrameBaseClass::OnSaveContentUI), NULL, this); m_stc->Connect(wxEVT_KEY_DOWN, wxKeyEventHandler(MainFrameBaseClass::OnKeyDown), NULL, this); m_stc->Connect(wxEVT_STC_UPDATEUI, wxStyledTextEventHandler(MainFrameBaseClass::OnStcUpdateUI), NULL, this); this->Connect(m_menuItem7->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(MainFrameBaseClass::OnExit), NULL, this); @@ -158,6 +162,8 @@ MainFrameBaseClass::~MainFrameBaseClass() this->Disconnect(ID_KILL_INFIRIOR, wxEVT_UPDATE_UI, wxUpdateUIEventHandler(MainFrameBaseClass::OnSignalInferiorUI), NULL, this); this->Disconnect(ID_KILL_INFIRIOR, wxEVT_COMMAND_AUITOOLBAR_TOOL_DROPDOWN, wxAuiToolBarEventHandler(MainFrameBaseClass::OnSignalinferior), NULL, this); this->Disconnect(ID_SETTINGS, wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler(MainFrameBaseClass::OnSettings), NULL, this); + this->Disconnect(wxID_SAVE, wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler(MainFrameBaseClass::OnSaveContent), NULL, this); + this->Disconnect(wxID_SAVE, wxEVT_UPDATE_UI, wxUpdateUIEventHandler(MainFrameBaseClass::OnSaveContentUI), NULL, this); m_stc->Disconnect(wxEVT_KEY_DOWN, wxKeyEventHandler(MainFrameBaseClass::OnKeyDown), NULL, this); m_stc->Disconnect(wxEVT_STC_UPDATEUI, wxStyledTextEventHandler(MainFrameBaseClass::OnStcUpdateUI), NULL, this); this->Disconnect(m_menuItem7->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(MainFrameBaseClass::OnExit), NULL, this); @@ -182,7 +188,7 @@ SettingsDlgBase::SettingsDlgBase(wxWindow* parent, wxWindowID id, const wxString wxBoxSizer* boxSizer27 = new wxBoxSizer(wxVERTICAL); this->SetSizer(boxSizer27); - wxFlexGridSizer* flexGridSizer29 = new wxFlexGridSizer( 0, 2, 0, 0); + wxFlexGridSizer* flexGridSizer29 = new wxFlexGridSizer(0, 2, 0, 0); flexGridSizer29->SetFlexibleDirection( wxBOTH ); flexGridSizer29->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED ); flexGridSizer29->AddGrowableCol(1); diff --git a/codelite_terminal/wxcrafter.h b/codelite_terminal/wxcrafter.h index d8a8069..bfd0666 100644 --- a/codelite_terminal/wxcrafter.h +++ b/codelite_terminal/wxcrafter.h @@ -52,6 +52,8 @@ protected: virtual void OnSignalInferiorUI(wxUpdateUIEvent& event) { event.Skip(); } virtual void OnSignalinferior(wxAuiToolBarEvent& event) { event.Skip(); } virtual void OnSettings(wxCommandEvent& event) { event.Skip(); } + virtual void OnSaveContent(wxCommandEvent& event) { event.Skip(); } + virtual void OnSaveContentUI(wxUpdateUIEvent& event) { event.Skip(); } virtual void OnKeyDown(wxKeyEvent& event) { event.Skip(); } virtual void OnStcUpdateUI(wxStyledTextEvent& event) { event.Skip(); } virtual void OnExit(wxCommandEvent& event) { event.Skip(); } diff --git a/codelite_terminal/wxcrafter.wxcp b/codelite_terminal/wxcrafter.wxcp index 9203d2a..b8b24a0 100644 --- a/codelite_terminal/wxcrafter.wxcp +++ b/codelite_terminal/wxcrafter.wxcp @@ -1,7 +1,7 @@ { "metadata": { "m_generatedFilesDir": ".", - "m_objCounter": 47, + "m_objCounter": 49, "m_includeFiles": [], "m_bitmapFunction": "wxC9ED9InitBitmapResources", "m_bitmapsFile": "wxcrafter_bitmaps.cpp", @@ -300,7 +300,7 @@ }, { "type": "bitmapPicker", "m_label": "Bitmap File:", - "m_path": "resources/clean.png" + "m_path": "resources/stop.png" }, { "type": "filePicker", "m_label": "Disabled-Bitmap File", @@ -356,7 +356,7 @@ }, { "type": "bitmapPicker", "m_label": "Bitmap File:", - "m_path": "resources/stop.png" + "m_path": "resources/signal.png" }, { "type": "filePicker", "m_label": "Disabled-Bitmap File", @@ -418,7 +418,7 @@ }, { "type": "bitmapPicker", "m_label": "Bitmap File:", - "m_path": "resources/cog.png" + "m_path": "resources/settings.png" }, { "type": "filePicker", "m_label": "Disabled-Bitmap File", @@ -437,6 +437,62 @@ "m_description": "Process a wxEVT_COMMAND_TOOL_CLICKED event (a synonym for wxEVT_COMMAND_MENU_SELECTED). Pass the id of the tool" }], "m_children": [] + }, { + "m_type": 4462, + "proportion": 0, + "border": 5, + "gbSpan": "1,1", + "gbPosition": "0,0", + "m_styles": [], + "m_sizerFlags": [], + "m_properties": [{ + "type": "winid", + "m_label": "ID:", + "m_winid": "wxID_SAVE" + }, { + "type": "string", + "m_label": "Name:", + "m_value": "m_toolbarItemSaveContent" + }, { + "type": "string", + "m_label": "Label:", + "m_value": "Save" + }, { + "type": "multi-string", + "m_label": "Tooltip:", + "m_value": "Save" + }, { + "type": "string", + "m_label": "Help String:", + "m_value": "Save" + }, { + "type": "bitmapPicker", + "m_label": "Bitmap File:", + "m_path": "resources/save.png" + }, { + "type": "filePicker", + "m_label": "Disabled-Bitmap File", + "m_path": "" + }, { + "type": "choice", + "m_label": "Kind:", + "m_selection": 0, + "m_options": ["normal", "checkable", "radio", "separator", "dropdown"] + }], + "m_events": [{ + "m_eventName": "wxEVT_COMMAND_TOOL_CLICKED", + "m_eventClass": "wxCommandEvent", + "m_eventHandler": "wxCommandEventHandler", + "m_functionNameAndSignature": "OnSaveContent(wxCommandEvent& event)", + "m_description": "Process a wxEVT_COMMAND_TOOL_CLICKED event (a synonym for wxEVT_COMMAND_MENU_SELECTED). Pass the id of the tool" + }, { + "m_eventName": "wxEVT_UPDATE_UI", + "m_eventClass": "wxUpdateUIEvent", + "m_eventHandler": "wxUpdateUIEventHandler", + "m_functionNameAndSignature": "OnSaveContentUI(wxUpdateUIEvent& event)", + "m_description": "Process a wxEVT_UPDATE_UI event" + }], + "m_children": [] }] }, { "m_type": 4466, diff --git a/codelite_terminal/wxcrafter_bitmaps.cpp b/codelite_terminal/wxcrafter_bitmaps.cpp index 63e3750..ad4a808 100644 --- a/codelite_terminal/wxcrafter_bitmaps.cpp +++ b/codelite_terminal/wxcrafter_bitmaps.cpp @@ -1,329 +1,258 @@ -// -// This file was automatically generated by wxrc, do not edit by hand. -// - -#include <wx/wxprec.h> - -#ifdef __BORLANDC__ - #pragma hdrstop -#endif - -#include <wx/filesys.h> -#include <wx/fs_mem.h> -#include <wx/xrc/xmlres.h> -#include <wx/xrc/xh_all.h> - -#if wxCHECK_VERSION(2,8,5) && wxABI_VERSION >= 20805 - #define XRC_ADD_FILE(name, data, size, mime) \ - wxMemoryFSHandler::AddFileWithMimeType(name, data, size, mime) -#else - #define XRC_ADD_FILE(name, data, size, mime) \ - wxMemoryFSHandler::AddFile(name, data, size) -#endif - -static size_t xml_res_size_0 = 697; -static unsigned char xml_res_file_0[] = { -137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0, -0,31,243,255,97,0,0,0,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,0, -0,2,110,73,68,65,84,56,141,101,208,77,79,19,65,24,7,240,255,51,59,187,219, -45,133,182,208,64,5,162,225,70,122,35,192,93,18,15,94,12,39,62,133,49,49, -28,49,16,130,137,223,193,131,55,63,134,23,15,154,120,52,242,162,81,15,130, -82,66,183,165,165,47,59,187,243,242,120,161,4,178,207,101,50,153,249,255, -230,121,134,112,83,251,251,251,98,117,125,253,101,154,168,237,66,20,213, -125,223,247,132,16,55,167,12,165,148,27,37,73,79,72,249,190,86,169,108, -111,108,108,24,0,144,99,96,121,185,241,37,25,141,214,90,173,24,169,74,80, -156,136,32,165,4,179,67,150,101,208,218,10,95,6,213,114,101,234,197,133, -202,54,1,60,186,7,88,230,181,56,190,66,187,117,137,110,175,235,6,253,1, -57,231,8,0,136,8,97,24,242,244,244,44,44,11,42,70,193,195,113,238,22,56, -63,191,196,226,66,29,243,245,121,40,165,68,166,13,51,216,18,59,38,65,30, -17,145,32,66,162,82,116,186,125,228,0,149,170,209,209,241,143,98,20,249, -168,207,213,17,69,17,73,223,247,216,57,88,231,160,146,4,205,139,38,146, -68,163,80,40,36,57,160,56,17,189,243,101,240,56,213,217,210,217,191,139, -18,114,197,0,209,104,114,178,244,43,136,194,79,57,128,72,156,213,106,229, -207,155,207,158,110,197,113,28,28,30,30,46,182,219,253,58,179,35,173,71, -215,71,223,127,186,181,149,149,46,164,220,26,12,134,205,28,96,157,237,36, -74,173,2,64,20,69,166,209,104,252,185,186,26,158,14,135,87,244,251,244, -180,148,40,253,64,4,30,167,42,155,178,218,124,205,1,70,187,142,38,93,30, -239,211,155,85,3,112,214,18,59,67,66,8,78,211,172,106,157,137,115,0,179, -237,24,77,101,34,162,123,2,0,107,5,49,59,146,144,208,198,78,25,235,218, -249,17,82,125,201,146,171,249,207,3,156,179,4,0,94,232,177,209,186,98,153, -242,29,36,194,116,66,139,60,160,1,235,28,17,9,246,216,227,76,103,181,140, -108,30,136,107,181,206,92,179,93,5,128,111,39,39,75,231,167,103,79,180, -206,102,141,113,66,141,70,131,202,100,233,88,8,175,101,44,87,2,214,183, -35,208,221,199,118,246,94,183,22,234,211,147,206,113,232,73,193,218,104, -24,109,200,89,230,110,175,135,153,153,154,137,59,215,253,55,7,187,51,227, -140,184,11,8,230,15,127,155,237,112,48,76,48,24,14,41,12,11,52,51,93,69, -52,81,164,160,80,164,184,221,243,61,193,31,239,102,238,117,0,0,175,118, -15,246,0,60,55,214,213,140,117,2,0,60,65,142,136,123,129,47,223,30,236, -239,238,16,17,143,239,255,7,118,216,77,24,194,230,243,31,0,0,0,0,73,69, -78,68,174,66,96,130}; - -static size_t xml_res_size_1 = 797; -static unsigned char xml_res_file_1[] = { -137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0, -0,31,243,255,97,0,0,0,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,0, -0,2,210,73,68,65,84,56,141,117,83,61,79,35,87,20,61,111,230,61,227,145, -103,20,201,51,46,40,221,33,26,203,150,5,169,182,218,184,177,210,44,43,167, -164,216,34,37,93,228,252,130,72,73,195,15,32,18,180,68,161,72,194,22,78, -170,109,64,66,107,107,186,181,64,32,170,17,120,6,102,134,49,158,175,251, -94,26,108,37,209,230,86,247,74,231,20,231,158,115,24,254,103,78,78,78,62, -22,69,209,1,0,206,249,100,103,103,167,243,57,28,91,46,199,199,199,95,0, -248,65,41,53,98,140,189,39,162,172,223,239,3,0,78,79,79,161,235,250,26, -17,245,117,93,255,10,192,247,131,193,32,2,0,237,31,228,15,182,109,191,35, -162,147,162,40,50,203,178,22,68,4,34,130,105,154,105,81,20,153,82,234,87, -219,182,223,1,248,240,194,1,7,0,34,250,201,182,237,141,86,171,85,201,178, -12,68,132,60,207,141,171,171,43,0,192,230,230,102,85,8,1,198,24,51,12,163, -50,153,76,54,124,223,255,17,192,183,26,0,228,121,254,155,231,121,149,56, -142,193,24,195,245,245,53,166,211,41,210,52,69,154,166,152,78,167,184,188, -188,132,174,235,152,207,231,240,60,79,228,121,254,251,74,130,97,24,35,41, -37,164,148,184,185,185,129,16,2,205,102,19,140,49,48,198,208,108,54,97, -24,6,110,111,111,49,159,207,65,68,204,48,140,17,0,176,195,195,195,143,68, -212,49,77,51,109,183,219,85,207,243,208,104,52,48,30,143,19,34,250,83,41, -197,56,231,175,59,157,142,57,155,205,176,190,190,14,215,117,23,113,28,27, -156,243,9,47,203,178,211,235,245,0,160,250,248,248,136,90,173,134,187,187, -59,16,209,251,221,221,221,111,0,224,232,232,232,151,251,251,251,183,166, -105,34,77,83,108,111,111,27,0,48,26,141,218,92,74,9,34,2,0,104,154,6,93, -215,241,34,103,101,241,210,13,93,215,161,105,218,10,47,165,4,59,56,56,24, -151,101,217,182,44,43,237,118,187,213,165,11,174,235,38,121,158,255,165, -105,26,227,156,191,110,181,90,53,206,57,132,16,56,63,63,47,210,52,21,156, -243,9,123,201,65,197,247,253,172,219,237,194,52,77,40,165,240,252,252,140, -32,8,192,24,67,189,94,71,173,86,3,0,100,89,134,179,179,51,56,142,179,54, -24,12,114,14,0,65,16,244,148,82,74,8,193,0,64,8,129,122,189,14,203,178, -176,188,165,148,40,203,18,68,4,41,37,130,32,232,1,248,67,123,209,248,181, -227,56,69,165,82,193,98,177,64,20,69,200,178,108,101,99,150,101,8,195,16, -139,197,2,134,97,192,113,156,92,41,213,95,37,49,73,146,239,0,124,233,186, -238,198,108,54,19,74,41,102,154,102,186,181,181,85,5,128,139,139,139,244, -233,233,169,202,24,83,141,70,163,120,120,120,248,148,36,201,112,21,164, -225,112,24,37,73,242,42,8,130,3,41,229,155,48,12,215,226,56,174,46,191, -31,69,81,53,12,195,53,41,229,27,223,247,127,78,146,228,213,112,56,140,254, -213,198,255,206,254,254,254,152,136,218,203,58,239,237,237,125,182,206, -127,3,135,56,141,125,58,109,237,180,0,0,0,0,73,69,78,68,174,66,96,130}; - -static size_t xml_res_size_2 = 912; -static unsigned char xml_res_file_2[] = { -137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0, -0,31,243,255,97,0,0,0,6,98,75,71,68,0,255,0,255,0,255,160,189,167,147,0, -0,3,69,73,68,65,84,56,141,93,147,79,104,28,101,24,198,127,223,204,236,102, -103,19,155,77,54,113,147,138,137,201,166,77,107,76,76,178,105,66,91,108, -171,8,34,226,85,168,32,138,21,44,37,136,24,69,140,22,68,69,48,86,208,83, -200,205,131,20,196,91,17,170,54,82,234,33,45,228,143,208,54,45,146,52,33, -150,196,100,187,187,73,246,223,236,204,124,223,124,30,98,99,245,57,61,135, -135,247,133,247,125,126,130,255,105,105,168,179,71,133,173,211,134,197, -11,218,83,77,0,34,108,174,107,165,47,32,245,68,199,212,237,155,15,230,197, -125,51,223,213,21,166,86,143,155,17,251,100,237,83,71,170,162,157,73,195, -106,136,3,32,51,89,202,127,220,9,182,175,76,185,202,175,156,103,139,51, -93,243,243,222,238,128,203,39,78,88,181,78,230,183,135,146,201,222,248, -179,79,219,148,55,209,165,77,180,95,217,217,18,138,32,170,235,32,26,35, -51,121,217,41,221,89,154,91,104,185,121,252,165,31,80,22,128,93,200,156, -171,106,109,233,173,237,235,183,239,77,77,145,117,10,180,214,239,193,180, -76,0,148,220,102,37,183,64,60,186,135,186,190,148,237,57,126,95,235,114, -48,6,183,70,140,43,61,157,109,202,176,94,141,61,209,109,59,55,174,227,54, -63,70,251,240,40,203,233,34,110,182,132,155,45,177,156,46,210,62,60,138, -219,212,138,115,227,58,117,221,61,81,95,132,95,255,181,239,96,171,249,74, -211,222,79,99,201,142,163,150,244,13,63,151,165,229,212,105,234,134,142, -98,183,117,176,120,233,18,91,174,228,192,7,31,243,240,224,97,106,170,107, -216,158,252,5,173,5,68,170,67,229,123,91,134,121,178,33,49,209,208,209, -30,83,233,13,180,231,83,188,118,149,200,254,253,196,82,135,136,238,59,64, -227,177,103,104,76,29,162,244,251,44,107,159,127,66,80,241,80,21,15,179, -62,110,100,238,174,54,27,142,36,97,4,2,63,95,66,186,18,191,80,100,229,236, -40,217,153,105,26,83,3,52,166,6,200,206,78,243,231,217,15,241,243,69,164, -43,145,249,34,70,0,174,20,77,150,23,8,237,151,29,164,39,17,128,54,4,127, -57,30,113,21,236,254,90,42,205,202,118,145,38,64,4,26,13,8,167,130,27,8, -12,169,140,141,98,46,79,160,64,185,62,171,174,79,239,216,151,36,134,134, -40,76,207,80,152,158,33,49,56,200,147,95,140,177,234,73,148,235,19,40,40, -229,242,200,192,88,55,159,223,147,104,15,105,61,16,181,76,67,57,21,186, -191,58,71,226,248,49,182,175,94,99,241,237,17,114,23,127,38,218,245,56, -13,71,14,83,159,236,32,251,227,69,68,149,77,58,95,81,249,146,251,173,249, -92,253,222,91,133,178,60,21,171,182,35,218,113,209,91,155,152,53,213,44, -188,245,30,178,84,70,85,60,114,63,77,98,239,75,146,62,255,61,165,149,53, -252,176,205,98,166,152,47,251,230,107,2,224,155,71,250,191,142,134,66,111, -60,90,99,87,83,41,35,2,133,64,239,246,92,3,26,129,54,76,136,68,185,91,168, -20,11,190,63,241,206,218,236,187,22,64,243,106,114,100,57,177,52,80,150, -78,95,162,202,142,90,58,0,173,32,248,231,144,134,1,194,68,106,131,141,173, -114,185,226,201,185,182,116,242,125,152,253,23,166,9,82,161,245,70,198, -5,226,229,26,163,42,108,27,166,105,137,29,92,164,214,56,74,170,130,118, -93,33,196,119,137,180,30,126,147,89,255,63,52,222,215,71,241,254,131,58, -176,206,32,120,81,235,96,7,103,97,172,11,29,92,192,8,198,63,203,206,221, -126,48,255,55,47,73,136,107,100,21,126,183,0,0,0,0,73,69,78,68,174,66,96, -130}; - -static size_t xml_res_size_3 = 739; -static unsigned char xml_res_file_3[] = { -137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0, -0,31,243,255,97,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112, -72,89,115,0,0,13,215,0,0,13,215,1,66,40,155,120,0,0,0,25,116,69,88,116, -83,111,102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112, -101,46,111,114,103,155,238,60,26,0,0,2,96,73,68,65,84,56,141,165,147,65, -139,92,69,20,133,191,91,85,253,90,103,8,137,104,76,24,97,132,136,89,205, -98,112,229,239,208,149,11,127,144,63,64,68,240,47,184,113,167,217,40,89, -4,113,17,35,68,36,40,8,50,65,140,51,221,233,126,239,85,189,170,186,247, -186,104,18,220,231,194,7,119,119,14,135,115,196,221,121,149,75,15,190,189, -127,126,116,237,232,139,245,48,72,74,43,137,34,110,128,106,183,82,23,47, -75,182,156,179,237,166,93,155,115,118,237,221,77,205,204,204,231,101,249, -60,29,221,56,254,250,214,187,39,119,82,74,132,16,94,82,107,165,181,198, -60,207,140,227,72,216,173,89,231,140,170,34,34,136,8,155,127,47,63,76,143, -239,63,124,242,221,151,223,220,185,113,124,157,163,245,49,235,180,198,212, -40,203,66,46,153,125,222,241,116,243,23,87,227,134,231,211,150,205,184, -165,180,76,235,157,219,239,156,252,150,54,155,171,101,251,207,37,55,79, -111,51,63,203,148,144,49,117,106,171,44,189,178,219,111,24,247,123,242, -60,145,243,68,153,51,83,157,48,55,150,101,241,180,44,139,55,53,78,239,190, -199,173,211,19,174,46,158,241,248,199,135,152,59,184,163,214,72,146,72, -97,69,140,137,24,35,34,2,14,110,78,154,242,108,75,45,132,85,164,183,206, -52,206,228,150,233,189,82,234,204,210,27,230,134,136,19,136,68,137,8,2, -128,153,122,154,242,168,219,188,229,251,123,247,64,59,49,28,212,68,2,181, -87,186,27,106,138,186,131,56,34,28,28,0,170,74,218,239,119,122,57,109,176, -191,159,112,188,122,141,183,174,191,205,221,179,51,162,4,230,121,226,209, -207,63,209,189,99,166,152,57,32,4,9,8,130,169,121,202,75,209,113,222,129, -58,125,125,141,170,202,254,193,15,116,173,136,193,210,11,173,41,221,20, -115,195,204,113,7,23,161,107,247,84,74,238,165,45,168,118,186,118,74,47, -140,249,57,170,157,33,14,8,66,213,122,160,87,186,53,204,20,113,71,187,146, -74,41,214,251,130,199,21,150,119,212,94,17,55,82,72,12,105,64,8,168,119, -170,54,106,111,180,222,121,81,126,119,247,52,188,62,132,55,110,190,73,138, -137,16,19,32,152,42,81,14,137,187,131,171,65,15,16,34,49,172,72,10,170, -13,162,12,233,163,79,63,57,63,251,224,28,128,16,2,238,254,18,51,67,85,249, -255,224,94,252,238,206,159,191,255,241,126,250,229,209,175,31,95,60,189, -248,202,122,31,212,60,170,169,184,90,52,55,113,243,0,7,83,34,193,69,68, -67,8,22,131,104,136,177,149,82,63,147,87,157,243,127,10,190,199,6,186,193, -251,38,0,0,0,0,73,69,78,68,174,66,96,130}; - -static size_t xml_res_size_4 = 1731; -static unsigned char xml_res_file_4[] = { -137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,32,0,0,0,32,8,6,0,0, -0,115,122,122,244,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,0,9,112, -72,89,115,0,0,13,215,0,0,13,215,1,66,40,155,120,0,0,0,25,116,69,88,116, -83,111,102,116,119,97,114,101,0,119,119,119,46,105,110,107,115,99,97,112, -101,46,111,114,103,155,238,60,26,0,0,6,64,73,68,65,84,88,133,205,151,79, -171,37,87,21,197,127,123,159,170,251,94,63,211,118,154,134,104,80,49,17, -37,233,64,32,25,68,4,13,162,168,51,51,16,28,57,205,103,112,234,39,240,35, -136,146,153,3,71,130,144,97,34,40,65,236,38,38,180,166,237,16,210,104,119, -147,215,6,211,221,247,222,170,115,246,31,7,167,238,237,215,175,85,116,98, -172,162,168,130,226,214,89,103,237,181,215,94,87,50,147,143,243,208,143, -117,245,255,7,0,3,192,251,215,222,187,121,246,220,39,31,211,162,168,170, ... 420 lines suppressed ... hooks/post-receive -- codelite |