Automated Overtime Signup

Oct 23, 2004

Here is a little program I wrote that allows you to enter in overtime shifts (Or any kind thing people might sign up for) and then allows people to sign-up for them in real time. Once they are signed up the data can be easily documented in any schedule management system. This is all clientside, so it's far from secure, but with proper folder permissions set, will run quite niceley on a shared network drive. Attached here are the HTML files. In the second post are the databases. Extract to the desktop. The default path for the databases and tracking folders is the desktop, this can be altered in the js file and they can be moved wherever you like. It has the ability to work for multiple groups and differet shift types. Could be a bit more dynamic in the set-up process, maybe if I ever convert it to a server side language I'll walk that path.

View 3 Replies


ADVERTISEMENT

Dojo Signup Form / How To Execute 2 Functions At Once?

Jun 11, 2009

I am using dojo to validate my signup form. If I putting execute="checkPw(arguments[0]); before "submitI fValid(this.isValid());"> , the check password is working but i cant submit the form or vice versa.

View 3 Replies View Related

Automated Handling Of Basic Authentication

Mar 14, 2011

A client of mine is trying to integrate one of his Web systems with my system. In an essence, he wants to embed my system's web UI into his "master" web page, and display it in a sub-frame whenever a user requests my system display.My system (JBoss AS) has Basic Authentication enabled. So if a user attempts to access my system he/she is prompted to provide username/password. If correct credentials are provided, then user is allowed access to my system / web pages.Now, the client is trying to automate the login. He wants to provide the login information automatically, through JavaScript in his master page (this is needed so that users of his system don't provide any credentials - all user/pwd information is passed under the curtains).What is wrong in the approach above and do you know if there is a better way to properly implement this seamless logging (knowing that Basic Authentication is the only option)?

View 1 Replies View Related

Best Automated Registration Login / Out For Websites?

Feb 15, 2012

I am looking to implement a new feature on my website.

I would like to get a log in form that would take the members to an update page where they can update their details showing on my website code...

I have asked google but too many options and did not really compare any.

What do you use? What do you think is the best? Where should I concentrate my research?

View 1 Replies View Related

Automated Popup Slideshow Of Webpages

Jun 28, 2011

I am trying to write a javascript that once a link is pressed, a popup opens and a series of websites, with 2 changing parameters (from arrays), are loaded in series (after a time delay, or if possible once the page has loaded). I have managed to get a working script together, but I can't seem to make it load within the same window, instead of loading several pages after each other. So what I am asking really is, how do I ensure it loads within the same popup window? and If possible, how can I improve the code so that it only "pauses" until the page is loaded instead of just waiting 10 seconds?

Code:
<script type="text/javascript">
function makeCrankWindow(url){
crankWind = window.open(url,"Cwindow");
if (window.focus) {newwindow.focus()}
return false;
}function Crankwindow(){
var wid = []; //Titan Id Array
wid[0] = "53";
wid[1] = "57";
wid[2] = "194";
wid[3] = "196";
wid[4] = "242";
wid[5] = "286";
var sid = []; // Facebook Id Array
sid[0] ="5089"; // NAME HERE
var timeout = 0;
for (var i=0; i<2; i++){
for (var j=0; j<6; j++){
setTimeout('makeCrankWindow("[URL] source=190&sourceu=' + sid[i] + '&wid=' + wid[j] + '","Cwindow")', timeout);
timeout += 10000;
}}}
</script>

View 1 Replies View Related

Automated Multiple Button Clicking Script In GM?

Jan 14, 2011

js and GM but I am trying to make a script that will click a button on a page where there are multiple instances of the button.The source I am looking at is below and I have narrowed down what I am looking at to the bold section.

<dl>
<dd class="left"><div id='recommendstatus_article4458331'>
<dl class="recommend">

[code]....

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved