Updated gitignore
This commit is contained in:
parent
098b03287d
commit
40a1d62466
3 changed files with 14 additions and 6 deletions
7
.gitignore
vendored
7
.gitignore
vendored
|
@ -1,14 +1,9 @@
|
||||||
/public/_phpmyadm
|
|
||||||
/public/_satori
|
|
||||||
/public/midis
|
|
||||||
/public/topmostfriend/*.exe
|
|
||||||
/public/volatile
|
/public/volatile
|
||||||
/public/whois/vendor
|
/public/whois/vendor
|
||||||
/public/np.php
|
|
||||||
/public/nothing.php
|
|
||||||
/public/signature/cover.png
|
/public/signature/cover.png
|
||||||
/public/signature/cover_url.txt
|
/public/signature/cover_url.txt
|
||||||
/public/signature/np.json
|
/public/signature/np.json
|
||||||
/public/signature/signature.png
|
/public/signature/signature.png
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
[Dd]esktop.ini
|
||||||
/.debug
|
/.debug
|
||||||
|
|
10
public/nothing.php
Normal file
10
public/nothing.php
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?php
|
||||||
|
$type = !empty($_GET['t']) && is_string($_GET['t']) ? trim((string)$_GET['t']) : 'text/plain';
|
||||||
|
|
||||||
|
header("Content-Type: {$type}");
|
||||||
|
|
||||||
|
switch($type) {
|
||||||
|
case 'application/json':
|
||||||
|
echo '[]';
|
||||||
|
break;
|
||||||
|
}
|
3
public/np.php
Normal file
3
public/np.php
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
<?php
|
||||||
|
chdir('/www/now.flash.moe/public');
|
||||||
|
require_once 'get-xml.php';
|
Loading…
Reference in a new issue