- 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.
32 lines
1.2 KiB
HTML
32 lines
1.2 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
|
|
<title>jQuery Datepicker</title>
|
|
<link type="text/css" href="jquery.datepick.css" rel="stylesheet">
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
|
|
<script type="text/javascript" src="jquery.datepick.js"></script>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
$('#popupDatepicker').datepick();
|
|
$('#inlineDatepicker').datepick({onSelect: showDate});
|
|
});
|
|
|
|
function showDate(date) {
|
|
alert('The date chosen is ' + date);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>jQuery Datepicker</h1>
|
|
<p>This page demonstrates the very basics of the
|
|
<a href="http://keith-wood.name/datepick.html">jQuery Datepicker plugin</a>.
|
|
It contains the minimum requirements for using the plugin and
|
|
can be used as the basis for your own experimentation.</p>
|
|
<p>For more detail see the <a href="http://keith-wood.name/datepickRef.html">documentation reference</a> page.</p>
|
|
<p>A popup datepicker <input type="text" id="popupDatepicker"></p>
|
|
<p>Or inline</p>
|
|
<div id="inlineDatepicker"></div>
|
|
</body>
|
|
</html>
|