/usr/share/saods9/src/catcdssrchdialog.tcl is in saods9-data 7.2+dfsg-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 | # Copyright (C) 1999-2012
# Smithsonian Astrophysical Observatory, Cambridge, MA, USA
# For conditions of distribution and use, see copyright notice in "copyright"
package provide DS9 1.0
proc CATCDSSrchDialog {varname} {
upvar #0 $varname var
global $varname
global ds9
global pcat
global icatcdssrch
global debug
if {$debug(tcl,cat)} {
puts stderr "CATCDSSrchDialog $varname"
}
# main dialog
set var(top) ".${varname}"
set var(mb) ".${varname}mb"
if [winfo exists $var(top)] {
raise $var(top)
return
}
# defaults
# maybe modified if pcat(vot)
set var(list,wave,param) $icatcdssrch(list,wave,param)
set var(list,wave) $icatcdssrch(list,wave)
set var(list,mission,param) $icatcdssrch(list,mission,param)
set var(list,mission) $icatcdssrch(list,mission)
set var(list,astro,param) $icatcdssrch(list,astro,param)
set var(list,astro) $icatcdssrch(list,astro)
# AR variables
set var(status) {}
set var(sync) 0
# CATCDSSrch variables
set var(catdb) ${varname}catdb
set var(server) $pcat(server)
set var(source) {}
set var(words) {}
set var(wave) {}
set var(mission) {}
set var(astro) {}
# create the window
set w $var(top)
set mb $var(mb)
Toplevel $w $mb 7 [msgcat::mc {Search for Catalogs}] \
"CATCDSSrchDestroy $varname"
# file
$mb add cascade -label [msgcat::mc {File}] -menu $mb.file
menu $mb.file
$mb.file add command -label [msgcat::mc {Retrieve}] \
-command "CATCDSSrchApply $varname"
$mb.file add command -label [msgcat::mc {Cancel}] \
-command "ARCancel $varname"
$mb.file add command -label [msgcat::mc {Catalog}] \
-command "CATCDSSrchCatalog $varname"
$mb.file add command -label [msgcat::mc {Clear}] \
-command "CATCDSSrchClear $varname"
$mb.file add separator
$mb.file add command -label "[msgcat::mc {Load}]..." \
-command "CATCDSSrchLoadFile $varname"
$mb.file add command -label "[msgcat::mc {Save}]..." \
-command "CATCDSSrchSaveFile $varname"
$mb.file add separator
$mb.file add command -label [msgcat::mc {Close}] \
-command "CATCDSSrchDestroy $varname"
# edit
AREditMenu $varname
# catalog server
CATServerMenu $varname
# Param
set f [ttk::frame $w.param]
ttk::frame $f.name
ttk::frame $f.words
ttk::frame $f.srch
pack $f.name -side top -fill x -expand true
pack $f.words -side top -fill x -expand true
pack $f.srch -side bottom -fill both -expand true
# param name
ttk::label $f.name.title -text [msgcat::mc {Name or Designation}]
ttk::entry $f.name.source -textvariable ${varname}(source)
pack $f.name.title -side top -anchor w -padx 2 -pady 2
pack $f.name.source -side top -anchor w -padx 2 -pady 2 -fill x -expand true
# param keywords
ttk::label $f.words.title \
-text [msgcat::mc {Words matching title, description}]
ttk::entry $f.words.key -textvariable ${varname}(words) -width 45
pack $f.words.title -side top -anchor w -padx 2 -pady 2
pack $f.words.key -side top -anchor w -padx 2 -pady 2 -fill x -expand true
# param search
ttk::frame $f.srch.wave
ttk::frame $f.srch.mission
ttk::frame $f.srch.astro
pack $f.srch.wave $f.srch.mission $f.srch.astro \
-side left -fill both -expand true -padx 2 -pady 2
# param search wave
ttk::frame $f.srch.wave.f
ttk::label $f.srch.wave.title -text [msgcat::mc {Wavelength}]
pack $f.srch.wave.title -side top -anchor w
pack $f.srch.wave.f -side bottom -fill both -expand true \
-anchor w -padx 2 -pady 2
ttk::scrollbar $f.srch.wave.f.scroll \
-command [list $f.srch.wave.f.list yview]
set ${varname}(listbox,wave) [listbox $f.srch.wave.f.list \
-yscroll \
[list $f.srch.wave.f.scroll set] \
-setgrid true \
-selectmode browse \
-exportselection 0 \
-listvariable ${varname}(list,wave)]
grid $f.srch.wave.f.list $f.srch.wave.f.scroll -sticky news
grid rowconfigure $f.srch.wave.f 0 -weight 1
grid columnconfigure $f.srch.wave.f 0 -weight 1
# param search mission
ttk::frame $f.srch.mission.f
ttk::label $f.srch.mission.title -text [msgcat::mc {Mission}]
pack $f.srch.mission.title -side top -anchor w
pack $f.srch.mission.f -side bottom -fill both -expand true \
-anchor w -padx 2 -pady 2
ttk::scrollbar $f.srch.mission.f.scroll \
-command [list $f.srch.mission.f.list yview]
set ${varname}(listbox,mission) [listbox $f.srch.mission.f.list \
-yscroll \
[list $f.srch.mission.f.scroll set] \
-setgrid true \
-selectmode browse \
-exportselection 0 \
-listvariable ${varname}(list,mission)]
grid $f.srch.mission.f.list $f.srch.mission.f.scroll \
-sticky news
grid rowconfigure $f.srch.mission.f 0 -weight 1
grid columnconfigure $f.srch.mission.f 0 -weight 1
# param search astro
ttk::frame $f.srch.astro.f
ttk::label $f.srch.astro.title -text [msgcat::mc {Astronomy}]
pack $f.srch.astro.title -side top -anchor w
pack $f.srch.astro.f -side bottom -fill both -expand true \
-anchor w -padx 2 -pady 2
ttk::scrollbar $f.srch.astro.f.scroll \
-command [list $f.srch.astro.f.list yview]
set ${varname}(listbox,astro) [listbox $f.srch.astro.f.list \
-yscroll \
[list $f.srch.astro.f.scroll set] \
-setgrid true \
-selectmode browse \
-exportselection 0 \
-listvariable ${varname}(list,astro)]
grid $f.srch.astro.f.list $f.srch.astro.f.scroll -sticky news
grid rowconfigure $f.srch.astro.f 0 -weight 1
grid columnconfigure $f.srch.astro.f 0 -weight 1
# Table
set f [ttk::frame $w.tbl]
set var(tbl) [table $f.t \
-state disabled \
-usecommand 0 \
-variable $var(catdb) \
-colorigin 1 \
-roworigin 0 \
-cols $icatcdssrch(mincols) \
-rows $icatcdssrch(minrows) \
-colstretchmode all \
-width -1 \
-height -1 \
-maxwidth 400 \
-maxheight 190 \
-titlerows 1 \
-xscrollcommand [list $f.xscroll set]\
-yscrollcommand [list $f.yscroll set]\
-selecttype row \
-selectmode extended \
-anchor w \
-font [font actual TkDefaultFont]
]
ttk::scrollbar $f.yscroll -command [list $var(tbl) yview] \
-orient vertical
ttk::scrollbar $f.xscroll -command [list $var(tbl) xview] \
-orient horizontal
grid $var(tbl) $f.yscroll -sticky news
grid $f.xscroll -stick news
grid rowconfigure $f 0 -weight 1
grid columnconfigure $f 0 -weight 1
# Status
set f [ttk::frame $w.status]
ttk::label $f.title -text [msgcat::mc {Status}]
ttk::label $f.item -textvariable ${varname}(status)
pack $f.title $f.item -side left -anchor w -padx 2 -pady 2
# Buttons
set f [ttk::frame $w.buttons]
set var(apply) [ttk::button $f.apply \
-text [msgcat::mc {Retrieve}] \
-command "CATCDSSrchApply $varname"]
set var(cancel) [ttk::button $f.cancel \
-text [msgcat::mc {Cancel}] \
-command "ARCancel $varname" -state disabled]
ttk::button $f.catalog -text [msgcat::mc {Catalog}] \
-command "CATCDSSrchCatalog $varname"
ttk::button $f.clear -text [msgcat::mc {Clear}] \
-command "CATCDSSrchClear $varname"
ttk::button $f.close -text [msgcat::mc {Close}] \
-command "CATCDSSrchDestroy $varname"
pack $f.apply $f.cancel $f.catalog $f.clear $f.close \
-side left -expand true -padx 2 -pady 4
# Fini
ttk::separator $w.sep -orient horizontal
ttk::separator $w.stbl -orient horizontal
ttk::separator $w.sstatus -orient horizontal
pack $w.buttons $w.sstatus $w.status $w.stbl -side bottom -fill x
pack $w.param $w.sep -side top -fill x
pack $w.tbl -side top -fill both -expand true
ARStatus $varname {}
# initialize
$var(listbox,wave) selection set 0
$var(listbox,mission) selection set 0
$var(listbox,astro) selection set 0
$w.param.name.source select range 0 end
}
proc CATCDSSrchApply {varname} {
upvar #0 $varname var
global $varname
global icatcdssrch
global debug
if {$debug(tcl,cat)} {
puts stderr "CATCDSSrchApply $varname"
}
set id [$var(listbox,wave) curselection]
if {$id > 0} {
set var(wave) [lindex $var(list,wave) $id]
} else {
set var(wave) {}
}
set id [$var(listbox,mission) curselection]
if {$id > 0} {
set var(mission) [lindex $var(list,mission) $id]
} else {
set var(mission) {}
}
set id [$var(listbox,astro) curselection]
if {$id > 0} {
set var(astro) [lindex $var(list,astro) $id]
} else {
set var(astro) {}
}
ARApply $varname
ARStatus $varname [msgcat::mc {Searching for catalogs}]
CATCDSSrch $varname
}
proc CATCDSSrchDestroy {varname} {
upvar #0 $varname var
global $varname
global $var(catdb)
global debug
if {$debug(tcl,cat)} {
puts stderr "CATCDSSrchDestroy $varname"
}
if [info exists $var(catdb)] {
unset $var(catdb)
}
ARDestroy $varname
}
proc CATCDSSrchConfig {varname} {
upvar #0 $varname var
global $varname
global debug
if {$debug(tcl,cat)} {
puts stderr "CATCDSSrchConfig $varname"
}
set site [CATCDSURL $var(server)]
set cgidir {viz-bin}
set script {votable}
set var(url) "http://$site/$cgidir/$script"
set var(query) [http::formatQuery -meta.aladin all]
CATCDSSrchConfigLoad $varname
return
}
proc CATCDSSrchConfigLoad {varname} {
upvar #0 $varname var
global $varname
global debug
if {$debug(tcl,cat)} {
puts stderr "CATCDSSrchConfigLoad $varname"
}
set var(proc,parser) CATCDSSrchConfigParse
set var(proc,done) CATCDSSrchConfigDone
set var(proc,load) CATCDSSrchConfigLoad
CATGetURL $varname
return
}
proc CATCDSSrchConfigDone {varname} {
upvar #0 $varname var
global $varname
global debug
if {$debug(tcl,cat)} {
puts stderr "CATCDSSrchConfigDone $varname"
}
CATCDSSrchConfigParse
}
proc CATCDSSrchConfigParse {t token} {
upvar #0 $t T
global $t
global debug
global debug
if {$debug(tcl,cat)} {
puts stderr "CATCDSSrchConfigParse"
}
if {$debug(tcl,cat)} {
set fp [open debug.xml w]
puts $fp [http::data $token]
close $fp
}
set xml [xml::parser \
-elementstartcommand [list CATCDSSrchConfigElemStartCB $t] \
-elementendcommand [list CATCDSSrchConfigElemEndCB $t] \
-ignorewhitespace 1 \
]
set T(tree,enable) 0
set T(tree,state) {}
if [catch {$xml parse [http::data $token]} err] {
if {$debug(tcl,cat)} {
puts stderr "CATCDSSrchConfigParse: $err"
}
}
unset ${t}(tree,enable)
unset ${t}(tree,state)
$xml free
}
proc CATCDSSrchConfigElemStartCB {t name attlist args} {
upvar #0 $t T
global $t
global debug
# hardcoded
set varname catcdssrch1
upvar #0 $varname var
global $varname
switch -- $name {
RESOURCE {
set id {}
set type {}
foreach {key value} $attlist {
switch -- [string tolower $key] {
type {set type "$value"}
id {set id "$value"}
}
}
if {[string tolower $id] == "vizier"} {
set T(tree,enable) 1
set ${varname}(list,wave) [list none]
set ${varname}(list,mission) [list none]
set ${varname}(list,astro) [list none]
}
}
PARAM {
if {$T(tree,enable)} {
set id {}
set fname {}
foreach {key value} $attlist {
switch -- [string tolower $key] {
name {set fname "$value"}
id {set id "$value"}
}
}
set T(tree,state) [string trim [string tolower $id]]
switch -- $T(tree,state) {
wavelength {set ${varname}(list,wave,param) $fname}
mission {set ${varname}(list,mission,param) $fname}
astronomy {set ${varname}(list,astro,param) $fname}
}
}
}
VALUES {}
OPTION {
if {$T(tree,enable)} {
set item {}
foreach {key value} $attlist {
switch -- [string tolower $key] {
value {set item "$value"}
}
}
if {$item != {}} {
global icatcdssrch
switch -- $T(tree,state) {
wavelength {lappend ${varname}(list,wave) $item}
mission {lappend ${varname}(list,mission) $item}
astronomy {lappend ${varname}(list,astro) $item}
}
}
}
}
}
return {}
}
proc CATCDSSrchConfigElemEndCB {t name args} {
upvar #0 $t T
global $t
global debug
# we can't count on this being called for all end-tags
switch -- $name {
RESOURCE {
# ok, we're done
set T(tree,enable) 0
return -code break
}
}
return {}
}
|