Skip to content

Commit 9e9be2b

Browse files
MartinKavikDavid-OConnor
authored andcommitted
fix: links
1 parent e29041f commit 9e9be2b

File tree

10 files changed

+18
-20
lines changed

10 files changed

+18
-20
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.4.2"
44
description = "A Rust framework for creating web apps, using WebAssembly"
55
authors = ["DavidOConnor <[email protected]>"]
66
license = "MIT"
7-
repository = "https://github.com/David-OConnor/seed"
7+
repository = "https://github.com/seed-rs/seed"
88
homepage = "https://seed-rs.org"
99
documentation = "https://docs.rs/seed"
1010
readme = "README.md"

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ For a truly minimimal example, see [lib.rs in the quickstart repo](https://githu
184184

185185
To build your app, run `cargo make build`, and to host on a dev server, run `cargo make serve`.
186186

187-
For a more robust starting setup, check out Martin Kavik's [seed-quickstart-webpack repo](https://github.com/MartinKavik/seed-quickstart-webpack).
187+
For a more robust starting setup, check out Martin Kavik's [seed-quickstart-webpack repo](https://github.com/seed-rs/seed-quickstart-webpack).
188188

189189
## Running included examples
190190

@@ -197,8 +197,8 @@ Some examples also require to run API server in another terminal window - `cargo
197197
When server(s) are running, open [127.0.0.1:8000](http://127.0.0.1:8000) in your browser.
198198

199199
## Resources
200-
- [Awesome-seed-rs](https://github.com/MartinKavik/awesome-seed-rs): A curated list of resources
201-
- [Seed Realworld](https://github.com/MartinKavik/seed-rs-realworld): A detailed realworld example site
200+
- [Awesome-seed-rs](https://github.com/seed-rs/awesome-seed-rs): A curated list of resources
201+
- [Seed Realworld](https://github.com/seed-rs/seed-rs-realworld): A detailed realworld example site
202202
- [Engineering Rust Web Applications](https://erwabook.com/): A book describing full-stack Rust web-development, using Seed for the frontend
203203

204204
# About

RELEASE_CHECKLIST.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ This is a list of steps to complete when making a new release.
66
changes are included in `CHANGELOG.md`, and that breaking changes
77
are specifically annotated
88
1. Ensure both the readme and homepage website reflect API changes. Instructions
9-
for updating the homepage are available [here](https://github.com/David-OConnor/seed-homepage)
9+
for updating the homepage are available [here](https://github.com/seed-rs/seed-homepage)
1010
1. Update the homepage with the new release version (main page), and changelog
11-
1. Ensure the [quickstart repo](https://github.com/David-Oconnor/seed-quickstart) is updated
11+
1. Ensure the [quickstart repo](https://github.com/seed-rs/seed-quickstart) is updated
1212
to reflect API changes, and the new version
1313
1. Ensure the version listed in `Cargo.toml` is updated
1414
1. Update Rust tools: `rustup update`
@@ -18,7 +18,7 @@ to reflect API changes, and the new version
1818
1. Check that CI pipeline passed
1919
1. Run `cargo package`
2020
1. Run `cargo publish`
21-
1. Add a release on [Github](https://github.com/David-OConnor/seed/releases), following the format of previous releases
21+
1. Add a release on [Github](https://github.com/seed-rs/seed/releases), following the format of previous releases
2222
1. Verify the [docs page](https://docs.rs/seed/) updated correctly
2323
1. Clone the quickstart repo, and verify it builds and runs correctly
2424

examples/homepage/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
The Seed homepage, also serving as an example. Includes
22
simple interactions, markdown elements, routing, and view markup.
33

4-
# [Homepage repo](https://github.com/David-OConnor/seed-homepage)
4+
# [Homepage repo](https://github.com/seed-rs/seed-rs.org)

examples/mathjax/README.md

-2
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,3 @@ but provides a syntax example.
66
```bash
77
cargo make start
88
```
9-
10-
[Hosted](https://david-oconnor.github.io/linalg/)

examples/server_interaction/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use seed::prelude::*;
1111
use seed::{fetch, Method, Request};
1212
use serde::{Deserialize, Serialize};
1313

14-
const REPOSITORY_URL: &str = "https://api.github.com/repos/david-oconnor/seed/branches/master";
14+
const REPOSITORY_URL: &str = "https://api.github.com/repos/seed-rs/seed/branches/master";
1515
const CONTACT_URL: &str = "https://infinitea.herokuapp.com/api/contact";
1616

1717
#[derive(Serialize)]

examples/todomvc/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ especially safe concurrency.
1212
1313
> Seed is a high-level framework for building websites using these tools.
1414
15-
> _[Seed](https://github.com/David-OConnor/seed)_
15+
> _[Seed](https://github.com/seed-rs/seed)_
1616
1717
## Learning Rust
1818

@@ -24,8 +24,8 @@ Here are some links you may find helpful:
2424
* [Rust Documentation](https://doc.rust-lang.org/)
2525
* [Rust Source Code](https://github.com/rust-lang/rust)
2626
* [wasm-bindgen Source Code](https://github.com/rustwasm/wasm-bindgen)
27-
* [Seed guide](https://github.com/David-OConnor/seed)
28-
* [Seed quickstart repo](https://github.com/David-OConnor/seed-quickstart)
27+
* [Seed guide](https://github.com/seed-rs/seed)
28+
* [Seed quickstart repo](https://github.com/seed-rs/seed-quickstart)
2929

3030
Get help from Rust users:
3131

@@ -62,4 +62,4 @@ Open [127.0.0.1:8000](http://127.0.0.1:8000) in your browser.
6262
- **`Cargo.toml`**
6363
- replace Seed path with version number
6464
- This file
65-
- Remove this chapter
65+
- Remove this chapter

scripts/populate_styles.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use serde::Deserialize;
1313
use std::fs;
1414

1515
const STYLE_NAMES_FILE: &str = "./src/dom_entity_names/styles/style_names.rs";
16-
const STYLES_ENDPOINT: &str = "https://martinkavik.github.io/html-css-db/css_properties.json";
16+
const STYLES_ENDPOINT: &str = "https://seed-rs.github.io/html-css-db/css_properties.json";
1717

1818
#[derive(Debug, Deserialize)]
1919
struct Style {
@@ -77,4 +77,4 @@ make_styles! {{
7777
{}
7878
}}
7979
"#, style_pairs.trim().trim_end_matches(','))
80-
}
80+
}

src/vdom.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ impl<Ms, Mdl, ElC: View<Ms> + 'static, GMs: 'static> App<Ms, Mdl, ElC, GMs> {
234234
// Construct a vdom from the root element. Subsequently strip the workspace so that we
235235
// can recreate it later - this is a kind of simple way to avoid missing nodes (but
236236
// not entirely correct).
237-
// TODO: 1) Please refer to [issue #277](https://github.com/David-OConnor/seed/issues/277)
237+
// TODO: 1) Please refer to [issue #277](https://github.com/seed-rs/seed/issues/277)
238238
let mut dom_nodes: El<Ms> = (&self.cfg.mount_point).into();
239239
dom_nodes.strip_ws_nodes_from_self_and_children();
240240

@@ -250,7 +250,7 @@ impl<Ms, Mdl, ElC: View<Ms> + 'static, GMs: 'static> App<Ms, Mdl, ElC, GMs> {
250250
// Recreate the needed nodes. Only do this if requested to takeover the mount point since
251251
// it should only be needed here.
252252
if mount_type == MountType::Takeover {
253-
// TODO: Please refer to [issue #277](https://github.com/David-OConnor/seed/issues/277)
253+
// TODO: Please refer to [issue #277](https://github.com/seed-rs/seed/issues/277)
254254
websys_bridge::assign_ws_nodes_to_el(&util::document(), &mut new);
255255

256256
// Remove all old elements. We'll swap them out with the newly created elements later.

src/vdom/builder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ impl<Ms, Mdl, ElC: View<Ms> + 'static, GMs: 'static> Builder<Ms, Mdl, ElC, GMs>
145145
/// ```
146146
pub fn mount(mut self, mount_point: impl MountPoint) -> Self {
147147
// @TODO: Remove as soon as Webkit is fixed and older browsers are no longer in use.
148-
// https://github.com/David-OConnor/seed/issues/241
148+
// https://github.com/seed-rs/seed/issues/241
149149
// https://bugs.webkit.org/show_bug.cgi?id=202881
150150
let _ = util::document().query_selector("html");
151151

0 commit comments

Comments
 (0)