// To install this application --YOU MUST-- set the following parameters. // Set up the data for this application following the ReadMe file. Then // link the application to the date through these parameters. project.DBMSBrand= "INFORMIX"; // The designated name of your DBMS vendor. project.DBMSServer="appalanche_db"; // The name of your DBMS server, as installed. project.DBMSUserId="informix"; // a username authorized to read the Job Database. project.password = "informix"; // Associated password for the user. project.database = "jobcenter"; // Name of the job database on you server. // If you don't want these values to be in // LiveWire parameters, hard code them in // dbConnect(), defined in functions.js. // To install this application, the following parameters may be changed freely. // They define // (1) the path to the directory where images are stored. // (2) the path to the include files for client-side javascript. (Not currently used.) // (3) the 'standard' width of pages produced by the system. // (4) the width of the header banners. Used for alignment of buttons with banners. // (5) the separator between buttons when multiple buttons are displayed side by side. // (6) the background color for all application pages. project.pathToImages="images/"; project.pathToIncludes="e:/Netscape/Server/LiveWire/Apfinal/Austin/"; project.pageWidth="600"; project.headerWidth="477"; project.buttonSeparator=" "; project.bodyColor="#FFFFFF" // white // The following are system constants defining special characters. // Also look for their definitions in the function called header() // which is defined in the file named functions.js. Q ="\""; // standard double quote SQ="\'"; // single quote CR=unescape("%0D"); // carriage return LF=unescape("%0A"); // line feed // The following system parameters must be initialized whenever // the system (project) is first started. client.started="no"; project.jobListingsReusable="false"; project.jobOptionsReusable ="false"; project.departmentOptions=""; project.siteOptions=""; project.applicationListingsReusable="false"; project.applicationOptionsReusable ="false"; project.resdepOptions = ""; project.reshrmgrOptions=""; project.ressiteOptions =""; project.restitleOptions=""; project.holdConnection="false"; setUpButtons(); // delete the next two lines if you want the system to connect and disconnect from the DBMS // immediately before and after each operation. The two lines below make the system run faster, // but limits the number of users who can be on the system. Getting rid of the lines lets more // people play with the system, since the DB connections are only used when actually needed. dbConnect(); project.holdConnection="true";