├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── CNAME ├── css │ ├── index.css │ └── reset.css ├── demo.html ├── empty.html ├── img │ ├── favicon.svg │ ├── github.svg │ ├── logo.svg │ └── teaser.jpg ├── index.html └── js │ └── index.js ├── editions ├── demo │ ├── tiddlers │ │ ├── $__DefaultTiddlers.tid │ │ ├── $__SiteSubtitle.tid │ │ ├── $__SiteTitle.tid │ │ ├── $__StoryList.tid │ │ ├── $__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid │ │ ├── $__config_Plugins_Disabled_$__plugins_nico_projectify-de-DE.tid │ │ ├── $__config_Plugins_Disabled_$__plugins_nico_projectify-es-ES.tid │ │ ├── $__config_Plugins_Disabled_$__plugins_nico_projectify-fr-FR.tid │ │ ├── $__config_Plugins_Disabled_$__plugins_nico_projectify-nl-NL.tid │ │ ├── $__config_Plugins_Disabled_$__plugins_nico_projectify-zh-Hans.tid │ │ ├── $__config_SaveWikiButton_Filename.tid │ │ ├── $__favicon.ico │ │ ├── $__favicon.ico.meta │ │ ├── $__palette.tid │ │ ├── $__plugins_flibbles_relink.json │ │ ├── $__plugins_flibbles_relink.json.meta │ │ ├── $__plugins_nico_notebook-mobile.json │ │ ├── $__plugins_nico_notebook-mobile.json.meta │ │ ├── $__plugins_nico_shields.json │ │ ├── $__plugins_nico_shields.json.meta │ │ ├── $__tags_PageTemplate.tid │ │ ├── $__theme.tid │ │ ├── $__themes_nico_notebook.json │ │ ├── $__themes_nico_notebook.json.meta │ │ ├── $__themes_nico_notebook_tags_SidebarSection.tid │ │ ├── @home.tid │ │ ├── @work.tid │ │ ├── Andy Matuschak on note-taking.tid │ │ ├── Book flights.tid │ │ ├── Book vacation trip.tid │ │ ├── Buy milk.tid │ │ ├── Contact nearby hotels.tid │ │ ├── Contributing.tid │ │ ├── Demo.tid │ │ ├── DemoStyles.tid │ │ ├── Design first prototype.tid │ │ ├── Design initial mockup.tid │ │ ├── Installation.tid │ │ ├── Product roadmap.tid │ │ ├── Projectify Intro.tid │ │ ├── Reading list.tid │ │ ├── Readme.tid │ │ ├── Schedule meeting with John.tid │ │ ├── Tickler.tid │ │ ├── TiddlyWiki website on WikiText.tid │ │ ├── Update the brand.tid │ │ ├── Update user interface.tid │ │ ├── Usage.tid │ │ ├── Water plants.tid │ │ └── ✨ About.tid │ └── tiddlywiki.info ├── empty-de-DE │ ├── tiddlers │ │ ├── $__DefaultTiddlers.tid │ │ ├── $__SiteSubtitle.tid │ │ ├── $__SiteTitle.tid │ │ ├── $__StoryList.tid │ │ ├── $__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid │ │ ├── $__config_RelinkOnRename.tid │ │ ├── $__language.tid │ │ ├── $__palette.tid │ │ ├── $__plugins_flibbles_relink.json │ │ ├── $__plugins_flibbles_relink.json.meta │ │ ├── $__plugins_nico_notebook-mobile.json │ │ ├── $__plugins_nico_notebook-mobile.json.meta │ │ ├── $__plugins_nico_projectify_NotebookSidebar_Projects.tid │ │ ├── $__tags_PageTemplate.tid │ │ ├── $__theme.tid │ │ ├── $__themes_nico_notebook.json │ │ ├── $__themes_nico_notebook.json.meta │ │ ├── $__themes_nico_notebook_tags_SidebarSection.tid │ │ └── Projectify.tid │ └── tiddlywiki.info ├── empty-es-ES │ ├── tiddlers │ │ ├── $__DefaultTiddlers.tid │ │ ├── $__SiteSubtitle.tid │ │ ├── $__SiteTitle.tid │ │ ├── $__StoryList.tid │ │ ├── $__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid │ │ ├── $__config_RelinkOnRename.tid │ │ ├── $__language.tid │ │ ├── $__palette.tid │ │ ├── $__plugins_flibbles_relink.json │ │ ├── $__plugins_flibbles_relink.json.meta │ │ ├── $__plugins_nico_notebook-mobile.json │ │ ├── $__plugins_nico_notebook-mobile.json.meta │ │ ├── $__plugins_nico_projectify_NotebookSidebar_Projects.tid │ │ ├── $__tags_PageTemplate.tid │ │ ├── $__theme.tid │ │ ├── $__themes_nico_notebook.json │ │ ├── $__themes_nico_notebook.json.meta │ │ ├── $__themes_nico_notebook_tags_SidebarSection.tid │ │ └── Projectify.tid │ └── tiddlywiki.info ├── empty-fr-FR │ ├── tiddlers │ │ ├── $__DefaultTiddlers.tid │ │ ├── $__SiteSubtitle.tid │ │ ├── $__SiteTitle.tid │ │ ├── $__StoryList.tid │ │ ├── $__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid │ │ ├── $__config_RelinkOnRename.tid │ │ ├── $__language.tid │ │ ├── $__palette.tid │ │ ├── $__plugins_flibbles_relink.json │ │ ├── $__plugins_flibbles_relink.json.meta │ │ ├── $__plugins_nico_notebook-mobile.json │ │ ├── $__plugins_nico_notebook-mobile.json.meta │ │ ├── $__plugins_nico_projectify_NotebookSidebar_Projects.tid │ │ ├── $__tags_PageTemplate.tid │ │ ├── $__theme.tid │ │ ├── $__themes_nico_notebook.json │ │ ├── $__themes_nico_notebook.json.meta │ │ ├── $__themes_nico_notebook_tags_SidebarSection.tid │ │ └── Projectify.tid │ └── tiddlywiki.info ├── empty-nl-NL │ ├── tiddlers │ │ ├── $__DefaultTiddlers.tid │ │ ├── $__SiteSubtitle.tid │ │ ├── $__SiteTitle.tid │ │ ├── $__StoryList.tid │ │ ├── $__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid │ │ ├── $__config_RelinkOnRename.tid │ │ ├── $__language.tid │ │ ├── $__palette.tid │ │ ├── $__plugins_flibbles_relink.json │ │ ├── $__plugins_flibbles_relink.json.meta │ │ ├── $__plugins_nico_notebook-mobile.json │ │ ├── $__plugins_nico_notebook-mobile.json.meta │ │ ├── $__plugins_nico_projectify_NotebookSidebar_Projects.tid │ │ ├── $__tags_PageTemplate.tid │ │ ├── $__theme.tid │ │ ├── $__themes_nico_notebook.json │ │ ├── $__themes_nico_notebook.json.meta │ │ ├── $__themes_nico_notebook_tags_SidebarSection.tid │ │ └── Projectify.tid │ └── tiddlywiki.info └── empty │ ├── tiddlers │ ├── $__DefaultTiddlers.tid │ ├── $__SiteSubtitle.tid │ ├── $__SiteTitle.tid │ ├── $__StoryList.tid │ ├── $__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid │ ├── $__config_RelinkOnRename.tid │ ├── $__palette.tid │ ├── $__plugins_flibbles_relink.json │ ├── $__plugins_flibbles_relink.json.meta │ ├── $__plugins_nico_notebook-mobile.json │ ├── $__plugins_nico_notebook-mobile.json.meta │ ├── $__plugins_nico_projectify_NotebookSidebar_Projects.tid │ ├── $__tags_PageTemplate.tid │ ├── $__theme.tid │ ├── $__themes_nico_notebook.json │ ├── $__themes_nico_notebook.json.meta │ ├── $__themes_nico_notebook_tags_SidebarSection.tid │ └── Projectify.tid │ └── tiddlywiki.info ├── package-lock.json ├── package.json ├── plugins └── nico │ ├── projectify-de-DE │ ├── language │ │ ├── EmptyInboxDescription.tid │ │ ├── EmptyInboxTitle.tid │ │ ├── EmptyNextActionsDescription.tid │ │ ├── EmptyNextActionsTitle.tid │ │ ├── EmptyProjectDescription.tid │ │ ├── EmptyProjectTitle.tid │ │ ├── EmptyProjectsDescription.tid │ │ ├── EmptyProjectsTitle.tid │ │ ├── EmptyUpcomingDescription.tid │ │ ├── EmptyUpcomingTitle.tid │ │ ├── WelcomeInboxDescription.tid │ │ ├── WelcomeInboxTitle.tid │ │ ├── WelcomeProjectDescription.tid │ │ ├── WelcomeProjectTitle.tid │ │ └── index.multids │ └── plugin.info │ ├── projectify-es-ES │ ├── language │ │ ├── EmptyInboxDescription.tid │ │ ├── EmptyInboxTitle.tid │ │ ├── EmptyNextActionsDescription.tid │ │ ├── EmptyNextActionsTitle.tid │ │ ├── EmptyProjectDescription.tid │ │ ├── EmptyProjectTitle.tid │ │ ├── EmptyProjectsDescription.tid │ │ ├── EmptyProjectsTitle.tid │ │ ├── EmptyUpcomingDescription.tid │ │ ├── EmptyUpcomingTitle.tid │ │ ├── WelcomeInboxDescription.tid │ │ ├── WelcomeInboxTitle.tid │ │ ├── WelcomeProjectDescription.tid │ │ ├── WelcomeProjectTitle.tid │ │ └── index.multids │ └── plugin.info │ ├── projectify-fr-FR │ ├── language │ │ ├── EmptyInboxDescription.tid │ │ ├── EmptyInboxTitle.tid │ │ ├── EmptyNextActionsDescription.tid │ │ ├── EmptyNextActionsTitle.tid │ │ ├── EmptyProjectDescription.tid │ │ ├── EmptyProjectTitle.tid │ │ ├── EmptyProjectsDescription.tid │ │ ├── EmptyProjectsTitle.tid │ │ ├── EmptyUpcomingDescription.tid │ │ ├── EmptyUpcomingTitle.tid │ │ ├── WelcomeInboxDescription.tid │ │ ├── WelcomeInboxTitle.tid │ │ ├── WelcomeProjectDescription.tid │ │ ├── WelcomeProjectTitle.tid │ │ └── index.multids │ └── plugin.info │ ├── projectify-nl-NL │ ├── language │ │ ├── EmptyInboxDescription.tid │ │ ├── EmptyInboxTitle.tid │ │ ├── EmptyNextActionsDescription.tid │ │ ├── EmptyNextActionsTitle.tid │ │ ├── EmptyProjectDescription.tid │ │ ├── EmptyProjectTitle.tid │ │ ├── EmptyProjectsDescription.tid │ │ ├── EmptyProjectsTitle.tid │ │ ├── EmptyUpcomingDescription.tid │ │ ├── EmptyUpcomingTitle.tid │ │ ├── WelcomeInboxDescription.tid │ │ ├── WelcomeInboxTitle.tid │ │ ├── WelcomeProjectDescription.tid │ │ ├── WelcomeProjectTitle.tid │ │ └── index.multids │ └── plugin.info │ ├── projectify-zh-Hans │ ├── language │ │ ├── EmptyInboxDescription.tid │ │ ├── EmptyInboxTitle.tid │ │ ├── EmptyNextActionsDescription.tid │ │ ├── EmptyNextActionsTitle.tid │ │ ├── EmptyProjectDescription.tid │ │ ├── EmptyProjectTitle.tid │ │ ├── EmptyProjectsDescription.tid │ │ ├── EmptyProjectsTitle.tid │ │ ├── EmptyUpcomingDescription.tid │ │ ├── EmptyUpcomingTitle.tid │ │ ├── WelcomeInboxDescription.tid │ │ ├── WelcomeInboxTitle.tid │ │ ├── WelcomeProjectDescription.tid │ │ ├── WelcomeProjectTitle.tid │ │ └── index.multids │ └── plugin.info │ └── projectify │ ├── plugin.info │ └── tiddlers │ ├── LICENSE.tid │ ├── QuickCapture.tid │ ├── changelog.tid │ ├── config │ ├── $__config_ShortcutInfo_py-quick-capture.tid │ ├── $__config_flibbles_relink_fields_category.tid │ ├── $__config_projectify_DefaultDashboardTab.tid │ ├── $__config_projectify_projects-view.tid │ ├── $__config_shortcuts_py-quick-capture.tid │ └── config.multids │ ├── doc │ ├── Categories.tid │ ├── CoreConcepts.tid │ ├── Customizing.tid │ ├── Dashboard.tid │ ├── DashboardCustomTabs.tid │ ├── DashboardInboxSeparateTab.tid │ ├── GettingStarted.tid │ ├── Help.tid │ ├── Inbox.tid │ ├── Installation.tid │ ├── Links.tid │ ├── NextActions.tid │ ├── Projects.tid │ ├── QuickCapture.tid │ ├── Refiling.tid │ ├── Schedule.tid │ ├── Todos.tid │ └── TranscludingUIElements.tid │ ├── icon.tid │ ├── images │ ├── archive.tid │ ├── calendar-checked.tid │ ├── calendar-event.tid │ ├── calendar.tid │ ├── check-circle-light.tid │ ├── check-circle.tid │ ├── checkbox-checked-solid.tid │ ├── checkbox-checked.tid │ ├── checkbox.tid │ ├── checklist.tid │ ├── circle.tid │ ├── collection.tid │ ├── compass.tid │ ├── dots.tid │ ├── drag-handle.tid │ ├── eye.tid │ ├── eyeslash.tid │ ├── file.tid │ ├── flag.tid │ ├── front.tid │ ├── funnel.tid │ ├── icon.svg │ ├── icon.svg.meta │ ├── inbox.tid │ ├── info.tid │ ├── lightbulb.tid │ ├── logo.svg │ ├── logo.svg.meta │ ├── palmtree.tid │ ├── pie.tid │ ├── postbox.tid │ ├── quick-capture.tid │ ├── rocket.tid │ ├── slash-circle.tid │ ├── stack.tid │ ├── sun.tid │ ├── tada.tid │ ├── tasks.tid │ ├── victory.tid │ └── waving-hand.tid │ ├── language │ └── en-GB │ │ ├── EmptyInboxDescription.tid │ │ ├── EmptyInboxTitle.tid │ │ ├── EmptyNextActionsDescription.tid │ │ ├── EmptyNextActionsTitle.tid │ │ ├── EmptyProjectDescription.tid │ │ ├── EmptyProjectTitle.tid │ │ ├── EmptyProjectsDescription.tid │ │ ├── EmptyProjectsTitle.tid │ │ ├── EmptyUpcomingDescription.tid │ │ ├── EmptyUpcomingTitle.tid │ │ ├── WelcomeInboxDescription.tid │ │ ├── WelcomeInboxTitle.tid │ │ ├── WelcomeProjectDescription.tid │ │ ├── WelcomeProjectTitle.tid │ │ └── index.multids │ ├── lib │ ├── pikaday.css.tid │ └── pikaday.js │ ├── macros │ ├── filters.tid │ ├── schedule.tid │ ├── todo-list.tid │ └── utils.tid │ ├── quick-capture.tid │ ├── styles │ ├── cards.tid │ ├── category.tid │ ├── date-picker.tid │ ├── form-control.tid │ ├── notebook.tid │ ├── quick-capture.tid │ ├── stylesheet.tid │ ├── utils.tid │ ├── vanilla.tid │ └── welcome.tid │ └── ui │ ├── buttons │ ├── AddCategory.tid │ ├── AddProject.tid │ ├── ArchiveProject.tid │ ├── Cancel.tid │ ├── CategoryFilter.tid │ ├── Checkbox.tid │ ├── ProjectCardSettings.tid │ ├── ProjectListSettings.tid │ ├── RestoreProject.tid │ ├── Save.tid │ ├── Scheduled.tid │ ├── SelectCategory.tid │ ├── TodoActions.tid │ ├── TodoDueDate.tid │ ├── TodoPriority.tid │ ├── ToggleCompletedTodos.tid │ └── ToggleTodo.tid │ ├── category │ ├── Category.tid │ └── CategoryPill.tid │ ├── config │ ├── Basics.tid │ ├── Calendar.tid │ ├── Categories.tid │ ├── Config.tid │ └── Dashboard.tid │ ├── dashboard │ ├── ActiveProjects.tid │ ├── ArchivedProjects.tid │ ├── Dashboard.tid │ ├── Date.tid │ ├── Filter.tid │ ├── InboxAndProjects.tid │ ├── NextActions.tid │ ├── ProjectCard.tid │ ├── ProjectCards.tid │ ├── ProjectList.tid │ ├── ProjectListItem.tid │ ├── Projects.tid │ ├── ReorderProjects.tid │ ├── Today.tid │ ├── TodayCount.tid │ └── Upcoming.tid │ ├── forms │ ├── AddTodo.tid │ ├── HelpSearch.tid │ ├── NewCategory.tid │ ├── NewProject.tid │ ├── TodoConvert.tid │ ├── TodoDueDate.tid │ └── TodoPriority.tid │ ├── inbox │ └── Inbox.tid │ ├── project │ ├── ArchivedProjectBanner.tid │ ├── FilteredTodos.tid │ ├── NextAction.tid │ └── Project.tid │ ├── sidebar │ ├── Projects.tid │ └── Upcoming.tid │ ├── todo │ ├── TodoActions.tid │ ├── TodoCaption.tid │ ├── TodoHeading.tid │ └── TodoItem.tid │ ├── welcome │ ├── EmptyInbox.tid │ ├── EmptyNextActions.tid │ ├── EmptyProject.tid │ ├── EmptyProjects.tid │ ├── EmptyUpcoming.tid │ └── HelpWelcome.tid │ └── widgets │ └── date-picker.js ├── tiddlers ├── $__DefaultTiddlers.tid ├── $__StoryList.tid ├── $__config_Plugins_Disabled_$__plugins_nico_projectify-de-DE.tid ├── $__config_Plugins_Disabled_$__plugins_nico_projectify-fr-FR.tid ├── $__config_Plugins_Disabled_$__plugins_nico_projectify-nl-NL.tid ├── $__config_Plugins_Disabled_$__plugins_nico_projectify-zh-Hans.tid ├── $__plugins_flibbles_relink.json ├── $__plugins_flibbles_relink.json.meta ├── Demo.tid └── GettingStarted.tid └── tiddlywiki.info /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: NicolasPetton # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /editions/*/output/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License Copyright (c) 2020-2021 Nicolas Petton 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is furnished 8 | to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice (including the next 11 | paragraph) shall be included in all copies or substantial portions of the 12 | Software. 13 | 14 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 15 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 16 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS 17 | OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 18 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF 19 | OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | projectify.wiki -------------------------------------------------------------------------------- /docs/css/reset.css: -------------------------------------------------------------------------------- 1 | html, body, div, span, applet, object, iframe, 2 | h1, h2, h3, h4, h5, h6, p, blockquote, pre, 3 | a, abbr, acronym, address, big, cite, code, 4 | del, dfn, em, img, ins, kbd, q, s, samp, 5 | small, strike, strong, sub, sup, tt, var, 6 | b, u, i, center, 7 | dl, dt, dd, ol, ul, li, 8 | fieldset, form, label, legend, 9 | table, caption, tbody, tfoot, thead, tr, th, td, 10 | article, aside, canvas, details, embed, 11 | figure, figcaption, footer, header, hgroup, 12 | menu, nav, output, ruby, section, summary, 13 | time, mark, audio, video { 14 | margin: 0; 15 | padding: 0; 16 | border: 0; 17 | font-size: 100%; 18 | font: inherit; 19 | vertical-align: baseline; 20 | } 21 | /* HTML5 display-role reset for older browsers */ 22 | article, aside, details, figcaption, figure, 23 | footer, header, hgroup, menu, nav, section { 24 | display: block; 25 | } 26 | body { 27 | line-height: 1; 28 | } 29 | ol, ul { 30 | list-style: none; 31 | } 32 | blockquote, q { 33 | quotes: none; 34 | } 35 | blockquote:before, blockquote:after, 36 | q:before, q:after { 37 | content: ''; 38 | content: none; 39 | } 40 | table { 41 | border-collapse: collapse; 42 | border-spacing: 0; 43 | } 44 | 45 | pre { 46 | font-family: monospace; 47 | padding: 10px; 48 | background: #efeadc; 49 | margin: 20px 0px; 50 | border: 1px solid #ccc; 51 | border-radius: 6px; 52 | font-size: 1.2em; 53 | } 54 | -------------------------------------------------------------------------------- /docs/img/github.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/img/teaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Projectify/a05ec437c0e4e433408ada6fe5ca5bc9cb250497/docs/img/teaser.jpg -------------------------------------------------------------------------------- /docs/js/index.js: -------------------------------------------------------------------------------- 1 | function animate() { 2 | const elements = document.querySelectorAll('.animate'); 3 | 4 | const observer = new IntersectionObserver((entries) => { 5 | entries.forEach((entry) => { 6 | if (entry.intersectionRatio > 0) { 7 | console.log(`Ratio: ${entry.intersectionRatio}`); 8 | entry.target.classList.add('appear'); 9 | observer.unobserve(entry.target); 10 | } 11 | }); 12 | }, {threshold: 0.2}); 13 | 14 | elements.forEach((element) => { 15 | observer.observe(element); 16 | }); 17 | } 18 | 19 | document.addEventListener("DOMContentLoaded", (event) => { 20 | animate(); 21 | }); 22 | -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__DefaultTiddlers.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165857364 2 | modified: 20210108194629246 3 | title: $:/DefaultTiddlers 4 | type: text/vnd.tiddlywiki 5 | 6 | [[✨ About]] Demo Contributing -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__SiteSubtitle.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165847868 2 | modified: 20201219110914677 3 | title: $:/SiteSubtitle 4 | type: text/vnd.tiddlywiki 5 | 6 | Manage projects in ~TiddlyWiki. -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__SiteTitle.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165839734 2 | modified: 20201219110914686 3 | title: $:/SiteTitle 4 | type: text/vnd.tiddlywiki 5 | 6 | Projectify -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__StoryList.tid: -------------------------------------------------------------------------------- 1 | list: [[✨ About]] Demo Contributing 2 | title: $:/StoryList -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165921203 2 | modified: 20201219110914425 3 | title: $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/home 4 | type: text/vnd.tiddlywiki 5 | 6 | show -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__config_Plugins_Disabled_$__plugins_nico_projectify-de-DE.tid: -------------------------------------------------------------------------------- 1 | created: 20210127101659118 2 | modified: 20210127101659141 3 | title: $:/config/Plugins/Disabled/$:/plugins/nico/projectify-de-DE 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__config_Plugins_Disabled_$__plugins_nico_projectify-es-ES.tid: -------------------------------------------------------------------------------- 1 | created: 20210127101652727 2 | modified: 20210201195143762 3 | title: $:/config/Plugins/Disabled/$:/plugins/nico/projectify-es-ES 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__config_Plugins_Disabled_$__plugins_nico_projectify-fr-FR.tid: -------------------------------------------------------------------------------- 1 | created: 20210127101652727 2 | modified: 20210127101652740 3 | title: $:/config/Plugins/Disabled/$:/plugins/nico/projectify-fr-FR 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__config_Plugins_Disabled_$__plugins_nico_projectify-nl-NL.tid: -------------------------------------------------------------------------------- 1 | created: 20210127101656333 2 | modified: 20210127101656354 3 | title: $:/config/Plugins/Disabled/$:/plugins/nico/projectify-nl-NL 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__config_Plugins_Disabled_$__plugins_nico_projectify-zh-Hans.tid: -------------------------------------------------------------------------------- 1 | created: 20210127101701943 2 | modified: 20210127101701967 3 | title: $:/config/Plugins/Disabled/$:/plugins/nico/projectify-zh-Hans 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__config_SaveWikiButton_Filename.tid: -------------------------------------------------------------------------------- 1 | created: 20210109043935928 2 | modified: 20210109044020375 3 | tags: 4 | title: $:/config/SaveWikiButton/Filename 5 | 6 | Projectify {{$:/plugins/nico/projectify!!version}}.html -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NicolasPetton/Projectify/a05ec437c0e4e433408ada6fe5ca5bc9cb250497/editions/demo/tiddlers/$__favicon.ico -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__favicon.ico.meta: -------------------------------------------------------------------------------- 1 | created: 20210108193606210 2 | modified: 20210108193609295 3 | title: $:/favicon.ico 4 | type: image/x-icon -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__palette.tid: -------------------------------------------------------------------------------- 1 | created: 20201212170118346 2 | modified: 20210105201128921 3 | title: $:/palette 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/themes/nico/notebook/palettes/palette-beige -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__plugins_flibbles_relink.json.meta: -------------------------------------------------------------------------------- 1 | author: Flibbles 2 | core-version: >=5.1.14 3 | created: 20190921200305594 4 | dependents: 5 | description: Relink - flexibility when relinking renamed tiddlers 6 | list: readme configuration 7 | modified: 20201219111228843 8 | plugin-type: plugin 9 | source: https://github.com/flibbles/tw5-relink 10 | tags: tb 11 | title: $:/plugins/flibbles/relink 12 | type: application/json 13 | version: 1.5.3 -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__plugins_nico_notebook-mobile.json: -------------------------------------------------------------------------------- 1 | { 2 | "tiddlers": { 3 | "$:/plugins/nico/notebook-mobile/js/notebookSidebarNav.js": { 4 | "title": "$:/plugins/nico/notebook-mobile/js/notebookSidebarNav.js", 5 | "text": "/*\\\ntitle: $:/themes/nico/notebook-mobile/js/notebookSidebarNav.js\ntype: application/javascript\nmodule-type: global\n\nCloses the notebook sidebar on mobile when navigating\n\n\\*/\n(function(){\n\n /*jslint node: true, browser: true */\n /*global $tw: false */\n \"use strict\";\n\n const isOnMobile = () => {\n\t\tlet bottombar = document.querySelector('.nc-bottombar');\n\t\treturn bottombar && bottombar.getClientRects().length > 0;\n };\n\n const closeSidebar = () => {\n\t\t$tw.wiki.setText(\"$:/state/notebook-sidebar\", \"text\", undefined, \"no\");\n };\n\n const closeSidebarOnMobile = () => {\n\t\tif (isOnMobile()) {\n console.log(\"closing sidebar\");\n\t\t\tcloseSidebar();\n\t\t};\n };\n\n const setup = () => {\n\t\t$tw.hooks.addHook(\"th-navigating\",function(event) {\n\t\t\tcloseSidebarOnMobile();\n\t\t\treturn event;\n\t\t});\n };\n\n setup();\n\n exports.closeNotebookSidebar = closeSidebar;\n})();\n", 6 | "type": "application/javascript", 7 | "module-type": "global", 8 | "created": "20200430151329085", 9 | "modified": "20201210200127495", 10 | "tags": "" 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__plugins_nico_notebook-mobile.json.meta: -------------------------------------------------------------------------------- 1 | author: NicolasPetton 2 | core-version: >=5.1.22 3 | created: 20201219111632312 4 | dependents: 5 | description: JavaScript hooks for mobile devices support of the Notebook theme 6 | list: 7 | modified: 20201219111632312 8 | name: Mobile support for the Notebook theme 9 | plugin-type: plugin 10 | source: https://github.com/NicolasPetton/Notebook 11 | title: $:/plugins/nico/notebook-mobile 12 | type: application/json 13 | version: 1.0.0 -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__plugins_nico_shields.json.meta: -------------------------------------------------------------------------------- 1 | author: NicolasPetton 2 | core-version: >=5.1.22 3 | created: 20201219120401359 4 | dependents: 5 | description: Shields for your wikis 6 | list: LICENSE 7 | modified: 20201219120401359 8 | name: Shields 9 | plugin-type: plugin 10 | source: https://github.com/NicolasPetton/Shields 11 | title: $:/plugins/nico/shields 12 | type: application/json 13 | version: 0.0.2 -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__tags_PageTemplate.tid: -------------------------------------------------------------------------------- 1 | created: 20201218161619312 2 | list: $:/core/ui/PageTemplate/topleftbar $:/core/ui/PageTemplate/toprightbar [[Projectify Intro]] $:/core/ui/PageTemplate/story $:/core/ui/PageTemplate/alerts $:/core/ui/PageTemplate/drafts $:/core/ui/PageTemplate/pluginreloadwarning $:/themes/nico/notebook/ui/Bottombar $:/themes/nico/notebook/ui/Buttons/menu $:/themes/nico/notebook/ui/Sidebar $:/themes/nico/notebook/ui/Topbar 3 | modified: 20201219110914700 4 | title: $:/tags/PageTemplate 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__theme.tid: -------------------------------------------------------------------------------- 1 | created: 20201219111643671 2 | modified: 20201219111643719 3 | title: $:/theme 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/themes/nico/notebook -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__themes_nico_notebook.json.meta: -------------------------------------------------------------------------------- 1 | author: NicolasPetton 2 | core-version: >=5.1.22 3 | created: 20210203201618013 4 | dependents: $:/themes/tiddlywiki/vanilla $:/plugins/nico/notebook-mobile 5 | description: A clean, uncluttered TiddlyWiki theme 6 | list: LICENSE changelog 7 | modified: 20210203201618013 8 | name: Notebook theme 9 | plugin-type: theme 10 | source: https://github.com/NicolasPetton/Notebook 11 | title: $:/themes/nico/notebook 12 | type: application/json 13 | version: 1.4.1 -------------------------------------------------------------------------------- /editions/demo/tiddlers/$__themes_nico_notebook_tags_SidebarSection.tid: -------------------------------------------------------------------------------- 1 | created: 20200429201017275 2 | list: $:/plugins/nico/projectify/NotebookSidebar/Projects $:/themes/nico/notebook/ui/Sidebar/Open $:/themes/nico/notebook/ui/Sidebar/Recent $:/themes/nico/notebook/ui/Sidebar/Tools $:/themes/nico/notebook/ui/Sidebar/More 3 | modified: 20201219110914710 4 | title: $:/themes/nico/notebook/tags/SidebarSection 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/demo/tiddlers/@home.tid: -------------------------------------------------------------------------------- 1 | color: #d9ffeb 2 | created: 20210117205118981 3 | modified: 20210118092220136 4 | tags: $:/plugins/nico/projectify/tags/Category 5 | title: @home 6 | type: text/vnd.tiddlywiki 7 | -------------------------------------------------------------------------------- /editions/demo/tiddlers/@work.tid: -------------------------------------------------------------------------------- 1 | color: #ffebd9 2 | created: 20210117205124024 3 | modified: 20210118092220117 4 | tags: $:/plugins/nico/projectify/tags/Category 5 | title: @work 6 | type: text/vnd.tiddlywiki 7 | -------------------------------------------------------------------------------- /editions/demo/tiddlers/Andy Matuschak on note-taking.tid: -------------------------------------------------------------------------------- 1 | created: 20200427203054242 2 | modified: 20201219110954627 3 | tags: [[Reading list]] todo 4 | title: Andy Matuschak on note-taking 5 | type: text/vnd.tiddlywiki 6 | 7 | https://notes.andymatuschak.org/About_these_notes -------------------------------------------------------------------------------- /editions/demo/tiddlers/Book flights.tid: -------------------------------------------------------------------------------- 1 | created: 20200427203243195 2 | due: 20210129120000000 3 | modified: 20210108194549651 4 | tags: [[Book vacation trip]] todo 5 | title: Book flights 6 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/demo/tiddlers/Book vacation trip.tid: -------------------------------------------------------------------------------- 1 | card-color: default 2 | category: @home 3 | created: 20200427203232728 4 | list: [[Book flights]] 5 | modified: 20210118092220146 6 | tags: Project Archived 7 | title: Book vacation trip 8 | type: text/vnd.tiddlywiki 9 | -------------------------------------------------------------------------------- /editions/demo/tiddlers/Buy milk.tid: -------------------------------------------------------------------------------- 1 | created: 20200427202605474 2 | modified: 20201219110954654 3 | tags: Inbox todo 4 | title: Buy milk 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/demo/tiddlers/Contact nearby hotels.tid: -------------------------------------------------------------------------------- 1 | created: 20210108193852945 2 | due: 20210129120000000 3 | modified: 20210108194549690 4 | tags: [[Book vacation trip]] todo 5 | title: Contact nearby hotels 6 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/demo/tiddlers/Contributing.tid: -------------------------------------------------------------------------------- 1 | created: 20210108194531730 2 | modified: 20210108194550837 3 | tags: 4 | title: Contributing 5 | type: text/vnd.tiddlywiki 6 | 7 | The project is hosted on ~GitHub at [[github.com/nicolaspetton/projectify|https://github.com/nicolaspetton/projectify]]. 8 | 9 | Bug reports & pull requests are most welcome! -------------------------------------------------------------------------------- /editions/demo/tiddlers/Demo.tid: -------------------------------------------------------------------------------- 1 | created: 20201219105303278 2 | modified: 20201219110954677 3 | tags: 4 | title: Demo 5 | type: text/vnd.tiddlywiki 6 | 7 | {{$:/plugins/nico/projectify/ui/dashboard/Dashboard}} -------------------------------------------------------------------------------- /editions/demo/tiddlers/DemoStyles.tid: -------------------------------------------------------------------------------- 1 | created: 20210127203128930 2 | modified: 20210127203201218 3 | tags: $:/tags/Stylesheet 4 | title: DemoStyles 5 | type: text/vnd.tiddlywiki 6 | 7 | .download-link { 8 | text-decoration: none; 9 | padding: 8px 20px; 10 | border-radius: 8px; 11 | font-weight: bold; 12 | display: inline-block; 13 | box-shadow: 0 0 10px 0 rgba(0, 0, 0, .25); 14 | } 15 | 16 | .download-link svg { 17 | width: 1.2em; 18 | height: 1.2em; 19 | vertical-align: middle; 20 | } 21 | 22 | -------------------------------------------------------------------------------- /editions/demo/tiddlers/Design first prototype.tid: -------------------------------------------------------------------------------- 1 | created: 20200427202827951 2 | modified: 20201219110954686 3 | tags: [[Product roadmap]] todo done 4 | title: Design first prototype 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/demo/tiddlers/Design initial mockup.tid: -------------------------------------------------------------------------------- 1 | created: 20201216200551529 2 | due: 20210120120000000 3 | modified: 20210117205147746 4 | tags: todo Tickler 5 | title: Design initial mockup 6 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/demo/tiddlers/Installation.tid: -------------------------------------------------------------------------------- 1 | created: 20201212170038783 2 | modified: 20201219110954809 3 | title: Installation 4 | type: text/vnd.tiddlywiki 5 | 6 | {{$:/plugins/nico/projectify/installation}} -------------------------------------------------------------------------------- /editions/demo/tiddlers/Product roadmap.tid: -------------------------------------------------------------------------------- 1 | category: @work 2 | created: 20200427202716907 3 | description: Initial roadmap for the minimum viable product 4 | modified: 20210118092220126 5 | tags: Project 6 | title: Product roadmap 7 | type: text/vnd.tiddlywiki 8 | -------------------------------------------------------------------------------- /editions/demo/tiddlers/Projectify Intro.tid: -------------------------------------------------------------------------------- 1 | created: 20201218161315664 2 | modified: 20210120190316641 3 | tags: 4 | title: Projectify Intro 5 | type: text/vnd.tiddlywiki 6 | 7 |
8 | 9 |

Project management for [[TiddlyWiki|https://tiddlywiki.com]].

10 |
11 | 12 | 37 | -------------------------------------------------------------------------------- /editions/demo/tiddlers/Reading list.tid: -------------------------------------------------------------------------------- 1 | card-color: orange 2 | created: 20200427202913804 3 | description: Log of all books I want to read. 4 | modified: 20201223210618878 5 | tags: Project 6 | title: Reading list 7 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/demo/tiddlers/Schedule meeting with John.tid: -------------------------------------------------------------------------------- 1 | created: 20200427202812671 2 | due: 20210118120000000 3 | modified: 20210117205153455 4 | tags: [[Product roadmap]] todo 5 | title: Schedule meeting with John 6 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/demo/tiddlers/Tickler.tid: -------------------------------------------------------------------------------- 1 | card-color: green 2 | created: 20201216200522755 3 | description: Todos to be done later. 4 | modified: 20210108193703103 5 | tags: Project 6 | title: Tickler 7 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/demo/tiddlers/TiddlyWiki website on WikiText.tid: -------------------------------------------------------------------------------- 1 | created: 20200427203004810 2 | due: 20210129120000000 3 | modified: 20210108194549679 4 | tags: [[Reading list]] todo 5 | title: TiddlyWiki website on WikiText 6 | type: text/vnd.tiddlywiki 7 | 8 | https://tiddlywiki.com/#WikiText -------------------------------------------------------------------------------- /editions/demo/tiddlers/Update the brand.tid: -------------------------------------------------------------------------------- 1 | created: 20200427202754318 2 | modified: 20201219110954979 3 | tags: [[Product roadmap]] todo 4 | title: Update the brand 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/demo/tiddlers/Update user interface.tid: -------------------------------------------------------------------------------- 1 | created: 20200427202854124 2 | modified: 20201219110954996 3 | tags: [[Product roadmap]] todo 4 | title: Update user interface 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/demo/tiddlers/Usage.tid: -------------------------------------------------------------------------------- 1 | created: 20201212170005281 2 | modified: 20201219110955003 3 | title: Usage 4 | type: text/vnd.tiddlywiki 5 | 6 | {{$:/plugins/nico/projectify/usage}} -------------------------------------------------------------------------------- /editions/demo/tiddlers/Water plants.tid: -------------------------------------------------------------------------------- 1 | created: 20200427202700859 2 | modified: 20201219110955035 3 | tags: Inbox todo 4 | title: Water plants 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/demo/tiddlers/✨ About.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165938184 2 | modified: 20210120190637475 3 | tags: 4 | title: ✨ About 5 | type: text/vnd.tiddlywiki 6 | 7 | {{Projectify Intro}} 8 | 9 | <$link to="$:/plugins/nico/projectify/LICENSE"><> 10 | <$link to="$:/plugins/nico/projectify"><> 11 | <> 12 | 13 | {{Readme}} 14 | -------------------------------------------------------------------------------- /editions/demo/tiddlywiki.info: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Projectify website", 3 | "plugins": [ 4 | "tiddlywiki/tiddlyweb", 5 | "tiddlywiki/filesystem", 6 | "nico/projectify", 7 | "nico/projectify-de-DE", 8 | "nico/projectify-fr-FR", 9 | "nico/projectify-nl-NL", 10 | "nico/projectify-es-ES", 11 | "nico/projectify-zh-Hans" 12 | ], 13 | "themes": [ 14 | "tiddlywiki/vanilla", 15 | "tiddlywiki/snowwhite" 16 | ], 17 | "build": { 18 | "index": [ 19 | "--rendertiddler", 20 | "$:/plugins/tiddlywiki/tiddlyweb/save/offline", 21 | "demo.html", 22 | "text/plain" 23 | ], 24 | "readme": [ 25 | "--rendertiddler","Readme","README.md","text/html" 26 | ] 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__DefaultTiddlers.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165857364 2 | modified: 20201219112032233 3 | title: $:/DefaultTiddlers 4 | type: text/vnd.tiddlywiki 5 | 6 | GettingStarted Projectify -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__SiteSubtitle.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165847868 2 | modified: 20201219110914677 3 | title: $:/SiteSubtitle 4 | type: text/vnd.tiddlywiki 5 | 6 | Manage projects in ~TiddlyWiki. -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__SiteTitle.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165839734 2 | modified: 20201219110914686 3 | title: $:/SiteTitle 4 | type: text/vnd.tiddlywiki 5 | 6 | Projectify -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__StoryList.tid: -------------------------------------------------------------------------------- 1 | list: GettingStarted Projectify 2 | title: $:/StoryList -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165921203 2 | modified: 20201219110914425 3 | title: $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/home 4 | type: text/vnd.tiddlywiki 5 | 6 | show -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__config_RelinkOnRename.tid: -------------------------------------------------------------------------------- 1 | created: 20201219111934703 2 | modified: 20201219111934744 3 | title: $:/config/RelinkOnRename 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__language.tid: -------------------------------------------------------------------------------- 1 | created: 20210112202731563 2 | modified: 20210120184917236 3 | title: $:/language 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/languages/de-DE -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__palette.tid: -------------------------------------------------------------------------------- 1 | created: 20201212170118346 2 | modified: 20210106103715268 3 | title: $:/palette 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/themes/nico/notebook/palettes/palette-beige -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__plugins_flibbles_relink.json.meta: -------------------------------------------------------------------------------- 1 | author: Flibbles 2 | core-version: >=5.1.14 3 | created: 20190921200305594 4 | dependents: 5 | description: Relink - flexibility when relinking renamed tiddlers 6 | list: readme configuration 7 | modified: 20201130170503431 8 | plugin-type: plugin 9 | source: https://github.com/flibbles/tw5-relink 10 | tags: tb 11 | title: $:/plugins/flibbles/relink 12 | type: application/json 13 | version: 1.5.3 -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__plugins_nico_notebook-mobile.json: -------------------------------------------------------------------------------- 1 | { 2 | "tiddlers": { 3 | "$:/plugins/nico/notebook-mobile/js/notebookSidebarNav.js": { 4 | "title": "$:/plugins/nico/notebook-mobile/js/notebookSidebarNav.js", 5 | "text": "/*\\\ntitle: $:/themes/nico/notebook-mobile/js/notebookSidebarNav.js\ntype: application/javascript\nmodule-type: global\n\nCloses the notebook sidebar on mobile when navigating\n\n\\*/\n(function(){\n\n /*jslint node: true, browser: true */\n /*global $tw: false */\n \"use strict\";\n\n const isOnMobile = () => {\n\t\tlet bottombar = document.querySelector('.nc-bottombar');\n\t\treturn bottombar && bottombar.getClientRects().length > 0;\n };\n\n const closeSidebar = () => {\n\t\t$tw.wiki.setText(\"$:/state/notebook-sidebar\", \"text\", undefined, \"no\");\n };\n\n const closeSidebarOnMobile = () => {\n\t\tif (isOnMobile()) {\n console.log(\"closing sidebar\");\n\t\t\tcloseSidebar();\n\t\t};\n };\n\n const setup = () => {\n\t\t$tw.hooks.addHook(\"th-navigating\",function(event) {\n\t\t\tcloseSidebarOnMobile();\n\t\t\treturn event;\n\t\t});\n };\n\n setup();\n\n exports.closeNotebookSidebar = closeSidebar;\n})();\n", 6 | "type": "application/javascript", 7 | "module-type": "global", 8 | "created": "20200430151329085", 9 | "modified": "20201210200127495", 10 | "tags": "" 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__plugins_nico_notebook-mobile.json.meta: -------------------------------------------------------------------------------- 1 | author: NicolasPetton 2 | core-version: >=5.1.22 3 | created: 20210106200140452 4 | dependents: 5 | description: JavaScript hooks for mobile devices support of the Notebook theme 6 | list: 7 | modified: 20210119131617123 8 | name: Mobile support for the Notebook theme 9 | plugin-type: plugin 10 | source: https://github.com/NicolasPetton/Notebook 11 | title: $:/plugins/nico/notebook-mobile 12 | type: application/json 13 | version: 1.0.0 -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__plugins_nico_projectify_NotebookSidebar_Projects.tid: -------------------------------------------------------------------------------- 1 | caption: Projects 2 | created: 20200430123440360 3 | modified: 20201219110914667 4 | tags: $:/themes/nico/notebook/tags/SidebarSection 5 | title: $:/plugins/nico/projectify/NotebookSidebar/Projects 6 | type: text/vnd.tiddlywiki 7 | 8 | <> 9 | -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__tags_PageTemplate.tid: -------------------------------------------------------------------------------- 1 | created: 20201218161619312 2 | list: $:/core/ui/PageTemplate/topleftbar $:/core/ui/PageTemplate/toprightbar [[Projectify Intro]] $:/core/ui/PageTemplate/story $:/core/ui/PageTemplate/alerts $:/core/ui/PageTemplate/drafts $:/core/ui/PageTemplate/pluginreloadwarning $:/themes/nico/notebook/ui/Bottombar $:/themes/nico/notebook/ui/Buttons/menu $:/themes/nico/notebook/ui/Sidebar $:/themes/nico/notebook/ui/Topbar 3 | modified: 20201219110914700 4 | title: $:/tags/PageTemplate 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__theme.tid: -------------------------------------------------------------------------------- 1 | created: 20201219111643671 2 | modified: 20201219111643719 3 | title: $:/theme 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/themes/nico/notebook -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__themes_nico_notebook.json.meta: -------------------------------------------------------------------------------- 1 | author: NicolasPetton 2 | core-version: >=5.1.22 3 | created: 20210203201618013 4 | dependents: $:/themes/tiddlywiki/vanilla $:/plugins/nico/notebook-mobile 5 | description: A clean, uncluttered TiddlyWiki theme 6 | list: LICENSE changelog 7 | modified: 20210203201618013 8 | name: Notebook theme 9 | plugin-type: theme 10 | source: https://github.com/NicolasPetton/Notebook 11 | title: $:/themes/nico/notebook 12 | type: application/json 13 | version: 1.4.1 -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/$__themes_nico_notebook_tags_SidebarSection.tid: -------------------------------------------------------------------------------- 1 | created: 20200429201017275 2 | list: $:/plugins/nico/projectify/NotebookSidebar/Projects $:/themes/nico/notebook/ui/Sidebar/Open $:/themes/nico/notebook/ui/Sidebar/Recent $:/themes/nico/notebook/ui/Sidebar/Tools $:/themes/nico/notebook/ui/Sidebar/More 3 | modified: 20201219110914710 4 | title: $:/themes/nico/notebook/tags/SidebarSection 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlers/Projectify.tid: -------------------------------------------------------------------------------- 1 | created: 20201219112001235 2 | modified: 20201219112017003 3 | title: Projectify 4 | type: text/vnd.tiddlywiki 5 | 6 | {{$:/plugins/nico/projectify/ui/dashboard/Dashboard}} -------------------------------------------------------------------------------- /editions/empty-de-DE/tiddlywiki.info: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Empty Projectify edition", 3 | "plugins": [ 4 | "tiddlywiki/tiddlyweb", 5 | "tiddlywiki/filesystem", 6 | "nico/projectify", 7 | "nico/projectify-de-DE" 8 | ], 9 | "themes": [ 10 | "tiddlywiki/vanilla", 11 | "tiddlywiki/snowwhite" 12 | ], 13 | "languages": [ 14 | "de-DE" 15 | ], 16 | "build": { 17 | "index": [ 18 | "--rendertiddler", 19 | "$:/plugins/tiddlywiki/tiddlyweb/save/offline", 20 | "empty-de-DE.html", 21 | "text/plain" 22 | ] 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__DefaultTiddlers.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165857364 2 | modified: 20201219112032233 3 | title: $:/DefaultTiddlers 4 | type: text/vnd.tiddlywiki 5 | 6 | GettingStarted Projectify -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__SiteSubtitle.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165847868 2 | modified: 20201219110914677 3 | title: $:/SiteSubtitle 4 | type: text/vnd.tiddlywiki 5 | 6 | Manage projects in ~TiddlyWiki. -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__SiteTitle.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165839734 2 | modified: 20201219110914686 3 | title: $:/SiteTitle 4 | type: text/vnd.tiddlywiki 5 | 6 | Projectify -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__StoryList.tid: -------------------------------------------------------------------------------- 1 | list: GettingStarted Projectify 2 | title: $:/StoryList -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165921203 2 | modified: 20201219110914425 3 | title: $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/home 4 | type: text/vnd.tiddlywiki 5 | 6 | show -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__config_RelinkOnRename.tid: -------------------------------------------------------------------------------- 1 | created: 20201219111934703 2 | modified: 20201219111934744 3 | title: $:/config/RelinkOnRename 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__language.tid: -------------------------------------------------------------------------------- 1 | created: 20210112202731563 2 | modified: 20210201194850406 3 | title: $:/language 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/languages/es-ES -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__palette.tid: -------------------------------------------------------------------------------- 1 | created: 20201212170118346 2 | modified: 20210106103715268 3 | title: $:/palette 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/themes/nico/notebook/palettes/palette-beige -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__plugins_flibbles_relink.json.meta: -------------------------------------------------------------------------------- 1 | author: Flibbles 2 | core-version: >=5.1.14 3 | created: 20190921200305594 4 | dependents: 5 | description: Relink - flexibility when relinking renamed tiddlers 6 | list: readme configuration 7 | modified: 20201130170503431 8 | plugin-type: plugin 9 | source: https://github.com/flibbles/tw5-relink 10 | tags: tb 11 | title: $:/plugins/flibbles/relink 12 | type: application/json 13 | version: 1.5.3 -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__plugins_nico_notebook-mobile.json: -------------------------------------------------------------------------------- 1 | { 2 | "tiddlers": { 3 | "$:/plugins/nico/notebook-mobile/js/notebookSidebarNav.js": { 4 | "title": "$:/plugins/nico/notebook-mobile/js/notebookSidebarNav.js", 5 | "text": "/*\\\ntitle: $:/themes/nico/notebook-mobile/js/notebookSidebarNav.js\ntype: application/javascript\nmodule-type: global\n\nCloses the notebook sidebar on mobile when navigating\n\n\\*/\n(function(){\n\n /*jslint node: true, browser: true */\n /*global $tw: false */\n \"use strict\";\n\n const isOnMobile = () => {\n\t\tlet bottombar = document.querySelector('.nc-bottombar');\n\t\treturn bottombar && bottombar.getClientRects().length > 0;\n };\n\n const closeSidebar = () => {\n\t\t$tw.wiki.setText(\"$:/state/notebook-sidebar\", \"text\", undefined, \"no\");\n };\n\n const closeSidebarOnMobile = () => {\n\t\tif (isOnMobile()) {\n console.log(\"closing sidebar\");\n\t\t\tcloseSidebar();\n\t\t};\n };\n\n const setup = () => {\n\t\t$tw.hooks.addHook(\"th-navigating\",function(event) {\n\t\t\tcloseSidebarOnMobile();\n\t\t\treturn event;\n\t\t});\n };\n\n setup();\n\n exports.closeNotebookSidebar = closeSidebar;\n})();\n", 6 | "type": "application/javascript", 7 | "module-type": "global", 8 | "created": "20200430151329085", 9 | "modified": "20201210200127495", 10 | "tags": "" 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__plugins_nico_notebook-mobile.json.meta: -------------------------------------------------------------------------------- 1 | author: NicolasPetton 2 | core-version: >=5.1.22 3 | created: 20210106200140452 4 | dependents: 5 | description: JavaScript hooks for mobile devices support of the Notebook theme 6 | list: 7 | modified: 20210119131617123 8 | name: Mobile support for the Notebook theme 9 | plugin-type: plugin 10 | source: https://github.com/NicolasPetton/Notebook 11 | title: $:/plugins/nico/notebook-mobile 12 | type: application/json 13 | version: 1.0.0 -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__plugins_nico_projectify_NotebookSidebar_Projects.tid: -------------------------------------------------------------------------------- 1 | caption: Projects 2 | created: 20200430123440360 3 | modified: 20201219110914667 4 | tags: $:/themes/nico/notebook/tags/SidebarSection 5 | title: $:/plugins/nico/projectify/NotebookSidebar/Projects 6 | type: text/vnd.tiddlywiki 7 | 8 | <> 9 | -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__tags_PageTemplate.tid: -------------------------------------------------------------------------------- 1 | created: 20201218161619312 2 | list: $:/core/ui/PageTemplate/topleftbar $:/core/ui/PageTemplate/toprightbar [[Projectify Intro]] $:/core/ui/PageTemplate/story $:/core/ui/PageTemplate/alerts $:/core/ui/PageTemplate/drafts $:/core/ui/PageTemplate/pluginreloadwarning $:/themes/nico/notebook/ui/Bottombar $:/themes/nico/notebook/ui/Buttons/menu $:/themes/nico/notebook/ui/Sidebar $:/themes/nico/notebook/ui/Topbar 3 | modified: 20201219110914700 4 | title: $:/tags/PageTemplate 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__theme.tid: -------------------------------------------------------------------------------- 1 | created: 20201219111643671 2 | modified: 20201219111643719 3 | title: $:/theme 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/themes/nico/notebook -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__themes_nico_notebook.json.meta: -------------------------------------------------------------------------------- 1 | author: NicolasPetton 2 | core-version: >=5.1.22 3 | created: 20210203201618013 4 | dependents: $:/themes/tiddlywiki/vanilla $:/plugins/nico/notebook-mobile 5 | description: A clean, uncluttered TiddlyWiki theme 6 | list: LICENSE changelog 7 | modified: 20210203201618013 8 | name: Notebook theme 9 | plugin-type: theme 10 | source: https://github.com/NicolasPetton/Notebook 11 | title: $:/themes/nico/notebook 12 | type: application/json 13 | version: 1.4.1 -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/$__themes_nico_notebook_tags_SidebarSection.tid: -------------------------------------------------------------------------------- 1 | created: 20200429201017275 2 | list: $:/plugins/nico/projectify/NotebookSidebar/Projects $:/themes/nico/notebook/ui/Sidebar/Open $:/themes/nico/notebook/ui/Sidebar/Recent $:/themes/nico/notebook/ui/Sidebar/Tools $:/themes/nico/notebook/ui/Sidebar/More 3 | modified: 20201219110914710 4 | title: $:/themes/nico/notebook/tags/SidebarSection 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlers/Projectify.tid: -------------------------------------------------------------------------------- 1 | created: 20201219112001235 2 | modified: 20201219112017003 3 | title: Projectify 4 | type: text/vnd.tiddlywiki 5 | 6 | {{$:/plugins/nico/projectify/ui/dashboard/Dashboard}} -------------------------------------------------------------------------------- /editions/empty-es-ES/tiddlywiki.info: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Empty Projectify edition", 3 | "plugins": [ 4 | "tiddlywiki/tiddlyweb", 5 | "tiddlywiki/filesystem", 6 | "nico/projectify", 7 | "nico/projectify-es-ES" 8 | ], 9 | "themes": [ 10 | "tiddlywiki/vanilla", 11 | "tiddlywiki/snowwhite" 12 | ], 13 | "languages": [ 14 | "es-ES" 15 | ], 16 | "build": { 17 | "index": [ 18 | "--rendertiddler", 19 | "$:/plugins/tiddlywiki/tiddlyweb/save/offline", 20 | "empty-es-ES.html", 21 | "text/plain" 22 | ] 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__DefaultTiddlers.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165857364 2 | modified: 20201219112032233 3 | title: $:/DefaultTiddlers 4 | type: text/vnd.tiddlywiki 5 | 6 | GettingStarted Projectify -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__SiteSubtitle.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165847868 2 | modified: 20201219110914677 3 | title: $:/SiteSubtitle 4 | type: text/vnd.tiddlywiki 5 | 6 | Manage projects in ~TiddlyWiki. -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__SiteTitle.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165839734 2 | modified: 20201219110914686 3 | title: $:/SiteTitle 4 | type: text/vnd.tiddlywiki 5 | 6 | Projectify -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__StoryList.tid: -------------------------------------------------------------------------------- 1 | list: GettingStarted Projectify 2 | title: $:/StoryList -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165921203 2 | modified: 20201219110914425 3 | title: $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/home 4 | type: text/vnd.tiddlywiki 5 | 6 | show -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__config_RelinkOnRename.tid: -------------------------------------------------------------------------------- 1 | created: 20201219111934703 2 | modified: 20201219111934744 3 | title: $:/config/RelinkOnRename 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__language.tid: -------------------------------------------------------------------------------- 1 | created: 20210112202731563 2 | modified: 20210112202731614 3 | title: $:/language 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/languages/fr-FR -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__palette.tid: -------------------------------------------------------------------------------- 1 | created: 20201212170118346 2 | modified: 20210106103715268 3 | title: $:/palette 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/themes/nico/notebook/palettes/palette-beige -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__plugins_flibbles_relink.json.meta: -------------------------------------------------------------------------------- 1 | author: Flibbles 2 | core-version: >=5.1.14 3 | created: 20190921200305594 4 | dependents: 5 | description: Relink - flexibility when relinking renamed tiddlers 6 | list: readme configuration 7 | modified: 20201130170503431 8 | plugin-type: plugin 9 | source: https://github.com/flibbles/tw5-relink 10 | tags: tb 11 | title: $:/plugins/flibbles/relink 12 | type: application/json 13 | version: 1.5.3 -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__plugins_nico_notebook-mobile.json: -------------------------------------------------------------------------------- 1 | { 2 | "tiddlers": { 3 | "$:/plugins/nico/notebook-mobile/js/notebookSidebarNav.js": { 4 | "title": "$:/plugins/nico/notebook-mobile/js/notebookSidebarNav.js", 5 | "text": "/*\\\ntitle: $:/themes/nico/notebook-mobile/js/notebookSidebarNav.js\ntype: application/javascript\nmodule-type: global\n\nCloses the notebook sidebar on mobile when navigating\n\n\\*/\n(function(){\n\n /*jslint node: true, browser: true */\n /*global $tw: false */\n \"use strict\";\n\n const isOnMobile = () => {\n\t\tlet bottombar = document.querySelector('.nc-bottombar');\n\t\treturn bottombar && bottombar.getClientRects().length > 0;\n };\n\n const closeSidebar = () => {\n\t\t$tw.wiki.setText(\"$:/state/notebook-sidebar\", \"text\", undefined, \"no\");\n };\n\n const closeSidebarOnMobile = () => {\n\t\tif (isOnMobile()) {\n console.log(\"closing sidebar\");\n\t\t\tcloseSidebar();\n\t\t};\n };\n\n const setup = () => {\n\t\t$tw.hooks.addHook(\"th-navigating\",function(event) {\n\t\t\tcloseSidebarOnMobile();\n\t\t\treturn event;\n\t\t});\n };\n\n setup();\n\n exports.closeNotebookSidebar = closeSidebar;\n})();\n", 6 | "type": "application/javascript", 7 | "module-type": "global", 8 | "created": "20200430151329085", 9 | "modified": "20201210200127495", 10 | "tags": "" 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__plugins_nico_notebook-mobile.json.meta: -------------------------------------------------------------------------------- 1 | author: NicolasPetton 2 | core-version: >=5.1.22 3 | created: 20210106200140452 4 | dependents: 5 | description: JavaScript hooks for mobile devices support of the Notebook theme 6 | list: 7 | modified: 20210119131617123 8 | name: Mobile support for the Notebook theme 9 | plugin-type: plugin 10 | source: https://github.com/NicolasPetton/Notebook 11 | title: $:/plugins/nico/notebook-mobile 12 | type: application/json 13 | version: 1.0.0 -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__plugins_nico_projectify_NotebookSidebar_Projects.tid: -------------------------------------------------------------------------------- 1 | caption: Projects 2 | created: 20200430123440360 3 | modified: 20201219110914667 4 | tags: $:/themes/nico/notebook/tags/SidebarSection 5 | title: $:/plugins/nico/projectify/NotebookSidebar/Projects 6 | type: text/vnd.tiddlywiki 7 | 8 | <> 9 | -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__tags_PageTemplate.tid: -------------------------------------------------------------------------------- 1 | created: 20201218161619312 2 | list: $:/core/ui/PageTemplate/topleftbar $:/core/ui/PageTemplate/toprightbar [[Projectify Intro]] $:/core/ui/PageTemplate/story $:/core/ui/PageTemplate/alerts $:/core/ui/PageTemplate/drafts $:/core/ui/PageTemplate/pluginreloadwarning $:/themes/nico/notebook/ui/Bottombar $:/themes/nico/notebook/ui/Buttons/menu $:/themes/nico/notebook/ui/Sidebar $:/themes/nico/notebook/ui/Topbar 3 | modified: 20201219110914700 4 | title: $:/tags/PageTemplate 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__theme.tid: -------------------------------------------------------------------------------- 1 | created: 20201219111643671 2 | modified: 20201219111643719 3 | title: $:/theme 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/themes/nico/notebook -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__themes_nico_notebook.json.meta: -------------------------------------------------------------------------------- 1 | author: NicolasPetton 2 | core-version: >=5.1.22 3 | created: 20210203201618013 4 | dependents: $:/themes/tiddlywiki/vanilla $:/plugins/nico/notebook-mobile 5 | description: A clean, uncluttered TiddlyWiki theme 6 | list: LICENSE changelog 7 | modified: 20210203201618013 8 | name: Notebook theme 9 | plugin-type: theme 10 | source: https://github.com/NicolasPetton/Notebook 11 | title: $:/themes/nico/notebook 12 | type: application/json 13 | version: 1.4.1 -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/$__themes_nico_notebook_tags_SidebarSection.tid: -------------------------------------------------------------------------------- 1 | created: 20200429201017275 2 | list: $:/plugins/nico/projectify/NotebookSidebar/Projects $:/themes/nico/notebook/ui/Sidebar/Open $:/themes/nico/notebook/ui/Sidebar/Recent $:/themes/nico/notebook/ui/Sidebar/Tools $:/themes/nico/notebook/ui/Sidebar/More 3 | modified: 20201219110914710 4 | title: $:/themes/nico/notebook/tags/SidebarSection 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlers/Projectify.tid: -------------------------------------------------------------------------------- 1 | created: 20201219112001235 2 | modified: 20201219112017003 3 | title: Projectify 4 | type: text/vnd.tiddlywiki 5 | 6 | {{$:/plugins/nico/projectify/ui/dashboard/Dashboard}} -------------------------------------------------------------------------------- /editions/empty-fr-FR/tiddlywiki.info: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Empty Projectify edition", 3 | "plugins": [ 4 | "tiddlywiki/tiddlyweb", 5 | "tiddlywiki/filesystem", 6 | "nico/projectify", 7 | "nico/projectify-fr-FR" 8 | ], 9 | "themes": [ 10 | "tiddlywiki/vanilla", 11 | "tiddlywiki/snowwhite" 12 | ], 13 | "languages": [ 14 | "fr-FR" 15 | ], 16 | "build": { 17 | "index": [ 18 | "--rendertiddler", 19 | "$:/plugins/tiddlywiki/tiddlyweb/save/offline", 20 | "empty-fr-FR.html", 21 | "text/plain" 22 | ] 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__DefaultTiddlers.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165857364 2 | modified: 20201219112032233 3 | title: $:/DefaultTiddlers 4 | type: text/vnd.tiddlywiki 5 | 6 | GettingStarted Projectify -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__SiteSubtitle.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165847868 2 | modified: 20201219110914677 3 | title: $:/SiteSubtitle 4 | type: text/vnd.tiddlywiki 5 | 6 | Manage projects in ~TiddlyWiki. -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__SiteTitle.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165839734 2 | modified: 20201219110914686 3 | title: $:/SiteTitle 4 | type: text/vnd.tiddlywiki 5 | 6 | Projectify -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__StoryList.tid: -------------------------------------------------------------------------------- 1 | list: GettingStarted Projectify 2 | title: $:/StoryList -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165921203 2 | modified: 20201219110914425 3 | title: $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/home 4 | type: text/vnd.tiddlywiki 5 | 6 | show -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__config_RelinkOnRename.tid: -------------------------------------------------------------------------------- 1 | created: 20201219111934703 2 | modified: 20201219111934744 3 | title: $:/config/RelinkOnRename 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__language.tid: -------------------------------------------------------------------------------- 1 | created: 20210112202731563 2 | modified: 20210120184917236 3 | title: $:/language 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/languages/nl-NL -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__palette.tid: -------------------------------------------------------------------------------- 1 | created: 20201212170118346 2 | modified: 20210106103715268 3 | title: $:/palette 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/themes/nico/notebook/palettes/palette-beige -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__plugins_flibbles_relink.json.meta: -------------------------------------------------------------------------------- 1 | author: Flibbles 2 | core-version: >=5.1.14 3 | created: 20190921200305594 4 | dependents: 5 | description: Relink - flexibility when relinking renamed tiddlers 6 | list: readme configuration 7 | modified: 20201130170503431 8 | plugin-type: plugin 9 | source: https://github.com/flibbles/tw5-relink 10 | tags: tb 11 | title: $:/plugins/flibbles/relink 12 | type: application/json 13 | version: 1.5.3 -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__plugins_nico_notebook-mobile.json: -------------------------------------------------------------------------------- 1 | { 2 | "tiddlers": { 3 | "$:/plugins/nico/notebook-mobile/js/notebookSidebarNav.js": { 4 | "title": "$:/plugins/nico/notebook-mobile/js/notebookSidebarNav.js", 5 | "text": "/*\\\ntitle: $:/themes/nico/notebook-mobile/js/notebookSidebarNav.js\ntype: application/javascript\nmodule-type: global\n\nCloses the notebook sidebar on mobile when navigating\n\n\\*/\n(function(){\n\n /*jslint node: true, browser: true */\n /*global $tw: false */\n \"use strict\";\n\n const isOnMobile = () => {\n\t\tlet bottombar = document.querySelector('.nc-bottombar');\n\t\treturn bottombar && bottombar.getClientRects().length > 0;\n };\n\n const closeSidebar = () => {\n\t\t$tw.wiki.setText(\"$:/state/notebook-sidebar\", \"text\", undefined, \"no\");\n };\n\n const closeSidebarOnMobile = () => {\n\t\tif (isOnMobile()) {\n console.log(\"closing sidebar\");\n\t\t\tcloseSidebar();\n\t\t};\n };\n\n const setup = () => {\n\t\t$tw.hooks.addHook(\"th-navigating\",function(event) {\n\t\t\tcloseSidebarOnMobile();\n\t\t\treturn event;\n\t\t});\n };\n\n setup();\n\n exports.closeNotebookSidebar = closeSidebar;\n})();\n", 6 | "type": "application/javascript", 7 | "module-type": "global", 8 | "created": "20200430151329085", 9 | "modified": "20201210200127495", 10 | "tags": "" 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__plugins_nico_notebook-mobile.json.meta: -------------------------------------------------------------------------------- 1 | author: NicolasPetton 2 | core-version: >=5.1.22 3 | created: 20210106200140452 4 | dependents: 5 | description: JavaScript hooks for mobile devices support of the Notebook theme 6 | list: 7 | modified: 20210119131617123 8 | name: Mobile support for the Notebook theme 9 | plugin-type: plugin 10 | source: https://github.com/NicolasPetton/Notebook 11 | title: $:/plugins/nico/notebook-mobile 12 | type: application/json 13 | version: 1.0.0 -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__plugins_nico_projectify_NotebookSidebar_Projects.tid: -------------------------------------------------------------------------------- 1 | caption: Projects 2 | created: 20200430123440360 3 | modified: 20201219110914667 4 | tags: $:/themes/nico/notebook/tags/SidebarSection 5 | title: $:/plugins/nico/projectify/NotebookSidebar/Projects 6 | type: text/vnd.tiddlywiki 7 | 8 | <> 9 | -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__tags_PageTemplate.tid: -------------------------------------------------------------------------------- 1 | created: 20201218161619312 2 | list: $:/core/ui/PageTemplate/topleftbar $:/core/ui/PageTemplate/toprightbar [[Projectify Intro]] $:/core/ui/PageTemplate/story $:/core/ui/PageTemplate/alerts $:/core/ui/PageTemplate/drafts $:/core/ui/PageTemplate/pluginreloadwarning $:/themes/nico/notebook/ui/Bottombar $:/themes/nico/notebook/ui/Buttons/menu $:/themes/nico/notebook/ui/Sidebar $:/themes/nico/notebook/ui/Topbar 3 | modified: 20201219110914700 4 | title: $:/tags/PageTemplate 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__theme.tid: -------------------------------------------------------------------------------- 1 | created: 20201219111643671 2 | modified: 20201219111643719 3 | title: $:/theme 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/themes/nico/notebook -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__themes_nico_notebook.json.meta: -------------------------------------------------------------------------------- 1 | author: NicolasPetton 2 | core-version: >=5.1.22 3 | created: 20210203201618013 4 | dependents: $:/themes/tiddlywiki/vanilla $:/plugins/nico/notebook-mobile 5 | description: A clean, uncluttered TiddlyWiki theme 6 | list: LICENSE changelog 7 | modified: 20210203201618013 8 | name: Notebook theme 9 | plugin-type: theme 10 | source: https://github.com/NicolasPetton/Notebook 11 | title: $:/themes/nico/notebook 12 | type: application/json 13 | version: 1.4.1 -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/$__themes_nico_notebook_tags_SidebarSection.tid: -------------------------------------------------------------------------------- 1 | created: 20200429201017275 2 | list: $:/plugins/nico/projectify/NotebookSidebar/Projects $:/themes/nico/notebook/ui/Sidebar/Open $:/themes/nico/notebook/ui/Sidebar/Recent $:/themes/nico/notebook/ui/Sidebar/Tools $:/themes/nico/notebook/ui/Sidebar/More 3 | modified: 20201219110914710 4 | title: $:/themes/nico/notebook/tags/SidebarSection 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlers/Projectify.tid: -------------------------------------------------------------------------------- 1 | created: 20201219112001235 2 | modified: 20201219112017003 3 | title: Projectify 4 | type: text/vnd.tiddlywiki 5 | 6 | {{$:/plugins/nico/projectify/ui/dashboard/Dashboard}} -------------------------------------------------------------------------------- /editions/empty-nl-NL/tiddlywiki.info: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Empty Projectify edition", 3 | "plugins": [ 4 | "tiddlywiki/tiddlyweb", 5 | "tiddlywiki/filesystem", 6 | "nico/projectify", 7 | "nico/projectify-nl-NL" 8 | ], 9 | "themes": [ 10 | "tiddlywiki/vanilla", 11 | "tiddlywiki/snowwhite" 12 | ], 13 | "languages": [ 14 | "nl-NL" 15 | ], 16 | "build": { 17 | "index": [ 18 | "--rendertiddler", 19 | "$:/plugins/tiddlywiki/tiddlyweb/save/offline", 20 | "empty-nl-NL.html", 21 | "text/plain" 22 | ] 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__DefaultTiddlers.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165857364 2 | modified: 20201219112032233 3 | title: $:/DefaultTiddlers 4 | type: text/vnd.tiddlywiki 5 | 6 | GettingStarted Projectify -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__SiteSubtitle.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165847868 2 | modified: 20201219110914677 3 | title: $:/SiteSubtitle 4 | type: text/vnd.tiddlywiki 5 | 6 | Manage projects in ~TiddlyWiki. -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__SiteTitle.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165839734 2 | modified: 20201219110914686 3 | title: $:/SiteTitle 4 | type: text/vnd.tiddlywiki 5 | 6 | Projectify -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__StoryList.tid: -------------------------------------------------------------------------------- 1 | list: GettingStarted Projectify 2 | title: $:/StoryList -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__config_PageControlButtons_Visibility_$__core_ui_Buttons_home.tid: -------------------------------------------------------------------------------- 1 | created: 20201212165921203 2 | modified: 20201219110914425 3 | title: $:/config/PageControlButtons/Visibility/$:/core/ui/Buttons/home 4 | type: text/vnd.tiddlywiki 5 | 6 | show -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__config_RelinkOnRename.tid: -------------------------------------------------------------------------------- 1 | created: 20201219111934703 2 | modified: 20201219111934744 3 | title: $:/config/RelinkOnRename 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__palette.tid: -------------------------------------------------------------------------------- 1 | created: 20201212170118346 2 | modified: 20210106103715268 3 | title: $:/palette 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/themes/nico/notebook/palettes/palette-beige -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__plugins_flibbles_relink.json.meta: -------------------------------------------------------------------------------- 1 | author: Flibbles 2 | core-version: >=5.1.14 3 | created: 20190921200305594 4 | dependents: 5 | description: Relink - flexibility when relinking renamed tiddlers 6 | list: readme configuration 7 | modified: 20201219111228843 8 | plugin-type: plugin 9 | source: https://github.com/flibbles/tw5-relink 10 | tags: tb 11 | title: $:/plugins/flibbles/relink 12 | type: application/json 13 | version: 1.5.3 -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__plugins_nico_notebook-mobile.json: -------------------------------------------------------------------------------- 1 | { 2 | "tiddlers": { 3 | "$:/plugins/nico/notebook-mobile/js/notebookSidebarNav.js": { 4 | "title": "$:/plugins/nico/notebook-mobile/js/notebookSidebarNav.js", 5 | "text": "/*\\\ntitle: $:/themes/nico/notebook-mobile/js/notebookSidebarNav.js\ntype: application/javascript\nmodule-type: global\n\nCloses the notebook sidebar on mobile when navigating\n\n\\*/\n(function(){\n\n /*jslint node: true, browser: true */\n /*global $tw: false */\n \"use strict\";\n\n const isOnMobile = () => {\n\t\tlet bottombar = document.querySelector('.nc-bottombar');\n\t\treturn bottombar && bottombar.getClientRects().length > 0;\n };\n\n const closeSidebar = () => {\n\t\t$tw.wiki.setText(\"$:/state/notebook-sidebar\", \"text\", undefined, \"no\");\n };\n\n const closeSidebarOnMobile = () => {\n\t\tif (isOnMobile()) {\n console.log(\"closing sidebar\");\n\t\t\tcloseSidebar();\n\t\t};\n };\n\n const setup = () => {\n\t\t$tw.hooks.addHook(\"th-navigating\",function(event) {\n\t\t\tcloseSidebarOnMobile();\n\t\t\treturn event;\n\t\t});\n };\n\n setup();\n\n exports.closeNotebookSidebar = closeSidebar;\n})();\n", 6 | "type": "application/javascript", 7 | "module-type": "global", 8 | "created": "20200430151329085", 9 | "modified": "20201210200127495", 10 | "tags": "" 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__plugins_nico_notebook-mobile.json.meta: -------------------------------------------------------------------------------- 1 | author: NicolasPetton 2 | core-version: >=5.1.22 3 | created: 20201219111632312 4 | dependents: 5 | description: JavaScript hooks for mobile devices support of the Notebook theme 6 | list: 7 | modified: 20201219111632312 8 | name: Mobile support for the Notebook theme 9 | plugin-type: plugin 10 | source: https://github.com/NicolasPetton/Notebook 11 | title: $:/plugins/nico/notebook-mobile 12 | type: application/json 13 | version: 1.0.0 -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__plugins_nico_projectify_NotebookSidebar_Projects.tid: -------------------------------------------------------------------------------- 1 | caption: Projects 2 | created: 20200430123440360 3 | modified: 20201219110914667 4 | tags: $:/themes/nico/notebook/tags/SidebarSection 5 | title: $:/plugins/nico/projectify/NotebookSidebar/Projects 6 | type: text/vnd.tiddlywiki 7 | 8 | <> 9 | -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__tags_PageTemplate.tid: -------------------------------------------------------------------------------- 1 | created: 20201218161619312 2 | list: $:/core/ui/PageTemplate/topleftbar $:/core/ui/PageTemplate/toprightbar [[Projectify Intro]] $:/core/ui/PageTemplate/story $:/core/ui/PageTemplate/alerts $:/core/ui/PageTemplate/drafts $:/core/ui/PageTemplate/pluginreloadwarning $:/themes/nico/notebook/ui/Bottombar $:/themes/nico/notebook/ui/Buttons/menu $:/themes/nico/notebook/ui/Sidebar $:/themes/nico/notebook/ui/Topbar 3 | modified: 20201219110914700 4 | title: $:/tags/PageTemplate 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__theme.tid: -------------------------------------------------------------------------------- 1 | created: 20201219111643671 2 | modified: 20201219111643719 3 | title: $:/theme 4 | type: text/vnd.tiddlywiki 5 | 6 | $:/themes/nico/notebook -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__themes_nico_notebook.json.meta: -------------------------------------------------------------------------------- 1 | author: NicolasPetton 2 | core-version: >=5.1.22 3 | created: 20210203201618013 4 | dependents: $:/themes/tiddlywiki/vanilla $:/plugins/nico/notebook-mobile 5 | description: A clean, uncluttered TiddlyWiki theme 6 | list: LICENSE changelog 7 | modified: 20210203201618013 8 | name: Notebook theme 9 | plugin-type: theme 10 | source: https://github.com/NicolasPetton/Notebook 11 | title: $:/themes/nico/notebook 12 | type: application/json 13 | version: 1.4.1 -------------------------------------------------------------------------------- /editions/empty/tiddlers/$__themes_nico_notebook_tags_SidebarSection.tid: -------------------------------------------------------------------------------- 1 | created: 20200429201017275 2 | list: $:/plugins/nico/projectify/NotebookSidebar/Projects $:/themes/nico/notebook/ui/Sidebar/Open $:/themes/nico/notebook/ui/Sidebar/Recent $:/themes/nico/notebook/ui/Sidebar/Tools $:/themes/nico/notebook/ui/Sidebar/More 3 | modified: 20201219110914710 4 | title: $:/themes/nico/notebook/tags/SidebarSection 5 | type: text/vnd.tiddlywiki -------------------------------------------------------------------------------- /editions/empty/tiddlers/Projectify.tid: -------------------------------------------------------------------------------- 1 | created: 20201219112001235 2 | modified: 20201219112017003 3 | title: Projectify 4 | type: text/vnd.tiddlywiki 5 | 6 | {{$:/plugins/nico/projectify/ui/dashboard/Dashboard}} -------------------------------------------------------------------------------- /editions/empty/tiddlywiki.info: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Empty Projectify edition", 3 | "plugins": [ 4 | "tiddlywiki/tiddlyweb", 5 | "tiddlywiki/filesystem", 6 | "nico/projectify" 7 | ], 8 | "themes": [ 9 | "tiddlywiki/vanilla", 10 | "tiddlywiki/snowwhite" 11 | ], 12 | "build": { 13 | "index": [ 14 | "--rendertiddler", 15 | "$:/plugins/tiddlywiki/tiddlyweb/save/offline", 16 | "empty.html", 17 | "text/plain" 18 | ] 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/language/EmptyInboxDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112204649762 4 | 5 |

Alle Aufgaben sind organisiert, schönen <>!

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/language/EmptyInboxTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxTitle 2 | created: 20210112203922871 3 | modified: 20210112205841655 4 | 5 | Keine Aufgaben. Alles erledigt! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/language/EmptyNextActionsDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyNextActionsDescription 2 | created: 20210112203922871 3 | modified: 20210112204829315 4 | 5 |

6 | Die erste Aufgabe aus jedem aktiven Projekt erscheint hier -- [[mehr erfahren|$:/plugins/nico/projectify/doc/NextActions]]. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/language/EmptyNextActionsTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112205846583 4 | 5 | Alles erledigt! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/language/EmptyProjectDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectDescription 2 | created: 20210112203922871 3 | modified: 20210112210905596 4 | 5 |

Schaut aus, als wäre alles erledigt!

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/language/EmptyProjectTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectTitle 2 | created: 20210112203922871 3 | modified: 20210112210846579 4 | 5 | Gut gemacht! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/language/EmptyProjectsDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectsDescription 2 | created: 20210112203922871 3 | modified: 20210112205452485 4 | 5 |

Organisiere Aufgaben in Projekten und werde produktiver -- [[erfahre mehr|$:/plugins/nico/projectify/doc/Projects]].

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/language/EmptyProjectsTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectsTitle 2 | created: 20210112203922871 3 | modified: 20210112205856103 4 | 5 | Organisiere deine Aufgaben! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/language/EmptyUpcomingDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyUpcomingDescription 2 | created: 20210112203922871 3 | modified: 20210117205436114 4 | 5 |

6 | Alle geplanten Aufgaben erscheinen hier -- [[mehr erfahren|$:/plugins/nico/projectify/doc/Schedule]]. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/language/EmptyUpcomingTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyUpcomingTitle 2 | created: 20210112203922871 3 | modified: 20210112211251637 4 | 5 | Nichts geplant! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/language/WelcomeInboxDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112204430521 4 | 5 |

Erstelle Aufgaben in der Inbox. So bekommst du sie aus dem Kopf, ohne sie zu vergessen.

6 |

Du kann jederzeit {{$:/config/shortcuts/py-quick-capture}} verwenden um die Erfassung aufzurufen.

7 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/language/WelcomeInboxTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeInboxTitle 2 | created: 20210112203922871 3 | modified: 20210112204242779 4 | 5 | Sammle Aufgaben in der Inbox. 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/language/WelcomeProjectDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeProjectDescription 2 | created: 20210112203922871 3 | modified: 20210112210059896 4 | 5 |

6 | Organisiere Aufgaben durch Gruppieren in Projekten. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/language/WelcomeProjectTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeProjectTitle 2 | created: 20210112203922871 3 | modified: 20210112210030144 4 | 5 | Auf geht's! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-de-DE/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/nico/projectify-de-DE", 3 | "name": "Projectify-de-DE", 4 | "plugin-type": "plugin", 5 | "description": "Projectify Deutsch (German)", 6 | "parent-plugin": "$:/plugins/nico/projectify", 7 | "author": "Gregor Fischer", 8 | "version": "0.14.0", 9 | "core-version": ">=5.1.22" 10 | } 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/language/EmptyInboxDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112204543097 4 | 5 |

Todo está bien organizado, que tengas un gran <>!

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/language/EmptyInboxTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxTitle 2 | created: 20210112203922871 3 | modified: 20210112204532441 4 | 5 | Todo terminado! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/language/EmptyNextActionsDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyNextActionsDescription 2 | created: 20210112203922871 3 | modified: 20210112204856811 4 | 5 |

6 | La primera tarea de cada proyecto activo aparecerá aquí -- [[aprende más|$:/plugins/nico/projectify/doc/NextActions]]. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/language/EmptyNextActionsTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112205110180 4 | 5 | Todo terminado! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/language/EmptyProjectDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectDescription 2 | created: 20210112203922871 3 | modified: 20210112210733626 4 | 5 |

¡Parece que has completado este proyecto!

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/language/EmptyProjectTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectTitle 2 | created: 20210112203922871 3 | modified: 20210112210817571 4 | 5 | Bien hecho! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/language/EmptyProjectsDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectsDescription 2 | created: 20210112203922871 3 | modified: 20210112205248845 4 | 5 |

Sea más eficiente y organizado estructurando sus tareas en proyectos -- [[aprende más|$:/plugins/nico/projectify/doc/Projects]].

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/language/EmptyProjectsTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectsTitle 2 | created: 20210112203922871 3 | modified: 20210112205529611 4 | 5 | Mantente organizado! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/language/EmptyUpcomingDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyUpcomingDescription 2 | created: 20210112203922871 3 | modified: 20210117205436036 4 | 5 |

6 | Todas las tareas programadas aparecerán aquí -- [[aprende más|$:/plugins/nico/projectify/doc/Schedule]]. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/language/EmptyUpcomingTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyUpcomingTitle 2 | created: 20210112203922871 3 | modified: 20210112211210936 4 | 5 | Su agenda está vacía! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/language/WelcomeInboxDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112204214632 4 | 5 |

Recopila tareas en la bandeja de entrada para no olvidarlas y sácarlas de la 6 | cabeza rápidamente.

7 |

También puede presionar {{$:/config/shortcuts/py-quick-capture}} para 8 | capturar desde cualquier lugar.

9 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/language/WelcomeInboxTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeInboxTitle 2 | created: 20210112203922871 3 | modified: 20210112204147224 4 | 5 | Recopila tareas en la bandeja de entrada 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/language/WelcomeProjectDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeProjectDescription 2 | created: 20210112203922871 3 | modified: 20210112210005679 4 | 5 |

6 | Mantenga su trabajo organizado agrupando todo en proyectos. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/language/WelcomeProjectTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeProjectTitle 2 | created: 20210112203922871 3 | modified: 20210112210001231 4 | 5 | Empecemos! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-es-ES/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/nico/projectify-es-ES", 3 | "name": "Projectify-es-ES", 4 | "plugin-type": "plugin", 5 | "description": "Projectify Castellano (Spain)", 6 | "parent-plugin": "$:/plugins/nico/projectify", 7 | "author": "JoeBordes", 8 | "version": "0.14.0", 9 | "core-version": ">=5.1.22" 10 | } 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/language/EmptyInboxDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112204649762 4 | 5 |

Tout est bien organisé, passez un excellent <>!

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/language/EmptyInboxTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxTitle 2 | created: 20210112203922871 3 | modified: 20210112205841655 4 | 5 | Vous avez terminé ! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/language/EmptyNextActionsDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyNextActionsDescription 2 | created: 20210112203922871 3 | modified: 20210112204829315 4 | 5 |

6 | La première tâche de chaque projet actif sera affichée ici -- [[en apprendre plus|$:/plugins/nico/projectify/doc/NextActions]]. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/language/EmptyNextActionsTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112205846583 4 | 5 | Tout est clair ! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/language/EmptyProjectDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectDescription 2 | created: 20210112203922871 3 | modified: 20210112210905596 4 | 5 |

On dirait que vous avez terminé ce projet !

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/language/EmptyProjectTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectTitle 2 | created: 20210112203922871 3 | modified: 20210112210846579 4 | 5 | Bien joué ! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/language/EmptyProjectsDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectsDescription 2 | created: 20210112203922871 3 | modified: 20210112205452485 4 | 5 |

Soyez plus efficace et organisé en structurant vos tâches en projets -- [[en apprendre plus|$:/plugins/nico/projectify/doc/Projects]].

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/language/EmptyProjectsTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectsTitle 2 | created: 20210112203922871 3 | modified: 20210112205856103 4 | 5 | Restez organisé ! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/language/EmptyUpcomingDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyUpcomingDescription 2 | created: 20210112203922871 3 | modified: 20210117205436114 4 | 5 |

6 | Toutes les tâches planifiées apparaîtront ici -- [[en apprendre plus|$:/plugins/nico/projectify/doc/Schedule]]. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/language/EmptyUpcomingTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyUpcomingTitle 2 | created: 20210112203922871 3 | modified: 20210112211251637 4 | 5 | Votre agenda est vide ! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/language/WelcomeInboxDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112204430521 4 | 5 |

Collectez les tâches dans la boîte de réception pour ne pas les oublier, et 6 | les sortir vite de votre tête!

7 |

Vous pouvez également appuyer 8 | sur {{$:/config/shortcuts/py-quick-capture}} pour capturer une tâche 9 | depuis n'importe où.

10 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/language/WelcomeInboxTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeInboxTitle 2 | created: 20210112203922871 3 | modified: 20210112204242779 4 | 5 | Collecter les tâches dans la boîte de réception 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/language/WelcomeProjectDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeProjectDescription 2 | created: 20210112203922871 3 | modified: 20210112210059896 4 | 5 |

6 | Gardez votre travail organisé en regroupant les tâches dans des projets. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/language/WelcomeProjectTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeProjectTitle 2 | created: 20210112203922871 3 | modified: 20210112210030144 4 | 5 | Commençons ! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-fr-FR/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/nico/projectify-fr-FR", 3 | "name": "Projectify-fr-FR", 4 | "plugin-type": "plugin", 5 | "description": "Projectify Français (France)", 6 | "parent-plugin": "$:/plugins/nico/projectify", 7 | "author": "NicolasPetton", 8 | "version": "0.14.0", 9 | "core-version": ">=5.1.22" 10 | } 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/language/EmptyInboxDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112204543097 4 | 5 |

Alles is op orde. Fijne <>!

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/language/EmptyInboxTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxTitle 2 | created: 20210112203922871 3 | modified: 20210112204532441 4 | 5 | Je bent helemaal klaar! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/language/EmptyNextActionsDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyNextActionsDescription 2 | created: 20210112203922871 3 | modified: 20210112204856811 4 | 5 |

6 | De eerste taak van elk actief project zal hier verschijnen -- [[leer hierover meer|$:/plugins/nico/projectify/doc/NextActions]]. 7 |

8 | 9 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/language/EmptyNextActionsTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112205110180 4 | 5 | Alles gedaan! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/language/EmptyProjectDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectDescription 2 | created: 20210112203922871 3 | modified: 20210112210733626 4 | 5 |

Het lijkt erop dat dit project af is!

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/language/EmptyProjectTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectTitle 2 | created: 20210112203922871 3 | modified: 20210112210817571 4 | 5 | Goed gedaan! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/language/EmptyProjectsDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectsDescription 2 | created: 20210112203922871 3 | modified: 20210123203801519 4 | 5 |

Wordt efficiënter en organiseer je taken door ze te verdeelen in projecten -- [[leer hierover meer|$:/plugins/nico/projectify/doc/Projects]].

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/language/EmptyProjectsTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectsTitle 2 | created: 20210112203922871 3 | modified: 20210123203732190 4 | 5 | Blijf georganiseerd! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/language/EmptyUpcomingDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyUpcomingDescription 2 | created: 20210112203922871 3 | modified: 20210117205436135 4 | 5 |

6 | Alle geplande taken zullen hier weergeven worden -- [[leer hierover meer|$:/plugins/nico/projectify/doc/Schedule]]. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/language/EmptyUpcomingTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyUpcomingTitle 2 | created: 20210112203922871 3 | modified: 20210112211210936 4 | 5 | Je agenda is helemaal leeg! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/language/WelcomeInboxDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112204214632 4 | 5 |

Maak je hoofd leeg en verzamel al je taken in de Inbox zodat je ze niet vergeet!

6 |

Je kunt op ieder moment een taak toevoegen door op {{$:/config/shortcuts/py-quick-capture}} te drukken.

7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/language/WelcomeInboxTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeInboxTitle 2 | created: 20210112203922871 3 | modified: 20210112204147224 4 | 5 | Verzamelen taken in je Inbox 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/language/WelcomeProjectDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeProjectDescription 2 | created: 20210112203922871 3 | modified: 20210112210005679 4 | 5 |

6 | Organiseer je taken door ze te groeperen in projecten. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/language/WelcomeProjectTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeProjectTitle 2 | created: 20210112203922871 3 | modified: 20210112210001231 4 | 5 | Laten we beginnen! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-nl-NL/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/nico/projectify-nl-NL", 3 | "name": "Projectify-nl-NL", 4 | "plugin-type": "plugin", 5 | "description": "Projectify Dutch (The Netherlands)", 6 | "parent-plugin": "$:/plugins/nico/projectify", 7 | "author": "odinjorna@gmail.com", 8 | "version": "0.14.0", 9 | "core-version": ">=5.1.22" 10 | } 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/language/EmptyInboxDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxDescription 2 | created: 20210124100122871 3 | modified: 20210124100743097 4 | 5 |

一切都井然有序,祝你愉快 <>!

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/language/EmptyInboxTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxTitle 2 | created: 20210112203922871 3 | modified: 20210112204532441 4 | 5 | 大功告成! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/language/EmptyNextActionsDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyNextActionsDescription 2 | created: 20210112203922871 3 | modified: 20210112204856811 4 | 5 |

6 | 每个活动项目中的第一个任务将在此显示 -- [[了解更多|$:/plugins/nico/projectify/doc/NextActions]]. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/language/EmptyNextActionsTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112205110180 4 | 5 | 已完成! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/language/EmptyProjectDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectDescription 2 | created: 20210112203922871 3 | modified: 20210112210733626 4 | 5 |

看来你已经完成了这个项目!

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/language/EmptyProjectTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectTitle 2 | created: 20210112203922871 3 | modified: 20210112210817571 4 | 5 | 干得好! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/language/EmptyProjectsDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectsDescription 2 | created: 20210112203922871 3 | modified: 20210112205248845 4 | 5 |

通过在项目中安排任务,让你的工作事半功倍、有条不紊 -- [[了解更多|$:/plugins/nico/projectify/doc/Projects]].

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/language/EmptyProjectsTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectsTitle 2 | created: 20210112203922871 3 | modified: 20210112205529611 4 | 5 | 保持井井有条! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/language/EmptyUpcomingDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyUpcomingDescription 2 | created: 20210112203922871 3 | modified: 20210117205436036 4 | 5 |

6 | 所有已安排日程的任务将在此显示 -- [[了解更多|$:/plugins/nico/projectify/doc/Schedule]]. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/language/EmptyUpcomingTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyUpcomingTitle 2 | created: 20210112203922871 3 | modified: 20210112211210936 4 | 5 | 你的日程表空空如也! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/language/WelcomeInboxDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112204214632 4 | 5 |

把任务收集在收件箱里,这样你就不会忘记它们,然后迅速把它们 6 | 从你的脑海中抹去!

7 |

你也可以通过按 {{$:/config/shortcuts/py-quick-capture}} 在页面内 8 | 随时捕获。

-------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/language/WelcomeInboxTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeInboxTitle 2 | created: 20210112203922871 3 | modified: 20210112204147224 4 | 5 | 在收件箱中收集任务 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/language/WelcomeProjectDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeProjectDescription 2 | created: 20210112203922871 3 | modified: 20210112210005679 4 | 5 |

6 | 通过对项目中的待办事项进行分组,让你的工作有条不紊。 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/language/WelcomeProjectTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeProjectTitle 2 | created: 20210112203922871 3 | modified: 20210112210001231 4 | 5 | 让我们开始吧! -------------------------------------------------------------------------------- /plugins/nico/projectify-zh-Hans/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/nico/projectify-zh-Hans", 3 | "name": "projectify-zh-Hans", 4 | "plugin-type": "plugin", 5 | "description": "Projectify Chinese (Simplified)", 6 | "parent-plugin": "$:/plugins/nico/projectify", 7 | "author": "Hue", 8 | "version": "0.14.0", 9 | "core-version": ">=5.1.22" 10 | } 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify/plugin.info: -------------------------------------------------------------------------------- 1 | { 2 | "title": "$:/plugins/nico/projectify", 3 | "name": "Projectify", 4 | "description": "Simple project management for TiddlyWiki", 5 | "author": "NicolasPetton", 6 | "version": "0.14.0", 7 | "core-version": ">=5.1.22", 8 | "source": "https://github.com/NicolasPetton/Projectify", 9 | "list": "doc/Help changelog LICENSE", 10 | "dependents": "", 11 | "plugin-type": "plugin" 12 | } 13 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/LICENSE.tid: -------------------------------------------------------------------------------- 1 | created: 20200419141443144 2 | modified: 20210119112113446 3 | tags: 4 | title: $:/plugins/nico/projectify/LICENSE 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | MIT License Copyright (c) 2020-2021 [[Nicolas Petton|https://nicolas.petton.fr]] nicolas@petton.fr 9 | 10 | Permission is hereby granted, free of charge, to any person obtaining a copy 11 | of this software and associated documentation files (the "Software"), to deal 12 | in the Software without restriction, including without limitation the rights 13 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 14 | copies of the Software, and to permit persons to whom the Software is furnished 15 | to do so, subject to the following conditions: 16 | 17 | The above copyright notice and this permission notice (including the next 18 | paragraph) shall be included in all copies or substantial portions of the 19 | Software. 20 | 21 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 22 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 23 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS 24 | OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 25 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF 26 | OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 27 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/QuickCapture.tid: -------------------------------------------------------------------------------- 1 | created: 20200427182956318 2 | modified: 20210121181004761 3 | tags: 4 | title: $:/plugins/nico/projectify/QuickCapture 5 | type: text/vnd.tiddlywiki 6 | 7 | \define lingo-base() $:/language/projectify/ 8 | 9 | !! {{$:/plugins/nico/projectify/images/quick-capture}} <> 10 | 11 | <$keyboard key="enter"> 12 | <$action-createtiddler $basetitle={{$:/state/projectify/QuickCapture!!todo_name}} tags="Inbox todo"/> 13 | <$action-setfield $tiddler="$:/state/projectify/QuickCapture" todo_name=""/> 14 | <$action-sendmessage $message="tm-close-tiddler"/> 15 | <$edit-text 16 | class="py-input input-large" 17 | tiddler="$:/state/projectify/QuickCapture" 18 | field="todo_name" 19 | placeholder={{$:/language/projectify/AddToInbox/Placeholder}} 20 | focus="true" 21 | /> 22 | 23 | 24 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/config/$__config_ShortcutInfo_py-quick-capture.tid: -------------------------------------------------------------------------------- 1 | created: 20200427182541625 2 | modified: 20201212170822560 3 | tags: 4 | title: $:/config/ShortcutInfo/py-quick-capture 5 | type: text/vnd.tiddlywiki 6 | 7 | Trigger a quick capture to add a todo to the inbox. 8 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/config/$__config_flibbles_relink_fields_category.tid: -------------------------------------------------------------------------------- 1 | created: 20210125222824496 2 | modified: 20210125212942853 3 | title: $:/config/flibbles/relink/fields/category 4 | type: text/vnd.tiddlywiki 5 | 6 | title -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/config/$__config_projectify_DefaultDashboardTab.tid: -------------------------------------------------------------------------------- 1 | created: 20210111103027104 2 | modified: 20210111093053641 3 | tags: 4 | title: $:/config/projectify/DefaultDashboardTab 5 | type: text/vnd.tiddlywiki 6 | 7 | $:/plugins/nico/projectify/ui/dashboard/InboxAndProjects -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/config/$__config_projectify_projects-view.tid: -------------------------------------------------------------------------------- 1 | created: 20210110204241653 2 | modified: 20210110204241685 3 | title: $:/config/projectify/projects-view 4 | type: text/vnd.tiddlywiki 5 | 6 | cards -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/config/$__config_shortcuts_py-quick-capture.tid: -------------------------------------------------------------------------------- 1 | created: 20200427182712912 2 | modified: 20201215103024685 3 | tags: 4 | title: $:/config/shortcuts/py-quick-capture 5 | type: text/vnd.tiddlywiki 6 | 7 | alt-C -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/config/config.multids: -------------------------------------------------------------------------------- 1 | title: $:/config/projectify/ 2 | 3 | DefaultCategoryColours: [[#ffffd9]] [[#ffd9ff]] [[#ffebd9]] [[#d9ffeb]] [[#d9d9ff]] [[#ffd9d9]] [[#eeeeee]] 4 | ShowWelcomeMessages: yes 5 | ShowCompletedTodos: no 6 | FirstDayOfWeek: 1 -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/Categories.tid: -------------------------------------------------------------------------------- 1 | created: 20200427152938733 2 | modified: 20210118093411208 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/Categories 5 | type: text/vnd.tiddlywiki 6 | 7 | You can group similar [[Projects|$:/plugins/nico/projectify/doc/Projects]] 8 | together by using Categories. 9 | 10 | Categories can have colours, making it easy to visually distinguish projects by 11 | category. 12 | 13 | From within the [[Dashboard|$:/plugins/nico/projectify/doc/Dashboard]], you can 14 | filter projects by category, giving you a quick overview of all the active 15 | projects for a given category. 16 | 17 | Here are a few common categories you might want to use to get started: 18 | 19 | * ''@work'' --- Groups all projects related to work. 20 | * ''@home'' --- Groups all projects to work on when at home. 21 | * ''@computer'' --- Groups all projects to work on when at the computer. 22 | 23 | Categories can be customized in the dedicated 24 | [[Control Panel section|$:/plugins/nico/projectify/ui/config/Categories]]. 25 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/CoreConcepts.tid: -------------------------------------------------------------------------------- 1 | caption: Core concepts 2 | description: Learn the basics of Projectify 3 | created: 20200427133943777 4 | modified: 20210206204400292 5 | tags: [[Projectify documentation]] $:/plugins/nico/projectify/tags/help-card 6 | list-after: $:/plugins/nico/projectify/doc/GettingStarted 7 | title: $:/plugins/nico/projectify/doc/CoreConcepts 8 | type: text/vnd.tiddlywiki 9 | 10 | The following tiddlers will help you learn the basics of Projectify. 11 | 12 | * [[Dashboard|$:/plugins/nico/projectify/doc/Dashboard]] 13 | * [[Inbox|$:/plugins/nico/projectify/doc/Inbox]] 14 | * [[Todos|$:/plugins/nico/projectify/doc/Todos]] 15 | * [[Projects|$:/plugins/nico/projectify/doc/Projects]] 16 | * [[Categories|$:/plugins/nico/projectify/doc/Categories]] 17 | * [[Refiling|$:/plugins/nico/projectify/doc/Refiling]] 18 | * [[Schedule|$:/plugins/nico/projectify/doc/Schedule]] 19 | * [[Customizing Projectify|$:/plugins/nico/projectify/doc/Customizing]] 20 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/Customizing.tid: -------------------------------------------------------------------------------- 1 | created: 20210206204003498 2 | modified: 20210206204343092 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/Customizing 5 | type: text/vnd.tiddlywiki 6 | 7 | * [[Adding custom tabs to the bashboard|$:/plugins/nico/projectify/doc/DashboardCustomTabs]] 8 | * [[Customizing how todos are rendered|$:/plugins/nico/projectify/doc/Todos]] 9 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/Dashboard.tid: -------------------------------------------------------------------------------- 1 | created: 20201228014905847 2 | modified: 20210117205436094 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/Dashboard 5 | type: text/vnd.tiddlywiki 6 | 7 | The main entry point of Projectify is the dashboard. 8 | It displays the [[Inbox|$:/plugins/nico/projectify/doc/Inbox]], lists 9 | [[Projects|$:/plugins/nico/projectify/doc/Projects]], the 10 | [[Schedule|$:/plugins/nico/projectify/doc/Schedule]] and [[Next actions|$:/plugins/nico/projectify/doc/NextActions]]. 11 | 12 | <> 13 | 14 | The dashboard can be embedded 15 | ([[transcluded|https://tiddlywiki.com/#Transclusion]]) in any tiddler using the 16 | following: 17 | 18 | ``` 19 | {{$:/plugins/nico/projectify/ui/dashboard/Dashboard}} 20 | ``` 21 | <$reveal type="match" state="$:/state/projectify/usage-show-dashboard" text="show"> 22 | <$button class="py-btn btn-primary" set="$:/state/projectify/usage-show-dashboard" setTo="">Hide 23 |
24 | {{$:/plugins/nico/projectify/ui/dashboard/Dashboard}} 25 |
26 | 27 | 28 | <$reveal type="nomatch" state="$:/state/projectify/usage-show-dashboard" text="show"> 29 | <$button class="py-btn btn-primary" set="$:/state/projectify/usage-show-dashboard" setTo="show">Show result 30 | 31 | 32 | The dashboard can be customized in many ways, for instance to [[display custom tabs|$:/plugins/nico/projectify/doc/DashboardCustomTabs]] or [[display the Inbox in a separate tab|$:/plugins/nico/projectify/doc/DashboardInboxSeparateTab]]. 33 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/DashboardCustomTabs.tid: -------------------------------------------------------------------------------- 1 | created: 20201228014905847 2 | modified: 20210206205140144 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/DashboardCustomTabs 5 | type: text/vnd.tiddlywiki 6 | 7 | Any tiddler with the tag <> will 8 | be displayed as a tab in the dashboard. 9 | 10 | !! Listing high priority todos in the dashboard 11 | 12 | The example below demonstrate how to add a tab to the 13 | [[Dashboard|$:/plugins/nico/projectify/doc/Dashboard]] to list all 14 | [[Todos|$:/plugins/nico/projectify/doc/Todos]] marked as high-priority. Save a 15 | new tiddler with the content below, set its `caption` field to `High Priority` 16 | and add the tag <>. 17 | 18 | ``` 19 | !! High priority todos 20 | 21 | <$list 22 | filter="[tag[todo]!tag[done]priority[3]]" 23 | template="$:/plugins/nico/projectify/ui/todo/TodoItem" 24 | /> 25 | ``` 26 | 27 | You can also [[display the Inbox in a separate tab|$:/plugins/nico/projectify/doc/DashboardInboxSeparateTab]]. 28 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/DashboardInboxSeparateTab.tid: -------------------------------------------------------------------------------- 1 | created: 20201228014905847 2 | modified: 20210107215146431 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/DashboardInboxSeparateTab 5 | type: text/vnd.tiddlywiki 6 | 7 | You can build your own Dashboard to display the 8 | [[Inbox|$:/plugins/nico/projectify/doc/Inbox]] as a separate tab using the 9 | following: 10 | 11 | ``` 12 | <> 13 | ``` 14 | <$reveal type="match" state="$:/state/projectify/usage-custom-dashboard" text="show"> 15 | <$button class="py-btn btn-primary" set="$:/state/projectify/usage-custom-dashboard" setTo="">Hide 16 |
17 | <> 18 |
19 | 20 | 21 | <$reveal type="nomatch" state="$:/state/projectify/usage-custom-dashboard" text="show"> 22 | <$button class="py-btn btn-primary" set="$:/state/projectify/usage-custom-dashboard" setTo="show">Show result 23 | 24 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/GettingStarted.tid: -------------------------------------------------------------------------------- 1 | caption: Getting started 2 | description: Install & start using Projectify 3 | created: 20201228014905847 4 | modified: 20210206203806867 5 | tags: [[Projectify documentation]] $:/plugins/nico/projectify/tags/help-card 6 | title: $:/plugins/nico/projectify/doc/GettingStarted 7 | type: text/vnd.tiddlywiki 8 | 9 | Projectify is a [[TiddlyWiki|https://tiddlywiki.com]] plugin for managing 10 | projects & todo lists, inspired by projects such as 11 | [[Todoist|https://todoist.com]] and [[Basecamp|https://basecamp.com]]. It is 12 | released under the [[MIT license|$:/plugins/nico/projectify/LICENSE]]. 13 | 14 | * See [[installation instructions|$:/plugins/nico/projectify/doc/Installation]] for help on installing Projectify in an existing wiki. 15 | 16 | * To start using Projectify, [[transclude|https://tiddlywiki.com/#Transclusion]] the [[Dashboard|$:/plugins/nico/projectify/doc/Dashboard]] into another tiddler. 17 | 18 | * Configure Projectify from the ''Projectify'' tab of the [[Control panel|$:/ControlPanel]]. 19 | 20 | * Read the documentation about the [[core concepts|$:/plugins/nico/projectify/doc/CoreConcepts]] of Projectify. 21 | 22 | 23 | For all changes in the latest {{$:/plugins/nico/projectify!!version}} release, 24 | see [[ChangeLog|$:/plugins/nico/projectify/changelog]]. 25 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/Help.tid: -------------------------------------------------------------------------------- 1 | created: 20200427133943777 2 | modified: 20210117203524275 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/Help 5 | type: text/vnd.tiddlywiki 6 | 7 | {{$:/plugins/nico/projectify/ui/welcome/HelpWelcome}} 8 | 9 | {{$:/plugins/nico/projectify/ui/forms/HelpSearch}} 10 | 11 |
12 | <$list filter="[all[tiddlers+shadows]tag[$:/plugins/nico/projectify/tags/help-card]!has[draft.of]]"> 13 | 14 | <$link overrideClass="py-card" to={{!!title}}> 15 |
16 |

{{!!caption}}

17 |
18 |
19 | {{!!description}} 20 |
21 | 22 |
23 | 24 |
25 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/Inbox.tid: -------------------------------------------------------------------------------- 1 | created: 20200427133943777 2 | modified: 20210117205436065 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/Inbox 5 | type: text/vnd.tiddlywiki 6 | 7 | Citing [[David Allen|https://en.wikipedia.org/wiki/David_Allen_(author)]]: 8 | 9 | <<< 10 | Your mind is for having ideas, not holding them. 11 | <<< David Allen 12 | 13 | The first step to get organized is to get everything out of your head. 14 | The [[Inbox|$:/plugins/nico/projectify/ui/inbox/Inbox]] is a special 15 | [[Project|$:/plugins/nico/projectify/doc/Projects]] where thoughts are captured 16 | so you don't forget them, and can get them out of your head quickly. 17 | 18 | [[Todos|$:/plugins/nico/projectify/doc/Todos]] in the [[Inbox|$:/plugins/nico/projectify/ui/inbox/Inbox]] 19 | can then be [[refiled|$:/plugins/nico/projectify/doc/Refiling]] into projects and/or [[scheduled|$:/plugins/nico/projectify/doc/Schedule]]. 20 | 21 | Projectify also provides a simple way to [[quickly capture|$:/plugins/nico/projectify/doc/QuickCapture]] tasks into the Inbox. 22 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/Installation.tid: -------------------------------------------------------------------------------- 1 | created: 20200427152938733 2 | modified: 20210105203540386 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/Installation 5 | type: text/vnd.tiddlywiki 6 | 7 | !! Dependencies 8 | 9 | While not strictly required, we strongly recommand installing the [[Relink|$:/plugins/flibbles/relink]] plugin as well, as it makes renaming projects much more convenient. 10 | 11 | * [[$:/plugins/flibbles/relink]] 12 | 13 | !! Plugin 14 | 15 | Drag&drop the following link into your wiki 16 | 17 | * [[$:/plugins/nico/projectify]] 18 | 19 | Then save & reload your wiki. 20 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/Links.tid: -------------------------------------------------------------------------------- 1 | caption: External links 2 | description: Useful links to online resources 3 | created: 20201228214411502 4 | modified: 20210206203756938 5 | tags: [[Projectify documentation]] $:/plugins/nico/projectify/tags/help-card 6 | list-after: $:/plugins/nico/projectify/doc/CoreConcepts 7 | title: $:/plugins/nico/projectify/doc/Links 8 | type: text/vnd.tiddlywiki 9 | 10 | !! External links 11 | 12 | * [[Online website|https://projectify.wiki]] 13 | * [[GitHub repository|https://github.com/nicolaspetton/projectify]] 14 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/NextActions.tid: -------------------------------------------------------------------------------- 1 | created: 20200427152938733 2 | modified: 20210109211827377 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/NextActions 5 | type: text/vnd.tiddlywiki 6 | 7 | The [[Next actions|$:/plugins/nico/projectify/ui/NextActions]] tab of the 8 | [[Dashboard|$:/plugins/nico/projectify/doc/Dashboard]] lists the first open task 9 | of each of your projects, with the project title. 10 | 11 | The Next actions list gives a good high-level view of the next steps for each 12 | project, making it easier to decide what to focus on next. 13 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/Projects.tid: -------------------------------------------------------------------------------- 1 | created: 20200427152938733 2 | modified: 20210206204003498 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/Projects 5 | type: text/vnd.tiddlywiki 6 | 7 | !! When to use projects 8 | 9 | Projects structure [[Todos|$:/plugins/nico/projectify/doc/Todos]] together into 10 | separate todo lists. If you're working on something that requires more than one 11 | task, create a project to structure your work. 12 | 13 | !! How to create projects 14 | 15 | You can create projects from the 16 | [[Dashboard|$:/plugins/nico/projectify/doc/Dashboard]], or by adding the 17 | <> tag to an existing tiddler. 18 | 19 | Clicking the {{$:/plugins/nico/projectify/ui/buttons/ProjectListSettings}} 20 | button in the projects section of the 21 | [[Dashboard|$:/plugins/nico/projectify/doc/Dashboard]] let you change how 22 | projects are displayed and reorder them. 23 | 24 | !! Adding tasks to projects 25 | 26 | The input at the bottom of a project tiddler lets you quickly add 27 | [[Todos|$:/plugins/nico/projectify/doc/Todos]] directly to that project. 28 | 29 | !! Archiving projects 30 | 31 | The {{$:/plugins/nico/projectify/ui/buttons/ArchiveProject}} button lets you 32 | archive a project. 33 | 34 | Archived projects are hidden by default from the main project list in the 35 | [[Dashboard|$:/plugins/nico/projectify/doc/Dashboard]]. 36 | 37 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/QuickCapture.tid: -------------------------------------------------------------------------------- 1 | created: 20200427133943777 2 | modified: 20201228022139318 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/QuickCapture 5 | type: text/vnd.tiddlywiki 6 | 7 | You can press {{$:/config/shortcuts/py-quick-capture}} to 8 | capture into the [[Inbox|$:/plugins/nico/projectify/doc/Inbox]] from anywhere. 9 | You can change it in the [[Keyboard section of the Control Panel|$:/core/ui/ControlPanel/KeyboardShortcuts]]. 10 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/Refiling.tid: -------------------------------------------------------------------------------- 1 | created: 20201228014905847 2 | modified: 20210117205300355 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/Refiling 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | * To move a [[Todo|$:/plugins/nico/projectify/doc/Todos]] from the [[Inbox|$:/plugins/nico/projectify/doc/Inbox]], just drag & drop the todo using the {{$:/plugins/nico/projectify/images/drag-handle}} handle into one of the projects below the inbox. 9 | 10 | * To move [[Todos|$:/plugins/nico/projectify/doc/Todos]] between [[Projects|$:/plugins/nico/projectify/doc/Projects]], drag & drop the todo using the {{$:/plugins/nico/projectify/images/drag-handle}} handle from one project into another. 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/Schedule.tid: -------------------------------------------------------------------------------- 1 | created: 20200427152938733 2 | modified: 20210117205436104 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/Schedule 5 | type: text/vnd.tiddlywiki 6 | 7 | [[Todos|$:/plugins/nico/projectify/doc/Todos]] with a due date will appear in 8 | the [[Upcoming|$:/plugins/nico/projectify/ui/dashbaord/Upcoming]] or 9 | [[Today|$:/plugins/nico/projectify/ui/dashbaord/Today]] tab of the 10 | [[Dashboard|$:/plugins/nico/projectify/doc/Dashboard]]. 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/Todos.tid: -------------------------------------------------------------------------------- 1 | created: 20200427152938733 2 | modified: 20210122101816246 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/Todos 5 | type: text/vnd.tiddlywiki 6 | 7 | Todos represent single units of work -- or tasks -- within [[Projects|$:/plugins/nico/projectify/doc/Projects]] or the [[Inbox|$:/plugins/nico/projectify/doc/Inbox]]. 8 | 9 | Any tiddler with the <> tag will be recognized as a todo. 10 | 11 | Todos can be marked as done by checking their check box in the view toolbar. They can also be [[Scheduled|$:/plugins/nico/projectify/doc/Schedule]]. 12 | 13 | <> 14 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/doc/TranscludingUIElements.tid: -------------------------------------------------------------------------------- 1 | created: 20210109005110640 2 | modified: 20210109005541273 3 | tags: [[Projectify documentation]] 4 | title: $:/plugins/nico/projectify/doc/TranscludingUIElements 5 | type: text/vnd.tiddlywiki 6 | 7 | Projectify can be used without using the [[dashboard|$:/plugins/nico/projectify/doc/Dashboard]]. 8 | 9 | The various UI elements provided by Projectify can be linked or transcluded in 10 | any way that suits your workflow. For instance: 11 | 12 | * Tiddlers can be used as projects by adding the <> tag. The todo-list will be displayed automatically. 13 | * The Inbox can be displayed by transcluding [[$:/plugins/nico/projectify/ui/inbox/Inbox]]. 14 | * Upcoming tasks can be displayed by transcluding [[$:/plugins/nico/projectify/ui/dashbaord/Upcoming]]. 15 | * The full list of projects can be displayed by transcluding [[$:/plugins/nico/projectify/ui/dashboard/Projects]]. 16 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/icon.tid: -------------------------------------------------------------------------------- 1 | created: 20201211131730353 2 | modified: 20210114220716131 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/icon 5 | type: text/vnd.tiddlywiki 6 | 7 |
8 | {{$:/plugins/nico/projectify/images/icon.svg}} 9 |
10 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/archive.tid: -------------------------------------------------------------------------------- 1 | created: 2020120217278433 2 | modified: 20201212170921256 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/archive 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/calendar-checked.tid: -------------------------------------------------------------------------------- 1 | created: 20210107212539302 2 | modified: 20210122213516588 3 | title: $:/plugins/nico/projectify/images/calendar-checked 4 | type: text/vnd.tiddlywiki 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/calendar-event.tid: -------------------------------------------------------------------------------- 1 | created: 20210107213005681 2 | modified: 20210107213023455 3 | title: $:/plugins/nico/projectify/images/calendar-event 4 | type: text/vnd.tiddlywiki 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/calendar.tid: -------------------------------------------------------------------------------- 1 | created: 20200423195159541 2 | modified: 20210107212455019 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/calendar 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/check-circle-light.tid: -------------------------------------------------------------------------------- 1 | created: 20200428152931864 2 | modified: 20201212170921338 3 | title: $:/plugins/nico/projectify/images/check-circle-light 4 | type: text/vnd.tiddlywiki 5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/check-circle.tid: -------------------------------------------------------------------------------- 1 | created: 20200428151952093 2 | modified: 20201212170921199 3 | title: $:/plugins/nico/projectify/images/check-circle 4 | type: text/vnd.tiddlywiki 5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/checkbox-checked-solid.tid: -------------------------------------------------------------------------------- 1 | created: 20200428151856963 2 | modified: 20201212170921211 3 | title: $:/plugins/nico/projectify/images/checkbox-checked-solid 4 | type: text/vnd.tiddlywiki 5 | 6 | 14 | 15 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/checkbox-checked.tid: -------------------------------------------------------------------------------- 1 | created: 20200428151856963 2 | modified: 20201212170921306 3 | title: $:/plugins/nico/projectify/images/checkbox-checked 4 | type: text/vnd.tiddlywiki 5 | 6 | 12 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/checkbox.tid: -------------------------------------------------------------------------------- 1 | created: 20200428151856963 2 | modified: 20201212170921322 3 | title: $:/plugins/nico/projectify/images/checkbox 4 | type: text/vnd.tiddlywiki 5 | 6 | 13 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/checklist.tid: -------------------------------------------------------------------------------- 1 | created: 20210110203707487 2 | modified: 20210111214044701 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/checklist 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/circle.tid: -------------------------------------------------------------------------------- 1 | created: 20200428151856963 2 | modified: 20201212170921346 3 | title: $:/plugins/nico/projectify/images/circle 4 | type: text/vnd.tiddlywiki 5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/collection.tid: -------------------------------------------------------------------------------- 1 | created: 20210122213019465 2 | modified: 20210122213437899 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/collection 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/compass.tid: -------------------------------------------------------------------------------- 1 | created: 20200428151856963 2 | modified: 20201220172045782 3 | title: $:/plugins/nico/projectify/images/compass 4 | type: text/vnd.tiddlywiki 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/dots.tid: -------------------------------------------------------------------------------- 1 | created: 20210110203626606 2 | modified: 20210110203707487 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/dots 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/drag-handle.tid: -------------------------------------------------------------------------------- 1 | created: 20201203121002043 2 | modified: 20201212170921358 3 | title: $:/plugins/nico/projectify/images/drag-handle 4 | type: text/vnd.tiddlywiki 5 | 6 | 13 | 18 | 19 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/eye.tid: -------------------------------------------------------------------------------- 1 | created: 20201208134634473 2 | modified: 20201212170921273 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/eye 5 | type: text/vnd.tiddlywiki 6 | 7 | 14 | 19 | 24 | 25 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/eyeslash.tid: -------------------------------------------------------------------------------- 1 | created: 20201208134755202 2 | modified: 20201212170921370 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/eyeslash 5 | type: text/vnd.tiddlywiki 6 | 7 | 14 | 15 | 16 | 17 | 22 | 23 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/file.tid: -------------------------------------------------------------------------------- 1 | created: 20210122213019465 2 | modified: 20210127110644887 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/file 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/flag.tid: -------------------------------------------------------------------------------- 1 | created: 20210109214554008 2 | modified: 20210109214656549 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/flag 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/front.tid: -------------------------------------------------------------------------------- 1 | created: 20210110203707487 2 | modified: 20210111194005648 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/front 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/funnel.tid: -------------------------------------------------------------------------------- 1 | created: 20200425202748433 2 | modified: 20201212170921297 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/funnel 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/icon.svg.meta: -------------------------------------------------------------------------------- 1 | title: $:/plugins/nico/projectify/images/icon.svg 2 | type: image/svg+xml -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/inbox.tid: -------------------------------------------------------------------------------- 1 | created: 20200427142105097 2 | modified: 20201212170921289 3 | title: $:/plugins/nico/projectify/images/inbox 4 | type: text/vnd.tiddlywiki 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/info.tid: -------------------------------------------------------------------------------- 1 | created: 2020120217278433 2 | modified: 20201228110755788 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/info 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/lightbulb.tid: -------------------------------------------------------------------------------- 1 | created: 2020120217278433 2 | modified: 20210109154948933 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/lightbulb 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/logo.svg.meta: -------------------------------------------------------------------------------- 1 | title: $:/themes/nico/notebook/images/logo.svg 2 | type: image/svg+xml -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/pie.tid: -------------------------------------------------------------------------------- 1 | created: 20201207124527891 2 | modified: 20201212170921237 3 | title: $:/plugins/nico/projectify/images/pie 4 | type: text/vnd.tiddlywiki 5 | 6 | <$set name="PI" value="3.14"> 7 | <$set name="circumference" value={{{ [multiply[2]multiply[5]] }}}> 8 | <$set name="all" value={{{ [tag!has[draft.of]count[]] }}}> 9 | <$set name="closed" value={{{ [tag!has[draft.of]tag[done]count[]]}}}> 10 | <$set name="ratio" value={{{ [is[0]thenelsemultiplydivide] }}}> 11 | 16 | 17 | 25 | 26 | addsuffix[ 31.42]] }}}/> 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/quick-capture.tid: -------------------------------------------------------------------------------- 1 | created: 20200427142105097 2 | modified: 20201212170921244 3 | title: $:/plugins/nico/projectify/images/quick-capture 4 | type: text/vnd.tiddlywiki 5 | 6 | 7 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/slash-circle.tid: -------------------------------------------------------------------------------- 1 | created: 20200423195159541 2 | modified: 20210105173634381 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/slash-circle 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/stack.tid: -------------------------------------------------------------------------------- 1 | created: 20210122213019465 2 | modified: 20210122220152090 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/stack 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/sun.tid: -------------------------------------------------------------------------------- 1 | created: 20210107212539302 2 | modified: 20210122213454100 3 | title: $:/plugins/nico/projectify/images/sun 4 | type: text/vnd.tiddlywiki 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/images/tasks.tid: -------------------------------------------------------------------------------- 1 | created: 20200424203654397 2 | modified: 20210122213422836 3 | tags: $:/tags/Image 4 | title: $:/plugins/nico/projectify/images/tasks 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/language/en-GB/EmptyInboxDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112204543097 4 | 5 |

Everything is well organized, have a great <>!

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/language/en-GB/EmptyInboxTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxTitle 2 | created: 20210112203922871 3 | modified: 20210112204532441 4 | 5 | You're all done! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/language/en-GB/EmptyNextActionsDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyNextActionsDescription 2 | created: 20210112203922871 3 | modified: 20210112204856811 4 | 5 |

6 | The first task of each active project will appear here -- [[learn more|$:/plugins/nico/projectify/doc/NextActions]]. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/language/en-GB/EmptyNextActionsTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112205110180 4 | 5 | All clear! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/language/en-GB/EmptyProjectDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectDescription 2 | created: 20210112203922871 3 | modified: 20210112210733626 4 | 5 |

Looks like you've completed this project!

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/language/en-GB/EmptyProjectTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectTitle 2 | created: 20210112203922871 3 | modified: 20210112210817571 4 | 5 | Well done! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/language/en-GB/EmptyProjectsDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectsDescription 2 | created: 20210112203922871 3 | modified: 20210112205248845 4 | 5 |

Get more efficient and organized by structuring your tasks in projects -- [[learn more|$:/plugins/nico/projectify/doc/Projects]].

6 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/language/en-GB/EmptyProjectsTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyProjectsTitle 2 | created: 20210112203922871 3 | modified: 20210112205529611 4 | 5 | Stay organized! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/language/en-GB/EmptyUpcomingDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyUpcomingDescription 2 | created: 20210112203922871 3 | modified: 20210117205436036 4 | 5 |

6 | All scheduled tasks will appear here -- [[learn more|$:/plugins/nico/projectify/doc/Schedule]]. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/language/en-GB/EmptyUpcomingTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/EmptyUpcomingTitle 2 | created: 20210112203922871 3 | modified: 20210112211210936 4 | 5 | Your agenda is empty! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/language/en-GB/WelcomeInboxDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeInboxDescription 2 | created: 20210112203922871 3 | modified: 20210112204214632 4 | 5 |

Collect tasks in the Inbox so you don't forget them, and get them out of your 6 | head quickly!

7 |

You can also press {{$:/config/shortcuts/py-quick-capture}} to 8 | capture from anywhere.

9 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/language/en-GB/WelcomeInboxTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeInboxTitle 2 | created: 20210112203922871 3 | modified: 20210112204147224 4 | 5 | Collect tasks in the Inbox 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/language/en-GB/WelcomeProjectDescription.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeProjectDescription 2 | created: 20210112203922871 3 | modified: 20210112210005679 4 | 5 |

6 | Keep your work organised by grouping todos in projects. 7 |

8 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/language/en-GB/WelcomeProjectTitle.tid: -------------------------------------------------------------------------------- 1 | title: $:/language/projectify/WelcomeProjectTitle 2 | created: 20210112203922871 3 | modified: 20210112210001231 4 | 5 | Let's get started! 6 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/macros/schedule.tid: -------------------------------------------------------------------------------- 1 | created: 20210107213957129 2 | modified: 20210112205701918 3 | tags: $:/tags/Macro 4 | title: $:/plugins/nico/projectify/macros/schedule 5 | type: text/vnd.tiddlywiki 6 | 7 | \whitespace trim 8 | 9 | \define py-schedule-overdue() 10 | <$list 11 | filter=<> 12 | template="$:/plugins/nico/projectify/ui/todo/TodoItem" 13 | /> 14 | \end 15 | 16 | \define py-schedule-day(day) 17 | <$vars day=<<__day__>>> 18 | <$list 19 | filter=<> 20 | template="$:/plugins/nico/projectify/ui/todo/TodoItem" 21 | /> 22 | 23 | \end 24 | 25 | \define py-schedule-today() 26 | <$list 27 | filter=<> 28 | template="$:/plugins/nico/projectify/ui/todo/TodoItem" 29 | emptyMessage="🌞 {{$:/language/projectify/AllClear}}" 30 | /> 31 | \end 32 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/macros/utils.tid: -------------------------------------------------------------------------------- 1 | created: 20210109154610555 2 | modified: 20210112210344539 3 | tags: $:/tags/Macro 4 | title: $:/plugins/nico/projectify/macros/utils 5 | type: text/vnd.tiddlywiki 6 | 7 | \define lingo-base() $:/language/projectify/ 8 | 9 | \define py-tip(text) 10 |
11 | {{$:/plugins/nico/projectify/images/lightbulb}} 12 | ''<>: ''$text$ 13 |
14 | \end 15 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/quick-capture.tid: -------------------------------------------------------------------------------- 1 | created: 20200427182745230 2 | key: ((py-quick-capture)) 3 | modified: 20201212170921478 4 | tags: $:/tags/KeyboardShortcut 5 | title: $:/plugins/nico/projectify/quick-capture 6 | type: text/vnd.tiddlywiki 7 | 8 | <$navigator story="$:/StoryList" history="$:/HistoryList"> 9 | <$action-navigate $to="$:/plugins/nico/projectify/QuickCapture"/> 10 | 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/styles/category.tid: -------------------------------------------------------------------------------- 1 | created: 20210117210451364 2 | modified: 20210118092251871 3 | tags: $:/tags/Stylesheet 4 | title: $:/plugins/nico/projectify/styles/category 5 | type: text/vnd.tiddlywiki 6 | 7 | \rules only filteredtranscludeinline transcludeinline macrodef macrocallinline 8 | 9 | .py-category-pill { 10 | position: relative; 11 | width: 1em; 12 | height: 1em; 13 | display: inline-block; 14 | vertical-align: middle; 15 | border-radius: 50%; 16 | background: <>; 17 | } 18 | 19 | .py-category-pill::after { 20 | content: " "; 21 | position: absolute; 22 | left: 0; 23 | top: 0; 24 | right: 0; 25 | bottom: 0; 26 | border-radius: 50%; 27 | border: 1px solid <>; 28 | } 29 | 30 | .py-category-wrapper { 31 | margin-top: -4px; 32 | margin-bottom: 10px; 33 | } 34 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/styles/notebook.tid: -------------------------------------------------------------------------------- 1 | created: 20200426194806637 2 | modified: 20210106090506091 3 | tags: $:/tags/Stylesheet 4 | title: $:/plugins/nico/projectify/styles/notebook 5 | type: text/vnd.tiddlywiki 6 | 7 | \rules only filteredtranscludeinline transcludeinline macrodef macrocallinline 8 | 9 | /* Notebook sidebar */ 10 | 11 | .nc-sidebar .py-projects { 12 | margin: 0; 13 | border: 0; 14 | } 15 | 16 | .nc-sidebar .py-projects .py-project { 17 | border-bottom: 0; 18 | } 19 | 20 | .nc-sidebar dl { 21 | margin: 0; 22 | } 23 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/styles/quick-capture.tid: -------------------------------------------------------------------------------- 1 | created: 20210121181105314 2 | modified: 20210121181112691 3 | tags: $:/tags/Stylesheet 4 | title: $:/plugins/nico/projectify/styles/quick-capture 5 | type: text/vnd.tiddlywiki 6 | 7 | \rules only filteredtranscludeinline transcludeinline macrodef macrocallinline 8 | 9 | [data-tiddler-title^="$:/plugins/nico/projectify/QuickCapture"] .tc-title, 10 | [data-tiddler-title^="$:/plugins/nico/projectify/QuickCapture"] .tc-subtitle { 11 | display: none; 12 | } 13 | 14 | [data-tiddler-title^="$:/plugins/nico/projectify/QuickCapture"] svg { 15 | fill: <>; 16 | vertical-align: middle; 17 | width: 1.2em; 18 | height: 1.2em; 19 | margin-right: 6px; 20 | } 21 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/styles/vanilla.tid: -------------------------------------------------------------------------------- 1 | created: 20210107180235870 2 | modified: 20210107180407568 3 | tags: $:/tags/Stylesheet 4 | title: $:/plugins/nico/projectify/styles/vanilla 5 | type: text/vnd.tiddlywiki 6 | 7 | \rules only filteredtranscludeinline transcludeinline macrodef macrocallinline 8 | 9 | /* Default sidebar */ 10 | 11 | .py-sidebar-section { 12 | max-width: 500px; 13 | } 14 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/styles/welcome.tid: -------------------------------------------------------------------------------- 1 | created: 20210117173623112 2 | modified: 20210205180906058 3 | tags: $:/tags/Stylesheet 4 | title: $:/plugins/nico/projectify/styles/welcome 5 | type: text/vnd.tiddlywiki 6 | 7 | \rules only filteredtranscludeinline transcludeinline macrodef macrocallinline 8 | 9 | 10 | .py-welcome { 11 | max-width: 800px; 12 | text-align: center; 13 | padding: 40px 20px; 14 | margin: 0 auto; 15 | background: <>; 16 | color: <>; 17 | border-radius: 12px; 18 | } 19 | 20 | .py-welcome .icon { 21 | font-size: 4em; 22 | } 23 | 24 | .py-welcome h3 { 25 | font-weight: bold; 26 | } 27 | 28 | .py-welcome p { 29 | margin: 0; 30 | } 31 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/AddCategory.tid: -------------------------------------------------------------------------------- 1 | created: 20210114223231533 2 | modified: 20210118092219909 3 | title: $:/plugins/nico/projectify/ui/buttons/AddCategory 4 | type: text/vnd.tiddlywiki 5 | 6 | \define lingo-base() $:/language/projectify/ 7 | 8 | <$button 9 | class="py-btn btn-primary" 10 | popup="$:/state/projectify/show-new-category-popup" 11 | tooltip={{$:/language/projectify/AddCategory/Hint}} 12 | aria-label={{$:/language/projectify/AddCategory/Hint}} 13 | > 14 | {{$:/core/images/edit-button}} 15 | <> 16 | 17 | 18 | <$reveal 19 | type="popup" 20 | class="tc-popup-keep py-popup" 21 | state="$:/state/projectify/show-new-category-popup" 22 | position="above" 23 | > 24 |

<>

25 | {{$:/plugins/nico/projectify/ui/forms/NewCategory}} 26 | 27 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/AddProject.tid: -------------------------------------------------------------------------------- 1 | created: 20201217210439140 2 | modified: 20210112180542001 3 | title: $:/plugins/nico/projectify/ui/buttons/AddProject 4 | type: text/vnd.tiddlywiki 5 | 6 | \define lingo-base() $:/language/projectify/ 7 | 8 | <$button 9 | class="py-btn btn-primary" 10 | popup="$:/state/projectify/show-new-project-popup" 11 | tooltip={{$:/language/projectify/AddProject/Hint}} 12 | aria-label={{$:/language/projectify/AddProject/Hint}} 13 | > 14 | {{$:/core/images/edit-button}} 15 | <> 16 | 17 | 18 | <$reveal 19 | type="popup" 20 | class="tc-popup-keep py-popup" 21 | state="$:/state/projectify/show-new-project-popup" 22 | position="above" 23 | > 24 |

<>

25 | {{$:/plugins/nico/projectify/ui/forms/NewProject}} 26 | 27 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/ArchiveProject.tid: -------------------------------------------------------------------------------- 1 | created: 20201209150027612 2 | modified: 20210205111043378 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/buttons/ArchiveProject 5 | type: text/vnd.tiddlywiki 6 | 7 | \define lingo-base() $:/language/projectify/ 8 | 9 | <$fieldmangler> 10 | <$button 11 | class="py-btn btn-small btn-danger nc-archive-project" 12 | tooltip={{$:/language/projectify/ArchiveProject/Hint}} 13 | aria-label={{$:/language/projectify/ArchiveProject/Hint}} 14 | > 15 | <$action-sendmessage $message="tm-add-tag" $param="done"/> 16 | <$action-sendmessage $message="tm-auto-save-wiki"/> 17 | {{$:/core/images/delete-button}} <> 18 | 19 | 20 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/Cancel.tid: -------------------------------------------------------------------------------- 1 | created: 20201212172804699 2 | modified: 20210112180541944 3 | title: $:/plugins/nico/projectify/ui/buttons/Cancel 4 | type: text/vnd.tiddlywiki 5 | 6 | \define lingo-base() $:/language/projectify/ 7 | 8 | <$button class="py-btn" set=<> setTo=""> 9 | <> 10 | 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/Checkbox.tid: -------------------------------------------------------------------------------- 1 | created: 20200428151242242 2 | modified: 20201212170921075 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/buttons/Checkbox 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | <$list filter=<>> 9 | {{$:/plugins/nico/projectify/images/checkbox}} 10 | {{$:/plugins/nico/projectify/images/checkbox-checked}} 11 | 12 | <$list filter=<>> 13 | {{$:/plugins/nico/projectify/images/checkbox-checked-solid}} 14 | 15 | 16 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/ProjectCardSettings.tid: -------------------------------------------------------------------------------- 1 | created: 20201210171047824 2 | modified: 20210118092219973 3 | title: $:/plugins/nico/projectify/ui/buttons/ProjectCardSettings 4 | type: text/vnd.tiddlywiki 5 | 6 | \define lingo-base() $:/language/projectify/ 7 | 8 | <$vars popupTiddler=<>> 9 | <$button 10 | popup=<> 11 | tooltip={{$:/language/projectify/CardOptions/Hint}} 12 | aria-label={{$:/language/projectify/CardOptions/Hint}} 13 | class="tc-btn-invisible" 14 | selectedClass="tc-selected" 15 | > 16 | {{$:/core/images/down-arrow}} 17 | 18 | 19 | <$reveal state=<> type="popup" position="below" animate="yes" class="tc-drop-down py-drop-down"> 20 | <$list filter=<> variable="category"> 21 | <$button class="tc-btn-invisible"> 22 | <$tiddler tiddler=<>> 23 | {{||$:/plugins/nico/projectify/ui/category/Category}} 24 | 25 | <$action-setfield category=<>/> 26 | 27 | 28 |
29 | <$link to="$:/plugins/nico/projectify/ui/config/Categories"> 30 | <> 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/ProjectListSettings.tid: -------------------------------------------------------------------------------- 1 | created: 20201210171047824 2 | modified: 20210121182326872 3 | title: $:/plugins/nico/projectify/ui/buttons/ProjectListSettings 4 | type: text/vnd.tiddlywiki 5 | 6 | \define lingo-base() $:/language/projectify/ 7 | 8 | <$button 9 | popup="$:/state/projectify/project-list-settings-dropdown" 10 | tooltip={{$:/language/projectify/Options/Hint}} 11 | aria-label={{$:/language/projectify/Options/Hint}} 12 | class="tc-btn-invisible" 13 | selectedClass="tc-selected" 14 | > 15 | {{$:/core/images/down-arrow}} 16 | 17 | 18 | <$reveal state="$:/state/projectify/project-list-settings-dropdown" type="popup" position="below" animate="yes" class="tc-drop-down"> 19 | <$vars switchView={{{ [{$:/config/projectify/projects-view}match[list]then[cards]else[list]] }}}> 20 | <$button class="tc-btn-invisible"> 21 | <$list filter="[match[list]]"> 22 | <> 23 | 24 | <$list filter="[match[cards]]"> 25 | <> 26 | 27 | <$action-setfield $tiddler="$:/config/projectify/projects-view" text=<> /> 28 | 29 | 30 | 31 | <$button class="tc-btn-invisible"> 32 | <> 33 | <$action-setfield $tiddler="$:/state/projectify/show-reorder-projects" text="yes"> 34 | 35 | 36 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/RestoreProject.tid: -------------------------------------------------------------------------------- 1 | created: 20201209151126748 2 | modified: 20210112180541974 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/buttons/RestoreProject 5 | type: text/vnd.tiddlywiki 6 | 7 | \define lingo-base() $:/language/projectify/ 8 | 9 | <$fieldmangler> 10 | <$button class="tc-btn-invisible"> 11 | <$action-sendmessage $message="tm-remove-tag" $param="done"/> 12 | <> 13 | <$action-sendmessage $message="tm-auto-save-wiki"/> 14 | 15 | 16 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/Save.tid: -------------------------------------------------------------------------------- 1 | created: 20201212172804699 2 | modified: 20210112180953297 3 | title: $:/plugins/nico/projectify/ui/buttons/Save 4 | type: text/vnd.tiddlywiki 5 | 6 | \define lingo-base() $:/language/projectify/ 7 | 8 | <$button class="py-btn btn-primary"> 9 | <> 10 | <> 11 | 12 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/Scheduled.tid: -------------------------------------------------------------------------------- 1 | created: 20201210171047824 2 | description: Show all todos scheduled for today 3 | modified: 20210201175357320 4 | tags: $:/tags/PageControls 5 | title: $:/plugins/nico/projectify/ui/buttons/Scheduled 6 | type: text/vnd.tiddlywiki 7 | 8 | \define lingo-base() $:/language/projectify/ 9 | 10 | <$button 11 | popup="$:/state/projectify/scheduled-dropdown" 12 | tooltip={{$:/language/projectify/TodaysTodos}} 13 | aria-label={{$:/language/projectify/TodaysTodos}} 14 | class={{{ [[desktop-only ]addsuffix] }}} 15 | selectedClass="tc-selected" 16 | > 17 | <$list filter="[match[yes]]"> 18 | 19 | {{$:/plugins/nico/projectify/images/calendar}} 20 | <$list filter=<>> 21 |
22 | 23 |
24 | 25 | <$list filter="[match[yes]]"> 26 | <> 27 | 28 | 29 | 30 | <$reveal state="$:/state/projectify/scheduled-dropdown" type="popup" position="belowleft"> 31 |
32 |

<>

33 | <$list 34 | filter=<> 35 | emptyMessage="""
🌞 <>
""" 36 | > 37 | <$link to={{!!title}}> 38 | {{||$:/plugins/nico/projectify/ui/todo/TodoCaption}} 39 | 40 | 41 |
42 | 43 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/SelectCategory.tid: -------------------------------------------------------------------------------- 1 | created: 20210116205450353 2 | modified: 20210125211734424 3 | title: $:/plugins/nico/projectify/ui/buttons/SelectCategory 4 | type: text/vnd.tiddlywiki 5 | 6 | \define lingo-base() $:/language/projectify/ 7 | 8 | <$vars popupTiddler=<>> 9 | <$button 10 | popup=<> 11 | class="py-btn btn-small" 12 | tooltip={{$:/language/projectify/SetCategory/Hint}} 13 | > 14 | <$reveal type="nomatch" state="!!category" text=""> 15 | <$tiddler tiddler={{!!category}}> 16 | {{||$:/plugins/nico/projectify/ui/category/Category}} 17 | 18 | 19 | <$reveal type="match" state="!!category" text=""> 20 | <> 21 | 22 | 23 | 24 | <$reveal state=<> type="popup" position="below" animate="yes" class="tc-drop-down py-drop-down"> 25 | <$list filter=<> variable="category"> 26 | <$button class="tc-btn-invisible"> 27 | <$tiddler tiddler=<>> 28 | {{||$:/plugins/nico/projectify/ui/category/Category}} 29 | 30 | <$action-setfield category=<>/> 31 | 32 | 33 | <$button class="tc-btn-invisible"> 34 | {{$:/plugins/nico/projectify/images/slash-circle}} <> 35 | <$action-deletefield $field="category"/> 36 | 37 |
38 | <$link to="$:/plugins/nico/projectify/ui/config/Categories"> 39 | <> 40 | 41 | 42 | 43 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/TodoActions.tid: -------------------------------------------------------------------------------- 1 | created: 20210110175540346 2 | modified: 20210201181117406 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/buttons/TodoActions 5 | type: text/vnd.tiddlywiki 6 | 7 | <$vars 8 | popupTiddler=<> 9 | cssClass="py-btn" 10 | > 11 | <$button 12 | class=<> 13 | popup=<> 14 | tooltip={{$:/language/projectify/TodoActions/Hint}} 15 | aria-label={{$:/language/projectify/TodoActions/Hint}} 16 | > 17 | {{$:/plugins/nico/projectify/images/dots}} 18 | 19 | 20 | <$reveal state=<> type="popup" position="belowleft" animate="no"> 21 |
22 | {{||$:/plugins/nico/projectify/ui/forms/TodoPriority}} 23 |
24 | {{||$:/plugins/nico/projectify/ui/forms/TodoDueDate}} 25 |
26 | {{||$:/plugins/nico/projectify/ui/forms/TodoConvert}} 27 |
28 | 29 | 30 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/TodoPriority.tid: -------------------------------------------------------------------------------- 1 | created: 20200424135048294 2 | modified: 20210112180542060 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/buttons/TodoPriority 5 | type: text/vnd.tiddlywiki 6 | 7 | <$vars 8 | popupTiddler=<> 9 | cssClass={{{ [[py-btn py-priority py-priority-]addsuffix{!!priority}] }}} 10 | > 11 | <$button 12 | class=<> 13 | popup=<> 14 | tooltip={{$:/language/projectify/Priority/Hint}} 15 | aria-label={{$:/language/projectify/Priority/Hint}} 16 | > 17 | {{$:/plugins/nico/projectify/images/flag}} 18 | 19 | 20 | <$reveal state=<> type="popup" position="belowleft" animate="no"> 21 |
22 | {{||$:/plugins/nico/projectify/ui/forms/TodoPriority}} 23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/ToggleCompletedTodos.tid: -------------------------------------------------------------------------------- 1 | created: 20201212172804699 2 | modified: 20210205173145448 3 | title: $:/plugins/nico/projectify/ui/buttons/ToggleCompletedTodos 4 | type: text/vnd.tiddlywiki 5 | 6 | \define lingo-base() $:/language/projectify/ 7 | 8 | <$list filter=<> variable="ignore"> 9 | <$vars stateTiddler=<> 10 | default={{$:/config/projectify/ShowCompletedTodos}}> 11 | 12 | <$reveal type="nomatch" state=<> text="yes" default=<>> 13 | <$button class="tc-btn-invisible py-link-muted" set=<> setTo="yes"> 14 | {{$:/plugins/nico/projectify/images/eye}} 15 | <$count filter=<>/> <> 16 | 17 | 18 | 19 | <$reveal type="match" state=<> text="yes" default=<>> 20 |
21 | <$button class="tc-btn-invisible py-link-muted" set=<> setTo="no"> 22 | {{$:/plugins/nico/projectify/images/eyeslash}} <> 23 | 24 |
25 | <$macrocall $name="todo-list-completed"/> 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/buttons/ToggleTodo.tid: -------------------------------------------------------------------------------- 1 | created: 20200420105800700 2 | modified: 20210124162928585 3 | tags: $:/tags/ViewToolbar 4 | title: $:/plugins/nico/projectify/ui/buttons/ToggleTodo 5 | caption: {{||$:/plugins/nico/projectify/ui/buttons/Checkbox}} Toggle todo 6 | description: Projectify -- Toggle the state of the current todo tiddler 7 | list-before: $:/core/ui/Buttons/close 8 | type: text/vnd.tiddlywiki 9 | 10 | \define save-actions() 11 | <$action-sendmessage $message="tm-auto-save-wiki"/> 12 | \end 13 | 14 | <$list filter=<>> 15 | 16 | <$checkbox tag="done" actions=<>> 17 | {{||$:/plugins/nico/projectify/ui/buttons/Checkbox}} 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/category/Category.tid: -------------------------------------------------------------------------------- 1 | created: 20210117163947721 2 | modified: 20210118092219999 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/category/Category 5 | type: text/vnd.tiddlywiki 6 | 7 | <$vars colour={{{ [all[current]get[color]] }}}> 8 | {{||$:/plugins/nico/projectify/ui/category/CategoryPill}} 9 | <$text text={{!!title}}> 10 | 11 | 12 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/category/CategoryPill.tid: -------------------------------------------------------------------------------- 1 | created: 20210117163947721 2 | modified: 20210118092251905 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/category/CategoryPill 5 | type: text/vnd.tiddlywiki 6 | 7 |
] }}}>
8 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/config/Basics.tid: -------------------------------------------------------------------------------- 1 | created: 20210121211818576 2 | modified: 20210131212903344 3 | tags: $:/plugins/nico/projectify/tags/Config 4 | title: $:/plugins/nico/projectify/ui/config/Basics 5 | list-before: $:/plugins/nico/projectify/ui/config/Dashboard 6 | type: text/vnd.tiddlywiki 7 | caption: {{$:/language/ControlPanel/Basics/Caption}} 8 | 9 | \define lingo-base() $:/language/projectify/ 10 | 11 | \define select-show-welcome-messages() 12 | <$select tiddler="$:/config/projectify/ShowWelcomeMessages"> 13 | 14 | 15 | 16 | \end 17 | 18 | \define select-show-completed-todos() 19 | <$select tiddler="$:/config/projectify/ShowCompletedTodos"> 20 | 21 | 22 | 23 | \end 24 | 25 | |<> |<> | 26 | |<> |<> | 27 | 28 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/config/Calendar.tid: -------------------------------------------------------------------------------- 1 | created: 20210521105044185 2 | modified: 20210521111003945 3 | tags: $:/plugins/nico/projectify/tags/Config 4 | title: $:/plugins/nico/projectify/ui/config/Calendar 5 | list-before: $:/plugins/nico/projectify/ui/config/Dashboard 6 | type: text/vnd.tiddlywiki 7 | caption: {{$:/language/projectify/Calendar}} 8 | 9 | \define lingo-base() $:/language/projectify/ 10 | 11 | \define select-first-day-of-week() 12 | <$select tiddler="$:/config/projectify/FirstDayOfWeek"> 13 | 14 | 15 | 16 | \end 17 | 18 | |<> |<> | 19 | 20 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/config/Config.tid: -------------------------------------------------------------------------------- 1 | created: 20200426194806637 2 | modified: 20210121212651554 3 | tags: $:/tags/ControlPanel 4 | title: $:/plugins/nico/projectify/ui/config/Config 5 | type: text/vnd.tiddlywiki 6 | caption: Projectify 7 | 8 | <> 9 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/config/Dashboard.tid: -------------------------------------------------------------------------------- 1 | created: 20200426194806637 2 | modified: 20210112180542154 3 | tags: $:/plugins/nico/projectify/tags/Config 4 | title: $:/plugins/nico/projectify/ui/config/Dashboard 5 | type: text/vnd.tiddlywiki 6 | caption: {{$:/language/projectify/Dashboard}} 7 | 8 | \define lingo-base() $:/language/projectify/ 9 | 10 | \define projects-view() 11 | <$select tiddler="$:/config/projectify/projects-view"> 12 | <$list filter="list cards"> 13 | 14 | 15 | 16 | \end 17 | 18 | \define default-dashboard-tab() 19 | <$select tiddler="$:/config/projectify/DefaultDashboardTab"> 20 | <$list filter="[all[tiddlers+shadows]tag[$:/plugins/nico/projectify/tags/dashboard]]"> 21 | 24 | <$select tiddler="$:/config/projectify/projects-view"> 25 | 26 | \end 27 | 28 | |<> |<> | 29 | |<> |<> | 30 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/ActiveProjects.tid: -------------------------------------------------------------------------------- 1 | created: 20210116214213972 2 | modified: 20210118092251921 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/dashboard/ActiveProjects 5 | type: text/vnd.tiddlywiki 6 | 7 | <$list 8 | filter=<> 9 | emptyMessage={{$:/plugins/nico/projectify/ui/welcome/EmptyProjects}} 10 | > 11 | <$vars category={{$:/state/projectify/project-category-filter}}> 12 | <$reveal type="match" state="$:/config/projectify/projects-view" text="list"> 13 | {{$:/plugins/nico/projectify/ui/dashboard/ProjectList}} 14 | 15 | <$reveal type="nomatch" state="$:/config/projectify/projects-view" text="list"> 16 | {{$:/plugins/nico/projectify/ui/dashboard/ProjectCards}} 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/ArchivedProjects.tid: -------------------------------------------------------------------------------- 1 | created: 20210116212646239 2 | modified: 20210116213055945 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/dashboard/ArchivedProjects 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | <$list filter=<> variable="ignore"> 9 | <$reveal type="match" state="$:/state/projectify/show-archived" text=""> 10 | <$button class="tc-btn-invisible py-link-muted" set="$:/state/projectify/show-archived" setTo="show"> 11 | {{$:/plugins/nico/projectify/images/eye}} <> 12 | 13 | 14 | 15 | <$reveal type="match" state="$:/state/projectify/show-archived" text="show"> 16 | <$button class="tc-btn-invisible py-link-muted" set="$:/state/projectify/show-archived" setTo=""> 17 | {{$:/plugins/nico/projectify/images/eyeslash}} <> 18 | 19 | 20 |

<>

21 | 22 |
    23 | <$list filter=<>> 24 | {{||$:/plugins/nico/projectify/ui/dashboard/ProjectListItem}} 25 | 26 |
27 | 28 | 29 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/Dashboard.tid: -------------------------------------------------------------------------------- 1 | created: 20200424192751342 2 | modified: 20210117173922722 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/dashboard/Dashboard 5 | type: text/vnd.tiddlywiki 6 | 7 | \define lingo-base() $:/language/projectify/ 8 | 9 | <$macrocall 10 | $name="tabs" 11 | tabsList="[all[tiddlers+shadows]tag[$:/plugins/nico/projectify/tags/dashboard]]" 12 | default={{$:/config/projectify/DefaultDashboardTab}} 13 | state="$:/state/projects-and-schedule" 14 | class="py-tabs" 15 | /> 16 | 17 |
18 | <$link to="$:/plugins/nico/projectify/doc/Help"> 19 | {{$:/plugins/nico/projectify/images/info}} <> 20 | 21 |
22 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/Date.tid: -------------------------------------------------------------------------------- 1 | created: 20210107174519365 2 | modified: 20210107175324833 3 | title: $:/plugins/nico/projectify/ui/dashboard/Date 4 | type: text/vnd.tiddlywiki 5 | 6 | <$list filter=<>>Today -- 7 | <$view field="due" format="date" template="DDth MMM"/> 8 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/InboxAndProjects.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/plugins/nico/projectify/images/collection}} {{$:/language/projectify/Projects}} 2 | created: 20200425193559847 3 | modified: 20210205175036448 4 | tags: $:/plugins/nico/projectify/tags/dashboard 5 | title: $:/plugins/nico/projectify/ui/dashboard/InboxAndProjects 6 | type: text/vnd.tiddlywiki 7 | 8 | {{$:/plugins/nico/projectify/ui/inbox/Inbox}} 9 | {{$:/plugins/nico/projectify/ui/dashboard/Projects}} 10 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/NextActions.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/plugins/nico/projectify/images/stack}} {{$:/language/projectify/Next}} 2 | created: 20200425195221581 3 | list-after: $:/plugins/nico/projectify/ui/dashbaord/Schedule 4 | modified: 20210123140005174 5 | tags: $:/plugins/nico/projectify/tags/dashboard 6 | title: $:/plugins/nico/projectify/ui/NextActions 7 | type: text/vnd.tiddlywiki 8 | 9 | <$list 10 | filter=<> 11 | emptyMessage={{$:/plugins/nico/projectify/ui/welcome/EmptyNextActions}} 12 | > 13 |
14 | <$list 15 | filter=<> 16 | template="$:/plugins/nico/projectify/ui/project/NextAction" 17 | /> 18 |
19 | 20 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/ProjectCard.tid: -------------------------------------------------------------------------------- 1 | created: 20200424193106051 2 | modified: 20210121210551371 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/dashboard/ProjectCard 5 | type: text/vnd.tiddlywiki 6 | 7 | \define lingo-base() $:/language/projectify/ 8 | 9 | \define card-style() 10 | background-color: $(background)$; 11 | \end 12 | 13 | <$vars category={{!!category}}> 14 | <$vars background={{{ [get[color]] }}}> 15 |
>> 16 | <$link overrideClass="py-card" to={{!!title}}> 17 |
18 | {{||$:/plugins/nico/projectify/ui/buttons/ProjectCardSettings}} 19 |
20 |
21 |

<$text text=<>/>

22 |
23 | {{!!description}} 24 |
25 |
26 |
27 | {{||$:/plugins/nico/projectify/images/pie}} 28 | <$count filter=<>/> 29 | <> 30 |
31 | <$list filter=<> variable="ignore"> 32 |
33 | <$text text=<>/> 34 |
35 | 36 | 37 |
38 | 39 | 40 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/ProjectCards.tid: -------------------------------------------------------------------------------- 1 | created: 20200424193106051 2 | modified: 20210118092251912 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/dashboard/ProjectCards 5 | type: text/vnd.tiddlywiki 6 | 7 |
8 | <$list filter=<>> 9 | <$list filter="[all[current]field:category] [is[blank]] +[limit[1]]" variable="ignore"> 10 | <$droppable actions=<>> 11 | {{||$:/plugins/nico/projectify/ui/dashboard/ProjectCard}} 12 | 13 | 14 | 15 |
16 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/ProjectList.tid: -------------------------------------------------------------------------------- 1 | created: 20200424193106051 2 | modified: 20210118092219920 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/dashboard/ProjectList 5 | type: text/vnd.tiddlywiki 6 | 7 |
    8 | <$list filter=<>> 9 | <$list filter="[all[current]field:category] [is[blank]] +[limit[1]]" variable="ignore"> 10 | <$droppable actions=<>> 11 | {{||$:/plugins/nico/projectify/ui/dashboard/ProjectListItem}} 12 | 13 | 14 | 15 |
16 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/ProjectListItem.tid: -------------------------------------------------------------------------------- 1 | created: 20210116212900413 2 | modified: 20210118092219942 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/dashboard/ProjectListItem 5 | type: text/vnd.tiddlywiki 6 | 7 | \define lingo-base() $:/language/projectify/ 8 | 9 | <$vars category={{!!category}}> 10 |
  • 11 |
    12 |
    13 | {{||$:/plugins/nico/projectify/images/pie}} <$link to={{!!title}}><$view field="title"/> 14 |
    15 | <$list filter=<> variable="ignore"> 16 |
    17 | <$tiddler tiddler=<>> 18 | {{||$:/plugins/nico/projectify/ui/category/Category}} 19 | 20 |
    21 | 22 |
    23 |
    24 | <$count filter=<>/> <> 25 |
    26 |
  • 27 | 28 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/Projects.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/plugins/nico/projectify/images/collection}} Projects 2 | created: 20200424193106051 3 | modified: 20210122213319191 4 | tags: 5 | title: $:/plugins/nico/projectify/ui/dashboard/Projects 6 | type: text/vnd.tiddlywiki 7 | 8 | \define lingo-base() $:/language/projectify/ 9 | 10 |
    11 |
    12 |

    <>

    13 | {{$:/plugins/nico/projectify/ui/buttons/ProjectListSettings}} 14 |
    15 | 16 |
    17 | {{$:/plugins/nico/projectify/ui/buttons/CategoryFilter}} 18 |
    19 |
    20 | 21 | <$reveal 22 | type="match" 23 | state="$:/state/projectify/show-reorder-projects" 24 | class="tc-tiddler-info tc-popup-handle py-reorder-projects" 25 | text="yes" 26 | animate="yes" 27 | retain="yes" 28 | > 29 | {{$:/plugins/nico/projectify/ui/dashboard/ReorderProjects}} 30 | 31 | 32 | {{$:/plugins/nico/projectify/ui/dashboard/ActiveProjects}} 33 | {{$:/plugins/nico/projectify/ui/buttons/AddProject}} 34 | {{$:/plugins/nico/projectify/ui/dashboard/ArchivedProjects}} 35 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/ReorderProjects.tid: -------------------------------------------------------------------------------- 1 | created: 20201216161736491 2 | modified: 20210112180541479 3 | title: $:/plugins/nico/projectify/ui/dashboard/ReorderProjects 4 | type: text/vnd.tiddlywiki 5 | 6 | \define lingo-base() $:/language/projectify/ 7 | 8 |
    9 | <> 10 |
    11 | 12 | <$macrocall 13 | $name="list-tagged-draggable" 14 | tag="Project" 15 | subFilter=<> 16 | /> 17 | 18 | <$button class="py-btn"> 19 | <> 20 | <$action-setfield $tiddler="$:/state/projectify/show-reorder-projects" text="no"/> 21 | 22 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/Today.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/plugins/nico/projectify/images/sun}} {{$:/language/projectify/Today}} {{$:/plugins/nico/projectify/ui/dashbaord/TodayCount}} 2 | created: 20210107213438937 3 | list-after: $:/plugins/nico/projectify/ui/dashboard/InboxAndProjects 4 | modified: 20210112180541507 5 | tags: $:/plugins/nico/projectify/tags/dashboard 6 | title: $:/plugins/nico/projectify/ui/dashbaord/Today 7 | type: text/vnd.tiddlywiki 8 | 9 | \define lingo-base() $:/language/projectify/ 10 | 11 | <$vars showProjectLinks="yes"> 12 | <$list filter=<>> 13 |
    14 |
    <>
    15 |
    <>
    16 |
    17 | 18 | 19 |
    20 |
    <>
    21 |
    <>
    22 |
    23 | 24 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/TodayCount.tid: -------------------------------------------------------------------------------- 1 | created: 20210108114443405 2 | modified: 20210108114747271 3 | title: $:/plugins/nico/projectify/ui/dashbaord/TodayCount 4 | type: text/vnd.tiddlywiki 5 | 6 | <$list filter=<>> 7 | 8 | <$count filter=<>/> 9 | 10 | 11 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/dashboard/Upcoming.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/plugins/nico/projectify/images/calendar-checked}} {{$:/language/projectify/Upcoming}} 2 | created: 20200424193230404 3 | list-after: $:/plugins/nico/projectify/ui/dashbaord/Today 4 | modified: 20210112180541537 5 | tags: $:/plugins/nico/projectify/tags/dashboard 6 | title: $:/plugins/nico/projectify/ui/dashbaord/Upcoming 7 | type: text/vnd.tiddlywiki 8 | 9 | \define lingo-base() $:/language/projectify/ 10 | 11 | <$vars showProjectLinks="yes"> 12 | <$list 13 | filter=<> 14 | emptyMessage={{$:/plugins/nico/projectify/ui/welcome/EmptyUpcoming}} 15 | > 16 | <$list filter=<>> 17 |
    18 |
    <>
    19 |
    <>
    20 |
    21 | 22 | 23 | <$list filter=<>> 24 |
    25 |
    {{||$:/plugins/nico/projectify/ui/dashboard/Date}}
    26 |
    <$macrocall $name="py-schedule-day" day={{!!due}}/>
    27 |
    28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/forms/HelpSearch.tid: -------------------------------------------------------------------------------- 1 | created: 20201229010310903 2 | modified: 20210112180541419 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/forms/HelpSearch 5 | type: text/vnd.tiddlywiki 6 | 7 | <$vars searchTiddler="$:/temp/projectify/help-search"> 8 | <$edit-text 9 | tiddler=<> 10 | tag="input" 11 | type="search" 12 | focusPopup="$:/state/projectify/popup-help-search" 13 | class="tc-popup-handle py-input" 14 | placeholder={{$:/language/projectify/HelpSearch/Placeholder}} 15 | default="" 16 | /> 17 | 18 | <$vars searchText={{{ [get[text]] }}}> 19 | <$reveal tag="div" class="tc-block-dropdown-wrapper" state="$:/state/projectify/popup-help-search" type="nomatch" text="" default=""> 20 | <$list filter="[get[text]minlength{$:/config/Search/MinLength}limit[1]]" emptyMessage="" variable="listItem"> 21 |
    22 |
    23 | {{$:/language/Search/Matches/Title}} 24 | 25 | <$list filter="[all[tiddlers+shadows]tag[Projectify documentation]search:titlesort[title]]" template="$:/core/ui/ListItemTemplate"/> 26 | 27 | {{$:/language/Search/Matches/All}} 28 | 29 | <$list filter="[all[tiddlers+shadows]tag[Projectify documentation]searchsort[title]]" template="$:/core/ui/ListItemTemplate"/> 30 |
    31 |
    32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/forms/NewCategory.tid: -------------------------------------------------------------------------------- 1 | created: 20210114223425845 2 | modified: 20210118092219993 3 | title: $:/plugins/nico/projectify/ui/forms/NewCategory 4 | type: text/vnd.tiddlywiki 5 | 6 | \define lingo-base() $:/language/projectify/ 7 | 8 | \define add-project-actions() 9 | <$action-createtiddler 10 | $basetitle={{$:/state/projectify/new-category!!tag_name}} 11 | color={{$:/state/projectify/new-category!!color}} 12 | tags="$:/plugins/nico/projectify/tags/Category"/> 13 | <$action-setfield 14 | $tiddler="$:/state/projectify/new-category" 15 | tag_name="" 16 | color="" 17 | /> 18 | <$action-setfield $tiddler="$:/state/projectify/show-new-category-popup" text=""/> 19 | <$action-sendmessage $message="tm-auto-save-wiki"/> 20 | \end 21 | 22 |
    23 | <$keyboard key="enter"> 24 | <> 25 |
    26 |
    <>
    27 | <$edit-text 28 | class="py-input" 29 | focus="true" 30 | tiddler="$:/state/projectify/new-category" 31 | field="tag_name" 32 | /> 33 |
    34 |
    35 |
    {{$:/language/TagManager/Colour/Heading}}
    36 | <$edit-text 37 | class="py-input" 38 | tiddler="$:/state/projectify/new-category" 39 | field="color" 40 | /> 41 |
    42 | 43 |
    44 | <$button class="py-btn btn-primary"> 45 | <> 46 | <> 47 | 48 | <> 49 | <$button class="py-btn" set="$:/state/projectify/show-new-category-popup" setTo=""> 50 | <> 51 | 52 |
    53 |
    54 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/forms/TodoConvert.tid: -------------------------------------------------------------------------------- 1 | created: 20210111194810128 2 | modified: 20210112182200319 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/forms/TodoConvert 5 | type: text/vnd.tiddlywiki 6 | 7 | \define lingo-base() $:/language/projectify/ 8 | 9 | <$button class="tc-btn-invisible"> 10 | {{$:/plugins/nico/projectify/images/front}} <> 11 | <$action-listops $tags=<>/> 12 | <$action-sendmessage $message="tm-auto-save-wiki"/> 13 | 14 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/forms/TodoDueDate.tid: -------------------------------------------------------------------------------- 1 | created: 20210110175047050 2 | modified: 20210112182234031 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/forms/TodoDueDate 5 | type: text/vnd.tiddlywiki 6 | 7 | \define lingo-base() $:/language/projectify/ 8 | 9 | <$py-date-today>{{$:/plugins/nico/projectify/images/sun}} <> 10 | <$py-date-tomorrow>{{$:/plugins/nico/projectify/images/calendar-event}} <> 11 | <$py-date-next-week>{{$:/plugins/nico/projectify/images/calendar}} <> 12 | <$py-date-clear>{{$:/plugins/nico/projectify/images/slash-circle}} <> 13 |
    14 | <$py-date-calendar/> 15 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/forms/TodoPriority.tid: -------------------------------------------------------------------------------- 1 | created: 20210110175047050 2 | modified: 20210110175954318 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/forms/TodoPriority 5 | type: text/vnd.tiddlywiki 6 | 7 |
    8 | <$list filter="3 2 1" variable="priority"> 9 | <$button class={{{ [[tc-btn-invisible py-priority-]addsuffix] }}}> 10 | {{$:/plugins/nico/projectify/images/flag}} 11 | <$action-setfield priority=<>/> 12 | <$action-sendmessage $message="tm-auto-save-wiki"/> 13 | 14 | 15 | 16 | <$button class="tc-btn-invisible"> 17 | {{$:/plugins/nico/projectify/images/slash-circle}} 18 | <$action-deletefield $field="priority"/> 19 | <$action-sendmessage $message="tm-auto-save-wiki"/> 20 | 21 |
    22 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/inbox/Inbox.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/plugins/nico/projectify/images/inbox}} {{$:/language/projectify/Inbox}} 2 | created: 20200425193337699 3 | modified: 20210205205023525 4 | tags: 5 | title: $:/plugins/nico/projectify/ui/inbox/Inbox 6 | type: text/vnd.tiddlywiki 7 | 8 | \define lingo-base() $:/language/projectify/ 9 | 10 | \define inbox-count() 11 | <$vars currentTiddler="Inbox"> 12 | 13 | <$count filter=<>/> 14 | 15 | 16 | \end 17 | 18 |

    {{$:/language/projectify/Inbox}} <>

    19 | 20 | 23 | <$vars 24 | todo-tags="Inbox todo" 25 | placeholder={{$:/language/projectify/AddToInbox/Placeholder}} 26 | > 27 | {{$:/plugins/nico/projectify/ui/forms/AddTodo}} 28 | 29 | <$vars currentTiddler="Inbox"> 30 | <$macrocall 31 | class="py-inbox-input" 32 | $name="todo-list" 33 | emptyTemplate="$:/plugins/nico/projectify/ui/welcome/EmptyInbox" 34 | /> 35 | 36 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/project/ArchivedProjectBanner.tid: -------------------------------------------------------------------------------- 1 | created: 20201209151421299 2 | modified: 20210112182556624 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/project/ArchivedProjectBanner 5 | type: text/vnd.tiddlywiki 6 | 7 | <$list filter=<>> 8 |
    9 | {{$:/language/projectify/ProjectArchived}} {{||$:/plugins/nico/projectify/ui/buttons/RestoreProject}} 10 |
    11 | 12 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/project/FilteredTodos.tid: -------------------------------------------------------------------------------- 1 | created: 20210122215039550 2 | modified: 20210123140740864 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/project/FilteredTodos 5 | type: text/vnd.tiddlywiki 6 | 7 | <$list filter=<> variable="ignore"> 8 |
    9 | <$link to={{!!title}}><$view field="title"/> {{||$:/plugins/nico/projectify/images/pie}} 10 |
    11 |
    12 | <$list filter=<> template="$:/plugins/nico/projectify/ui/todo/TodoItem"> 13 |
    14 | 15 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/project/NextAction.tid: -------------------------------------------------------------------------------- 1 | created: 20200425201356996 2 | modified: 20210122220244003 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/project/NextAction 5 | type: text/vnd.tiddlywiki 6 | 7 | <$list filter=<> variable="ignore"> 8 |
    9 | <$link to={{!!title}}><$view field="title"/> {{||$:/plugins/nico/projectify/images/pie}} 10 |
    11 |
    12 | <$list filter=<> template="$:/plugins/nico/projectify/ui/todo/TodoItem"> 13 |
    14 | 15 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/project/Project.tid: -------------------------------------------------------------------------------- 1 | created: 20201207165347344 2 | list-after: $:/plugins/nico/projectify/ui/todo/TodoHeading 3 | modified: 20210521102831888 4 | tags: $:/tags/ViewTemplate 5 | title: $:/plugins/nico/projectify/ui/project/Project 6 | type: text/vnd.tiddlywiki 7 | 8 | \define lingo-base() $:/language/projectify/ 9 | 10 | <$list filter=<> variable="ignore"> 11 | <$list filter=<>> 12 |
    13 | {{||$:/plugins/nico/projectify/ui/buttons/SelectCategory}} 14 | <$list filter=<>> 15 | {{||$:/plugins/nico/projectify/ui/buttons/ArchiveProject}} 16 | 17 |
    18 | 19 | 20 | {{||$:/plugins/nico/projectify/ui/project/ArchivedProjectBanner}} 21 | 22 |

    <> {{||$:/plugins/nico/projectify/images/pie}}

    23 | 24 | <$macrocall 25 | $name="todo-list" 26 | emptyTemplate="$:/plugins/nico/projectify/ui/welcome/EmptyProject" 27 | /> 28 | 29 | {{||$:/plugins/nico/projectify/ui/buttons/ToggleCompletedTodos}} 30 | 31 | <$list filter=<>> 32 | <$vars 33 | stateTiddler=<> 34 | todo-tags="[{!!title}] todo" 35 | placeholder={{$:/language/projectify/AddTodoToProject/Placeholder}} 36 | > 37 | {{||$:/plugins/nico/projectify/ui/forms/AddTodo}} 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/sidebar/Projects.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/language/projectify/Projects}} 2 | created: 20200430123440360 3 | list-before: $:/plugins/nico/notebook/Sidebar/Open 4 | modified: 20210114183416071 5 | tags: $:/themes/nico/notebook/tags/SidebarSection $:/tags/SideBar 6 | title: $:/plugins/nico/projectify/ui/sidebar/Projects 7 | type: text/vnd.tiddlywiki 8 | 9 |
    10 | {{$:/plugins/nico/projectify/ui/dashboard/ProjectList}} 11 |
    12 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/sidebar/Upcoming.tid: -------------------------------------------------------------------------------- 1 | caption: {{$:/language/projectify/Upcoming}} 2 | created: 20201212215945467 3 | modified: 20210114183426471 4 | list-before: $:/plugins/nico/projectify/NotebookSidebar/Projects 5 | tags: $:/themes/nico/notebook/tags/SidebarSection $:/tags/SideBar 6 | title: $:/plugins/nico/projectify/ui/sidebar/Upcoming 7 | type: text/vnd.tiddlywiki 8 | 9 |
    10 | {{$:/plugins/nico/projectify/ui/dashbaord/Upcoming}} 11 |
    12 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/todo/TodoActions.tid: -------------------------------------------------------------------------------- 1 | created: 20200422200123438 2 | modified: 20210123144643887 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/todo/TodoActions 5 | type: text/vnd.tiddlywiki 6 | 7 | 8 | <$list filter="[!is[blank]]" variable="ignore"> 9 | <$list filter="[all[current]tags[]filter]"> 10 | <$link to={{!!title}} overrideClass="py-project-link"/> 11 | 12 | 13 | 14 | <$list filter=<>> 15 | {{||$:/plugins/nico/projectify/ui/buttons/TodoDueDate}} 16 | 17 | {{||$:/plugins/nico/projectify/ui/buttons/TodoActions}} 18 | 19 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/todo/TodoCaption.tid: -------------------------------------------------------------------------------- 1 | created: 20210114213422694 2 | modified: 20210201175555120 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/todo/TodoCaption 5 | type: text/vnd.tiddlywiki 6 | 7 | <$view field="title"/> 8 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/todo/TodoHeading.tid: -------------------------------------------------------------------------------- 1 | created: 20200420105800700 2 | list-after: $:/core/ui/ViewTemplate/tags 3 | modified: 20210112183027482 4 | tags: $:/tags/ViewTemplate 5 | title: $:/plugins/nico/projectify/ui/todo/TodoHeading 6 | type: text/vnd.tiddlywiki 7 | 8 | \define lingo-base() $:/language/projectify/ 9 | 10 | <$list filter=<>> 11 |
    12 | {{||$:/plugins/nico/projectify/ui/buttons/TodoDueDate}} 13 | {{||$:/plugins/nico/projectify/ui/buttons/TodoPriority}} 14 | 15 | <$vars popupTiddler=<>> 16 | <$button 17 | popup=<> 18 | class="py-btn" 19 | tooltip={{$:/language/projectify/MoreActions/Hint}} 20 | aria-label={{$:/language/projectify/MoreActions/Hint}} 21 | > 22 | <> {{$:/core/images/down-arrow}} 23 | 24 | 25 | <$reveal state=<> type="popup" class="tc-drop-down py-drop-down" position="below"> 26 | <$list filter=<>> 27 | <$button class="tc-btn-invisible"> 28 | {{$:/plugins/nico/projectify/images/checklist}} <> 29 | <$action-listops $tags="[[SubProject]]"/> 30 | <$action-sendmessage $message="tm-auto-save-wiki"/> 31 | 32 | 33 | 34 | {{||$:/plugins/nico/projectify/ui/forms/TodoConvert}} 35 | 36 | 37 |
    38 | 39 | 40 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/todo/TodoItem.tid: -------------------------------------------------------------------------------- 1 | created: 20200422200123438 2 | modified: 20210128180310384 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/todo/TodoItem 5 | type: text/vnd.tiddlywiki 6 | 7 | \define drag-handle() 8 | <$draggable 9 | tag="span" 10 | class="py-drag-handle" 11 | tiddler={{!!title}}> 12 | {{$:/plugins/nico/projectify/images/drag-handle}} 13 | 14 | \end 15 | 16 | \define save-actions() 17 | <$action-sendmessage $message="tm-auto-save-wiki"/> 18 | \end 19 | 20 |
    21 | <$list filter="[!is[blank]]" variable="ignore"> 22 | <> 23 | 24 | 25 | <$checkbox tag="done" actions=<>> 26 | {{||$:/plugins/nico/projectify/ui/buttons/Checkbox}} 27 | <$reveal type="nomatch" state="!!priority" text=""> 28 | {{||$:/plugins/nico/projectify/ui/buttons/TodoPriority}} 29 | 30 | <$link to={{!!title}}> 31 | {{||$:/plugins/nico/projectify/ui/todo/TodoCaption}} 32 | <$list filter=<> variable="ignore"> 33 | {{||$:/plugins/nico/projectify/images/pie}} 34 | 35 | <$list filter="[all[current]!text[]]"> 36 | 37 | {{$:/plugins/nico/projectify/images/file}} 38 | 39 | 40 | 41 | 42 | 43 | {{||$:/plugins/nico/projectify/ui/todo/TodoActions}} 44 |
    45 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/welcome/EmptyInbox.tid: -------------------------------------------------------------------------------- 1 | created: 20201208175952867 2 | modified: 20210121213009835 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/welcome/EmptyInbox 5 | type: text/vnd.tiddlywiki 6 | 7 | \define emptyWelcomeMessage() 8 |
    9 |
    {{$:/plugins/nico/projectify/images/postbox}}
    10 |

    {{$:/language/projectify/WelcomeInboxTitle}}

    11 | {{$:/language/projectify/WelcomeInboxDescription}} 12 |
    13 | \end 14 | 15 | <$reveal type="match" state="$:/config/projectify/ShowWelcomeMessages" text="yes"> 16 | <$droppable actions=<>> 17 | <$list 18 | filter=<> 19 | emptyMessage=<> 20 | variable="ignore"> 21 | 22 |
    23 |
    {{$:/plugins/nico/projectify/images/tada}}
    24 |

    {{$:/language/projectify/EmptyInboxTitle}}

    25 | {{$:/language/projectify/EmptyInboxDescription}} 26 |
    27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/welcome/EmptyNextActions.tid: -------------------------------------------------------------------------------- 1 | created: 20210109205838748 2 | modified: 20210121213035107 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/welcome/EmptyNextActions 5 | type: text/vnd.tiddlywiki 6 | 7 | <$reveal type="match" state="$:/config/projectify/ShowWelcomeMessages" text="yes"> 8 |
    9 |
    {{$:/plugins/nico/projectify/images/palmtree}}
    10 |

    {{$:/language/projectify/EmptyInboxDescription}}

    11 | {{$:/language/projectify/EmptyNextActionsDescription}} 12 |
    13 | 14 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/welcome/EmptyProject.tid: -------------------------------------------------------------------------------- 1 | created: 20201208175952867 2 | modified: 20210121213054187 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/welcome/EmptyProject 5 | type: text/vnd.tiddlywiki 6 | 7 | \define lingo-base() $:/language/projectify/ 8 | 9 | \define emptyWelcomeMessage() 10 |
    11 |
    {{$:/plugins/nico/projectify/images/rocket}}
    12 |

    {{$:/language/projectify/WelcomeProjectTitle}}

    13 | {{$:/language/projectify/WelcomeProjectDescription}} 14 |
    15 | 16 | <$macrocall $name="py-tip" text=<>/> 17 | \end 18 | 19 | <$reveal type="match" state="$:/config/projectify/ShowWelcomeMessages" text="yes"> 20 | <$droppable actions=<>> 21 | <$list 22 | filter=<> 23 | emptyMessage=<> 24 | variable="ignore"> 25 | 26 |
    27 |
    {{$:/plugins/nico/projectify/images/victory}}
    28 |

    {{$:/language/projectify/EmptyProjectTitle}}

    29 | {{$:/language/projectify/EmptyProjectDescription}} 30 |
    31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/welcome/EmptyProjects.tid: -------------------------------------------------------------------------------- 1 | created: 20201220164609463 2 | modified: 20210121213043396 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/welcome/EmptyProjects 5 | type: text/vnd.tiddlywiki 6 | 7 | <$reveal type="match" state="$:/config/projectify/ShowWelcomeMessages" text="yes"> 8 |
    9 |
    {{$:/plugins/nico/projectify/images/compass}}
    10 |

    {{$:/language/projectify/EmptyProjectsTitle}}

    11 | {{$:/language/projectify/EmptyProjectsDescription}} 12 |
    13 | 14 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/welcome/EmptyUpcoming.tid: -------------------------------------------------------------------------------- 1 | created: 20210109205838748 2 | modified: 20210121213104466 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/welcome/EmptyUpcoming 5 | type: text/vnd.tiddlywiki 6 | 7 | <$reveal type="match" state="$:/config/projectify/ShowWelcomeMessages" text="yes"> 8 |
    9 |
    {{$:/plugins/nico/projectify/images/palmtree}}
    10 |

    {{$:/language/projectify/EmptyUpcomingTitle}}

    11 | {{$:/language/projectify/EmptyUpcomingDescription}} 12 |
    13 | 14 | -------------------------------------------------------------------------------- /plugins/nico/projectify/tiddlers/ui/welcome/HelpWelcome.tid: -------------------------------------------------------------------------------- 1 | created: 20201228214016943 2 | modified: 20210121213113867 3 | tags: 4 | title: $:/plugins/nico/projectify/ui/welcome/HelpWelcome 5 | type: text/vnd.tiddlywiki 6 | 7 | <$reveal type="match" state="$:/config/projectify/ShowWelcomeMessages" text="yes"> 8 |
    9 |
    {{$:/plugins/nico/projectify/images/waving-hand}}
    10 |

    Help & documentation

    11 |

    Getting started, guides, customization, etc.

    12 |
    13 | 14 | -------------------------------------------------------------------------------- /tiddlers/$__DefaultTiddlers.tid: -------------------------------------------------------------------------------- 1 | created: 20201130170713469 2 | modified: 20201130170715666 3 | title: $:/DefaultTiddlers 4 | type: text/vnd.tiddlywiki 5 | 6 | GettingStarted 7 | Demo -------------------------------------------------------------------------------- /tiddlers/$__StoryList.tid: -------------------------------------------------------------------------------- 1 | list: GettingStarted Demo 2 | title: $:/StoryList -------------------------------------------------------------------------------- /tiddlers/$__config_Plugins_Disabled_$__plugins_nico_projectify-de-DE.tid: -------------------------------------------------------------------------------- 1 | created: 20210127201916587 2 | modified: 20210127201916614 3 | title: $:/config/Plugins/Disabled/$:/plugins/nico/projectify-de-DE 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /tiddlers/$__config_Plugins_Disabled_$__plugins_nico_projectify-fr-FR.tid: -------------------------------------------------------------------------------- 1 | created: 20210119131639187 2 | modified: 20210119131639196 3 | title: $:/config/Plugins/Disabled/$:/plugins/nico/projectify-fr-FR 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /tiddlers/$__config_Plugins_Disabled_$__plugins_nico_projectify-nl-NL.tid: -------------------------------------------------------------------------------- 1 | created: 20210119131643465 2 | modified: 20210119131643491 3 | title: $:/config/Plugins/Disabled/$:/plugins/nico/projectify-nl-NL 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /tiddlers/$__config_Plugins_Disabled_$__plugins_nico_projectify-zh-Hans.tid: -------------------------------------------------------------------------------- 1 | created: 20210125193537275 2 | modified: 20210125193537296 3 | title: $:/config/Plugins/Disabled/$:/plugins/nico/projectify-zh-Hans 4 | type: text/vnd.tiddlywiki 5 | 6 | yes -------------------------------------------------------------------------------- /tiddlers/$__plugins_flibbles_relink.json.meta: -------------------------------------------------------------------------------- 1 | author: Flibbles 2 | core-version: >=5.1.14 3 | created: 20190921200305594 4 | dependents: 5 | description: Relink - flexibility when relinking renamed tiddlers 6 | list: readme configuration 7 | modified: 20201130170503431 8 | plugin-type: plugin 9 | source: https://github.com/flibbles/tw5-relink 10 | tags: tb 11 | title: $:/plugins/flibbles/relink 12 | type: application/json 13 | version: 1.5.3 -------------------------------------------------------------------------------- /tiddlers/Demo.tid: -------------------------------------------------------------------------------- 1 | created: 20201130170640112 2 | modified: 20201212170920863 3 | tags: 4 | title: Demo 5 | type: text/vnd.tiddlywiki 6 | 7 | {{$:/plugins/nico/projectify/ui/dashboard/Dashboard}} 8 | -------------------------------------------------------------------------------- /tiddlers/GettingStarted.tid: -------------------------------------------------------------------------------- 1 | caption: 2 | created: 20201130170606065 3 | modified: 20201212170605436 4 | tags: $:/tags/GettingStarted 5 | title: GettingStarted 6 | type: text/vnd.tiddlywiki 7 | 8 | ~Projectify is a simple [[TiddlyWiki|https://tiddlywiki.com]] plugin for managing projects & todo lists, inspired by other tools such as [[Todoist|https://todoist.com]] and [[Basecamp|https://basecamp.com]]. 9 | 10 | I started this project as an experiment to see how good ~TiddlyWiki could be as a Web Application Platform. It turns out to be an extremely good foundation for building SPAs. 11 | -------------------------------------------------------------------------------- /tiddlywiki.info: -------------------------------------------------------------------------------- 1 | { 2 | "description": "Basic client-server edition", 3 | "plugins": [ 4 | "tiddlywiki/tiddlyweb", 5 | "tiddlywiki/filesystem", 6 | "nico/projectify" 7 | ], 8 | "themes": [ 9 | "tiddlywiki/vanilla", 10 | "tiddlywiki/snowwhite" 11 | ], 12 | "build": { 13 | "index": [ 14 | "--rendertiddler", 15 | "$:/plugins/tiddlywiki/tiddlyweb/save/offline", 16 | "index.html", 17 | "text/plain" 18 | ], 19 | "static": [ 20 | "--rendertiddler", 21 | "$:/core/templates/static.template.html", 22 | "static.html", 23 | "text/plain", 24 | "--rendertiddler", 25 | "$:/core/templates/alltiddlers.template.html", 26 | "alltiddlers.html", 27 | "text/plain", 28 | "--rendertiddlers", 29 | "[!is[system]]", 30 | "$:/core/templates/static.tiddler.html", 31 | "static", 32 | "text/plain", 33 | "--rendertiddler", 34 | "$:/core/templates/static.template.css", 35 | "static/static.css", 36 | "text/plain" 37 | ] 38 | } 39 | } 40 | --------------------------------------------------------------------------------