PHP Classes

File: gestion/doc_files.php

Recommend this page to a friend!
  Classes of Pierre FAUQUE   OPDS PHP Ebook Publisher Class   gestion/doc_files.php   Download  
File: gestion/doc_files.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: Update the file (+ 1 image)
Date: 3 years ago
Size: 5,440 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_files.php (v0.1)
// Role: Documentation list of files
*/

require("init.php");
require(
"lib_lddocs.php");
$report = "&nbsp;";

?><!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>List of files</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>DOC: List of files</h1>
<pre>
   file role
------------------------------------------------------------------------------
add_auth.php ............ <span class="entity">Add an entity</span>: author
add_cat.php ............. <span class="entity">Add an entity</span>: category
add_doc.php ............. <span class="entity">Add an entity</span>: document
add_kw.php .............. <span class="entity">Add an entity</span>: keywords
add_scat.php ............ <span class="entity">Add an entity</span>: subcategory
add_type.php ............ <span class="entity">Add an entity</span>: type of document
doc_about.php ........... <span class="doc">Documentation</span>: About... page
doc_browsers.php ........ <span class="doc">Documentation</span>: Page showing how old browsers worked with XML
doc_cmd.jpg ............. <span class="image">Image</span>: Conceptual Model of Data (CMD)
doc_cmd.php ............. <span class="doc">Documentation</span>: Page showing the CMD
doc_ddic.php ............ <span class="doc">Documentation</span>: Data dictionnary
doc_files.php ........... <span class="doc">Documentation</span>: List of the application files (this page)
doc_help1.php ........... <span class="doc">Documentation</span>: Help - Principle
doc_help2.php ........... <span class="doc">Documentation</span>: Help - Tree
doc_help3.php ........... <span class="doc">Documentation</span>: Help - Fill the database
doc_help4.php ........... <span class="doc">Documentation</span>: Help - active or not
doc_help5.php ........... <span class="doc">Documentation</span>: Help - HOWTO create an ebook
doc_help6.php ........... <span class="doc">Documentation</span>: Help - Using it
doc_help7.php ........... <span class="doc">Documentation</span>: Help - Documentation, links
doc_license.php ......... <span class="doc">Documentation</span>: License - Text of the GNU Public License version 3
doc_screens.php ......... <span class="doc">Documentation</span>: Some screenshots from a smartphone using and OPDS catalog
doc_struct.php .......... <span class="doc">Documentation</span>: Structure of the database
doc_todo1.php ........... <span class="doc">Documentation</span>: To do list - To do list
doc_todo2.php ........... <span class="doc">Documentation</span>: To do list - CMD improvements
doc_todo3.php ........... <span class="doc">Documentation</span>: To do list - Records modification
functions.js ............ <span class="lib">Libraries</span>: Javascript functions
index.php ............... <span style="font-weight:bold">Index page</span>
init.php ................ <span class="lib">Libraries</span>: Init file (connection to the database, etc.) in each script
lib_lddoc.php ........... <span class="lib">Libraries</span>: Return an 'onchange' list of documents
menu_help.php ........... <span class="lib">Libraries</span>: Submenu file for Help
menu_todo.php ........... <span class="lib">Libraries</span>: Submenu file for To do list
menu.txt ................ <span class="lib">Libraries</span>: Menu file
opds.css ................ <span class="lib">Libraries</span>: External stylesheet (Cascading Style Sheets) for the application
rel_authdoc.php ......... <span class="rel">Add a relation</span>: Author writes a document
rel_dockw.php ........... <span class="rel">Add a relation</span>: Document has Keywords
rel_pubdoc.php .......... <span class="rel">Add a relation</span>: Publish a document in a given type
set_conf.php ............ <span class="conf">Configuration</span>: Set the configuation of the application
tool_vieweb.php ......... <span class="tool">Tools</span>: View the detail of an ebook
-----
                          <span class="image">Image</span>: into scripts (base64)
                            - ebook-reader Library (index.php)
                            - OPDS tree (doc_help2.php : Tree)
                            - EUPB into Winzip (doc_help5.php : HOWTO create an ebook)
                            - Add catalog in ebook-reader (doc_help6.php : Using it)
                            - 6 screenshots when using it (doc_screens.php)
                            - 2 screenshots showing old browsers (doc_browsers.php)
                            - Logo of the GNU Public License (doc_about.php)
                            - Logo of Twitter (doc_about.php)
                            - 2 images (parts of CMD) in MCD improvements (doc_todo2.php)
</pre>
<!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
</td>
</tr>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
</body>

</html>