Skip to content

Commit

Permalink
Rename nntmux namespace and folder to Blacklight
Browse files Browse the repository at this point in the history
  • Loading branch information
DariusIII committed Feb 14, 2018
1 parent dafbf4e commit 314e601
Show file tree
Hide file tree
Showing 272 changed files with 1,040 additions and 696 deletions.
10 changes: 5 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ test.php
/.idea/
/vendor/*
/app/resources/tmp/*
/nntmux/config/settings.php
/nntmux/config/ircscraper_settings.php
/nntmux/config/ircscraper.php
/nntmux/config/opensssl.php
/Blacklight/config/settings.php
/Blacklight/config/ircscraper_settings.php
/Blacklight/config/ircscraper.php
/Blacklight/config/opensssl.php

/libraries/*
/nbproject/
/nbproject/private/
/resources/covers/*
/resources/nzb/*
/resources/tmp/*
/templates_c/*
/resources/smarty/templates_c/*
/public/themes/shared/assets
6 changes: 3 additions & 3 deletions nntmux/AniDB.php → Blacklight/AniDB.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php

namespace nntmux;
namespace Blacklight;

use nntmux\db\DB;
use Blacklight\db\DB;
use App\Models\Category;

class AniDB
{
/**
* @var \nntmux\db\DB
* @var \Blacklight\db\DB
*/
public $pdo;

Expand Down
8 changes: 4 additions & 4 deletions nntmux/Backfill.php → Blacklight/Backfill.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php

namespace nntmux;
namespace Blacklight;

use nntmux\db\DB;
use Blacklight\db\DB;
use App\Models\Group;
use App\Models\Settings;

class Backfill
{
/**
* @var \nntmux\db\DB
* @var \Blacklight\db\DB
*/
public $pdo;

Expand All @@ -19,7 +19,7 @@ class Backfill
protected $_binaries;

/**
* @var \nntmux\NNTP
* @var \Blacklight\NNTP
*/
protected $_nntp;
/**
Expand Down
14 changes: 7 additions & 7 deletions nntmux/Binaries.php → Blacklight/Binaries.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
<?php

namespace nntmux;
namespace Blacklight;

use nntmux\db\DB;
use Blacklight\db\DB;
use App\Models\Group;
use App\Models\Settings;
use Illuminate\Support\Carbon;
use App\Models\BinaryBlacklist;
use App\Models\MultigroupPoster;
use Illuminate\Support\Facades\Cache;
use nntmux\processing\ProcessReleasesMultiGroup;
use Blacklight\processing\ProcessReleasesMultiGroup;

/**
* Class Binaries.
Expand Down Expand Up @@ -42,17 +42,17 @@ class Binaries
public $messageBuffer;

/**
* @var \nntmux\ColorCLI
* @var \Blacklight\ColorCLI
*/
protected $_colorCLI;

/**
* @var \nntmux\CollectionsCleaning
* @var \Blacklight\CollectionsCleaning
*/
protected $_collectionsCleaning;

/**
* @var \nntmux\NNTP
* @var \Blacklight\NNTP
*/
protected $_nntp;

Expand All @@ -71,7 +71,7 @@ class Binaries
protected $_partRepair;

/**
* @var \nntmux\db\DB
* @var \Blacklight\db\DB
*/
protected $_pdo;

Expand Down
6 changes: 3 additions & 3 deletions nntmux/Books.php → Blacklight/Books.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace nntmux;
namespace Blacklight;

use nntmux\db\DB;
use Blacklight\db\DB;
use ApaiIO\ApaiIO;
use GuzzleHttp\Client;
use App\Models\Release;
Expand All @@ -19,7 +19,7 @@
class Books
{
/**
* @var \nntmux\db\DB
* @var \Blacklight\db\DB
*/
public $pdo;

Expand Down
2 changes: 1 addition & 1 deletion nntmux/Captcha.php → Blacklight/Captcha.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace nntmux;
namespace Blacklight;

use app\models\Settings;
use ReCaptcha\ReCaptcha;
Expand Down
4 changes: 2 additions & 2 deletions nntmux/Categorize.php → Blacklight/Categorize.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace nntmux;
namespace Blacklight;

use App\Models\Group;
use App\Models\Category;
Expand Down Expand Up @@ -42,7 +42,7 @@ class Categorize extends Category
public $groupid;

/**
* @var \nntmux\Regexes
* @var \Blacklight\Regexes
*/
public $regexes;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace nntmux;
namespace Blacklight;

use nntmux\db\DB;
use Blacklight\db\DB;

/**
* Cleans names for collections/imports/namefixer.
Expand Down Expand Up @@ -74,12 +74,12 @@ class CollectionsCleaning
public $subject = '';

/**
* @var \nntmux\db\DB
* @var \Blacklight\db\DB
*/
public $pdo;

/**
* @var \nntmux\Regexes
* @var \Blacklight\Regexes
*/
protected $_regexes;

Expand Down
2 changes: 1 addition & 1 deletion nntmux/ColorCLI.php → Blacklight/ColorCLI.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace nntmux;
namespace Blacklight;

class ColorCLI
{
Expand Down
6 changes: 3 additions & 3 deletions nntmux/Console.php → Blacklight/Console.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace nntmux;
namespace Blacklight;

use nntmux\db\DB;
use Blacklight\db\DB;
use ApaiIO\ApaiIO;
use GuzzleHttp\Client;
use App\Models\Release;
Expand All @@ -25,7 +25,7 @@ class Console
public const CONS_NTFND = -2;

/**
* @var \nntmux\db\DB
* @var \Blacklight\db\DB
*/
public $pdo;

Expand Down
4 changes: 2 additions & 2 deletions nntmux/ConsoleTools.php → Blacklight/ConsoleTools.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php

namespace nntmux;
namespace Blacklight;

/**
* Class ConsoleTools.
*/
class ConsoleTools
{
/**
* @var \nntmux\ColorCLI
* @var \Blacklight\ColorCLI
*/
public $cli;

Expand Down
6 changes: 3 additions & 3 deletions nntmux/Contents.php → Blacklight/Contents.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace nntmux;
namespace Blacklight;

use nntmux\db\DB;
use Blacklight\db\DB;
use App\Models\User;
use App\Models\Content;

Expand All @@ -13,7 +13,7 @@ class Contents
public const TYPEINDEX = 3;

/**
* @var \nntmux\db\DB
* @var \Blacklight\db\DB
*/
public $pdo;

Expand Down
2 changes: 1 addition & 1 deletion nntmux/CouchPotato.php → Blacklight/CouchPotato.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* @copyright 2016 newznab-tmux
*/

namespace nntmux;
namespace Blacklight;

use GuzzleHttp\Client;

Expand Down
6 changes: 3 additions & 3 deletions nntmux/Games.php → Blacklight/Games.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace nntmux;
namespace Blacklight;

use nntmux\db\DB;
use Blacklight\db\DB;
use App\Models\Genre;
use App\Models\Category;
use App\Models\Settings;
Expand Down Expand Up @@ -47,7 +47,7 @@ class Games
public $maxHitRequest;

/**
* @var \nntmux\db\DB
* @var \Blacklight\db\DB
*/
public $pdo;

Expand Down
6 changes: 3 additions & 3 deletions nntmux/Genres.php → Blacklight/Genres.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace nntmux;
namespace Blacklight;

use nntmux\db\DB;
use Blacklight\db\DB;
use App\Models\Genre;
use App\Models\Category;
use Illuminate\Support\Carbon;
Expand All @@ -18,7 +18,7 @@ class Genres
public const STATUS_DISABLED = 1;

/**
* @var \nntmux\db\DB;
* @var \Blacklight\db\DB;
*/
public $pdo;

Expand Down
4 changes: 2 additions & 2 deletions nntmux/IRCClient.php → Blacklight/IRCClient.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace nntmux;
namespace Blacklight;

use nntmux\utility\Utility;
use Blacklight\utility\Utility;

/**
* Basic IRC client for fetching IRCScraper.
Expand Down
6 changes: 3 additions & 3 deletions nntmux/IRCScraper.php → Blacklight/IRCScraper.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace nntmux;
namespace Blacklight;

use nntmux\db\DB;
use Blacklight\db\DB;
use App\Models\Predb;

/**
Expand Down Expand Up @@ -47,7 +47,7 @@ class IRCScraper extends IRCClient
protected $_oldPre;

/**
* @var \nntmux\db\DB
* @var \Blacklight\db\DB
*/
protected $_pdo;

Expand Down
12 changes: 6 additions & 6 deletions nntmux/MiscSorter.php → Blacklight/MiscSorter.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php

namespace nntmux;
namespace Blacklight;

use nntmux\db\DB;
use Blacklight\db\DB;
use ApaiIO\ApaiIO;
use App\Models\Settings;
use ApaiIO\Operations\Lookup;
Expand All @@ -23,17 +23,17 @@ class MiscSorter
private $echooutput;

/**
* @var \nntmux\db\DB
* @var \Blacklight\db\DB
*/
private $pdo;

/**
* @var \nntmux\Movie
* @var \Blacklight\Movie
*/
private $movie;

/**
* @var \nntmux\Music
* @var \Blacklight\Music
*/
private $music;

Expand All @@ -53,7 +53,7 @@ class MiscSorter
public $asstag;

/**
* @var \nntmux\Books
* @var \Blacklight\Books
*/
private $book;

Expand Down
Loading

0 comments on commit 314e601

Please sign in to comment.