From 033b8176272609f4e39fab59841f7f1a9567385e Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Mon, 7 Sep 2020 14:13:56 +0000 Subject: [PATCH] Add license BSD on each file header git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@6096 bf3deb0d-5f1a-0410-827f-c0cc1f45334c --- auth.php | 1 + authentication.php | 1 + authhtpasswd.php | 1 + authimap.php | 1 + authjwt.php | 1 + authldap.php | 1 + authorization.php | 1 + authorizationdb.php | 1 + authparams.php | 1 + authsession.php | 1 + authshibboleth.php | 1 + authsql.php | 1 + authsympa.php | 1 + authzgroups.php | 1 + authzgroupsoo.php | 1 + backtrace.php | 1 + cachefile.php | 1 + cacheoutput.php | 1 + certificationauthority.php | 1 + cli.php | 1 + color.php | 1 + config.php | 1 + console.php | 1 + convert.php | 1 + csrf.php | 1 + daemon.php | 1 + dbjson.php | 1 + dblayer.php | 1 + dblayerauthzgroups.php | 1 + dblayeroo.php | 1 + encrypt.php | 1 + file.php | 1 + fork.php | 1 + form.php | 1 + fts.php | 1 + getopts.php | 1 + graph.php | 1 + http.php | 1 + httpclient.php | 1 + imap.php | 1 + inifile.php | 1 + ipaddresses.php | 1 + jwt.php | 1 + language.php | 1 + lockfile.php | 1 + logger.php | 1 + macaddresses.php | 1 + mail.php | 1 + markdown.php | 1 + module.php | 1 + output.php | 1 + outputcsv.php | 1 + outputdl.php | 1 + outputhtml.php | 1 + outputjson.php | 1 + outputrest.php | 1 + outputtxt.php | 1 + outputxml.php | 1 + password.php | 1 + queue.php | 1 + queuefile.php | 1 + ratelimit.php | 1 + ratelimitfile.php | 1 + renderer.php | 1 + rest.php | 1 + robotstxt.php | 1 + route.php | 1 + routeSQL.php | 1 + rss.php | 1 + sitemap.php | 1 + smtp.php | 1 + spfcheck.php | 1 + sse.php | 1 + tcpclient.php | 1 + tcpserver.php | 1 + users.php | 1 + userssql.php | 1 + uuid.php | 1 + verify.php | 1 + version.php | 1 + xdiff.php | 1 + xmppclient.php | 1 + 82 files changed, 82 insertions(+) diff --git a/auth.php b/auth.php index f7848f6..9e05d19 100644 --- a/auth.php +++ b/auth.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** User authentication (abstract class) */ diff --git a/authentication.php b/authentication.php index 219e098..49e6447 100644 --- a/authentication.php +++ b/authentication.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/auth.php"); diff --git a/authhtpasswd.php b/authhtpasswd.php index a1c624e..c6d7929 100644 --- a/authhtpasswd.php +++ b/authhtpasswd.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/auth.php"); diff --git a/authimap.php b/authimap.php index 367c151..4f92de2 100644 --- a/authimap.php +++ b/authimap.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/auth.php"); diff --git a/authjwt.php b/authjwt.php index cbcbd1a..b476e43 100644 --- a/authjwt.php +++ b/authjwt.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/jwt.php"); diff --git a/authldap.php b/authldap.php index 51ac2eb..c18483a 100644 --- a/authldap.php +++ b/authldap.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/auth.php"); diff --git a/authorization.php b/authorization.php index 0a00a49..f299b34 100644 --- a/authorization.php +++ b/authorization.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** All the needed functions to authorize or deny access to an authenticated diff --git a/authorizationdb.php b/authorizationdb.php index febee85..476853f 100644 --- a/authorizationdb.php +++ b/authorizationdb.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ error_reporting (E_ALL); diff --git a/authparams.php b/authparams.php index 26fb08a..4f49328 100644 --- a/authparams.php +++ b/authparams.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Takes the email and the password of the user */ diff --git a/authsession.php b/authsession.php index a07e814..0075a89 100644 --- a/authsession.php +++ b/authsession.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** User authentication against SESSION */ diff --git a/authshibboleth.php b/authshibboleth.php index e892352..8b6618d 100644 --- a/authshibboleth.php +++ b/authshibboleth.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/auth.php"); diff --git a/authsql.php b/authsql.php index 37ae51a..e9f803a 100644 --- a/authsql.php +++ b/authsql.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/dblayer.php"); diff --git a/authsympa.php b/authsympa.php index dc23fea..190aa56 100644 --- a/authsympa.php +++ b/authsympa.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/auth.php"); diff --git a/authzgroups.php b/authzgroups.php index 7b41925..5f2113f 100644 --- a/authzgroups.php +++ b/authzgroups.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/dblayer.php"); diff --git a/authzgroupsoo.php b/authzgroupsoo.php index 04450a4..c4922e7 100644 --- a/authzgroupsoo.php +++ b/authzgroupsoo.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/dblayeroo.php"); diff --git a/backtrace.php b/backtrace.php index 34555e0..dc3afc4 100644 --- a/backtrace.php +++ b/backtrace.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Display the backtrace in HTML with clicks to display the content diff --git a/cachefile.php b/cachefile.php index cfcd349..0e50e5f 100644 --- a/cachefile.php +++ b/cachefile.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** A cache manager in file diff --git a/cacheoutput.php b/cacheoutput.php index 3fae3ca..1271a07 100644 --- a/cacheoutput.php +++ b/cacheoutput.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** This class permit to cache the ouptut of a code. If the cache is already diff --git a/certificationauthority.php b/certificationauthority.php index b9ea053..ad798cf 100644 --- a/certificationauthority.php +++ b/certificationauthority.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** An certificate authority diff --git a/cli.php b/cli.php index d8be54e..c914f78 100644 --- a/cli.php +++ b/cli.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Allow to interract with controllers and models from the CLI */ diff --git a/color.php b/color.php index b68bec4..6496fc9 100644 --- a/color.php +++ b/color.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Convert the name of colors to RGB diff --git a/config.php b/config.php index 3f8243b..4eb2f14 100644 --- a/config.php +++ b/config.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Manage the configurations of the module done by administrator in a config diff --git a/console.php b/console.php index 930c595..3cc4c81 100644 --- a/console.php +++ b/console.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Allow to manage a linux Console to have a minimal but working text interface diff --git a/convert.php b/convert.php index d75dac0..ced802e 100644 --- a/convert.php +++ b/convert.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Convert a format to another one diff --git a/csrf.php b/csrf.php index f19de8f..1661615 100644 --- a/csrf.php +++ b/csrf.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** CSRF protection diff --git a/daemon.php b/daemon.php index 3f4497e..87fe5fd 100644 --- a/daemon.php +++ b/daemon.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/fork.php"); diff --git a/dbjson.php b/dbjson.php index 5bb44e6..85c9bb3 100644 --- a/dbjson.php +++ b/dbjson.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** DBJSON : a NoSQL DB in JSON diff --git a/dblayer.php b/dblayer.php index eff720d..d0d379d 100644 --- a/dblayer.php +++ b/dblayer.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ // dblayer.php diff --git a/dblayerauthzgroups.php b/dblayerauthzgroups.php index 46702c0..772182b 100644 --- a/dblayerauthzgroups.php +++ b/dblayerauthzgroups.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/dblayer.php"); diff --git a/dblayeroo.php b/dblayeroo.php index 915d6ef..e2304e9 100644 --- a/dblayeroo.php +++ b/dblayeroo.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Permit abstraction on the differents SQL databases available diff --git a/encrypt.php b/encrypt.php index fe51bb2..7c22fb6 100644 --- a/encrypt.php +++ b/encrypt.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Allow to encrypt/decrypt data diff --git a/file.php b/file.php index 1542ae1..5778d8a 100644 --- a/file.php +++ b/file.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** The file method allow to manage files like PHP with a working chroot on all diff --git a/fork.php b/fork.php index cd1715d..9625adc 100644 --- a/fork.php +++ b/fork.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Manage the fork of children in Posix mode diff --git a/form.php b/form.php index 2d3c951..052cd77 100644 --- a/form.php +++ b/form.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/csrf.php"); diff --git a/fts.php b/fts.php index ab2735c..ffa8e9a 100644 --- a/fts.php +++ b/fts.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** The Full Text Search diff --git a/getopts.php b/getopts.php index b6230ab..5366261 100644 --- a/getopts.php +++ b/getopts.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/verify.php"); diff --git a/graph.php b/graph.php index 609e712..5714856 100644 --- a/graph.php +++ b/graph.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/color.php"); diff --git a/http.php b/http.php index b1b5253..193cdbd 100644 --- a/http.php +++ b/http.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** HTTP Helper : understand the best choices provided by browser, the HTTP diff --git a/httpclient.php b/httpclient.php index b1a215e..2e94f23 100644 --- a/httpclient.php +++ b/httpclient.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/tcpclient.php"); diff --git a/imap.php b/imap.php index 647c3f8..b269de7 100644 --- a/imap.php +++ b/imap.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** IMAP connection abstraction diff --git a/inifile.php b/inifile.php index e46072c..fc439af 100644 --- a/inifile.php +++ b/inifile.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Manage .ini files like in php.ini diff --git a/ipaddresses.php b/ipaddresses.php index 05a8a06..54f7e5d 100644 --- a/ipaddresses.php +++ b/ipaddresses.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Manage the IP addresses conversions */ diff --git a/jwt.php b/jwt.php index 33fdd3d..6b9f784 100644 --- a/jwt.php +++ b/jwt.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/encrypt.php"); diff --git a/language.php b/language.php index ce63ec0..383b65b 100644 --- a/language.php +++ b/language.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Language class : change the messages diff --git a/lockfile.php b/lockfile.php index 51cfa80..3bbfc46 100644 --- a/lockfile.php +++ b/lockfile.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** The lock management of files diff --git a/logger.php b/logger.php index 94e1f39..97c9e7c 100644 --- a/logger.php +++ b/logger.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** The logger class permit to log the information from the soft diff --git a/macaddresses.php b/macaddresses.php index fa5c80e..ee2fea2 100644 --- a/macaddresses.php +++ b/macaddresses.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Manage the MAC addresses diff --git a/mail.php b/mail.php index 1ee505c..d56e7eb 100644 --- a/mail.php +++ b/mail.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** The class to create a complete email. Can read an email from a content diff --git a/markdown.php b/markdown.php index cf342dc..839d42f 100644 --- a/markdown.php +++ b/markdown.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Convert the Markdown text to html format diff --git a/module.php b/module.php index 2127cd3..12a5ae4 100644 --- a/module.php +++ b/module.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Module management diff --git a/output.php b/output.php index c55f6f1..978701a 100644 --- a/output.php +++ b/output.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Class used to display data diff --git a/outputcsv.php b/outputcsv.php index c91ef69..c7962f3 100644 --- a/outputcsv.php +++ b/outputcsv.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/output.php"); diff --git a/outputdl.php b/outputdl.php index a445981..e5a4d00 100644 --- a/outputdl.php +++ b/outputdl.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** This class allow a program to download a specific file from the filesystem, diff --git a/outputhtml.php b/outputhtml.php index 7083db5..8b9ad4a 100644 --- a/outputhtml.php +++ b/outputhtml.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/output.php"); diff --git a/outputjson.php b/outputjson.php index bddb938..db55c93 100644 --- a/outputjson.php +++ b/outputjson.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/output.php"); diff --git a/outputrest.php b/outputrest.php index b12f116..f10ea52 100644 --- a/outputrest.php +++ b/outputrest.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/output.php"); diff --git a/outputtxt.php b/outputtxt.php index 9f2edc2..b835ae3 100644 --- a/outputtxt.php +++ b/outputtxt.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/output.php"); diff --git a/outputxml.php b/outputxml.php index 36d8fdb..188573d 100644 --- a/outputxml.php +++ b/outputxml.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/output.php"); diff --git a/password.php b/password.php index d1aa508..3b859da 100644 --- a/password.php +++ b/password.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** A class to manage the password hashing, password generation diff --git a/queue.php b/queue.php index 8ad0667..e859a1c 100644 --- a/queue.php +++ b/queue.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Manage a queue in multiple storages diff --git a/queuefile.php b/queuefile.php index 13406b6..b687677 100644 --- a/queuefile.php +++ b/queuefile.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/queue.php"); diff --git a/ratelimit.php b/ratelimit.php index f1772aa..2911aa9 100644 --- a/ratelimit.php +++ b/ratelimit.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** The rate limit abstract class diff --git a/ratelimitfile.php b/ratelimitfile.php index 5d1edf4..27165d3 100644 --- a/ratelimitfile.php +++ b/ratelimitfile.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/lockfile.php"); diff --git a/renderer.php b/renderer.php index 1b7a189..a9f9ae2 100644 --- a/renderer.php +++ b/renderer.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Display the data in HTML with a FLASH method to display the errors diff --git a/rest.php b/rest.php index 70f0490..46ee702 100644 --- a/rest.php +++ b/rest.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/http.php"); diff --git a/robotstxt.php b/robotstxt.php index b1dcfcf..7a789a1 100644 --- a/robotstxt.php +++ b/robotstxt.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** This class analyze the provided robots.txt file content and allow to diff --git a/route.php b/route.php index fd8d688..f81ca45 100644 --- a/route.php +++ b/route.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/http.php"); diff --git a/routeSQL.php b/routeSQL.php index 9752b83..d4282d0 100644 --- a/routeSQL.php +++ b/routeSQL.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/route.php"); diff --git a/rss.php b/rss.php index da88441..fc11ad7 100644 --- a/rss.php +++ b/rss.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/verify.php"); diff --git a/sitemap.php b/sitemap.php index 6776622..dcdaaa5 100644 --- a/sitemap.php +++ b/sitemap.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** This class allow to read the sitemaps files available in websites, and give diff --git a/smtp.php b/smtp.php index aecc467..955961a 100644 --- a/smtp.php +++ b/smtp.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Allow to send mails by smtp diff --git a/spfcheck.php b/spfcheck.php index 89e7bb2..932e91f 100644 --- a/spfcheck.php +++ b/spfcheck.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require ("domframework/ipaddresses.php"); diff --git a/sse.php b/sse.php index 1981e36..74b095f 100644 --- a/sse.php +++ b/sse.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** This class allow to manage Server-Sent Events diff --git a/tcpclient.php b/tcpclient.php index 2d53e14..130a9e9 100644 --- a/tcpclient.php +++ b/tcpclient.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** TCP Client diff --git a/tcpserver.php b/tcpserver.php index 5707c1e..1d333ee 100644 --- a/tcpserver.php +++ b/tcpserver.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** This class allow to start a TCP server and call a function each time a diff --git a/users.php b/users.php index e27cca4..4ac7224 100644 --- a/users.php +++ b/users.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** The abstraction class of the users diff --git a/userssql.php b/userssql.php index cc26345..32ec9ce 100644 --- a/userssql.php +++ b/userssql.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/dblayer.php"); diff --git a/uuid.php b/uuid.php index c2f5531..07754e4 100644 --- a/uuid.php +++ b/uuid.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Generate a UUID v4 diff --git a/verify.php b/verify.php index e8ac75c..8fe49e6 100644 --- a/verify.php +++ b/verify.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Permit to check the validity of fields diff --git a/version.php b/version.php index 0144c03..fcb9256 100644 --- a/version.php +++ b/version.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** This is the version of DomFramework. diff --git a/xdiff.php b/xdiff.php index 1d59e56..71d0dd9 100644 --- a/xdiff.php +++ b/xdiff.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ /** Create a diff from two strings, array or files diff --git a/xmppclient.php b/xmppclient.php index fbc9f30..3a12a3c 100644 --- a/xmppclient.php +++ b/xmppclient.php @@ -2,6 +2,7 @@ /** DomFramework * @package domframework * @author Dominique Fournier + * @license BSD */ require_once ("domframework/tcpclient.php");