!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/git-gui/lib/   drwxr-xr-x
Free 13.1 GB of 57.97 GB (22.59%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     line.tcl (1.32 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
# goto line number
# based on code from gitk, Copyright (C) Paul Mackerras

class linebar {

field w
field ctext

field linenum   {}

constructor new {i_w i_text args} {
    global use_ttk NS
    set w      $i_w
    set ctext  $i_text

    ${NS}::frame  $w
    ${NS}::label  $w.l       -text [mc "Goto Line:"]
    tentry  $w.ent \
        -textvariable ${__this}::linenum \
        -background lightgreen \
        -validate key \
        -validatecommand [cb _validate %P]
    ${NS}::button $w.bn      -text [mc Go] -command [cb _goto]

    pack   $w.l   -side left
    pack   $w.bn  -side right
    pack   $w.ent -side left -expand 1 -fill x

    eval grid conf $w -sticky we $args
    grid remove $w

    trace add variable linenum write [cb _goto_cb]
    bind $w.ent <Return> [cb _goto]
    bind $w.ent <Escape> [cb hide]

    bind $w <Destroy> [list delete_this $this]
    return $this
}

method show {} {
    if {![visible $this]} {
        grid $w
    }
    focus -force $w.ent
}

method hide {} {
    if {[visible $this]} {
        $w.ent delete 0 end
        focus $ctext
        grid remove $w
    }
}

method visible {} {
    return [winfo ismapped $w]
}

method editor {} {
    return $w.ent
}

method _validate {P} {
    # only accept numbers as input
    string is integer $P
}

method _goto_cb {name ix op} {
    after idle [cb _goto 1]
}

method _goto {{nohide {0}}} {
    if {$linenum ne {}} {
        $ctext see $linenum.0
        if {!$nohide} {
            hide $this
        }
    }
}

}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0039 ]--