- Add videodb PHP/MySQL media collection manager (Blu-ray, DVD, CD) - Dockerfile: PHP 8.1 + Apache with GD/mysqli/exif extensions - docker-compose.yml: app on port 6761 + MySQL 8.0 with health checks - docker-entrypoint.sh: auto-generates config.inc.php from env vars, waits for MySQL, initializes DB schema idempotently - init-db.php: CLI schema installer using app's own prefix_query() logic - Persistent volumes for DB, cache, and cover images Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
416 B
Smarty
16 lines
416 B
Smarty
<div id="dlog" sstyle="position: absolute; top: 600px; left: 0px; width:200px; height: 80px;"></div>
|
|
|
|
{literal}
|
|
function dlog(d)
|
|
{
|
|
el = $('dlog');
|
|
/*
|
|
if (!el) {
|
|
el = new Element('div', {'id': 'dlog'}).setStyle({position:'absolute', left:'0px', top:'200px', width:'200px', border:'1px solid #000', height:'20px'});
|
|
document.body.appendChild(icon);
|
|
}
|
|
*/
|
|
el.innerHTML = d + "<br/>" + el.innerHTML;
|
|
}
|
|
{/literal}
|