Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 1366 → Rev 1367

/trunk/dev/generate_wellknown_country_access
18,7 → 18,7
* limitations under the License.
*/
 
// This script generates a part of plugins/viathinksoft/sqlSlang/access/sql/wellknown_country.sql , based on Country OIDs at oid-info.com
// This script generates plugins/viathinksoft/sqlSlang/access/sql/wellknown_country.sql , based on Country OIDs at oid-info.com
// If new countries are added to the ISO / ITU arcs, please re-run this script and update plugins/viathinksoft/sqlSlang/access/sql/wellknown_country.sql accordingly
 
use ViaThinkSoft\OIDplus\OIDplus;
/trunk/dev/generate_wellknown_country_firebird
18,7 → 18,7
* limitations under the License.
*/
 
// This script generates a part of plugins/viathinksoft/sqlSlang/firebird/sql/wellknown_country.sql , based on Country OIDs at oid-info.com
// This script generates plugins/viathinksoft/sqlSlang/firebird/sql/wellknown_country.sql , based on Country OIDs at oid-info.com
// If new countries are added to the ISO / ITU arcs, please re-run this script and update plugins/viathinksoft/sqlSlang/firebird/sql/wellknown_country.sql accordingly
 
use ViaThinkSoft\OIDplus\OIDplus;
/trunk/dev/generate_wellknown_country_mssql
18,7 → 18,7
* limitations under the License.
*/
 
// This script generates a part of plugins/viathinksoft/sqlSlang/mssql/sql/wellknown_country.sql , based on Country OIDs at oid-info.com
// This script generates plugins/viathinksoft/sqlSlang/mssql/sql/wellknown_country.sql , based on Country OIDs at oid-info.com
// If new countries are added to the ISO / ITU arcs, please re-run this script and update plugins/viathinksoft/sqlSlang/mssql/sql/wellknown_country.sql accordingly
 
use ViaThinkSoft\OIDplus\OIDplus;
/trunk/dev/generate_wellknown_country_mysql
18,7 → 18,7
* limitations under the License.
*/
 
// This script generates a part of plugins/viathinksoft/sqlSlang/mysql/sql/wellknown_country.sql , based on Country OIDs at oid-info.com
// This script generates plugins/viathinksoft/sqlSlang/mysql/sql/wellknown_country.sql , based on Country OIDs at oid-info.com
// If new countries are added to the ISO / ITU arcs, please re-run this script and update plugins/viathinksoft/sqlSlang/mysql/sql/wellknown_country.sql accordingly
 
use ViaThinkSoft\OIDplus\OIDplus;
/trunk/dev/generate_wellknown_country_oracle
18,7 → 18,7
* limitations under the License.
*/
 
// This script generates a part of plugins/viathinksoft/sqlSlang/oracle/sql/wellknown_country.sql , based on Country OIDs at oid-info.com
// This script generates plugins/viathinksoft/sqlSlang/oracle/sql/wellknown_country.sql , based on Country OIDs at oid-info.com
// If new countries are added to the ISO / ITU arcs, please re-run this script and update plugins/viathinksoft/sqlSlang/oracle/sql/wellknown_country.sql accordingly
 
use ViaThinkSoft\OIDplus\OIDplus;
/trunk/dev/generate_wellknown_country_pgsql
18,7 → 18,7
* limitations under the License.
*/
 
// This script generates a part of plugins/viathinksoft/sqlSlang/pgsql/sql/wellknown_country.sql , based on Country OIDs at oid-info.com
// This script generates plugins/viathinksoft/sqlSlang/pgsql/sql/wellknown_country.sql , based on Country OIDs at oid-info.com
// If new countries are added to the ISO / ITU arcs, please re-run this script and update plugins/viathinksoft/sqlSlang/pgsql/sql/wellknown_country.sql accordingly
 
use ViaThinkSoft\OIDplus\OIDplus;
/trunk/dev/generate_wellknown_other_access
25,6 → 25,8
* limitations under the License.
*/
 
use ViaThinkSoft\OIDplus\OIDplus;
 
require_once __DIR__ . '/../includes/oidplus.inc.php';
 
OIDplus::init(false);
/trunk/dev/generate_wellknown_other_firebird
25,6 → 25,8
* limitations under the License.
*/
 
use ViaThinkSoft\OIDplus\OIDplus;
 
require_once __DIR__ . '/../includes/oidplus.inc.php';
 
OIDplus::init(false);
/trunk/dev/generate_wellknown_other_mssql
28,6 → 28,8
* limitations under the License.
*/
 
use ViaThinkSoft\OIDplus\OIDplus;
 
require_once __DIR__ . '/../includes/oidplus.inc.php';
 
OIDplus::init(false);
/trunk/dev/generate_wellknown_other_mysql
25,6 → 25,8
* limitations under the License.
*/
 
use ViaThinkSoft\OIDplus\OIDplus;
 
require_once __DIR__ . '/../includes/oidplus.inc.php';
 
OIDplus::init(false);
/trunk/dev/generate_wellknown_other_oracle
25,6 → 25,8
* limitations under the License.
*/
 
use ViaThinkSoft\OIDplus\OIDplus;
 
require_once __DIR__ . '/../includes/oidplus.inc.php';
 
OIDplus::init(false);
/trunk/dev/generate_wellknown_other_pgsql
25,6 → 25,8
* limitations under the License.
*/
 
use ViaThinkSoft\OIDplus\OIDplus;
 
require_once __DIR__ . '/../includes/oidplus.inc.php';
 
OIDplus::init(false);
/trunk/dev/generate_wellknown_other_sqlite
25,6 → 25,8
* limitations under the License.
*/
 
use ViaThinkSoft\OIDplus\OIDplus;
 
require_once __DIR__ . '/../includes/oidplus.inc.php';
 
OIDplus::init(false);
/trunk/dev/logger/verify_maskcodes.phps
21,9 → 21,12
$dir = __DIR__ . '/../../';
 
define('INSIDE_OIDPLUS',true);
include_once $dir.'vendor/danielmarschall/php_utils/misc_functions.inc.php'; // PHP 7.x compat functions
require_once $dir.'includes/classes/OIDplusBaseClass.class.php';
require_once $dir.'includes/classes/OIDplusLogger.class.php';
 
const VERBOSE = false;
 
use ViaThinkSoft\OIDplus\OIDplusLogger;
 
// ---
51,7 → 54,7
$file = substr($file, strlen($dir));
echo "Invalid maskcode '$str' in file '$file'\n";
} else {
//echo 'Valid: '.$str."\n";
if (VERBOSE) echo 'Valid: '.$str."\n";
}
}
}