This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MIT License https://delphidabbler.mit-license.org/2022- | |
// Copyright (c) 2022, Peter D Johnson (https://gravatar.com/delphidabbler) | |
unit UExeType; | |
interface | |
type | |
TExeType = ( | |
etUnknown, // unknown file kind: not an executable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unit UEnvVars; | |
interface | |
uses | |
// Delphi | |
Classes; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unit UBox; | |
interface | |
type | |
/// <summary>Generic class that wraps a type in an object.</summary> | |
/// <remarks>Although this type can be used to wrap any type it is aimed at | |
/// wrapping value types and strings.</remarks> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# General .gitignore file suitable for Delphi 7 to XE | |
*.ddp | |
*.exe | |
*.dll | |
*.bpl | |
*.bpi | |
*.dcp | |
*.so | |
*.apk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Fix for SF RSS feed bug: https://sourceforge.net/p/allura/tickets/6687/ | |
Reads RSS source code from SourceForge and re-renders it, adding an | |
isPermaLink=false attribute to every <guid> tag. | |
*/ | |
mb_internal_encoding('UTF-8'); | |
mb_http_output('UTF-8'); | |
mb_language('uni'); |