!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/lib/tix8.1/demos/samples/   drwxr-xr-x
Free 318.37 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     Select.tcl (3.25 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
# -*-mode: tcl; fill-column: 75; tab-width: 8; coding: iso-latin-1-unix -*-
#
#    $Id: Select.tcl,v 1.2.2.1 2001/11/04 05:10:08 idiscovery Exp $
#
# Tix Demostration Program
#
# This sample program is structured in such a way so that it can be
# executed from the Tix demo program "widget": it must have a
# procedure called "RunSample". It should also have the "if" statment
# at the end of this file so that it can be run as a standalone
# program using tixwish.

# This file demonstrates the use of the tixSelect widget.
#
proc RunSample {w} {
    global demo_dir

    # Create the frame on the top of the dialog box with two tixSelect
    # widgets inside.
    #
    frame $w.top

    # There can be one and only type of justification for any piece of text.
    # So we set -radio to be true. Also, -allowzero is set to false: the user
    # cannot select a "none" justification
    #
    tixSelect $w.top.just -allowzero false -radio true \
    -label "Justification: "\
    -options {
        label.width 15
        label.padx 4
        label.anchor e
    }

    # The user can select one or many or none of the font attributes in
    # the font Select widget, so we set -radio to false (can select one or
    # many) and -allowzero to true (can select none)
    #
    tixSelect $w.top.font -allowzero true  -radio false \
    -label "Font: " \
    -options {
        label.width 15
        label.padx 4
        label.anchor e
    }

    pack $w.top.just $w.top.font -side top -expand yes -anchor c \
    -padx 4 -pady 4

    # Add the choices of available font attributes
    #
    #
    $w.top.font add bold      -bitmap @$demo_dir/bitmaps/bold.xbm
    $w.top.font add italic    -bitmap @$demo_dir/bitmaps/italic.xbm
    $w.top.font add underline -bitmap @$demo_dir/bitmaps/underlin.xbm
    $w.top.font add capital   -bitmap @$demo_dir/bitmaps/capital.xbm

    # Add the choices of available justification types
    #
    #
    $w.top.just add left      -bitmap @$demo_dir/bitmaps/leftj.xbm
    $w.top.just add right     -bitmap @$demo_dir/bitmaps/rightj.xbm
    $w.top.just add center    -bitmap @$demo_dir/bitmaps/centerj.xbm
    $w.top.just add justified -bitmap @$demo_dir/bitmaps/justify.xbm

    $w.top.font config -variable sel_font
    $w.top.just config -variable sel_just

    # Set the default value of the two Select widgets
    #
    #
    global sel_just sel_font
    set sel_just justified
    set sel_font {bold underline}

    # Use a ButtonBox to hold the buttons.
    #
    tixButtonBox $w.box -orientation horizontal
    $w.box add ok     -text Ok     -underline 0 -width 6\
    -command "sel:cmd $w; destroy $w"
    
    $w.box add apply  -text Apply  -underline 0 -width 6\
    -command "sel:cmd $w"

    $w.box add cancel -text Cancel -underline 0 -width 6\
    -command "destroy $w"

    pack $w.box -side bottom -fill x
    pack $w.top -side top -fill both -expand yes
}

# This procedure is called whenever the user pressed the OK or the Apply button
#
#
proc sel:cmd {w} {
    global sel_font sel_just

    tixDemo:Status "The justification is $sel_just"

    if {$sel_font == {}} {
    tixDemo:Status "The font is normal"
    } else {
    tixDemo:Status "The font is $sel_font"
    }

}

if {![info exists tix_demo_running]} {
    wm withdraw .
    set w .demo
    toplevel $w; wm transient $w ""
    RunSample $w
    bind .demo <Destroy> exit
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0247 ]--