├── .github ├── flake.lock ├── flake.nix └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.markdown ├── LICENSE ├── README.markdown ├── bin ├── phpcb └── phpcb.bat ├── box.json ├── composer.json ├── package.xml ├── phpcs.xml.dist ├── phpstan.neon ├── phpstan_baseline.neon ├── phpunit.xml.dist ├── src └── PHPCodeBrowser │ ├── AbstractPlugin.php │ ├── Application.php │ ├── CLIController.php │ ├── Command │ └── RunCommand.php │ ├── File.php │ ├── Helper │ └── IOHelper.php │ ├── Issue.php │ ├── IssueXML.php │ ├── Plugins │ ├── ErrorCPD.php │ ├── ErrorCRAP.php │ ├── ErrorCheckstyle.php │ ├── ErrorCoverage.php │ ├── ErrorPMD.php │ └── ErrorPadawan.php │ ├── SourceHandler.php │ ├── Tests │ ├── AbstractTestCase.php │ ├── ApplicationTest.php │ ├── CLIControllerTest.php │ ├── FileTest.php │ ├── Fixtures │ │ ├── Bad.php │ │ └── Good.php │ ├── Helper │ │ └── IOHelperTest.php │ ├── IssueTest.php │ ├── Plugins │ │ ├── ErrorCPDTest.php │ │ ├── ErrorCRAPTest.php │ │ ├── ErrorCheckstyleTest.php │ │ ├── ErrorCoverageTest.php │ │ └── ErrorPMDTest.php │ ├── SourceHandlerTest.php │ ├── View │ │ └── ViewReviewTest.php │ └── testData │ │ └── logs │ │ └── basic.xml │ └── View │ ├── ViewAbstract.php │ └── ViewReview.php └── templates ├── css ├── cruisecontrol.css ├── global.css ├── review.css └── tree.css ├── img ├── background.gif ├── base.gif ├── cd.gif ├── empty.gif ├── folder.gif ├── folderopen.gif ├── globe.gif ├── imgfolder.gif ├── join.gif ├── joinbottom.gif ├── line.gif ├── minus.gif ├── minusbottom.gif ├── musicfolder.gif ├── nolines_minus.gif ├── nolines_plus.gif ├── page.gif ├── page.png ├── plus.gif ├── plusbottom.gif ├── question.gif ├── separator.gif ├── slider.gif ├── tab-active.png ├── trash.gif ├── treeToggle-collapsed.png ├── treeToggle-extended.png └── treeToggle.gif ├── index.tpl ├── js ├── jquery-1.4.2.js ├── jquery-1.4.2.min.js ├── jquery.cluetip │ ├── images │ │ ├── arrowdown.gif │ │ ├── arrowleft.gif │ │ ├── arrowright.gif │ │ ├── arrowup.gif │ │ ├── bl.gif │ │ ├── bl.png │ │ ├── br.gif │ │ ├── br.png │ │ ├── darrowdown.gif │ │ ├── darrowleft.gif │ │ ├── darrowright.gif │ │ ├── darrowup.gif │ │ ├── itunes.png │ │ ├── rarrowdown.gif │ │ ├── rarrowleft.gif │ │ ├── rarrowright.gif │ │ ├── rarrowup.gif │ │ ├── tl.gif │ │ ├── tl.png │ │ ├── tr.gif │ │ ├── tr.png │ │ └── wait.gif │ ├── jquery.cluetip.css │ ├── jquery.cluetip.js │ ├── jquery.cluetip.min.js │ └── lib │ │ ├── jquery.bgiframe.min.js │ │ └── jquery.hoverIntent.js ├── jquery.history.js ├── jquery.jstree │ ├── jquery.jstree.js │ ├── jquery.jstree.min.js │ └── themes │ │ └── default │ │ ├── d.png │ │ ├── dot_for_ie.gif │ │ ├── style.css │ │ └── throbber.gif ├── jquery.sidebar │ ├── css │ │ └── codebrowser │ │ │ ├── inject-bottom.png │ │ │ ├── inject-left.png │ │ │ ├── inject-right.png │ │ │ ├── inject-top.png │ │ │ └── sidebar.css │ ├── jquery-ui-1.7.2.custom.min.js │ └── jquery.sidebar.js ├── review.js └── tree.js ├── noErrors.tpl └── review.tpl /.github/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/.github/flake.lock -------------------------------------------------------------------------------- /.github/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/.github/flake.nix -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/CHANGELOG.markdown -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/README.markdown -------------------------------------------------------------------------------- /bin/phpcb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/bin/phpcb -------------------------------------------------------------------------------- /bin/phpcb.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/bin/phpcb.bat -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/box.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/composer.json -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/package.xml -------------------------------------------------------------------------------- /phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/phpcs.xml.dist -------------------------------------------------------------------------------- /phpstan.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/phpstan.neon -------------------------------------------------------------------------------- /phpstan_baseline.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/phpstan_baseline.neon -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/PHPCodeBrowser/AbstractPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/AbstractPlugin.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/Application.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/CLIController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/CLIController.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Command/RunCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/Command/RunCommand.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/File.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Helper/IOHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/Helper/IOHelper.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Issue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/Issue.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/IssueXML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/IssueXML.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Plugins/ErrorCPD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/Plugins/ErrorCPD.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Plugins/ErrorCRAP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/Plugins/ErrorCRAP.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Plugins/ErrorCheckstyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/Plugins/ErrorCheckstyle.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Plugins/ErrorCoverage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/Plugins/ErrorCoverage.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Plugins/ErrorPMD.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/Plugins/ErrorPMD.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Plugins/ErrorPadawan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/Plugins/ErrorPadawan.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/SourceHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/SourceHandler.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Tests/AbstractTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/Tests/AbstractTestCase.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Tests/ApplicationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/Tests/ApplicationTest.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Tests/CLIControllerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/Tests/CLIControllerTest.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Tests/FileTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/Tests/FileTest.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/Tests/Fixtures/Bad.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/PHPCodeBrowser/View/ViewAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/View/ViewAbstract.php -------------------------------------------------------------------------------- /src/PHPCodeBrowser/View/ViewReview.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/src/PHPCodeBrowser/View/ViewReview.php -------------------------------------------------------------------------------- /templates/css/cruisecontrol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/css/cruisecontrol.css -------------------------------------------------------------------------------- /templates/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/css/global.css -------------------------------------------------------------------------------- /templates/css/review.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/css/review.css -------------------------------------------------------------------------------- /templates/css/tree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/css/tree.css -------------------------------------------------------------------------------- /templates/img/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/background.gif -------------------------------------------------------------------------------- /templates/img/base.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/base.gif -------------------------------------------------------------------------------- /templates/img/cd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/cd.gif -------------------------------------------------------------------------------- /templates/img/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/empty.gif -------------------------------------------------------------------------------- /templates/img/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/folder.gif -------------------------------------------------------------------------------- /templates/img/folderopen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/folderopen.gif -------------------------------------------------------------------------------- /templates/img/globe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/globe.gif -------------------------------------------------------------------------------- /templates/img/imgfolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/imgfolder.gif -------------------------------------------------------------------------------- /templates/img/join.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/join.gif -------------------------------------------------------------------------------- /templates/img/joinbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/joinbottom.gif -------------------------------------------------------------------------------- /templates/img/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/line.gif -------------------------------------------------------------------------------- /templates/img/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/minus.gif -------------------------------------------------------------------------------- /templates/img/minusbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/minusbottom.gif -------------------------------------------------------------------------------- /templates/img/musicfolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/musicfolder.gif -------------------------------------------------------------------------------- /templates/img/nolines_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/nolines_minus.gif -------------------------------------------------------------------------------- /templates/img/nolines_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/nolines_plus.gif -------------------------------------------------------------------------------- /templates/img/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/page.gif -------------------------------------------------------------------------------- /templates/img/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/page.png -------------------------------------------------------------------------------- /templates/img/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/plus.gif -------------------------------------------------------------------------------- /templates/img/plusbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/plusbottom.gif -------------------------------------------------------------------------------- /templates/img/question.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/question.gif -------------------------------------------------------------------------------- /templates/img/separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/separator.gif -------------------------------------------------------------------------------- /templates/img/slider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/slider.gif -------------------------------------------------------------------------------- /templates/img/tab-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/tab-active.png -------------------------------------------------------------------------------- /templates/img/trash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/trash.gif -------------------------------------------------------------------------------- /templates/img/treeToggle-collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/treeToggle-collapsed.png -------------------------------------------------------------------------------- /templates/img/treeToggle-extended.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/treeToggle-extended.png -------------------------------------------------------------------------------- /templates/img/treeToggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/img/treeToggle.gif -------------------------------------------------------------------------------- /templates/index.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/index.tpl -------------------------------------------------------------------------------- /templates/js/jquery-1.4.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery-1.4.2.js -------------------------------------------------------------------------------- /templates/js/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/arrowdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/arrowdown.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/arrowleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/arrowleft.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/arrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/arrowright.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/arrowup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/arrowup.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/bl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/bl.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/bl.png -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/br.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/br.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/br.png -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/darrowdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/darrowdown.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/darrowleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/darrowleft.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/darrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/darrowright.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/darrowup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/darrowup.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/itunes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/itunes.png -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/rarrowdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/rarrowdown.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/rarrowleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/rarrowleft.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/rarrowright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/rarrowright.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/rarrowup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/rarrowup.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/tl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/tl.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/tl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/tl.png -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/tr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/tr.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/tr.png -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/images/wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/images/wait.gif -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/jquery.cluetip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/jquery.cluetip.css -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/jquery.cluetip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/jquery.cluetip.js -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/jquery.cluetip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/jquery.cluetip.min.js -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/lib/jquery.bgiframe.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/lib/jquery.bgiframe.min.js -------------------------------------------------------------------------------- /templates/js/jquery.cluetip/lib/jquery.hoverIntent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.cluetip/lib/jquery.hoverIntent.js -------------------------------------------------------------------------------- /templates/js/jquery.history.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.history.js -------------------------------------------------------------------------------- /templates/js/jquery.jstree/jquery.jstree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.jstree/jquery.jstree.js -------------------------------------------------------------------------------- /templates/js/jquery.jstree/jquery.jstree.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.jstree/jquery.jstree.min.js -------------------------------------------------------------------------------- /templates/js/jquery.jstree/themes/default/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.jstree/themes/default/d.png -------------------------------------------------------------------------------- /templates/js/jquery.jstree/themes/default/dot_for_ie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.jstree/themes/default/dot_for_ie.gif -------------------------------------------------------------------------------- /templates/js/jquery.jstree/themes/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.jstree/themes/default/style.css -------------------------------------------------------------------------------- /templates/js/jquery.jstree/themes/default/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.jstree/themes/default/throbber.gif -------------------------------------------------------------------------------- /templates/js/jquery.sidebar/css/codebrowser/inject-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.sidebar/css/codebrowser/inject-bottom.png -------------------------------------------------------------------------------- /templates/js/jquery.sidebar/css/codebrowser/inject-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.sidebar/css/codebrowser/inject-left.png -------------------------------------------------------------------------------- /templates/js/jquery.sidebar/css/codebrowser/inject-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.sidebar/css/codebrowser/inject-right.png -------------------------------------------------------------------------------- /templates/js/jquery.sidebar/css/codebrowser/inject-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.sidebar/css/codebrowser/inject-top.png -------------------------------------------------------------------------------- /templates/js/jquery.sidebar/css/codebrowser/sidebar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.sidebar/css/codebrowser/sidebar.css -------------------------------------------------------------------------------- /templates/js/jquery.sidebar/jquery-ui-1.7.2.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.sidebar/jquery-ui-1.7.2.custom.min.js -------------------------------------------------------------------------------- /templates/js/jquery.sidebar/jquery.sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/jquery.sidebar/jquery.sidebar.js -------------------------------------------------------------------------------- /templates/js/review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/review.js -------------------------------------------------------------------------------- /templates/js/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/js/tree.js -------------------------------------------------------------------------------- /templates/noErrors.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/noErrors.tpl -------------------------------------------------------------------------------- /templates/review.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mayflower/PHP_CodeBrowser/HEAD/templates/review.tpl --------------------------------------------------------------------------------