
-v3.3.1. -Move a bunch of files. -Move versionInfo.php and config.php into the Resources folder. -Create build folder. -Move rc.local, rc.local.service, and a php.ini sample file in there that will be used for Docker installs. -Move all resources into the UI\Default folder. -Relieve the core of the logic of defining CSS, JS, and images for the UI pack. That's not very modular. -Now the UI pack defines these in header.php. -Resources folder is not a required part of a UI pack. So the core won't check for it, -Although the core does define a relative path where the Resources folder, and JS, CSS, Images subfolders should go as a convinience. -It is not required by the core to have these folders, or to organize your theme into them. -Remove LICENSE file from the root of the repository, as this is also in the Documentation folder. -Add a return value to cleanFiles() because I need one for the changes to verifyInstallation(). -Use the return value to make the variables $CleanedConvertLoc and $CleanedTempLoc meaningful by passing the return value to them. -verifyInstallation() now checks config.php for $DeleteBuildEnvironment, and if true will delete the /Build folder. -This is enabled by default to prevent attackers from using this to enumerate configuration information about the server or application. -Improve documentation, formatting of styleCore.php for consistency/readability. -Continue the long, ardous task of converting all the double quotes in convertGui2.php to single quotes. -This will take a while, but I have done enough to be able to find/replace what I need. -Remove Error 2-1 from ERROR_DESCRIPTIONS.txt because it is no longer generated by the application. -Move supported formats to config.php so server administrators can control their own fate, if they dare. -Default values are also listed in config.php if needed. -Add support to remove the build environment & "development docs" that give away version info like readme.md & changelog.txt. -Changed default color scheme from grey to blue because grey is especially gross looking to me right now. -Fix bug where font defined in config.php was not propagating to styleCore.php. -Fix bug with user virus scans when using ClamAV to scan an individual file for viruses. -The scan would complete, but it would utilize both ScanCore and ClamAV when all the user asked for was ClamAV. -Move default installation location to /DATA/HRConvert2 to make it consistent for Docker implementation. -Start working on official Docker version. -Minor update to installation instructions, consistency, consolidate steps. -Added icon files to the Resources directory to be used in a future update.
21 lines
No EOL
900 B
HTML
21 lines
No EOL
900 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<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> |