From 8812f0d5fcec0930345c45fe1f9dddb2035ac904 Mon Sep 17 00:00:00 2001 From: DL Date: Mon, 8 Jul 2024 18:40:42 +0000 Subject: [PATCH 01/48] #84 --- Wiki/weight-tracker.md | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/Wiki/weight-tracker.md b/Wiki/weight-tracker.md index 7500867..f14a791 100644 --- a/Wiki/weight-tracker.md +++ b/Wiki/weight-tracker.md @@ -1,30 +1,25 @@ -# Weight-tracker -Weight Tracker is a [Script API](script-api.md) showcase present in the [demo document](document.md). +# Weight-tracker -[Day notes](day-notes.md) shows (among others) how we have "weight" [promoted attribute](promoted-attributes.md) in the day note [template](template.md). This then aggregates the data and shows a nice chart of weight change in time. -Demo ----- +The `Weight Tracker` is a [Script API](script-api.md) showcase present in the [demo document](document.md). -![](images/weight-tracker.png) +By adding `weight` as a [promoted attribute](promoted-attributes.md) to the [Day notes](day-notes.md) through its [template](template.md), you can aggregate the data and show a chart of weight change over time. -How to remove Weight Tracker button from the top bar ----------------------------------------------------- +![](images/weight-tracker.png) -In the link map of Weight Tracker, there is a note "Button". Open it and delete or comment out its contents. Weight Tracker button will disappear after you close and open the app. +## Implementation -Implementation --------------- +Note `Weight Tracker` in the screenshot above is of type `Render Note`. That type of note doesn't have any useful content itself, the only purpose of it is to provide a place where a [script](scripts.md) can render its output. -Note "Weight Tracker" in the screenshot above is of type "Render HTML note". Such note doesn't have any useful content itself, the only purpose of it is to provide a place where some [script](scripts.md) can render some output. This script is defined in [relation](attributes.md) `renderNote` - coincidentally it's the Weight Tracker's child `Implementation`. +Scripts for `Render Notes` are defined in a [relation](attributes.md) called `~renderNote`. In this example, it's the `Weight Tracker`'s child `Implementation`. The Implementation is a [code note](code-notes.md) that contains some HTML and JavaScript which loads all the notes with `weight` attribute and displays them in a chart. -This Implementation [code note](code-notes.md) then contains some HTML and JavaScript which loads all the notes with "weight" attribute and displays them in a chart. To actually render chart we're using third party library [chart.js](https://www.chartjs.org/) which is imported as an attachment (it's not built-in into Trilium). +To actually render the chart, we're using a third party library called [chart.js](https://www.chartjs.org/) which is imported as an attachment since it's not built into Trilium. -### JS code +### Code -To get an idea of the script, here's the "JS code" note content: +Here's the content of the script Note of type `JS Frontend`: -```text-plain +```js async function getChartData() { const days = await api.runOnBackend(async () => { const notes = api.getNotesWithLabel('weight'); @@ -71,3 +66,7 @@ new chartjs.Chart(ctx, { data: await getChartData() }); ``` + +## How to remove Weight Tracker button from the top bar + +In the link map of Weight Tracker, there is a note "Button". Open it and delete or comment out its contents. The Weight Tracker button will disappear after you restart Trilium. From 2ae8dfb563032eacd36d2def66474a2c90dc183c Mon Sep 17 00:00:00 2001 From: DL Date: Mon, 8 Jul 2024 19:09:50 +0000 Subject: [PATCH 02/48] #84 - fix more grammar issues --- Wiki/weight-tracker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Wiki/weight-tracker.md b/Wiki/weight-tracker.md index f14a791..77fbf6a 100644 --- a/Wiki/weight-tracker.md +++ b/Wiki/weight-tracker.md @@ -9,9 +9,9 @@ By adding `weight` as a [promoted attribute](promoted-attributes.md) to the [Day ## Implementation -Note `Weight Tracker` in the screenshot above is of type `Render Note`. That type of note doesn't have any useful content itself, the only purpose of it is to provide a place where a [script](scripts.md) can render its output. +The `Weight Tracker` Note in the screenshot above is of type `Render Note`. That type of note doesn't have any useful content itself, the only purpose of it is to provide a place where a [script](scripts.md) can render its output. -Scripts for `Render Notes` are defined in a [relation](attributes.md) called `~renderNote`. In this example, it's the `Weight Tracker`'s child `Implementation`. The Implementation is a [code note](code-notes.md) that contains some HTML and JavaScript which loads all the notes with `weight` attribute and displays them in a chart. +Scripts for `Render Notes` are defined in a [relation](attributes.md) called `~renderNote`. In this example, it's the `Weight Tracker`'s child `Implementation`. The Implementation consists of two [code notes](code-notes.md) that contain some HTML and JavaScript which loads all the notes with a `weight` attribute and displays their values in a chart. To actually render the chart, we're using a third party library called [chart.js](https://www.chartjs.org/) which is imported as an attachment since it's not built into Trilium. From f869280e368c2eefb3fbc409f2c19e3bc75e1797 Mon Sep 17 00:00:00 2001 From: DL Date: Mon, 8 Jul 2024 19:10:46 +0000 Subject: [PATCH 03/48] #84 - fix more grammar issues --- Wiki/weight-tracker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Wiki/weight-tracker.md b/Wiki/weight-tracker.md index 77fbf6a..2d2bbed 100644 --- a/Wiki/weight-tracker.md +++ b/Wiki/weight-tracker.md @@ -67,6 +67,6 @@ new chartjs.Chart(ctx, { }); ``` -## How to remove Weight Tracker button from the top bar +## How to remove the Weight Tracker button from the top bar -In the link map of Weight Tracker, there is a note "Button". Open it and delete or comment out its contents. The Weight Tracker button will disappear after you restart Trilium. +In the link map of the `Weight Tracker`, there is a note called `Button`. Open it and delete or comment out its contents. The `Weight Tracker` button will disappear after you restart Trilium. From 6e4cbff369f7f7e38312d48a71671bb1c4bea542 Mon Sep 17 00:00:00 2001 From: DL Date: Mon, 8 Jul 2024 19:14:03 +0000 Subject: [PATCH 04/48] Some more :D --- Wiki/weight-tracker.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Wiki/weight-tracker.md b/Wiki/weight-tracker.md index 2d2bbed..6edcaf4 100644 --- a/Wiki/weight-tracker.md +++ b/Wiki/weight-tracker.md @@ -3,17 +3,17 @@ The `Weight Tracker` is a [Script API](script-api.md) showcase present in the [demo document](document.md). -By adding `weight` as a [promoted attribute](promoted-attributes.md) to the [Day notes](day-notes.md) through its [template](template.md), you can aggregate the data and show a chart of weight change over time. +By adding `weight` as a [promoted attribute](promoted-attributes.md) to the [Day notes](day-notes.md) through its [template](template.md), you can aggregate the data and plot weight change over time. ![](images/weight-tracker.png) ## Implementation -The `Weight Tracker` Note in the screenshot above is of type `Render Note`. That type of note doesn't have any useful content itself, the only purpose of it is to provide a place where a [script](scripts.md) can render its output. +The `Weight Tracker` Note in the screenshot above is of type `Render Note`. That type of note doesn't have any useful content itself, rahter it provides a place where a [script](scripts.md) can render its output. -Scripts for `Render Notes` are defined in a [relation](attributes.md) called `~renderNote`. In this example, it's the `Weight Tracker`'s child `Implementation`. The Implementation consists of two [code notes](code-notes.md) that contain some HTML and JavaScript which loads all the notes with a `weight` attribute and displays their values in a chart. +Scripts for `Render Notes` are defined in a [relation](attributes.md) called `~renderNote`. In this example, it's the `Weight Tracker`'s child `Implementation`. The Implementation consists of two [code notes](code-notes.md) that contain some HTML and JavaScript respectively, which load all the notes with a `weight` attribute and displays their values in a chart. -To actually render the chart, we're using a third party library called [chart.js](https://www.chartjs.org/) which is imported as an attachment since it's not built into Trilium. +To actually render the chart, we're using a third party library called [chart.js](https://www.chartjs.org/) which is imported as an attachment, since it's not built into Trilium. ### Code From e51a56c6ede3ad465395e1bbc1547392904faaaf Mon Sep 17 00:00:00 2001 From: DL Date: Mon, 8 Jul 2024 19:18:34 +0000 Subject: [PATCH 05/48] Update #14 --- Wiki/advanced-showcases.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/Wiki/advanced-showcases.md b/Wiki/advanced-showcases.md index 253a236..66d502e 100644 --- a/Wiki/advanced-showcases.md +++ b/Wiki/advanced-showcases.md @@ -1,9 +1,10 @@ -# Advanced showcases -Trilium provides some advanced functionality in the form of [Scripts](scripts.md) and [promoted attributes](promoted-attributes.md). To explain and visualize these features we've prepared few showcases which are also available in the [demo document](document.md): +# Advanced Showcases -* [Relation map](relation-map.md) -* [Day notes](day-notes.md) -* [Weight Tracker](weight-tracker.md) -* [Task Manager](task-manager.md) +Trilium offers advanced functionality through [Scripts](scripts.md) and [Promoted Attributes](promoted-attributes.md). To illustrate these features, we've prepared several showcases available in the [demo document](document.md): -An important thing to keep in mind is that above showcases and demoed functionality are not built-in into Trilium - these are just examples of Trilium's extensibility. +* [Relation Map](relation-map.md) +* [Day Notes](day-notes.md) +* [Weight Tracker](weight-tracker.md) +* [Task Manager](task-manager.md) + +It's important to note that these examples are not natively supported by Trilium out of the box; instead, they demonstrate what you can build within Trilium. From 277c02362dd71811fc6b9540237c8872c82134ec Mon Sep 17 00:00:00 2001 From: DL Date: Tue, 9 Jul 2024 08:36:54 +0000 Subject: [PATCH 06/48] Make changes @root-hal9000 suggested --- Wiki/weight-tracker.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Wiki/weight-tracker.md b/Wiki/weight-tracker.md index 6edcaf4..6d6cc23 100644 --- a/Wiki/weight-tracker.md +++ b/Wiki/weight-tracker.md @@ -3,21 +3,21 @@ The `Weight Tracker` is a [Script API](script-api.md) showcase present in the [demo document](document.md). -By adding `weight` as a [promoted attribute](promoted-attributes.md) to the [Day notes](day-notes.md) through its [template](template.md), you can aggregate the data and plot weight change over time. +By adding `weight` as a [promoted attribute](promoted-attributes.md) in the [template](template.md) from which [day notes](day-notes.md) are created, you can aggregate the data and plot weight change over time. ![](images/weight-tracker.png) ## Implementation -The `Weight Tracker` Note in the screenshot above is of type `Render Note`. That type of note doesn't have any useful content itself, rahter it provides a place where a [script](scripts.md) can render its output. +The `Weight Tracker` note in the screenshot above is of the type `Render Note`. That type of note doesn't have any useful content itself. Instead it is a placeholder where a [script](scripts.md) can render its output. -Scripts for `Render Notes` are defined in a [relation](attributes.md) called `~renderNote`. In this example, it's the `Weight Tracker`'s child `Implementation`. The Implementation consists of two [code notes](code-notes.md) that contain some HTML and JavaScript respectively, which load all the notes with a `weight` attribute and displays their values in a chart. +Scripts for `Render Notes` are defined in a [relation](attributes.md) called `~renderNote`. In this example, it's the `Weight Tracker`'s child `Implementation`. The Implementation consists of two [code notes](code-notes.md) that contain some HTML and JavaScript respectively, which load all the notes with a `weight` attribute and display their values in a chart. To actually render the chart, we're using a third party library called [chart.js](https://www.chartjs.org/) which is imported as an attachment, since it's not built into Trilium. ### Code -Here's the content of the script Note of type `JS Frontend`: +Here's the content of the script which is placed in a [code note](code-notes.md) of type `JS Frontend`: ```js async function getChartData() { From 73834778efd4161edcb3e822d676bf4967b876ba Mon Sep 17 00:00:00 2001 From: root-hal9000 <2352828+root-hal9000@users.noreply.github.com> Date: Tue, 16 Jul 2024 14:39:29 -0500 Subject: [PATCH 07/48] Updated Document article Among other edits, renamed the "document" concept to be called what it actually is, the database - which could help avoid confusion with the concept of "note" --- Wiki/document.md | 56 ++++++++++++++++++++---------------------------- 1 file changed, 23 insertions(+), 33 deletions(-) diff --git a/Wiki/document.md b/Wiki/document.md index 7c03f94..76c30c5 100644 --- a/Wiki/document.md +++ b/Wiki/document.md @@ -1,46 +1,36 @@ -# Document -Document is [SQLite](https://www.sqlite.org) database which contains all notes, tree structure, metadata and most of the configuration. +# Database +Your Trilium data is stored in a [SQLite](https://www.sqlite.org) database which contains all notes, tree structure, metadata, and most of the configuration. The database file is named `document.db` and is stored in the application's default [data directory](data-directory.md). -Location --------- +## Demo Notes -Document is stored in the [data directory](data-directory.md). +When you run Trilium for the first time, it will generate a new database containing demo notes. These notes showcase its many features, such as: -Demo document -------------- +* [Relation Map](relation-map.md) +* [Day Notes](day-notes.md) +* [Weight Tracker](weight-tracker.md) +* [Task Manager](task-manager.md) +* [Custom CSS Themes](themes.md) -When you run Trilium for the first time, it will generate a demo document for you as a starting point. It's also pretty useful for demonstration of some of Trilium's features, e.g.: +### Restoring Demo Notes -* [Relation map](relation-map.md) -* [Day notes](day-notes.md) -* [Weight tracker](weight-tracker.md) -* [Task manager](task-manager.md) -* [Custom CSS theme](themes.md) +There are some cases in which you may want to restore the original demo notes. For example, if you experimented with some of the more advanced features and want to see the original reference, or if you simply want to explore the latest version of the demo notes, which might showcase new features. -### Restoring demo document +You can easily restore the demo notes by using Trilium's built-in import feature by importing them: +- Download [this .zip archive](https://github.com/TriliumNext/Notes/raw/stable/db/demo.zip) with the latest version of the demo notes +- Right click on any note in your tree under which you would like the demo notes to be imported +- Click "Import into note" +- Select the .zip archive to import it -In some cases you might want to take a look at the demo document after you deleted it. Or you might want to see if there was something added (sometimes we add a new feature demonstration into demo document). In such case you can just [download .zip archive](https://github.com/TriliumNext/Notes/raw/stable/db/demo.zip) %%{WARNING}%% of the latest document and import it somewhere into the tree (right-click on a note where you want to import the demo document and choose "Import"). +## Manually Modifying the Database -Manually modifying the document -------------------------------- +Trilium provides a lot of flexibility, and with it, opportunities for advanced users to tweak it. If you need to explore or modify the database directly, you can use a tool such as [SQLite Browser](https://sqlitebrowser.org/) to work directly on the database file. -Trilium provides a lot of flexibility, but with that you can also potentially shoot yourself in the foot (e.g. with startup script which blanks the app view). +If you are doing any advanced development or troubleshooting where you manually modify the database, you might want to consider creating backups of your `document.db` file. -In such cases you can manually fix notes on the database layer - you can use e.g. [https://sqlitebrowser.org/](https://sqlitebrowser.org/) to open `document.db` file, find problematic notes and manually fix them. Don't forget to commit / write changes after you're done. +## How to Reset the Database -How to reset the document -------------------------- +If you are experimenting with Trilium and want to return it to its original state, you can do that by deleting the current database. When you restart the application, it will generate a new database containing the original demo notes. -If you previously just experimented with Trilium and want to get it to the initial state, you can do that by deleting the `document.db*` files, e.g. like this: +To delete the database, simply go to the [data directory](data-directory.md) and delete the `document.db` file (and any other files starting with `document.db`). -```text-plain -rm document.db* -``` - -If you don't need to preserve e.g. the `config.ini`, then you can also delete the whole [data directory](data-directory.md) like this: - -```text-plain -rm -r ./trilium-data -``` - -After starting next time, Trilium will create a new initial document. +If you do not need to preserve any configurations that might be stored in the `config.ini` file, you can just delete all of the [data directory's](data-directory.md) contents to fully restore the application to its original state. \ No newline at end of file From b28b4ada1d48d32b44544e25a058a2e42ec5e948 Mon Sep 17 00:00:00 2001 From: root-hal9000 <2352828+root-hal9000@users.noreply.github.com> Date: Tue, 16 Jul 2024 15:11:22 -0500 Subject: [PATCH 08/48] Changed all references to document to database - Changed references to document to say database - Changed references to "demo document" to "demo notes" - renamed document.md to database.md and replaced in links - Changed location of database in TOC to go under advanced usage Issue #32 --- README.md | 4 ++-- Wiki/advanced-showcases.md | 4 ++-- Wiki/data-directory.md | 6 +++--- Wiki/{document.md => database.md} | 0 Wiki/docker-server-installation.md | 4 ++-- Wiki/faq.md | 6 +++--- Wiki/protected-notes.md | 6 +++--- Wiki/relation-map.md | 4 ++-- Wiki/scripts.md | 4 ++-- Wiki/server-installation.md | 4 ++-- Wiki/task-manager.md | 4 ++-- Wiki/template.md | 4 ++-- Wiki/troubleshooting.md | 4 ++-- Wiki/upgrading-trilium.md | 4 ++-- Wiki/weight-tracker.md | 4 ++-- 15 files changed, 31 insertions(+), 31 deletions(-) rename Wiki/{document.md => database.md} (100%) diff --git a/README.md b/README.md index 818f111..13061ce 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,7 @@ To import this documentation into your own instance of Trilium, [follow these in - [Quick Start](Wiki/quick-start.md) - [Screenshot Tour](Wiki/screenshot-tour.md) -- Basic Concepts - - [Documents](Wiki/document.md) +- Basic Concepts - [Note](Wiki/note.md) - [Text Notes](Wiki/text-notes.md) - [Links](Wiki/links.md) @@ -70,6 +69,7 @@ To import this documentation into your own instance of Trilium, [follow these in - [Task Manager](Wiki/task-manager.md) - [ETAPI (Rest API)](Wiki/etapi.md) - [Default Note Title](Wiki/default-note-title.md) + - [Database](Wiki/database.md) - Developer Guides - [Frontend Basics](Wiki/frontend-basics.md) - [Widget Basics](Wiki/widget-basics.md) diff --git a/Wiki/advanced-showcases.md b/Wiki/advanced-showcases.md index 253a236..9817ce6 100644 --- a/Wiki/advanced-showcases.md +++ b/Wiki/advanced-showcases.md @@ -1,5 +1,5 @@ -# Advanced showcases -Trilium provides some advanced functionality in the form of [Scripts](scripts.md) and [promoted attributes](promoted-attributes.md). To explain and visualize these features we've prepared few showcases which are also available in the [demo document](document.md): +# Advanced showcases +Trilium provides some advanced functionality in the form of [Scripts](scripts.md) and [promoted attributes](promoted-attributes.md). To explain and visualize these features we've prepared few showcases which are also available in the [demo notes](database.md): * [Relation map](relation-map.md) * [Day notes](day-notes.md) diff --git a/Wiki/data-directory.md b/Wiki/data-directory.md index 7d396aa..c7343c4 100644 --- a/Wiki/data-directory.md +++ b/Wiki/data-directory.md @@ -1,7 +1,7 @@ -# Data-directory +# Data-directory Data directory contains: -* `document.db` - [document](document.md) +* `document.db` - [database](database.md) * `config.ini` - instance level settings like port on which the Trilium application runs * `backup` - contains automatically [backup](backup.md) of documents * `log` - contains application log files @@ -66,7 +66,7 @@ Here is a pre-defined template, where you just need to add your path to: ### Create a script to run with specific data directory -An alternative to globally setting environment variable is to run only the Trilium Notes with this environment variable. This then allows for different setup styles like two [document](document.md) instances or "portable" installation. +An alternative to globally setting environment variable is to run only the Trilium Notes with this environment variable. This then allows for different setup styles like two [database](database.md) instances or "portable" installation. To do this in unix based systems simply run trilium like this: diff --git a/Wiki/document.md b/Wiki/database.md similarity index 100% rename from Wiki/document.md rename to Wiki/database.md diff --git a/Wiki/docker-server-installation.md b/Wiki/docker-server-installation.md index de87c66..a5729b1 100644 --- a/Wiki/docker-server-installation.md +++ b/Wiki/docker-server-installation.md @@ -1,4 +1,4 @@ -# Docker-server-installation +# Docker-server-installation Trilium can be run as docker image. This is recommended way to deploy Trilium on servers. Official docker images are published on docker hub for **AMD64**, **ARMv6**, **ARMv7** and **ARMv8/64**: [https://hub.docker.com/r/zadam/trilium/](https://hub.docker.com/r/zadam/trilium/)%%{WARNING}%% @@ -32,7 +32,7 @@ Trilium needs a directory where it can store its data, this then needs to be mou Run image --------- -These commands mount the volume to the host system so that trilium's data (most importantly [document](document.md)) is persisted and not cleared after container stops. +These commands mount the volume to the host system so that trilium's data (most importantly [database](database.md)) is persisted and not cleared after container stops. ### Local only diff --git a/Wiki/faq.md b/Wiki/faq.md index a4e5076..a3eb51d 100644 --- a/Wiki/faq.md +++ b/Wiki/faq.md @@ -1,4 +1,4 @@ -# FAQ +# FAQ Mac OS support -------------- @@ -29,7 +29,7 @@ Common request is to allow multiple users collaborate, share notes etc. So far I How to open multiple documents in one Trilium instance ------------------------------------------------------ -This is normally not supported - one Trilium process can open only a single instance of a [document](document.md). However, you can run two Trilium processes (from one installation), each connected to a separate document. To achieve this, you need to set a location for the [data directory](data-directory.md) in the `TRILIUM_DATA_DIR` environment variable and separate port on `TRILIUM_PORT` environment variable. How to do that depends on the platform, in Unix-based systems you can achieve that by running command such as this: +This is normally not supported - one Trilium process can open only a single instance of a [database](database.md). However, you can run two Trilium processes (from one installation), each connected to a separate document. To achieve this, you need to set a location for the [data directory](data-directory.md) in the `TRILIUM_DATA_DIR` environment variable and separate port on `TRILIUM_PORT` environment variable. How to do that depends on the platform, in Unix-based systems you can achieve that by running command such as this: ```text-plain TRILIUM_DATA_DIR=/home/me/path/to/data/dir TRILIUM_PORT=12345 trilium @@ -51,7 +51,7 @@ The only supported way to sync Trilium's data across the network is to use a [sy Why database instead of flat files? ----------------------------------- -Trilium stores notes in a [document](document.md) which is an SQLite database. People often ask why doesn't Trilium rather use flat files for note storage - it's fair question since flat files are easily interoperable, work with SCM/git etc. +Trilium stores notes in a [database](database.md) which is an SQLite database. People often ask why doesn't Trilium rather use flat files for note storage - it's fair question since flat files are easily interoperable, work with SCM/git etc. Short answer is that file systems are simply not powerful enough for what we want to achieve with Trilium. Using filesystem would mean fewer features with probably more problems. diff --git a/Wiki/protected-notes.md b/Wiki/protected-notes.md index 03c358c..47af834 100644 --- a/Wiki/protected-notes.md +++ b/Wiki/protected-notes.md @@ -1,10 +1,10 @@ -# Protected-notes +# Protected-notes Trilium is meant to store all kinds of data - including potentially sensitive data like journals or credentials etc. For such sensitive data Trilium can protect these notes which essentially means: * encrypting the note with encryption key based on your password. - * This means that without your password, protected notes are not decipherable so even if somebody managed to steal your Trilium [document](document.md), your protected notes could not be read. + * This means that without your password, protected notes are not decipherable so even if somebody managed to steal your Trilium [database](database.md), your protected notes could not be read. * time-limited access to protected notes * To first access protected notes you need to enter your password which will decrypt the note and allow you to read / write them. But after certain time period (by default 10 minutes) this decrypted note is unloaded from memory and to read it again you need to enter your password again. * This time limit counts from the last interaction with protected session - so e.g. if you continuously write into a protected note, session is getting extended automatically, and you are not kicked out. Once you change to an unprotected note, expiration starts counting and session ends in 10 minutes (unless you again interact with protected notes). @@ -47,7 +47,7 @@ Encryption details * here we use scrypt for [key stretching](https://en.wikipedia.org/wiki/Key_stretching) 4. Hash produced in the last step is used to decrypt actual _data encryption key_ * data encryption key is encrypted with [AES-128](https://en.wikipedia.org/wiki/Advanced_Encryption_Standard) with random [IV](https://en.wikipedia.org/wiki/Initialization_vector) - * data encryption key is random key generated at the time of [document](document.md) initialization and is constant over the lifetime of the document. If we change password, we re-encrypt only this key. + * data encryption key is random key generated at the time of [database](database.md) initialization and is constant over the lifetime of the document. If we change password, we re-encrypt only this key. 5. We use data encryption key to decrypt actual data - note title and content. * encryption used is again AES-128 with [CBC chaining](https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation). Unique IV is generated with every encryption operation and stored together with the cipher text. diff --git a/Wiki/relation-map.md b/Wiki/relation-map.md index 8cf8af9..3b1b3e5 100644 --- a/Wiki/relation-map.md +++ b/Wiki/relation-map.md @@ -1,4 +1,4 @@ -# Relation-map +# Relation-map Relation map is a type of [note](tree-concepts.md) which visualizes notes and their [relations](attributes.md). See an example: Development process demo @@ -38,7 +38,7 @@ There are several steps here: * we create another note for Princess Diana and create "isPartnerOf" relation from Charles. Again notice how the relation has arrows both ways - this is because "isPartnerOf" definition specifies its inverse relation as again "isPartnerOf" so the opposite relation is created automatically. * as the last step we pan & zoom the map to fit better to window dimensions. -Relation definitions mentioned above come from "Person template" note which is assigned to any child of "My Family Tree" relation note. You can play with the whole thing in the [demo document](document.md). +Relation definitions mentioned above come from "Person template" note which is assigned to any child of "My Family Tree" relation note. You can play with the whole thing in the [demo notes](database.md). Details ------- diff --git a/Wiki/scripts.md b/Wiki/scripts.md index 39f75ba..2db6209 100644 --- a/Wiki/scripts.md +++ b/Wiki/scripts.md @@ -1,4 +1,4 @@ -# Scripts +# Scripts Trilium supports creating [code notes](code-notes.md), i.e. notes which allow you to store some programming code and highlight it. Special case is JavaScript code notes which can also be executed inside Trilium which can in conjunction with [Script API](script-api.md) provide extra functionality. Scripting @@ -14,7 +14,7 @@ So we have frontend and backend, each with their own set of responsibilities, bu Button use case --------------- -Let's take a look at our demo script (shipped with default Trilium [document](document.md)) - Task manager. One of the things this script does is adding a button to the Trilium interface which will allow user to easily add new Task (TODO item). +Let's take a look at our demo script (shipped with default Trilium [database](database.md)) - Task manager. One of the things this script does is adding a button to the Trilium interface which will allow user to easily add new Task (TODO item). ![](images/button-script.png) diff --git a/Wiki/server-installation.md b/Wiki/server-installation.md index b65f4c6..c2c2315 100644 --- a/Wiki/server-installation.md +++ b/Wiki/server-installation.md @@ -1,4 +1,4 @@ -# Server-installation +# Server Installation This pages describes installing Trilium on your own server. You might want to do this in case you want to set up [sync](synchronization.md) or you want to use it as online version of Trilium accessible from anywhere. The server installation is a fully functioning instance i.e. "web editor". There are several options how to do this, each one with some advantage: @@ -21,7 +21,7 @@ For server installations, you might want to configure e.g. port or [TLS](tls-con ### Config location -`config.ini`, [document](document.md) and some other important Trilium data files are by default persisted in the [data directory](data-directory.md)\]\]. +`config.ini`, [database](database.md) and some other important Trilium data files are by default persisted in the [data directory](data-directory.md)\]\]. If this is not desired, you may change it via `TRILIUM_DATA_DIR` environment variable to some other location, e.g.: diff --git a/Wiki/task-manager.md b/Wiki/task-manager.md index 67a5c5b..78c3b78 100644 --- a/Wiki/task-manager.md +++ b/Wiki/task-manager.md @@ -1,5 +1,5 @@ -# Task-manager -Task Manager is a [promoted attributes](promoted-attributes.md) and [scripts](scripts.md) showcase present in the [demo document](document.md). +# Task-manager +Task Manager is a [promoted attributes](promoted-attributes.md) and [scripts](scripts.md) showcase present in the [demo notes](database.md). Demo ---- diff --git a/Wiki/template.md b/Wiki/template.md index e7e8cf1..d0e79f5 100644 --- a/Wiki/template.md +++ b/Wiki/template.md @@ -1,4 +1,4 @@ -# Template +# Template Template is a note which serves as a kind of "template" for other kind of notes (let's call them instance notes). Assignment of a template relation to a note brings these three effects: @@ -37,6 +37,6 @@ Other remarks From the visual perspective, template can define a `#iconClass` and `#cssClass` attributes so that all e.g. books are shown with a particular icon and CSS style. -You can check out the concept in the [demo document](document.md)| in e.g. [Relation map](relation-map.md), [Task manager](task-manager.md) or [Day notes](day-notes.md). +You can check out the concept in the [demo notes](database.md)| in e.g. [Relation map](relation-map.md), [Task manager](task-manager.md) or [Day notes](day-notes.md). See also [default note title](default-note-title.md) which allows you to create templates for note titles. Note templates and title templates can be combined by creating a `#titleTemplate` for a template note. diff --git a/Wiki/troubleshooting.md b/Wiki/troubleshooting.md index 38b00fb..4079bf7 100644 --- a/Wiki/troubleshooting.md +++ b/Wiki/troubleshooting.md @@ -1,4 +1,4 @@ -# Troubleshooting +# Troubleshooting Trilium is currently beta quality software, so it's quite expected there will be some bugs. General quickfix @@ -62,7 +62,7 @@ In case you forgot your password, this means that: * your protected notes are forever lost - they cannot be decrypted without the password * normal (unprotected) notes are recoverable. Read below to see how. -To be able to change username/password and thus recover your unprotected notes, you need to get access to the [document](document.md) file in a [data directory](data-directory.md). You then need to open the `document.db` file with SQLite client (command line or e.g. [DB Browser](https://sqlitebrowser.org/)) and execute following queries: +To be able to change username/password and thus recover your unprotected notes, you need to get access to the [database](database.md) file in a [data directory](data-directory.md). You then need to open the `document.db` file with SQLite client (command line or e.g. [DB Browser](https://sqlitebrowser.org/)) and execute following queries: ```text-plain UPDATE options SET value = 'your_username' WHERE name = 'username'; -- feel free to change 'your_username' to your desired username diff --git a/Wiki/upgrading-trilium.md b/Wiki/upgrading-trilium.md index e2aa0ca..17fe799 100644 --- a/Wiki/upgrading-trilium.md +++ b/Wiki/upgrading-trilium.md @@ -1,4 +1,4 @@ -# Upgrading Trilium +# Upgrading Trilium Topic of this page is upgrading Trilium from one version to another. How to upgrade @@ -12,7 +12,7 @@ Trilium does not have a built-in auto upgrade - all upgrades have to be done man Document compatibility and migration ------------------------------------ -During Trilium startup, [document](document.md) will be checked whether it conforms to the version supported by the application. In case the document is in the old version, Trilium will automatically migrate it to the new version. This will then mean that the document will not be readable anymore by the older versions of Trilium. In case you want to go back to the old version of the document and Trilium, you can restore the [backed up](backup.md) `backup-before-migration.db` which is created before every migration. +During Trilium startup, [database](database.md) will be checked whether it conforms to the version supported by the application. In case the document is in the old version, Trilium will automatically migrate it to the new version. This will then mean that the document will not be readable anymore by the older versions of Trilium. In case you want to go back to the old version of the document and Trilium, you can restore the [backed up](backup.md) `backup-before-migration.db` which is created before every migration. Sync compatibility ------------------ diff --git a/Wiki/weight-tracker.md b/Wiki/weight-tracker.md index 7500867..b392cb0 100644 --- a/Wiki/weight-tracker.md +++ b/Wiki/weight-tracker.md @@ -1,5 +1,5 @@ -# Weight-tracker -Weight Tracker is a [Script API](script-api.md) showcase present in the [demo document](document.md). +# Weight-tracker +Weight Tracker is a [Script API](script-api.md) showcase present in the [demo notes](database.md). [Day notes](day-notes.md) shows (among others) how we have "weight" [promoted attribute](promoted-attributes.md) in the day note [template](template.md). This then aggregates the data and shows a nice chart of weight change in time. From b40e4845c7915c17780ae3cb7f17877ce4142a6d Mon Sep 17 00:00:00 2001 From: root-hal9000 <2352828+root-hal9000@users.noreply.github.com> Date: Wed, 17 Jul 2024 16:44:27 -0500 Subject: [PATCH 09/48] fixed links change during merge conflict --- Wiki/advanced-showcases.md | 2 +- Wiki/weight-tracker.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Wiki/advanced-showcases.md b/Wiki/advanced-showcases.md index 66d502e..2df0f4b 100644 --- a/Wiki/advanced-showcases.md +++ b/Wiki/advanced-showcases.md @@ -1,6 +1,6 @@ # Advanced Showcases -Trilium offers advanced functionality through [Scripts](scripts.md) and [Promoted Attributes](promoted-attributes.md). To illustrate these features, we've prepared several showcases available in the [demo document](document.md): +Trilium offers advanced functionality through [Scripts](scripts.md) and [Promoted Attributes](promoted-attributes.md). To illustrate these features, we've prepared several showcases available in the [demo notes](database.md): * [Relation Map](relation-map.md) * [Day Notes](day-notes.md) diff --git a/Wiki/weight-tracker.md b/Wiki/weight-tracker.md index 18a4c5f..0c0cc42 100644 --- a/Wiki/weight-tracker.md +++ b/Wiki/weight-tracker.md @@ -1,6 +1,6 @@ # Weight-tracker -The `Weight Tracker` is a [Script API](script-api.md) showcase present in the [demo document](document.md). +The `Weight Tracker` is a [Script API](script-api.md) showcase present in the [demo notes](database.md). By adding `weight` as a [promoted attribute](promoted-attributes.md) in the [template](template.md) from which [day notes](day-notes.md) are created, you can aggregate the data and plot weight change over time. From d10983ee9d3fa0ae633415166d49a3928a94dcd5 Mon Sep 17 00:00:00 2001 From: DL Date: Sat, 20 Jul 2024 11:52:57 +0000 Subject: [PATCH 10/48] #84 --- Wiki/weight-tracker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Wiki/weight-tracker.md b/Wiki/weight-tracker.md index 0c0cc42..9f7d9aa 100644 --- a/Wiki/weight-tracker.md +++ b/Wiki/weight-tracker.md @@ -1,11 +1,11 @@ # Weight-tracker +![screenshot of weight tracker](images/weight-tracker.png) + The `Weight Tracker` is a [Script API](script-api.md) showcase present in the [demo notes](database.md). By adding `weight` as a [promoted attribute](promoted-attributes.md) in the [template](template.md) from which [day notes](day-notes.md) are created, you can aggregate the data and plot weight change over time. -![](images/weight-tracker.png) - ## Implementation The `Weight Tracker` note in the screenshot above is of the type `Render Note`. That type of note doesn't have any useful content itself. Instead it is a placeholder where a [script](scripts.md) can render its output. From 4b0fb63953ca10c60eed3721ae9d45c3c4821b2b Mon Sep 17 00:00:00 2001 From: DL Date: Sat, 20 Jul 2024 11:53:14 +0000 Subject: [PATCH 11/48] #83 --- Wiki/web-clipper.md | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/Wiki/web-clipper.md b/Wiki/web-clipper.md index 2d292ad..d70b3a5 100644 --- a/Wiki/web-clipper.md +++ b/Wiki/web-clipper.md @@ -1,48 +1,38 @@ # Web-clipper -![screenshot of webclipper in chrome](images/Web-clipper%20chrome-trilium-web.png) +![screenshot of webclipper in chrome](images/web-clipper-chrome-trilium-web.png) Trilium Web Clipper is a web browser extension which allows user to clip text, screenshots, whole pages and short notes and save them directly to Trilium Notes. -Project is hosted [here](https://github.com/zadam/trilium-web-clipper). +Project is hosted [here](https://github.com/TriliumNext/web-clipper). Firefox and Chrome are supported browsers, but the chrome build should work on other chromium based browsers as well. ## Functionality -------------- - * select text and clip it with the right-click context menu * click on an image or link and save it through context menu * save whole page from the popup or context menu * save screenshot (with crop tool) from either popup or context menu * create short text note from popup -Trilium will save these clippings as a new child note under a "clipper inbox" note. +Trilium will save these clippings as a new child note under a "clipper inbox" note. By default, that's the [day note](Day-notes.md) but you can override that by setting the [label](Attributes.md) `clipperInbox`, on any other note. If there's multiple clippings from the same page (and on the same day), then they will be added to the same note. -Get it - -------------- - -Extension is available from: +**Extension is available from:** -* [Project release page](https://github.com/zadam/trilium-web-clipper/releases) - .xpi for Firefox and .zip for Chromium based browsers. -* [Chrome Web Store](https://chrome.google.com/webstore/detail/trilium-web-clipper/dfhgmnfclbebfobmblelddiejjcijbjm?hl=en&authuser=0) +* [Project release page](https://github.com/TriliumNext/web-clipper/releases) - .xpi for Firefox and .zip for Chromium based browsers. +* %%{WARNING}%% [Chrome Web Store](https://chrome.google.com/webstore/detail/trilium-web-clipper/dfhgmnfclbebfobmblelddiejjcijbjm?hl=en&authuser=0) ## Configuration -------------- - The extension needs to connect to a running Trilium instance. By default, it scans a port range on the local computer to find a desktop Trilium instance. It's also possible to configure the [server](Server-installation.md) address if you don't run the desktop application, or want it to work without the desktop application running. ## Username -------------- - Older versions of Trilium (before 0.50) required username & password to authenticate, but this is no longer the case. You may enter anything in that field, it will not have any effect. From 9fda9d5900d21e3bd817cfd61212e89de1ba1a94 Mon Sep 17 00:00:00 2001 From: DL Date: Sat, 20 Jul 2024 11:53:39 +0000 Subject: [PATCH 12/48] #82 --- Wiki/upgrading-trilium.md | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/Wiki/upgrading-trilium.md b/Wiki/upgrading-trilium.md index 17fe799..8e3ba35 100644 --- a/Wiki/upgrading-trilium.md +++ b/Wiki/upgrading-trilium.md @@ -1,22 +1,18 @@ -# Upgrading Trilium -Topic of this page is upgrading Trilium from one version to another. +# Upgrading TriliumNext -How to upgrade --------------- +This document outlines the steps required to upgrade TriliumNext to a new release version. -Trilium does not have a built-in auto upgrade - all upgrades have to be done manually. How to do this depends on the installation method: +## How to Upgrade -* for [docker server installation](docker-server-installation.md) - pull the image of the newer version and restart -* for all others you need to download new version of the release artifact of your choice from the [release page](https://github.com/TriliumNext/Notes/releases/latest) and replace existing version of the application - i.e. rename/delete the old directory and extract the archive of the new version +TriliumNext does not support built-in automatic upgrades; all updates must be performed manually. The upgrade process varies depending on the installation method: -Document compatibility and migration ------------------------------------- +- **[Docker Server Installation](docker-server-installation.md)**: Pull the new image and restart the container. +- **Other Installations**: Download the latest version from the [release page](https://github.com/TriliumNext/Notes/releases/latest) and replace the existing application files. -During Trilium startup, [database](database.md) will be checked whether it conforms to the version supported by the application. In case the document is in the old version, Trilium will automatically migrate it to the new version. This will then mean that the document will not be readable anymore by the older versions of Trilium. In case you want to go back to the old version of the document and Trilium, you can restore the [backed up](backup.md) `backup-before-migration.db` which is created before every migration. +## Database Compatibility and Migration -Sync compatibility ------------------- +Upon startup, TriliumNext will automatically migrate the [database](database.md) to the new version. Note that after migration, older versions of Trilium will be unable to read the database. If you need to revert to a previous version of TriliumNext and its database, you can restore the [backup](backup.md) that is created prior to migration. -[Synchronization](synchronization.md) protocol is versioned and all members of the sync cluster need to talk in the same protocol version. Therefore, when you are upgrading from one version to another, it might be necessary to upgrade all instances in the cluster. +## Sync Compatibility -Change in protocol version is usually indicated on a release page. +The [synchronization](synchronization.md) protocol used by TriliumNext is versioned, requiring all members of the sync cluster to use the same protocol version. Therefore, when upgrading to a new version, you may need to upgrade all instances in the sync cluster. Changes to the sync protocol version are typically indicated on the release page. From 9bad9b0ccbbe20725d18a14d97195e0aebed0da4 Mon Sep 17 00:00:00 2001 From: DL Date: Sat, 20 Jul 2024 11:53:51 +0000 Subject: [PATCH 13/48] #81 --- Wiki/troubleshooting.md | 84 ++++++++++++++++------------------------- 1 file changed, 33 insertions(+), 51 deletions(-) diff --git a/Wiki/troubleshooting.md b/Wiki/troubleshooting.md index 4079bf7..3b50853 100644 --- a/Wiki/troubleshooting.md +++ b/Wiki/troubleshooting.md @@ -1,90 +1,72 @@ # Troubleshooting -Trilium is currently beta quality software, so it's quite expected there will be some bugs. -General quickfix ----------------- +As TriliumNext is currently in beta, encountering bugs is to be expected. -You guessed it - it's restart. +## General Quick Fix -If there's a UI problem, it usually means that the Trilium frontend got into an inconsistent state and is acting up. The easiest way to fix it is to reload the application - just press `CTRL-R` and frontend will be reloaded. +The first step in troubleshooting is often a restart. -If this still doesn't help, or you suspect it's actually a backend issue, you can restart the whole application - in case of desktop (Electron) build, you just close the window and re-open it again. +If you experience an UI issue, the frontend may have entered an inconsistent state. Reload the application by pressing `CTRL-R`. This will reload the frontend. -Broken note crashes Trilium ---------------------------- +If the issue persists or appears to be a backend problem, restart the entire application. For the desktop (Electron) build, simply close and reopen the window. If you're using a Docker build, restart the container. -Sometimes a particular problem can cause issues for Trilium (e.g. render note with faulty script) and causes Trilium to crash. But since Trilium will normally try to load previously open notes, it will attempt to load again the note, causing the crash again. +## Broken Note Crashes Trilium -To break out of this vicious cycle, you can specify `TRILIUM_START_NOTE_ID` environment variable, which will reset the open tabs to only one with the specified note ID (just use `root`). In linux you could use it like this: +Certain problems, such as rendering a note with a faulty script, can cause Trilium to crash. If Trilium attempts to reload the problematic note upon restart, it will continue to crash. -```text-plain -TRILIUM_START_NOTE_ID=root ./trilium -``` +To resolve this, use the `TRILIUM_START_NOTE_ID` environment variable to reset the open tabs to a single specified note ID (e.g., `root`). In Linux, you can set it as follows: -Alternatively, you can also start up Trilium in a "safe mode" which will reset the current note to root: - -```text-plain -TRILIUM_SAFE_MODE=true ./trilium +```sh +TRILIUM_START_NOTE_ID=root ./trilium ``` -Broken script prevents application startup ------------------------------------------- - -If you experiment with scripting, it might happen that you create a script which crashes the whole Trilium. That's even worse if you set it as a startup script or in an active [custom widget](custom-widget.md). +## Broken Script Prevents Application Startup -In such cases you can start Trilium in "safe mode" which will not execute any custom scripts: +If a custom script causes TriliumNext to crash, and it is set as a startup script or in an active [custom widget](custom-widget.md), start TriliumNext in "safe mode" to prevent any custom scripts from executing: -```text-plain +```sh TRILIUM_SAFE_MODE=true ./trilium ``` -Depending on the Trilium distribution, there are also ready made scripts for this: `trilium-safe-mode.bat` and `trilium-safe-mode.sh`. +Depending on your Trilium distribution, you may have pre-made scripts available: `trilium-safe-mode.bat` and `trilium-safe-mode.sh`. -Once Trilium starts up, find the note which caused the crash and fix it/delete it. +Once Trilium starts, locate and fix or delete the problematic note. -Sync and consistency checks ---------------------------- +## Sync and Consistency Checks -Trilium periodically checks logical consistency of the database (e.g. that every note should have a parent). If some inconsistency is detected, the user is notified on the UI about the inconsistency. +Trilium periodically verifies the logical consistency of the database (e.g., ensuring every note has a parent). If inconsistencies are detected, you will be notified via the UI. -In such case, it is recommended to file a bug report and attach anonymized database (see below). +In such cases, file a bug report and attach an anonymized database if necessary. -Restoring backup ----------------- +## Restoring Backup -Trilium makes regular automatic backup, so When things go really bad we might need the last option - [restore backup](backup.md). +Trilium makes regular automatic backups. If issues become severe, you can [restore from a backup](backup.md). -Forgotten username/password ---------------------------- +## Forgotten Password -In case you forgot your password, this means that: +If you forget your password: -* your protected notes are forever lost - they cannot be decrypted without the password -* normal (unprotected) notes are recoverable. Read below to see how. +- Protected notes are irretrievable without the password. +- Unprotected notes can be recovered. Follow these steps: -To be able to change username/password and thus recover your unprotected notes, you need to get access to the [database](database.md) file in a [data directory](data-directory.md). You then need to open the `document.db` file with SQLite client (command line or e.g. [DB Browser](https://sqlitebrowser.org/)) and execute following queries: +Access the [database](database.md) file in the [data directory](data-directory.md). Open the `document.db` file with an SQLite client (e.g., [DB Browser](https://sqlitebrowser.org/)) and execute the following queries: -```text-plain -UPDATE options SET value = 'your_username' WHERE name = 'username'; -- feel free to change 'your_username' to your desired username +```sql UPDATE options SET value = '77/twC5O00cuQgNC63VK32qOKKYwj21ev3jZDXoytVU=' WHERE name = 'passwordVerificationSalt'; UPDATE options SET value = '710BMasZCAgibzIc07X4P9Q4TeBd4ONnqJOho+pWcBM=' WHERE name = 'passwordDerivedKeySalt'; UPDATE options SET value = 'Eb8af1/T57b89lCRuS97tPEl4CwxsAWAU7YNJ77oY+s=' WHERE name = 'passwordVerificationHash'; UPDATE options SET value = 'QpC8XoiYYeqHPtHKRtbNxfTHsk+pEBqVBODYp0FkPBa22tlBBKBMigdLu5GNX8Uu' WHERE name = 'encryptedDataKey'; ``` -After executing the changes, don't forget to commit/write the changes! - -This will set the password to "password". You can use that to login to the application again. - -If you already had protected notes (which are not unrecoverable), I recommend deleting them or alternatively export the unprotected notes, delete the document.db and start anew. +After executing the changes, commit/write the changes. **This sets the password to "password," allowing you to log in again.** -If you decide to continue using the existing document file, don't forget to change your password (Options -> Change password). +For pre-existing protected notes (now unrecoverable), consider deleting them or exporting the unprotected notes. Then, delete `document.db` and start fresh. -Reporting bugs --------------- +If you continue using the existing document file, change your password (Options -> Change Password). -It's a great help to send bug reports. Here are some tips where to look at: +## Reporting Bugs -Trilium uses GitHub issues - so please send your reports here: [https://github.com/TriliumNext/Notes/issues](https://github.com/TriliumNext/Notes/issues) +Reporting bugs is highly valuable. Here are some tips: -Check [error logs](error-logs.md) page for info how to provide the necessary info. +- Use GitHub issues for reporting: [https://github.com/TriliumNext/Notes/issues](https://github.com/TriliumNext/Notes/issues) +- Refer to the [error logs](error-logs.md) page for information on providing necessary details. From a8b75c0dddacb949ba3fc306f4029d9ebd47c9a4 Mon Sep 17 00:00:00 2001 From: DL Date: Sat, 20 Jul 2024 11:54:03 +0000 Subject: [PATCH 14/48] #81 --- Wiki/tree-manipulation.md | 32 ++++++++++++++------------------ 1 file changed, 14 insertions(+), 18 deletions(-) diff --git a/Wiki/tree-manipulation.md b/Wiki/tree-manipulation.md index a177450..077496e 100644 --- a/Wiki/tree-manipulation.md +++ b/Wiki/tree-manipulation.md @@ -1,26 +1,22 @@ -# Tree manipulation -This page describes how you can manipulate the note tree - specifically moving notes. +# Tree Manipulation -Drag and drop -------------- +This page explains how to manipulate the note tree in TriliumNext, focusing on moving notes. -You can manipulate the tree simply by dragging and dropping notes as you can see in the demo: +## Drag and Drop -![](images/drag-and-drop.gif) +![Drag and drop example](images/drag-and-drop.gif) +You can easily rearrange the note tree by dragging and dropping notes, as demonstrated in the example above. -Keyboard manipulation ---------------------- +## Keyboard Manipulation -Trilium provides fast keyboard based manipulation with following [shortcuts](keyboard-shortcuts.md): +![Example of using keyboard keys to move a note](images/move-note-with-keyboard.gif) +Trilium offers efficient keyboard-based manipulation using the following [shortcuts](keyboard-shortcuts.md): -* `CTRL-UP` and `CTRL-DOWN` - move note up or down in the order -* `CTRL-LEFT` - move note upwards in the hierarchy by changing a note's parent to note's parent's parent. -* `CTRL-RIGHT` - move note downwards in the hierarchy by setting parent to the note currently above (this is a bit hard to explain - it's best to see a demo or try it for yourself) -* `LEFT` and `RIGHT` expands and collapses a sub-tree +- `CTRL-UP` and `CTRL-DOWN`: Move the note up or down in the order. +- `CTRL-LEFT`: Move the note up in the hierarchy by changing its parent to the note's grandparent. +- `CTRL-RIGHT`: Move the note down in the hierarchy by setting its parent to the note currently above it (this action is best understood through a demo or hands-on experience). +- `LEFT` and `RIGHT`: Expand and collapse a sub-tree. -![](images/move-note-with-keyboard.gif) +## Context Menu -Context menu ------------- - -You can also move notes with familiar cut & paste from context menu or associated keyboard [shortcuts](keyboard-shortcuts.md) `CTRL-X` (cut) and `CTRL-V` (paste). +You can also move notes using the familiar cut and paste functions available in the context menu, or with the associated keyboard [shortcuts](keyboard-shortcuts.md): `CTRL-X` (cut) and `CTRL-V` (paste). From b428057e7b67571057bc03af8d42a390dabbdf77 Mon Sep 17 00:00:00 2001 From: DL Date: Sat, 20 Jul 2024 11:54:20 +0000 Subject: [PATCH 15/48] #79 --- Wiki/tree-concepts.md | 31 ++++++++++++++----------------- 1 file changed, 14 insertions(+), 17 deletions(-) diff --git a/Wiki/tree-concepts.md b/Wiki/tree-concepts.md index 61484c7..50a03d6 100644 --- a/Wiki/tree-concepts.md +++ b/Wiki/tree-concepts.md @@ -1,28 +1,25 @@ -# Tree concepts -This page describes some basic concepts related to the tree structure of notes in Trilium. +# Tree Concepts -Note ----- +This page explains the basic concepts related to the tree structure of notes in TriliumNext. -Note is a central entity in Trilium. See [Note](note.md) for details. +## Note -Branch ------- +A note is the central entity in TriliumNext. For more details, see [Note](note.md). -Branch describes note placement in the note tree - in essence it's a tuple of parentNoteId and noteId which says that given note is placed as a child into this parent note. +## Branch -Each note can have more than one such branches, in other words any note can have multiple placements in the tree. For lack of better word we call this "[cloning](cloning-notes.md)". +A branch describes the placement of a note within the note tree. Essentially, it is a tuple of `parentNoteId` and `noteId`, indicating that the given note is placed as a child under the specified parent note. -Prefix ------- +Each note can have multiple branches, meaning any note can be placed in multiple locations within the tree. This concept is referred to as "[cloning](cloning-notes.md)." -Prefix is branch (placement) specific title prefix for the note. Let's say you have your note placed into two different places in the tree, but you want to change the title a bit in one of the placements. For this you can use prefix. +## Prefix -To edit prefix, right-click on a note in the tree pane and choose "Edit branch prefix". +A prefix is a branch-specific title modifier for a note. If you place your note in two different locations within the tree and want to alter the title slightly in one of those placements, you can use a prefix. -Prefix is not part of the note itself and thus is not encrypted when the note is protected. That can be useful when you want to keep part of the title in the tree visible even when protected for easier orientation. +To edit a prefix, right-click on the note in the tree pane and select "Edit branch prefix." -Subtree -------- +The prefix is not part of the note itself and is not encrypted when the note is protected. This can be useful if you want part of the title to remain visible in the tree for easier navigation, even when the note is protected. -Subtree is a set of notes consisting of a particular note (subtree root) and all its children, children of these children (= all its descendants). Some operations work on subtrees (e.g. export). +## Subtree + +A subtree consists of a particular note (the subtree root) and all its children and descendants. Some operations, such as exporting, work on entire subtrees. From 2be005bcbbd3358a428b13dfa08f1d3f8f5f64c5 Mon Sep 17 00:00:00 2001 From: DL Date: Sat, 20 Jul 2024 11:54:31 +0000 Subject: [PATCH 16/48] #78 --- Wiki/tls-configuration.md | 44 +++++++++++++++++++++------------------ 1 file changed, 24 insertions(+), 20 deletions(-) diff --git a/Wiki/tls-configuration.md b/Wiki/tls-configuration.md index bf6bd33..d288241 100644 --- a/Wiki/tls-configuration.md +++ b/Wiki/tls-configuration.md @@ -1,42 +1,46 @@ -# TLS-configuration -TLS configuration is required for \[\[server installation\]\]. The page below describes steps to set up TLS in Trilium itself. You might also opt for TLS termination using some reverse proxy (e.g. nginx), in that case follow a [guide like this](https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-20-04). +# TLS Configuration -First thing to do is to get a TLS certificate. You have two options: +Configuring TLS is essential for [server installation](server-installation.md) in Trilium. This guide details the steps to set up TLS within Trilium itself. -* Recommended - get TLS certificate signed by root certificate authority. For personal usage, the best choice is [Let's encrypt](https://letsencrypt.org). It's free, automated and easy. You can take a look at Certbot for automatic TLS setup. -* generate your own self-signed certificate. You will have extra trouble with importing the certificate into all machines from which you connect to the server installation so this is not recommended. +For a more robust solution, consider using TLS termination with a reverse proxy (recommended, e.g., Nginx). You can follow a [guide like this](https://www.digitalocean.com/community/tutorials/how-to-secure-nginx-with-let-s-encrypt-on-ubuntu-20-04) for such setups. -Modifying config.ini --------------------- +## Obtaining a TLS Certificate -Now that you have your certificate, we need to modify `config.ini` in the \[\[data directory\]\] so that Trilium will use it: +You have two options for obtaining a TLS certificate: -```text-plain +- **Recommended**: Obtain a TLS certificate signed by a root certificate authority. For personal use, [Let's Encrypt](https://letsencrypt.org) is an excellent choice. It is free, automated, and straightforward. Certbot can facilitate automatic TLS setup. +- Generate a self-signed certificate. This option is not recommended due to the additional complexity of importing the certificate into all machines connecting to the server. + +## Modifying `config.ini` + +Once you have your certificate, modify the `config.ini` file in the [data directory](data-directory.md) to configure Trilium to use it: + +```ini [Network] port=8080 -# true for TLS/SSL/HTTPS (secure), false for HTTP (unsecure). +# Set to true for TLS/SSL/HTTPS (secure), false for HTTP (insecure). https=true -# path to certificate (run "bash bin/generate-cert.sh" to generate self-signed certificate). Relevant only if https=true +# Path to the certificate (run "bash bin/generate-cert.sh" to generate a self-signed certificate). +# Relevant only if https=true certPath=/[username]/.acme.sh/[hostname]/fullchain.cer keyPath=/[username]/.acme.sh/[hostname]/example.com.key ``` -Above is only example of how this is set up on my environment when I generated the certificate using Let's encrypt acme utility. Your paths may be completely different. (Note that if you are using a Docker installation, these paths should be in a volume or other path understood by the docker container, e.g., /home/node/trilium-data/\[DIR IN DATA DIRECTORY\].) +The above example shows how this is set up in an environment where the certificate was generated using Let's Encrypt's ACME utility. Your paths may differ. For Docker installations, ensure these paths are within a volume or another directory accessible by the Docker container, such as `/home/node/trilium-data/[DIR IN DATA DIRECTORY]`. -After you set this up, you may restart Trilium and now visit the hostname with "https". +After configuring `config.ini`, restart Trilium and access the hostname using "https". -Self-signed certificate ------------------------ +## Self-Signed Certificate -If you need to use a self-signed certificate for your server instance, the desktop instance won't trust it. +If you opt to use a self-signed certificate for your server instance, note that the desktop instance will not trust it by default. -Currently the only way to make this work is by disabling certificate validation by setting this environment variable (for Linux): +To bypass this, disable certificate validation by setting the following environment variable (for Linux): -```text-plain +```sh export NODE_TLS_REJECT_UNAUTHORIZED=0 trilium ``` -Trilium comes with scripts to start Trilium in this mode, e.g. `trilium-no-cert-check.bat` for Windows. +Trilium provides scripts to start in this mode, such as `trilium-no-cert-check.bat` for Windows. -\*\* Note that disabling TLS certificate validation is insecure, so do it only if you're sure you know what you're doing! \*\* +**Warning**: Disabling TLS certificate validation is insecure. Proceed only if you fully understand the implications. From 6a6d0a80031cd9fe669c5fbbc9fc425b49d2a2cf Mon Sep 17 00:00:00 2001 From: DL Date: Sat, 20 Jul 2024 20:50:55 +0000 Subject: [PATCH 17/48] #75 --- Wiki/text-notes.md | 115 ++++++++++++++++++++------------------------- 1 file changed, 51 insertions(+), 64 deletions(-) diff --git a/Wiki/text-notes.md b/Wiki/text-notes.md index 9040dcd..5aca016 100644 --- a/Wiki/text-notes.md +++ b/Wiki/text-notes.md @@ -1,107 +1,94 @@ -# Text-notes -Trilium uses awesome [CKEditor 5](https://ckeditor.com/ckeditor-5/) as its editing component. +# Text Notes -Formatting ----------- +Trilium utilizes the powerful [CKEditor 5](https://ckeditor.com/ckeditor-5/) as its text editing component. -Trilium text note interface doesn't show any toolbars or formatting options by default, these needs to be brought up by: +## Formatting Options -1. selecting text will bring up an inline toolbar: +The Trilium text note interface does not display toolbars or formatting options by default. These can be accessed by: -![](api/images/voFa4y9vMkRi/text-notes-formatting-inline.p) +%%{WARNING}%% Image does not exist in repo +![](api/images/aQT4C1G1rjUk/text-notes-formatting-inline.p) -1. clicking on the block toolbar: +1. Selecting text to bring up an inline toolbar. +%%{WARNING}%% Image does not exist in repo ![](api/images/aQT4C1G1rjUk/text-notes-formatting-block.pn) -Read only vs. editing mode --------------------------- +2. Clicking on the block toolbar. -Text notes are normally opened in edit mode, however there are two cases when they are open in read-only mode: -* they are long and thus would take time to load so by default we open them as read only which is much quicker -* or the note has `readOnly` [label](attributes.md) +## Read-Only vs. Editing Mode -In both cases, it is possible to switch to editable mode again. +Text notes are usually opened in edit mode. However, they may open in read-only mode under the following circumstances: -General Formatting ------------------- +- The note is long and would take time to load, so it is opened in read-only mode by default for quicker access. +- The note has a `readOnly` [label](attributes.md). -Trilium uses the CKEditor, so any formatting that the CKEditor supports should be available in Trilium. For example: +In both cases, it is possible to switch back to editable mode. -**Bold** – Type `**text**` or `__text__` +## General Formatting -_Italic_ – Type `*text*` or `_text_` +Since Trilium uses CKEditor, any formatting supported by CKEditor is available. Examples include: -`Code` – Type \`text\` - -~Strikethrough~ – Type `~~text~~` +- **Bold**: Type `**text**` or `__text__` +- _Italic_: Type `*text*` or `_text_` +- `Code`: Type \`text\` +- ~Strikethrough~: Type `~~text~~` ### Lists -* Bulleted list – Start a line with `*` or `-` followed by a space - -1. Numbered list – Start a line with `1.` or `1)` followed by a space - -\[ \] To-do list – Start a line with `[ ]` or `[x]` followed by a space to insert an unchecked or checked list item, respectively +- Bulleted list: Start a line with `*` or `-` followed by a space +- Numbered list: Start a line with `1.` or `1)` followed by a space +- To-do list: Start a line with `[ ]` for an unchecked item or `[x]` for a checked item ### Blocks -> Block quote – Start a line with `>` followed by a space - -`Multi-line Code block` – Start a line with \`\`\` - -### Other - -Headings – Start a line with `##` or `###` followed by a space to create a heading 1, heading 2, or heading 3 (up to heading 6 if options defines more headings) - -Note: Trilium only accepts headings with `##` and more because `#` is reserved for the title +- Block quote: Start a line with `>` followed by a space -Horizontal line – Start a line with `---` ------------------------------------------ +### Multi-Line Code Blocks -Markdown & Autoformat ---------------------- +To create a multi-line code block, start a line with "\`\`\`[lang]", for example: -CKEditor supports markdown-like editing experience. It recognizes syntax and automatically converts it to rich text. See it in action: +```js +if (1 > 2) { + console.log("Error in the matrix"); +} +``` -![](images/autoformat.gif) +### Headings -Complete documentation for this feature is available in [CKEditor documentation](https://ckeditor.com/docs/ckeditor5/latest/features/autoformat.html). +Create headings by starting a line with `##` for heading 2, `###` for heading 3, and so on up to heading 6. Note that `#` is reserved for the title. -If the autoformat is not desirable for what you just wrote, you can press `CTRL-Z` which will un-autoformat the text to its original form. +### Horizontal Line -Note that the use of `#` for Heading1 style is not supported because the editor assumes that is used for the title, start with `##` for Heading2. Explanation [here](https://ckeditor.com/docs/ckeditor5/latest/features/headings.html#heading-levels). +Insert a horizontal line by starting a line with `---`. -Math support ------------- +## Markdown & Autoformat -Trilium provides Math support with the help of KaTex: +CKEditor supports a markdown-like editing experience, recognizing syntax and automatically converting it to rich text. -![](images/math.gif) +Complete documentation for this feature is available in the [CKEditor documentation](https://ckeditor.com/docs/ckeditor5/latest/features/autoformat.html). -Cut selection to sub-note -------------------------- +If autoformatting is not desirable, press `CTRL-Z` to revert the text to its original form. -One of the common situations in Trilium is when you're editing a document, and it gets somewhat large, so you start splitting it up into sub-notes - the process is essentially like this: +Note: The use of `#` for Heading 1 is not supported because it is reserved for the title. Start with `##` for Heading 2. More information is available [here](https://ckeditor.com/docs/ckeditor5/latest/features/headings.html#heading-levels). -* select the desired piece of text and cut it into clipboard -* create new sub-note & give it name -* paste the content from clipboard into sub-note +## Math Support -Trilium provides a way to automate this: +Trilium provides math support through KaTeX. -![](images/cut-to-subnote.gif) +## Cutting Selection to Sub-Note -You can notice how heading "Formatting" is automatically detected and new sub-note is named "Formatting". +When editing a document that becomes too large, you can split it into sub-notes: -It is also possible to assign a keyboard shortcut for this action. +1. Select the desired text and cut it to the clipboard. +2. Create a new sub-note and name it. +3. Paste the content from the clipboard into the sub-note. -Include note ------------- +Trilium can automate this process. The heading is automatically detected and the new sub-note is named accordingly. You can also assign a keyboard shortcut for this action. -Text notes can "include" another note as a read only widget. This can be useful for e.g. including a dynamically generated chart (from scripts & "render HTML" note) or other more advanced use cases. +## Including a Note -This functionality is available in the block toolbar icon. +Text notes can include another note as a read-only widget. This feature is useful for including dynamically generated charts (from scripts & "render HTML" notes) or other advanced use cases. -![image](images/Text-notes%20image.png) +This functionality is available through the block toolbar icon. From 9988246473c2be424dbe0c4159537234b946c123 Mon Sep 17 00:00:00 2001 From: DL Date: Sat, 20 Jul 2024 21:04:31 +0000 Subject: [PATCH 18/48] #74 --- Wiki/template.md | 47 +++++++++++++++++++++++------------------------ 1 file changed, 23 insertions(+), 24 deletions(-) diff --git a/Wiki/template.md b/Wiki/template.md index d0e79f5..05e0fea 100644 --- a/Wiki/template.md +++ b/Wiki/template.md @@ -1,42 +1,41 @@ # Template -Template is a note which serves as a kind of "template" for other kind of notes (let's call them instance notes). -Assignment of a template relation to a note brings these three effects: +A template in Trilium serves as a predefined structure for other notes, referred to as instance notes. Assigning a template to a note brings three main effects: -* all attributes from the template note are [inherited](attribute-inheritance.md) to the instance notes - * note that even attributes with `#isInheritable=false` are inherited to the instance notes, but only inheritable attributes are then inherited to the children of instance notes -* note content is copied from the template note to the instance note (if the instance note content is empty at the time of template attribute assignment) -* all template's children notes are deep-duplicated to the instance note +1. **Attribute Inheritance**: All attributes from the template note are [inherited](attribute-inheritance.md) by the instance notes. Even attributes with `#isInheritable=false` are inherited by the instance notes, although only inheritable attributes are further inherited by the children of the instance notes. +2. **Content Duplication**: The content of the template note is copied to the instance note, provided the instance note is empty at the time of template assignment. +3. **Child Note Duplication**: All child notes of the template are deep-duplicated to the instance note. -Example -------- +## Example -A typical example would be a "Book" template note, which will: +A typical example would be a "Book" template note, which might include: -* define some [promoted attributes](promoted-attributes.md) - e.g. publication year, author etc -* you can also create kind of outline of the book review in the note text - e.g. themes, conclusion etc. .. -* you can also create child notes for e.g. highlights, summary etc. +- **Promoted Attributes**: Such as publication year, author, etc. (see [promoted attributes](promoted-attributes.md)). +- **Outline**: An outline for a book review, including sections like themes, conclusion, etc. +- **Child Notes**: Additional notes for highlights, summary, etc. -![](images/template.png) +![Template Example](images/template.png) -Instance note -------------- +## Instance Note -And then we have instance note - this note has a [relation](attributes.md) to the "Book" template note which will cause that the template note text is used to initialize the instance note text and all attributes from the template note are inherited to the instance note. +An instance note is a note related to a template note. +This relationship means the instance note's content is initialized from the template, and all attributes from the template are inherited. -You can create an instance note (i.e. note which uses a template) through the UI like this: +To create an instance note through the UI: +%%{WARNING}%% Image not in Repo ![](api/images/qGovjbsV4FPX/template-create-instance-note.) -For the template to appear in the menu, the template note needs to have `#template` label (don't mistake it with `~template` relation which points from the instance note to the template note). If you use [workspaces](workspace.md), you can alternatively mark templates with `#workspaceTemplate` which will display them only in the workspace. +For the template to appear in the menu, the template note must have the `#template` label. +Do not confuse this with the `~template` relation, which links the instance note to the template note. +If you use [workspaces](workspace.md), you can also mark templates with `#workspaceTemplate` to display them only in the workspace. -You can also add/change template notes after the note is created, simply create a relation `~template` pointing to the desired template note. +Templates can also be added or changed after note creation by creating a `~template` relation pointing to the desired template note. -Other remarks -------------- +## Additional Notes -From the visual perspective, template can define a `#iconClass` and `#cssClass` attributes so that all e.g. books are shown with a particular icon and CSS style. +From a visual perspective, templates can define `#iconClass` and `#cssClass` attributes, allowing all instance notes (e.g., books) to display a specific icon and CSS style. -You can check out the concept in the [demo notes](database.md)| in e.g. [Relation map](relation-map.md), [Task manager](task-manager.md) or [Day notes](day-notes.md). +Explore the concept further in the [demo notes](database.md), including examples like the [Relation Map](relation-map.md), [Task Manager](task-manager.md), and [Day Notes](day-notes.md). -See also [default note title](default-note-title.md) which allows you to create templates for note titles. Note templates and title templates can be combined by creating a `#titleTemplate` for a template note. +Additionally, see [default note title](default-note-title.md) for creating title templates. Note templates and title templates can be combined by creating a `#titleTemplate` for a template note. From 4b162f7ae35dc6791500cc1637a75aab06c74ce0 Mon Sep 17 00:00:00 2001 From: DL Date: Sat, 20 Jul 2024 21:14:25 +0000 Subject: [PATCH 19/48] #72 --- Wiki/synchronization.md | 88 +++++++++++++++++------------------------ 1 file changed, 37 insertions(+), 51 deletions(-) diff --git a/Wiki/synchronization.md b/Wiki/synchronization.md index bb9b680..28dc19b 100644 --- a/Wiki/synchronization.md +++ b/Wiki/synchronization.md @@ -1,85 +1,71 @@ -# Synchronization -Trilium is offline-first note-taking application - when you use the desktop application, all the data is stored locally, but you also have an option to set up synchronization to the server instance. When you add another desktop client, you can get to star-shaped topology: +# Synchronization -![](images/star-topology.png) +Trilium is an offline-first note-taking application that stores all data locally on the desktop client. However, it also offers the option to set up synchronization with a server instance, allowing multiple desktop clients to sync with a central server. This creates a star-shaped topology: -This means that there's one central server (we'll call this instance _sync server_) and several _client_ (sometimes called _desktop_) instances which all point to this sync server and synchronize against it. +![topology visualization](images/star-topology.png) -Once sync is set up, synchronization is automatic and ongoing - you don't need to trigger it manually. It should "just work". +In this setup, a central server (referred to as the _sync server_) and multiple _client_ (or _desktop_) instances synchronize with the sync server. Once configured, synchronization is automatic and ongoing, requiring no manual intervention. -How to set up synchronization ------------------------------ +## Setting Up Synchronization -### Security +### Security Considerations -Please note that setting up server securely is not easy and far reaching mistakes can be made. It is especially important to use a valid TLS certificate (https) instead of unencrypted/unauthenticated HTTP. +Setting up the server securely is critical and can be complex. It is crucial to use a valid TLS certificate (HTTPS) rather than an unencrypted HTTP connection to ensure security and avoid potential vulnerabilities. -### Setup synchronization from desktop instance to sync server +### Synchronizing a Desktop Instance with a Sync Server -This approach is used when you already have a desktop instance of Trilium and you want to [setup sync server on your web host](server-installation.md). +This method is used when you already have a desktop instance of Trilium and want to set up a sync server on your web host. -So let's assume your server instance is already deployed, but it's uninitialized (no data). Then open your desktop instance, click on Options -> Sync tab -> Sync configuration and set "Server instance address" to point to your sync server. Click Save. +1. **Server Deployment**: Ensure your server instance is deployed but uninitialized. +2. **Desktop Configuration**: Open your desktop instance, navigate to Options -> Sync tab -> Sync configuration, and set the "Server instance address" to your sync server's address. Click Save. -![](images/sync-config.png) +![screenshot of the sync settings options modal](images/sync-config.png) -Now click on "Test sync" button which will tell you if the handshake with sync server succeeded. If yes, sync with sync server started - client started pushing all the data towards the server instance. This might take some time to finish, but you can close the Options dialog and keep using Trilium. +3. **Testing Sync**: Click the "Test sync" button to verify the connection to the sync server. If successful, the client will start pushing all data to the server instance. This process may take some time, but you can continue using Trilium. Periodically check the server instance to confirm when the sync is complete. Once finished, you should see the login screen on the server. -You can also check the server instance periodically to see if the sync finished. Once it's finished, you should see the login screen. +### Synchronizing a Desktop Instance from a Sync Server -### Setup synchronization from sync server to desktop instance +This method is used when you already have a sync server and want to configure a new desktop instance to sync with it. -This is used when you already have sync server, and you want to set up a desktop instance to sync with (from) it. +1. **Desktop Setup**: Download the [latest release](https://github.com/TriliumNext/Notes/releases/latest) for your platform, unzip it, and run it. +2. **Initial Configuration**: When prompted, choose the option to set up sync with a sync server. -Here we assume that you downloaded [the most recent release](https://github.com/TriliumNext/Notes/releases/latest) for your platform, unzipped it and ran it. +![screenshot of the sync from server setup page](images/sync-init.png) -Since the desktop instance is completely empty, it will first ask if you want to create an initial document, or you want to set up sync with sync server - you need to choose the second option. +3. **Server Details**: Configure the Trilium server address and enter the correct username and password for authentication. +4. **Finish Setup**: Click the "Finish setup" button. If successful, you will see the following screen: -![](images/sync-init.png) +![screenshot of the sync page](images/sync-in-progress.png) -You'll need to configure Trilium server address and importantly also correct username / password (sync setup requires authentication). +Once synchronization is complete, you will be automatically redirected to the Trilium application. -Click on "Finish setup" button and if everything went fine, you'll see this screen: +## Proxy Configuration -![](images/sync-in-progress.png) +Two proxy setups are supported: -Once the sync is finished, you'll be automatically redirected to the Trilium application. +- **Explicit Proxy Configuration**: Set the proxy server in Options / Sync. Only unauthenticated proxy servers are supported. +- **System Proxy Settings**: If no proxy server is explicitly configured, Trilium will use the system proxy settings. -Proxy setup ------------ +## Troubleshooting -Two different setups are supported: +### Date/Time Synchronization -* you can explicitly set proxy server to be used in Options / Sync. Only unauthenticated proxy servers are currently supported. -* if no proxy server is explicitly configured, then Trilium will use system proxy settings +For successful synchronization, both client and server must have the same date and time, with a tolerance of up to five minutes. -Troubleshooting ---------------- +### Certificate Issues -### Different date/time on client and server +When using TLS, Trilium will verify the server certificate. If verification fails (e.g., due to self-signed certificates or certain corporate proxies), you can run the Trilium client with the `NODE_TLS_REJECT_UNAUTHORIZED` environment variable set to `0`: -For a successful sync, both client and server need to have save date time, with a tolerance of maximum 5 minutes difference. - -Certificate issues ------------------- - -When TLS is in use, Trilium client will attempt to verify the server certificate. In some cases (self-signed certs, some corporate proxy servers), the verification will be unsuccessful and sync will fail. In those cases, you can run the Trilium client with environment variable `NODE_TLS_REJECT_UNAUTHORIZED` set to `0`: - -```text-plain +```sh export NODE_TLS_REJECT_UNAUTHORIZED=0 ``` -TLS certificate won't be verified and simply accepted as it is. **You need to be aware that this will degrade the security of sync process significantly and open your setup to MITM attacks. It's strongly recommended to use a valid signed server certificate.** - -Newer Trilium versions contain this in a script called `trilium-no-cert-check.sh`. - -Conflict resolution -------------------- +This will disable TLS certificate verification, significantly reducing security and exposing the setup to MITM attacks. It is strongly recommended to use a valid signed server certificate. Newer Trilium versions include a script called `trilium-no-cert-check.sh` for this purpose. -You can sometimes encounter a situation where you edit the same note in multiple instances before the note changes are synchronized. +### Conflict Resolution -Trilium handles this situation by just picking up the newer change and discarding the older change. The older change should still be visible in [note revisions](note-revisions.md), so it should be possible to recover any data lost in conflict resolution. +If you edit the same note on multiple instances before synchronization, Trilium resolves conflicts by retaining the newer change and discarding the older one. The older version remains accessible in [note revisions](note-revisions.md), allowing data recovery if needed. -Hash check ----------- +### Hash Check -After each completed sync, Trilium computes a hash of all synced data on both client and sync server. If there's a difference, something went wrong and Trilium will run an automatic recovery mechanism. +After each synchronization, Trilium computes a hash of all synced data on both the client and the sync server. If there is a discrepancy, Trilium will automatically initiate a recovery mechanism to resolve the issue. \ No newline at end of file From a083c63e536f23804a2ab2ff32651d4c5e77b5be Mon Sep 17 00:00:00 2001 From: DL Date: Sat, 20 Jul 2024 21:17:15 +0000 Subject: [PATCH 20/48] #71 --- Wiki/sorting.md | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/Wiki/sorting.md b/Wiki/sorting.md index 7602942..a5ce55b 100644 --- a/Wiki/sorting.md +++ b/Wiki/sorting.md @@ -1,25 +1,23 @@ -# Sorting -One time sorting ----------------- +# Sorting Notes -You can sort notes one time by right-clicking parent note in the note tree, Advanced -> Sort notes by ... +You can sort notes by right-clicking the parent note in the note tree and selecting Advanced -> Sort notes by ... -Automatic / permanent sorting ------------------------------ +## Automatic/Permanent Sorting -Child notes can be kept sorted by attaching [labels](attributes.md) to the parent note: +Child notes can be automatically sorted by attaching specific [labels](attributes.md) to the parent note: -* `#sorted` - enables sorting, can optionally include name of the note's property/label (see details below) -* `#sortDirection` - by default ascending, set it to `desc` value to reverse the sort order -* `#sortFoldersFirst` - notes with children will be sorted on top +- `#sorted`: Enables sorting. Can optionally include the name of the note's property/label for sorting criteria (details below). +- `#sortDirection`: By default, sorting is ascending. Set this to `desc` to sort in descending order. +- `#sortFoldersFirst`: Notes with children will be sorted to the top. -Sorting works by comparing note property or a specific label on the child notes. +Sorting is done by comparing note properties or specific labels on child notes. There are four sorting levels, with the first having the highest priority. Lower priority levels are applied only if higher priority comparisons result in equality. -There are 4 sorting levels, where the first one has the highest priority and the lower one will be applied only if the 2 compared notes are equal based on higher priority comparison. +1. **Top Label Sorting**: Child notes with the `#top` label will appear at the top of the folder. +2. **Bottom Label Sorting**: (Introduced in Trilium 0.62) Child notes with the `#bottom` label will appear at the bottom of the folder. +3. **Property/Label-Based Sorting**: Sorting is based on the parent note's `#sorted` label: + - **Default Sorting**: If `#sorted` has no value, notes are sorted alphabetically. + - **Property Sorting**: If `#sorted` is set to `title`, `dateModified`, or `dateCreated`, notes are sorted based on the specified property. + - **Label Sorting**: If `#sorted` has any other value, this value is treated as the name of a child note's label, and sorting is based on the values of this label. For example, setting `#sorted=myOrder` on the parent note and using `#myOrder=001`, `#myOrder=002`, etc., on child notes. +4. **Alphabetical Sorting**: Used as a last resort when other criteria result in equality. -1. implicit sorting by `#top` label - child notes with this label will appear on the top of the folder. -2. implicit sorting by `#bottom` label (since Trilium 0.62) - child notes with this label will appear on the bottom of the folder. -3. sorting by child's property or a specific label defined on the parent note's `#sorted` label a) parent note has `#sorted` with no value - by default sorting will be done alphabetically b) parent note has `#sorted=title` or `#sorted=dateModified` or `#sorted=dateCreated` - sorting will be done based on the defined note's property c) parent note has `#sorted` label with any other value - this value is the name of the child note's label, whose value will be used for sorting. So e.g. you set `#sorted=myOrder` on the parent note and then child notes will have labels `#myOrder=001`, \`#myOrder=002" etc. -4. sorting of "last resort" is alphabetical - -All comparisons are made string-wise - e.g. "1" < "2" or "2020-10-10" < "2021-01-15" but also "2" > "10". +All comparisons are made string-wise (e.g., "1" < "2" or "2020-10-10" < "2021-01-15", but also "2" > "10"). \ No newline at end of file From fc1d59adb82f4dc15a8a377c84eb21946606a35c Mon Sep 17 00:00:00 2001 From: DL Date: Sat, 20 Jul 2024 21:24:17 +0000 Subject: [PATCH 21/48] #68 --- Wiki/search.md | 226 +++++++++++++++++++------------------------------ 1 file changed, 86 insertions(+), 140 deletions(-) diff --git a/Wiki/search.md b/Wiki/search.md index 1a200e6..bb3ab7a 100644 --- a/Wiki/search.md +++ b/Wiki/search.md @@ -1,192 +1,138 @@ -# Search -* local search - searches within currently displayed note. Press `CTRL-F` to open the search dialog. In server version this is handled by the browser, in desktop (electron) version there's a separate dialog. -* note search - you can find notes by search for text in the title, note's content or note's [attributes](attributes.md). You can also [save search](saved-search.md). - * You can activate note search by clicking on magnifier icon on the left or pressing `CTRL-S` keyboard [shortcut](keyboard-shortcuts.md). +# Search Functionality -Simple note search examples ---------------------------- +## Local Search -`rings tolkien` - fulltext search, this will try to find notes which have anywhere words "rings" and "tolkien" +Local search allows you to search within the currently displayed note. To initiate a local search, press `CTRL-F`. In the server version, this is handled by the browser. In the desktop (electron) version, a separate dialog is provided for this purpose. -`"The Lord of the Rings" Tolkien` - same as above, but "The Lord of the Rings" must be exact match +## Note Search -`note.content *=* rings OR note.content *=* tolkien` to find notes which contain "rings" or "tolkien" +Note search enables you to find notes by searching for text in the title, content, or [attributes](attributes.md) of the notes. You also have the option to [save your searches](saved-search.md). -`towers #book` - combination of fulltext search with attribute search - this looks for notes containing "towers" word anywhere, and they also need to have "book" label +To activate note search, click on the magnifier icon on the left or press the `CTRL-S` keyboard [shortcut](keyboard-shortcuts.md). -`towers #book or #author` - searches notes containing "towers" word anywhere and matching note must have either "book" or "author" label +### Simple Note Search Examples -`towers #!book` - searches notes containing "towers" word anywhere and which do **not** have "book" label +- `rings tolkien`: Full-text search to find notes containing both "rings" and "tolkien". +- `"The Lord of the Rings" Tolkien`: Full-text search where "The Lord of the Rings" must match exactly. +- `note.content *=* rings OR note.content *=* tolkien`: Find notes containing "rings" or "tolkien" in their content. +- `towers #book`: Combine full-text and attribute search to find notes containing "towers" and having the "book" label. +- `towers #book or #author`: Search for notes containing "towers" and having either the "book" or "author" label. +- `towers #!book`: Search for notes containing "towers" and not having the "book" label. +- `#book #publicationYear = 1954`: Find notes with the "book" label and "publicationYear" set to 1954. +- `#genre *=* fan`: Find notes with the "genre" label containing the substring "fan". Additional operators include `*=*` for "contains", `=*` for "starts with", `*=` for "ends with", and `!=` for "is not equal to". +- `#book #publicationYear >= 1950 #publicationYear < 1960`: Use numeric operators to find all books published in the 1950s. +- `#dateNote >= TODAY-30`: A "smart search" to find notes with the "dateNote" label within the last 30 days. Supported smart values include NOW +- seconds, TODAY +- days, MONTH +- months, YEAR +- years. +- `~author.title *=* Tolkien`: Find notes related to an author whose title contains "Tolkien". +- `#publicationYear %= '19[0-9]{2}'`: Use the '%=' operator to match a regular expression (regex). This feature has been available since Trilium 0.52. -`#book #publicationYear = 1954` - will find notes with "book" label and label "publicationYear" containing this specific value +### Advanced Use Cases -`#genre *=* fan` - matches notes with "genre" label which has value which contains "fan" substring. Besides `*=*` for "contains", there's also `=*` for "starts with", `*=` for "ends with", `!=` for "is not equal to" +- `~author.relations.son.title = 'Christopher Tolkien'`: Search for notes with an "author" relation to a note that has a "son" relation to "Christopher Tolkien". This can be modeled with the following note structure: + - Books + - Lord of the Rings + - label: “book” + - relation: “author” points to “J. R. R. Tolkien” note + - People + - J. R. R. Tolkien + - relation: “son” points to "Christopher Tolkien" note + - Christopher Tolkien +- `~author.title *= Tolkien OR (#publicationDate >= 1954 AND #publicationDate <= 1960)`: Use boolean expressions and parentheses to group expressions. Note that expressions starting with a parenthesis need an "expression separator sign" (# or ~) prepended. +- `note.parents.title = 'Books'`: Find notes with a parent named "Books". +- `note.parents.parents.title = 'Books'`: Find notes with a grandparent named "Books". +- `note.ancestors.title = 'Books'`: Find notes with an ancestor named "Books". +- `note.children.title = 'sub-note'`: Find notes with a child named "sub-note". -`#book #publicationYear >= 1950 #publicationYear < 1960` - you can also use numeric operators - this will find all books published in the 1950s +### Search with Note Properties -`#dateNote >= TODAY-30` - special "smart search" will find notes with label "dateNote" with date corresponding to last 30 days. Complete list of smart values: NOW +- seconds, TODAY +- days, MONTH +- months, YEAR +- years +Notes have properties that can be used in searches, such as `noteId`, `dateModified`, `dateCreated`, `isProtected`, `type`, `title`, `text`, `content`, `rawContent`, `ownedLabelCount`, `labelCount`, `ownedRelationCount`, `relationCount`, `ownedRelationCountIncludingLinks`, `relationCountIncludingLinks`, `ownedAttributeCount`, `attributeCount`, `targetRelationCount`, `targetRelationCountIncludingLinks`, `parentCount`, `childrenCount`, `isArchived`, `contentSize`, `noteSize`, and `revisionCount`. -`~author.title *=* Tolkien` - find notes which have relation "author" which points to a note with title containing word "Tolkien" +These properties can be accessed via the `note.` prefix, e.g., `note.type = code AND note.mime = 'application/json'`. -`#publicationYear %= '19[0-9]{2}'` - operator '%=' matches a regular expression (regex). Since Trilium 0.52 +### Order by and Limit -Advanced use cases ------------------- - -`~author.relations.son.title = 'Christopher Tolkien'` - This will search for notes which have “author” relation to a note which has a “son” relation to “Christopher Tolkien” note. This situation can be modeled by this note structure: - -* Books - * Lord of the Rings - * label: “book” - * relation: “author” points to “J. R. R. Tolkien” note -* People - * J. R. R. Tolkien - * relation “son” points to "Christopher Tolkien" note - * Christopher Tolkien - -`~author.title *= Tolkien OR (#publicationDate >= 1954 AND #publicationDate <= 1960)` - you can also use boolean expressions and parenthesis to group expressions - -However, if your search expression starts with a parenthesis, it needs to be prepended by an "expression separator sign", either # or ~. So the equivalent expression, just reordered, would look like: - -`# (#publicationDate >= 1954 AND #publicationDate <= 1960) OR ~author.title *= Tolkien` - -`note.parents.title = 'Books'` will find all notes which have (at least one) parent note with name “Book”. - -`note.parents.parents.title = 'Books'` This again works transitively, so this will find notes whose parent of parent is named ‘Book’. - -`note.ancestors.title = 'Books'` This is sort of extension of parents - this will find notes which have an ancestor anywhere in their note path (so parent, grandparent, grand-grand-parent …) with title ‘Book’. This is a nice way how to reduce the scope of the search to a particular subtree. - -`note.children.title = 'sub-note'` So this works in the other direction and will find notes which have (at least one) child called “sub-note”. - -### Search with note properties - -Note has certain properties which can be also used for searching: - -* `noteId` -* `dateModified` - local dates are in the format "2019-05-19 16:39:47.003+0200" -* `dateCreated` -* `utcDateModified` - UTC dates are in the format "2019-05-19 14:39:47.003Z" -* `utcDateCreated` -* `isProtected` (true, false) -* `type` (text, code, search, relation-map, book) -* `title` (when you want to search specifically the title) -* `text` - search through note title and content -* `content` - search just through note content -* `rawContent` - search through raw note content (HTML tags are kept). Since v0.46. -* `ownedLabelCount` -* `labelCount` (includes inherited labels) -* `ownedRelationCount` -* `relationCount` (includes inherited relations) -* `ownedRelationCountIncludingLinks` and `relationCountIncludingLinks` - count also includes auto-generated relations `imageLink`, `internalLink`, `relationMapLink` and `includeNoteLink` -* `ownedAttributeCount` = `ownedLabelCount` + `ownedRelationCount` -* `attributeCount` = `labelCount` + `relationCount` -* `targetRelationCount` - number of relations targeting this note -* `targetRelationCountIncludingLinks` - count also includes auto-generated relations `imageLink`, `internalLink`, `relationMapLink` and `includeNoteLink` -* `parentCount` - essentially number of [clones](cloning-notes.md) -* `childrenCount` -* `isArchived` (true, false) -* `contentSize` - size of note content in bytes. -* `noteSize` - estimated size of complete note (chiefly note content + note revision contents). Since v0.46. -* `revisionCount` - number of note revisions. - -These are accessed through `note.`, e.g.: - -```text-plain -note.type = code AND note.mime = 'application/json' -``` - -### Order by and limit - -```text-plain +```sql #author=Tolkien orderBy #publicationDate desc, note.title limit 10 ``` -The example above will do the following things (in this sequence): +This example will: -1. find notes with label author having value “Tolkien” -2. order the results by publicationDate in descending order (so the newest first) -3. in case publication date is equal, use note.title as secondary ordering in ascending order (`asc` is the default and thus can be omitted) -4. take only the first 10 results +1. Find notes with the author label "Tolkien". +2. Order the results by `publicationDate` in descending order. +3. Use `note.title` as a secondary ordering if publication dates are equal. +4. Limit the results to the first 10 notes. ### Negation -Some queries can be expressed only with negation: +Some queries can only be expressed with negation: -```text-plain +```sql #book AND not(note.ancestor.title = 'Tolkien') ``` -This will find all the book notes which are not in the "Tolkien" subtree. - -Under the hood --------------- - -### Label and relation shortcuts - -"Full" syntax for searching by labels is the following: - -`note.labels.publicationYear = 1954` or `note.relations.author.title *=* Tolkien` - -But given that searching by labels and relations is pretty common, there exists also a shortcut syntax: - -`#publicationYear = 1954` or `#author.title *=* Tolkien` respectively. +This query finds all book notes not in the "Tolkien" subtree. -### Separating fulltext and attribute parts +## Under the Hood -As you may have noticed from the examples above, search syntax allows seamlessly combining fulltext search with attribute-based search. How is this done? +### Label and Relation Shortcuts -Take `tolkien #book` as an example. It contains: +The "full" syntax for searching by labels is: -1. fulltext tokens - `tolkien` -2. attribute expressions - `#book` +```sql +note.labels.publicationYear = 1954 +``` -The tricky part is to find out where does the fulltext end and where the attribute expression begins. This is done by detecting certain stop-characters/words - all tokens are considered as fulltext before one of `#`, `~` or `note.` prefixes are encountered. After that, all characters/tokens are understood as attribute expression. +For relations: -If you want to use `#`, `~` or `note.` as part of fulltext, you need to escape them, see below for details. +```sql +note.relations.author.title *=* Tolkien +``` -There are certain corner cases where this is not sufficient, e.g: +However, common label and relation searches have shortcut syntax: -```text-plain -tolkien (#publicationYear >= 1950 AND #publicationYear < 1960) OR #book` +```sql +#publicationYear = 1954 +#author.title *=* Tolkien ``` -Here the expression starts with `(` which isn't (intentionally) a stop-character, so the query above will not actually work as intended. Instead, in these corner cases we need to add a separate extra stop character - `#` or `~` so the fixed query should look like: +### Separating Full-Text and Attribute Parts -```text-plain -tolkien # (#publicationYear >= 1950 AND #publicationYear < 1960) OR #book` -``` +Search syntax allows combining full-text search with attribute-based search seamlessly. For example, `tolkien #book` contains: -The extra stop character has no other effect other than separating the fulltext part from the attribute expression part. +1. Full-text tokens - `tolkien` +2. Attribute expressions - `#book` -### Escaping special characters +To detect where full-text ends and attribute expressions begin, certain stop-characters/words (e.g., `#`, `~`, `note.`) are used. If you need to include these in full-text search, escape them: -Symbols or values sometimes have special meaning, which might be not what you intend. This can be fixed by either enclosing the strings containing special characters into quotes or escaping individual characters with backslash: +```sql +"note.txt" +\#hash +#myLabel = 'Say "Hello World"' +``` -`"note.txt"` - "note." is normally stop-prefix, but here it will be used for fulltext search +### Escaping Special Characters -`\#hash` - `#` is normally stop-character, but here it's escaped with backslash, so it's again used for fulltext +Special characters can be enclosed in quotes or escaped with a backslash to be used in full-text search: -`#myLabel = 'Say "Hello World"'` +```sql +"note.txt" +\#hash +#myLabel = 'Say "Hello World"' +``` -There are three supported types of quotes - single, double and backtick. +Three types of quotes are supported: single, double, and backtick. -### Type coercion +### Type Coercion -It's important to realize that a label value is always technically a string, even if it contains logically different value. This then allows you to do things like: +Label values are technically strings but can be coerced for numeric comparisons: -```text-plain +```sql note.dateCreated =* '2019-05' ``` -This will find notes created in May 2019 by simply doing string "starts with" operation on the date. - -This approach does not work well with numbers though, so whenever there is a numeric operator detected, the label values will be coerced from their normal string form into a numeric value for comparison. This then allows for e.g. `#publicationYear >= 1960` work correctly. +This finds notes created in May 2019. Numeric operators like `#publicationYear >= 1960` convert string values to numbers for comparison. -Auto trigger search from URL ----------------------------- +## Auto-Trigger Search from URL -Opening Trilium like in the example below will open the search pane and automatically trigger search for "abc": +You can open Trilium and automatically trigger a search by including the search string in the URL: -```text-plain -http://localhost:8080/#?searchString=abc -``` +`http://localhost:8080/#?searchString=abc` From 0d0f21c4be72a338809cd00b0ea08870184ce9c3 Mon Sep 17 00:00:00 2001 From: DL Date: Sat, 20 Jul 2024 21:26:01 +0000 Subject: [PATCH 22/48] #64 --- Wiki/saved-search.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Wiki/saved-search.md b/Wiki/saved-search.md index a8e05d7..22a73e3 100644 --- a/Wiki/saved-search.md +++ b/Wiki/saved-search.md @@ -1,9 +1,9 @@ -# Saved-search -Trilium provides a way to save common search as a note in the note tree. Search results will then appear as sub-notes of this "saved search" note. You can see how this works in action: +# Saved Searches -![save-search](images/Saved-search%20image.gif) +Trilium allows you to save common searches as notes within the note tree. The search results will appear as sub-notes under these "saved search" notes. Here is an example of how it works: -Location --------- +![save-search](images/saved-search-image.gif) -Saved search is by default stored in the day note. You can also mark some note with `#searchHome` label, all saved searches will be then saved there. There's also `#workspaceSearchHome` variant for \[\[workspaces|workspace\]\]. +## Location + +By default, saved searches are stored in the day note. However, you can designate a different note to store saved searches by marking it with the `#searchHome` label. Additionally, for [workspaces](workspace.md), you can use the `#workspaceSearchHome` label to specify a storage location for saved searches within that workspace. \ No newline at end of file From caaa6fb25988b3a88c84e95dd0899fc9382c8730 Mon Sep 17 00:00:00 2001 From: DL Date: Sat, 20 Jul 2024 21:27:55 +0000 Subject: [PATCH 23/48] #61 --- Wiki/read-only-note.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Wiki/read-only-note.md b/Wiki/read-only-note.md index 317c62b..ed000f9 100644 --- a/Wiki/read-only-note.md +++ b/Wiki/read-only-note.md @@ -1,14 +1,13 @@ -# Read only note -[Text](text-notes.md) or [code](code-notes.md) can be set to be read-only. In such case only read view is presented to the user with the option of editing the note if needed. +# Read-Only Notes -Setting read only view with label ---------------------------------- +Both [text](text-notes.md) and [code](code-notes.md) notes in Trilium can be set to read-only. When a note is in read-only mode, it is presented to the user in a non-editable view, with the option to switch to editing mode if needed. -You can set the note as read only by adding [label](attributes.md) `readOnly`. +## Setting Read-Only Mode with a Label -Auto read only --------------- +To set a note as read-only, add the `readOnly` [label](attributes.md) to the note. -If the note is too large then Trilium will automatically set the note as readOnly as an optimization - displaying such long notes can take a long time in editing mode and this might unnecessarily slow down operation even if editing is not necessary. +## Automatic Read-Only Mode -If you want to keep specific note automatically editable, you can add [label](attributes.md) `autoReadOnlyDisabled`. +For optimization purposes, Trilium will automatically set very large notes to read-only. Displaying such lengthy notes in editing mode can slow down performance, especially when editing is unnecessary. + +If you want to ensure that a specific note remains editable regardless of its size, you can add the `autoReadOnlyDisabled` [label](attributes.md) to the note. From 767d26d3d84520d1cca388b03625b8959d18e8e5 Mon Sep 17 00:00:00 2001 From: DL Date: Wed, 24 Jul 2024 08:11:54 +0000 Subject: [PATCH 24/48] Review PR #94 --- Wiki/saved-search.md | 2 +- Wiki/search.md | 8 ++++---- Wiki/sorting.md | 1 + Wiki/synchronization.md | 6 +++--- Wiki/text-notes.md | 7 +++---- Wiki/tree-manipulation.md | 2 +- Wiki/troubleshooting.md | 6 +++--- Wiki/upgrading-trilium.md | 8 ++++---- Wiki/web-clipper.md | 6 +++--- 9 files changed, 23 insertions(+), 23 deletions(-) diff --git a/Wiki/saved-search.md b/Wiki/saved-search.md index 22a73e3..dd3e161 100644 --- a/Wiki/saved-search.md +++ b/Wiki/saved-search.md @@ -6,4 +6,4 @@ Trilium allows you to save common searches as notes within the note tree. The se ## Location -By default, saved searches are stored in the day note. However, you can designate a different note to store saved searches by marking it with the `#searchHome` label. Additionally, for [workspaces](workspace.md), you can use the `#workspaceSearchHome` label to specify a storage location for saved searches within that workspace. \ No newline at end of file +By default, saved searches are stored in the day note. However, you can designate a different note to store saved searches by marking it with the `#searchHome` label. Additionally, for [workspaces](workspace.md), you can use the `#workspaceSearchHome` label to specify a storage location for saved searches within that workspace. diff --git a/Wiki/search.md b/Wiki/search.md index bb3ab7a..e4c0f5b 100644 --- a/Wiki/search.md +++ b/Wiki/search.md @@ -2,13 +2,13 @@ ## Local Search -Local search allows you to search within the currently displayed note. To initiate a local search, press `CTRL-F`. In the server version, this is handled by the browser. In the desktop (electron) version, a separate dialog is provided for this purpose. +Local search allows you to search within the currently displayed note. To initiate a local search, press CTRL-F. If using a web browser, this will be handled by the browser's native search functionality. In the desktop (electron) version, a separate dialog will apear. ## Note Search -Note search enables you to find notes by searching for text in the title, content, or [attributes](attributes.md) of the notes. You also have the option to [save your searches](saved-search.md). +Note search enables you to find notes by searching for text in the title, content, or [attributes](attributes.md) of the notes. You also have the option to save your searches, which will create a special search note which is visible on your navigation tree and contains the search results as sub-items. -To activate note search, click on the magnifier icon on the left or press the `CTRL-S` keyboard [shortcut](keyboard-shortcuts.md). +To search for notes, click on the magnifying glass icon on the toolbar or press the `CTRL-S` keyboard [shortcut](keyboard-shortcuts.md). ### Simple Note Search Examples @@ -101,7 +101,7 @@ Search syntax allows combining full-text search with attribute-based search seam 1. Full-text tokens - `tolkien` 2. Attribute expressions - `#book` -To detect where full-text ends and attribute expressions begin, certain stop-characters/words (e.g., `#`, `~`, `note.`) are used. If you need to include these in full-text search, escape them: +Trilium detects the separation between full text search and attribute/property search by looking for certain special characters or words that denote attributes and properties (e.g., #, ~, note.). If you need to include these in full-text search, escape them with a backslash so they are processed as regular text: ```sql "note.txt" diff --git a/Wiki/sorting.md b/Wiki/sorting.md index a5ce55b..08317b2 100644 --- a/Wiki/sorting.md +++ b/Wiki/sorting.md @@ -1,6 +1,7 @@ # Sorting Notes You can sort notes by right-clicking the parent note in the note tree and selecting Advanced -> Sort notes by ... +This will sort existing notes, but will not automatically sort future notes added to this parent note ## Automatic/Permanent Sorting diff --git a/Wiki/synchronization.md b/Wiki/synchronization.md index 28dc19b..288c434 100644 --- a/Wiki/synchronization.md +++ b/Wiki/synchronization.md @@ -10,11 +10,11 @@ In this setup, a central server (referred to as the _sync server_) and multiple ### Security Considerations -Setting up the server securely is critical and can be complex. It is crucial to use a valid TLS certificate (HTTPS) rather than an unencrypted HTTP connection to ensure security and avoid potential vulnerabilities. +Setting up the server securely is critical and can be complex. It is crucial to use a valid [TLS certificate](tls-configuration.md) (HTTPS) rather than an unencrypted HTTP connection to ensure security and avoid potential vulnerabilities. ### Synchronizing a Desktop Instance with a Sync Server -This method is used when you already have a desktop instance of Trilium and want to set up a sync server on your web host. +This method is used when you already have a desktop instance of Trilium and want to set up a sync server on your web host. 1. **Server Deployment**: Ensure your server instance is deployed but uninitialized. 2. **Desktop Configuration**: Open your desktop instance, navigate to Options -> Sync tab -> Sync configuration, and set the "Server instance address" to your sync server's address. Click Save. @@ -27,7 +27,7 @@ This method is used when you already have a desktop instance of Trilium and want This method is used when you already have a sync server and want to configure a new desktop instance to sync with it. -1. **Desktop Setup**: Download the [latest release](https://github.com/TriliumNext/Notes/releases/latest) for your platform, unzip it, and run it. +1. **Desktop Setup**: Follow the [desktop installation page](desktop-installation.md). 2. **Initial Configuration**: When prompted, choose the option to set up sync with a sync server. ![screenshot of the sync from server setup page](images/sync-init.png) diff --git a/Wiki/text-notes.md b/Wiki/text-notes.md index 5aca016..ce6fe86 100644 --- a/Wiki/text-notes.md +++ b/Wiki/text-notes.md @@ -16,7 +16,6 @@ The Trilium text note interface does not display toolbars or formatting options 2. Clicking on the block toolbar. - ## Read-Only vs. Editing Mode Text notes are usually opened in edit mode. However, they may open in read-only mode under the following circumstances: @@ -28,7 +27,7 @@ In both cases, it is possible to switch back to editable mode. ## General Formatting -Since Trilium uses CKEditor, any formatting supported by CKEditor is available. Examples include: +Since Trilium uses CKEditor, all of its formatting options are available here. You may use the graphical toolbar shown above, or enter formatting such as markdown markdown directly in the text. Examples include: - **Bold**: Type `**text**` or `__text__` - _Italic_: Type `*text*` or `_text_` @@ -75,7 +74,7 @@ Note: The use of `#` for Heading 1 is not supported because it is reserved for t ## Math Support -Trilium provides math support through KaTeX. +Trilium provides math support through [KaTeX](https://katex.org/). ## Cutting Selection to Sub-Note @@ -89,6 +88,6 @@ Trilium can automate this process. The heading is automatically detected and the ## Including a Note -Text notes can include another note as a read-only widget. This feature is useful for including dynamically generated charts (from scripts & "render HTML" notes) or other advanced use cases. +Trilium can automate this process. Select some text within the note, and in the selection toolbar, click the scissors icon for the "cut & pasted selection to sub-note" action. The heading is automatically detected and the new sub-note is named accordingly. You can also assign a keyboard shortcut for this action. This functionality is available through the block toolbar icon. diff --git a/Wiki/tree-manipulation.md b/Wiki/tree-manipulation.md index 077496e..31f9452 100644 --- a/Wiki/tree-manipulation.md +++ b/Wiki/tree-manipulation.md @@ -19,4 +19,4 @@ Trilium offers efficient keyboard-based manipulation using the following [shortc ## Context Menu -You can also move notes using the familiar cut and paste functions available in the context menu, or with the associated keyboard [shortcuts](keyboard-shortcuts.md): `CTRL-X` (cut) and `CTRL-V` (paste). +You can also move notes using the familiar cut and paste functions available in the context menu, or with the associated keyboard [shortcuts](keyboard-shortcuts.md): `CTRL-C` ([copy](cloning-notes.md)), `CTRL-X` (cut) and `CTRL-V` (paste). diff --git a/Wiki/troubleshooting.md b/Wiki/troubleshooting.md index 3b50853..962ef3b 100644 --- a/Wiki/troubleshooting.md +++ b/Wiki/troubleshooting.md @@ -1,6 +1,6 @@ # Troubleshooting -As TriliumNext is currently in beta, encountering bugs is to be expected. +As Triliumis currently in beta, encountering bugs is to be expected. ## General Quick Fix @@ -22,7 +22,7 @@ TRILIUM_START_NOTE_ID=root ./trilium ## Broken Script Prevents Application Startup -If a custom script causes TriliumNext to crash, and it is set as a startup script or in an active [custom widget](custom-widget.md), start TriliumNext in "safe mode" to prevent any custom scripts from executing: +If a custom script causes Triliumto crash, and it is set as a startup script or in an active [custom widget](custom-widget.md), start Triliumin "safe mode" to prevent any custom scripts from executing: ```sh TRILIUM_SAFE_MODE=true ./trilium @@ -36,7 +36,7 @@ Once Trilium starts, locate and fix or delete the problematic note. Trilium periodically verifies the logical consistency of the database (e.g., ensuring every note has a parent). If inconsistencies are detected, you will be notified via the UI. -In such cases, file a bug report and attach an anonymized database if necessary. +In such cases, file a bug report and attach an [anonymized database](anonymized-database.md) if necessary. ## Restoring Backup diff --git a/Wiki/upgrading-trilium.md b/Wiki/upgrading-trilium.md index 8e3ba35..2a82cd8 100644 --- a/Wiki/upgrading-trilium.md +++ b/Wiki/upgrading-trilium.md @@ -1,18 +1,18 @@ # Upgrading TriliumNext -This document outlines the steps required to upgrade TriliumNext to a new release version. +This document outlines the steps required to upgrade Triliumto a new release version. ## How to Upgrade -TriliumNext does not support built-in automatic upgrades; all updates must be performed manually. The upgrade process varies depending on the installation method: +Triliumdoes not support built-in automatic upgrades; all updates must be performed manually. The upgrade process varies depending on the installation method: - **[Docker Server Installation](docker-server-installation.md)**: Pull the new image and restart the container. - **Other Installations**: Download the latest version from the [release page](https://github.com/TriliumNext/Notes/releases/latest) and replace the existing application files. ## Database Compatibility and Migration -Upon startup, TriliumNext will automatically migrate the [database](database.md) to the new version. Note that after migration, older versions of Trilium will be unable to read the database. If you need to revert to a previous version of TriliumNext and its database, you can restore the [backup](backup.md) that is created prior to migration. +Upon startup, Triliumwill automatically migrate the [database](database.md) to the new version. Note that after migration, older versions of Trilium will be unable to read the database. If you need to revert to a previous version of Triliumand its database, you can restore the [backup](backup.md) that is created prior to migration. ## Sync Compatibility -The [synchronization](synchronization.md) protocol used by TriliumNext is versioned, requiring all members of the sync cluster to use the same protocol version. Therefore, when upgrading to a new version, you may need to upgrade all instances in the sync cluster. Changes to the sync protocol version are typically indicated on the release page. +The [synchronization](synchronization.md) protocol used by Triliumis versioned, requiring all members of the sync cluster to use the same protocol version. Therefore, when upgrading to a new version, you may need to upgrade all instances in the sync cluster. Changes to the sync protocol version are typically indicated on the release page. diff --git a/Wiki/web-clipper.md b/Wiki/web-clipper.md index d70b3a5..6bc4308 100644 --- a/Wiki/web-clipper.md +++ b/Wiki/web-clipper.md @@ -18,20 +18,20 @@ Firefox and Chrome are supported browsers, but the chrome build should work on o Trilium will save these clippings as a new child note under a "clipper inbox" note. -By default, that's the [day note](Day-notes.md) but you can override that by setting the [label](Attributes.md) `clipperInbox`, on any other note. +By default, that's the [day note](day-notes.md) but you can override that by setting the [label](attributes.md) `clipperInbox`, on any other note. If there's multiple clippings from the same page (and on the same day), then they will be added to the same note. **Extension is available from:** * [Project release page](https://github.com/TriliumNext/web-clipper/releases) - .xpi for Firefox and .zip for Chromium based browsers. -* %%{WARNING}%% [Chrome Web Store](https://chrome.google.com/webstore/detail/trilium-web-clipper/dfhgmnfclbebfobmblelddiejjcijbjm?hl=en&authuser=0) +* %%{WARNING}%% [Chrome Web Store](https://chromewebstore.google.com/detail/trilium-web-clipper/dfhgmnfclbebfobmblelddiejjcijbjm) ## Configuration The extension needs to connect to a running Trilium instance. By default, it scans a port range on the local computer to find a desktop Trilium instance. -It's also possible to configure the [server](Server-installation.md) address if you don't run the desktop application, or want it to work without the desktop application running. +It's also possible to configure the [server](server-installation.md) address if you don't run the desktop application, or want it to work without the desktop application running. ## Username From 4b49f0ab2d47ef4acb0fba4c826406cdac03ce6e Mon Sep 17 00:00:00 2001 From: DL Date: Wed, 24 Jul 2024 08:13:56 +0000 Subject: [PATCH 25/48] Review PR #94 - Url Encoding --- Wiki/search.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wiki/search.md b/Wiki/search.md index e4c0f5b..1ec32d1 100644 --- a/Wiki/search.md +++ b/Wiki/search.md @@ -133,6 +133,6 @@ This finds notes created in May 2019. Numeric operators like `#publicationYear > ## Auto-Trigger Search from URL -You can open Trilium and automatically trigger a search by including the search string in the URL: +You can open Trilium and automatically trigger a search by including the search [url encoded](https://meyerweb.com/eric/tools/dencoder/) string in the URL: `http://localhost:8080/#?searchString=abc` From bcd28ab01891bbe12acae948a9ec5e96efb23463 Mon Sep 17 00:00:00 2001 From: DL Date: Wed, 24 Jul 2024 08:17:37 +0000 Subject: [PATCH 26/48] Add missing images --- Wiki/images/text-notes-formatting-block.png | Bin 0 -> 38786 bytes Wiki/images/text-notes-formatting-inline.png | Bin 0 -> 54408 bytes Wiki/text-notes.md | 8 ++------ 3 files changed, 2 insertions(+), 6 deletions(-) create mode 100644 Wiki/images/text-notes-formatting-block.png create mode 100644 Wiki/images/text-notes-formatting-inline.png diff --git a/Wiki/images/text-notes-formatting-block.png b/Wiki/images/text-notes-formatting-block.png new file mode 100644 index 0000000000000000000000000000000000000000..5414b9bc7c74ebef50f6883e6582850864a379cc GIT binary patch literal 38786 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 Aod5s; literal 0 HcmV?d00001 diff --git a/Wiki/text-notes.md b/Wiki/text-notes.md index ce6fe86..b9c8393 100644 --- a/Wiki/text-notes.md +++ b/Wiki/text-notes.md @@ -6,14 +6,10 @@ Trilium utilizes the powerful [CKEditor 5](https://ckeditor.com/ckeditor-5/) as The Trilium text note interface does not display toolbars or formatting options by default. These can be accessed by: -%%{WARNING}%% Image does not exist in repo -![](api/images/aQT4C1G1rjUk/text-notes-formatting-inline.p) - +![inline note formatting](images/text-notes-formatting-inline.png) 1. Selecting text to bring up an inline toolbar. -%%{WARNING}%% Image does not exist in repo -![](api/images/aQT4C1G1rjUk/text-notes-formatting-block.pn) - +![formating note block](images/text-notes-formatting-block.png) 2. Clicking on the block toolbar. ## Read-Only vs. Editing Mode From 3ce3ed9ac78ec211d79f9d017cebc00f856de9c0 Mon Sep 17 00:00:00 2001 From: DL Date: Wed, 24 Jul 2024 08:19:42 +0000 Subject: [PATCH 27/48] add missing image to template.md --- Wiki/template.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Wiki/template.md b/Wiki/template.md index 05e0fea..582b8d3 100644 --- a/Wiki/template.md +++ b/Wiki/template.md @@ -23,8 +23,7 @@ This relationship means the instance note's content is initialized from the temp To create an instance note through the UI: -%%{WARNING}%% Image not in Repo -![](api/images/qGovjbsV4FPX/template-create-instance-note.) +![show child note templates](images/template-create-instance-note.png) For the template to appear in the menu, the template note must have the `#template` label. Do not confuse this with the `~template` relation, which links the instance note to the template note. From f0ba7e768d6345079dbada77051f396d40d15218 Mon Sep 17 00:00:00 2001 From: DL Date: Wed, 24 Jul 2024 08:20:07 +0000 Subject: [PATCH 28/48] template-create-instance-note.png --- Wiki/images/template-create-instance-note.png | Bin 0 -> 86171 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 Wiki/images/template-create-instance-note.png diff --git a/Wiki/images/template-create-instance-note.png b/Wiki/images/template-create-instance-note.png new file mode 100644 index 0000000000000000000000000000000000000000..b89f28afccda932c8a1bd54cf07432d1f61396a1 GIT binary patch literal 86171 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 Suz-NSyPEejif%r9_WuB+gf^J~ literal 0 HcmV?d00001 From 854ec00c143eea367c2a32c8c4a8812ecbbd952d Mon Sep 17 00:00:00 2001 From: DL Date: Thu, 25 Jul 2024 22:31:35 +0000 Subject: [PATCH 29/48] closes #12 --- Wiki/anonymized-database.md | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/Wiki/anonymized-database.md b/Wiki/anonymized-database.md index 54f79d5..bbcb656 100644 --- a/Wiki/anonymized-database.md +++ b/Wiki/anonymized-database.md @@ -1,20 +1,17 @@ -# Anonymized database -### Anonymized database +# Anonymized Database -In some cases, it's necessary to see the database structure to be able to debug the problem. Of course, we can't ask you to send us [Document](document.md) file with your notes. +![screenshot of advanced settings](images/anonymization.png) -For this, Trilium supports anonymization of the database - you can trigger this in Options -> Advanced tab. +In certain scenarios, understanding the structure of a database is crucial for troubleshooting issues. However, sharing your actual [database](database.md) file with personal notes is not advisable. To address this, Trilium offers a feature to anonymize the database, which can be accessed via the Options -> Advanced tab. -![](images/anonymization.png) +This feature creates a copy of your database with all sensitive data removed. Specifically, it strips out note titles, contents, revisions, history, and some non-system attributes while retaining the overall structure and metadata, such as modification dates. After anonymization, the database undergoes a [vacuuming process](https://sqlite.org/lang_vacuum.html) to ensure no sensitive data remnants remain in the file. The anonymized database is saved in the `anonymized` directory within the [data directory](data-directory.md), making it safe to share with bug reports. -This will create a copy of your document and remove all sensitive data (currently note titles, contents, revisions, history and some of the options, and non-system attributes) while leaving all structure and metadata (e.g. date of last change). After this is done, the database is [VACUUMed](https://sqlite.org/lang_vacuum.html) to make sure there's no stale sensitive data in the document file. The resulting file is stored in `anonymized` directory (placed in the [data directory](data-directory.md)). You can safely attach it with your bug report or send it to [zadam.apps@gmail.com](#root/N3Zt66yETj9g) %%{WARNING}%% +## Command Line Anonymization -#### Command line anonymization +If your [database](database.md) is corrupted to the point where Trilium cannot start, the anonymization process can still be executed via the command line: -If the database is corrupted in a way which prevents Trilium to start up, you won't be able to trigger the anonymization from the UI. For such a case, anonymization is also available from command line: - -```text-plain +```sh node src/anonymize.js ``` -This needs to be executed in the directory with Trilium source files, for desktop builds this in `resources/app` directory. +Run this command from the directory containing Trilium's source files, typically found in the `resources/app` directory for desktop builds. From 0d4e1078f462deaf13e57af39d88d0ec06690bac Mon Sep 17 00:00:00 2001 From: DL Date: Thu, 25 Jul 2024 22:38:46 +0000 Subject: [PATCH 30/48] Closes #16 --- Wiki/attachments.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Wiki/attachments.md b/Wiki/attachments.md index 86440f6..8a8b011 100644 --- a/Wiki/attachments.md +++ b/Wiki/attachments.md @@ -1,8 +1,9 @@ -# Attachments -A note can _own_ one or more attachments. The attachment is either an image or file which can be displayed/linked in the note which owns it. +# Attachments -The note is the exclusive owner of its attachments - they can't be linked from other notes. If a user copies the attachment link from one note to another, the attachment itself is copied and from then on lives an independent life. +A [note](note.md) in Trilium can _own_ one or more attachments, which can be either images or files. These attachments can be displayed or linked within the note that owns them. -Attachments is a feature available in Trilium since v0.61. Attachment is now a preferred way to include images into notes. Previously, an image had to be an independent note which could be then displayed in multiple notes, but this approach proved to be complicated. Image as notes still remains as an option, and is a more suitable choice in some cases (e.g. when the particular image is sort of standalone). It is possible to convert an image to an attachment and vice versa. +This can be especially useful to include dependencies for your [scripts](scripts.md). The [Weight Tracker](weight-tracker.md) shows how to use [chartjs](https://chartjs.org/) which is attached to the [script note](script-note.md). -Image attachments are expected to be linked in the owning text note. If it's not linked, it will get deleted in a configurable timeout. +Each note exclusively owns its attachments, meaning attachments cannot be shared or linked from one note to another. If an attachment link is copied to a different note, the attachment itself is duplicated, and the copies are managed independently thereafter. + +Attachments, especially image files, are the recommended method for embedding visuals in notes. It is important to link image attachments within the text of the owning note; otherwise, they will be automatically deleted after a configurable timeout period if not referenced. From f0369f37b3a2e5c22677b3ab2af0a30c92b0999c Mon Sep 17 00:00:00 2001 From: DL Date: Thu, 25 Jul 2024 22:42:12 +0000 Subject: [PATCH 31/48] Closes #17 --- Wiki/attribute-inheritance.md | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/Wiki/attribute-inheritance.md b/Wiki/attribute-inheritance.md index 05f25a5..b56b961 100644 --- a/Wiki/attribute-inheritance.md +++ b/Wiki/attribute-inheritance.md @@ -1,21 +1,26 @@ -# Attribute inheritance -Standard inheritance --------------------- +# Attribute Inheritance in Trilium -Every [attribute](attributes.md) has flag called `isInheritable`. If this is true, then this attribute (key-value) is also applied to all its children notes, children's children notes etc. +## 1. Standard Inheritance -Example how this might be useful is `archived` label which hides its note from Jump to / Add link dialogs. Often times you want to archive some specific subtree, you can do this by making the `archived` label inheritable. +In Trilium, attributes can be automatically inherited by child notes if they have the `isInheritable` flag set to true. This means the attribute (a key-value pair) is applied to the note and all its descendants. -Copying inheritance -------------------- +### Example Use Case -A different kind of inheritance is achieved using `child:` attribute name prefix. We can define that when a note is created under a certain parent note then the new child note will automatically receive defined attributes. The difference from standard inheritance is that these are real new attributes which are completely independent of the parent and will be therefore kept even if the note is moved elsewhere in the note tree. +The `archived` label can be set to be inheritable, allowing you to hide a whole subtree of notes from searches and other dialogs by applying this label at the top level. -For defining the copy-attributes we use `child:` prefix in attribute name, the rest is defined normally. So as an example, when we create a child note in a note with `#child:exampleAttribute` label, then the child note will have `#exampleAttribute` label. This can be even chained, e.g. `#child:child:exampleAttribute`, in this case `#child:exampleAttribute` will be created in the child and `#exampleAttribute` will be created in the child of the child. +## 2. Copying Inheritance -Which kind of attribute inheritance (or if any at all) should be used depends on the specific use case. +Copying inheritance differs from standard inheritance by using a `child:` prefix in the attribute name. This prefix causes new child notes to automatically receive specific attributes from the parent note. These attributes are independent of the parent and will persist even if the note is moved elsewhere. -Template inheritance --------------------- +### How to Use -[Attribute template](template.md) could be also seen as a form of inheritance. +- **Syntax:** `#child:attributeName` +- **Chained Inheritance:** You can chain this inheritance, such as `#child:child:attributeName`, where each child down the hierarchy receives the appropriate attribute. + +### Example + +If a parent note has the label `#child:exampleAttribute`, all newly created child notes will inherit the `#exampleAttribute` label. This can be useful for setting default properties for notes in a specific section. + +## 3. Template Inheritance + +Attributes can also be inherited from [templates](template.md). When a new note is created using a template, it inherits the attributes defined in that template. This is particularly useful for maintaining consistency across notes that follow a similar structure or function. \ No newline at end of file From e38553dbee73821a3c5295efa1a24f2dbfe0eab1 Mon Sep 17 00:00:00 2001 From: DL Date: Thu, 25 Jul 2024 22:45:28 +0000 Subject: [PATCH 32/48] Closes #18 --- Wiki/attributes.md | 196 +++++++++++++++++++-------------------------- 1 file changed, 82 insertions(+), 114 deletions(-) diff --git a/Wiki/attributes.md b/Wiki/attributes.md index 7e7b3cb..97801b7 100644 --- a/Wiki/attributes.md +++ b/Wiki/attributes.md @@ -1,114 +1,82 @@ -# Attributes -Note attributes are key-value records owned by (assigned to) given note. - -There are 2 types of attributes: - -* Labels - simple key-value text record -* Relation - specifies named relation (link) to another note - -Sometimes we're talking about labels and relations - keep in mind that both of them are types of attributes. - -![](images/attributes.png) - -Labels ------- - -Labels can be used for several things: - -* as labels with optional value - e.g. when cataloguing books, you might add labels like #year=1999, #genre="sci-fi", #author="Neal Stephenson" -* attributes can be used to configure some advanced features / settings - see below -* plugins / scripts can use these to mark notes with some special values / metadata (e.g. [Weight Tracker](weight-tracker.md) will have "weight" attribute on [day notes](day-notes.md) based on whose it can create chart). - -Labels can be used for [searching](search.md). - -### Standard labels - -The following labels are used for advanced configuration: - -* `disableVersioning` - disables auto-versioning. Useful for e.g. large, but unimportant notes - e.g. large JS libraries used for scripting -* `calendarRoot` - marks note which should be used as root for [day notes](day-notes.md). Only one should be marked as such. -* `archived` - notes with this label won't be visible by default in search results (also in Jump To, Add Link dialogs etc). -* `excludeFromExport` - notes (with their sub-tree) won't be included in any note export. -* `run` - defines on which events script should run. Possible values are: - * `frontendStartup` - when Trilium frontend starts up (or is refreshed). - * `backendStartup` - when Trilium backend starts up. - * `hourly` - run once an hour. You can use additional label `runAtHour` to specify at which hour. - * `daily` - run once a day. -* `runAtHour` - On which hour should this run. Should be used together with `#run=hourly`. Can be defined multiple times for more runs during the day. -* `runOnInstance` - define which trilium instance this should run on. Defaults to all instances. -* `disableInclusion` - scripts with this label won't be included into parent script execution. -* `sorted` - keeps child notes sorted (by title, alphabetically. See [Sorting](sorting.md)). -* `top` - keeps this note at the top of the list within its parent (applies only on parents with `sorted` attribute). -* `hidePromotedAttributes` - hide promoted attributes on this note. -* `readOnly` - editor is in read only mode. Works only for text and code notes. See some use cases [here](https://github.com/TriliumNext/Notes/issues/371). -* `autoReadOnlyDisabled` - text/code notes can be set automatically into read mode when they are too large. You can disable this behavior on per-note basis by adding this label to the note -* `appCss` - marks CSS notes which are loaded into the Trilium application and can thus be used to modify Trilium's looks. -* `appTheme` - marks CSS notes which are full Trilium themes and are thus available in Trilium options. -* `cssClass` - the value of this label is then added as CSS class to the node representing the given note in the tree. This can be useful for advanced [themes](themes.md). Can be used in `template` notes. -* `iconClass` - the value of this label is added as a CSS class to the icon on the tree, which can help visually distinguish the notes in the tree. An example might be `bx bx-home` - icons are taken from [boxicons](https://boxicons.com/). Can be used in [template](template.md) notes. -* `pageSize`\- number of items per page in note listing. -* `customRequestHandler` and `customResourceProvider` - see [Custom request handler](custom-request-handler.md) -* `widget` - marks this note as a custom widget, which will be added to the Trilium component tree. See [Custom widget](custom-widget.md). -* `workspace`, `workspaceIconClass`, `workspaceTabBackgroundColor`, `workspaceCalendarRoot` - see [Workspace](workspace.md) -* `searchHome` - new search notes will be created as children of this note (otherwise they are created in [Day notes](day-notes.md)) -* `hoistedSearchHome` - new search notes will be created as children of this note when hoisted to some ancestor of this note -* `inbox` - default inbox location for new notes - when you create a note using "new note" button in the sidebar, notes will be created as child notes in the note marked as with `#inbox` label. -* `hoistedInbox` - default inbox location for new notes when hoisted to some ancestor of this note -* `sqlConsoleHome` - default location of SQL console notes -* `bookmarked` and `bookmarkFolder` - see [Bookmarks](bookmarks.md) -* `shareXXX` labels - see [Sharing](sharing.md) -* `keyboardShortcut` - can be defined as e.g. "Ctrl+I". Pressing this keyboard combination will then bring you to the note on which it is defined. Note that Trilium must be reloaded/restarted (Ctrl+R) for changes to be in effect. -* `displayRelations` and `hideRelations` - comma delimited names of relations which should be displayed/hidden. All other relations will be hidden/visible. -* `hideRelations` - comma delimited names of relations which should be hidden. -* `titleTemplate` - see [Default note title](default-note-title.md). -* `template` - this note will appear in the selection of available templates when creating new notes. -* `toc` - `#toc` or `#toc=show` will force the table of contents to be shown, `#toc=hide` will force hiding it. -* `color` - defines the color of the note in links, tree etc. Use any valid CSS value like `red` or `#f0a349` -* `hideChildrenOverview` - Hides child notes from being displayed in the editor of the parent note -* `viewType` - Allows setting the view of the child notes inside the editor to a grid or list. Possible values: - * `grid` - displays child notes in a grid - * `list` - displays child notes in a list - -Relations ---------- - -Relation is a kind of link between two notes. - -This could be used when you e.g. keep a book database, you can use relations to keep formal links between the book (note) and the book's author (note) by defining an "author" relation on the book note pointing to the author's note. - -Relations are used also for some advanced scripting - like attaching scripts to events happening on certain note. - -### Standard relations - -[Events](events.md): - -* `runOnNoteCreation` - executes when note is created on backend. Use this relation if you want to run the script for all notes created under a specific subtree. In that case, create it on the subtree root note and make it inheritable. A new note created within the subtree (any depth) will trigger the script. -* `runOnChildNoteCreation` - executes when new note is created under the note where this relation is defined -* `runOnNoteTitleChange` - executes when note title is changed (includes note creation as well) -* `runOnNoteChange` - executes when note is changed (includes note creation as well) -* `runOnNoteDeletion` - executes when note is being deleted. -* `runOnBranchCreation` and `runOnBranchDeletion` - executes when a branch is created/deleted. Branches are links between a parent and a child note, and are created when e.g. cloning or moving notes. -* `runOnAttributeCreation` - executes when new attribute is created for the note which defines this relation -* `runOnAttributeChange` - executes when the attribute is changed of a note which defines this relation. This is triggered also when the attribute is deleted - -Other relations: - -* `template` - attached note's attributes will be inherited even without parent-child relationship. See [template](template.md) for details. -* `renderNote` - notes of type "render HTML note" will be rendered using a code note (HTML or script) and it is necessary to point using this relation to which note should be rendered -* `widget` - target of this relation will be executed and rendered as a widget in the sidebar -* `shareXXX` relations described in [Sharing](sharing.md) - -Multiplicity ------------- - -Attributes allow multiplicity - there can be multiple attributes with the same name. We're then calling such attributes "multivalued". - -Attribute definitions / promoted attributes -------------------------------------------- - -Special kind of labels are used to create "label/attribute" definitions. See [Promoted attributes](promoted-attributes.md) for details. - -Attribute inheritance ---------------------- - -See [Attribute inheritance](attribute-inheritance.md). +# Attributes in Trilium + +In Trilium, attributes are key-value pairs assigned to notes, providing additional metadata or functionality. There are two primary types of attributes: + +1. **Labels**: Simple key-value text records. +2. **Relations**: Named links to other notes. + +These attributes play a crucial role in organizing, categorizing, and enhancing the functionality of notes. + +![Screenshot of 'task template' attributes](images/attributes.png) + +## Labels + +Labels in Trilium can be used for a variety of purposes: + +- **Metadata**: Assign labels with optional values for categorization, such as `#year=1999`, `#genre="sci-fi"`, or `#author="Neal Stephenson"`. +- **Configuration**: Labels can configure advanced features or settings. +- **Scripts and Plugins**: Used to tag notes with special metadata, such as the "weight" attribute in the [Weight Tracker](weight-tracker.md). + +Labels are also searchable, enhancing note retrieval. + +### Common Labels for Advanced Configuration + +- **`disableVersioning`**: Disables automatic versioning, ideal for large, unimportant notes like script libraries. +- **`calendarRoot`**: Marks the note as the root for [day notes](day-notes.md). Only one note should carry this label. +- **`archived`**: Hides notes from default search results and dialogs. +- **`excludeFromExport`**: Excludes notes and their subtrees from export operations. +- **`run`**: Specifies events to trigger scripts (e.g., `frontendStartup`, `hourly`). +- **`runAtHour`**: Defines specific hours for scripts to run, used with `#run=hourly`. +- **`disableInclusion`**: Prevents a script from being included in parent script executions. +- **`sorted`**: Automatically sorts child notes alphabetically by title. +- **`top`**: Keeps the note at the top of its parent's list, useful with `sorted`. +- **`hidePromotedAttributes`**: Hides certain attributes in the note's display. +- **`readOnly`**: Sets the note to read-only mode, applicable to text and code notes. +- **`autoReadOnlyDisabled`**: Disables automatic read-only mode for large notes. +- **`appCss`**: Marks CSS notes used to modify Trilium’s appearance. +- **`appTheme`**: Marks full CSS themes available in Trilium's options. +- **`cssClass`**: Adds a CSS class to the note's representation in the tree. +- **`iconClass`**: Adds a CSS class to the note's icon, useful for distinguishing notes visually. +- **`pageSize`**: Specifies the number of items per page in note listings. +- **`customRequestHandler` and `customResourceProvider`**: Refer to [Custom request handler](custom-request-handler.md). +- **`widget`**: Marks a note as a custom widget, added to Trilium's component tree. +- **`workspace` and related attributes**: See [Workspace](workspace.md) for more details. +- **`searchHome`**: Specifies the parent for new search notes. +- **`inbox`**: Designates a default location for new notes created via the sidebar. +- **`sqlConsoleHome`**: Default location for SQL console notes. +- **`bookmarked` and `bookmarkFolder`**: See [Bookmarks](bookmarks.md). +- **`shareXXX`**: See [Sharing](sharing.md). +- **`keyboardShortcut`**: Assigns a keyboard shortcut to open the note. +- **`displayRelations` and `hideRelations`**: Manages the display of note relations. +- **`titleTemplate`**: See [Default note title](default-note-title.md). +- **`template`**: Makes the note available as a template. +- **`toc`**: Controls the visibility of the table of contents. +- **`color`**: Defines the color of the note in the tree and links. +- **`hideChildrenOverview`**: Hides child notes in the parent note's editor. +- **`viewType`**: Sets the view of child notes (grid or list). + +## Relations + +Relations define connections between notes, similar to links. + +### Uses + +- **Metadata Relationships**: For example, linking a book note to an author note. +- **Scripting**: Attaching scripts to events or conditions related to the note. + +### Common Relations + +- **Event-based Relations**: Such as `runOnNoteCreation` or `runOnNoteChange`, which trigger scripts on specific actions. +- **Other Relations**: Include `template`, `renderNote`, `widget`, and sharing-related relations. + +## Multiplicity + +Attributes in Trilium can be multivalued, meaning multiple attributes with the same name can coexist, known as "multivalued" attributes. + +## Attribute Definitions and Promoted Attributes + +Special labels create "label/attribute" definitions, enhancing the organization and management of attributes. For more details, see [Promoted attributes](promoted-attributes.md). + +## Attribute Inheritance + +Trilium supports attribute inheritance, allowing child notes to inherit attributes from their parents. For more information, see [Attribute inheritance](attribute-inheritance.md). \ No newline at end of file From 63229bdf2efc672e67042572a4a069692b06e2c5 Mon Sep 17 00:00:00 2001 From: DL Date: Thu, 25 Jul 2024 22:48:15 +0000 Subject: [PATCH 33/48] Closes #20 --- Wiki/book-note.md | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/Wiki/book-note.md b/Wiki/book-note.md index 3f37a0f..427d207 100644 --- a/Wiki/book-note.md +++ b/Wiki/book-note.md @@ -1,10 +1,21 @@ -# Book note -Book [note](note.md) is a type of note which displays all its children's content in a linear fashion, so you can read note subtree like a book. This can be useful for reading many smaller notes. Seeing an example might explain this concept better: +# Book Notes in Trilium -![](images/book-note.png) +A **Book Note** in Trilium is a special type of [note](note.md) designed to display the contents of its child notes sequentially, creating a linear, book-like reading experience. This format is particularly useful for viewing multiple smaller notes in a cohesive, continuous manner. -Notice in the tree on the left pane how "node.js" note has some children and these are then displayed on the right pane. +![Book Note Example](images/book-note.png) -You can also switch to "grid view" in the Book properties: +In the example above, the "node.js" note on the left panel contains several child notes. The right panel displays the content of these child notes as a single continuous document. -![](images/book-note-pictures.png) +## Features + +### Linear Display + +The Book Note format compiles the contents of all child notes into one continuous view. This makes it ideal for reading extensive information broken into smaller, manageable segments. + +### Grid View Option + +Trilium also offers a "Grid View" option within the Book Note properties. This view presents the child notes in a grid format, allowing for a more visual navigation experience. + +![Grid View Example](images/book-note-pictures.png) + +Switching between these views can be easily managed through the Book Note's settings, allowing users to choose the format that best suits their reading or navigation preferences. From 1daa7ecf73b51aa56a770c3029e71d3f3266482d Mon Sep 17 00:00:00 2001 From: DL Date: Thu, 25 Jul 2024 22:55:42 +0000 Subject: [PATCH 34/48] Closes #31 --- Wiki/desktop-installation.md | 29 +++++--- Wiki/docker-server-installation.md | 113 ++++++++++++++++------------- 2 files changed, 79 insertions(+), 63 deletions(-) diff --git a/Wiki/desktop-installation.md b/Wiki/desktop-installation.md index e6c86c8..435cc76 100644 --- a/Wiki/desktop-installation.md +++ b/Wiki/desktop-installation.md @@ -1,17 +1,22 @@ -# Desktop-installation -If you want to use Trilium on the desktop, download binary release for your platform from [latest release](https://github.com/TriliumNext/Notes/releases/latest), unzip the package and run `trilium` executable. +# Desktop Installation Guide for Trilium -Startup scripts ---------------- +To install Trilium on your desktop, follow these steps: -There are also some other options to start Trilium: +1. **Download the Latest Release**: Obtain the appropriate binary release for your operating system from the [latest release page](https://github.com/TriliumNext/Notes/releases/latest) on GitHub. +2. **Extract the Package**: Unzip the downloaded package to a location of your choice. +3. **Run the Application**: Launch Trilium by executing the `trilium` executable found within the unzipped folder. -* `trilium-no-cert-check` - Trilium will not validate the certificates, useful e.g. when you're syncing against a sync server with self-signed certificate - * Alternatively you can set `NODE_TLS_REJECT_UNAUTHORIZED=0` environment variable to the Trilium process. -* `trilium-portable` - Trilium will try to create [data directory](data-directory.md) in the trilium's directory -* `trilium-safe-mode` - start up in "safe mode" which disables any startup scripts which might e.g. crash the application +## Startup Scripts -Synchronization ---------------- +Trilium offers various startup scripts to customize your experience: -If you are using a desktop instance and would like to sync with your server instance: [Synchronization](synchronization.md) +- **`trilium-no-cert-check`**: Starts Trilium without validating [TLS certificates](tls-configuration.md), useful if connecting to a server with a self-signed certificate. + - Alternatively, set the `NODE_TLS_REJECT_UNAUTHORIZED=0` environment variable before starting Trilium. + +- **`trilium-portable`**: Launches Trilium in portable mode, where the [data directory](data-directory.md) is created within the application's directory, making it easy to move the entire setup. + +- **`trilium-safe-mode`**: Boots Trilium in "safe mode," disabling any startup scripts that might cause the application to crash. + +## Synchronization + +For users running Trilium on a desktop who wish to synchronize their data with a server instance, refer to the [Synchronization Guide](synchronization.md) for detailed instructions. diff --git a/Wiki/docker-server-installation.md b/Wiki/docker-server-installation.md index a5729b1..7a88996 100644 --- a/Wiki/docker-server-installation.md +++ b/Wiki/docker-server-installation.md @@ -1,93 +1,104 @@ -# Docker-server-installation -Trilium can be run as docker image. This is recommended way to deploy Trilium on servers. +# Docker Server Installation for Trilium -Official docker images are published on docker hub for **AMD64**, **ARMv6**, **ARMv7** and **ARMv8/64**: [https://hub.docker.com/r/zadam/trilium/](https://hub.docker.com/r/zadam/trilium/)%%{WARNING}%% +Trilium can be deployed using a Docker image, which is the recommended method for server installations. Official Docker images for **AMD64**, **ARMv6**, **ARMv7**, and **ARMv8/64** are available on [Docker Hub](https://hub.docker.com/r/zadam/trilium/). %%%{WARNING}%%% zadams dockerhub -Prerequisites -------------- +## Prerequisites -To start, you will need to have docker installed on your computer. Here are two guides that can help: +Ensure Docker is installed on your system. Here are guides to help with installation: -* [https://docs.docker.com/engine/install/ubuntu/](https://docs.docker.com/engine/install/ubuntu/) -* [https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-18-04](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-18-04) +- [Docker Installation on Ubuntu](https://docs.docker.com/engine/install/ubuntu/) +- [DigitalOcean Guide to Docker on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-18-04) -Trilium docker container requires running as root, check if this is possible in your environment. +**Note:** Trilium's Docker container requires root privileges to operate correctly. -Pull image ----------- +## Pulling the Docker Image -```text-plain -docker pull zadam/trilium:[VERSION] %%{WARNING}%% -``` +To pull the Trilium image, use the following command, replacing `[VERSION]` with the desired version or tag, such as `0.52-latest` or just `latest`: + +%%%{WARNING}%%% zadams container -Replace \[VERSION\] for actual latest version or use "series" tag - e.g. `0.52-latest`. +```sh +docker pull zadam/trilium:[VERSION] +``` -**It's not recommended to use "latest" tag since it may upgrade your Trilium instance to a new minor version, which may potentially break your sync setup or cause other issues.** +**Warning:** Avoid using the "latest" tag, as it may automatically upgrade your instance to a new minor version, potentially disrupting sync setups or causing other issues. -Prepare data directory on the host system ------------------------------------------ +## Preparing the Data Directory -Trilium needs a directory where it can store its data, this then needs to be mounted into the docker container. The container needs to runs as a root to be able to access it in write mode. +Trilium requires a directory on the host system to store its data. This directory must be mounted into the Docker container with write permissions. -Run image ---------- +## Running the Docker Container -These commands mount the volume to the host system so that trilium's data (most importantly [database](database.md)) is persisted and not cleared after container stops. +### Local Access Only -### Local only +Run the container to make it accessible only from the localhost. This setup is suitable for testing or when using a proxy server like Nginx or Apache. -This will run the container so that it only available on the localhost. Use this to test the installation from a web browser on the same machine you run this command on, or if you are using a proxy with nginx/apache. +%%%{WARNING}%%% zadams container -```text-plain -sudo docker run -t -i -p 127.0.0.1:8080:8080 -v ~/trilium-data:/home/node/trilium-data zadam/trilium:[VERSION] %%{WARNING}%% +```sh +sudo docker run -t -i -p 127.0.0.1:8080:8080 -v ~/trilium-data:/home/node/trilium-data zadam/trilium:[VERSION] ``` -1. Test to see that the docker image is running with `docker ps` -2. Access the trilium by opening a browser and go to `127.0.0.1:8080` +1. Verify the container is running using `docker ps`. +2. Access Trilium via a web browser at `127.0.0.1:8080`. -### Local network only +### Local Network Access -This command will run the container so that it is only available on your local network. This is preferable if you do not want to open ports to the rest of the internet. However, you can still access it from outside by using a VPN like WireGuard to get into your own network first. This method does assume that your local network limits outside access. +To make the container accessible only on your local network, first create a new Docker network: -First, you have to create a new network in Docker to access your local network. Here is an example, give note to "parent" and the network numbers as it may differ from your own. For more detailed information, [click here](https://blog.oddbit.com/post/2018-03-12-using-docker-macvlan-networks/). +%%%{WARNING}%%% zadams container -```text-plain +```sh docker network create -d macvlan -o parent=eth0 --subnet 192.168.2.0/24 --gateway 192.168.2.254 --ip-range 192.168.2.252/27 mynet ``` -Secondly, you have to adjust the docker run command so it takes this network into account but keep using localhost to limit the accessibility of the ports to the outside world. +Then, run the container with the network settings: -```text-plain +%%%{WARNING}%%% zadams container + +```sh docker run --net=mynet -d -p 127.0.0.1:8080:8080 -v ~/trilium-data:/home/node/trilium-data zadam/trilium:0.52-latest ``` -Alternatively, if you wish to have the saved data and the application using a different UID & GID than 1000:1000, you can use the USER\_UID & USER\_GID environment variables: +To set a different user ID (UID) and group ID (GID) for the saved data, use the `USER_UID` and `USER_GID` environment variables: + +%%%{WARNING}%%% zadams container -```text-plain -docker run --net=mynet -d -p 127.0.0.1:8080:8080 -e "USER_UID=1001" -e "USER_GID=1001" -v ~/trilium-data:/home/node/trilium-data zadam/trilium:0.52-latest %%{WARNING}%% +```sh +docker run --net=mynet -d -p 127.0.0.1:8080:8080 -e "USER_UID=1001" -e "USER_GID=1001" -v ~/trilium-data:/home/node/trilium-data zadam/trilium:0.52-latest ``` -Finally, use docker inspect to find your local IP address to connect to. You can access this from all your devices connected to the local network as such: \[local:ip\]:8080. +Find the local IP address using `docker inspect [container_name]` and access the service from devices on the local network. -```text-plain -docker ps -docker inspect [container_name] -``` +#### Reverse Proxy -### Available anywhere +1. [Nginx](nginx-proxy-setup.md) +2. [Apache](apache-proxy-setup.md) -This will run the container as a background process and will be available from any IP address +### Global Access -```text-plain -docker run -d -p 0.0.0.0:8080:8080 -v ~/trilium-data:/home/node/trilium-data zadam/trilium:[VERSION] %%{WARNING}%% +To allow access from any IP address, run the container as follows: + +%%%{WARNING}%%% zadams container + +```sh +docker run -d -p 0.0.0.0:8080:8080 -v ~/trilium-data:/home/node/trilium-data zadam/trilium:[VERSION] ``` -To stop this background docker process use `docker ps` to get the "CONTAINER ID" and then use `docker stop ` +Stop the container with `docker stop `, where the container ID is obtained from `docker ps`. + +### Custom Data Directory -### Different data directory location +For a custom data directory, use: + +%%%{WARNING}%%% zadams container + +```sh +-v ~/YourOwnDirectory:/home/node/trilium-data zadam/trilium:[VERSION] +``` -If you want to run your instance in a non-default way, please use the volume switch as follows: `-v ~/YourOwnDirectory:/home/node/trilium-data zadam/trilium:[VERSION]`. It is important to be aware of how Docker works for volumes, with the first path being your own and the second the one to virtually bind to. [https://docs.docker.com/storage/volumes/](https://docs.docker.com/storage/volumes/) +Ensure to understand Docker's volume mapping: the first path is the host directory, and the second is the container's path. More details can be found in the [Docker Volumes Documentation](https://docs.docker.com/storage/volumes/). -### Note about --user directive +### Note on --user Directive -Please note, the --user directive is not supported and the container will not run without root. Instead please use the USER\_UID & USER\_GID environment variables as shown above. +The `--user` directive is unsupported. Instead, use the `USER_UID` and `USER_GID` environment variables to set the appropriate user and group IDs. From 9bc2a3a994d14d89b5755d030aaef22d5d0fb4c9 Mon Sep 17 00:00:00 2001 From: meichthys Date: Sun, 28 Jul 2024 00:09:50 -0400 Subject: [PATCH 35/48] clarify the location of options --- Wiki/anonymized-database.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wiki/anonymized-database.md b/Wiki/anonymized-database.md index bbcb656..9667d56 100644 --- a/Wiki/anonymized-database.md +++ b/Wiki/anonymized-database.md @@ -2,7 +2,7 @@ ![screenshot of advanced settings](images/anonymization.png) -In certain scenarios, understanding the structure of a database is crucial for troubleshooting issues. However, sharing your actual [database](database.md) file with personal notes is not advisable. To address this, Trilium offers a feature to anonymize the database, which can be accessed via the Options -> Advanced tab. +In certain scenarios, understanding the structure of a database is crucial for troubleshooting issues. However, sharing your actual [database](database.md) file with personal notes is not advisable. To address this, Trilium offers a feature to anonymize the database. This feature can be accessed via Menu -> Options -> Advanced tab. This feature creates a copy of your database with all sensitive data removed. Specifically, it strips out note titles, contents, revisions, history, and some non-system attributes while retaining the overall structure and metadata, such as modification dates. After anonymization, the database undergoes a [vacuuming process](https://sqlite.org/lang_vacuum.html) to ensure no sensitive data remnants remain in the file. The anonymized database is saved in the `anonymized` directory within the [data directory](data-directory.md), making it safe to share with bug reports. From 448d0f0b3224ab11f7e91e5cc46bd11293437fb9 Mon Sep 17 00:00:00 2001 From: meichthys Date: Sun, 28 Jul 2024 00:19:56 -0400 Subject: [PATCH 36/48] add tics around `true` and add newline at end of file --- Wiki/attribute-inheritance.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Wiki/attribute-inheritance.md b/Wiki/attribute-inheritance.md index b56b961..c34c01c 100644 --- a/Wiki/attribute-inheritance.md +++ b/Wiki/attribute-inheritance.md @@ -2,7 +2,7 @@ ## 1. Standard Inheritance -In Trilium, attributes can be automatically inherited by child notes if they have the `isInheritable` flag set to true. This means the attribute (a key-value pair) is applied to the note and all its descendants. +In Trilium, attributes can be automatically inherited by child notes if they have the `isInheritable` flag set to `true`. This means the attribute (a key-value pair) is applied to the note and all its descendants. ### Example Use Case @@ -23,4 +23,4 @@ If a parent note has the label `#child:exampleAttribute`, all newly created chil ## 3. Template Inheritance -Attributes can also be inherited from [templates](template.md). When a new note is created using a template, it inherits the attributes defined in that template. This is particularly useful for maintaining consistency across notes that follow a similar structure or function. \ No newline at end of file +Attributes can also be inherited from [templates](template.md). When a new note is created using a template, it inherits the attributes defined in that template. This is particularly useful for maintaining consistency across notes that follow a similar structure or function. From 830bf8d572825f593204185c8cde08f350b4c2dc Mon Sep 17 00:00:00 2001 From: meichthys Date: Sun, 28 Jul 2024 00:26:42 -0400 Subject: [PATCH 37/48] Remove period from non-sentence lines --- Wiki/attributes.md | 88 +++++++++++++++++++++++----------------------- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/Wiki/attributes.md b/Wiki/attributes.md index 97801b7..edad597 100644 --- a/Wiki/attributes.md +++ b/Wiki/attributes.md @@ -2,8 +2,8 @@ In Trilium, attributes are key-value pairs assigned to notes, providing additional metadata or functionality. There are two primary types of attributes: -1. **Labels**: Simple key-value text records. -2. **Relations**: Named links to other notes. +1. **Labels**: Simple key-value text records +2. **Relations**: Named links to other notes These attributes play a crucial role in organizing, categorizing, and enhancing the functionality of notes. @@ -13,47 +13,47 @@ These attributes play a crucial role in organizing, categorizing, and enhancing Labels in Trilium can be used for a variety of purposes: -- **Metadata**: Assign labels with optional values for categorization, such as `#year=1999`, `#genre="sci-fi"`, or `#author="Neal Stephenson"`. -- **Configuration**: Labels can configure advanced features or settings. -- **Scripts and Plugins**: Used to tag notes with special metadata, such as the "weight" attribute in the [Weight Tracker](weight-tracker.md). +- **Metadata**: Assign labels with optional values for categorization, such as `#year=1999`, `#genre="sci-fi"`, or `#author="Neal Stephenson"` +- **Configuration**: Labels can configure advanced features or settings +- **Scripts and Plugins**: Used to tag notes with special metadata, such as the "weight" attribute in the [Weight Tracker](weight-tracker.md) Labels are also searchable, enhancing note retrieval. ### Common Labels for Advanced Configuration -- **`disableVersioning`**: Disables automatic versioning, ideal for large, unimportant notes like script libraries. -- **`calendarRoot`**: Marks the note as the root for [day notes](day-notes.md). Only one note should carry this label. -- **`archived`**: Hides notes from default search results and dialogs. -- **`excludeFromExport`**: Excludes notes and their subtrees from export operations. -- **`run`**: Specifies events to trigger scripts (e.g., `frontendStartup`, `hourly`). -- **`runAtHour`**: Defines specific hours for scripts to run, used with `#run=hourly`. -- **`disableInclusion`**: Prevents a script from being included in parent script executions. -- **`sorted`**: Automatically sorts child notes alphabetically by title. -- **`top`**: Keeps the note at the top of its parent's list, useful with `sorted`. -- **`hidePromotedAttributes`**: Hides certain attributes in the note's display. -- **`readOnly`**: Sets the note to read-only mode, applicable to text and code notes. -- **`autoReadOnlyDisabled`**: Disables automatic read-only mode for large notes. -- **`appCss`**: Marks CSS notes used to modify Trilium’s appearance. -- **`appTheme`**: Marks full CSS themes available in Trilium's options. -- **`cssClass`**: Adds a CSS class to the note's representation in the tree. -- **`iconClass`**: Adds a CSS class to the note's icon, useful for distinguishing notes visually. -- **`pageSize`**: Specifies the number of items per page in note listings. -- **`customRequestHandler` and `customResourceProvider`**: Refer to [Custom request handler](custom-request-handler.md). -- **`widget`**: Marks a note as a custom widget, added to Trilium's component tree. -- **`workspace` and related attributes**: See [Workspace](workspace.md) for more details. -- **`searchHome`**: Specifies the parent for new search notes. -- **`inbox`**: Designates a default location for new notes created via the sidebar. -- **`sqlConsoleHome`**: Default location for SQL console notes. -- **`bookmarked` and `bookmarkFolder`**: See [Bookmarks](bookmarks.md). -- **`shareXXX`**: See [Sharing](sharing.md). -- **`keyboardShortcut`**: Assigns a keyboard shortcut to open the note. -- **`displayRelations` and `hideRelations`**: Manages the display of note relations. -- **`titleTemplate`**: See [Default note title](default-note-title.md). -- **`template`**: Makes the note available as a template. -- **`toc`**: Controls the visibility of the table of contents. -- **`color`**: Defines the color of the note in the tree and links. -- **`hideChildrenOverview`**: Hides child notes in the parent note's editor. -- **`viewType`**: Sets the view of child notes (grid or list). +- **`disableVersioning`**: Disables automatic versioning, ideal for large, unimportant notes like script libraries +- **`calendarRoot`**: Marks the note as the root for [day notes](day-notes.md). Only one note should carry this label +- **`archived`**: Hides notes from default search results and dialogs +- **`excludeFromExport`**: Excludes notes and their subtrees from export operations +- **`run`**: Specifies events to trigger scripts (e.g., `frontendStartup`, `hourly`) +- **`runAtHour`**: Defines specific hours for scripts to run, used with `#run=hourly` +- **`disableInclusion`**: Prevents a script from being included in parent script executions +- **`sorted`**: Automatically sorts child notes alphabetically by title +- **`top`**: Keeps the note at the top of its parent's list, useful with `sorted` +- **`hidePromotedAttributes`**: Hides certain attributes in the note's display +- **`readOnly`**: Sets the note to read-only mode, applicable to text and code notes +- **`autoReadOnlyDisabled`**: Disables automatic read-only mode for large notes +- **`appCss`**: Marks CSS notes used to modify Trilium’s appearance +- **`appTheme`**: Marks full CSS themes available in Trilium's options +- **`cssClass`**: Adds a CSS class to the note's representation in the tree +- **`iconClass`**: Adds a CSS class to the note's icon, useful for distinguishing notes visually +- **`pageSize`**: Specifies the number of items per page in note listings +- **`customRequestHandler` and `customResourceProvider`**: Refer to [Custom request handler](custom-request-handler.md) +- **`widget`**: Marks a note as a custom widget, added to Trilium's component tree +- **`workspace` and related attributes**: See [Workspace](workspace.md) for more details +- **`searchHome`**: Specifies the parent for new search notes +- **`inbox`**: Designates a default location for new notes created via the sidebar +- **`sqlConsoleHome`**: Default location for SQL console notes +- **`bookmarked` and `bookmarkFolder`**: See [Bookmarks](bookmarks.md) +- **`shareXXX`**: See [Sharing](sharing.md) +- **`keyboardShortcut`**: Assigns a keyboard shortcut to open the note +- **`displayRelations` and `hideRelations`**: Manages the display of note relations +- **`titleTemplate`**: See [Default note title](default-note-title.md) +- **`template`**: Makes the note available as a template +- **`toc`**: Controls the visibility of the table of contents +- **`color`**: Defines the color of the note in the tree and links +- **`hideChildrenOverview`**: Hides child notes in the parent note's editor +- **`viewType`**: Sets the view of child notes (grid or list) ## Relations @@ -61,17 +61,17 @@ Relations define connections between notes, similar to links. ### Uses -- **Metadata Relationships**: For example, linking a book note to an author note. -- **Scripting**: Attaching scripts to events or conditions related to the note. +- **Metadata Relationships**: For example, linking a book note to an author note +- **Scripting**: Attaching scripts to events or conditions related to the note ### Common Relations -- **Event-based Relations**: Such as `runOnNoteCreation` or `runOnNoteChange`, which trigger scripts on specific actions. -- **Other Relations**: Include `template`, `renderNote`, `widget`, and sharing-related relations. +- **Event-based Relations**: Such as `runOnNoteCreation` or `runOnNoteChange`, which trigger scripts on specific actions +- **Other Relations**: Include `template`, `renderNote`, `widget`, and sharing-related relations ## Multiplicity -Attributes in Trilium can be multivalued, meaning multiple attributes with the same name can coexist, known as "multivalued" attributes. +Attributes in Trilium can be "multivalued", meaning multiple attributes with the same name can coexist. ## Attribute Definitions and Promoted Attributes @@ -79,4 +79,4 @@ Special labels create "label/attribute" definitions, enhancing the organization ## Attribute Inheritance -Trilium supports attribute inheritance, allowing child notes to inherit attributes from their parents. For more information, see [Attribute inheritance](attribute-inheritance.md). \ No newline at end of file +Trilium supports attribute inheritance, allowing child notes to inherit attributes from their parents. For more information, see [Attribute inheritance](attribute-inheritance.md). From 37f9db5b5450cffba04c4124bce381541d3ab87e Mon Sep 17 00:00:00 2001 From: meichthys Date: Sun, 28 Jul 2024 00:30:15 -0400 Subject: [PATCH 38/48] add "(or `viewType` attribute)" --- Wiki/book-note.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wiki/book-note.md b/Wiki/book-note.md index 427d207..9d29d28 100644 --- a/Wiki/book-note.md +++ b/Wiki/book-note.md @@ -18,4 +18,4 @@ Trilium also offers a "Grid View" option within the Book Note properties. This v ![Grid View Example](images/book-note-pictures.png) -Switching between these views can be easily managed through the Book Note's settings, allowing users to choose the format that best suits their reading or navigation preferences. +Switching between these views can be easily managed through the Book Note's settings (or `viewType` attribu), allowing users to choose the format that best suits their reading or navigation preferences. From 11707775dd5d163acb3a62e61c1c584c1d4fd565 Mon Sep 17 00:00:00 2001 From: meichthys Date: Sun, 28 Jul 2024 00:39:15 -0400 Subject: [PATCH 39/48] reference docker installation docs directly instead of other third party website. --- Wiki/docker-server-installation.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Wiki/docker-server-installation.md b/Wiki/docker-server-installation.md index 7a88996..905d4fd 100644 --- a/Wiki/docker-server-installation.md +++ b/Wiki/docker-server-installation.md @@ -4,16 +4,15 @@ Trilium can be deployed using a Docker image, which is the recommended method fo ## Prerequisites -Ensure Docker is installed on your system. Here are guides to help with installation: +Ensure Docker is installed on your system. -- [Docker Installation on Ubuntu](https://docs.docker.com/engine/install/ubuntu/) -- [DigitalOcean Guide to Docker on Ubuntu 18.04](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-18-04) +If you need help installing Docker, reference the [Docker Installation Docs](https://docs.docker.com/engine/install/) **Note:** Trilium's Docker container requires root privileges to operate correctly. ## Pulling the Docker Image -To pull the Trilium image, use the following command, replacing `[VERSION]` with the desired version or tag, such as `0.52-latest` or just `latest`: +To pull the Trilium image, use the following command, replacing `[VERSION]` with the desired version or tag, such as `0.90-latest` or just `latest`: %%%{WARNING}%%% zadams container @@ -97,7 +96,7 @@ For a custom data directory, use: -v ~/YourOwnDirectory:/home/node/trilium-data zadam/trilium:[VERSION] ``` -Ensure to understand Docker's volume mapping: the first path is the host directory, and the second is the container's path. More details can be found in the [Docker Volumes Documentation](https://docs.docker.com/storage/volumes/). +The path before the colon is the host directory, and the path after the colon is the container's path. More details can be found in the [Docker Volumes Documentation](https://docs.docker.com/storage/volumes/). ### Note on --user Directive From f8da8965f1112d00d7832b3dfbf32ffa9ab3cd2d Mon Sep 17 00:00:00 2001 From: meichthys Date: Sun, 28 Jul 2024 00:41:40 -0400 Subject: [PATCH 40/48] simplify wording --- Wiki/desktop-installation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wiki/desktop-installation.md b/Wiki/desktop-installation.md index 435cc76..be989dd 100644 --- a/Wiki/desktop-installation.md +++ b/Wiki/desktop-installation.md @@ -19,4 +19,4 @@ Trilium offers various startup scripts to customize your experience: ## Synchronization -For users running Trilium on a desktop who wish to synchronize their data with a server instance, refer to the [Synchronization Guide](synchronization.md) for detailed instructions. +For Trilium desktp users who wish to synchronize their data with a server instance, refer to the [Synchronization Guide](synchronization.md) for detailed instructions. From 315ca993587198e6b72cf2673a2030af800a5446 Mon Sep 17 00:00:00 2001 From: meichthys Date: Mon, 5 Aug 2024 12:04:40 -0400 Subject: [PATCH 41/48] Update docker image references --- Wiki/anonymized-database.md | 4 +-- Wiki/apache-proxy-setup.md | 46 +++++++++++++------------- Wiki/docker-server-installation.md | 16 ++++----- Wiki/home.md | 4 +-- Wiki/import-docs.md | 4 +-- Wiki/manual-server-installation.md | 4 +-- Wiki/patterns-of-personal-knowledge.md | 4 +-- 7 files changed, 40 insertions(+), 42 deletions(-) diff --git a/Wiki/anonymized-database.md b/Wiki/anonymized-database.md index 54f79d5..d3777da 100644 --- a/Wiki/anonymized-database.md +++ b/Wiki/anonymized-database.md @@ -1,4 +1,4 @@ -# Anonymized database +# Anonymized database ### Anonymized database In some cases, it's necessary to see the database structure to be able to debug the problem. Of course, we can't ask you to send us [Document](document.md) file with your notes. @@ -7,7 +7,7 @@ For this, Trilium supports anonymization of the database - you can trigger this ![](images/anonymization.png) -This will create a copy of your document and remove all sensitive data (currently note titles, contents, revisions, history and some of the options, and non-system attributes) while leaving all structure and metadata (e.g. date of last change). After this is done, the database is [VACUUMed](https://sqlite.org/lang_vacuum.html) to make sure there's no stale sensitive data in the document file. The resulting file is stored in `anonymized` directory (placed in the [data directory](data-directory.md)). You can safely attach it with your bug report or send it to [zadam.apps@gmail.com](#root/N3Zt66yETj9g) %%{WARNING}%% +This will create a copy of your document and remove all sensitive data (currently note titles, contents, revisions, history and some of the options, and non-system attributes) while leaving all structure and metadata (e.g. date of last change). After this is done, the database is [VACUUMed](https://sqlite.org/lang_vacuum.html) to make sure there's no stale sensitive data in the document file. The resulting file is stored in `anonymized` directory (placed in the [data directory](data-directory.md)). You can safely attach it to a bug report. #### Command line anonymization diff --git a/Wiki/apache-proxy-setup.md b/Wiki/apache-proxy-setup.md index cffff2d..dd241c9 100644 --- a/Wiki/apache-proxy-setup.md +++ b/Wiki/apache-proxy-setup.md @@ -1,40 +1,40 @@ -# Apache proxy setup +# Apache proxy setup I've assumed you have created a DNS A record for `trilium.yourdomain.com` that you want to use for your Trilium server. 1. Download docker image and create container - + ```text-plain - docker pull zadam/trilium:[VERSION] %%{WARNING}%% - docker create --name trilium -t -p 127.0.0.1:8080:8080 -v ~/trilium-data:/home/node/trilium-data zadam/trilium:[VERSION] + docker pull triliumnext/notes:[VERSION] + docker create --name trilium -t -p 127.0.0.1:8080:8080 -v ~/trilium-data:/home/node/trilium-data triliumnext/notes:[VERSION] ``` - + 2. Configure Apache proxy and websocket proxy - + 1. Enable apache proxy modules - + ```text-plain a2enmod ssl a2enmod proxy a2enmod proxy_http a2enmod proxy_wstunnel ``` - + 2. Create a new let's encrypt certificate - + ```text-plain sudo certbot certonly -d trilium.mydomain.com ``` - + Choose standalone (2) and note the location of the created certificates (typically /etc/letsencrypt/live/...) - + 3. Create a new virtual host file for apache (you may want to use `apachectl -S` to determine the server root location, mine is /etc/apache2) - + ```text-plain sudo nano /etc/apache2/sites-available/trilium.yourdomain.com.conf ``` - + Paste (and customize) the following text into the configuration file - + ```text-plain ServerName http://trilium.yourdomain.com @@ -55,32 +55,32 @@ I've assumed you have created a DNS A record for `trilium.yourdomain.com` that y Include /etc/letsencrypt/options-ssl-apache.conf ``` - + 4. Enable the virtual host with `sudo a2ensite trilium.yourdomain.com.conf` - + 5. Reload apache2 with `sudo systemctl reload apache2` - + 3. Create and enable a systemd service to start the docker container on boot - + 1. Create a new empty file called `/lib/systemd/system/trilium.service` with the contents - + ```text-plain [Unit] Description=Trilium Server Requires=docker.service After=docker.service - + [Service] Restart=always ExecStart=/usr/bin/docker start -a trilium ExecStop=/usr/bin/docker stop -t 2 trilium - + [Install] WantedBy=local.target ``` - + 2. Install, enable and start service - + ```text-plain sudo systemctl daemon-reload sudo systemctl enable trilium.service diff --git a/Wiki/docker-server-installation.md b/Wiki/docker-server-installation.md index a5729b1..de0707c 100644 --- a/Wiki/docker-server-installation.md +++ b/Wiki/docker-server-installation.md @@ -1,7 +1,7 @@ # Docker-server-installation Trilium can be run as docker image. This is recommended way to deploy Trilium on servers. -Official docker images are published on docker hub for **AMD64**, **ARMv6**, **ARMv7** and **ARMv8/64**: [https://hub.docker.com/r/zadam/trilium/](https://hub.docker.com/r/zadam/trilium/)%%{WARNING}%% +Official docker images are published on docker hub for **AMD64**, **ARMv6**, **ARMv7** and **ARMv8/64**: [https://hub.docker.com/r/triliumnext/notes/](https://hub.docker.com/r/triliumnext/notes/) Prerequisites ------------- @@ -17,7 +17,7 @@ Pull image ---------- ```text-plain -docker pull zadam/trilium:[VERSION] %%{WARNING}%% +docker pull triliumnext/notes:[VERSION] ``` Replace \[VERSION\] for actual latest version or use "series" tag - e.g. `0.52-latest`. @@ -39,7 +39,7 @@ These commands mount the volume to the host system so that trilium's data (most This will run the container so that it only available on the localhost. Use this to test the installation from a web browser on the same machine you run this command on, or if you are using a proxy with nginx/apache. ```text-plain -sudo docker run -t -i -p 127.0.0.1:8080:8080 -v ~/trilium-data:/home/node/trilium-data zadam/trilium:[VERSION] %%{WARNING}%% +sudo docker run -t -i -p 127.0.0.1:8080:8080 -v ~/trilium-data:/home/node/trilium-data triliumnext/notes:[VERSION] ``` 1. Test to see that the docker image is running with `docker ps` @@ -58,20 +58,20 @@ docker network create -d macvlan -o parent=eth0 --subnet 192.168.2.0/24 --gatewa Secondly, you have to adjust the docker run command so it takes this network into account but keep using localhost to limit the accessibility of the ports to the outside world. ```text-plain -docker run --net=mynet -d -p 127.0.0.1:8080:8080 -v ~/trilium-data:/home/node/trilium-data zadam/trilium:0.52-latest +docker run --net=mynet -d -p 127.0.0.1:8080:8080 -v ~/trilium-data:/home/node/trilium-data triliumnext/notes:-latest ``` Alternatively, if you wish to have the saved data and the application using a different UID & GID than 1000:1000, you can use the USER\_UID & USER\_GID environment variables: ```text-plain -docker run --net=mynet -d -p 127.0.0.1:8080:8080 -e "USER_UID=1001" -e "USER_GID=1001" -v ~/trilium-data:/home/node/trilium-data zadam/trilium:0.52-latest %%{WARNING}%% +docker run --net=mynet -d -p 127.0.0.1:8080:8080 -e "USER_UID=1001" -e "USER_GID=1001" -v ~/trilium-data:/home/node/trilium-data triliumnext/notes:-latest ``` Finally, use docker inspect to find your local IP address to connect to. You can access this from all your devices connected to the local network as such: \[local:ip\]:8080. ```text-plain docker ps -docker inspect [container_name] +docker inspect [container_name] ``` ### Available anywhere @@ -79,14 +79,14 @@ docker inspect [container_name] This will run the container as a background process and will be available from any IP address ```text-plain -docker run -d -p 0.0.0.0:8080:8080 -v ~/trilium-data:/home/node/trilium-data zadam/trilium:[VERSION] %%{WARNING}%% +docker run -d -p 0.0.0.0:8080:8080 -v ~/trilium-data:/home/node/trilium-data triliumnext/notes:[VERSION] ``` To stop this background docker process use `docker ps` to get the "CONTAINER ID" and then use `docker stop ` ### Different data directory location -If you want to run your instance in a non-default way, please use the volume switch as follows: `-v ~/YourOwnDirectory:/home/node/trilium-data zadam/trilium:[VERSION]`. It is important to be aware of how Docker works for volumes, with the first path being your own and the second the one to virtually bind to. [https://docs.docker.com/storage/volumes/](https://docs.docker.com/storage/volumes/) +If you want to run your instance in a non-default way, please use the volume switch as follows: `-v ~/YourOwnDirectory:/home/node/trilium-data triliumnext/notes:`. It is important to be aware of how Docker works for volumes, with the first path being your own and the second the one to virtually bind to. [https://docs.docker.com/storage/volumes/](https://docs.docker.com/storage/volumes/) ### Note about --user directive diff --git a/Wiki/home.md b/Wiki/home.md index f332e8e..92f5238 100644 --- a/Wiki/home.md +++ b/Wiki/home.md @@ -1,8 +1,8 @@ -# Home +# Home Overview -------- -Basic overview of the Trilium project is available at project homepage - [https://github.com/zadam/trilium#trilium-notes](https://github.com/zadam/trilium#trilium-notes) +Basic overview of the Trilium project is available at project homepage - [https://github.com/triliumnext/notes#trilium-notes](https://github.com/triliumnext/notes#trilium-notes) Inspiration for the name "Trilium": diff --git a/Wiki/import-docs.md b/Wiki/import-docs.md index 1185a7c..507b047 100644 --- a/Wiki/import-docs.md +++ b/Wiki/import-docs.md @@ -5,7 +5,7 @@ To import these docs into your own Trilium instance: 1. Download archive from main branch of this repo: https://github.com/TriliumNext/Docs/archive/refs/heads/main.zip 2. In Trilim create a new note to act as branch for the docs -3. Right-click on the note, select "Import into note" and select downloaded `Docs-main.zip` file. +3. Right-click on the note, select "Import into note" and select downloaded `Docs-main.zip` file. - Optionally uncheck "Shrink images" ## Optional cleanup @@ -13,5 +13,3 @@ https://github.com/TriliumNext/Docs/archive/refs/heads/main.zip - Move `images` node down to the bottom (instead of dragging, it's easier to move out to parent node than back into Wiki. It will go to end of list automatically). For new releases delete the old docs note tree and start fresh, or you'll get duplicates. - -[0]: https://github.com/zadam/trilium/wiki diff --git a/Wiki/manual-server-installation.md b/Wiki/manual-server-installation.md index 59541f2..c6416f2 100644 --- a/Wiki/manual-server-installation.md +++ b/Wiki/manual-server-installation.md @@ -1,4 +1,4 @@ -# Manual-server-installation +# Manual-server-installation This page describes manually installing Trilium on your server. **Note that this is a not well supported way to install Trilium, problems may appear, information laid out here is quite out of date. It is recommended to use either Docker or packaged build installation.** Requirements @@ -30,7 +30,7 @@ Installation You can either download source code zip/tar from [https://github.com/TriliumNext/Notes/releases/latest\]\]](https://github.com/TriliumNext/Notes/releases/latest%5D%5D) %%{WARNING}%%or clone git repository **from stable branch** with ```text-plain -git clone -b stable https://github.com/zadam/trilium.git %%{WARNING}%% +git clone -b stable https://github.com/triliumnext/notes.git %%{WARNING}%% ``` Installation diff --git a/Wiki/patterns-of-personal-knowledge.md b/Wiki/patterns-of-personal-knowledge.md index 9f71d81..d971275 100644 --- a/Wiki/patterns-of-personal-knowledge.md +++ b/Wiki/patterns-of-personal-knowledge.md @@ -1,8 +1,8 @@ -# Patterns-of-personal-knowledge +# Patterns-of-personal-knowledge Patterns-of-personal-knowledge-base ----------------------------------- -This page contains description of some of the patterns I use to organize information in my knowledge base. This is meant to give some inspiration of how one might create and structure their knowledge base in general and also specifically in [Trilium Notes](https://github.com/zadam/trilium). It also gives some background and justification for some of the design decisions. +This page contains description of some of the patterns I use to organize information in my knowledge base. This is meant to give some inspiration of how one might create and structure their knowledge base in general and also specifically in [Trilium Notes](https://github.com/triliumnext/notes). It also gives some background and justification for some of the design decisions. Meta patterns ------------- From c33a2ad071e5a6f1875ddb4a4ccfee9d96fc2fe2 Mon Sep 17 00:00:00 2001 From: meichthys Date: Mon, 5 Aug 2024 13:06:15 -0400 Subject: [PATCH 42/48] Reference new documentation --- Wiki/day-notes.md | 4 ++-- Wiki/default-note-title.md | 4 ++-- Wiki/error-logs.md | 4 ++-- Wiki/frontend-basics.md | 8 ++++---- Wiki/script-api.md | 4 ++-- Wiki/widget-basics.md | 12 ++++++------ 6 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Wiki/day-notes.md b/Wiki/day-notes.md index 4b5f233..528cf56 100644 --- a/Wiki/day-notes.md +++ b/Wiki/day-notes.md @@ -1,4 +1,4 @@ -# Day-notes +# Day-notes A common pattern in note-taking is that a lot of notes will be centered around a certain date - e.g. you have some tasks which needs to be done on a certain date, you have meeting minutes from a certain date, you have your thoughts etc. and it all revolves around a date on which they occurred. For this reason, it makes sense to create a certain "day workspace" which will centralize all those notes relevant for a certain date. For this, Trilium provides a concept of "day note". Trilium semi-automatically generates a single note for each day. Under this note you can save all those relevant notes. @@ -55,7 +55,7 @@ The default is `{monthNumberPadded} - {month}` Implementation -------------- -Trilium has some special support for day notes in the form of [backend Script API](https://zadam.github.io/trilium/backend_api/BackendScriptApi.html) - see e.g. getDayNote() function. +Trilium has some special support for day notes in the form of [backend Script API](https://triliumnext.github.io/Notes/backend_api/BackendScriptApi.html) - see e.g. getDayNote() function. Day (and year, month) notes are created with a label - e.g. `#dateNote="2018-08-16"` this can then be used by other scripts to add new notes to day note etc. diff --git a/Wiki/default-note-title.md b/Wiki/default-note-title.md index 2dbe0da..e13fc59 100644 --- a/Wiki/default-note-title.md +++ b/Wiki/default-note-title.md @@ -1,4 +1,4 @@ -# Default-note-title +# Default-note-title When a new note is created, its name is by default "new note". In some cases, it can be desirable to have a different or even a dynamic default note title. For this use case, Trilium (since v0.52) supports `#titleTemplate` [label](attributes.md). You can create such a label for a given note, assign it a value, and this value will be used as a default title when creating child notes. As with other labels, you can make it inheritable to apply recursively, and you can even place it on the root note to have it applied globally everywhere. @@ -26,6 +26,6 @@ As an example, imagine you collect server outage incidents and write some notes. You can automatize the date assignment by assigning a label `#titleTemplate="${now.format('YYYY-MM-DD')}: "` to the parent note "Incidents". Whenever a new child note is created, the title template is evaluated with the injected [now](https://day.js.org/docs/en/display/format) object. -Second variable injected is [parentNote](https://zadam.github.io/trilium/backend_api/Note.html), an example could be `#titleTemplate="${parentNote.getLabelValue('authorName')}'s literary works"`. +Second variable injected is [parentNote](https://triliumnext.github.io/Notes/backend_api/BNote.html), an example could be `#titleTemplate="${parentNote.getLabelValue('authorName')}'s literary works"`. See also \[\[[template](template.md)\]\] which provides similar capabilities, including default note's content. diff --git a/Wiki/error-logs.md b/Wiki/error-logs.md index 8a553e2..a939601 100644 --- a/Wiki/error-logs.md +++ b/Wiki/error-logs.md @@ -1,4 +1,4 @@ -# Error-logs +# Error-logs It's important to provide all available error logs together with bug reports. This page will show you how to do it. Backend logs @@ -29,7 +29,7 @@ Copy-paste (or screenshot) the logs. It's better to provide not just errors, but Providing sensitive data ------------------------ -If you don't feel comfortable attaching the logs or anything sensitive to the public GitHub issues, feel free to mail them to [zadam.apps@gmail.com](#root/N3Zt66yETj9g) +If you don't feel comfortable attaching the logs or anything sensitive to the public GitHub issues, feel free to contact the devs in our Matrix [support channel](https://github.com/TriliumNext/Notes#-discuss-with-us). Use this email to also provide anything which could assist in analysing the bug - e.g. files/images/ZIPs being imported or [anonymized database](anonymized-database.md). diff --git a/Wiki/frontend-basics.md b/Wiki/frontend-basics.md index dcd83ca..7976868 100644 --- a/Wiki/frontend-basics.md +++ b/Wiki/frontend-basics.md @@ -1,4 +1,4 @@ -# Frontend-Basics +# Frontend-Basics Frontend API ------------ @@ -39,14 +39,14 @@ Widgets Conversely to scripts, widgets do have some specific requirements in order to work. A widget must: -* Extend [BasicWidget](https://zadam.github.io/trilium/frontend_api/BasicWidget.html) or one of it's subclasses. +* Extend [BasicWidget](https://triliumnext.github.io/Notes/frontend_api/BasicWidget.html) or one of it's subclasses. * Create a new instance and assign it to `module.exports`. * Define a `parentWidget` member to determine where it should be displayed. * Define a `position` (integer) that determines the location via sort order. * Have a `#widget` attribute on the containing note. * Create, render, and return your element in the render function. - * For [BasicWidget](https://zadam.github.io/trilium/frontend_api/BasicWidget.html) and [NoteContextAwareWidget](https://zadam.github.io/trilium/frontend_api/NoteContextAwareWidget.html) you should create `this.$widget` and render it in `doRender()`. - * For [RightPanelWidget](https://zadam.github.io/trilium/frontend_api/RightPanelWidget.html) the `this.$widget` and `doRender()` are already handled and you should instead return the value in `doRenderBody()`. + * For [BasicWidget](https://triliumnext.github.io/Notes/frontend_api/BasicWidget.html) and [NoteContextAwareWidget](https://triliumnext.github.io/Notes/frontend_api/NoteContextAwareWidget.html) you should create `this.$widget` and render it in `doRender()`. + * For [RightPanelWidget](https://triliumnext.github.io/Notes/frontend_api/RightPanelWidget.html) the `this.$widget` and `doRender()` are already handled and you should instead return the value in `doRenderBody()`. ### parentWidget diff --git a/Wiki/script-api.md b/Wiki/script-api.md index 0233f5b..b943212 100644 --- a/Wiki/script-api.md +++ b/Wiki/script-api.md @@ -1,8 +1,8 @@ # Script API For [Scripts](scripts.md) to do anything useful, Trilium publishes "Script API". Actually there are two such APIs: -* [Frontend API](https://zadam.github.io/trilium/frontend_api/FrontendScriptApi.html) %%{WARNING}%% -* [Backend API](https://zadam.github.io/trilium/backend_api/BackendScriptApi.html) %%{WARNING}%% +* [Frontend API](https://triliumnext.github.io/Notes/frontend_api/FrontendScriptApi.html) %%{WARNING}%% +* [Backend API](https://triliumnext.github.io/Notes/backend_api/BackendScriptApi.html) %%{WARNING}%% Backwards compatibility ----------------------- diff --git a/Wiki/widget-basics.md b/Wiki/widget-basics.md index a65f1e9..f53d895 100644 --- a/Wiki/widget-basics.md +++ b/Wiki/widget-basics.md @@ -1,4 +1,4 @@ -# Widget-Basics +# Widget-Basics ### The Very Basics Based on the information from [Frontend Basics](frontend-basics.md), the most basic widget we can make looks something like this. @@ -7,7 +7,7 @@ Based on the information from [Frontend Basics](frontend-basics.md), the most ba class MyWidget extends api.BasicWidget { get position() {return 1;} get parentWidget() {return "left-pane"} - + doRender() { this.$widget = $("
"); return this.$widget; @@ -33,7 +33,7 @@ const template = `
`; class MyWidget extends api.BasicWidget { get position() {return 1;} get parentWidget() {return "left-pane"} - + doRender() { this.$widget = $(template); return this.$widget; @@ -49,7 +49,7 @@ Make that change, and reload Trilium and you should see a really ugly looking bu const template = `
`; ``` -After reloading, that already looks a little bit better. But it's still in the wrong spot. We can fix that with a little bit of css. Thankfully [BasicWidget](https://zadam.github.io/trilium/frontend_api/BasicWidget.html) allows us to do this very easily with `this.cssBlock`. +After reloading, that already looks a little bit better. But it's still in the wrong spot. We can fix that with a little bit of css. Thankfully [BasicWidget](https://triliumnext.github.io/Notes/frontend_api/BasicWidget.html) allows us to do this very easily with `this.cssBlock`. ```text-plain const template = `
`; @@ -57,7 +57,7 @@ const template = `
`; class MyWidget extends api.BasicWidget { @@ -43,21 +49,26 @@ class MyWidget extends api.BasicWidget { module.exports = new MyWidget(); ``` -Make that change, and reload Trilium and you should see a really ugly looking button at the top-left of the left pane conflicting with the search bar. We can make that look a lot better very easily because Trilium includes [Box Icons](https://boxicons.com). Find and pick one from there, and copy the class name that it gives you. For this tutorial, I'll be using `bx bxs-magic-wand`. I'm also going to add the classes Trilium uses for the floating buttons in the tree list since that will make sure it matches any theme we use. I'd also recommend removing the text now that we have a fancy icon. Now my template looks like this: +After making this change, reload Trilium. You should now see a button in the top-left corner of the left pane. -```text-plain -const template = `
`; -``` +### Step 3: Styling the Widget -After reloading, that already looks a little bit better. But it's still in the wrong spot. We can fix that with a little bit of css. Thankfully [BasicWidget](https://triliumnext.github.io/Notes/frontend_api/BasicWidget.html) allows us to do this very easily with `this.cssBlock`. +To make the button more visually appealing and position it correctly, we'll apply some custom styling. Trilium includes [Box Icons](https://boxicons.com), which we'll use to replace the button text with an icon. +For example the `bx bxs-magic-wand` icon. -```text-plain +Here's the updated template: + +```js const template = `
`; +``` -class MyWidget extends api.BasicWidget { - get position() {return 1;} - get parentWidget() {return "left-pane"} +Next, we'll adjust the button's position using CSS: +```js +class MyWidget extends api.BasicWidget { + get position() { return 1; } + get parentWidget() { return "left-pane"; } + doRender() { this.$widget = $(template); this.cssBlock(`#my-widget { @@ -65,7 +76,7 @@ class MyWidget extends api.BasicWidget { bottom: 40px; left: 60px; z-index: 1; - }`) + }`); return this.$widget; } } @@ -73,19 +84,17 @@ class MyWidget extends api.BasicWidget { module.exports = new MyWidget(); ``` -With that change, the button should now appear at the bottom left of the tree panel near the other action buttons. +After reloading Trilium, the button should now appear at the bottom left of the left pane, alongside other action buttons. -### User Interaction +### Step 4: Adding User Interaction -All that's left to do is add a click listener to show that message. Thankfully the [Script API](script-api.md) has a convenient method for showing messages shown below. - -```text-plain -const template = `
`; +Let’s make the button interactive by showing a message when it’s clicked. We'll use the `api.showMessage` method from the [Script API](script-api.md). +```js class MyWidget extends api.BasicWidget { - get position() {return 1;} - get parentWidget() {return "left-pane"} - + get position() { return 1; } + get parentWidget() { return "left-pane"; } + doRender() { this.$widget = $(template); this.cssBlock(`#my-widget { @@ -93,8 +102,8 @@ class MyWidget extends api.BasicWidget { bottom: 40px; left: 60px; z-index: 1; - }`) - this.$widget.find("button").on("click", () => api.showMessage("Hello World!")) + }`); + this.$widget.find("button").on("click", () => api.showMessage("Hello World!")); return this.$widget; } } @@ -102,4 +111,4 @@ class MyWidget extends api.BasicWidget { module.exports = new MyWidget(); ``` -Reload one last time, and go ahead and click your button. You'll get that classic Trilium toast with your `Hello World` message! +Reload the application one last time. When you click the button, a "Hello World!" message should appear, confirming that your widget is fully functional.