├── VERSION ├── .gitattributes ├── .gitignore ├── header.php ├── foot.php ├── functions.php ├── config.php.dist ├── confirm.php ├── head.php ├── README.md ├── edit.php ├── Events ├── PublicSuffixLoad.ps1 ├── EventHandlers.vbs ├── pURIBL-Offline.ps1 └── pURIBLtestScript.vbs ├── login.php ├── index.php ├── domains.php └── stylesheet.css /VERSION: -------------------------------------------------------------------------------- 1 | 7 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore files 2 | /config.php 3 | /Events/test* 4 | 5 | # Ignoring directories 6 | # Both the directory itself and its contents will be ignored. 7 | test/ 8 | ScriptCreatedFiles/ 9 | -------------------------------------------------------------------------------- /header.php: -------------------------------------------------------------------------------- 1 |
11 | -------------------------------------------------------------------------------- /foot.php: -------------------------------------------------------------------------------- 1 | 2 |