mirror of
https://bitbucket.org/svk28/rac-gui
synced 2024-11-13 00:56:54 +00:00
Moved docs file into doc dit
This commit is contained in:
parent
e9fcb08a89
commit
0721d8292d
14
CHANGELOG
14
CHANGELOG
@ -1,14 +0,0 @@
|
||||
######################################################
|
||||
# Rac GUI
|
||||
# Distributed under GNU Public License
|
||||
# Author: Sergey Kalinin svk@nuk-svk.ru
|
||||
# Home page: https://bitbucket.org/svk28/rac-gui
|
||||
######################################################
|
||||
|
||||
15/05/2018
|
||||
- Добавлен вывод списка кластеров, серверов, баз и т.д
|
||||
- Добавлено отображение параметров кластера: сервера, базы, соединения, блокировки и т.д.
|
||||
|
||||
16/05/2018
|
||||
- Beginning the project
|
||||
|
7
COPYING
7
COPYING
@ -1,7 +0,0 @@
|
||||
######################################################
|
||||
# Rac GUI
|
||||
# Distributed under GNU Public License
|
||||
# Author: Sergey Kalinin svk@nuk-svk.ru
|
||||
# Home page: https://bitbucket.org/svk28/rac-gui
|
||||
######################################################
|
||||
|
7
INSTALL
7
INSTALL
@ -1,7 +0,0 @@
|
||||
######################################################
|
||||
# Rac GUI
|
||||
# Distributed under GNU Public License
|
||||
# Author: Sergey Kalinin svk@nuk-svk.ru
|
||||
# Home page: https://bitbucket.org/svk28/rac-gui
|
||||
######################################################
|
||||
|
7
README
7
README
@ -1,7 +0,0 @@
|
||||
######################################################
|
||||
# Rac GUI
|
||||
# Distributed under GNU Public License
|
||||
# Author: Sergey Kalinin svk@nuk-svk.ru
|
||||
# Home page: https://bitbucket.org/svk28/rac-gui
|
||||
######################################################
|
||||
|
7
TODO
7
TODO
@ -1,7 +0,0 @@
|
||||
######################################################
|
||||
# Rac GUI
|
||||
# Distributed under GNU Public License
|
||||
# Author: Sergey Kalinin svk@nuk-svk.ru
|
||||
# Home page: https://bitbucket.org/svk28/rac-gui
|
||||
######################################################
|
||||
|
@ -177,9 +177,15 @@ proc InsertClusterItems {tree id} {
|
||||
|
||||
proc InsertBaseItems {tree id} {
|
||||
set parent "infobase::$id"
|
||||
$tree insert $parent end -id "sessions::$id" -text "Сеансы" -values "$id"
|
||||
$tree insert $parent end -id "locks::$id" -text "Блокировки" -values "$id"
|
||||
$tree insert $parent end -id "connections::$id" -text "Соединения" -values "$id"
|
||||
if { [$tree exists "sessions::$id"] == 0 } {
|
||||
$tree insert $parent end -id "sessions::$id" -text "Сеансы" -values "$id"
|
||||
}
|
||||
if { [$tree exists "locks::$id"] == 0 } {
|
||||
$tree insert $parent end -id "locks::$id" -text "Блокировки" -values "$id"
|
||||
}
|
||||
if { [$tree exists "connections::$id"] == 0 } {
|
||||
$tree insert $parent end -id "connections::$id" -text "Соединения" -values "$id"
|
||||
}
|
||||
}
|
||||
|
||||
proc DebugInfo {widget f} {
|
||||
@ -198,3 +204,4 @@ proc DebugInfo {widget f} {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
0
rac_gui.tcl
Normal file → Executable file
0
rac_gui.tcl
Normal file → Executable file
Loading…
Reference in New Issue
Block a user