Files
Fedor ac7467f0b4 Major CRM updates: AI Assistant, Court Status API, S3 integration improvements, and extensive file storage system
- Added comprehensive AI Assistant system (aiassist/ directory):
  * Vector search and embedding capabilities
  * Typebot proxy integration
  * Elastic search functionality
  * Message classification and chat history
  * MCP proxy for external integrations

- Implemented Court Status API (GetCourtStatus.php):
  * Real-time court document status checking
  * Integration with external court systems
  * Comprehensive error handling and logging

- Enhanced S3 integration:
  * Improved file backup system with metadata
  * Batch processing capabilities
  * Enhanced error logging and recovery
  * Copy operations with URL fixing

- Added Telegram contact creation API
- Improved error logging across all modules
- Enhanced callback system for AI responses
- Extensive backup file storage with timestamps
- Updated documentation and README files

- File storage improvements:
  * Thousands of backup files with proper metadata
  * Fix operations for broken file references
  * Project-specific backup and recovery systems
  * Comprehensive file integrity checking

Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
2025-10-16 11:17:21 +03:00

69 lines
2.0 KiB
PHP

<?php
$msg = isset($_GET['msg']) ? $_GET['msg'] : '';
if (!$msg) $msg = "Le site du spipu\r\nhttp://spipu.net/";
$err = isset($_GET['err']) ? $_GET['err'] : '';
if (!in_array($err, array('L', 'M', 'Q', 'H'))) $err = 'L';
require_once('qrcode.class.php');
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Spipu Qrcode <?php echo __CLASS_QRCODE__; ?></title>
<meta name="Title" content="Spipu - Qrcode <?php echo __CLASS_QRCODE__; ?>" >
<meta name="Description" content="Spipu - Qrcode <?php echo __CLASS_QRCODE__; ?>" >
<meta name="Keywords" content="spipu">
<meta name="Author" content="spipu" >
<meta name="Reply-to" content="webmaster@spipu.net" >
<meta name="Copyright" content="(c)2009 Spipu" >
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" >
<style type="text/css">
<!--
table.qr
{
border-collapse: collapse;
border: solid 1px black;
table-layout: fixed;
}
table.qr td
{
width: 5px;
height: 5px;
font-size: 2px;
}
table.qr td.on
{
background: #000000;
}
-->
</style>
</head>
<body>
<center>
<form method="GET" action="">
<textarea name="msg" cols="40" rows="7"><?php echo htmlentities($msg); ?></textarea><br>
Correction d'erreur :
<select name="err">
<option value="L" <?php echo $err=='L' ? 'selected' : ''; ?>>L</option>
<option value="M" <?php echo $err=='M' ? 'selected' : ''; ?>>M</option>
<option value="Q" <?php echo $err=='Q' ? 'selected' : ''; ?>>Q</option>
<option value="H" <?php echo $err=='H' ? 'selected' : ''; ?>>H</option>
</select> |
<input type="submit" value="Afficher">
</form>
<hr>
Génération d'un tableau HTML :<br>
<?php
$qrcode = new QRcode(utf8_encode($msg), $err);
$qrcode->displayHTML();
?>
<br>
Génération d'une image PNG : <br>
<img src="./image.php?msg=<?php echo urlencode($msg); ?>&amp;err=<?php echo urlencode($err); ?>" alt="generation qr-code" style="border: solid 1px black;">
</center>
</body>
</html>