Changeset 4760 for branches/1.3


Ignore:
Timestamp:
Nov 22, 2014, 10:51:31 PM (10 years ago)
Author:
ldelgass
Message:

remove experimental map support from release branch

Location:
branches/1.3/gui
Files:
4 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • branches/1.3/gui/apps/Makefile.in

    r4513 r4760  
    2525                encodedata \
    2626                $(srcdir)/launcher.tcl \
    27                 $(srcdir)/mapviewer-test \
    2827                $(srcdir)/grabdata \
    2928                $(srcdir)/nanovis-test \
  • branches/1.3/gui/scripts/Makefile.in

    r4512 r4760  
    7777                $(srcdir)/main.tcl \
    7878                $(srcdir)/mainwin.tcl \
    79                 $(srcdir)/map.tcl \
    80                 $(srcdir)/mapviewer.tcl \
    8179                $(srcdir)/mesh.tcl \
    8280                $(srcdir)/meshresult.tcl \
  • branches/1.3/gui/scripts/analyzer.tcl

    r4512 r4760  
    806806                        _autoLabel $xmlobj output.$item "String" counters
    807807                    }
    808                     histogram* - curve* - field* - map* {
     808                    histogram* - curve* - field* {
    809809                        _autoLabel $xmlobj output.$item "Plot" counters
    810810                    }
  • branches/1.3/gui/scripts/resultviewer.tcl

    r4512 r4760  
    293293            }
    294294        }
    295         ::Rappture::Map {
    296             if { ![$dataobj isvalid] } {
    297                 return;                 # Ignore invalid map objects.
    298             }
    299             set mode "map"
    300             if {![info exists _mode2widget($mode)]} {
    301                 set servers [Rappture::VisViewer::GetServerList "geovis"]
    302                 set w $itk_interior.$mode
    303                 Rappture::MapViewer $w $servers
    304                 set _mode2widget($mode) $w
    305             }
    306         }
    307295        ::Rappture::Field {
    308296            if { ![$dataobj isvalid] } {
     
    493481            set dobj [Rappture::Field ::#auto $xmlobj $path]
    494482        }
    495         map {
    496             set dobj [Rappture::Map ::#auto $xmlobj $path]
    497         }
    498483        mesh {
    499484            set dobj [Rappture::Mesh ::#auto $xmlobj $path]
Note: See TracChangeset for help on using the changeset viewer.