<?php
/*
// OPDS basic gestion (only add entities and relations, not modify)
// Version: 0.1
// Pierre FAUQUE, <pierre@fauque.net>
// Script: 2014, Script->Class: 2019, Gestion: may 2020
// Encoding: UTF-8
// Text editor: GNU/Linux Debian Vi
// File: doc_todo3.php (v0.1)
// Role: Documentation, to do list : modification of previous records
*/
require("init.php");
require("lib_lddocs.php");
?><!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>To do list</title>
<link rel="stylesheet" href="opds.css" type="text/css" />
</head>
<body>
<table border="0" width="100%">
<tr>
<td class="cmen">
<?php menu(); ?></td>
<td class="cont">
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
<h1>OPDS: Record modifications</h1>
<div style="width:800px">
<div class="smen"><?php require("menu_todo.php"); ?></div>
<p>Probably a future version of these management pages will cover the possibility of modifying previous records without being obliged to modify them through interfaces like phpMyAdmin. When this happens you will be notified if you are registered on the PHP Classes site.</p>
<p>However, PHP Classes is a PHP class repository and not an application repository. Improvement modifications will therefore focus on the OPDS Class. Catalog management will be improved if I can't find anything else to do with the class.</p>
<p>Written in English for wider distribution, these scripts have been translated into French, my native language, first for my personal use, then for French-speaking users.</p>
<p>I am currently modifying the entry pages in the database (additions of entities and relations) to allow the modification of the records already made. This will avoid the use of interfaces like phpMyAdmin (which is perfect but it is more practical to use one interface than having to use two for the same purpose). When all the pages concerned are made, they will be integrated into the current English version and deposited on PHP Classes. If you are registered on this site, you will be notified.</p>
<p>At this very moment, May 28, 2020, the modification of previous records of documents is operational on the French version. The english version will not be very long.</p>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
</td>
</tr>
</table>
<p> </p>
<p> </p>
</body>
</html>
|