changeset 136:aeebfedb5709

Add some copyright headers.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 22 Oct 2013 22:04:22 +0300
parents eecac02579c4
children 57de66a604c5
files admajax.php admin.inc.php admlogin.php admlogout.php attendees.inc.php index.php majax.php msession.inc.php print.php register.inc.php results.inc.php show.php showajax.php
diffstat 13 files changed, 57 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/admajax.php	Tue Oct 22 21:55:12 2013 +0300
+++ b/admajax.php	Tue Oct 22 22:04:22 2013 +0300
@@ -1,6 +1,8 @@
 <?
 //
-// AJAX request handler backend module
+// FAPWeb Simple Demoparty System
+// Party administration page AJAX backend module
+// (C) Copyright 2012-2013 Tecnic Software productions (TNSP)
 //
 $sessionType = "admin";
 require "mconfig.inc.php";
--- a/admin.inc.php	Tue Oct 22 21:55:12 2013 +0300
+++ b/admin.inc.php	Tue Oct 22 22:04:22 2013 +0300
@@ -1,4 +1,9 @@
 <?
+//
+// FAPWeb Simple Demoparty System
+// Party administration page frontend module
+// (C) Copyright 2012-2013 Tecnic Software productions (TNSP)
+//
 $sessionType = "admin";
 require "majax.php";
 
--- a/admlogin.php	Tue Oct 22 21:55:12 2013 +0300
+++ b/admlogin.php	Tue Oct 22 22:04:22 2013 +0300
@@ -1,4 +1,9 @@
 <?
+//
+// FAPWeb Simple Demoparty System
+// Administration interface session login handler
+// (C) Copyright 2012-2013 Tecnic Software productions (TNSP)
+//
 $sessionType = "admin";
 require "mconfig.inc.php";
 require "msite.inc.php";
--- a/admlogout.php	Tue Oct 22 21:55:12 2013 +0300
+++ b/admlogout.php	Tue Oct 22 22:04:22 2013 +0300
@@ -1,4 +1,9 @@
 <?
+//
+// FAPWeb Simple Demoparty System
+// Administration interface session logout
+// (C) Copyright 2012-2013 Tecnic Software productions (TNSP)
+//
 $sessionType = "admin";
 require "mconfig.inc.php";
 require "msite.inc.php";
--- a/attendees.inc.php	Tue Oct 22 21:55:12 2013 +0300
+++ b/attendees.inc.php	Tue Oct 22 22:04:22 2013 +0300
@@ -1,4 +1,9 @@
 <?
+//
+// FAPWeb Simple Demoparty System
+// Attendee list page
+// (C) Copyright 2012-2013 Tecnic Software productions (TNSP)
+//
 if (stCheckRegistrationAvailable())
 {
 ?>
--- a/index.php	Tue Oct 22 21:55:12 2013 +0300
+++ b/index.php	Tue Oct 22 22:04:22 2013 +0300
@@ -1,4 +1,9 @@
-<?php
+<?
+//
+// FAPWeb Simple Demoparty System
+// Main HTML page wrapper
+// (C) Copyright 2012-2013 Tecnic Software productions (TNSP)
+//
 require "mconfig.inc.php";
 require "msite.inc.php";
 require "mcommon.inc.php";
--- a/majax.php	Tue Oct 22 21:55:12 2013 +0300
+++ b/majax.php	Tue Oct 22 22:04:22 2013 +0300
@@ -1,4 +1,11 @@
 <?
+//
+// FAPWeb Simple Demoparty System
+// Common AJAX Javascript code module
+// (C) Copyright 2012-2013 Tecnic Software productions (TNSP)
+//
+
+
 function stCommonAJAX($backend, $failover, $script = FALSE)
 {
 if ($script)
--- a/msession.inc.php	Tue Oct 22 21:55:12 2013 +0300
+++ b/msession.inc.php	Tue Oct 22 22:04:22 2013 +0300
@@ -1,8 +1,8 @@
 <?
 //
-// FAPWEB - Demo Party Website System System
+// FAPWeb Simple Demoparty System
 // Session management and authentication
-// (C) Copyright 2012 Matti 'ccr' Hamalainen <ccr@tnsp.org>
+// (C) Copyright 2012-2013 Tecnic Software productions (TNSP)
 //
 
 function stDebug($msg)
--- a/print.php	Tue Oct 22 21:55:12 2013 +0300
+++ b/print.php	Tue Oct 22 22:04:22 2013 +0300
@@ -1,6 +1,8 @@
 <?
 //
-// Printing / hardcopy output helper module
+// FAPWeb Simple Demoparty System
+// Data printout / hardcopy output module
+// (C) Copyright 2012-2013 Tecnic Software productions (TNSP)
 //
 $sessionType = "admin";
 require "mconfig.inc.php";
--- a/register.inc.php	Tue Oct 22 21:55:12 2013 +0300
+++ b/register.inc.php	Tue Oct 22 22:04:22 2013 +0300
@@ -1,4 +1,9 @@
 <?
+//
+// FAPWeb Simple Demoparty System
+// Attendee registration page
+// (C) Copyright 2012-2013 Tecnic Software productions (TNSP)
+//
 $mode = stGetRequestItem("mode", "start");
 
 $botCheckIDs = "aBcdefghIjklmnopqrsTuvxyz0123456";
--- a/results.inc.php	Tue Oct 22 21:55:12 2013 +0300
+++ b/results.inc.php	Tue Oct 22 22:04:22 2013 +0300
@@ -1,4 +1,9 @@
 <?
+//
+// FAPWeb Simple Demoparty System
+// Competition results page
+// (C) Copyright 2012-2013 Tecnic Software productions (TNSP)
+//
 $useASCII = stGetSetting("showResultsASCII");
 $showResults = stGetSetting("showResults");
 $showAuthors = stGetSetting("showResAuthors");
--- a/show.php	Tue Oct 22 21:55:12 2013 +0300
+++ b/show.php	Tue Oct 22 22:04:22 2013 +0300
@@ -1,6 +1,8 @@
 <?
 //
-// Entry display / show helper module
+// FAPWeb Simple Demoparty System
+// Party information display system
+// (C) Copyright 2012-2013 Tecnic Software productions (TNSP)
 //
 require "mconfig.inc.php";
 require "msite.inc.php";
--- a/showajax.php	Tue Oct 22 21:55:12 2013 +0300
+++ b/showajax.php	Tue Oct 22 22:04:22 2013 +0300
@@ -1,6 +1,8 @@
 <?
 //
-// Party system / compoviewer AJAX request handler backend module
+// FAPWeb Simple Demoparty System
+// Party information display system AJAX backend module
+// (C) Copyright 2012-2013 Tecnic Software productions (TNSP)
 //
 require "mconfig.inc.php";
 require "msite.inc.php";