├── .gitignore ├── INSTALL.txt ├── LICENSE.txt ├── README.md ├── application ├── databases │ ├── Ayoola │ │ ├── Page │ │ │ └── Menu │ │ │ │ └── option.xml │ │ └── extension.xml │ └── PC │ │ └── WebsiteGrabber │ │ └── project.xml └── modules │ └── PC │ ├── WebsiteGrabber.php │ └── WebsiteGrabber │ ├── Project.php │ ├── Project │ ├── Abstract.php │ ├── Creator.php │ ├── Delete.php │ ├── Download.php │ ├── Editor.php │ ├── Grab.php │ └── List.php │ └── Sites.php ├── databases ├── Application │ └── Log │ │ └── View │ │ └── Access │ │ ├── __ │ │ └── log │ │ │ └── 0 │ │ │ └── 0 │ │ │ ├── 0.xml │ │ │ ├── 1.xml │ │ │ └── 2.xml │ │ └── log.xml ├── Ayoola │ ├── Object │ │ ├── dbase.xml │ │ └── widget.xml │ ├── Page │ │ └── Menu │ │ │ └── option.xml │ └── extension.xml ├── PC │ └── WebsiteGrabber │ │ └── project.xml └── PageCarton │ └── Cron │ └── Run │ └── table.xml └── extension_information /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/README.md -------------------------------------------------------------------------------- /application/databases/Ayoola/Page/Menu/option.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/application/databases/Ayoola/Page/Menu/option.xml -------------------------------------------------------------------------------- /application/databases/Ayoola/extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/application/databases/Ayoola/extension.xml -------------------------------------------------------------------------------- /application/databases/PC/WebsiteGrabber/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/application/databases/PC/WebsiteGrabber/project.xml -------------------------------------------------------------------------------- /application/modules/PC/WebsiteGrabber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/application/modules/PC/WebsiteGrabber.php -------------------------------------------------------------------------------- /application/modules/PC/WebsiteGrabber/Project.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/application/modules/PC/WebsiteGrabber/Project.php -------------------------------------------------------------------------------- /application/modules/PC/WebsiteGrabber/Project/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/application/modules/PC/WebsiteGrabber/Project/Abstract.php -------------------------------------------------------------------------------- /application/modules/PC/WebsiteGrabber/Project/Creator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/application/modules/PC/WebsiteGrabber/Project/Creator.php -------------------------------------------------------------------------------- /application/modules/PC/WebsiteGrabber/Project/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/application/modules/PC/WebsiteGrabber/Project/Delete.php -------------------------------------------------------------------------------- /application/modules/PC/WebsiteGrabber/Project/Download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/application/modules/PC/WebsiteGrabber/Project/Download.php -------------------------------------------------------------------------------- /application/modules/PC/WebsiteGrabber/Project/Editor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/application/modules/PC/WebsiteGrabber/Project/Editor.php -------------------------------------------------------------------------------- /application/modules/PC/WebsiteGrabber/Project/Grab.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/application/modules/PC/WebsiteGrabber/Project/Grab.php -------------------------------------------------------------------------------- /application/modules/PC/WebsiteGrabber/Project/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/application/modules/PC/WebsiteGrabber/Project/List.php -------------------------------------------------------------------------------- /application/modules/PC/WebsiteGrabber/Sites.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/application/modules/PC/WebsiteGrabber/Sites.php -------------------------------------------------------------------------------- /databases/Application/Log/View/Access/__/log/0/0/0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/databases/Application/Log/View/Access/__/log/0/0/0.xml -------------------------------------------------------------------------------- /databases/Application/Log/View/Access/__/log/0/0/1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/databases/Application/Log/View/Access/__/log/0/0/1.xml -------------------------------------------------------------------------------- /databases/Application/Log/View/Access/__/log/0/0/2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/databases/Application/Log/View/Access/__/log/0/0/2.xml -------------------------------------------------------------------------------- /databases/Application/Log/View/Access/log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/databases/Application/Log/View/Access/log.xml -------------------------------------------------------------------------------- /databases/Ayoola/Object/dbase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/databases/Ayoola/Object/dbase.xml -------------------------------------------------------------------------------- /databases/Ayoola/Object/widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/databases/Ayoola/Object/widget.xml -------------------------------------------------------------------------------- /databases/Ayoola/Page/Menu/option.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/databases/Ayoola/Page/Menu/option.xml -------------------------------------------------------------------------------- /databases/Ayoola/extension.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/databases/Ayoola/extension.xml -------------------------------------------------------------------------------- /databases/PC/WebsiteGrabber/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/databases/PC/WebsiteGrabber/project.xml -------------------------------------------------------------------------------- /databases/PageCarton/Cron/Run/table.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/databases/PageCarton/Cron/Run/table.xml -------------------------------------------------------------------------------- /extension_information: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pagecarton/website-downloader/HEAD/extension_information --------------------------------------------------------------------------------