GUI application through CRONTAB


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting GUI application through CRONTAB
# 1  
Old 03-29-2006
GUI application through CRONTAB

I ve tried to initialise a GUI application by giving an entry in the CRONTAB. But its not working.could any one tell me how can I get this?
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Gui

hi unix expert what does mean the blew sentences? and what does i do for this? ( i want to install dropbox in centos) "I was just experimenting with Flatpak apps, and Dropbox is available as a Flatpak. Installing that way was super easy -- installed gnome-software (which has Flatpak... (2 Replies)
Discussion started by: abdossamad2003
2 Replies

2. Programming

Python gui or C++ gui or java gui?

python gui or c++ gui or java gui? and when to use etch one? (1 Reply)
Discussion started by: kaja
1 Replies

3. Shell Programming and Scripting

Crontab not starting the application in every minute...

Hi Friends, I have developed a standalone java application which is deployed in a Linux environment. I have created a script for starting this application if the process is not running or else do nothing. The application is deployed as a .jar. I have also created a crontab entry like this... ... (1 Reply)
Discussion started by: Binoy Sankar
1 Replies

4. Programming

creating an application with gui in linux

hi, so I am familiar with visual studio for windows, I was wondering if there's that kind of IDE for linux that I can use to make an application... thanks! (2 Replies)
Discussion started by: h0ujun
2 Replies

5. Shell Programming and Scripting

Running a GUI without GUI

I was wondering if it is possible to run a GUI window (say Firefox) without actually showing up the window on the desktop but still make it do its own regular stuff (like maybe do something via the command line). Sorry if its a dumb question. Thanks (3 Replies)
Discussion started by: Legend986
3 Replies

6. Shell Programming and Scripting

What to use for non-X GUI??

Has anybody ever needed to make a GUI (but really old-school style like dialog) to do some menu-based configurations... quite literally I have been bashing out code in Python using an interface class to the Dialog program in Linux... but it doesn't really have all the callback menu-driven... (0 Replies)
Discussion started by: jjinno
0 Replies

7. UNIX for Advanced & Expert Users

GUI issue

I have successfully installed Red hat linux 7.2 on my PC. But During the installation i saw the following messages "starting anaconda.... probing vedio card:unable to probe " In Xconfiguration step of installation ,The installer could not identify my video card. Finalle when i start... (1 Reply)
Discussion started by: ravi raj kumar
1 Replies

8. Shell Programming and Scripting

Gui?

Do you guys work with Python? I'm just learning now but GUI seems like a way cool program it is just really wierd... I have version 4.2. you can download it for free off the site... (0 Replies)
Discussion started by: Blacidic
0 Replies

9. UNIX for Dummies Questions & Answers

If a is windows gui ( client), b is a unix gui ( Server for a) and c is a shell scrip

Hello all, 1) I want to have a GUI application that will call Unix shell scripts, 2) that GUI application should be able to reside on windows ( if possible) and then call Unix shell script either directly or through a server residing on unix. That is for example. If a is windows gui (... (1 Reply)
Discussion started by: hchivukula
1 Replies

10. UNIX Desktop Questions & Answers

GUI help

I am running Solaris 9 os on a sparc 64. I installed netscape 7 and it works just fine. However on the desktop when you click web browser is still brings up netscape 4. How can i make the web browser link on the desk top open version 7 instead of 4? Thanks, Steve (1 Reply)
Discussion started by: meyersp
1 Replies
Login or Register to Ask a Question
EMBOSS::GUI::XHTML(3pm) 				User Contributed Perl Documentation				   EMBOSS::GUI::XHTML(3pm)

NAME
EMBOSS::GUI::XHTML - generate HTML for EMBOSS::GUI AUTHOR
Luke McCarthy <lukem@gene.pbi.nrc.ca> SYNOPSIS
Not for public consumption. Use EMBOSS::GUI instead. DESCRIPTION
EMBOSS::GUI::XHTML generates the HTML required by EMBOSS::GUI. The appearance of EMBOSS::GUI can be customized by editing or replacing the default style sheet. There is very little that cannot be accomplished in this way. If new HTML is absolutely required, simply create a new module that provides the methods described below and specify the new module in the EMBOSS::GUI constructor. Public methods are described below: new(%args) Returns a new EMBOSS::GUI::XHTML object. %args is a hash of optional named arguments. The following arguments are %recognized: static => $boolean If $boolean is true, the generated HTML will assume that, where possible, the pages of the interface have been generated statically and will be linked appropriately. See also the mkstatic script in the EMBOSS::GUI distribution. frames => $boolean If $boolean is true, the generated HTML will assume that the main menu is in its own frame and doesn't have to be added to each page. script_url => $url Specifies the URL of the main EMBOSS::GUI CGI script. This parameter is required if static pages are generated, otherwise the URL will be determined from the CGI environment. style_url => $url Specifies the URL of the style sheet to use. image_url => $url Specifies a URL prefix to place before image links. manual_url => $url Specifies a URL prefix to place before manual links. This prefix is only used if static pages are generated. intro_page() Generates an introductory page describing EMBOSS and the GUI. menu_page(@entries) Generates the main menu page. @entries is either a list of applications as returned by EMBOSS::GUI::apps(), or a list of groups as returned by EMBOSS::GUI::groups(). input_page($acd, $hide_optional) Generates the application-specific input page. $acd is an EMBOSS::ACD object that describes the application. $hide_optional is a boolean value that determines whether optional parameters (also called additional parameters in the EMBOSS documenation) will appear in the input page. input_page($output_dir) Generates an output page based on the contents of the specified directory. $output_dir is a directory containing the output of an EMBOSS application. manual_page($app, $manual) Generates the application-specific manual page. $app is the name of the application. $manual_html is the full text of the HTML application manual. default_output_page($refresh_delay) Generates the default output page to be used as a placeholder until the application has finished running and the actual output is available. $refresh_delay is the number of seconds to wait between page reloads. error_page(@error) Generates an error page. @error is the text of the error message. All elements of the list are joined into a single string, so this method has the same syntax as print, warn, die, etc. frameset_page() Generates a page that sets up the menu and main content frames. BUGS
If the user has asked to see only required fields, sections containing only optional fields will still be visible, even though the fields they contain are hidden. Fixing this requires better section handling in EMBOSS::ACD. COPYRIGHT
Copyright (c) 2004 Luke McCarthy. All rights reserved. This program is free software. You may copy or redistribute it under the same terms as Perl itself. perl v5.14.2 2013-09-16 EMBOSS::GUI::XHTML(3pm)