Skip to content

Commit

Permalink
more copyright notices updated
Browse files Browse the repository at this point in the history
  • Loading branch information
silvercircle committed Mar 21, 2015
1 parent f93b456 commit 409a65c
Show file tree
Hide file tree
Showing 27 changed files with 55 additions and 43 deletions.
2 changes: 1 addition & 1 deletion Sources/BoardIndex.php
Expand Up @@ -6,7 +6,7 @@
* This software is a derived product, based on:
*
* Simple Machines Forum (SMF)
* copyright: 2011 Simple Machines (http://www.simplemachines.org)
* copyright: 2015 Simple Machines (http://www.simplemachines.org)
* license: BSD, See included LICENSE.TXT for terms and conditions.
*
* @version 1.0pre
Expand Down
2 changes: 1 addition & 1 deletion Sources/Calendar.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
2 changes: 1 addition & 1 deletion Sources/CommonAPI.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
12 changes: 7 additions & 5 deletions Sources/Karma.php
Expand Up @@ -14,12 +14,14 @@
if (!defined('SMF'))
die('Hacking attempt...');

/* This file contains one humble function, which applauds or smites a user.
*/

/*
* Karma is basically dead in EoS Alpha. It has been replaced by the post rating system
* This file is here for historical reasons only, see below why.
*/

// What's this? I dunno, what are you talking about? Never seen this before, nope. No siree.
/**
* This is here for historical reasons and won't go away :)
*/
function BookOfUnknown()
{
global $context;
Expand Down
2 changes: 1 addition & 1 deletion Sources/Memberlist.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
8 changes: 7 additions & 1 deletion Sources/ModerationCenter.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down Expand Up @@ -2047,6 +2047,12 @@ function ModerationSettings()
);
}

/**
* handles everything related to topic bans. Ban, unban and showing the list
* of active topic bans in the administration center.
*
* todo: improve UI, test paged display with lots of bans.
*/
function TopicBans()
{
global $context, $board_info, $topic, $txt, $memberContext, $user_info;
Expand Down
2 changes: 1 addition & 1 deletion Sources/Modlog.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
2 changes: 1 addition & 1 deletion Sources/PersonalMessage.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
2 changes: 1 addition & 1 deletion Sources/Profile-Modify.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
2 changes: 1 addition & 1 deletion Sources/Profile.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
2 changes: 1 addition & 1 deletion Sources/Register.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
24 changes: 17 additions & 7 deletions Sources/Xml.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand All @@ -14,10 +14,8 @@
if (!defined('SMF'))
die('Hacking attempt...');

/* This file maintains all XML-based interaction (mainly XMLhttp).
void GetJumpTo()
/**
* This file maintains all XML-based interaction (mainly XMLhttp).
*/

function XMLhttpMain()
Expand Down Expand Up @@ -98,7 +96,7 @@ function ListMessageIcons()
obExit(false);
$context['sub_template'] = 'message_icons';
}
/*
/**
* output the member card
* todo: better error response
*/
Expand Down Expand Up @@ -159,7 +157,13 @@ function HandleLikeRequest()
else
AjaxErrorMsg($txt['post_ratings_disabled']);
}
// todo: check permissions!!

/**
* Retrieve a preview (peek) for a topic in message index. Preview
* contains the first and last post of a thread.
*
* todo: respect permissions!!
*/
function TopicPeek()
{
global $context;
Expand Down Expand Up @@ -232,6 +236,9 @@ function TopicPeek()
}
}

/**
* Dispatch AJAX requests of the thread tagging system (add / remove tag)
*/
function TagsActionDispatcher()
{
global $sourcedir;
Expand Down Expand Up @@ -299,6 +306,9 @@ function InlinePrefixActions()
}
}

/**
* handles the Ajax request to collapse / expand a category
*/
function AjaxCollapseCategory()
{
global $sourcedir;
Expand Down
2 changes: 1 addition & 1 deletion Sources/lib/Subs-Activities.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
2 changes: 1 addition & 1 deletion Sources/lib/Subs-Auth.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
2 changes: 1 addition & 1 deletion Sources/lib/Subs-BoardIndex.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
2 changes: 1 addition & 1 deletion Sources/lib/Subs-Boards.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
2 changes: 1 addition & 1 deletion Sources/lib/Subs-Editor.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
4 changes: 2 additions & 2 deletions Sources/lib/Subs-Membergroups.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down Expand Up @@ -768,4 +768,4 @@ function regenerateColorStyle()
mysql_free_result($result);
if($_s != '')
updateSettings(array('groupColorsInline' => '<style>' . $_s . '</style>'), false);
}
}
2 changes: 1 addition & 1 deletion Sources/lib/Subs-Members.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
2 changes: 1 addition & 1 deletion Sources/lib/Subs-MembersOnline.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
2 changes: 0 additions & 2 deletions Sources/lib/Subs-Menu.php
Expand Up @@ -269,5 +269,3 @@ function destroyMenu($menu_id = 'last')

unset($context[$menu_name]);
}

?>
4 changes: 1 addition & 3 deletions Sources/lib/Subs-Package.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down Expand Up @@ -2992,5 +2992,3 @@ function smf_crc32($number)
return $crc;
}
}

?>
2 changes: 1 addition & 1 deletion Sources/lib/Subs-Post.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
2 changes: 1 addition & 1 deletion Sources/lib/Subs-Ratings.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
4 changes: 1 addition & 3 deletions Sources/lib/Subs-Sound.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down Expand Up @@ -110,5 +110,3 @@ function createWaveFile($word)
// Noting more to add.
die();
}

?>
2 changes: 1 addition & 1 deletion Sources/lib/Subs.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down
2 changes: 1 addition & 1 deletion index.php
@@ -1,7 +1,7 @@
<?php
/**
* @name EosAlpha BBS
* @copyright 2011 Alex Vie silvercircle(AT)gmail(DOT)com
* @copyright 2015 Alex Vie silvercircle(AT)gmail(DOT)com
*
* This software is a derived product, based on:
*
Expand Down

0 comments on commit 409a65c

Please sign in to comment.