common_cadline_libraries (CRM hardlock/db/users classes; upstream cadline_web/cadcommonlib), maintenance/ (ARCHLine.XP license backend; upstream cadline_web/maintenance), maintenance2/. Vetted live files (byte-truth); upstream repos in PROVENANCE.md. NOTE: could be git submodules — kept as live files for byte-fidelity. Signed-off-by: LÁZÁR Imre <imre@illusion.hu> Assisted-by: claude-code@claude-opus-4-8
16 lines
642 B
PHP
16 lines
642 B
PHP
<?php
|
|
|
|
/*******************************************************************************
|
|
* eredeti url: http://www.archlinexp.com/version/warehousedownloadlink/ + url
|
|
******************************************************************************/
|
|
include("config.php");
|
|
|
|
$link = $_GET['link'];
|
|
$link = base64_decode($link);
|
|
$archlineversion = filter_input(INPUT_GET, 'archlineversion', FILTER_SANITIZE_NUMBER_INT);
|
|
|
|
if (strstr($link, "https://3dwarehouse.sketchup.com/warehouse/") && strstr($link, "download=true") && strstr($link, "/binaries/s")) //ba skp fajlok: s14, s15 - s18 kezdettel
|
|
print "true";
|
|
else
|
|
print "false";
|