├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ └── greetings.yml ├── .gitignore ├── FUNDING.yml ├── _config.yml ├── changes.md ├── changes.txt ├── companion ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── README.md ├── app │ ├── Console │ │ ├── Commands │ │ │ └── GenerateDocumentationPages.php │ │ └── Kernel.php │ ├── Exceptions │ │ └── Handler.php │ ├── Helpers │ │ └── helpers.php │ ├── Http │ │ ├── Controllers │ │ │ └── Controller.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── EncryptCookies.php │ │ │ ├── PreventRequestsDuringMaintenance.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustHosts.php │ │ │ ├── TrustProxies.php │ │ │ ├── ValidateSignature.php │ │ │ └── VerifyCsrfToken.php │ ├── Models │ │ └── User.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ └── Services │ │ ├── CommandInfoService.php │ │ ├── DocToCommandBuilder.php │ │ ├── DocumentGenerationService.php │ │ ├── FileGatherService.php │ │ └── ResourceFileService.php ├── artisan ├── bootstrap │ ├── app.php │ └── cache │ │ └── .gitignore ├── composer.json ├── composer.lock ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── cors.php │ ├── database.php │ ├── filesystems.php │ ├── hashing.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── sanctum.php │ ├── services.php │ ├── session.php │ └── view.php ├── database │ ├── .gitignore │ ├── factories │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_reset_tokens_table.php │ │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ │ └── 2019_12_14_000001_create_personal_access_tokens_table.php │ └── seeders │ │ └── DatabaseSeeder.php ├── package.json ├── phpunit.xml ├── public │ ├── .htaccess │ ├── favicon.ico │ ├── index.php │ └── robots.txt ├── resources │ ├── css │ │ └── app.css │ ├── generator_templates │ │ ├── AllParameters.md │ │ ├── ConvertDirDocNoRecurse.tpl.md │ │ ├── ConvertDirDocOneDrive.tpl.md │ │ ├── ConvertDirDocToFile.tpl.md │ │ ├── ConvertDirDocToFile_NewExt.tpl.md │ │ ├── ConvertDirRTFToFile.tpl.md │ │ ├── ConvertDirSpecificDocToFile.tpl.md │ │ ├── ConvertDirTXTToFile.tpl.md │ │ ├── ConvertDirToFileandRemove.tpl.md │ │ ├── ConvertDocToFileLog.tpl.md │ │ ├── ConvertDocToFileWithWebhook.tpl.md │ │ ├── ConvertDocToPDFBookmarks.tpl.md │ │ ├── ConvertDocToPDFComments.tpl.md │ │ ├── ConvertDoctoPDFA.tpl.md │ │ ├── ConvertFromDocToFile.tpl.md │ │ ├── ConvertFromPPTToFile.tpl.md │ │ ├── ConvertFromVSDToFile.tpl.md │ │ ├── ConvertFromXLSToFile.tpl.md │ │ ├── ConvertFromXLStoFileUNC.tpl.md │ │ ├── ShowVersion.tpl.md │ │ └── index.tpl.md │ ├── inputfiles │ │ ├── docx │ │ │ └── DocXFile.docx │ │ ├── mixed │ │ │ ├── All+American+Peanut+Butter+Pie.doc │ │ │ ├── Bacon+and+Egg+Pie.doc │ │ │ ├── Ballycotton+Fish+Pie.doc │ │ │ ├── Book1 MultiSheet Test.xlsx │ │ │ ├── Bookmarks+Chocolate+and+Hazelnut+Tart.doc │ │ │ ├── Cottage+Pie+with+Garlic+Butter.doc │ │ │ ├── CullohillApplePie - Copy.doc │ │ │ ├── DocXFile.docx │ │ │ ├── applepie2c.txt │ │ │ ├── applepiea.odt │ │ │ ├── applepiea2.odt │ │ │ ├── applepieb.txt │ │ │ ├── applepieb2.rtf │ │ │ ├── applepiec.rtf │ │ │ └── readme.md │ │ ├── multisheet │ │ │ └── Book1 MultiSheet Test.xlsx │ │ ├── password │ │ │ └── CullohillApplePie_Protected.doc │ │ ├── plain │ │ │ ├── Ballymaloe Mincemeat Tart.doc │ │ │ ├── Ballymaloe+Hot+Buttered+Lobster (2).doc │ │ │ ├── Ballymaloe+Hot+Buttered+Lobster 3 .doc │ │ │ ├── Bookmarks+Chocolate+and+Hazelnut+Tart.doc │ │ │ └── CullohillApplePie - Copy.doc │ │ └── single │ │ │ └── ASingleFile.doc │ ├── js │ │ ├── app.js │ │ └── bootstrap.js │ └── views │ │ ├── RelatedLinks.blade.php │ │ └── welcome.blade.php ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php ├── storage │ ├── app │ │ ├── .gitignore │ │ └── public │ │ │ └── .gitignore │ ├── framework │ │ ├── .gitignore │ │ ├── cache │ │ │ ├── .gitignore │ │ │ └── data │ │ │ │ └── .gitignore │ │ ├── sessions │ │ │ └── .gitignore │ │ ├── testing │ │ │ └── .gitignore │ │ └── views │ │ │ └── .gitignore │ └── logs │ │ └── .gitignore ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ ├── DocX │ │ │ └── CompatibilityPestTest.php │ │ ├── ExampleTest.php │ │ ├── Input │ │ │ └── InputFilterPestTest.php │ │ ├── Remove │ │ │ └── RemoveInputFilePestTest.php │ │ ├── VersionPestTest.php │ │ ├── XLS │ │ │ └── MultiSheet │ │ │ │ └── MultiSheetPestTest.php │ │ └── output │ │ │ └── OutputDirCreationPestTest.php │ ├── Pest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php └── vite.config.js ├── license.txt ├── pages └── all │ ├── BookmarksFromSourceNone.pdf.md │ ├── BookmarksFromSourceNonepdf.md │ ├── BookmarksFromSourceWordBookmarks.pdf.md │ ├── BookmarksFromSourceWordBookmarkspdf.md │ ├── CommentsFromWordNoCommentspdf.md │ ├── CommentsFromWordNonepdf.md │ ├── CommentsFromWordWordCommentspdf.md │ ├── ConvertDirDocToFileDOC.md │ ├── ConvertDirDocToFileFilteredHTML.md │ ├── ConvertDirDocToFileHTML.md │ ├── ConvertDirDocToFileODD.md │ ├── ConvertDirDocToFilePDF.md │ ├── ConvertDirDocToFileRTF.md │ ├── ConvertDirDocToFileTXT.md │ ├── ConvertDirDocToFileXML.md │ ├── ConvertDirDocToFileXPS.md │ ├── ConvertDirDocToFile_NewExtDOC.md │ ├── ConvertDirRTFToFileDoc.md │ ├── ConvertDirRTFToFileHTML.md │ ├── ConvertDirRTFToFilePDF.md │ ├── ConvertDirRTFToFileTXT.md │ ├── ConvertDirTXTToFileDoc.md │ ├── ConvertDirTXTToFilePDF.md │ ├── ConvertDirToFileRemoveDOC.md │ ├── ConvertDirToFileRemoveFilteredHTML.md │ ├── ConvertDirToFileRemoveHTML.md │ ├── ConvertDirToFileRemoveODD.md │ ├── ConvertDirToFileRemovePDF.md │ ├── ConvertDirToFileRemoveRTF.md │ ├── ConvertDirToFileRemoveTXT.md │ ├── ConvertDirToFileRemoveXML.md │ ├── ConvertDirToFileRemoveXPS.md │ ├── ConvertDocToFileDOC.md │ ├── ConvertDocToFileFilteredHTML.md │ ├── ConvertDocToFileHTML.md │ ├── ConvertDocToFileLog.md │ ├── ConvertDocToFileLogL10PDF.md │ ├── ConvertDocToFileLogL1PDF.md │ ├── ConvertDocToFileLogL2PDF.md │ ├── ConvertDocToFileLogL5PDF.md │ ├── ConvertDocToFileLogL9PDF.md │ ├── ConvertDocToFileLogPDF.md │ ├── ConvertDocToFileODD.md │ ├── ConvertDocToFilePDF.md │ ├── ConvertDocToFileRTF.md │ ├── ConvertDocToFileTXT.md │ ├── ConvertDocToFileWithWebhookDOC.md │ ├── ConvertDocToFileWithWebhookFilteredHTML.md │ ├── ConvertDocToFileWithWebhookHTML.md │ ├── ConvertDocToFileWithWebhookODD.md │ ├── ConvertDocToFileWithWebhookPDF.md │ ├── ConvertDocToFileWithWebhookRTF.md │ ├── ConvertDocToFileWithWebhookXPS.md │ ├── ConvertDocToFileXML.md │ ├── ConvertDocToFileXPS.md │ ├── ConvertPPTToFileDOC.md │ ├── ConvertPPTToFileFilteredHTML.md │ ├── ConvertPPTToFileHTML.md │ ├── ConvertPPTToFileJPG.md │ ├── ConvertPPTToFileODD.md │ ├── ConvertPPTToFilePDF.md │ ├── ConvertPPTToFileRTF.md │ ├── ConvertPPTToFileTXT.md │ ├── ConvertPPTToFileXML.md │ ├── ConvertPPTToFileXPS.md │ ├── ConvertPPTToFilegif.md │ ├── ConvertPPTToFilepng.md │ ├── ConvertPPTToFilepptx.md │ ├── ConvertToPDFArchiveiso19005-1pdf.md │ ├── ConvertVSDToFilePDF.md │ ├── ConvertVSDToFileXPS.md │ ├── ConvertWithoutSubdirspdf.md │ ├── ConvertXLSToFile9795xls.md │ ├── ConvertXLSToFileCSV.md │ ├── ConvertXLSToFileHTML.md │ ├── ConvertXLSToFileODS.md │ ├── ConvertXLSToFilePDF.md │ ├── ConvertXLSToFileTXT.md │ ├── ConvertXLSToFileUNC9795xls.md │ ├── ConvertXLSToFileUNCCSV.md │ ├── ConvertXLSToFileUNCHTML.md │ ├── ConvertXLSToFileUNCPDF.md │ ├── ConvertXLSToFileUNCTXT.md │ ├── ConvertXLSToFileUnicodeTXT.md │ ├── ConvertXLSToFileXML.md │ ├── ConvertXLSToFileXPS.md │ ├── HelpCompatibilityMode.txt.md │ ├── HelpErrors.txt.md │ ├── HelpJSONLog.txt.md │ ├── HelpLog.md │ ├── HelpLog.txt.md │ ├── HelpWebHook.txt.md │ ├── OneDriveConversionOneDrive.md │ ├── PPConst.txt.md │ ├── ResourceReadme.md.md │ ├── ShowVersionVersion.md │ ├── WDConst.txt.md │ ├── WdCompatibilityMode.txt.md │ ├── XLConst.txt.md │ ├── css │ ├── github.css │ ├── retro.css │ └── splendor.css │ ├── index.md │ ├── ppFormats.txt.md │ ├── ppFormatsExt.txt.md │ ├── templates │ ├── doctologo.jpg │ └── maincaddytemplate.html │ ├── vsConst.txt.md │ ├── vsFormats.txt.md │ ├── vsFormatsExt.txt.md │ ├── wdEncoding.txt.md │ ├── wdExtraConst.txt.md │ ├── wdFormats.txt.md │ ├── wdFormatsExt.txt.md │ ├── xlsFormats.txt.md │ └── xlsFormatsExt.txt.md ├── readme.md ├── src ├── ExcelUtils.pas ├── Excel_TLB_Constants.pas ├── Exceptions │ └── DocToExceptions.pas ├── ExtraFiles.rc ├── ExtraFiles.res ├── MainUtils.pas ├── PathUtils.pas ├── PowerPointUtils.pas ├── PowerPoint_TLB_Constants.pas ├── ResourceUtils.pas ├── VisioUtils.pas ├── Visio_TLB.pas ├── WordUtils.pas ├── Word_TLB_Constants.pas ├── d2icon.bmp ├── d2icon_QhU_icon.ico ├── datamodSSL.dfm ├── datamodSSL.pas ├── docto.cfg ├── docto.dof ├── docto.dpr ├── docto.dpr.orig ├── docto.dproj ├── docto.dproj.2007 ├── docto.dproj.local ├── docto.dproj.orig ├── docto.res ├── docto.todo ├── docto_Icon.ico ├── docto_Icon1.ico ├── docto_Icon2.ico ├── res │ ├── HelpCompatibilityMode.txt │ ├── HelpErrors.txt │ ├── HelpJSONLog.txt │ ├── HelpLog.txt │ ├── HelpWebHook.txt │ ├── PPConst.txt │ ├── ResourceReadme.md │ ├── WDConst.txt │ ├── WdCompatibilityMode.txt │ ├── XLConst.txt │ ├── ppFormats.txt │ ├── ppFormatsExt.txt │ ├── vsConst.txt │ ├── vsFormats.txt │ ├── vsFormatsExt.txt │ ├── wdEncoding.txt │ ├── wdExtraConst.txt │ ├── wdFormats.txt │ ├── wdFormatsExt.txt │ ├── xlsFormats.txt │ └── xlsFormatsExt.txt └── shared │ └── DynamicFileNameGenerator.pas └── test ├── InputFiles ├── Ballymaloe Mincemeat Tart.doc ├── Ballymaloe+Hot+Buttered+Lobster (2).doc ├── Ballymaloe+Hot+Buttered+Lobster 3 .doc ├── Bookmarks+Chocolate+and+Hazelnut+Tart.doc ├── CullohillApplePie - Copy.doc ├── CullohillApplePie.doc ├── CullohillApplePie_Protected.doc ├── DocWithMacro.docm ├── DocWithMacro.docx ├── DocWithMacro_oldext.doc ├── Document Forces Save - GEOCADx (1).docx ├── GEOCADx (1).docx ├── Mayonnaise.doc ├── MincemeatTart_withcomments.doc ├── Pie3.doc ├── PigeonPie.doc ├── Testfilewithcomments.docx ├── UnicodeTest.doc ├── Week 1 Test with PrintArea.xls ├── Week 1 Test.xls ├── Week 2 Test.xls ├── others │ ├── Ballymaloe+Hot+Buttered+Lobster (2).rtf │ ├── Ballymaloe+Hot+Buttered+Lobster 3 .rtf │ ├── Bookmarks+Chocolate+and+Hazelnut+Tart.rtf │ ├── CullohillApplePie.rtf │ ├── Mayonnaise.rtf │ ├── Pie3.rtf │ ├── PigeonPie.rtf │ ├── UnicodeTest.rtf │ ├── Week 1 Test.csv │ ├── Week1.csv │ └── pres1.rtf └── pie3Text.txt ├── TestDocTo_Quiet.bat ├── Test_WordMacros.bat ├── inputfilespp ├── Presentation1.ppt ├── Presentation2.ppt └── campus map tower room.pptx ├── inputfilesvs ├── payslips.vsdx └── payslips.vssx ├── inputfilesxl ├── Book1 Single Sheet.xlsx ├── Book1 with password.xls ├── Book1WithMacros.xlsm ├── Book1WithMacrosCopy.xls ├── Week 1 Test.xls ├── Week 2 xlsx Test.xlsx ├── wk1test-MultiSheet.xls └── wk1test.xls ├── pptesdir.bat ├── pptestrelative.bat ├── testDocTo.bat ├── testDocToRelative.bat ├── testDocTo_basic.bat ├── testDocTo_basic_withlog.bat ├── testIgnoreDocs.bat ├── testSkipExistingConverts.bat ├── test_DocProp.bat ├── test_DocStructure.bat ├── test_KeepIRM.bat ├── test_Optimizefor.bat ├── test_missingfont.bat ├── testbookmarks.bat ├── testcsvrun.bat ├── testhelp.bat ├── testhook.bat ├── testhookdir.bat ├── testhttps.bat ├── testlogging.bat ├── testmultihook.bat ├── testmultihook2.bat ├── testparaaction.bat ├── testppDocTo.bat ├── testrelative.bat ├── testremove.bat ├── testrun longparam.bat ├── testrun_DirOnly.bat ├── testrun_Rachel.bat ├── testrunbreak.bat ├── testrundironly.bat ├── testrunpages.bat ├── testrunrtf.bat ├── testspecific.bat ├── teststdout.bat ├── testversion.bat ├── testxls_relative.bat ├── testxlsfile.bat ├── testxlspass.bat ├── testxlsrun.bat └── testxlsslashes.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [tobya] 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/.gitignore -------------------------------------------------------------------------------- /FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: tobya -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/_config.yml -------------------------------------------------------------------------------- /changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/changes.md -------------------------------------------------------------------------------- /changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/changes.txt -------------------------------------------------------------------------------- /companion/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/.editorconfig -------------------------------------------------------------------------------- /companion/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/.env.example -------------------------------------------------------------------------------- /companion/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/.gitattributes -------------------------------------------------------------------------------- /companion/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/.gitignore -------------------------------------------------------------------------------- /companion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/README.md -------------------------------------------------------------------------------- /companion/app/Console/Commands/GenerateDocumentationPages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Console/Commands/GenerateDocumentationPages.php -------------------------------------------------------------------------------- /companion/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Console/Kernel.php -------------------------------------------------------------------------------- /companion/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /companion/app/Helpers/helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Helpers/helpers.php -------------------------------------------------------------------------------- /companion/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /companion/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Http/Kernel.php -------------------------------------------------------------------------------- /companion/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /companion/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /companion/app/Http/Middleware/PreventRequestsDuringMaintenance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Http/Middleware/PreventRequestsDuringMaintenance.php -------------------------------------------------------------------------------- /companion/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /companion/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /companion/app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /companion/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /companion/app/Http/Middleware/ValidateSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Http/Middleware/ValidateSignature.php -------------------------------------------------------------------------------- /companion/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /companion/app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Models/User.php -------------------------------------------------------------------------------- /companion/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /companion/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /companion/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /companion/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /companion/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /companion/app/Services/CommandInfoService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Services/CommandInfoService.php -------------------------------------------------------------------------------- /companion/app/Services/DocToCommandBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Services/DocToCommandBuilder.php -------------------------------------------------------------------------------- /companion/app/Services/DocumentGenerationService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Services/DocumentGenerationService.php -------------------------------------------------------------------------------- /companion/app/Services/FileGatherService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Services/FileGatherService.php -------------------------------------------------------------------------------- /companion/app/Services/ResourceFileService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/app/Services/ResourceFileService.php -------------------------------------------------------------------------------- /companion/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/artisan -------------------------------------------------------------------------------- /companion/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/bootstrap/app.php -------------------------------------------------------------------------------- /companion/bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /companion/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/composer.json -------------------------------------------------------------------------------- /companion/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/composer.lock -------------------------------------------------------------------------------- /companion/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/app.php -------------------------------------------------------------------------------- /companion/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/auth.php -------------------------------------------------------------------------------- /companion/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/broadcasting.php -------------------------------------------------------------------------------- /companion/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/cache.php -------------------------------------------------------------------------------- /companion/config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/cors.php -------------------------------------------------------------------------------- /companion/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/database.php -------------------------------------------------------------------------------- /companion/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/filesystems.php -------------------------------------------------------------------------------- /companion/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/hashing.php -------------------------------------------------------------------------------- /companion/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/logging.php -------------------------------------------------------------------------------- /companion/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/mail.php -------------------------------------------------------------------------------- /companion/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/queue.php -------------------------------------------------------------------------------- /companion/config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/sanctum.php -------------------------------------------------------------------------------- /companion/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/services.php -------------------------------------------------------------------------------- /companion/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/session.php -------------------------------------------------------------------------------- /companion/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/config/view.php -------------------------------------------------------------------------------- /companion/database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite* 2 | -------------------------------------------------------------------------------- /companion/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/database/factories/UserFactory.php -------------------------------------------------------------------------------- /companion/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /companion/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/database/migrations/2014_10_12_100000_create_password_reset_tokens_table.php -------------------------------------------------------------------------------- /companion/database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /companion/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /companion/database/seeders/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/database/seeders/DatabaseSeeder.php -------------------------------------------------------------------------------- /companion/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/package.json -------------------------------------------------------------------------------- /companion/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/phpunit.xml -------------------------------------------------------------------------------- /companion/public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/public/.htaccess -------------------------------------------------------------------------------- /companion/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /companion/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/public/index.php -------------------------------------------------------------------------------- /companion/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /companion/resources/css/app.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /companion/resources/generator_templates/AllParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/AllParameters.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertDirDocNoRecurse.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertDirDocNoRecurse.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertDirDocOneDrive.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertDirDocOneDrive.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertDirDocToFile.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertDirDocToFile.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertDirDocToFile_NewExt.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertDirDocToFile_NewExt.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertDirRTFToFile.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertDirRTFToFile.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertDirSpecificDocToFile.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertDirSpecificDocToFile.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertDirTXTToFile.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertDirTXTToFile.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertDirToFileandRemove.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertDirToFileandRemove.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertDocToFileLog.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertDocToFileLog.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertDocToFileWithWebhook.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertDocToFileWithWebhook.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertDocToPDFBookmarks.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertDocToPDFBookmarks.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertDocToPDFComments.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertDocToPDFComments.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertDoctoPDFA.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertDoctoPDFA.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertFromDocToFile.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertFromDocToFile.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertFromPPTToFile.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertFromPPTToFile.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertFromVSDToFile.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertFromVSDToFile.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertFromXLSToFile.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertFromXLSToFile.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ConvertFromXLStoFileUNC.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ConvertFromXLStoFileUNC.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/ShowVersion.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/ShowVersion.tpl.md -------------------------------------------------------------------------------- /companion/resources/generator_templates/index.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/generator_templates/index.tpl.md -------------------------------------------------------------------------------- /companion/resources/inputfiles/docx/DocXFile.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/docx/DocXFile.docx -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/All+American+Peanut+Butter+Pie.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/All+American+Peanut+Butter+Pie.doc -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/Bacon+and+Egg+Pie.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/Bacon+and+Egg+Pie.doc -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/Ballycotton+Fish+Pie.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/Ballycotton+Fish+Pie.doc -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/Book1 MultiSheet Test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/Book1 MultiSheet Test.xlsx -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/Bookmarks+Chocolate+and+Hazelnut+Tart.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/Bookmarks+Chocolate+and+Hazelnut+Tart.doc -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/Cottage+Pie+with+Garlic+Butter.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/Cottage+Pie+with+Garlic+Butter.doc -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/CullohillApplePie - Copy.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/CullohillApplePie - Copy.doc -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/DocXFile.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/DocXFile.docx -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/applepie2c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/applepie2c.txt -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/applepiea.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/applepiea.odt -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/applepiea2.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/applepiea2.odt -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/applepieb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/applepieb.txt -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/applepieb2.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/applepieb2.rtf -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/applepiec.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/applepiec.rtf -------------------------------------------------------------------------------- /companion/resources/inputfiles/mixed/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/mixed/readme.md -------------------------------------------------------------------------------- /companion/resources/inputfiles/multisheet/Book1 MultiSheet Test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/multisheet/Book1 MultiSheet Test.xlsx -------------------------------------------------------------------------------- /companion/resources/inputfiles/password/CullohillApplePie_Protected.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/password/CullohillApplePie_Protected.doc -------------------------------------------------------------------------------- /companion/resources/inputfiles/plain/Ballymaloe Mincemeat Tart.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/plain/Ballymaloe Mincemeat Tart.doc -------------------------------------------------------------------------------- /companion/resources/inputfiles/plain/Ballymaloe+Hot+Buttered+Lobster (2).doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/plain/Ballymaloe+Hot+Buttered+Lobster (2).doc -------------------------------------------------------------------------------- /companion/resources/inputfiles/plain/Ballymaloe+Hot+Buttered+Lobster 3 .doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/plain/Ballymaloe+Hot+Buttered+Lobster 3 .doc -------------------------------------------------------------------------------- /companion/resources/inputfiles/plain/Bookmarks+Chocolate+and+Hazelnut+Tart.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/plain/Bookmarks+Chocolate+and+Hazelnut+Tart.doc -------------------------------------------------------------------------------- /companion/resources/inputfiles/plain/CullohillApplePie - Copy.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/plain/CullohillApplePie - Copy.doc -------------------------------------------------------------------------------- /companion/resources/inputfiles/single/ASingleFile.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/inputfiles/single/ASingleFile.doc -------------------------------------------------------------------------------- /companion/resources/js/app.js: -------------------------------------------------------------------------------- 1 | import './bootstrap'; 2 | -------------------------------------------------------------------------------- /companion/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/js/bootstrap.js -------------------------------------------------------------------------------- /companion/resources/views/RelatedLinks.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/views/RelatedLinks.blade.php -------------------------------------------------------------------------------- /companion/resources/views/welcome.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/resources/views/welcome.blade.php -------------------------------------------------------------------------------- /companion/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/routes/api.php -------------------------------------------------------------------------------- /companion/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/routes/channels.php -------------------------------------------------------------------------------- /companion/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/routes/console.php -------------------------------------------------------------------------------- /companion/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/routes/web.php -------------------------------------------------------------------------------- /companion/storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /companion/storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /companion/storage/framework/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/storage/framework/.gitignore -------------------------------------------------------------------------------- /companion/storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !data/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /companion/storage/framework/cache/data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /companion/storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /companion/storage/framework/testing/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /companion/storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /companion/storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /companion/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/tests/CreatesApplication.php -------------------------------------------------------------------------------- /companion/tests/Feature/DocX/CompatibilityPestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/tests/Feature/DocX/CompatibilityPestTest.php -------------------------------------------------------------------------------- /companion/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /companion/tests/Feature/Input/InputFilterPestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/tests/Feature/Input/InputFilterPestTest.php -------------------------------------------------------------------------------- /companion/tests/Feature/Remove/RemoveInputFilePestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/tests/Feature/Remove/RemoveInputFilePestTest.php -------------------------------------------------------------------------------- /companion/tests/Feature/VersionPestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/tests/Feature/VersionPestTest.php -------------------------------------------------------------------------------- /companion/tests/Feature/XLS/MultiSheet/MultiSheetPestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/tests/Feature/XLS/MultiSheet/MultiSheetPestTest.php -------------------------------------------------------------------------------- /companion/tests/Feature/output/OutputDirCreationPestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/tests/Feature/output/OutputDirCreationPestTest.php -------------------------------------------------------------------------------- /companion/tests/Pest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/tests/Pest.php -------------------------------------------------------------------------------- /companion/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/tests/TestCase.php -------------------------------------------------------------------------------- /companion/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /companion/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/companion/vite.config.js -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/license.txt -------------------------------------------------------------------------------- /pages/all/BookmarksFromSourceNone.pdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/BookmarksFromSourceNone.pdf.md -------------------------------------------------------------------------------- /pages/all/BookmarksFromSourceNonepdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/BookmarksFromSourceNonepdf.md -------------------------------------------------------------------------------- /pages/all/BookmarksFromSourceWordBookmarks.pdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/BookmarksFromSourceWordBookmarks.pdf.md -------------------------------------------------------------------------------- /pages/all/BookmarksFromSourceWordBookmarkspdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/BookmarksFromSourceWordBookmarkspdf.md -------------------------------------------------------------------------------- /pages/all/CommentsFromWordNoCommentspdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/CommentsFromWordNoCommentspdf.md -------------------------------------------------------------------------------- /pages/all/CommentsFromWordNonepdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/CommentsFromWordNonepdf.md -------------------------------------------------------------------------------- /pages/all/CommentsFromWordWordCommentspdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/CommentsFromWordWordCommentspdf.md -------------------------------------------------------------------------------- /pages/all/ConvertDirDocToFileDOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirDocToFileDOC.md -------------------------------------------------------------------------------- /pages/all/ConvertDirDocToFileFilteredHTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirDocToFileFilteredHTML.md -------------------------------------------------------------------------------- /pages/all/ConvertDirDocToFileHTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirDocToFileHTML.md -------------------------------------------------------------------------------- /pages/all/ConvertDirDocToFileODD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirDocToFileODD.md -------------------------------------------------------------------------------- /pages/all/ConvertDirDocToFilePDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirDocToFilePDF.md -------------------------------------------------------------------------------- /pages/all/ConvertDirDocToFileRTF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirDocToFileRTF.md -------------------------------------------------------------------------------- /pages/all/ConvertDirDocToFileTXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirDocToFileTXT.md -------------------------------------------------------------------------------- /pages/all/ConvertDirDocToFileXML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirDocToFileXML.md -------------------------------------------------------------------------------- /pages/all/ConvertDirDocToFileXPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirDocToFileXPS.md -------------------------------------------------------------------------------- /pages/all/ConvertDirDocToFile_NewExtDOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirDocToFile_NewExtDOC.md -------------------------------------------------------------------------------- /pages/all/ConvertDirRTFToFileDoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirRTFToFileDoc.md -------------------------------------------------------------------------------- /pages/all/ConvertDirRTFToFileHTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirRTFToFileHTML.md -------------------------------------------------------------------------------- /pages/all/ConvertDirRTFToFilePDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirRTFToFilePDF.md -------------------------------------------------------------------------------- /pages/all/ConvertDirRTFToFileTXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirRTFToFileTXT.md -------------------------------------------------------------------------------- /pages/all/ConvertDirTXTToFileDoc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirTXTToFileDoc.md -------------------------------------------------------------------------------- /pages/all/ConvertDirTXTToFilePDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirTXTToFilePDF.md -------------------------------------------------------------------------------- /pages/all/ConvertDirToFileRemoveDOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirToFileRemoveDOC.md -------------------------------------------------------------------------------- /pages/all/ConvertDirToFileRemoveFilteredHTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirToFileRemoveFilteredHTML.md -------------------------------------------------------------------------------- /pages/all/ConvertDirToFileRemoveHTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirToFileRemoveHTML.md -------------------------------------------------------------------------------- /pages/all/ConvertDirToFileRemoveODD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirToFileRemoveODD.md -------------------------------------------------------------------------------- /pages/all/ConvertDirToFileRemovePDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirToFileRemovePDF.md -------------------------------------------------------------------------------- /pages/all/ConvertDirToFileRemoveRTF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirToFileRemoveRTF.md -------------------------------------------------------------------------------- /pages/all/ConvertDirToFileRemoveTXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirToFileRemoveTXT.md -------------------------------------------------------------------------------- /pages/all/ConvertDirToFileRemoveXML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirToFileRemoveXML.md -------------------------------------------------------------------------------- /pages/all/ConvertDirToFileRemoveXPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDirToFileRemoveXPS.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileDOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileDOC.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileFilteredHTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileFilteredHTML.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileHTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileHTML.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileLog.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileLogL10PDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileLogL10PDF.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileLogL1PDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileLogL1PDF.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileLogL2PDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileLogL2PDF.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileLogL5PDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileLogL5PDF.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileLogL9PDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileLogL9PDF.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileLogPDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileLogPDF.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileODD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileODD.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFilePDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFilePDF.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileRTF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileRTF.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileTXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileTXT.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileWithWebhookDOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileWithWebhookDOC.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileWithWebhookFilteredHTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileWithWebhookFilteredHTML.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileWithWebhookHTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileWithWebhookHTML.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileWithWebhookODD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileWithWebhookODD.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileWithWebhookPDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileWithWebhookPDF.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileWithWebhookRTF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileWithWebhookRTF.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileWithWebhookXPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileWithWebhookXPS.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileXML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileXML.md -------------------------------------------------------------------------------- /pages/all/ConvertDocToFileXPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertDocToFileXPS.md -------------------------------------------------------------------------------- /pages/all/ConvertPPTToFileDOC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertPPTToFileDOC.md -------------------------------------------------------------------------------- /pages/all/ConvertPPTToFileFilteredHTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertPPTToFileFilteredHTML.md -------------------------------------------------------------------------------- /pages/all/ConvertPPTToFileHTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertPPTToFileHTML.md -------------------------------------------------------------------------------- /pages/all/ConvertPPTToFileJPG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertPPTToFileJPG.md -------------------------------------------------------------------------------- /pages/all/ConvertPPTToFileODD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertPPTToFileODD.md -------------------------------------------------------------------------------- /pages/all/ConvertPPTToFilePDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertPPTToFilePDF.md -------------------------------------------------------------------------------- /pages/all/ConvertPPTToFileRTF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertPPTToFileRTF.md -------------------------------------------------------------------------------- /pages/all/ConvertPPTToFileTXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertPPTToFileTXT.md -------------------------------------------------------------------------------- /pages/all/ConvertPPTToFileXML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertPPTToFileXML.md -------------------------------------------------------------------------------- /pages/all/ConvertPPTToFileXPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertPPTToFileXPS.md -------------------------------------------------------------------------------- /pages/all/ConvertPPTToFilegif.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertPPTToFilegif.md -------------------------------------------------------------------------------- /pages/all/ConvertPPTToFilepng.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertPPTToFilepng.md -------------------------------------------------------------------------------- /pages/all/ConvertPPTToFilepptx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertPPTToFilepptx.md -------------------------------------------------------------------------------- /pages/all/ConvertToPDFArchiveiso19005-1pdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertToPDFArchiveiso19005-1pdf.md -------------------------------------------------------------------------------- /pages/all/ConvertVSDToFilePDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertVSDToFilePDF.md -------------------------------------------------------------------------------- /pages/all/ConvertVSDToFileXPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertVSDToFileXPS.md -------------------------------------------------------------------------------- /pages/all/ConvertWithoutSubdirspdf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertWithoutSubdirspdf.md -------------------------------------------------------------------------------- /pages/all/ConvertXLSToFile9795xls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertXLSToFile9795xls.md -------------------------------------------------------------------------------- /pages/all/ConvertXLSToFileCSV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertXLSToFileCSV.md -------------------------------------------------------------------------------- /pages/all/ConvertXLSToFileHTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertXLSToFileHTML.md -------------------------------------------------------------------------------- /pages/all/ConvertXLSToFileODS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertXLSToFileODS.md -------------------------------------------------------------------------------- /pages/all/ConvertXLSToFilePDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertXLSToFilePDF.md -------------------------------------------------------------------------------- /pages/all/ConvertXLSToFileTXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertXLSToFileTXT.md -------------------------------------------------------------------------------- /pages/all/ConvertXLSToFileUNC9795xls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertXLSToFileUNC9795xls.md -------------------------------------------------------------------------------- /pages/all/ConvertXLSToFileUNCCSV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertXLSToFileUNCCSV.md -------------------------------------------------------------------------------- /pages/all/ConvertXLSToFileUNCHTML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertXLSToFileUNCHTML.md -------------------------------------------------------------------------------- /pages/all/ConvertXLSToFileUNCPDF.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertXLSToFileUNCPDF.md -------------------------------------------------------------------------------- /pages/all/ConvertXLSToFileUNCTXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertXLSToFileUNCTXT.md -------------------------------------------------------------------------------- /pages/all/ConvertXLSToFileUnicodeTXT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertXLSToFileUnicodeTXT.md -------------------------------------------------------------------------------- /pages/all/ConvertXLSToFileXML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertXLSToFileXML.md -------------------------------------------------------------------------------- /pages/all/ConvertXLSToFileXPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ConvertXLSToFileXPS.md -------------------------------------------------------------------------------- /pages/all/HelpCompatibilityMode.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/HelpCompatibilityMode.txt.md -------------------------------------------------------------------------------- /pages/all/HelpErrors.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/HelpErrors.txt.md -------------------------------------------------------------------------------- /pages/all/HelpJSONLog.txt.md: -------------------------------------------------------------------------------- 1 | JSON Format Help 2 | 3 | TODO! -------------------------------------------------------------------------------- /pages/all/HelpLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/HelpLog.md -------------------------------------------------------------------------------- /pages/all/HelpLog.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/HelpLog.txt.md -------------------------------------------------------------------------------- /pages/all/HelpWebHook.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/HelpWebHook.txt.md -------------------------------------------------------------------------------- /pages/all/OneDriveConversionOneDrive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/OneDriveConversionOneDrive.md -------------------------------------------------------------------------------- /pages/all/PPConst.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/PPConst.txt.md -------------------------------------------------------------------------------- /pages/all/ResourceReadme.md.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ResourceReadme.md.md -------------------------------------------------------------------------------- /pages/all/ShowVersionVersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ShowVersionVersion.md -------------------------------------------------------------------------------- /pages/all/WDConst.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/WDConst.txt.md -------------------------------------------------------------------------------- /pages/all/WdCompatibilityMode.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/WdCompatibilityMode.txt.md -------------------------------------------------------------------------------- /pages/all/XLConst.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/XLConst.txt.md -------------------------------------------------------------------------------- /pages/all/css/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/css/github.css -------------------------------------------------------------------------------- /pages/all/css/retro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/css/retro.css -------------------------------------------------------------------------------- /pages/all/css/splendor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/css/splendor.css -------------------------------------------------------------------------------- /pages/all/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/index.md -------------------------------------------------------------------------------- /pages/all/ppFormats.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ppFormats.txt.md -------------------------------------------------------------------------------- /pages/all/ppFormatsExt.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/ppFormatsExt.txt.md -------------------------------------------------------------------------------- /pages/all/templates/doctologo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/templates/doctologo.jpg -------------------------------------------------------------------------------- /pages/all/templates/maincaddytemplate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/templates/maincaddytemplate.html -------------------------------------------------------------------------------- /pages/all/vsConst.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/vsConst.txt.md -------------------------------------------------------------------------------- /pages/all/vsFormats.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/vsFormats.txt.md -------------------------------------------------------------------------------- /pages/all/vsFormatsExt.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/vsFormatsExt.txt.md -------------------------------------------------------------------------------- /pages/all/wdEncoding.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/wdEncoding.txt.md -------------------------------------------------------------------------------- /pages/all/wdExtraConst.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/wdExtraConst.txt.md -------------------------------------------------------------------------------- /pages/all/wdFormats.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/wdFormats.txt.md -------------------------------------------------------------------------------- /pages/all/wdFormatsExt.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/wdFormatsExt.txt.md -------------------------------------------------------------------------------- /pages/all/xlsFormats.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/xlsFormats.txt.md -------------------------------------------------------------------------------- /pages/all/xlsFormatsExt.txt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/pages/all/xlsFormatsExt.txt.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/readme.md -------------------------------------------------------------------------------- /src/ExcelUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/ExcelUtils.pas -------------------------------------------------------------------------------- /src/Excel_TLB_Constants.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/Excel_TLB_Constants.pas -------------------------------------------------------------------------------- /src/Exceptions/DocToExceptions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/Exceptions/DocToExceptions.pas -------------------------------------------------------------------------------- /src/ExtraFiles.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/ExtraFiles.rc -------------------------------------------------------------------------------- /src/ExtraFiles.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/ExtraFiles.res -------------------------------------------------------------------------------- /src/MainUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/MainUtils.pas -------------------------------------------------------------------------------- /src/PathUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/PathUtils.pas -------------------------------------------------------------------------------- /src/PowerPointUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/PowerPointUtils.pas -------------------------------------------------------------------------------- /src/PowerPoint_TLB_Constants.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/PowerPoint_TLB_Constants.pas -------------------------------------------------------------------------------- /src/ResourceUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/ResourceUtils.pas -------------------------------------------------------------------------------- /src/VisioUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/VisioUtils.pas -------------------------------------------------------------------------------- /src/Visio_TLB.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/Visio_TLB.pas -------------------------------------------------------------------------------- /src/WordUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/WordUtils.pas -------------------------------------------------------------------------------- /src/Word_TLB_Constants.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/Word_TLB_Constants.pas -------------------------------------------------------------------------------- /src/d2icon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/d2icon.bmp -------------------------------------------------------------------------------- /src/d2icon_QhU_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/d2icon_QhU_icon.ico -------------------------------------------------------------------------------- /src/datamodSSL.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/datamodSSL.dfm -------------------------------------------------------------------------------- /src/datamodSSL.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/datamodSSL.pas -------------------------------------------------------------------------------- /src/docto.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/docto.cfg -------------------------------------------------------------------------------- /src/docto.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/docto.dof -------------------------------------------------------------------------------- /src/docto.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/docto.dpr -------------------------------------------------------------------------------- /src/docto.dpr.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/docto.dpr.orig -------------------------------------------------------------------------------- /src/docto.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/docto.dproj -------------------------------------------------------------------------------- /src/docto.dproj.2007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/docto.dproj.2007 -------------------------------------------------------------------------------- /src/docto.dproj.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/docto.dproj.local -------------------------------------------------------------------------------- /src/docto.dproj.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/docto.dproj.orig -------------------------------------------------------------------------------- /src/docto.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/docto.res -------------------------------------------------------------------------------- /src/docto.todo: -------------------------------------------------------------------------------- 1 | {TODO : new todo} 2 | -------------------------------------------------------------------------------- /src/docto_Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/docto_Icon.ico -------------------------------------------------------------------------------- /src/docto_Icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/docto_Icon1.ico -------------------------------------------------------------------------------- /src/docto_Icon2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/docto_Icon2.ico -------------------------------------------------------------------------------- /src/res/HelpCompatibilityMode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/HelpCompatibilityMode.txt -------------------------------------------------------------------------------- /src/res/HelpErrors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/HelpErrors.txt -------------------------------------------------------------------------------- /src/res/HelpJSONLog.txt: -------------------------------------------------------------------------------- 1 | JSON Format Help 2 | 3 | TODO! -------------------------------------------------------------------------------- /src/res/HelpLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/HelpLog.txt -------------------------------------------------------------------------------- /src/res/HelpWebHook.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/HelpWebHook.txt -------------------------------------------------------------------------------- /src/res/PPConst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/PPConst.txt -------------------------------------------------------------------------------- /src/res/ResourceReadme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/ResourceReadme.md -------------------------------------------------------------------------------- /src/res/WDConst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/WDConst.txt -------------------------------------------------------------------------------- /src/res/WdCompatibilityMode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/WdCompatibilityMode.txt -------------------------------------------------------------------------------- /src/res/XLConst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/XLConst.txt -------------------------------------------------------------------------------- /src/res/ppFormats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/ppFormats.txt -------------------------------------------------------------------------------- /src/res/ppFormatsExt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/ppFormatsExt.txt -------------------------------------------------------------------------------- /src/res/vsConst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/vsConst.txt -------------------------------------------------------------------------------- /src/res/vsFormats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/vsFormats.txt -------------------------------------------------------------------------------- /src/res/vsFormatsExt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/vsFormatsExt.txt -------------------------------------------------------------------------------- /src/res/wdEncoding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/wdEncoding.txt -------------------------------------------------------------------------------- /src/res/wdExtraConst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/wdExtraConst.txt -------------------------------------------------------------------------------- /src/res/wdFormats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/wdFormats.txt -------------------------------------------------------------------------------- /src/res/wdFormatsExt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/wdFormatsExt.txt -------------------------------------------------------------------------------- /src/res/xlsFormats.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/xlsFormats.txt -------------------------------------------------------------------------------- /src/res/xlsFormatsExt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/res/xlsFormatsExt.txt -------------------------------------------------------------------------------- /src/shared/DynamicFileNameGenerator.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/src/shared/DynamicFileNameGenerator.pas -------------------------------------------------------------------------------- /test/InputFiles/Ballymaloe Mincemeat Tart.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/Ballymaloe Mincemeat Tart.doc -------------------------------------------------------------------------------- /test/InputFiles/Ballymaloe+Hot+Buttered+Lobster (2).doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/Ballymaloe+Hot+Buttered+Lobster (2).doc -------------------------------------------------------------------------------- /test/InputFiles/Ballymaloe+Hot+Buttered+Lobster 3 .doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/Ballymaloe+Hot+Buttered+Lobster 3 .doc -------------------------------------------------------------------------------- /test/InputFiles/Bookmarks+Chocolate+and+Hazelnut+Tart.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/Bookmarks+Chocolate+and+Hazelnut+Tart.doc -------------------------------------------------------------------------------- /test/InputFiles/CullohillApplePie - Copy.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/CullohillApplePie - Copy.doc -------------------------------------------------------------------------------- /test/InputFiles/CullohillApplePie.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/CullohillApplePie.doc -------------------------------------------------------------------------------- /test/InputFiles/CullohillApplePie_Protected.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/CullohillApplePie_Protected.doc -------------------------------------------------------------------------------- /test/InputFiles/DocWithMacro.docm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/DocWithMacro.docm -------------------------------------------------------------------------------- /test/InputFiles/DocWithMacro.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/DocWithMacro.docx -------------------------------------------------------------------------------- /test/InputFiles/DocWithMacro_oldext.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/DocWithMacro_oldext.doc -------------------------------------------------------------------------------- /test/InputFiles/Document Forces Save - GEOCADx (1).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/Document Forces Save - GEOCADx (1).docx -------------------------------------------------------------------------------- /test/InputFiles/GEOCADx (1).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/GEOCADx (1).docx -------------------------------------------------------------------------------- /test/InputFiles/Mayonnaise.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/Mayonnaise.doc -------------------------------------------------------------------------------- /test/InputFiles/MincemeatTart_withcomments.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/MincemeatTart_withcomments.doc -------------------------------------------------------------------------------- /test/InputFiles/Pie3.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/Pie3.doc -------------------------------------------------------------------------------- /test/InputFiles/PigeonPie.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/PigeonPie.doc -------------------------------------------------------------------------------- /test/InputFiles/Testfilewithcomments.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/Testfilewithcomments.docx -------------------------------------------------------------------------------- /test/InputFiles/UnicodeTest.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/UnicodeTest.doc -------------------------------------------------------------------------------- /test/InputFiles/Week 1 Test with PrintArea.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/Week 1 Test with PrintArea.xls -------------------------------------------------------------------------------- /test/InputFiles/Week 1 Test.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/Week 1 Test.xls -------------------------------------------------------------------------------- /test/InputFiles/Week 2 Test.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/Week 2 Test.xls -------------------------------------------------------------------------------- /test/InputFiles/others/Ballymaloe+Hot+Buttered+Lobster (2).rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/others/Ballymaloe+Hot+Buttered+Lobster (2).rtf -------------------------------------------------------------------------------- /test/InputFiles/others/Ballymaloe+Hot+Buttered+Lobster 3 .rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/others/Ballymaloe+Hot+Buttered+Lobster 3 .rtf -------------------------------------------------------------------------------- /test/InputFiles/others/Bookmarks+Chocolate+and+Hazelnut+Tart.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/others/Bookmarks+Chocolate+and+Hazelnut+Tart.rtf -------------------------------------------------------------------------------- /test/InputFiles/others/CullohillApplePie.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/others/CullohillApplePie.rtf -------------------------------------------------------------------------------- /test/InputFiles/others/Mayonnaise.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/others/Mayonnaise.rtf -------------------------------------------------------------------------------- /test/InputFiles/others/Pie3.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/others/Pie3.rtf -------------------------------------------------------------------------------- /test/InputFiles/others/PigeonPie.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/others/PigeonPie.rtf -------------------------------------------------------------------------------- /test/InputFiles/others/UnicodeTest.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/others/UnicodeTest.rtf -------------------------------------------------------------------------------- /test/InputFiles/others/Week 1 Test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/others/Week 1 Test.csv -------------------------------------------------------------------------------- /test/InputFiles/others/Week1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/others/Week1.csv -------------------------------------------------------------------------------- /test/InputFiles/others/pres1.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/others/pres1.rtf -------------------------------------------------------------------------------- /test/InputFiles/pie3Text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/InputFiles/pie3Text.txt -------------------------------------------------------------------------------- /test/TestDocTo_Quiet.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/TestDocTo_Quiet.bat -------------------------------------------------------------------------------- /test/Test_WordMacros.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/Test_WordMacros.bat -------------------------------------------------------------------------------- /test/inputfilespp/Presentation1.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/inputfilespp/Presentation1.ppt -------------------------------------------------------------------------------- /test/inputfilespp/Presentation2.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/inputfilespp/Presentation2.ppt -------------------------------------------------------------------------------- /test/inputfilespp/campus map tower room.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/inputfilespp/campus map tower room.pptx -------------------------------------------------------------------------------- /test/inputfilesvs/payslips.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/inputfilesvs/payslips.vsdx -------------------------------------------------------------------------------- /test/inputfilesvs/payslips.vssx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/inputfilesvs/payslips.vssx -------------------------------------------------------------------------------- /test/inputfilesxl/Book1 Single Sheet.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/inputfilesxl/Book1 Single Sheet.xlsx -------------------------------------------------------------------------------- /test/inputfilesxl/Book1 with password.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/inputfilesxl/Book1 with password.xls -------------------------------------------------------------------------------- /test/inputfilesxl/Book1WithMacros.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/inputfilesxl/Book1WithMacros.xlsm -------------------------------------------------------------------------------- /test/inputfilesxl/Book1WithMacrosCopy.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/inputfilesxl/Book1WithMacrosCopy.xls -------------------------------------------------------------------------------- /test/inputfilesxl/Week 1 Test.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/inputfilesxl/Week 1 Test.xls -------------------------------------------------------------------------------- /test/inputfilesxl/Week 2 xlsx Test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/inputfilesxl/Week 2 xlsx Test.xlsx -------------------------------------------------------------------------------- /test/inputfilesxl/wk1test-MultiSheet.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/inputfilesxl/wk1test-MultiSheet.xls -------------------------------------------------------------------------------- /test/inputfilesxl/wk1test.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/inputfilesxl/wk1test.xls -------------------------------------------------------------------------------- /test/pptesdir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/pptesdir.bat -------------------------------------------------------------------------------- /test/pptestrelative.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/pptestrelative.bat -------------------------------------------------------------------------------- /test/testDocTo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testDocTo.bat -------------------------------------------------------------------------------- /test/testDocToRelative.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testDocToRelative.bat -------------------------------------------------------------------------------- /test/testDocTo_basic.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testDocTo_basic.bat -------------------------------------------------------------------------------- /test/testDocTo_basic_withlog.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testDocTo_basic_withlog.bat -------------------------------------------------------------------------------- /test/testIgnoreDocs.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testIgnoreDocs.bat -------------------------------------------------------------------------------- /test/testSkipExistingConverts.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testSkipExistingConverts.bat -------------------------------------------------------------------------------- /test/test_DocProp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/test_DocProp.bat -------------------------------------------------------------------------------- /test/test_DocStructure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/test_DocStructure.bat -------------------------------------------------------------------------------- /test/test_KeepIRM.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/test_KeepIRM.bat -------------------------------------------------------------------------------- /test/test_Optimizefor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/test_Optimizefor.bat -------------------------------------------------------------------------------- /test/test_missingfont.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/test_missingfont.bat -------------------------------------------------------------------------------- /test/testbookmarks.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testbookmarks.bat -------------------------------------------------------------------------------- /test/testcsvrun.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testcsvrun.bat -------------------------------------------------------------------------------- /test/testhelp.bat: -------------------------------------------------------------------------------- 1 | ..\exe\32\docto.exe -h -------------------------------------------------------------------------------- /test/testhook.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testhook.bat -------------------------------------------------------------------------------- /test/testhookdir.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testhookdir.bat -------------------------------------------------------------------------------- /test/testhttps.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testhttps.bat -------------------------------------------------------------------------------- /test/testlogging.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testlogging.bat -------------------------------------------------------------------------------- /test/testmultihook.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testmultihook.bat -------------------------------------------------------------------------------- /test/testmultihook2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testmultihook2.bat -------------------------------------------------------------------------------- /test/testparaaction.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testparaaction.bat -------------------------------------------------------------------------------- /test/testppDocTo.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testppDocTo.bat -------------------------------------------------------------------------------- /test/testrelative.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testrelative.bat -------------------------------------------------------------------------------- /test/testremove.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testremove.bat -------------------------------------------------------------------------------- /test/testrun longparam.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testrun longparam.bat -------------------------------------------------------------------------------- /test/testrun_DirOnly.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testrun_DirOnly.bat -------------------------------------------------------------------------------- /test/testrun_Rachel.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testrun_Rachel.bat -------------------------------------------------------------------------------- /test/testrunbreak.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testrunbreak.bat -------------------------------------------------------------------------------- /test/testrundironly.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testrundironly.bat -------------------------------------------------------------------------------- /test/testrunpages.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testrunpages.bat -------------------------------------------------------------------------------- /test/testrunrtf.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testrunrtf.bat -------------------------------------------------------------------------------- /test/testspecific.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testspecific.bat -------------------------------------------------------------------------------- /test/teststdout.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/teststdout.bat -------------------------------------------------------------------------------- /test/testversion.bat: -------------------------------------------------------------------------------- 1 | REM Test version 2 | "../exe/32/docto.exe" -v -------------------------------------------------------------------------------- /test/testxls_relative.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testxls_relative.bat -------------------------------------------------------------------------------- /test/testxlsfile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testxlsfile.bat -------------------------------------------------------------------------------- /test/testxlspass.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testxlspass.bat -------------------------------------------------------------------------------- /test/testxlsrun.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testxlsrun.bat -------------------------------------------------------------------------------- /test/testxlsslashes.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tobya/DocTo/HEAD/test/testxlsslashes.bat --------------------------------------------------------------------------------