/usr/share/usermin
NameSizeModeActions
at/-0755rm
authentic-theme/-0755rm
blue-theme/-0755rm
changepass/-0755rm
chfn/-0755rm
commands/-0755rm
cron/-0755rm
cshrc/-0755rm
fetchmail/-0755rm
filemin/-0755rm
filter/-0755rm
forward/-0755rm
gnupg/-0755rm
gray-theme/-0755rm
htaccess/-0755rm
htaccess-htpasswd/-0755rm
images/-0755rm
lang/-0755rm
language/-0755rm
mailbox/-0755rm
mailcap/-0755rm
man/-0755rm
mysql/-0755rm
plan/-0755rm
postgresql/-0755rm
proc/-0755rm
procmail/-0755rm
quota/-0755rm
schedule/-0755rm
shell/-0755rm
spam/-0755rm
ssh/-0755rm
theme/-0755rm
tunnel/-0755rm
twofactor/-0755rm
ulang/-0755rm
unauthenticated/-0755rm
updown/-0755rm
usermount/-0755rm
vendor_perl/-0755rm
xterm/-0755rm
acl_security.pl29590755editdlrm
chooser.cgi73870755editdlrm
config-aix2270644editdlrm
config-cobalt-linux2640644editdlrm
config-coherent-linux2640644editdlrm
config-corel-linux2640644editdlrm
config-debian-linux2640644editdlrm
config-freebsd2560644editdlrm
config-generic-linux2640644editdlrm
config-gentoo-linux2640644editdlrm
config-hpux2430644editdlrm
config-irix2840644editdlrm
config-lib.pl121200755editdlrm
config-macos2600644editdlrm
config-mandrake-linux2780644editdlrm
config-msc-linux2640644editdlrm
config-netbsd2830644editdlrm
config-open-linux2640644editdlrm
config-openbsd2410644editdlrm
config-openmamba-linux2640644editdlrm
config-openserver2360644editdlrm
config-osf12660644editdlrm
config-redhat-linux2640644editdlrm
config-slackware-linux2800644editdlrm
config-sol-linux2640644editdlrm
config-solaris4170644editdlrm
config-suse-linux2640644editdlrm
config-trustix-linux2640644editdlrm
config-turbo-linux2640644editdlrm
config-united-linux2640644editdlrm
config-unixware2860644editdlrm
copyconfig.pl44360755editdlrm
date_chooser.cgi22410755editdlrm
deb-name80644editdlrm
defaultacl980644editdlrm
defaulttheme160644editdlrm
entities_map.txt15010644editdlrm
favicon.ico150860644editdlrm
feedback.cgi65190755editdlrm
feedback_form.cgi35330755editdlrm
group_chooser.cgi76900755editdlrm
help.cgi23130755editdlrm
html-editor-lib.pl181470644editdlrm
index.cgi57810755editdlrm
install-module.pl13040755editdlrm
install-type40644editdlrm
javascript-lib.pl150420755editdlrm
lang_list.txt25700644editdlrm
LICENCE15160644editdlrm
LICENCE.ja16540644editdlrm
maketemp.pl4240755editdlrm
mime.types127130644editdlrm
miniserv.pem29690644editdlrm
miniserv.pl1894390755editdlrm
newmods.pl12800755editdlrm
oschooser.pl46550755editdlrm
os_list.txt358250644editdlrm
pam_login.cgi44290755editdlrm
password_change.cgi71920755editdlrm
password_form.cgi13270755editdlrm
perlpath.pl5710755editdlrm
README19720644editdlrm
robots.txt260644editdlrm
session_login.cgi52300755editdlrm
setup.sh268100755editdlrm
switch_user.cgi4040755editdlrm
thirdparty.pl17740755editdlrm
uconfig.cgi14280755editdlrm
uconfig_save.cgi14900755editdlrm
ui-lib.pl1159450755editdlrm
update-from-repo.sh151240755editdlrm
updateboot.pl24290755editdlrm
uptracker.cgi29560755editdlrm
usermin-init19270755editdlrm
usermin-pam1010644editdlrm
usermin-pam-osx2430644editdlrm
usermin-systemd4430644editdlrm
user_chooser.cgi75710755editdlrm
version60644editdlrm
web-lib-funcs.pl4051600755editdlrm
web-lib.pl9070755editdlrm
webmin-search-lib.pl96970755editdlrm
WebminCore.pm88730644editdlrm
webmin_search.cgi26970755editdlrm
Edit: /usr/share/usermin/javascript-lib.pl (15042B)
#javascript-lib.pl #------------------------------# # JavaScript Library # # # # Written By: # # John Smith # # # # # # MSC.Software # # http://www.msclinux.com # # http://www.mscsoftware.com # #------------------------------# #----------------------------------------------------------------------------# # Available Functions # # *jroll_over # # -This gives you simple mouse over functions on graphics # # and include a link. # # -Usage = &jroll_over("url", "name", "border", "imgoff", "imgon"); # # *jimg_preload # # -Preloads any number of given images. # # -Usage = &jimg_preload("image/1.gif", "image/u.gif"); # # *jimg_update # # -Updates any image on your page that has a name # # -Usage = &jimg_update("imgname", "image/toload.gif"); # # *janim # # -Builds an Animation with any given list of images # # -Usage = &janim("name", "speed", "list.gif", "of.gif", "images.jpg") # # *janim_start # # -Starts the animation you built with janim # # -Usage = &janim_start("name"); # # *janim_stop # # -Stops the animation you built with janim # # -Usage = &janim_stop("name"); # # *jalert # # -Launches an alert dialog box with a custom message # # -Usage = &jalert("Your alert message!"); # # *jwindow # # -Opens a window with a given URL # # -Usage = &jwindow("url", "name", "width", "height"); # # *jwindow_xy # # -Repostitions a named windows x and y # # -Usage = &jwindow_xy("name", "x", "y"); # # *jterminal # # -Creates an empty plain text window for writing data to # # -Usage = &jterminal("name", "width", "height"); # # *jwrite # # -Write data to a created window or terminal # # -Usage = &jwrite("name", "data to write"); # # *jtext # # -Simple text rollovers between two colors # # -Usage = &jtext("text message", "red", "#F1F1F1"); # # *jtalkback # # -Builds a JavaScript for a pop-up talkback/bug report window # # -Usage = &jtalkback(); # # *jerror # # -Launches the jtalkback window upon execution # # -Usage = &jerror("title", "email", "width", "height", \ # # "errmsg", "url", "erroredonline"); # # *jtalkback_link # # -Creates a button or text link to launch the jtalkback window # # -Usage = &jtalkback_link("title", "email", "width", "height", \ # # "text", "type"); # #----------------------------------------------------------------------------# #creates a mouse over event with a link sub jroll_over { my ($url, $name, $border, $img_off, $img_on) = @_; if (!$url) { $url = "javascript:"; } print "\n"; print "\"$name\""; } #preloads a list of images for smooth loading sub jimg_preload { my (@img_array) = @_; print "\n"; } #update any image on a page by its name sub jimg_update { my ($name, $img) = @_; print "\n"; } #build an animation (preloads images itself) sub janim { my ($name, $speed, @anim_array) = @_; my $frames = @anim_array; my $count = 0; my $arraycount = 0; print "$name\n"; print "\n"; } #start an animation sub janim_start { my ($name) = @_; print "\n"; } #stop an animation sub janim_stop { my ($name, $image) = @_; if (!$image) { } print "\n"; } #create an alert dialog box sub jalert { my (@alert_msg) = @_; print "\n"; } #opens a specified url in a separate window sub jwindow { my ($url, $name, $width, $height) = @_; if (!$width) { $width = "300"; } if (!$height) { $height = "200"; } print "\n"; } #sets a specified window to x y location sub jwindow_xy { my ($name, $x, $y) = @_; print "\n"; } #opens a blank terminal window for writing data to sub jterminal { my ($name, $width, $height) = @_; if (!$width) { $width = "300"; } if (!$height) { $height = "200"; } print "\n"; } #write data to a given window name sub jwrite { my ($name, @msg) = @_; print "\n"; } #text rollover sub jtext { my ($text, $coloroff, $coloron) = @_; print "$text"; } #Puts the needed JavaScript into your page for talkback reports sub jtalkback { print "\n"; } #Launches the talkback form sub jerror { my ($title, $email, $width, $height, $errmsg, $url, $line) = @_; print "\n"; } #Allows you to manually luanch the talkback form sub jtalkback_link { my ($title, $email, $width, $height, $text, $type) = @_; if ($type eq 0) { print "$text\n"; } elsif ($type eq 1) { print "
\n"; } } return 1;