
-v2.8.2. -"Polishing the edges" of the repo, so to speak. -Cleaning up directory structure. -Added Documentation directory. -Moved Documentation to the documentation directory. -Added ERROR_DESCRIPTIONS with detailed descriptions of every error message produced in the logs. -Still need to add more messages. -Renamed How_To_Install_HRConvert.txt to INSTALLATION_INSTRUCTIONS.txt & moved to Documentation directory. -Moved ICON_CREDITS.txt to Documentation directory. -Cleaned up the comment intro section to all PHP files to have the same basic formatting & structure. -Polish the README some more. -Make logs respect the $ApplicationName variable as soon as it becomes available. -No more hardcoded "HRConvert2" in log entries. -Moved styleCore.php to Resources directory, since it only contains 4 front-end related variables and no logic of its own. -The goal is to cleanup the root of the repo to make it more presentable & approacable for newbies. -All the important files related to logic are in the root of the repo. -Makes the repo more modular as well. -Make $_GET['language'] codes language case-insensitive. -Log files are now named after the $ApplicationName variable set in config.php rather than using HRConvert2 in the filename. -Reordered some logic. -Disable GUI compilation when responding to a file operation request. -The front end doesn't use output from the core anyway. -This clears the way to enable such functionality by controlling the when GUI elements are actually needed. -No longer throws 404 errors when a file conversion fails. -No longer opens compatible files in the browser but starts a download instead. -No more HTML undefined errors when requesitng a download. -Added a check to verifySessionHash() function to make sure the $Salts variables are formatted as strings.
21 lines
No EOL
913 B
HTML
21 lines
No EOL
913 B
HTML
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<title>HRConvert2 | HRConvert2 Authentication</title>
|
|
<body>
|
|
<div id="outer" align="center"><h1>Configuring HRConvert2 ...</h1>
|
|
|
|
<div id="inner" style="position:absolute; top:50%; left:50%; height:10em; margin-top:-5em; margin-right:5em;"><strong>Please wait . . .</strong></div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
|
|
// Set the URL below to the page the user is sent to if their screensize is UNDER the specified number of pixels.
|
|
if (screen.width <= 699) { document.location = "/HRProprietary/HRConvert2/convertCore.php"; }
|
|
// / Set the URL below to the page the user is sent to if their screensize is OVER the specified number of pixels.
|
|
if (screen.width >= 700) { document.location = "/HRProprietary/HRConvert2/convertCore.php"; }
|
|
|
|
</script>
|
|
|
|
<meta id="IfNothingHappens" http-equiv="refresh" content="5"; url="/HRProprietary/HRConvert2/convertCore.php" >
|
|
|
|
</body>
|
|
</html> |