You can subscribe to this list here.
2001 |
Jan
(13) |
Feb
(24) |
Mar
(23) |
Apr
(11) |
May
(18) |
Jun
(90) |
Jul
(29) |
Aug
(26) |
Sep
(37) |
Oct
(10) |
Nov
(31) |
Dec
(11) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(45) |
Feb
(18) |
Mar
(12) |
Apr
(7) |
May
(10) |
Jun
(62) |
Jul
(8) |
Aug
(40) |
Sep
(41) |
Oct
(43) |
Nov
(29) |
Dec
(36) |
2003 |
Jan
(25) |
Feb
(9) |
Mar
(11) |
Apr
(13) |
May
(19) |
Jun
(19) |
Jul
(11) |
Aug
(4) |
Sep
(109) |
Oct
(73) |
Nov
(69) |
Dec
(21) |
2004 |
Jan
(21) |
Feb
(33) |
Mar
(31) |
Apr
(25) |
May
(33) |
Jun
(42) |
Jul
(47) |
Aug
(12) |
Sep
(41) |
Oct
(47) |
Nov
(30) |
Dec
(19) |
2005 |
Jan
(6) |
Feb
(23) |
Mar
(21) |
Apr
(26) |
May
(21) |
Jun
(16) |
Jul
(17) |
Aug
(7) |
Sep
(8) |
Oct
(13) |
Nov
(7) |
Dec
(10) |
2006 |
Jan
(10) |
Feb
(3) |
Mar
|
Apr
(2) |
May
|
Jun
(3) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
(2) |
Dec
(4) |
2007 |
Jan
(2) |
Feb
(3) |
Mar
(2) |
Apr
|
May
(1) |
Jun
(6) |
Jul
(6) |
Aug
(8) |
Sep
(3) |
Oct
(21) |
Nov
(4) |
Dec
(6) |
2008 |
Jan
(11) |
Feb
(28) |
Mar
(26) |
Apr
(9) |
May
(2) |
Jun
(10) |
Jul
(1) |
Aug
(20) |
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(4) |
Feb
(10) |
Mar
(1) |
Apr
(24) |
May
(22) |
Jun
(18) |
Jul
(15) |
Aug
(21) |
Sep
(4) |
Oct
(7) |
Nov
(6) |
Dec
|
2010 |
Jan
|
Feb
(2) |
Mar
(13) |
Apr
|
May
(4) |
Jun
|
Jul
|
Aug
(4) |
Sep
(6) |
Oct
(1) |
Nov
(1) |
Dec
|
2011 |
Jan
(18) |
Feb
(2) |
Mar
(23) |
Apr
(4) |
May
(5) |
Jun
(1) |
Jul
|
Aug
|
Sep
(9) |
Oct
|
Nov
(5) |
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
(31) |
Apr
(3) |
May
|
Jun
(2) |
Jul
(6) |
Aug
|
Sep
|
Oct
(4) |
Nov
|
Dec
(7) |
2014 |
Jan
|
Feb
(1) |
Mar
(9) |
Apr
(4) |
May
(7) |
Jun
(2) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
(4) |
Dec
|
2016 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(5) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
|
Mar
(7) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: Jeffrey K. <je...@np...> - 2011-01-12 15:22:33
|
Hmm. ReadParseMime() is giving me a "Error - Missing Headers". Im sure Im doing something stupid but I've been over it 3 times. This is my submit code (pardon the commented out lines pls): #!/opt/local/bin/perl require 'nphos-lib.pl'; #my $bodyTags= "onLoad=window.setTimeout('window.location.reload()',10*1000);"; ui_print_header('RedDwarf Deployment Directory', 'NPHOS', '',undef,0,0,0,undef,u ndef,$bodyTags,undef); #print ui_form_start('delete_deployed.cgi','post'); #print ui_columns_start(["Select","File name"]); #my @filenames = list_directory("/opt/local/reddwarf/10.2.1/deploy"); #foreach $filename (@filenames){ # ui_checked_columns_row($filename,undef,'file_select_check',$filename); #} #print ui_columns_end(); #print ui_form_end([[undef,"Delete checked files"]]); #print ui_hr(); #print ui_subheading('File Upload'); print ui_form_start("upload_deployed.cgi","form-data"); print ui_upload("upload_file"); print ui_form_end([["ok","Upload file"]]); ui_print_footer(undef,"NPHOS Platform page"); And this is upload_deployed.cgi: #!/opt/local/bin/perl require 'nphos-lib.pl'; ReadParseMime(); #my $filename = $in{'filename'}; #open(FILE, "/opt/local/reddwarf/10.2.1/deploy/$filename"); #print FILE $in{'upload_file'}; #close(FILE); On Wed, Jan 12, 2011 at 10:03 AM, Jeffrey Kesselman <je...@np...>wrote: > One more stupid Q sorry, how do I fetch the name of the uploaded file? Is > it another key on $in? > > On Tue, Jan 11, 2011 at 11:09 PM, Jamie Cameron <jca...@we...>wrote: > >> On 11/Jan/2011 19:22 Jeffrey Kesselman <je...@np...> wrote .. >> > I want to only allow my users to upload and delte fiels from specific >> > directories so I am building my own file management interface. >> > >> > Is there a minimal working example of both setting up the ui_upload >> > interface and handling the resulting form-data? >> > >> > Its all a bit greek to me right at the moment... >> >> The code for the form would be like : >> >> print ui_form_start("upload.cgi", "form-data"); >> print "Choose a file : ",ui_upload("file"); >> print ui_form_end([ [ "ok", "Upload" ] ]); >> >> And for the parser upload.cgi : >> >> ReadParseMime(); >> open(FILE, ">/path/to/destfile"); >> print FILE $in{'file'}; >> close(FILE); >> >> - Jamie >> >> >> ------------------------------------------------------------------------------ >> Protect Your Site and Customers from Malware Attacks >> Learn about various malware tactics and how to avoid them. Understand >> malware threats, the impact they can have on your business, and how you >> can protect your company and customers by using code signing. >> http://p.sf.net/sfu/oracle-sfdevnl >> - >> Forwarded by the Webmin development list at web...@we... >> To remove yourself from this list, go to >> http://lists.sourceforge.net/lists/listinfo/webadmin-devel >> > > |
From: Jeffrey K. <je...@np...> - 2011-01-12 14:48:39
|
Perfect! Thanks so much, Jamie! Regards jeff K On Tue, Jan 11, 2011 at 11:09 PM, Jamie Cameron <jca...@we...> wrote: > On 11/Jan/2011 19:22 Jeffrey Kesselman <je...@np...> wrote .. > > I want to only allow my users to upload and delte fiels from specific > > directories so I am building my own file management interface. > > > > Is there a minimal working example of both setting up the ui_upload > > interface and handling the resulting form-data? > > > > Its all a bit greek to me right at the moment... > > The code for the form would be like : > > print ui_form_start("upload.cgi", "form-data"); > print "Choose a file : ",ui_upload("file"); > print ui_form_end([ [ "ok", "Upload" ] ]); > > And for the parser upload.cgi : > > ReadParseMime(); > open(FILE, ">/path/to/destfile"); > print FILE $in{'file'}; > close(FILE); > > - Jamie > > > ------------------------------------------------------------------------------ > Protect Your Site and Customers from Malware Attacks > Learn about various malware tactics and how to avoid them. Understand > malware threats, the impact they can have on your business, and how you > can protect your company and customers by using code signing. > http://p.sf.net/sfu/oracle-sfdevnl > - > Forwarded by the Webmin development list at web...@we... > To remove yourself from this list, go to > http://lists.sourceforge.net/lists/listinfo/webadmin-devel > |
From: Jamie C. <jca...@we...> - 2011-01-12 04:09:15
|
On 11/Jan/2011 19:22 Jeffrey Kesselman <je...@np...> wrote .. > I want to only allow my users to upload and delte fiels from specific > directories so I am building my own file management interface. > > Is there a minimal working example of both setting up the ui_upload > interface and handling the resulting form-data? > > Its all a bit greek to me right at the moment... The code for the form would be like : print ui_form_start("upload.cgi", "form-data"); print "Choose a file : ",ui_upload("file"); print ui_form_end([ [ "ok", "Upload" ] ]); And for the parser upload.cgi : ReadParseMime(); open(FILE, ">/path/to/destfile"); print FILE $in{'file'}; close(FILE); - Jamie |
From: Jeffrey K. <je...@np...> - 2011-01-12 03:27:33
|
I want to only allow my users to upload and delte fiels from specific directories so I am building my own file management interface. Is there a minimal working example of both setting up the ui_upload interface and handling the resulting form-data? Its all a bit greek to me right at the moment... Thanks JK |
From: Jamie C. <jca...@we...> - 2011-01-10 22:15:30
|
On 10/Jan/2011 13:07 Jeffrey Kesselman <je...@np...> wrote .. > This runs, but both $result and $err have nothing in them when I print them. > > Why? This is on OpenSolaris: > > sub get_reddwarf_status > { > my $result; > my $err; > execute_command("echo test",undef,$result,$err); > print STDERR "result: ",$result,"\n"; > print STDERR "err: ",$err,"\n"; > return $result; > } You need to pass in references, like : execute_command("echo test",undef,\$result,\$err); - Jamie |
From: Jeffrey K. <je...@np...> - 2011-01-10 22:07:55
|
This runs, but both $result and $err have nothing in them when I print them. Why? This is on OpenSolaris: sub get_reddwarf_status { my $result; my $err; execute_command("echo test",undef,$result,$err); print STDERR "result: ",$result,"\n"; print STDERR "err: ",$err,"\n"; return $result; } |
From: Todd K. <tod...@gm...> - 2010-11-12 16:39:15
|
I'm trying create a KIOSK for managing not just the server using webmin but for also managing other website admin tools with webmin as being the Portal piece. Does anyone have any knowledge on how to pull in an external site to webmin? Or maybe is there a module I don't know about that will do just that? Any help is greatly appreciated. |
From: Todd K. <tod...@gm...> - 2010-10-01 01:15:40
|
I suspect it is. Not sure what though. I'll have more time tomorrow to look at it. Sent from my mobile phone On Sep 30, 2010, at 4:48 PM, Jamie Cameron <jca...@we...> wrote: > So is webmin running some binary from the csw directory instead of the Solaris provided binary? > > > Todd Kennedy <tod...@gm...> wrote: > >> Just wanted to send out an email to the group letting everyone know that >> there is a conflict with webmin 1.52 pathing in the Solaris Zones module. >> The issue occurs when your using Blastwave on your box and /opt/csw/bin and >> /opt/csw/lib are in the path and ld_library_path. To get around the issue >> just remove /opt/csw/bin and /opt/csw/lib from Webmin >> Configuration->Operating System and Environment. Look in the Program Search >> Path and Library Search Path for /opt/csw/bin and /opt/csw/lib and remove >> them. >> >> I'm not sure what library or program is causing the issue at the moment. If >> I locate the problem I'll send out another email. >> >> ------------------------------------------------------------------------------ >> Start uncovering the many advantages of virtual appliances >> and start using them to simplify application deployment and >> accelerate your shift to cloud computing. >> http://p.sf.net/sfu/novell-sfdev2dev >> - >> Forwarded by the Webmin development list at web...@we... >> To remove yourself from this list, go to >> http://lists.sourceforge.net/lists/listinfo/webadmin-devel > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing. > http://p.sf.net/sfu/novell-sfdev2dev > - > Forwarded by the Webmin development list at web...@we... > To remove yourself from this list, go to > http://lists.sourceforge.net/lists/listinfo/webadmin-devel |
From: Jamie C. <jca...@we...> - 2010-09-30 20:47:18
|
So is webmin running some binary from the csw directory instead of the Solaris provided binary? Todd Kennedy <tod...@gm...> wrote: >Just wanted to send out an email to the group letting everyone know that >there is a conflict with webmin 1.52 pathing in the Solaris Zones module. >The issue occurs when your using Blastwave on your box and /opt/csw/bin and >/opt/csw/lib are in the path and ld_library_path. To get around the issue >just remove /opt/csw/bin and /opt/csw/lib from Webmin >Configuration->Operating System and Environment. Look in the Program Search >Path and Library Search Path for /opt/csw/bin and /opt/csw/lib and remove >them. > >I'm not sure what library or program is causing the issue at the moment. If >I locate the problem I'll send out another email. > >------------------------------------------------------------------------------ >Start uncovering the many advantages of virtual appliances >and start using them to simplify application deployment and >accelerate your shift to cloud computing. >http://p.sf.net/sfu/novell-sfdev2dev >- >Forwarded by the Webmin development list at web...@we... >To remove yourself from this list, go to >http://lists.sourceforge.net/lists/listinfo/webadmin-devel |
From: Todd K. <tod...@gm...> - 2010-09-30 18:03:04
|
Just wanted to send out an email to the group letting everyone know that there is a conflict with webmin 1.52 pathing in the Solaris Zones module. The issue occurs when your using Blastwave on your box and /opt/csw/bin and /opt/csw/lib are in the path and ld_library_path. To get around the issue just remove /opt/csw/bin and /opt/csw/lib from Webmin Configuration->Operating System and Environment. Look in the Program Search Path and Library Search Path for /opt/csw/bin and /opt/csw/lib and remove them. I'm not sure what library or program is causing the issue at the moment. If I locate the problem I'll send out another email. |
From: Sameer N. <sam...@da...> - 2010-09-13 20:58:01
|
just did On Tue, Sep 14, 2010 at 2:24 AM, Jamie Cameron <jca...@we...> wrote: > Hi Sameer, > > That sounds like a great patch, but I didn't see it attached to your email .. > perhaps because the mailing list software stripped it off. > > If you like, you could email it to me directly, and I will include > it in the next release. > > - Jamie > > On 13/Sep/2010 13:14 Sameer Naik <sam...@da...> wrote .. >> Hello, >> I am new to webmin and i have come to absolutely love it. >> While testing it out i found two issues as described below. >> >> 1. since version 2.6 squid configuration options redirect_path and >> redirect_children have been renamed to url_rewrite_path and >> url_rewrite_children respectively. Attached patch >> squid_2_6_url_rewrite.patch makes this addition. >> >> 2. while backing up the squid configuration, acls that have the -i >> option specified to ignore the case will not get backed up. >> For example: >> acl aclname url_regex "/etc/squid/urls.acl" will get backed up, but >> acl aclname url_regex -i "/etc/squid/urls.acl" will not get backed up. >> >> I figured that the issue is because of the -i option, and the backup >> script only looks for the third argument. Attached patch >> squid_backup_configuration.patch fixes this issue. >> >> P.S. >> - These patches are generated against the current git head. >> - I have no perl programming experience and the patches provided >> herewith are only taken from similar code present in webmin. Having >> said that i request you to review the patches before accepting them. >> >> Thanks and Regards >> ~Sameer >> >> ------------------------------------------------------------------------------ >> Start uncovering the many advantages of virtual appliances >> and start using them to simplify application deployment and >> accelerate your shift to cloud computing >> http://p.sf.net/sfu/novell-sfdev2dev >> - >> Forwarded by the Webmin development list at web...@we... >> To remove yourself from this list, go to >> http://lists.sourceforge.net/lists/listinfo/webadmin-devel > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing > http://p.sf.net/sfu/novell-sfdev2dev > - > Forwarded by the Webmin development list at web...@we... > To remove yourself from this list, go to > http://lists.sourceforge.net/lists/listinfo/webadmin-devel > |
From: Jamie C. <jca...@we...> - 2010-09-13 20:54:16
|
Hi Sameer, That sounds like a great patch, but I didn't see it attached to your email .. perhaps because the mailing list software stripped it off. If you like, you could email it to me directly, and I will include it in the next release. - Jamie On 13/Sep/2010 13:14 Sameer Naik <sam...@da...> wrote .. > Hello, > I am new to webmin and i have come to absolutely love it. > While testing it out i found two issues as described below. > > 1. since version 2.6 squid configuration options redirect_path and > redirect_children have been renamed to url_rewrite_path and > url_rewrite_children respectively. Attached patch > squid_2_6_url_rewrite.patch makes this addition. > > 2. while backing up the squid configuration, acls that have the -i > option specified to ignore the case will not get backed up. > For example: > acl aclname url_regex "/etc/squid/urls.acl" will get backed up, but > acl aclname url_regex -i "/etc/squid/urls.acl" will not get backed up. > > I figured that the issue is because of the -i option, and the backup > script only looks for the third argument. Attached patch > squid_backup_configuration.patch fixes this issue. > > P.S. > - These patches are generated against the current git head. > - I have no perl programming experience and the patches provided > herewith are only taken from similar code present in webmin. Having > said that i request you to review the patches before accepting them. > > Thanks and Regards > ~Sameer > > ------------------------------------------------------------------------------ > Start uncovering the many advantages of virtual appliances > and start using them to simplify application deployment and > accelerate your shift to cloud computing > http://p.sf.net/sfu/novell-sfdev2dev > - > Forwarded by the Webmin development list at web...@we... > To remove yourself from this list, go to > http://lists.sourceforge.net/lists/listinfo/webadmin-devel |
From: Sameer N. <sam...@da...> - 2010-09-13 20:02:41
|
Hello, I am new to webmin and i have come to absolutely love it. While testing it out i found two issues as described below. 1. since version 2.6 squid configuration options redirect_path and redirect_children have been renamed to url_rewrite_path and url_rewrite_children respectively. Attached patch squid_2_6_url_rewrite.patch makes this addition. 2. while backing up the squid configuration, acls that have the -i option specified to ignore the case will not get backed up. For example: acl aclname url_regex "/etc/squid/urls.acl" will get backed up, but acl aclname url_regex -i "/etc/squid/urls.acl" will not get backed up. I figured that the issue is because of the -i option, and the backup script only looks for the third argument. Attached patch squid_backup_configuration.patch fixes this issue. P.S. - These patches are generated against the current git head. - I have no perl programming experience and the patches provided herewith are only taken from similar code present in webmin. Having said that i request you to review the patches before accepting them. Thanks and Regards ~Sameer |
From: Gary P. <ga...@ga...> - 2010-09-10 16:50:22
|
Clément VERET <clement.veret <at> gmail.com> writes: > > However, I though it would be sweet if you can just see the "physical" > console of the VM directly though VNC. As the vfb of Xen (and KVM) is > only listenning on localhost:5900+<machine_id> by default (and > changing that is REALLY annoying), I wrote a simple port forwarding > script so I can connect an Java VNC applet directly on Dom0 (via port > 30000+<machine_id>) and see the DomU console without modifying its > configuration. This last part is probably not as secure and as clean > as I wanted it to be so you can just ignore it, delete it or > decativate it. > First off, thanks for writing this module... great addition to webmin! I'm having difficulties getting the VNC applet to work and was wondering if you could point me towards in the right direction. The applet seems to load correctly, but then gives a "Network error: could not connect to server: myhost:30001" and a button to login again. I've looked for some kind of log messages, but can't seem to find anything. Again, thanks for the module! -Gary Parr |
From: Jamie C. <jca...@we...> - 2010-08-11 19:21:41
|
On 11/Aug/2010 00:23 Paul Gear <pa...@ge...> wrote .. > Hi all (esp. Jamie), > > As a follow-on from my previous post, i plan to do a bit of work > tracking down some bugs in the Dan's Guardian module > (http://sourceforge.net/projects/dgwebminmodule/) for one of my clients. > I tried to contact the author of this module via SourceForge, but was > not successful. I'll try the mailing lists as well, but if i don't have > any luck, what would be the best way of ensuring that the changes are > made available to Webmin users? If you really can't contact the author, one option would be to fork the module and start maintaining your own version .. - Jamie |
From: Jamie C. <jca...@we...> - 2010-08-11 19:20:37
|
On 11/Aug/2010 00:08 Paul Gear <pa...@ge...> wrote .. > Hi folks, > > Today i went in search of instructions about how to install a Webmin > module manually (i.e. without logging into the web interface), and the > main hit led me to http://doxfer.webmin.com/Webmin/Modules > > I didn't find my answer there, so if Jamie or someone else would be able > to point me in the right direction about this, that would be great. The > goal is to install 3rd-party modules in a fully automatic manner using > the puppet configuration management tool. I'm happy to do any necessary > bash or perl scripting to achieve it. There is actually a command for this already - just run : /usr/libexec/webmin/install-module.pl /path/to/module.wbm.gz Replace /usr/libexec/webmin with your appropriate Webmin root directory. > When i poked around in doxfer.webmin.com, i figured it would be good to > add some documentation about the Dan's Guardian module (available from > http://sourceforge.net/projects/dgwebminmodule/), but when i tried to > register, it gave me the following error: > > > TWiki detected an internal error - please check your TWiki logs and webserver > logs for more information. > > > > Failed to open file: No such file or directory We had to disable registration due to people messing with the docs :-( But if you send me the docs you want to add, I will put them up on the site. - Jamie |
From: Paul G. <pa...@ge...> - 2010-08-11 07:24:26
|
Hi all (esp. Jamie), As a follow-on from my previous post, i plan to do a bit of work tracking down some bugs in the Dan's Guardian module (http://sourceforge.net/projects/dgwebminmodule/) for one of my clients. I tried to contact the author of this module via SourceForge, but was not successful. I'll try the mailing lists as well, but if i don't have any luck, what would be the best way of ensuring that the changes are made available to Webmin users? Thanks, Paul |
From: Paul G. <pa...@ge...> - 2010-08-11 07:09:32
|
Hi folks, Today i went in search of instructions about how to install a Webmin module manually (i.e. without logging into the web interface), and the main hit led me to http://doxfer.webmin.com/Webmin/Modules I didn't find my answer there, so if Jamie or someone else would be able to point me in the right direction about this, that would be great. The goal is to install 3rd-party modules in a fully automatic manner using the puppet configuration management tool. I'm happy to do any necessary bash or perl scripting to achieve it. When i poked around in doxfer.webmin.com, i figured it would be good to add some documentation about the Dan's Guardian module (available from http://sourceforge.net/projects/dgwebminmodule/), but when i tried to register, it gave me the following error: > TWiki detected an internal error - please check your TWiki logs and webserver logs for more information. > > Failed to open file: No such file or directory All of the fields marked required were filled in. Thanks in advance, Paul |
From: David H. <dav...@st...> - 2010-05-18 21:40:54
|
Perfect. Cheers. On Wed, May 19, 2010 at 9:24 AM, Jamie Cameron <jca...@we...> wrote: > Hi David, > > You can get this from the global variable $module_name > > - Jamie > > On 18/May/2010 14:00 David Harrison <dav...@st...> > wrote .. > > Hi, > Is there a built-in Webmin function that returns the internal name of the > active module? > e.g. "mysql" if the user is using the MySQL module. > > This information would seem to be available via $ENV{SCRIPT_NAME}, but I'm > sure there's an easier way of getting it. > (Plus I am not sure how $ENV{SCRIPT_NAME} behaves if Webmin is in a > subdirectory) > > Background: > In my theme I want to include a <body class="$modulename"> tag so that I > can better target CSS rules. > e.g. body.mysql form.ui_form { } > > > Regards, > > > David > > > > > ------------------------------------------------------------------------------ > > > - > Forwarded by the Webmin development list at web...@we... > To remove yourself from this list, go to > http://lists.sourceforge.net/lists/listinfo/webadmin-devel > > |
From: David H. <dav...@st...> - 2010-05-18 21:22:06
|
Hi, Is there a built-in Webmin function that returns the internal name of the active module? e.g. "mysql" if the user is using the MySQL module. This information would seem to be available via $ENV{SCRIPT_NAME}, but I'm sure there's an easier way of getting it. (Plus I am not sure how $ENV{SCRIPT_NAME} behaves if Webmin is in a subdirectory) Background: In my theme I want to include a <body class="$modulename"> tag so that I can better target CSS rules. e.g. body.mysql form.ui_form { } Regards, David |
From: Alejandro A. F. <Fer...@se...> - 2010-05-18 18:45:34
|
Hello: I am modifying the former module of the snort, since I him am adding new functionalities. 1-Since I can publish the work that exists I begin till now. 2-I do not find like to handle Session CGI in the WebMin, something exists for it or is using this module perl, if it is like that since I can do the dependence in order that there is installed to use the module snort that needs it. Forgive the way of Englishman expressing to me since I do not speak. Regards |
From: Jamie C. <jca...@we...> - 2010-03-12 18:23:49
|
On 12/Mar/2010 06:26 Paul Gear <pa...@ge...> wrote .. > Jamie Cameron wrote: > > Sorry, no... however, you can access the webmin API from a command line perl > script, if you are familiar with the language. > > > > > > Paul Gear <pa...@ge...> wrote: > > > >> Hi folks, > >> > >> I have a DHCP server that i manage through Webmin, and i'd like to > >> bulk-add entries to a particular subnet. Is there a way to access this > >>from a bash script? > > Perl is fine too. Are there defined APIs for each module? Yes, although not all are very well documented. Have a look at : http://doxfer.com/Webmin/UsingTheAPIInStandalonePerlScripts and : http://doxfer.com/Webmin/TheWebminAPI - Jamie |
From: Paul G. <pa...@ge...> - 2010-03-12 14:27:34
|
Jamie Cameron wrote: > Sorry, no... however, you can access the webmin API from a command line perl script, if you are familiar with the language. > > > Paul Gear <pa...@ge...> wrote: > >> Hi folks, >> >> I have a DHCP server that i manage through Webmin, and i'd like to >> bulk-add entries to a particular subnet. Is there a way to access this >>from a bash script? Perl is fine too. Are there defined APIs for each module? |
From: Ron W. <rwh...@ar...> - 2010-03-12 12:59:29
|
Short answer Yes. Why not just manipulate the underlying DHCP files. They are just files with a well-know format. If you were willing to write a PHP program that you can call from a bash script, you could take the Webmin code for accessing and updating the files and add in your own batch processing part. Not much magic here. Ron Paul Gear wrote: > Hi folks, > > I have a DHCP server that i manage through Webmin, and i'd like to > bulk-add entries to a particular subnet. Is there a way to access this > from a bash script? > > Thanks, > Paul > > > ------------------------------------------------------------------------------ > Download Intel® Parallel Studio Eval > Try the new software tools for yourself. Speed compiling, find bugs > proactively, and fine-tune applications for parallel performance. > See why Intel Parallel Studio got high marks during beta. > http://p.sf.net/sfu/intel-sw-dev > - > Forwarded by the Webmin development list at web...@we... > To remove yourself from this list, go to > http://lists.sourceforge.net/lists/listinfo/webadmin-devel > > |
From: Jamie C. <jca...@we...> - 2010-03-12 07:11:31
|
Sorry, no... however, you can access the webmin API from a command line perl script, if you are familiar with the language. Paul Gear <pa...@ge...> wrote: >Hi folks, > >I have a DHCP server that i manage through Webmin, and i'd like to >bulk-add entries to a particular subnet. Is there a way to access this >from a bash script? > >Thanks, >Paul > > >------------------------------------------------------------------------------ >Download Intel® Parallel Studio Eval >Try the new software tools for yourself. Speed compiling, find bugs >proactively, and fine-tune applications for parallel performance. >See why Intel Parallel Studio got high marks during beta. >http://p.sf.net/sfu/intel-sw-dev >- >Forwarded by the Webmin development list at web...@we... >To remove yourself from this list, go to >http://lists.sourceforge.net/lists/listinfo/webadmin-devel > |