├── .gitignore ├── Config ├── BundleInfo.wl └── LoadInfo.wl ├── Dependencies ├── BTools │ ├── .scratch │ │ └── scratch.nb │ ├── All.m │ ├── BTools.wl │ ├── BTools │ │ ├── Cruft.wl │ │ ├── Developer.wl │ │ ├── Experimental.wl │ │ ├── External.wl │ │ ├── External │ │ │ ├── Git.wl │ │ │ └── Google.wl │ │ ├── Formatting.wl │ │ ├── Formatting │ │ │ └── FormattingTools.wl │ │ ├── Frameworks.wl │ │ ├── FrontEnd.wl │ │ ├── Paclets.wl │ │ ├── Paclets │ │ │ ├── AppBuilder.wl │ │ │ ├── DocGen.wl │ │ │ └── PacletTools.wl │ │ ├── Utilities.wl │ │ ├── Utilities │ │ │ └── DocFind.wl │ │ ├── Web.wl │ │ └── Web │ │ │ ├── Markdown.wl │ │ │ └── Pelican.wl │ ├── BToolsLoader.wl │ ├── Config │ │ ├── BundleInfo.m │ │ ├── DocInfo.m │ │ ├── LoadInfo.m │ │ └── UploadInfo.m │ ├── FrontEnd │ │ └── StyleSheets │ │ │ └── BTools │ │ │ ├── CodeNotebook.nb │ │ │ ├── CodePackage.nb │ │ │ ├── CodePackagePlain.nb │ │ │ ├── DocGen.nb │ │ │ ├── MarkdownNotebook.nb │ │ │ └── SyntaxHighlighting.nb │ ├── Kernel │ │ └── init.m │ ├── LICENSE.md │ ├── Packages │ │ ├── Developer │ │ │ ├── AuthDialogs.m │ │ │ ├── ContextTools.m │ │ │ ├── EncodedCache.m │ │ │ ├── FileTools.m │ │ │ ├── FormattingTools.m │ │ │ ├── FrontEndTools.m │ │ │ ├── FunctionTools.m │ │ │ ├── KeyChain.m │ │ │ ├── SymbolTools.m │ │ │ └── SyncTools.m │ │ ├── External │ │ │ ├── Git │ │ │ │ ├── Git.m │ │ │ │ ├── GitHub.m │ │ │ │ └── SVN.m │ │ │ ├── GitConnection.m │ │ │ ├── Google.m │ │ │ ├── Google │ │ │ │ ├── Analytics.m │ │ │ │ ├── Common.m │ │ │ │ └── Drive.m │ │ │ ├── ProcessTools.m │ │ │ └── PyTools.m │ │ ├── Formatting │ │ │ ├── FormattingTools.m │ │ │ ├── FormattingTools │ │ │ │ └── FormattingToolsPackage.m │ │ │ └── NotebookTools.m │ │ ├── Frameworks │ │ │ ├── CuratedData.m │ │ │ └── CustomServiceConnection.m │ │ ├── FrontEnd │ │ │ ├── IndentableCells.m │ │ │ ├── StylesheetEdits.m │ │ │ └── SyntaxColoring.m │ │ ├── Paclets │ │ │ ├── AppBuilder.m │ │ │ ├── AppBuilder │ │ │ │ ├── Builder.m │ │ │ │ ├── Core.m │ │ │ │ ├── DocGen.m │ │ │ │ ├── Git.m │ │ │ │ ├── Paclets.m │ │ │ │ └── Testing.m │ │ │ ├── DocGen.m │ │ │ ├── DocGen │ │ │ │ ├── DocGenCore.m │ │ │ │ ├── GuidePages.m │ │ │ │ ├── SymbolPages.m │ │ │ │ ├── TutorialPages.m │ │ │ │ └── WebExport.m │ │ │ ├── DocumentationSiteBuilder.m │ │ │ ├── PacletExecute.m │ │ │ ├── PacletServerBuilder.m │ │ │ └── PacletTools │ │ │ │ ├── PacletServerBuilderPackage.m │ │ │ │ └── PacletTools.m │ │ ├── Utilities │ │ │ ├── DocFind.m │ │ │ ├── DocFind │ │ │ │ └── DocFind.m │ │ │ ├── FEMisc.m │ │ │ ├── NotebookTools.m │ │ │ ├── ScrapeTools.m │ │ │ └── TRTools.m │ │ └── Web │ │ │ ├── HTMLTools.m │ │ │ ├── Markdown │ │ │ ├── MarkdownParse.m │ │ │ └── NotebookMarkdownInternals.m │ │ │ ├── MarkdownParsers.m │ │ │ ├── NotebookToMarkdown.m │ │ │ └── SiteBuilder.m │ ├── PacletIcon.png │ ├── PacletIconBig.png │ ├── README.md │ └── Resources │ │ ├── Templates │ │ ├── ContextLoader.wl │ │ ├── CuratedDataTemplate.nb │ │ ├── Initialization │ │ │ ├── Loader │ │ │ │ ├── Autocomplete.wl │ │ │ │ ├── Constants.wl │ │ │ │ ├── Dependencies.wl │ │ │ │ ├── Exceptions.wl │ │ │ │ ├── FrontEnd.wl │ │ │ │ ├── Loading.wl │ │ │ │ ├── MainLoader.wl │ │ │ │ ├── Paths.wl │ │ │ │ └── Usages.wl │ │ │ ├── Main.wl │ │ │ └── init.m │ │ ├── PaletteTemplate.nb │ │ ├── README.nb │ │ ├── SafeContexts.tr │ │ ├── ServiceConnectionTemplate.nb │ │ └── specialArgFunctions.tr │ │ └── Themes │ │ └── template_lib │ │ ├── README.md │ │ ├── include │ │ ├── analytics.html │ │ ├── article_info.html │ │ ├── breadcrumbs.html │ │ ├── comments.html │ │ ├── config │ │ │ ├── icons.m │ │ │ ├── links.m │ │ │ ├── page_links.m │ │ │ ├── social_links.m │ │ │ └── stylesheets.m │ │ ├── copyable_input.css │ │ ├── copyable_input.html │ │ ├── copyable_input.js │ │ ├── footer_notebook.html │ │ ├── lib │ │ │ ├── createRSSElementDescription.m │ │ │ ├── embedNotebook.m │ │ │ ├── extractBody.m │ │ │ ├── getIndexListingBy.m │ │ │ ├── getPageTitle.m │ │ │ ├── getSiteLinks.m │ │ │ ├── getSiteName.m │ │ │ ├── getTemplateArguments.m │ │ │ ├── getTemplateArgumentsNoArg.m │ │ │ ├── getTemplateVariable.m │ │ │ ├── loadTemplateLib.m │ │ │ ├── makeBlogrollLinkList.m │ │ │ ├── makeSiteElements.m │ │ │ ├── makeSiteHyperlink.m │ │ │ ├── makeSiteIcons.m │ │ │ ├── makeSiteImg.m │ │ │ ├── makeSiteLink.m │ │ │ ├── makeSiteLinkList.m │ │ │ ├── makeSiteStylesheet.m │ │ │ ├── makeSiteTagLinks.m │ │ │ ├── makeSocialLinkList.m │ │ │ ├── nextPreviousButtons.m │ │ │ ├── prepArticleInfo.m │ │ │ ├── reslotMissing.m │ │ │ ├── sortIndexListingBy.m │ │ │ ├── templateArgumentLookup.m │ │ │ ├── templates │ │ │ │ ├── cloud-notebook.html │ │ │ │ ├── includeComments.html │ │ │ │ ├── next-previous.html │ │ │ │ ├── pageLocalizedBlock.html │ │ │ │ ├── pagination.html │ │ │ │ ├── siteElement.html │ │ │ │ ├── siteNameJoin.html │ │ │ │ ├── varDefinedBlock.html │ │ │ │ ├── varNotFalseBlock.html │ │ │ │ ├── varNotTrueBlock.html │ │ │ │ └── varTrueBlock.html │ │ │ ├── varDefined.m │ │ │ ├── varMatch.m │ │ │ ├── varNotFalse.m │ │ │ ├── varNotTrue.m │ │ │ └── varTrue.m │ │ ├── load_jQuery.html │ │ ├── mathjax.html │ │ ├── next-previous.html │ │ ├── page-footer.html │ │ ├── page-header.html │ │ ├── pagination.html │ │ ├── primary-content.html │ │ ├── related-posts.html │ │ ├── rss.html │ │ ├── search.html │ │ ├── site-icons.html │ │ ├── site-stylesheets.html │ │ └── site-title.html │ │ ├── static │ │ ├── css │ │ │ ├── bootstrap.min.css │ │ │ ├── common.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ ├── glyphicons-halflings-regular.woff2 │ │ │ └── mathematica │ │ │ │ ├── Mathematica-Bold.woff │ │ │ │ ├── Mathematica.woff │ │ │ │ ├── MathematicaMono-Bold.woff │ │ │ │ └── MathematicaMono.woff │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ └── jquery.min.js │ │ └── prettify │ │ │ ├── src │ │ │ ├── lang-mma.min.js │ │ │ ├── prettify.css │ │ │ ├── prettify.js │ │ │ └── run_prettify.js │ │ │ └── styles │ │ │ └── prettify-mma.min.css │ │ ├── templates │ │ ├── article.html │ │ ├── author.html │ │ ├── authors.html │ │ ├── base.html │ │ ├── categories.html │ │ ├── category.html │ │ ├── include │ │ │ ├── analytics.html │ │ │ ├── comments.html │ │ │ ├── config │ │ │ │ ├── icons.m │ │ │ │ ├── links.m │ │ │ │ ├── page_links.m │ │ │ │ ├── social_links.m │ │ │ │ └── stylesheets.m │ │ │ ├── copyable_input.html │ │ │ ├── pagination.html │ │ │ ├── rss.html │ │ │ └── search.html │ │ ├── index.html │ │ ├── page.html │ │ ├── redirect.html │ │ ├── rss_feed.html │ │ ├── search.html │ │ ├── tag.html │ │ └── tags.html │ │ └── tipuesearch │ │ ├── tipuesearch.css │ │ ├── tipuesearch.js │ │ ├── tipuesearch.min.js │ │ ├── tipuesearch_content.js │ │ └── tipuesearch_set.js ├── BugTracker │ ├── BugTracker.wl │ ├── BugTrackerLoader.wl │ ├── Config │ │ ├── BundleInfo.m │ │ └── LoadInfo.wl │ ├── FrontEnd │ │ ├── StyleSheets │ │ │ └── BugTracker │ │ │ │ └── Private │ │ │ │ └── BugTracker.nb │ │ └── SystemResources │ │ │ └── Bitmaps │ │ │ └── BugTracker │ │ │ ├── BeetleBackground.png │ │ │ ├── BeetleBackgroundBorder.png │ │ │ ├── BeetleBig.png │ │ │ ├── BeetleIcon.png │ │ │ ├── ButtonAppearanceLeft-Default.png │ │ │ ├── ButtonAppearanceLeft-Hover.png │ │ │ ├── ButtonAppearanceLeft-Pressed.png │ │ │ ├── ButtonAppearanceRight-Default.png │ │ │ ├── ButtonAppearanceRight-Hover.png │ │ │ ├── ButtonAppearanceRight-Pressed.png │ │ │ ├── Search-Default.png │ │ │ ├── Search-Hover.png │ │ │ ├── Search-Pressed.png │ │ │ ├── Search.png │ │ │ └── SearchBackground-Hover.png │ ├── Kernel │ │ └── init.m │ ├── LICENSE.md │ ├── Packages │ │ ├── Interfaces │ │ │ └── BugsInterface.m │ │ └── Package │ │ │ ├── BugIndices.m │ │ │ ├── BugNotebooks.m │ │ │ ├── BugObject.m │ │ │ ├── BugTrackerStylesheet.m │ │ │ └── PacletBugs.m │ └── README.md ├── Ems │ ├── Config │ │ ├── BundleInfo.m │ │ └── LoadInfo.m │ ├── Ems.wl │ ├── EmsLoader.wl │ ├── FrontEnd │ │ └── Palettes │ │ │ └── Ems │ │ │ └── EmsAssistant.nb │ ├── Kernel │ │ └── init.m │ ├── LICENSE.md │ ├── Packages │ │ ├── Main.m │ │ └── Package │ │ │ ├── GitHub │ │ │ ├── GitHub.m │ │ │ └── Helpers │ │ │ │ └── Helpers.m │ │ │ └── Sites │ │ │ ├── Build.m │ │ │ └── Sites.m │ ├── README.md │ ├── Resources │ │ ├── Icons │ │ │ ├── banner.png │ │ │ ├── banner_tall.png │ │ │ ├── favicon-16x16.png │ │ │ └── favicon-32x32.png │ │ ├── Templates │ │ │ ├── blog │ │ │ │ ├── SiteConfig.wl │ │ │ │ └── content │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ ├── pages │ │ │ │ │ ├── About.md │ │ │ │ │ └── About.nb │ │ │ │ │ ├── posts │ │ │ │ │ ├── Post #1.md │ │ │ │ │ ├── Post #1.nb │ │ │ │ │ ├── Second Post.md │ │ │ │ │ └── Second Post.nb │ │ │ │ │ └── site-logo.png │ │ │ ├── book │ │ │ │ ├── SiteConfig.wl │ │ │ │ └── content │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ ├── pages │ │ │ │ │ ├── About.md │ │ │ │ │ └── About.nb │ │ │ │ │ └── site-logo.png │ │ │ ├── docs │ │ │ │ ├── SiteConfig.wl │ │ │ │ └── content │ │ │ │ │ ├── banner.png │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ ├── guide │ │ │ │ │ ├── Guide.md │ │ │ │ │ └── Guide.nb │ │ │ │ │ ├── pages │ │ │ │ │ ├── About.md │ │ │ │ │ └── About.nb │ │ │ │ │ ├── ref │ │ │ │ │ ├── Function.md │ │ │ │ │ ├── Function.nb │ │ │ │ │ ├── Function1.md │ │ │ │ │ ├── Function1.nb │ │ │ │ │ ├── Function2.md │ │ │ │ │ └── Function2.nb │ │ │ │ │ └── site-logo.png │ │ │ ├── portfolio │ │ │ │ ├── SiteConfig.wl │ │ │ │ └── content │ │ │ │ │ ├── favicon-16x16.png │ │ │ │ │ ├── favicon-32x32.png │ │ │ │ │ ├── pages │ │ │ │ │ ├── About.md │ │ │ │ │ └── About.nb │ │ │ │ │ ├── posts │ │ │ │ │ ├── Project 1.md │ │ │ │ │ ├── Project 1.nb │ │ │ │ │ ├── Project 2.md │ │ │ │ │ ├── Project 2.nb │ │ │ │ │ ├── Project 3.md │ │ │ │ │ └── Project 3.nb │ │ │ │ │ └── site-logo.png │ │ │ └── scroll │ │ │ │ ├── SiteConfig.wl │ │ │ │ └── content │ │ │ │ ├── banner.png │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── pages │ │ │ │ ├── About.md │ │ │ │ └── About.nb │ │ │ │ ├── posts │ │ │ │ ├── Post #1.md │ │ │ │ ├── Post #1.nb │ │ │ │ ├── Second Post.md │ │ │ │ └── Second Post.nb │ │ │ │ └── site-logo.png │ │ └── Themes │ │ │ ├── bootstrap-blog │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.amelia.min.css │ │ │ │ │ ├── bootstrap.cosmo.min.css │ │ │ │ │ ├── bootstrap.darkly.min.css │ │ │ │ │ ├── bootstrap.mma.min.css │ │ │ │ │ ├── bootstrap.sandstone.min.css │ │ │ │ │ ├── bootstrap.simplex.min.css │ │ │ │ │ ├── bootstrap.slate.min.css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ ├── font-awesome.css.map │ │ │ │ │ ├── style.css │ │ │ │ │ └── typogrify.css │ │ │ │ └── js │ │ │ │ │ ├── bodypadding.js │ │ │ │ │ └── jXHR.js │ │ │ └── templates │ │ │ │ ├── archives.html │ │ │ │ ├── article.html │ │ │ │ ├── article_list.html │ │ │ │ ├── author.html │ │ │ │ ├── authors.html │ │ │ │ ├── base.html │ │ │ │ ├── categories.html │ │ │ │ ├── category.html │ │ │ │ ├── include │ │ │ │ ├── aboutme.html │ │ │ │ ├── banner.html │ │ │ │ ├── config │ │ │ │ │ ├── icons.m │ │ │ │ │ ├── links.m │ │ │ │ │ ├── page_links.m │ │ │ │ │ ├── social_links.m │ │ │ │ │ └── stylesheets.m │ │ │ │ ├── footer.html │ │ │ │ ├── sidebar.html │ │ │ │ └── sidebar │ │ │ │ │ ├── links.html │ │ │ │ │ ├── recent_posts.html │ │ │ │ │ └── social.html │ │ │ │ ├── index.html │ │ │ │ ├── page.html │ │ │ │ ├── tag.html │ │ │ │ └── tags.html │ │ │ ├── bootstrap-book │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.amelia.min.css │ │ │ │ │ ├── bootstrap.cosmo.min.css │ │ │ │ │ ├── bootstrap.darkly.min.css │ │ │ │ │ ├── bootstrap.mma.min.css │ │ │ │ │ ├── bootstrap.sandstone.min.css │ │ │ │ │ ├── bootstrap.simplex.min.css │ │ │ │ │ ├── bootstrap.slate.min.css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ ├── font-awesome.css.map │ │ │ │ │ ├── style.css │ │ │ │ │ └── typogrify.css │ │ │ │ └── js │ │ │ │ │ ├── accordion.js │ │ │ │ │ ├── bodypadding.js │ │ │ │ │ └── jXHR.js │ │ │ └── templates │ │ │ │ ├── archives.html │ │ │ │ ├── article.html │ │ │ │ ├── article_list.html │ │ │ │ ├── author.html │ │ │ │ ├── authors.html │ │ │ │ ├── base.html │ │ │ │ ├── categories.html │ │ │ │ ├── category.html │ │ │ │ ├── include │ │ │ │ ├── aboutme.html │ │ │ │ ├── banner.html │ │ │ │ ├── config │ │ │ │ │ ├── icons.m │ │ │ │ │ ├── links.m │ │ │ │ │ ├── page_links.m │ │ │ │ │ ├── social_links.m │ │ │ │ │ └── stylesheets.m │ │ │ │ ├── footer.html │ │ │ │ ├── navtab.html │ │ │ │ ├── sidebar.html │ │ │ │ ├── sidebar │ │ │ │ │ ├── links.html │ │ │ │ │ ├── recent_posts.html │ │ │ │ │ └── social.html │ │ │ │ └── tocbar.html │ │ │ │ ├── index.html │ │ │ │ ├── page.html │ │ │ │ ├── tag.html │ │ │ │ └── tags.html │ │ │ ├── bootstrap-docs │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.amelia.min.css │ │ │ │ │ ├── bootstrap.cosmo.min.css │ │ │ │ │ ├── bootstrap.darkly.min.css │ │ │ │ │ ├── bootstrap.mma.min.css │ │ │ │ │ ├── bootstrap.sandstone.min.css │ │ │ │ │ ├── bootstrap.simplex.min.css │ │ │ │ │ ├── bootstrap.slate.min.css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ ├── font-awesome.css.map │ │ │ │ │ ├── style.css │ │ │ │ │ └── typogrify.css │ │ │ │ └── js │ │ │ │ │ ├── bodypadding.js │ │ │ │ │ └── jXHR.js │ │ │ └── templates │ │ │ │ ├── archives.html │ │ │ │ ├── article.html │ │ │ │ ├── author.html │ │ │ │ ├── authors.html │ │ │ │ ├── base.html │ │ │ │ ├── categories.html │ │ │ │ ├── category.html │ │ │ │ ├── function.html │ │ │ │ ├── guide.html │ │ │ │ ├── include │ │ │ │ ├── aboutme.html │ │ │ │ ├── banner.html │ │ │ │ ├── config │ │ │ │ │ ├── icons.m │ │ │ │ │ ├── links.m │ │ │ │ │ ├── page_links.m │ │ │ │ │ ├── social_links.m │ │ │ │ │ └── stylesheets.m │ │ │ │ ├── footer.html │ │ │ │ ├── sidebar.html │ │ │ │ └── sidebar │ │ │ │ │ ├── links.html │ │ │ │ │ ├── recent_posts.html │ │ │ │ │ └── social.html │ │ │ │ ├── index.html │ │ │ │ ├── indexes │ │ │ │ ├── functions.html │ │ │ │ ├── guides.html │ │ │ │ └── tutorials.html │ │ │ │ ├── page.html │ │ │ │ ├── tag.html │ │ │ │ ├── tags.html │ │ │ │ └── tutorial.html │ │ │ ├── bootstrap-portfolio │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.amelia.min.css │ │ │ │ │ ├── bootstrap.cosmo.min.css │ │ │ │ │ ├── bootstrap.darkly.min.css │ │ │ │ │ ├── bootstrap.mma.min.css │ │ │ │ │ ├── bootstrap.sandstone.min.css │ │ │ │ │ ├── bootstrap.simplex.min.css │ │ │ │ │ ├── bootstrap.slate.min.css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ ├── font-awesome.css.map │ │ │ │ │ ├── style.css │ │ │ │ │ └── typogrify.css │ │ │ │ └── js │ │ │ │ │ ├── bodypadding.js │ │ │ │ │ └── jXHR.js │ │ │ └── templates │ │ │ │ ├── archives.html │ │ │ │ ├── article.html │ │ │ │ ├── article_grid.html │ │ │ │ ├── article_list.html │ │ │ │ ├── author.html │ │ │ │ ├── authors.html │ │ │ │ ├── base.html │ │ │ │ ├── categories.html │ │ │ │ ├── category.html │ │ │ │ ├── include │ │ │ │ ├── aboutme.html │ │ │ │ ├── banner.html │ │ │ │ ├── config │ │ │ │ │ ├── icons.m │ │ │ │ │ ├── links.m │ │ │ │ │ ├── page_links.m │ │ │ │ │ ├── social_links.m │ │ │ │ │ └── stylesheets.m │ │ │ │ ├── footer.html │ │ │ │ ├── sidebar.html │ │ │ │ └── sidebar │ │ │ │ │ ├── links.html │ │ │ │ │ ├── recent_posts.html │ │ │ │ │ └── social.html │ │ │ │ ├── index.html │ │ │ │ ├── page.html │ │ │ │ ├── tag.html │ │ │ │ └── tags.html │ │ │ └── bootstrap-single-page │ │ │ ├── README.md │ │ │ ├── static │ │ │ ├── css │ │ │ │ ├── bootstrap.amelia.min.css │ │ │ │ ├── bootstrap.cosmo.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.flatly.min.css │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.mma.min.css │ │ │ │ ├── bootstrap.sandstone.min.css │ │ │ │ ├── bootstrap.simplex.min.css │ │ │ │ ├── bootstrap.slate.min.css │ │ │ │ ├── grayscale.css │ │ │ │ ├── style.css │ │ │ │ └── typogrify.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ ├── img │ │ │ │ └── map-marker.png │ │ │ └── js │ │ │ │ ├── grayscale.js │ │ │ │ └── jquery.easing.min.js │ │ │ └── templates │ │ │ ├── include │ │ │ ├── banner.html │ │ │ └── config │ │ │ │ ├── icons.m │ │ │ │ ├── links.m │ │ │ │ ├── page_links.m │ │ │ │ ├── social_links.m │ │ │ │ └── stylesheets.m │ │ │ └── index.html │ ├── thumbnail.png │ └── thumbnail_big.png ├── InterfaceObjects │ ├── Config │ │ ├── BundleInfo.wl │ │ └── LoadInfo.wl │ ├── InterfaceObjects.wl │ ├── InterfaceObjectsLoader.wl │ ├── Kernel │ │ └── init.m │ └── Packages │ │ └── Main.m └── SimpleDocs │ ├── Config │ ├── BundleInfo.m │ └── LoadInfo.wl │ ├── FrontEnd │ ├── Palettes │ │ └── SimpleDocs │ │ │ └── SimpleDocsHelper.nb │ └── StyleSheets │ │ └── SimpleDocs │ │ └── SimpleDocs.nb │ ├── Kernel │ └── init.m │ ├── LICENSE.md │ ├── Packages │ ├── Main.m │ └── Package │ │ └── SimpleDocs.m │ ├── README.md │ ├── Resources │ ├── SimpleDocsHelperGenerator.nb │ ├── icon.png │ └── icon_big.png │ ├── SimpleDocs.wl │ ├── SimpleDocs │ └── Package.wl │ └── SimpleDocsLoader.wl ├── Documentation ├── English │ ├── SimpleDocsStyles.nb │ └── Tutorials │ │ └── Getting Started.nb └── SimpleDocsStyles.nb ├── EasyIDE.wl ├── EasyIDE ├── Notebooks.wl └── Notebooks │ ├── Docs.wl │ ├── FormattingElements.wl │ ├── Manipulation.wl │ ├── Projects.wl │ └── Utilities.wl ├── EasyIDELoader.wl ├── FrontEnd ├── StyleSheets │ └── EasyIDE │ │ ├── DarkGUI.nb │ │ ├── DarkMode.nb │ │ ├── Extensions │ │ ├── DarkGUI │ │ │ ├── Article │ │ │ │ ├── JournalArticle.nb │ │ │ │ └── Preprint.nb │ │ │ ├── Book │ │ │ │ ├── Monograph.nb │ │ │ │ └── Textbook.nb │ │ │ ├── BugTracker.nb │ │ │ ├── CodeNotebook.nb │ │ │ ├── CodePackage.nb │ │ │ ├── Core │ │ │ │ ├── Clear │ │ │ │ │ ├── All.nb │ │ │ │ │ ├── Basics.nb │ │ │ │ │ └── Core.nb │ │ │ │ ├── Plain.nb │ │ │ │ └── Publication.nb │ │ │ ├── Dialog.nb │ │ │ ├── Docs.nb │ │ │ ├── Markdown.nb │ │ │ ├── Package.nb │ │ │ ├── Report │ │ │ │ ├── AutomatedReport.nb │ │ │ │ ├── ConfidentialReport.nb │ │ │ │ └── StandardReport.nb │ │ │ ├── Text.nb │ │ │ └── Utility │ │ │ │ ├── Correspondence.nb │ │ │ │ ├── Memo.nb │ │ │ │ ├── Notepad.nb │ │ │ │ └── Outline.nb │ │ ├── DarkMode │ │ │ ├── Article │ │ │ │ ├── JournalArticle.nb │ │ │ │ └── Preprint.nb │ │ │ ├── Book │ │ │ │ ├── Monograph.nb │ │ │ │ └── Textbook.nb │ │ │ ├── BugTracker.nb │ │ │ ├── CodeNotebook.nb │ │ │ ├── CodePackage.nb │ │ │ ├── Core │ │ │ │ ├── Clear │ │ │ │ │ ├── All.nb │ │ │ │ │ ├── Basics.nb │ │ │ │ │ └── Core.nb │ │ │ │ ├── Plain.nb │ │ │ │ └── Publication.nb │ │ │ ├── Dialog.nb │ │ │ ├── Docs.nb │ │ │ ├── Markdown.nb │ │ │ ├── Package.nb │ │ │ ├── Report │ │ │ │ ├── AutomatedReport.nb │ │ │ │ ├── ConfidentialReport.nb │ │ │ │ └── StandardReport.nb │ │ │ ├── Text.nb │ │ │ └── Utility │ │ │ │ ├── Correspondence.nb │ │ │ │ ├── Memo.nb │ │ │ │ ├── Notepad.nb │ │ │ │ └── Outline.nb │ │ ├── FileViewer │ │ │ ├── CodePackage.nb │ │ │ └── Docs.nb │ │ ├── LightMode-Package.nb │ │ ├── LightMode-Text.nb │ │ └── LightMode │ │ │ ├── Article │ │ │ ├── JournalArticle.nb │ │ │ └── Preprint.nb │ │ │ ├── Book │ │ │ ├── Monograph.nb │ │ │ └── Textbook.nb │ │ │ ├── BugTracker.nb │ │ │ ├── CodeNotebook.nb │ │ │ ├── CodePackage.nb │ │ │ ├── Core │ │ │ ├── Clear │ │ │ │ ├── All.nb │ │ │ │ ├── Basics.nb │ │ │ │ └── Core.nb │ │ │ ├── Plain.nb │ │ │ └── Publication.nb │ │ │ ├── Dialog.nb │ │ │ ├── Docs.nb │ │ │ ├── Markdown.nb │ │ │ ├── Package.nb │ │ │ ├── Report │ │ │ ├── AutomatedReport.nb │ │ │ ├── ConfidentialReport.nb │ │ │ └── StandardReport.nb │ │ │ ├── Text.nb │ │ │ └── Utility │ │ │ ├── Correspondence.nb │ │ │ ├── Memo.nb │ │ │ ├── Notepad.nb │ │ │ └── Outline.nb │ │ ├── LightMode.nb │ │ └── Private │ │ ├── BToolsCore.nb │ │ ├── EasyIDE.nb │ │ └── FileViewer.nb └── SystemResources │ └── Bitmaps │ └── EasyIDE │ ├── AttachedDialogBody.9.png │ ├── AttachedDialogButtons.9.png │ ├── AttachedDialogHeader.9.png │ ├── AttachedDialogPanel.9.png │ ├── Close-Hover.9.png │ ├── Close-Pressed.9.png │ ├── Close.9.png │ ├── ClosePane-Hover.9.png │ ├── ClosePane-Pressed.9.png │ ├── ClosePane.9.png │ ├── Common │ ├── Button-Blue-Default.9.png │ ├── Button-Blue-Hover.9.png │ ├── Button-Blue-Pressed.9.png │ ├── Button-DarkGray-Default.9.png │ ├── Button-DarkGray-Hover.9.png │ ├── Button-DarkGray-Pressed.9.png │ ├── Button-Gray-Default.9.png │ ├── Button-Gray-Hover.9.png │ ├── Button-Gray-Pressed.9.png │ ├── Button-Green-Default.9.png │ ├── Button-Green-Hover.9.png │ ├── Button-Green-Pressed.9.png │ ├── Button-Hover.9.png │ ├── Button-Pressed.9.png │ ├── Button-Red-Default.9.png │ ├── Button-Red-Hover.9.png │ ├── Button-Red-Pressed.9.png │ └── Button.9.png │ ├── Dark │ ├── AttachedDialogBody.9.png │ ├── AttachedDialogButtons.9.png │ ├── AttachedDialogHeader.9.png │ ├── AttachedDialogPanel.9.png │ ├── Close-Hover.9.png │ ├── Close-Pressed.9.png │ ├── Close.9.png │ ├── ClosePane-Hover.9.png │ ├── ClosePane-Pressed.9.png │ ├── ClosePane.9.png │ ├── DefaultButton-Hover.9.png │ ├── DefaultButton-Pressed.9.png │ ├── DefaultButton.9 copy.png │ ├── DefaultButton.9.png │ ├── DefaultButton_test.9.png │ ├── DropDown.9.png │ ├── FileViewerDown.png │ ├── FileViewerUp.png │ ├── InsertionPoint.png │ ├── InsertionPoint@144dpi.png │ ├── MainMenuBackground.9.png │ ├── MenuItem-Hover.9.png │ ├── MenuItem.9.png │ ├── MenuList-Hover.9.png │ ├── MenuList.9.png │ ├── MessagePopup-Hover.9.png │ ├── MessagePopup.9.png │ ├── Show-Hover.9.png │ ├── Show-Pressed.9.png │ ├── Show.9.png │ ├── Tab.9.png │ ├── TabBackground.9.png │ ├── ToolbarsBackground.png │ ├── close-hover.png │ ├── close-pressed.png │ ├── close.png │ ├── show-hover.png │ ├── show-pressed.png │ └── show.png │ ├── DefaultButton-Hover.9.png │ ├── DefaultButton-Pressed.9.png │ ├── DefaultButton.9 copy.png │ ├── DefaultButton.9.png │ ├── DefaultButton_test.9.png │ ├── DropDown.9.png │ ├── FileViewerDown.png │ ├── FileViewerUp.png │ ├── InsertionPoint.png │ ├── InsertionPoint@144dpi.png │ ├── MainMenuBackground.9.png │ ├── MenuItem-Hover.9.png │ ├── MenuItem.9.png │ ├── MenuList-Hover.9.png │ ├── MenuList.9.png │ ├── MessagePopup-Hover.9.png │ ├── MessagePopup.9.png │ ├── Show-Hover.9.png │ ├── Show-Pressed.9.png │ ├── Show.9.png │ ├── Tab.9.png │ ├── TabBackground.9.png │ ├── TabPanelBackground.9.png │ ├── ToolbarsBackground.png │ ├── close-hover.png │ ├── close-pressed.png │ ├── close.png │ ├── show-hover.png │ ├── show-pressed.png │ └── show.png ├── Kernel └── init.m ├── LICENSE.md ├── Packages ├── IDENotebook.m ├── IDENotebook.nb └── Notebooks │ ├── Docs │ ├── DocsFunctions.m │ └── DocsFunctions.nb │ ├── FormattingElements │ ├── AttachedDialog.m │ ├── AttachedDialog.nb │ ├── DockedCell.m │ ├── DockedCell.nb │ ├── DropDownMenu.m │ ├── DropDownMenu.nb │ ├── FileViewer.m │ ├── FileViewer.nb │ ├── MessagePopup.m │ ├── MessagePopup.nb │ ├── Plugins.m │ ├── Plugins.nb │ ├── Tabs.m │ ├── Tabs.nb │ ├── Toolbars.m │ └── Toolbars.nb │ ├── Manipulation │ ├── NotebookData.m │ ├── NotebookData.nb │ ├── NotebookManipulation.m │ ├── NotebookManipulation.nb │ ├── StyleManagement.m │ └── StyleManagement.nb │ ├── NotebookFunctions.m │ ├── NotebookFunctions.nb │ ├── Projects │ ├── Projects.m │ ├── Projects.nb │ ├── Settings.m │ └── Settings.nb │ └── Utilities │ ├── HelperFunctions.m │ └── HelperFunctions.nb ├── PacletInfo.m ├── README.md ├── Resources ├── Settings │ ├── Config │ │ └── SetterStylesheets.wl │ ├── Mappings │ │ ├── ExtensionStylesMap.wl │ │ ├── ExtensionToolbarsMap.wl │ │ ├── FileViewerStylesMap.wl │ │ ├── StylesheetStylesMap.wl │ │ └── StylesheetToolbarsMap.wl │ ├── Plugins │ │ ├── Apps.wl │ │ ├── BugTracker.wl │ │ ├── Docs.wl │ │ ├── FileMenu.wl │ │ ├── Git.wl │ │ ├── Paclets.wl │ │ ├── ProjectMenu.wl │ │ ├── SiteBuilder.wl │ │ └── WindowMenu.wl │ └── Toolbars │ │ ├── Authoring.wl │ │ ├── BookReader.nb │ │ ├── BugTracker.wl │ │ ├── CodePackage.wl │ │ ├── Docs.wl │ │ ├── Markdown.wl │ │ └── Package.wl └── StyleSheets │ └── Custom.nb └── project ├── BugTracker.nb ├── EasyIDEIDE.nb ├── README.md ├── README.nb └── docs ├── SiteConfig.wl ├── config.wl ├── content ├── favicon-16x16.png ├── favicon-32x32.png ├── pages │ ├── About.md │ └── About.nb ├── ref │ ├── PreemptiveQueued.nb │ ├── SetCurrentValue.nb │ ├── SetCurrentValueDelayed.nb │ ├── WithActiveNotebookPath.nb │ ├── WithFrontEndTracking.nb │ ├── WithIDEData.nb │ ├── WithNotebookPaused.nb │ ├── WithoutDynamics.nb │ ├── WithoutScreenUpdates.nb │ ├── WithoutScreenUpdatesOrDynamics.nb │ ├── iCurrentValue.nb │ └── iSetOptions.nb ├── site-logo.png └── tutorial │ └── GettingStarted.nb └── relatedCells.nb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .scratch/* 3 | Private/* -------------------------------------------------------------------------------- /Config/BundleInfo.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Config/BundleInfo.wl -------------------------------------------------------------------------------- /Config/LoadInfo.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Config/LoadInfo.wl -------------------------------------------------------------------------------- /Dependencies/BTools/.scratch/scratch.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/.scratch/scratch.nb -------------------------------------------------------------------------------- /Dependencies/BTools/All.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/All.m -------------------------------------------------------------------------------- /Dependencies/BTools/BTools.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Cruft.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Cruft.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Developer.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Developer.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Experimental.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Experimental.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/External.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/External.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/External/Git.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/External/Git.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/External/Google.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/External/Google.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Formatting.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Formatting.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Formatting/FormattingTools.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Formatting/FormattingTools.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Frameworks.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Frameworks.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/FrontEnd.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/FrontEnd.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Paclets.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Paclets.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Paclets/AppBuilder.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Paclets/AppBuilder.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Paclets/DocGen.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Paclets/DocGen.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Paclets/PacletTools.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Paclets/PacletTools.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Utilities.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Utilities.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Utilities/DocFind.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Utilities/DocFind.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Web.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Web.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Web/Markdown.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Web/Markdown.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BTools/Web/Pelican.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BTools/Web/Pelican.wl -------------------------------------------------------------------------------- /Dependencies/BTools/BToolsLoader.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/BToolsLoader.wl -------------------------------------------------------------------------------- /Dependencies/BTools/Config/BundleInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Config/BundleInfo.m -------------------------------------------------------------------------------- /Dependencies/BTools/Config/DocInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Config/DocInfo.m -------------------------------------------------------------------------------- /Dependencies/BTools/Config/LoadInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Config/LoadInfo.m -------------------------------------------------------------------------------- /Dependencies/BTools/Config/UploadInfo.m: -------------------------------------------------------------------------------- 1 | (* ::Package:: *) 2 | 3 | { 4 | "ServerName" -> Automatic 5 | } 6 | -------------------------------------------------------------------------------- /Dependencies/BTools/FrontEnd/StyleSheets/BTools/CodeNotebook.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/FrontEnd/StyleSheets/BTools/CodeNotebook.nb -------------------------------------------------------------------------------- /Dependencies/BTools/FrontEnd/StyleSheets/BTools/CodePackage.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/FrontEnd/StyleSheets/BTools/CodePackage.nb -------------------------------------------------------------------------------- /Dependencies/BTools/FrontEnd/StyleSheets/BTools/CodePackagePlain.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/FrontEnd/StyleSheets/BTools/CodePackagePlain.nb -------------------------------------------------------------------------------- /Dependencies/BTools/FrontEnd/StyleSheets/BTools/DocGen.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/FrontEnd/StyleSheets/BTools/DocGen.nb -------------------------------------------------------------------------------- /Dependencies/BTools/FrontEnd/StyleSheets/BTools/MarkdownNotebook.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/FrontEnd/StyleSheets/BTools/MarkdownNotebook.nb -------------------------------------------------------------------------------- /Dependencies/BTools/FrontEnd/StyleSheets/BTools/SyntaxHighlighting.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/FrontEnd/StyleSheets/BTools/SyntaxHighlighting.nb -------------------------------------------------------------------------------- /Dependencies/BTools/Kernel/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Kernel/init.m -------------------------------------------------------------------------------- /Dependencies/BTools/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/LICENSE.md -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Developer/AuthDialogs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Developer/AuthDialogs.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Developer/ContextTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Developer/ContextTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Developer/EncodedCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Developer/EncodedCache.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Developer/FileTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Developer/FileTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Developer/FormattingTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Developer/FormattingTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Developer/FrontEndTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Developer/FrontEndTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Developer/FunctionTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Developer/FunctionTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Developer/KeyChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Developer/KeyChain.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Developer/SymbolTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Developer/SymbolTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Developer/SyncTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Developer/SyncTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/External/Git/Git.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/External/Git/Git.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/External/Git/GitHub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/External/Git/GitHub.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/External/Git/SVN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/External/Git/SVN.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/External/GitConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/External/GitConnection.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/External/Google.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/External/Google.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/External/Google/Analytics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/External/Google/Analytics.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/External/Google/Common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/External/Google/Common.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/External/Google/Drive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/External/Google/Drive.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/External/ProcessTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/External/ProcessTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/External/PyTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/External/PyTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Formatting/FormattingTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Formatting/FormattingTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Formatting/FormattingTools/FormattingToolsPackage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Formatting/FormattingTools/FormattingToolsPackage.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Formatting/NotebookTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Formatting/NotebookTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Frameworks/CuratedData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Frameworks/CuratedData.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Frameworks/CustomServiceConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Frameworks/CustomServiceConnection.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/FrontEnd/IndentableCells.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/FrontEnd/IndentableCells.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/FrontEnd/StylesheetEdits.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/FrontEnd/StylesheetEdits.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/FrontEnd/SyntaxColoring.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/FrontEnd/SyntaxColoring.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/AppBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/AppBuilder.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/AppBuilder/Builder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/AppBuilder/Builder.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/AppBuilder/Core.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/AppBuilder/Core.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/AppBuilder/DocGen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/AppBuilder/DocGen.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/AppBuilder/Git.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/AppBuilder/Git.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/AppBuilder/Paclets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/AppBuilder/Paclets.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/AppBuilder/Testing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/AppBuilder/Testing.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/DocGen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/DocGen.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/DocGen/DocGenCore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/DocGen/DocGenCore.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/DocGen/GuidePages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/DocGen/GuidePages.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/DocGen/SymbolPages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/DocGen/SymbolPages.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/DocGen/TutorialPages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/DocGen/TutorialPages.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/DocGen/WebExport.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/DocGen/WebExport.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/DocumentationSiteBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/DocumentationSiteBuilder.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/PacletExecute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/PacletExecute.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/PacletServerBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/PacletServerBuilder.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/PacletTools/PacletServerBuilderPackage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/PacletTools/PacletServerBuilderPackage.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Paclets/PacletTools/PacletTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Paclets/PacletTools/PacletTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Utilities/DocFind.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Utilities/DocFind.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Utilities/DocFind/DocFind.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Utilities/DocFind/DocFind.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Utilities/FEMisc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Utilities/FEMisc.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Utilities/NotebookTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Utilities/NotebookTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Utilities/ScrapeTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Utilities/ScrapeTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Utilities/TRTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Utilities/TRTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Web/HTMLTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Web/HTMLTools.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Web/Markdown/MarkdownParse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Web/Markdown/MarkdownParse.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Web/Markdown/NotebookMarkdownInternals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Web/Markdown/NotebookMarkdownInternals.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Web/MarkdownParsers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Web/MarkdownParsers.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Web/NotebookToMarkdown.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Web/NotebookToMarkdown.m -------------------------------------------------------------------------------- /Dependencies/BTools/Packages/Web/SiteBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Packages/Web/SiteBuilder.m -------------------------------------------------------------------------------- /Dependencies/BTools/PacletIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/PacletIcon.png -------------------------------------------------------------------------------- /Dependencies/BTools/PacletIconBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/PacletIconBig.png -------------------------------------------------------------------------------- /Dependencies/BTools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/README.md -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/ContextLoader.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/ContextLoader.wl -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/CuratedDataTemplate.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/CuratedDataTemplate.nb -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/Initialization/Loader/Autocomplete.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/Initialization/Loader/Autocomplete.wl -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/Initialization/Loader/Constants.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/Initialization/Loader/Constants.wl -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/Initialization/Loader/Dependencies.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/Initialization/Loader/Dependencies.wl -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/Initialization/Loader/Exceptions.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/Initialization/Loader/Exceptions.wl -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/Initialization/Loader/FrontEnd.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/Initialization/Loader/FrontEnd.wl -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/Initialization/Loader/Loading.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/Initialization/Loader/Loading.wl -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/Initialization/Loader/MainLoader.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/Initialization/Loader/MainLoader.wl -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/Initialization/Loader/Paths.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/Initialization/Loader/Paths.wl -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/Initialization/Loader/Usages.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/Initialization/Loader/Usages.wl -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/Initialization/Main.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/Initialization/Main.wl -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/Initialization/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/Initialization/init.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/PaletteTemplate.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/PaletteTemplate.nb -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/README.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/README.nb -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/SafeContexts.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/SafeContexts.tr -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/ServiceConnectionTemplate.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/ServiceConnectionTemplate.nb -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Templates/specialArgFunctions.tr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Templates/specialArgFunctions.tr -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/README.md -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/analytics.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/article_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/article_info.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/breadcrumbs.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/comments.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/config/icons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/config/icons.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/config/links.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/config/links.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/config/page_links.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/config/page_links.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/config/social_links.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/config/social_links.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/config/stylesheets.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/config/stylesheets.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/copyable_input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/copyable_input.css -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/copyable_input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/copyable_input.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/copyable_input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/copyable_input.js -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/footer_notebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/footer_notebook.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/embedNotebook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/embedNotebook.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/extractBody.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/extractBody.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/getIndexListingBy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/getIndexListingBy.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/getPageTitle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/getPageTitle.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/getSiteLinks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/getSiteLinks.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/getSiteName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/getSiteName.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/getTemplateArguments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/getTemplateArguments.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/getTemplateVariable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/getTemplateVariable.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/loadTemplateLib.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/loadTemplateLib.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeBlogrollLinkList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeBlogrollLinkList.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteElements.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteElements.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteHyperlink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteHyperlink.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteIcons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteIcons.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteImg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteImg.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteLink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteLink.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteLinkList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteLinkList.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteStylesheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteStylesheet.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteTagLinks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSiteTagLinks.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSocialLinkList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/makeSocialLinkList.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/nextPreviousButtons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/nextPreviousButtons.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/prepArticleInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/prepArticleInfo.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/reslotMissing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/reslotMissing.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/sortIndexListingBy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/sortIndexListingBy.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/varDefined.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/varDefined.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/varMatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/varMatch.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/varNotFalse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/varNotFalse.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/varNotTrue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/varNotTrue.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/lib/varTrue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/lib/varTrue.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/load_jQuery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/load_jQuery.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/mathjax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/mathjax.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/next-previous.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/next-previous.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/page-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/page-footer.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/page-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/page-header.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/pagination.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/primary-content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/primary-content.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/related-posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/related-posts.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/rss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/rss.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/search.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/site-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/site-icons.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/site-stylesheets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/site-stylesheets.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/include/site-title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/include/site-title.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/css/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/static/css/common.css -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/static/js/jquery.min.js -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/prettify/src/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/static/prettify/src/prettify.css -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/static/prettify/src/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/static/prettify/src/prettify.js -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/article.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/author.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/authors.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/base.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/categories.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/category.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/include/analytics.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/comments.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/include/comments.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/config/icons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/include/config/icons.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/config/links.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/include/config/links.m -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/include/pagination.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/rss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/include/rss.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/include/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/include/search.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/index.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/page.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/redirect.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/rss_feed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/rss_feed.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/search.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/tag.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/templates/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/templates/tags.html -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/tipuesearch/tipuesearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/tipuesearch/tipuesearch.css -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/tipuesearch/tipuesearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/tipuesearch/tipuesearch.js -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/tipuesearch/tipuesearch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/tipuesearch/tipuesearch.min.js -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/tipuesearch/tipuesearch_content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/tipuesearch/tipuesearch_content.js -------------------------------------------------------------------------------- /Dependencies/BTools/Resources/Themes/template_lib/tipuesearch/tipuesearch_set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BTools/Resources/Themes/template_lib/tipuesearch/tipuesearch_set.js -------------------------------------------------------------------------------- /Dependencies/BugTracker/BugTracker.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/BugTracker.wl -------------------------------------------------------------------------------- /Dependencies/BugTracker/BugTrackerLoader.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/BugTrackerLoader.wl -------------------------------------------------------------------------------- /Dependencies/BugTracker/Config/BundleInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/Config/BundleInfo.m -------------------------------------------------------------------------------- /Dependencies/BugTracker/Config/LoadInfo.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/Config/LoadInfo.wl -------------------------------------------------------------------------------- /Dependencies/BugTracker/FrontEnd/StyleSheets/BugTracker/Private/BugTracker.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/FrontEnd/StyleSheets/BugTracker/Private/BugTracker.nb -------------------------------------------------------------------------------- /Dependencies/BugTracker/FrontEnd/SystemResources/Bitmaps/BugTracker/BeetleBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/FrontEnd/SystemResources/Bitmaps/BugTracker/BeetleBig.png -------------------------------------------------------------------------------- /Dependencies/BugTracker/FrontEnd/SystemResources/Bitmaps/BugTracker/BeetleIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/FrontEnd/SystemResources/Bitmaps/BugTracker/BeetleIcon.png -------------------------------------------------------------------------------- /Dependencies/BugTracker/FrontEnd/SystemResources/Bitmaps/BugTracker/Search-Hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/FrontEnd/SystemResources/Bitmaps/BugTracker/Search-Hover.png -------------------------------------------------------------------------------- /Dependencies/BugTracker/FrontEnd/SystemResources/Bitmaps/BugTracker/Search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/FrontEnd/SystemResources/Bitmaps/BugTracker/Search.png -------------------------------------------------------------------------------- /Dependencies/BugTracker/Kernel/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/Kernel/init.m -------------------------------------------------------------------------------- /Dependencies/BugTracker/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/LICENSE.md -------------------------------------------------------------------------------- /Dependencies/BugTracker/Packages/Interfaces/BugsInterface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/Packages/Interfaces/BugsInterface.m -------------------------------------------------------------------------------- /Dependencies/BugTracker/Packages/Package/BugIndices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/Packages/Package/BugIndices.m -------------------------------------------------------------------------------- /Dependencies/BugTracker/Packages/Package/BugNotebooks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/Packages/Package/BugNotebooks.m -------------------------------------------------------------------------------- /Dependencies/BugTracker/Packages/Package/BugObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/Packages/Package/BugObject.m -------------------------------------------------------------------------------- /Dependencies/BugTracker/Packages/Package/BugTrackerStylesheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/Packages/Package/BugTrackerStylesheet.m -------------------------------------------------------------------------------- /Dependencies/BugTracker/Packages/Package/PacletBugs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/Packages/Package/PacletBugs.m -------------------------------------------------------------------------------- /Dependencies/BugTracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/BugTracker/README.md -------------------------------------------------------------------------------- /Dependencies/Ems/Config/BundleInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Config/BundleInfo.m -------------------------------------------------------------------------------- /Dependencies/Ems/Config/LoadInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Config/LoadInfo.m -------------------------------------------------------------------------------- /Dependencies/Ems/Ems.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Ems.wl -------------------------------------------------------------------------------- /Dependencies/Ems/EmsLoader.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/EmsLoader.wl -------------------------------------------------------------------------------- /Dependencies/Ems/FrontEnd/Palettes/Ems/EmsAssistant.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/FrontEnd/Palettes/Ems/EmsAssistant.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Kernel/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Kernel/init.m -------------------------------------------------------------------------------- /Dependencies/Ems/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/LICENSE.md -------------------------------------------------------------------------------- /Dependencies/Ems/Packages/Main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Packages/Main.m -------------------------------------------------------------------------------- /Dependencies/Ems/Packages/Package/GitHub/GitHub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Packages/Package/GitHub/GitHub.m -------------------------------------------------------------------------------- /Dependencies/Ems/Packages/Package/GitHub/Helpers/Helpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Packages/Package/GitHub/Helpers/Helpers.m -------------------------------------------------------------------------------- /Dependencies/Ems/Packages/Package/Sites/Build.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Packages/Package/Sites/Build.m -------------------------------------------------------------------------------- /Dependencies/Ems/Packages/Package/Sites/Sites.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Packages/Package/Sites/Sites.m -------------------------------------------------------------------------------- /Dependencies/Ems/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/README.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Icons/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Icons/banner.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Icons/banner_tall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Icons/banner_tall.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Icons/favicon-16x16.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Icons/favicon-32x32.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/SiteConfig.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/blog/SiteConfig.wl -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/content/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/blog/content/favicon-16x16.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/content/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/blog/content/favicon-32x32.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/content/pages/About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/blog/content/pages/About.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/content/pages/About.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/blog/content/pages/About.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/content/posts/Post #1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/blog/content/posts/Post #1.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/content/posts/Post #1.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/blog/content/posts/Post #1.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/content/posts/Second Post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/blog/content/posts/Second Post.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/content/posts/Second Post.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/blog/content/posts/Second Post.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/blog/content/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/blog/content/site-logo.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/book/SiteConfig.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/book/SiteConfig.wl -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/book/content/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/book/content/favicon-16x16.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/book/content/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/book/content/favicon-32x32.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/book/content/pages/About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/book/content/pages/About.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/book/content/pages/About.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/book/content/pages/About.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/book/content/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/book/content/site-logo.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/SiteConfig.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/SiteConfig.wl -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/content/banner.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/content/favicon-16x16.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/content/favicon-32x32.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/guide/Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/content/guide/Guide.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/guide/Guide.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/content/guide/Guide.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/pages/About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/content/pages/About.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/pages/About.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/content/pages/About.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/ref/Function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/content/ref/Function.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/ref/Function.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/content/ref/Function.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/ref/Function1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/content/ref/Function1.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/ref/Function1.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/content/ref/Function1.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/ref/Function2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/content/ref/Function2.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/ref/Function2.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/content/ref/Function2.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/docs/content/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/docs/content/site-logo.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/SiteConfig.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/portfolio/SiteConfig.wl -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/portfolio/content/favicon-16x16.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/portfolio/content/favicon-32x32.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/pages/About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/portfolio/content/pages/About.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/pages/About.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/portfolio/content/pages/About.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/posts/Project 1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/portfolio/content/posts/Project 1.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/posts/Project 1.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/portfolio/content/posts/Project 1.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/posts/Project 2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/portfolio/content/posts/Project 2.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/posts/Project 2.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/portfolio/content/posts/Project 2.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/posts/Project 3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/portfolio/content/posts/Project 3.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/posts/Project 3.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/portfolio/content/posts/Project 3.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/portfolio/content/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/portfolio/content/site-logo.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/SiteConfig.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/scroll/SiteConfig.wl -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/scroll/content/banner.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/scroll/content/favicon-16x16.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/scroll/content/favicon-32x32.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/pages/About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/scroll/content/pages/About.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/pages/About.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/scroll/content/pages/About.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/posts/Post #1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/scroll/content/posts/Post #1.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/posts/Post #1.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/scroll/content/posts/Post #1.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/posts/Second Post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/scroll/content/posts/Second Post.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/posts/Second Post.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/scroll/content/posts/Second Post.nb -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Templates/scroll/content/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Templates/scroll/content/site-logo.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/LICENSE.txt -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/README.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/bootstrap.amelia.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/bootstrap.amelia.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/bootstrap.cosmo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/bootstrap.cosmo.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/bootstrap.darkly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/bootstrap.darkly.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/bootstrap.mma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/bootstrap.mma.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/bootstrap.slate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/bootstrap.slate.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/font-awesome.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/font-awesome.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/font-awesome.css.map -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/style.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/typogrify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/static/css/typogrify.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/static/js/bodypadding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/static/js/bodypadding.js -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/static/js/jXHR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/static/js/jXHR.js -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/archives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/archives.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/article.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/article_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/article_list.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/author.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/authors.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/base.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/categories.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/category.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/aboutme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/aboutme.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/banner.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/config/icons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/config/icons.m -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/config/links.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/config/links.m -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/footer.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/include/sidebar.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/index.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/page.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/tag.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-blog/templates/tags.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/LICENSE.txt -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/README.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/bootstrap.amelia.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/bootstrap.amelia.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/bootstrap.cosmo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/bootstrap.cosmo.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/bootstrap.darkly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/bootstrap.darkly.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/bootstrap.mma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/bootstrap.mma.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/bootstrap.slate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/bootstrap.slate.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/font-awesome.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/font-awesome.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/font-awesome.css.map -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/style.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/typogrify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/static/css/typogrify.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/static/js/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/static/js/accordion.js -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/static/js/bodypadding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/static/js/bodypadding.js -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/static/js/jXHR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/static/js/jXHR.js -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/archives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/archives.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/article.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/article_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/article_list.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/author.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/authors.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/base.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/categories.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/category.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/aboutme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/aboutme.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/banner.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/config/icons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/config/icons.m -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/config/links.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/config/links.m -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/config/page_links.m: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/footer.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/navtab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/navtab.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/sidebar.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/tocbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/include/tocbar.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/index.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/page.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/tag.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-book/templates/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-book/templates/tags.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/LICENSE.txt -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/README.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/bootstrap.amelia.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/bootstrap.amelia.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/bootstrap.cosmo.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/bootstrap.cosmo.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/bootstrap.darkly.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/bootstrap.darkly.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/bootstrap.mma.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/bootstrap.mma.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/bootstrap.slate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/bootstrap.slate.min.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/font-awesome.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/font-awesome.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/font-awesome.css.map -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/style.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/typogrify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/static/css/typogrify.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/static/js/bodypadding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/static/js/bodypadding.js -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/static/js/jXHR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/static/js/jXHR.js -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/archives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/archives.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/article.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/author.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/authors.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/base.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/categories.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/category.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/function.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/guide.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/aboutme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/aboutme.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/banner.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/config/icons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/config/icons.m -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/config/links.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/config/links.m -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/footer.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/include/sidebar.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/index.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/indexes/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/indexes/functions.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/indexes/guides.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/indexes/guides.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/indexes/tutorials.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/indexes/tutorials.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/page.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/tag.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/tags.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-docs/templates/tutorial.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/LICENSE.txt -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/README.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/static/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/static/css/font-awesome.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/static/css/style.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/static/css/typogrify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/static/css/typogrify.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/static/js/bodypadding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/static/js/bodypadding.js -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/static/js/jXHR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/static/js/jXHR.js -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/archives.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/archives.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/article.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/article_grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/article_grid.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/article_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/article_list.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/author.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/author.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/authors.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/base.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/categories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/categories.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/category.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/index.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/page.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/tag.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-portfolio/templates/tags.html -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-single-page/README.md -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/css/bootstrap.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/css/grayscale.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/css/grayscale.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/css/style.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/css/typogrify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/css/typogrify.css -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/img/map-marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/img/map-marker.png -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/js/grayscale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-single-page/static/js/grayscale.js -------------------------------------------------------------------------------- /Dependencies/Ems/Resources/Themes/bootstrap-single-page/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/Resources/Themes/bootstrap-single-page/templates/index.html -------------------------------------------------------------------------------- /Dependencies/Ems/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/thumbnail.png -------------------------------------------------------------------------------- /Dependencies/Ems/thumbnail_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/Ems/thumbnail_big.png -------------------------------------------------------------------------------- /Dependencies/InterfaceObjects/Config/BundleInfo.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/InterfaceObjects/Config/BundleInfo.wl -------------------------------------------------------------------------------- /Dependencies/InterfaceObjects/Config/LoadInfo.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/InterfaceObjects/Config/LoadInfo.wl -------------------------------------------------------------------------------- /Dependencies/InterfaceObjects/InterfaceObjects.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/InterfaceObjects/InterfaceObjects.wl -------------------------------------------------------------------------------- /Dependencies/InterfaceObjects/InterfaceObjectsLoader.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/InterfaceObjects/InterfaceObjectsLoader.wl -------------------------------------------------------------------------------- /Dependencies/InterfaceObjects/Kernel/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/InterfaceObjects/Kernel/init.m -------------------------------------------------------------------------------- /Dependencies/InterfaceObjects/Packages/Main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/InterfaceObjects/Packages/Main.m -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/Config/BundleInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/Config/BundleInfo.m -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/Config/LoadInfo.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/Config/LoadInfo.wl -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/FrontEnd/Palettes/SimpleDocs/SimpleDocsHelper.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/FrontEnd/Palettes/SimpleDocs/SimpleDocsHelper.nb -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/FrontEnd/StyleSheets/SimpleDocs/SimpleDocs.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/FrontEnd/StyleSheets/SimpleDocs/SimpleDocs.nb -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/Kernel/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/Kernel/init.m -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/LICENSE.md -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/Packages/Main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/Packages/Main.m -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/Packages/Package/SimpleDocs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/Packages/Package/SimpleDocs.m -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/README.md -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/Resources/SimpleDocsHelperGenerator.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/Resources/SimpleDocsHelperGenerator.nb -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/Resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/Resources/icon.png -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/Resources/icon_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/Resources/icon_big.png -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/SimpleDocs.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/SimpleDocs.wl -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/SimpleDocs/Package.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/SimpleDocs/Package.wl -------------------------------------------------------------------------------- /Dependencies/SimpleDocs/SimpleDocsLoader.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Dependencies/SimpleDocs/SimpleDocsLoader.wl -------------------------------------------------------------------------------- /Documentation/English/SimpleDocsStyles.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Documentation/English/SimpleDocsStyles.nb -------------------------------------------------------------------------------- /Documentation/English/Tutorials/Getting Started.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Documentation/English/Tutorials/Getting Started.nb -------------------------------------------------------------------------------- /Documentation/SimpleDocsStyles.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Documentation/SimpleDocsStyles.nb -------------------------------------------------------------------------------- /EasyIDE.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/EasyIDE.wl -------------------------------------------------------------------------------- /EasyIDE/Notebooks.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/EasyIDE/Notebooks.wl -------------------------------------------------------------------------------- /EasyIDE/Notebooks/Docs.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/EasyIDE/Notebooks/Docs.wl -------------------------------------------------------------------------------- /EasyIDE/Notebooks/FormattingElements.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/EasyIDE/Notebooks/FormattingElements.wl -------------------------------------------------------------------------------- /EasyIDE/Notebooks/Manipulation.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/EasyIDE/Notebooks/Manipulation.wl -------------------------------------------------------------------------------- /EasyIDE/Notebooks/Projects.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/EasyIDE/Notebooks/Projects.wl -------------------------------------------------------------------------------- /EasyIDE/Notebooks/Utilities.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/EasyIDE/Notebooks/Utilities.wl -------------------------------------------------------------------------------- /EasyIDELoader.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/EasyIDELoader.wl -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/DarkGUI.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/DarkGUI.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/DarkMode.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/DarkMode.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Article/JournalArticle.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Article/JournalArticle.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Article/Preprint.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Article/Preprint.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Book/Monograph.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Book/Monograph.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Book/Textbook.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Book/Textbook.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/BugTracker.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/BugTracker.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/CodeNotebook.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/CodeNotebook.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/CodePackage.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/CodePackage.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Core/Clear/All.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Core/Clear/All.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Core/Clear/Basics.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Core/Clear/Basics.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Core/Clear/Core.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Core/Clear/Core.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Core/Plain.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Core/Plain.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Core/Publication.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Core/Publication.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Dialog.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Dialog.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Docs.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Docs.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Markdown.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Markdown.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Package.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Package.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Report/AutomatedReport.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Report/AutomatedReport.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Report/ConfidentialReport.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Report/ConfidentialReport.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Report/StandardReport.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Report/StandardReport.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Text.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Text.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Utility/Correspondence.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Utility/Correspondence.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Utility/Memo.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Utility/Memo.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Utility/Notepad.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Utility/Notepad.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Utility/Outline.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkGUI/Utility/Outline.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Article/JournalArticle.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Article/JournalArticle.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Article/Preprint.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Article/Preprint.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Book/Monograph.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Book/Monograph.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Book/Textbook.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Book/Textbook.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/BugTracker.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/BugTracker.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/CodeNotebook.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/CodeNotebook.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/CodePackage.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/CodePackage.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Core/Clear/All.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Core/Clear/All.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Core/Clear/Basics.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Core/Clear/Basics.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Core/Clear/Core.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Core/Clear/Core.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Core/Plain.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Core/Plain.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Core/Publication.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Core/Publication.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Dialog.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Dialog.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Docs.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Docs.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Markdown.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Markdown.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Package.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Package.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Report/AutomatedReport.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Report/AutomatedReport.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Report/ConfidentialReport.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Report/ConfidentialReport.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Report/StandardReport.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Report/StandardReport.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Text.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Text.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Utility/Correspondence.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Utility/Correspondence.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Utility/Memo.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Utility/Memo.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Utility/Notepad.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Utility/Notepad.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Utility/Outline.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/DarkMode/Utility/Outline.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/FileViewer/CodePackage.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/FileViewer/CodePackage.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/FileViewer/Docs.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/FileViewer/Docs.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode-Package.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode-Package.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode-Text.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode-Text.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Article/JournalArticle.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Article/JournalArticle.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Article/Preprint.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Article/Preprint.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Book/Monograph.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Book/Monograph.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Book/Textbook.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Book/Textbook.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/BugTracker.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/BugTracker.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/CodeNotebook.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/CodeNotebook.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/CodePackage.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/CodePackage.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Core/Clear/All.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Core/Clear/All.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Core/Clear/Basics.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Core/Clear/Basics.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Core/Clear/Core.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Core/Clear/Core.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Core/Plain.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Core/Plain.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Core/Publication.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Core/Publication.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Dialog.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Dialog.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Docs.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Docs.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Markdown.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Markdown.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Package.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Package.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Report/AutomatedReport.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Report/AutomatedReport.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Report/ConfidentialReport.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Report/ConfidentialReport.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Report/StandardReport.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Report/StandardReport.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Text.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Text.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Utility/Correspondence.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Utility/Correspondence.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Utility/Memo.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Utility/Memo.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Utility/Notepad.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Utility/Notepad.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Utility/Outline.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Extensions/LightMode/Utility/Outline.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/LightMode.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/LightMode.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Private/BToolsCore.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Private/BToolsCore.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Private/EasyIDE.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Private/EasyIDE.nb -------------------------------------------------------------------------------- /FrontEnd/StyleSheets/EasyIDE/Private/FileViewer.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/StyleSheets/EasyIDE/Private/FileViewer.nb -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/AttachedDialogBody.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/AttachedDialogBody.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/AttachedDialogButtons.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/AttachedDialogButtons.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/AttachedDialogHeader.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/AttachedDialogHeader.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/AttachedDialogPanel.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/AttachedDialogPanel.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Close-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Close-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Close-Pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Close-Pressed.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Close.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Close.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/ClosePane-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/ClosePane-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/ClosePane-Pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/ClosePane-Pressed.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/ClosePane.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/ClosePane.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Blue-Default.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Blue-Default.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Blue-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Blue-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Blue-Pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Blue-Pressed.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-DarkGray-Default.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-DarkGray-Default.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-DarkGray-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-DarkGray-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-DarkGray-Pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-DarkGray-Pressed.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Gray-Default.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Gray-Default.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Gray-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Gray-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Gray-Pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Gray-Pressed.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Green-Default.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Green-Default.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Green-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Green-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Green-Pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Green-Pressed.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Pressed.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Red-Default.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Red-Default.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Red-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Red-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Red-Pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button-Red-Pressed.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Common/Button.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/AttachedDialogBody.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/AttachedDialogBody.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/AttachedDialogButtons.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/AttachedDialogButtons.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/AttachedDialogHeader.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/AttachedDialogHeader.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/AttachedDialogPanel.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/AttachedDialogPanel.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/Close-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/Close-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/Close-Pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/Close-Pressed.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/Close.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/Close.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/ClosePane-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/ClosePane-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/ClosePane-Pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/ClosePane-Pressed.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/ClosePane.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/ClosePane.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/DefaultButton-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/DefaultButton-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/DefaultButton-Pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/DefaultButton-Pressed.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/DefaultButton.9 copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/DefaultButton.9 copy.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/DefaultButton.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/DefaultButton.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/DefaultButton_test.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/DefaultButton_test.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/DropDown.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/DropDown.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/FileViewerDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/FileViewerDown.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/FileViewerUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/FileViewerUp.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/InsertionPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/InsertionPoint.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/InsertionPoint@144dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/InsertionPoint@144dpi.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/MainMenuBackground.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/MainMenuBackground.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/MenuItem-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/MenuItem-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/MenuItem.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/MenuItem.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/MenuList-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/MenuList-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/MenuList.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/MenuList.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/MessagePopup-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/MessagePopup-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/MessagePopup.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/MessagePopup.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/Show-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/Show-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/Show-Pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/Show-Pressed.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/Show.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/Show.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/Tab.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/Tab.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/TabBackground.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/TabBackground.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/ToolbarsBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/ToolbarsBackground.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/close-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/close-hover.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/close-pressed.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/close.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/show-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/show-hover.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/show-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/show-pressed.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Dark/show.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/DefaultButton-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/DefaultButton-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/DefaultButton-Pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/DefaultButton-Pressed.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/DefaultButton.9 copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/DefaultButton.9 copy.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/DefaultButton.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/DefaultButton.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/DefaultButton_test.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/DefaultButton_test.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/DropDown.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/DropDown.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/FileViewerDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/FileViewerDown.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/FileViewerUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/FileViewerUp.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/InsertionPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/InsertionPoint.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/InsertionPoint@144dpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/InsertionPoint@144dpi.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/MainMenuBackground.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/MainMenuBackground.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/MenuItem-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/MenuItem-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/MenuItem.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/MenuItem.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/MenuList-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/MenuList-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/MenuList.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/MenuList.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/MessagePopup-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/MessagePopup-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/MessagePopup.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/MessagePopup.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Show-Hover.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Show-Hover.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Show-Pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Show-Pressed.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Show.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Show.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/Tab.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/Tab.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/TabBackground.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/TabBackground.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/TabPanelBackground.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/TabPanelBackground.9.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/ToolbarsBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/ToolbarsBackground.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/close-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/close-hover.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/close-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/close-pressed.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/close.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/show-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/show-hover.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/show-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/show-pressed.png -------------------------------------------------------------------------------- /FrontEnd/SystemResources/Bitmaps/EasyIDE/show.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/FrontEnd/SystemResources/Bitmaps/EasyIDE/show.png -------------------------------------------------------------------------------- /Kernel/init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Kernel/init.m -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Packages/IDENotebook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/IDENotebook.m -------------------------------------------------------------------------------- /Packages/IDENotebook.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/IDENotebook.nb -------------------------------------------------------------------------------- /Packages/Notebooks/Docs/DocsFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/Docs/DocsFunctions.m -------------------------------------------------------------------------------- /Packages/Notebooks/Docs/DocsFunctions.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/Docs/DocsFunctions.nb -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/AttachedDialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/AttachedDialog.m -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/AttachedDialog.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/AttachedDialog.nb -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/DockedCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/DockedCell.m -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/DockedCell.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/DockedCell.nb -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/DropDownMenu.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/DropDownMenu.m -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/DropDownMenu.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/DropDownMenu.nb -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/FileViewer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/FileViewer.m -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/FileViewer.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/FileViewer.nb -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/MessagePopup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/MessagePopup.m -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/MessagePopup.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/MessagePopup.nb -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/Plugins.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/Plugins.m -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/Plugins.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/Plugins.nb -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/Tabs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/Tabs.m -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/Tabs.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/Tabs.nb -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/Toolbars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/Toolbars.m -------------------------------------------------------------------------------- /Packages/Notebooks/FormattingElements/Toolbars.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/FormattingElements/Toolbars.nb -------------------------------------------------------------------------------- /Packages/Notebooks/Manipulation/NotebookData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/Manipulation/NotebookData.m -------------------------------------------------------------------------------- /Packages/Notebooks/Manipulation/NotebookData.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/Manipulation/NotebookData.nb -------------------------------------------------------------------------------- /Packages/Notebooks/Manipulation/NotebookManipulation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/Manipulation/NotebookManipulation.m -------------------------------------------------------------------------------- /Packages/Notebooks/Manipulation/NotebookManipulation.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/Manipulation/NotebookManipulation.nb -------------------------------------------------------------------------------- /Packages/Notebooks/Manipulation/StyleManagement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/Manipulation/StyleManagement.m -------------------------------------------------------------------------------- /Packages/Notebooks/Manipulation/StyleManagement.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/Manipulation/StyleManagement.nb -------------------------------------------------------------------------------- /Packages/Notebooks/NotebookFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/NotebookFunctions.m -------------------------------------------------------------------------------- /Packages/Notebooks/NotebookFunctions.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/NotebookFunctions.nb -------------------------------------------------------------------------------- /Packages/Notebooks/Projects/Projects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/Projects/Projects.m -------------------------------------------------------------------------------- /Packages/Notebooks/Projects/Projects.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/Projects/Projects.nb -------------------------------------------------------------------------------- /Packages/Notebooks/Projects/Settings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/Projects/Settings.m -------------------------------------------------------------------------------- /Packages/Notebooks/Projects/Settings.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/Projects/Settings.nb -------------------------------------------------------------------------------- /Packages/Notebooks/Utilities/HelperFunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/Utilities/HelperFunctions.m -------------------------------------------------------------------------------- /Packages/Notebooks/Utilities/HelperFunctions.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Packages/Notebooks/Utilities/HelperFunctions.nb -------------------------------------------------------------------------------- /PacletInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/PacletInfo.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Settings/Config/SetterStylesheets.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Config/SetterStylesheets.wl -------------------------------------------------------------------------------- /Resources/Settings/Mappings/ExtensionStylesMap.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Mappings/ExtensionStylesMap.wl -------------------------------------------------------------------------------- /Resources/Settings/Mappings/ExtensionToolbarsMap.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Mappings/ExtensionToolbarsMap.wl -------------------------------------------------------------------------------- /Resources/Settings/Mappings/FileViewerStylesMap.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Mappings/FileViewerStylesMap.wl -------------------------------------------------------------------------------- /Resources/Settings/Mappings/StylesheetStylesMap.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Mappings/StylesheetStylesMap.wl -------------------------------------------------------------------------------- /Resources/Settings/Mappings/StylesheetToolbarsMap.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Mappings/StylesheetToolbarsMap.wl -------------------------------------------------------------------------------- /Resources/Settings/Plugins/Apps.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Plugins/Apps.wl -------------------------------------------------------------------------------- /Resources/Settings/Plugins/BugTracker.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Plugins/BugTracker.wl -------------------------------------------------------------------------------- /Resources/Settings/Plugins/Docs.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Plugins/Docs.wl -------------------------------------------------------------------------------- /Resources/Settings/Plugins/FileMenu.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Plugins/FileMenu.wl -------------------------------------------------------------------------------- /Resources/Settings/Plugins/Git.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Plugins/Git.wl -------------------------------------------------------------------------------- /Resources/Settings/Plugins/Paclets.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Plugins/Paclets.wl -------------------------------------------------------------------------------- /Resources/Settings/Plugins/ProjectMenu.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Plugins/ProjectMenu.wl -------------------------------------------------------------------------------- /Resources/Settings/Plugins/SiteBuilder.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Plugins/SiteBuilder.wl -------------------------------------------------------------------------------- /Resources/Settings/Plugins/WindowMenu.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Plugins/WindowMenu.wl -------------------------------------------------------------------------------- /Resources/Settings/Toolbars/Authoring.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Toolbars/Authoring.wl -------------------------------------------------------------------------------- /Resources/Settings/Toolbars/BookReader.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Toolbars/BookReader.nb -------------------------------------------------------------------------------- /Resources/Settings/Toolbars/BugTracker.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Toolbars/BugTracker.wl -------------------------------------------------------------------------------- /Resources/Settings/Toolbars/CodePackage.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Toolbars/CodePackage.wl -------------------------------------------------------------------------------- /Resources/Settings/Toolbars/Docs.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Toolbars/Docs.wl -------------------------------------------------------------------------------- /Resources/Settings/Toolbars/Markdown.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Toolbars/Markdown.wl -------------------------------------------------------------------------------- /Resources/Settings/Toolbars/Package.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/Settings/Toolbars/Package.wl -------------------------------------------------------------------------------- /Resources/StyleSheets/Custom.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/Resources/StyleSheets/Custom.nb -------------------------------------------------------------------------------- /project/BugTracker.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/BugTracker.nb -------------------------------------------------------------------------------- /project/EasyIDEIDE.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/EasyIDEIDE.nb -------------------------------------------------------------------------------- /project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/README.md -------------------------------------------------------------------------------- /project/README.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/README.nb -------------------------------------------------------------------------------- /project/docs/SiteConfig.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/SiteConfig.wl -------------------------------------------------------------------------------- /project/docs/config.wl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/config.wl -------------------------------------------------------------------------------- /project/docs/content/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/favicon-16x16.png -------------------------------------------------------------------------------- /project/docs/content/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/favicon-32x32.png -------------------------------------------------------------------------------- /project/docs/content/pages/About.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/pages/About.md -------------------------------------------------------------------------------- /project/docs/content/pages/About.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/pages/About.nb -------------------------------------------------------------------------------- /project/docs/content/ref/PreemptiveQueued.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/ref/PreemptiveQueued.nb -------------------------------------------------------------------------------- /project/docs/content/ref/SetCurrentValue.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/ref/SetCurrentValue.nb -------------------------------------------------------------------------------- /project/docs/content/ref/SetCurrentValueDelayed.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/ref/SetCurrentValueDelayed.nb -------------------------------------------------------------------------------- /project/docs/content/ref/WithActiveNotebookPath.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/ref/WithActiveNotebookPath.nb -------------------------------------------------------------------------------- /project/docs/content/ref/WithFrontEndTracking.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/ref/WithFrontEndTracking.nb -------------------------------------------------------------------------------- /project/docs/content/ref/WithIDEData.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/ref/WithIDEData.nb -------------------------------------------------------------------------------- /project/docs/content/ref/WithNotebookPaused.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/ref/WithNotebookPaused.nb -------------------------------------------------------------------------------- /project/docs/content/ref/WithoutDynamics.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/ref/WithoutDynamics.nb -------------------------------------------------------------------------------- /project/docs/content/ref/WithoutScreenUpdates.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/ref/WithoutScreenUpdates.nb -------------------------------------------------------------------------------- /project/docs/content/ref/WithoutScreenUpdatesOrDynamics.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/ref/WithoutScreenUpdatesOrDynamics.nb -------------------------------------------------------------------------------- /project/docs/content/ref/iCurrentValue.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/ref/iCurrentValue.nb -------------------------------------------------------------------------------- /project/docs/content/ref/iSetOptions.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/ref/iSetOptions.nb -------------------------------------------------------------------------------- /project/docs/content/site-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/site-logo.png -------------------------------------------------------------------------------- /project/docs/content/tutorial/GettingStarted.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/content/tutorial/GettingStarted.nb -------------------------------------------------------------------------------- /project/docs/relatedCells.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b3m2a1/EasyIDE/HEAD/project/docs/relatedCells.nb --------------------------------------------------------------------------------