summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-10-15 16:01:22 +0300
committerLars Wirzenius <liw@liw.fi>2021-10-15 16:01:22 +0300
commita4b1197f5a2dcebde2e8df97ad3aafec1db277ff (patch)
tree7bdbc8404617f001a57104badea64be66ca062a0
parent40ee7a8d59d5ac8602187327d23f5862acccc260 (diff)
downloadobnam.org-a4b1197f5a2dcebde2e8df97ad3aafec1db277ff.tar.gz
drop: roadmap page
It hasn't been maintained in a long time. We can re-introduce it if we want to start maintaining it later. Sponsored-by: author
-rw-r--r--index.mdwn4
-rw-r--r--roadmap.mdwn73
2 files changed, 1 insertions, 76 deletions
diff --git a/index.mdwn b/index.mdwn
index c536b8d..9d8306b 100644
--- a/index.mdwn
+++ b/index.mdwn
@@ -13,8 +13,7 @@
Obnam is starting over from scratch. See [blog
post](https://blog.liw.fi/posts/2020/10/16/obnam2_-_a_new_backup_system/).
It is currently not ready to be used, but if you're feeling adventurous, follow
-[the tutorial][tutorial] and try it out. Also see [[roadmap]] for current
-plans.
+[the tutorial][tutorial] and try it out.
This web site used to be about Obnam1, the original version that was
retired in 2017. All that content has been dropped now.
@@ -37,7 +36,6 @@ to smart server via HTTP; server never sees cleartext.
# Links
* [Source code (gitlab.com)](https://gitlab.com/larswirzenius/obnam) ([mirror](http://git.liw.fi/obnam2))
-* [[Road map|roadmap]] for developing Obnam.
* Acceptance criteria are documented using [Subplot][], and are on
[doc.obnam.org](https://doc.obnam.org/).
* [[Contributing]] to Obnam
diff --git a/roadmap.mdwn b/roadmap.mdwn
deleted file mode 100644
index f7ff707..0000000
--- a/roadmap.mdwn
+++ /dev/null
@@ -1,73 +0,0 @@
-[[!meta title="Road map"]]
-
-The current goal of Obnam development to get the software to a state
-where its author uses it for real, for at least a subset of their live
-data, and is ready to ask others to try the software.
-
-~~~roadmap
-goal:
- label: "Lars can suggest to other they try Obnam"
- depends:
- - encryption
-
-encryption:
- label: "Obnam backups are encrypted well"
- depends:
- - encrypted_file_data
- - encrypted_file_metadata
- - encrypted_backup_metadata
-
-encrypted_file_data:
- label: "Backed up file contents are encrypted"
- status: next
-
-encrypted_file_metadata:
- label: "Metadata about encrypted files is encrypted"
-
-encrypted_backup_metadata:
- label: "Metadata about backups is encrypted"
-~~~
-
-
-# Roadmap legend
-
-```roadmap
-goal:
- label: |
- This is the end goal:
- if we reach here, there
- is nothing more to be
- done in the project
- depends:
- - finished
- - blocked
-
-finished:
- status: finished
- label: |
- This task is finished;
- the arrow indicates what
- follows this task (unless
- it's blocked)
-
-ready:
- label: |
- This task is ready
- to be done: it is not
- blocked by anything
-
-next:
- status: next
- label: |
- This task is chosen
- to be done next
-
-blocked:
- label: |
- This task is blocked
- and can't be done until
- something happens
- depends:
- - ready
- - next
-```