mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
correct find and new color for stattus server
This commit is contained in:
parent
759214fe03
commit
d5dab18175
7 changed files with 198 additions and 112 deletions
Binary file not shown.
|
|
@ -240,6 +240,7 @@ void dlgFindReplace::OnFind(wxCommandEvent &ev)
|
|||
startAtTop=true;
|
||||
reverse=false;
|
||||
// not find in current tabs
|
||||
if (all) {
|
||||
ctlAuiNotebook *note=startsqlbox->GetQueryBook();
|
||||
if (note!=NULL) {
|
||||
size_t count_pages=note->GetPageCount();
|
||||
|
|
@ -277,9 +278,11 @@ void dlgFindReplace::OnFind(wxCommandEvent &ev)
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
wxWindow *w = wxWindow::FindFocus();
|
||||
wxMessageBox(_("Reached the end of the document"), _("Replace text"), wxICON_EXCLAMATION | wxOK, w);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void dlgFindReplace::OnReplace(wxCommandEvent &ev)
|
||||
|
|
|
|||
|
|
@ -103,6 +103,7 @@
|
|||
#define pickerActiveProcessColour CTRL_COLOURPICKER("pickerActiveProcessColour")
|
||||
#define pickerSlowProcessColour CTRL_COLOURPICKER("pickerSlowProcessColour")
|
||||
#define pickerBlockedProcessColour CTRL_COLOURPICKER("pickerBlockedProcessColour")
|
||||
#define pickerBlockedbyProcessColour CTRL_COLOURPICKER("pickerBlockedbyProcessColour")
|
||||
#define pickerFavouritesFile CTRL_FILEPICKER("pickerFavouritesFile")
|
||||
#define pickerMacrosFile CTRL_FILEPICKER("pickerMacrosFile")
|
||||
#define pickerHistoryFile CTRL_FILEPICKER("pickerHistoryFile")
|
||||
|
|
@ -332,6 +333,7 @@ frmOptions::frmOptions(frmMain *parent)
|
|||
pickerActiveProcessColour->SetColour(settings->GetActiveProcessColour());
|
||||
pickerSlowProcessColour->SetColour(settings->GetSlowProcessColour());
|
||||
pickerBlockedProcessColour->SetColour(settings->GetBlockedProcessColour());
|
||||
pickerBlockedbyProcessColour->SetColour(settings->GetBlockedbyProcessColour());
|
||||
|
||||
pickerFavouritesFile->SetPath(settings->GetFavouritesFile());
|
||||
pickerMacrosFile->SetPath(settings->GetMacrosFile());
|
||||
|
|
|
|||
|
|
@ -1660,11 +1660,12 @@ void frmStatus::OnRefreshStatusTimer(wxTimerEvent &event)
|
|||
|
||||
// Clear the queries array content
|
||||
queries.Clear();
|
||||
|
||||
wxString blocked;
|
||||
wxArrayLong pids;
|
||||
while (!dataSet1->Eof())
|
||||
{
|
||||
pid = dataSet1->GetLong(wxT("pid"));
|
||||
|
||||
pids.Add(pid);
|
||||
// Update the UI
|
||||
if (pid != backend_pid)
|
||||
{
|
||||
|
|
@ -1760,9 +1761,12 @@ void frmStatus::OnRefreshStatusTimer(wxTimerEvent &event)
|
|||
wxColour(settings->GetIdleProcessColour()));
|
||||
}
|
||||
|
||||
if (dataSet1->GetVal(wxT("blockedby")).Length() > 0)
|
||||
if (dataSet1->GetVal(wxT("blockedby")).Length() > 0) {
|
||||
statusList->SetItemBackgroundColour(row,
|
||||
wxColour(settings->GetBlockedProcessColour()));
|
||||
blocked += dataSet1->GetVal(wxT("blockedby"));
|
||||
blocked += wxT(",");
|
||||
}
|
||||
if (dataSet1->GetBool(wxT("slowquery")))
|
||||
statusList->SetItemBackgroundColour(row,
|
||||
wxColour(settings->GetSlowProcessColour()));
|
||||
|
|
@ -1775,6 +1779,25 @@ void frmStatus::OnRefreshStatusTimer(wxTimerEvent &event)
|
|||
dataSet1->MoveNext();
|
||||
}
|
||||
delete dataSet1;
|
||||
if (viewMenu->IsChecked(MNU_HIGHLIGHTSTATUS))
|
||||
{
|
||||
wxString numstr;
|
||||
wxString *str;
|
||||
numstr=blocked.BeforeFirst(',',str);
|
||||
while (!numstr.IsEmpty()) {
|
||||
int number = wxAtoi(numstr);
|
||||
for(long i = 0; i < pids.size(); i++)
|
||||
{
|
||||
if (pids[i]==number) {
|
||||
statusList->SetItemBackgroundColour(i,
|
||||
wxColour(settings->GetBlockedbyProcessColour()));
|
||||
|
||||
}
|
||||
}
|
||||
blocked=str->Clone();
|
||||
numstr=blocked.BeforeFirst(',',str);
|
||||
}
|
||||
}
|
||||
bool selverify=true;
|
||||
while (row < statusList->GetItemCount()) {
|
||||
statusList->Select(row,false);
|
||||
|
|
|
|||
|
|
@ -566,6 +566,16 @@ public:
|
|||
{
|
||||
Write(wxT("BlockedProcessColour"), newval);
|
||||
}
|
||||
wxString GetBlockedbyProcessColour() const
|
||||
{
|
||||
wxString s;
|
||||
Read(wxT("BlockedbyProcessColour"), &s, wxT("#FFF200"));
|
||||
return s;
|
||||
}
|
||||
void SetBlockedbyProcessColour(const wxString &newval)
|
||||
{
|
||||
Write(wxT("BlockedbyProcessColour"), newval);
|
||||
}
|
||||
|
||||
// SQL Editor Colours options
|
||||
bool GetSQLBoxUseSystemBackground() const
|
||||
|
|
|
|||
|
|
@ -1165,6 +1165,20 @@
|
|||
<flag>wxEXPAND|wxALIGN_CENTER_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="wxStaticText" name="stBlockedbyProcessColour">
|
||||
<label>Blocked by Process Colour</label>
|
||||
</object>
|
||||
<flag>wxALIGN_CENTER_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
<object class="ctlColourPicker" name="pickerBlockedbyProcessColour">
|
||||
<size>70,12d</size>
|
||||
</object>
|
||||
<flag>wxEXPAND|wxALIGN_CENTER_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
<border>4</border>
|
||||
</object>
|
||||
</object>
|
||||
</object>
|
||||
<flag>wxEXPAND|wxALIGN_CENTER_VERTICAL|wxTOP|wxLEFT|wxRIGHT</flag>
|
||||
|
|
|
|||
|
|
@ -35618,7 +35618,7 @@ static unsigned char xml_res_file_77[] = {
|
|||
47,111,98,106,101,99,116,62,10,60,47,114,101,115,111,117,114,99,101,62,
|
||||
10};
|
||||
|
||||
static size_t xml_res_size_78 = 69265;
|
||||
static size_t xml_res_size_78 = 70018;
|
||||
static unsigned char xml_res_file_78[] = {
|
||||
60,63,120,109,108,32,118,101,114,115,105,111,110,61,34,49,46,48,34,32,101,
|
||||
110,99,111,100,105,110,103,61,34,73,83,79,45,56,56,53,57,45,49,34,63,62,
|
||||
|
|
@ -38355,124 +38355,158 @@ static unsigned char xml_res_file_78[] = {
|
|||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,111,114,100,101,114,
|
||||
62,52,60,47,98,111,114,100,101,114,62,10,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,
|
||||
62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,
|
||||
101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,
|
||||
108,97,103,62,119,120,69,88,80,65,78,68,124,119,120,65,76,73,71,78,95,67,
|
||||
69,78,84,69,82,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,124,119,
|
||||
120,76,69,70,84,124,119,120,82,73,71,72,84,60,47,102,108,97,103,62,10,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,111,114,100,101,114,
|
||||
62,52,60,47,98,111,114,100,101,114,62,10,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,
|
||||
105,122,101,114,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,
|
||||
120,80,97,110,101,108,34,32,110,97,109,101,61,34,112,110,108,68,97,116,
|
||||
97,98,97,115,101,68,101,115,105,103,110,101,114,34,62,10,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,105,100,100,101,110,62,49,
|
||||
60,47,104,105,100,100,101,110,62,10,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,
|
||||
120,70,108,101,120,71,114,105,100,83,105,122,101,114,34,62,10,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,99,111,108,115,62,
|
||||
49,60,47,99,111,108,115,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,60,118,103,97,112,62,53,60,47,118,103,97,112,62,10,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,103,97,
|
||||
112,62,53,60,47,104,103,97,112,62,10,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,60,103,114,111,119,97,98,108,101,99,111,108,115,
|
||||
62,48,60,47,103,114,111,119,97,98,108,101,99,111,108,115,62,10,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,
|
||||
116,32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101,109,34,62,
|
||||
10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,
|
||||
111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,70,108,101,120,
|
||||
71,114,105,100,83,105,122,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,99,111,108,115,62,50,60,47,
|
||||
99,111,108,115,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,60,118,103,97,112,62,53,60,47,118,103,97,112,62,10,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
60,104,103,97,112,62,53,60,47,104,103,97,112,62,10,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,103,114,111,119,97,
|
||||
98,108,101,99,111,108,115,62,49,60,47,103,114,111,119,97,98,108,101,99,
|
||||
111,108,115,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,
|
||||
105,122,101,114,105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,
|
||||
32,99,108,97,115,115,61,34,119,120,83,116,97,116,105,99,84,101,120,116,
|
||||
34,32,110,97,109,101,61,34,115,116,70,111,110,116,68,68,34,62,10,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,60,108,97,98,101,108,62,70,111,110,116,60,47,108,97,98,101,108,62,
|
||||
10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,108,97,103,62,119,
|
||||
120,65,76,73,71,78,95,67,69,78,84,69,82,95,86,69,82,84,73,67,65,76,124,
|
||||
119,120,84,79,80,124,119,120,76,69,70,84,124,119,120,82,73,71,72,84,60,
|
||||
47,102,108,97,103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,60,98,111,114,100,101,114,62,52,60,47,98,
|
||||
111,114,100,101,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,83,116,97,116,
|
||||
105,99,84,101,120,116,34,32,110,97,109,101,61,34,115,116,66,108,111,99,
|
||||
107,101,100,98,121,80,114,111,99,101,115,115,67,111,108,111,117,114,34,
|
||||
62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,60,108,97,98,101,108,62,66,108,111,99,107,101,100,32,98,121,32,80,
|
||||
114,111,99,101,115,115,32,67,111,108,111,117,114,60,47,108,97,98,101,108,
|
||||
62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,60,102,108,97,103,62,119,120,65,76,73,71,78,
|
||||
95,67,69,78,84,69,82,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,124,
|
||||
119,120,76,69,70,84,124,119,120,82,73,71,72,84,60,47,102,108,97,103,62,
|
||||
10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,
|
||||
98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,114,62,10,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,
|
||||
99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,
|
||||
105,116,101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,99,
|
||||
116,108,67,111,108,111,117,114,80,105,99,107,101,114,34,32,110,97,109,101,
|
||||
61,34,112,105,99,107,101,114,66,108,111,99,107,101,100,98,121,80,114,111,
|
||||
99,101,115,115,67,111,108,111,117,114,34,62,10,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,115,105,122,101,62,55,
|
||||
48,44,49,50,100,60,47,115,105,122,101,62,10,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,
|
||||
108,97,103,62,119,120,69,88,80,65,78,68,124,119,120,65,76,73,71,78,95,67,
|
||||
69,78,84,69,82,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,124,119,
|
||||
120,76,69,70,84,124,119,120,82,73,71,72,84,60,47,102,108,97,103,62,10,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,111,
|
||||
114,100,101,114,62,52,60,47,98,111,114,100,101,114,62,10,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,
|
||||
62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,
|
||||
106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,
|
||||
47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,60,102,108,97,103,62,119,120,69,88,80,65,78,68,124,119,120,65,76,
|
||||
73,71,78,95,67,69,78,84,69,82,95,86,69,82,84,73,67,65,76,124,119,120,84,
|
||||
79,80,124,119,120,76,69,70,84,124,119,120,82,73,71,72,84,60,47,102,108,
|
||||
97,103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,111,
|
||||
114,100,101,114,62,52,60,47,98,111,114,100,101,114,62,10,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,
|
||||
101,99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101,109,
|
||||
34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,
|
||||
120,70,111,110,116,80,105,99,107,101,114,67,116,114,108,34,32,110,97,109,
|
||||
101,61,34,112,105,99,107,101,114,70,111,110,116,68,68,34,47,62,10,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
60,102,108,97,103,62,119,120,69,88,80,65,78,68,124,119,120,65,76,73,71,
|
||||
78,95,67,69,78,84,69,82,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,
|
||||
124,119,120,76,69,70,84,124,119,120,82,73,71,72,84,60,47,102,108,97,103,
|
||||
62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,114,
|
||||
62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,108,
|
||||
97,103,62,119,120,69,88,80,65,78,68,124,119,120,65,76,73,71,78,95,67,69,
|
||||
78,84,69,82,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,124,119,120,
|
||||
76,69,70,84,124,119,120,82,73,71,72,84,60,47,102,108,97,103,62,10,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,111,114,
|
||||
100,101,114,62,52,60,47,98,111,114,100,101,114,62,10,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,
|
||||
10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,
|
||||
101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,80,97,110,101,
|
||||
108,34,32,110,97,109,101,61,34,112,110,108,80,103,65,103,101,110,116,34,
|
||||
62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,
|
||||
105,100,100,101,110,62,49,60,47,104,105,100,100,101,110,62,10,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,
|
||||
116,32,99,108,97,115,115,61,34,119,120,70,108,101,120,71,114,105,100,83,
|
||||
105,122,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,60,99,111,108,115,62,50,60,47,99,111,108,115,62,10,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,118,103,
|
||||
97,112,62,53,60,47,118,103,97,112,62,10,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,60,104,103,97,112,62,53,60,47,104,103,
|
||||
32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,
|
||||
115,61,34,115,105,122,101,114,105,116,101,109,34,62,10,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,
|
||||
115,61,34,119,120,80,97,110,101,108,34,32,110,97,109,101,61,34,112,110,
|
||||
108,68,97,116,97,98,97,115,101,68,101,115,105,103,110,101,114,34,62,10,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,105,100,100,
|
||||
101,110,62,49,60,47,104,105,100,100,101,110,62,10,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,
|
||||
115,115,61,34,119,120,70,108,101,120,71,114,105,100,83,105,122,101,114,
|
||||
34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,
|
||||
99,111,108,115,62,49,60,47,99,111,108,115,62,10,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,60,118,103,97,112,62,53,60,47,118,103,
|
||||
97,112,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,60,103,114,111,119,97,98,108,101,99,111,108,115,62,49,60,47,103,114,
|
||||
111,119,97,98,108,101,99,111,108,115,62,10,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,
|
||||
97,115,115,61,34,115,105,122,101,114,105,116,101,109,34,62,10,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,
|
||||
106,101,99,116,32,99,108,97,115,115,61,34,119,120,83,116,97,116,105,99,
|
||||
84,101,120,116,34,32,110,97,109,101,61,34,108,98,108,77,97,120,82,111,119,
|
||||
115,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,60,108,97,98,101,108,62,77,97,120,105,109,117,109,32,
|
||||
114,111,119,115,32,116,111,32,114,101,116,114,105,101,118,101,60,47,108,
|
||||
97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,
|
||||
60,104,103,97,112,62,53,60,47,104,103,97,112,62,10,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,60,103,114,111,119,97,98,108,101,
|
||||
99,111,108,115,62,48,60,47,103,114,111,119,97,98,108,101,99,111,108,115,
|
||||
62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,
|
||||
98,106,101,99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,
|
||||
101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,
|
||||
70,108,101,120,71,114,105,100,83,105,122,101,114,34,62,10,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,99,111,108,
|
||||
115,62,50,60,47,99,111,108,115,62,10,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,60,118,103,97,112,62,53,60,47,118,103,
|
||||
97,112,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,60,104,103,97,112,62,53,60,47,104,103,97,112,62,10,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,103,114,
|
||||
111,119,97,98,108,101,99,111,108,115,62,49,60,47,103,114,111,119,97,98,
|
||||
108,101,99,111,108,115,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,
|
||||
115,61,34,115,105,122,101,114,105,116,101,109,34,62,10,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,
|
||||
101,99,116,32,99,108,97,115,115,61,34,119,120,83,116,97,116,105,99,84,101,
|
||||
120,116,34,32,110,97,109,101,61,34,115,116,70,111,110,116,68,68,34,62,10,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,60,108,97,98,101,108,62,70,111,110,116,60,47,108,97,98,101,
|
||||
108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,108,97,103,
|
||||
62,119,120,65,76,73,71,78,95,67,69,78,84,69,82,95,86,69,82,84,73,67,65,
|
||||
76,124,119,120,84,79,80,124,119,120,76,69,70,84,124,119,120,82,73,71,72,
|
||||
84,60,47,102,108,97,103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,60,98,111,114,100,101,114,62,52,60,47,98,
|
||||
111,114,100,101,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,
|
||||
32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101,109,34,62,10,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,60,98,111,114,100,101,114,62,52,60,
|
||||
47,98,111,114,100,101,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,
|
||||
98,106,101,99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,
|
||||
101,109,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,
|
||||
34,119,120,70,111,110,116,80,105,99,107,101,114,67,116,114,108,34,32,110,
|
||||
97,109,101,61,34,112,105,99,107,101,114,70,111,110,116,68,68,34,47,62,10,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,84,101,120,
|
||||
116,67,116,114,108,34,32,110,97,109,101,61,34,116,120,116,77,97,120,82,
|
||||
111,119,115,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,60,118,97,108,117,101,62,49,48,48,60,47,118,
|
||||
97,108,117,101,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,60,116,111,111,108,116,105,112,62,77,97,120,
|
||||
32,32,60,102,108,97,103,62,119,120,69,88,80,65,78,68,124,119,120,65,76,
|
||||
73,71,78,95,67,69,78,84,69,82,95,86,69,82,84,73,67,65,76,124,119,120,84,
|
||||
79,80,124,119,120,76,69,70,84,124,119,120,82,73,71,72,84,60,47,102,108,
|
||||
97,103,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,60,98,111,114,100,101,114,62,52,60,47,98,111,114,100,
|
||||
101,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,
|
||||
10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,
|
||||
102,108,97,103,62,119,120,69,88,80,65,78,68,124,119,120,65,76,73,71,78,
|
||||
95,67,69,78,84,69,82,95,86,69,82,84,73,67,65,76,124,119,120,84,79,80,124,
|
||||
119,120,76,69,70,84,124,119,120,82,73,71,72,84,60,47,102,108,97,103,62,
|
||||
10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,
|
||||
98,111,114,100,101,114,62,52,60,47,98,111,114,100,101,114,62,10,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,
|
||||
99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,47,
|
||||
111,98,106,101,99,116,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,80,
|
||||
97,110,101,108,34,32,110,97,109,101,61,34,112,110,108,80,103,65,103,101,
|
||||
110,116,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,60,104,105,100,100,101,110,62,49,60,47,104,105,100,100,101,110,62,
|
||||
10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,
|
||||
106,101,99,116,32,99,108,97,115,115,61,34,119,120,70,108,101,120,71,114,
|
||||
105,100,83,105,122,101,114,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,60,99,111,108,115,62,50,60,47,99,111,108,
|
||||
115,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,60,118,103,97,112,62,53,60,47,118,103,97,112,62,10,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,104,103,97,112,62,53,
|
||||
60,47,104,103,97,112,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,60,103,114,111,119,97,98,108,101,99,111,108,115,62,
|
||||
49,60,47,103,114,111,119,97,98,108,101,99,111,108,115,62,10,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,101,
|
||||
99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101,109,34,
|
||||
62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,83,116,
|
||||
97,116,105,99,84,101,120,116,34,32,110,97,109,101,61,34,108,98,108,77,97,
|
||||
120,82,111,119,115,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,60,108,97,98,101,108,62,77,97,120,105,
|
||||
109,117,109,32,114,111,119,115,32,116,111,32,114,101,116,114,105,101,118,
|
||||
101,60,47,108,97,98,101,108,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,102,
|
||||
108,97,103,62,119,120,65,76,73,71,78,95,67,69,78,84,69,82,95,86,69,82,84,
|
||||
73,67,65,76,124,119,120,84,79,80,124,119,120,76,69,70,84,124,119,120,82,
|
||||
73,71,72,84,60,47,102,108,97,103,62,10,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,60,98,111,114,100,101,114,62,52,
|
||||
60,47,98,111,114,100,101,114,62,10,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,60,47,111,98,106,101,99,116,62,10,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,60,111,98,106,
|
||||
101,99,116,32,99,108,97,115,115,61,34,115,105,122,101,114,105,116,101,109,
|
||||
34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,61,34,119,120,84,
|
||||
101,120,116,67,116,114,108,34,32,110,97,109,101,61,34,116,120,116,77,97,
|
||||
120,82,111,119,115,34,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,32,60,118,97,108,117,101,62,49,48,48,60,47,
|
||||
118,97,108,117,101,62,10,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,32,
|
||||
32,32,32,32,32,32,32,32,32,32,60,116,111,111,108,116,105,112,62,77,97,120,
|
||||
105,109,117,109,115,32,114,111,119,115,32,116,111,32,114,101,116,114,105,
|
||||
101,118,101,32,105,110,116,111,32,111,117,116,112,117,116,32,119,105,110,
|
||||
100,111,119,59,32,48,32,61,32,117,110,108,105,109,105,116,101,100,60,47,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue