Skip to content

Commit

Permalink
Removed status page. Has been defunct for years.
Browse files Browse the repository at this point in the history
  • Loading branch information
craigmayhew committed Feb 20, 2024
1 parent f970a0a commit 7103d99
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 24 deletions.
3 changes: 0 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,6 @@
<a href="/cruncher/">Number Cruncher</a>
<a href="/primalitytest/">Primality Checker</a>
</div>
<div>
<a href="/status/">Status</a>
</div>
</nav>
<div id="app">

Expand Down
3 changes: 0 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ pub enum Page {
Error,
Faq,
Home,
Status,
FermatArchive,
FibonacciArchive,
MersenneArchive,
Expand Down Expand Up @@ -125,7 +124,6 @@ fn view(model: &Model) -> Node<Msg> {
Page::PerfectArchive => pages::archive::perfect::render(&model),
Page::PrimalityChecker => pages::primalitytest::render(&model),
Page::PrimeNumbersArchive => pages::archive::prime::render(model.slug.to_owned()),
Page::Status => pages::status::render(),
}
}

Expand Down Expand Up @@ -164,7 +162,6 @@ fn routes(url: seed::Url) -> (Page, std::string::String) {
},
"faq" => (Page::Faq, empty_string),
"primalitytest" => (Page::PrimalityChecker, url.path()[0].to_owned()),
"status" => (Page::Status, empty_string),
_ => (Page::Error, empty_string),
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/pages/home.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ pub fn render() -> Node<Msg> {
bp_table_row!("13th July 2011","We are retiring the distributed computing client. Thank you all for your help and processing cycles. Watch this space for an open source GPU client coming soon..."),
bp_table_row!("10th February 2010","We have added a page that shows the sum of the digits of prime numbers (now retired)."),
bp_table_row!("1st February 2010","Thanks to everyone for donating computer time, we are now upto 1.4 billion primes. We now also have a facebook group where you get news updates and show your support for the project!"),
bp_table_row!("28th September 2009","Thanks for all your help! We made it to one billion prime numbers! Please keep on donating processor time as we still have plenty of storage for the prime numbers. Our database is now more than double the size (<a class=\"link\" href=\"/archive/prime/3000000/\">300 million primes</a>) and we've put in the capacity to keep growing. To view our current progress please visit the <a class=\"link\" href=\"/status/\">status</a> page."),
bp_table_row!("18th August 2009","It's been a while but we have been very busy. We've put together a distributed computing client written in javascript. Our database is now more than double the size (<a class=\"link\" href=\"/archive/prime/3000000/\">300 million primes</a>) and we've put in the capacity to keep growing. To view our current progress please visit the <a class=\"link\" href=\"/status/\">status</a> page."),
bp_table_row!("28th September 2009","Thanks for all your help! We made it to one billion prime numbers! Please keep on donating processor time as we still have plenty of storage for the prime numbers. Our database is now more than double the size (<a class=\"link\" href=\"/archive/prime/3000000/\">300 million primes</a>) and we've put in the capacity to keep growing. To view our current progress please visit the <del>status</del> page."),
bp_table_row!("18th August 2009","It's been a while but we have been very busy. We've put together a distributed computing client written in javascript. Our database is now more than double the size (<a class=\"link\" href=\"/archive/prime/3000000/\">300 million primes</a>) and we've put in the capacity to keep growing. To view our current progress please visit the <del>status</del> page."),
bp_table_row!("17th July 2008","We've now added a Forum (now retired) which can be found on the navigation links on the left."),
bp_table_row!("14th July 2008","Someone named Kirk just emailed me to say the download links wern't working. I've now fixed this. Thanks Kirk!"),
bp_table_row!("4th July 2008","Added much faster code to the cruncher so that we can handle more of your page loads! Lots of little updates and some reorganizing of the site."),
Expand Down
1 change: 0 additions & 1 deletion src/pages/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ pub mod error;
pub mod faq;
pub mod home;
pub mod primalitytest;
pub mod status;
15 changes: 0 additions & 15 deletions src/pages/status.rs

This file was deleted.

0 comments on commit 7103d99

Please sign in to comment.