Skip to content

Commit

Permalink
Update URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelkuhn authored and jwuensche committed Jan 15, 2024
1 parent 8121165 commit 91107e7
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Be-Tree Storage Stack

[![CI](https://github.com/julea-io/haura/workflows/CI/badge.svg)](https://github.com/julea-io/haura/actions)
[![Pages](https://github.com/julea-io/haura/workflows/Pages/badge.svg)](https://github.com/julea-io/haura/actions)
[![CI](https://github.com/parcio/haura/workflows/CI/badge.svg)](https://github.com/parcio/haura/actions)
[![Pages](https://github.com/parcio/haura/workflows/Pages/badge.svg)](https://github.com/parcio/haura/actions)

A storage library offering key-value and object interfaces by managing B^ε-trees on block storage devices.

Expand All @@ -10,7 +10,7 @@ A storage library offering key-value and object interfaces by managing B^ε-tree
We advise you to use always the latest version of Rust *Stable*. For compatability we provide the minimum rust version also in the Cargo.toml of each crate in this project.

```
git clone https://github.com/julea-io/haura
git clone https://github.com/parcio/haura
cd haura/betree
cargo build
cd tests
Expand All @@ -20,7 +20,7 @@ cd tests
## Documentation

You can find an in-depth documentation and developer guide under
https://julea-io.github.io/haura or you may build it yourself locally. For
https://parcio.github.io/haura or you may build it yourself locally. For
building the documentation [`mdbook`](https://rust-lang.github.io/mdBook/) is
required. You can find install directions in their documentation under
https://rust-lang.github.io/mdBook/.
Expand Down
4 changes: 2 additions & 2 deletions docs/src/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ $ sudo pacman -Sy glib2 clang make libbson pkgconf
To compile the bindings you'll need JULEA present and specify it's headers in your environemnt.

```sh
# git clone https://github.com/julea-io/julea.git
# git clone https://github.com/parcio/julea.git
# Support for seamless integration is not quite there yet in JULEA, we require a special fork
$ git clone -b modules-conditional-unload https://github.com/tilpner/julea.git
$ git clone https://github.com/julea-io/haura.git
$ git clone https://github.com/parcio/haura.git
```

To build the complete _Haura_ project from this state, execute:
Expand Down
2 changes: 1 addition & 1 deletion docs/src/julea-betree.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
To expose the `betree_storage_stack` usable to JULEA, we need to encapsulate the
functionality by implementing the `Backend` type. For documentation of specifics
refer to the [JULEA
documentation](https://github.com/julea-io/julea/blob/master/doc/implementing-backend.md).
documentation](https://github.com/parcio/julea/blob/master/doc/implementing-backend.md).

You will most likely not need to modify this code when implementing features in *Haura*.
2 changes: 1 addition & 1 deletion docs/src/julea-betree/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ default, so check there when you are unsure).

With the built library, we can switch to JULEA to integrate our results into
their configuration. If you have not setup JULEA have a look at their
[documentation](https://github.com/julea-io/julea#quick-start). Continue their
[documentation](https://github.com/parcio/julea#quick-start). Continue their
documentation until you configure JULEA with `julea-config`, then this
documentation will use a modified procedure.

Expand Down
2 changes: 1 addition & 1 deletion docs/src/julea-sys/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ points to the `include` directory of the JULEA repository.
Also ensure that you have already installed all depending all depending libraries, for reference check [Chapter Building](../build.md).

```sh
$ git clone https://github.com/julea-io/julea.git
$ git clone https://github.com/parcio/julea.git
$ export JULEA_INCLUDE=$PWD/julea/include
$ export BINDGEN_EXTRA_CLANG_ARGS="$(pkg-config --cflags glib-2.0) $(pkg-config --cflags libbson-1.0)"
```
Expand Down
2 changes: 1 addition & 1 deletion docs/src/rfc/1-pivotkey.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,5 +142,5 @@ possible as with reconstruction of subtrees paths may be shifted around. With
Currently the only advantage this method would have to the `PivotKey` method is
that the size can be expected to remain comparatively low, with 5 bytes for
each element in the search path. A restriction of key size as discussed in [the
corresponding issue](https://github.com/julea-io/haura/issues/12) could solve
corresponding issue](https://github.com/parcio/haura/issues/12) could solve
this problem and is already in discussion.
2 changes: 1 addition & 1 deletion docs/src/structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ Implementation:
- [**bectl**](./bectl.md): Allows for a basic acces to the storage stack as an CLI application.

Bindings:
- [**julea-betree**](./julea-betree.md): Bindings exposed to be used by [JULEA](https://github.com/julea-io/julea). Specifies a betree backend.
- [**julea-betree**](./julea-betree.md): Bindings exposed to be used by [JULEA](https://github.com/parcio/julea). Specifies a betree backend.
- [**julea-sys**](./julea-sys.md): Generated bindings by bindgen for use in *julea-betree*.

0 comments on commit 91107e7

Please sign in to comment.