PHP Classes

File: gestion/doc_todo1.php

Recommend this page to a friend!
  Classes of Pierre FAUQUE   OPDS PHP Ebook Publisher Class   gestion/doc_todo1.php   Download  
File: gestion/doc_todo1.php
Role: Application script
Content type: text/plain
Description: Script of application
Class: OPDS PHP Ebook Publisher Class
Publish and distribute ebooks for download
Author: By
Last change:
Date: 3 years ago
Size: 3,925 bytes
 

Contents

Class file image Download
<?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_todo1.php (v0.1)
// Role: Documentation, to do list
*/

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: To do list</h1>
<div style="width:800px">
<div class="smen"><?php require("menu_todo.php"); ?></div>
<pre>
                                add exc list JS chars dup tab title imp mod obs
----------------------------------------------------------------------------------------------------------------------------------
CLASS
 - OPDS Class.................. N N N N N N N X ? N maybe in a future version

ADD
 - Documents................... X X X X X N X X ? X * <a href="doc_todo3.php">in progress...</a>
 - Authors..................... X X X X X N X X ? .
 - Keywords.................... X . X X X N X X ? .
 - Category.................... X X X X X N X X ? .
 - Subcategory................. X X X X X N X X ? .
 - Type........................ X X X X X N X X ? .

RELATIONS
 - Author -> Document.......... X X X X X X X X ? .
 - Document -> Keyword......... X . X X X . X X ? .
 - Publish document............ X X X X X X X X . . <a href="doc_todo2.php">maybe next version</a>

CONFIG
 - Set config.................. X . X X X N X X ? N

DOCUMENTATION
 - Write help.................. X N N N N N N X ? N complete with docs and links
 - CMD......................... N N N N N N N X . N <a href="doc_todo2.php">maybe next version</a>
 - Data dictionnary............ N N N N N N N X . N <a href="doc_todo2.php">maybe next version</a>
 - Tables structures........... N N N N N N N X . N <a href="doc_todo2.php">maybe next version</a>
 - List of files............... N N N N N N N X ? N
 - Screenshots................. X N N N N N N X ? N
 - License..................... X N N N N N N X N N
 - About page.................. X N N N N N N X N N
 
--------
 - To do list.................. N N N N N N N X ? N

Note :
  N : not to do
  X : done
  ? : I don't know yet
  . : not yet done

 add : add a record in the database (or written for help)
 Exc : try + catch (exceptions)
 list : show a list of records already done
 JS : javascript for input verification
 chars : characters UTF-8
 doub : duplicates records
 tab : tabindex set
 title : title of page
 imp : Improvements
 mod * : Modification of previous records. In progress in the French version. Will be uploaded when done for English version
 obs : what to take care

</pre>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
</td>
</tr>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
</body>

</html>