Rename the application from wishlists to pinboard

This commit is contained in:
Paul van Tilburg 2018-01-26 20:30:56 +01:00
parent b81d35a9dc
commit 2c46179f4f
10 changed files with 32 additions and 32 deletions

30
Cargo.lock generated
View File

@ -392,6 +392,21 @@ name = "pest"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "pinboard"
version = "1.0.1"
dependencies = [
"Inflector 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
"comrak 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"rocket 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"rocket_codegen 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"rocket_contrib 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "quote"
version = "0.3.15"
@ -807,21 +822,6 @@ name = "winapi-x86_64-pc-windows-gnu"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "wishlists"
version = "1.0.1"
dependencies = [
"Inflector 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
"comrak 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
"glob 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)",
"rocket 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"rocket_codegen 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"rocket_contrib 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_derive 1.0.25 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "yansi"
version = "0.3.4"

View File

@ -1,10 +1,10 @@
[package]
name = "wishlists"
name = "pinboard"
version = "1.0.1"
authors = ["Paul van Tilburg <paul@luon.net>"]
description = """
A web application for maintaining a board of wishlists for a family or
group of friends.
A web application for maintaining a pinboard of notes for a family or group
of friends.
"""
readme = "README.md"
license = "MIT"

View File

@ -1,22 +1,22 @@
# Wishlists
# Pinboard
A [Rocket](https://rocket.rs) based web application written in Rust for
maintaining a board of wishlists for a family or group of friends.
Similarly to a Wiki, all lists can be edited by everyone, as a board with
maintaining a pinboard of notes for a family or group of friends.
Similarly to a Wiki, all notes can be edited by everyone, as a board with
physical lists would also allow.
## Building
Because Rocket still requires a nightly version of Rust, Wishlist also
Because Rocket still requires a nightly version of Rust, Pinboard also
requires it. The application has been tested with `nightly-2017-12-21`.
Wishlists uses a customized Bootstrap-style, to compile this, the
Pinboard uses a customized Bootstrap-style, to compile this, the
Ruby implementation of Sass
```
$ gem install sass
...
$ scss static/scss/wishlists.scss:static/csss/wishlists.css
$ scss static/scss/pinboard.scss:static/csss/pinboard.css
```
## Usage
@ -52,5 +52,5 @@ improvement for the future:
## License
Wishlists is licensed under the MIT license
Pinboard is licensed under the MIT license
([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT).

View File

@ -17,7 +17,7 @@ mod tests {
let client = Client::new(rocket(Some("test"))).unwrap();
// Try to get the main JavaScript file
let res = client.get("/js/wishlists.js").dispatch();
let res = client.get("/js/pinboard.js").dispatch();
assert_eq!(res.status(), Status::Ok);
}
}

View File

@ -6496,4 +6496,4 @@ footer {
color: inherit;
text-decoration: underline; }
/*# sourceMappingURL=wishlists.css.map */
/*# sourceMappingURL=pinboard.css.map */

File diff suppressed because one or more lines are too long

View File

@ -14,7 +14,7 @@
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<!-- Include CSS (including Bootstrap) -->
<link href="/css/wishlists.css" rel="stylesheet">
<link href="/css/pinboard.css" rel="stylesheet">
<!-- Include FontAwesome CSS -->
<link href="/css/fontawesome-all.css" rel="stylesheet">

View File

@ -106,11 +106,11 @@ Horizontale lijn<pre>"></textarea>
{% block footer %}
<footer class="footer bg-dark text-light">
<div class="container text-center">
<small>Wishlists v{{app_version}} — &copy; 2018 Paul van Tilburg</small>
<small>Pinboard v{{app_version}} — &copy; 2018 Paul van Tilburg</small>
</div>
</footer>
{% endblock footer %}
{% block script %}
<script src="/js/wishlists.js"></script>
<script src="/js/pinboard.js"></script>
{% endblock script %}