Add module Doc comments.
This commit is contained in:
parent
7dd8755bcb
commit
e4a7a7becf
11
TODO.md
11
TODO.md
@ -19,11 +19,6 @@
|
|||||||
- [ ] Re-design PodcastWidget.
|
- [ ] Re-design PodcastWidget.
|
||||||
- [ ] Polish the flowbox_child banner.
|
- [ ] Polish the flowbox_child banner.
|
||||||
|
|
||||||
**DB changes:**
|
|
||||||
|
|
||||||
- [ ] Mark episodes/podcast for archival
|
|
||||||
- [ ] Mark stuff as Favorite. Maybe auto-archive favorites?
|
|
||||||
|
|
||||||
## Second:
|
## Second:
|
||||||
|
|
||||||
- [ ] Make use of file metadas, [This](https://github.com/GuillaumeGomez/audio-video-metadata) might be helpfull.
|
- [ ] Make use of file metadas, [This](https://github.com/GuillaumeGomez/audio-video-metadata) might be helpfull.
|
||||||
@ -50,12 +45,6 @@
|
|||||||
- [ ] Lazy evaluate episode loading based on the podcast_widget's view scrolling.
|
- [ ] Lazy evaluate episode loading based on the podcast_widget's view scrolling.
|
||||||
- [ ] Headerbar back button and stack switching
|
- [ ] Headerbar back button and stack switching
|
||||||
|
|
||||||
|
|
||||||
**Unhack stuff:**
|
|
||||||
|
|
||||||
- [ ] Url sanitization
|
|
||||||
|
|
||||||
|
|
||||||
**FIXME:**
|
**FIXME:**
|
||||||
|
|
||||||
- [ ] Fix Etag/Last-modified implementation. [#2](https://gitlab.gnome.org/alatiera/Hammond/issues/2)
|
- [ ] Fix Etag/Last-modified implementation. [#2](https://gitlab.gnome.org/alatiera/Hammond/issues/2)
|
||||||
|
|||||||
@ -1,3 +1,5 @@
|
|||||||
|
//! Index and retrieve Feeds.
|
||||||
|
|
||||||
use rayon::prelude::*;
|
use rayon::prelude::*;
|
||||||
use diesel::prelude::*;
|
use diesel::prelude::*;
|
||||||
use rayon::iter::IntoParallelIterator;
|
use rayon::iter::IntoParallelIterator;
|
||||||
|
|||||||
@ -2,6 +2,9 @@
|
|||||||
#![warn(missing_docs)]
|
#![warn(missing_docs)]
|
||||||
#![cfg_attr(feature = "cargo-clippy", allow(blacklisted_name))]
|
#![cfg_attr(feature = "cargo-clippy", allow(blacklisted_name))]
|
||||||
|
|
||||||
|
//! A libraty for parsing, indexing and retrieving podcast Feeds,
|
||||||
|
//! into and from a Database.
|
||||||
|
|
||||||
#[macro_use]
|
#[macro_use]
|
||||||
extern crate error_chain;
|
extern crate error_chain;
|
||||||
|
|
||||||
|
|||||||
@ -1,3 +1,5 @@
|
|||||||
|
//! Helper utilities for accomplishing various tasks.
|
||||||
|
|
||||||
use rayon::prelude::*;
|
use rayon::prelude::*;
|
||||||
use chrono::prelude::*;
|
use chrono::prelude::*;
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user