2018-10-02 14:42:34 +00:00
|
|
|
use std::collections::{HashMap, HashSet};
|
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
|
|
|
|
use slotmap::{DenseSlotMap, Key};
|
|
|
|
|
|
|
|
use front_matter::SortBy;
|
|
|
|
|
2019-02-09 18:54:46 +00:00
|
|
|
use config::Config;
|
2018-10-02 14:42:34 +00:00
|
|
|
use content::{Page, Section};
|
2018-10-31 07:18:57 +00:00
|
|
|
use sorting::{find_siblings, sort_pages_by_date, sort_pages_by_weight};
|
2018-10-02 14:42:34 +00:00
|
|
|
|
2018-10-05 17:34:27 +00:00
|
|
|
/// Houses everything about pages and sections
|
|
|
|
/// Think of it as a database where each page and section has an id (Key here)
|
|
|
|
/// that can be used to find the actual value
|
|
|
|
/// Sections and pages can then refer to other elements by those keys, which are very cheap to
|
|
|
|
/// copy.
|
|
|
|
/// We can assume the keys are always existing as removing a page/section deletes all references
|
|
|
|
/// to that key.
|
2018-10-02 14:42:34 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Library {
|
2018-10-05 17:34:27 +00:00
|
|
|
/// All the pages of the site
|
2018-10-02 14:42:34 +00:00
|
|
|
pages: DenseSlotMap<Page>,
|
2018-10-05 17:34:27 +00:00
|
|
|
/// All the sections of the site
|
2018-10-02 14:42:34 +00:00
|
|
|
sections: DenseSlotMap<Section>,
|
2018-10-05 17:34:27 +00:00
|
|
|
/// A mapping path -> key for pages so we can easily get their key
|
2019-01-04 19:31:31 +00:00
|
|
|
pub paths_to_pages: HashMap<PathBuf, Key>,
|
2018-10-05 17:34:27 +00:00
|
|
|
/// A mapping path -> key for sections so we can easily get their key
|
2018-10-18 13:54:51 +00:00
|
|
|
pub paths_to_sections: HashMap<PathBuf, Key>,
|
2019-01-04 19:31:31 +00:00
|
|
|
/// Whether we need to look for translations
|
|
|
|
is_multilingual: bool,
|
2018-10-02 14:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Library {
|
2019-01-04 19:31:31 +00:00
|
|
|
pub fn new(cap_pages: usize, cap_sections: usize, is_multilingual: bool) -> Self {
|
2018-10-02 14:42:34 +00:00
|
|
|
Library {
|
|
|
|
pages: DenseSlotMap::with_capacity(cap_pages),
|
|
|
|
sections: DenseSlotMap::with_capacity(cap_sections),
|
|
|
|
paths_to_pages: HashMap::with_capacity(cap_pages),
|
|
|
|
paths_to_sections: HashMap::with_capacity(cap_sections),
|
2019-01-04 19:31:31 +00:00
|
|
|
is_multilingual,
|
2018-10-02 14:42:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 17:34:27 +00:00
|
|
|
/// Add a section and return its Key
|
2018-10-02 14:42:34 +00:00
|
|
|
pub fn insert_section(&mut self, section: Section) -> Key {
|
|
|
|
let path = section.file.path.clone();
|
|
|
|
let key = self.sections.insert(section);
|
|
|
|
self.paths_to_sections.insert(path, key);
|
|
|
|
key
|
|
|
|
}
|
|
|
|
|
2018-10-05 17:34:27 +00:00
|
|
|
/// Add a page and return its Key
|
2018-10-02 14:42:34 +00:00
|
|
|
pub fn insert_page(&mut self, page: Page) -> Key {
|
|
|
|
let path = page.file.path.clone();
|
|
|
|
let key = self.pages.insert(page);
|
|
|
|
self.paths_to_pages.insert(path, key);
|
|
|
|
key
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn pages(&self) -> &DenseSlotMap<Page> {
|
|
|
|
&self.pages
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn pages_mut(&mut self) -> &mut DenseSlotMap<Page> {
|
|
|
|
&mut self.pages
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn pages_values(&self) -> Vec<&Page> {
|
|
|
|
self.pages.values().collect::<Vec<_>>()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn sections(&self) -> &DenseSlotMap<Section> {
|
|
|
|
&self.sections
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn sections_mut(&mut self) -> &mut DenseSlotMap<Section> {
|
|
|
|
&mut self.sections
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn sections_values(&self) -> Vec<&Section> {
|
|
|
|
self.sections.values().collect::<Vec<_>>()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Find out the direct subsections of each subsection if there are some
|
|
|
|
/// as well as the pages for each section
|
2019-01-29 18:20:03 +00:00
|
|
|
pub fn populate_sections(&mut self, config: &Config) {
|
2018-12-29 10:17:43 +00:00
|
|
|
let root_path =
|
|
|
|
self.sections.values().find(|s| s.is_index()).map(|s| s.file.parent.clone()).unwrap();
|
2018-10-18 13:54:51 +00:00
|
|
|
// We are going to get both the ancestors and grandparents for each section in one go
|
|
|
|
let mut ancestors: HashMap<PathBuf, Vec<_>> = HashMap::new();
|
|
|
|
let mut subsections: HashMap<PathBuf, Vec<_>> = HashMap::new();
|
2018-10-02 14:42:34 +00:00
|
|
|
|
|
|
|
for section in self.sections.values_mut() {
|
2018-10-18 13:54:51 +00:00
|
|
|
// Make sure the pages of a section are empty since we can call that many times on `serve`
|
|
|
|
section.pages = vec![];
|
|
|
|
section.ignored_pages = vec![];
|
|
|
|
|
2018-10-02 14:42:34 +00:00
|
|
|
if let Some(ref grand_parent) = section.file.grand_parent {
|
2018-10-18 13:54:51 +00:00
|
|
|
subsections
|
2018-12-28 11:15:17 +00:00
|
|
|
// Using the original filename to work for multi-lingual sections
|
|
|
|
.entry(grand_parent.join(§ion.file.filename))
|
2018-10-02 14:42:34 +00:00
|
|
|
.or_insert_with(|| vec![])
|
|
|
|
.push(section.file.path.clone());
|
|
|
|
}
|
2018-10-18 13:54:51 +00:00
|
|
|
|
|
|
|
// Index has no ancestors, no need to go through it
|
|
|
|
if section.is_index() {
|
|
|
|
ancestors.insert(section.file.path.clone(), vec![]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut path = root_path.clone();
|
2018-12-28 11:15:17 +00:00
|
|
|
let root_key = self.paths_to_sections[&root_path.join(§ion.file.filename)];
|
2018-10-18 13:54:51 +00:00
|
|
|
// Index section is the first ancestor of every single section
|
2018-10-18 21:20:29 +00:00
|
|
|
let mut parents = vec![root_key];
|
2018-10-18 13:54:51 +00:00
|
|
|
for component in §ion.file.components {
|
|
|
|
path = path.join(component);
|
|
|
|
// Skip itself
|
|
|
|
if path == section.file.parent {
|
|
|
|
continue;
|
|
|
|
}
|
2018-12-29 10:17:43 +00:00
|
|
|
if let Some(section_key) =
|
2019-01-04 19:34:20 +00:00
|
|
|
self.paths_to_sections.get(&path.join(§ion.file.filename))
|
|
|
|
{
|
|
|
|
parents.push(*section_key);
|
|
|
|
}
|
2018-10-18 13:54:51 +00:00
|
|
|
}
|
|
|
|
ancestors.insert(section.file.path.clone(), parents);
|
2018-10-02 14:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (key, page) in &mut self.pages {
|
2019-01-29 18:20:03 +00:00
|
|
|
let parent_filename = if page.lang != config.default_language {
|
|
|
|
format!("_index.{}.md", page.lang)
|
2018-12-28 11:15:17 +00:00
|
|
|
} else {
|
|
|
|
"_index.md".to_string()
|
|
|
|
};
|
|
|
|
let mut parent_section_path = page.file.parent.join(&parent_filename);
|
2018-11-05 23:46:11 +00:00
|
|
|
while let Some(section_key) = self.paths_to_sections.get(&parent_section_path) {
|
2018-11-07 18:42:15 +00:00
|
|
|
let parent_is_transparent;
|
|
|
|
// We need to get a reference to a section later so keep the scope of borrowing small
|
|
|
|
{
|
2019-07-04 22:04:39 +00:00
|
|
|
let section = self.sections.get_mut(*section_key).unwrap();
|
2018-11-07 18:42:15 +00:00
|
|
|
section.pages.push(key);
|
|
|
|
parent_is_transparent = section.meta.transparent;
|
|
|
|
}
|
2018-10-31 07:18:57 +00:00
|
|
|
page.ancestors =
|
|
|
|
ancestors.get(&parent_section_path).cloned().unwrap_or_else(|| vec![]);
|
2018-10-18 13:54:51 +00:00
|
|
|
// Don't forget to push the actual parent
|
|
|
|
page.ancestors.push(*section_key);
|
2018-11-05 23:46:11 +00:00
|
|
|
|
2018-11-07 18:42:15 +00:00
|
|
|
// Find the page template if one of a parent has page_template set
|
|
|
|
// Stops after the first one found, keep in mind page.ancestors
|
|
|
|
// is [index, ..., parent] so we need to reverse it first
|
|
|
|
if page.meta.template.is_none() {
|
|
|
|
for ancestor in page.ancestors.iter().rev() {
|
|
|
|
let s = self.sections.get(*ancestor).unwrap();
|
|
|
|
if s.meta.page_template.is_some() {
|
|
|
|
page.meta.template = s.meta.page_template.clone();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !parent_is_transparent {
|
2018-11-05 23:46:11 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-12-28 11:15:17 +00:00
|
|
|
// We've added `_index(.{LANG})?.md` so if we are here so we need to go up twice
|
2018-11-05 23:46:11 +00:00
|
|
|
match parent_section_path.clone().parent().unwrap().parent() {
|
2018-12-28 11:15:17 +00:00
|
|
|
Some(parent) => parent_section_path = parent.join(&parent_filename),
|
2018-11-05 23:46:11 +00:00
|
|
|
None => break,
|
|
|
|
}
|
2018-10-02 14:42:34 +00:00
|
|
|
}
|
|
|
|
}
|
2018-10-06 11:37:06 +00:00
|
|
|
|
2019-01-04 19:31:31 +00:00
|
|
|
self.populate_translations();
|
2018-10-06 11:37:06 +00:00
|
|
|
self.sort_sections_pages();
|
2018-10-02 14:42:34 +00:00
|
|
|
|
|
|
|
let sections = self.paths_to_sections.clone();
|
|
|
|
let mut sections_weight = HashMap::new();
|
|
|
|
for (key, section) in &self.sections {
|
|
|
|
sections_weight.insert(key, section.meta.weight);
|
|
|
|
}
|
2018-10-15 20:28:25 +00:00
|
|
|
|
2018-10-18 13:54:51 +00:00
|
|
|
for section in self.sections.values_mut() {
|
|
|
|
if let Some(ref children) = subsections.get(§ion.file.path) {
|
|
|
|
let mut children: Vec<_> = children.iter().map(|p| sections[p]).collect();
|
|
|
|
children.sort_by(|a, b| sections_weight[a].cmp(§ions_weight[b]));
|
|
|
|
section.subsections = children;
|
2018-10-02 14:42:34 +00:00
|
|
|
}
|
2018-10-31 07:18:57 +00:00
|
|
|
section.ancestors =
|
|
|
|
ancestors.get(§ion.file.path).cloned().unwrap_or_else(|| vec![]);
|
2018-10-02 14:42:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-04 19:31:31 +00:00
|
|
|
/// Sort all sections pages according to sorting method given
|
|
|
|
/// Pages that cannot be sorted are set to the section.ignored_pages instead
|
2018-10-06 11:37:06 +00:00
|
|
|
pub fn sort_sections_pages(&mut self) {
|
2018-10-02 14:42:34 +00:00
|
|
|
let mut updates = HashMap::new();
|
|
|
|
for (key, section) in &self.sections {
|
|
|
|
let (sorted_pages, cannot_be_sorted_pages) = match section.meta.sort_by {
|
|
|
|
SortBy::None => continue,
|
|
|
|
SortBy::Date => {
|
2018-10-31 07:18:57 +00:00
|
|
|
let data = section
|
|
|
|
.pages
|
2018-10-02 14:42:34 +00:00
|
|
|
.iter()
|
|
|
|
.map(|k| {
|
|
|
|
if let Some(page) = self.pages.get(*k) {
|
|
|
|
(k, page.meta.datetime, page.permalink.as_ref())
|
|
|
|
} else {
|
|
|
|
unreachable!("Sorting got an unknown page")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
sort_pages_by_date(data)
|
2018-10-31 07:18:57 +00:00
|
|
|
}
|
2018-10-02 14:42:34 +00:00
|
|
|
SortBy::Weight => {
|
2018-10-31 07:18:57 +00:00
|
|
|
let data = section
|
|
|
|
.pages
|
2018-10-02 14:42:34 +00:00
|
|
|
.iter()
|
|
|
|
.map(|k| {
|
|
|
|
if let Some(page) = self.pages.get(*k) {
|
|
|
|
(k, page.meta.weight, page.permalink.as_ref())
|
|
|
|
} else {
|
|
|
|
unreachable!("Sorting got an unknown page")
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
sort_pages_by_weight(data)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
updates.insert(key, (sorted_pages, cannot_be_sorted_pages, section.meta.sort_by));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (key, (sorted, cannot_be_sorted, sort_by)) in updates {
|
|
|
|
// Find sibling between sorted pages first
|
2019-07-19 09:10:28 +00:00
|
|
|
let with_siblings = find_siblings(&sorted);
|
2018-10-02 14:42:34 +00:00
|
|
|
|
|
|
|
for (k2, val1, val2) in with_siblings {
|
|
|
|
if let Some(page) = self.pages.get_mut(k2) {
|
|
|
|
match sort_by {
|
|
|
|
SortBy::Date => {
|
|
|
|
page.earlier = val2;
|
|
|
|
page.later = val1;
|
2018-10-31 07:18:57 +00:00
|
|
|
}
|
2018-10-02 14:42:34 +00:00
|
|
|
SortBy::Weight => {
|
|
|
|
page.lighter = val1;
|
|
|
|
page.heavier = val2;
|
2018-10-31 07:18:57 +00:00
|
|
|
}
|
|
|
|
SortBy::None => unreachable!("Impossible to find siblings in SortBy::None"),
|
2018-10-02 14:42:34 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
unreachable!("Sorting got an unknown page")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(s) = self.sections.get_mut(key) {
|
|
|
|
s.pages = sorted;
|
|
|
|
s.ignored_pages = cannot_be_sorted;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-04 19:31:31 +00:00
|
|
|
/// Finds all the translations for each section/page and set the `translations`
|
|
|
|
/// field of each as needed
|
|
|
|
/// A no-op for sites without multiple languages
|
|
|
|
fn populate_translations(&mut self) {
|
|
|
|
if !self.is_multilingual {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sections first
|
|
|
|
let mut sections_translations = HashMap::new();
|
|
|
|
for (key, section) in &self.sections {
|
|
|
|
sections_translations
|
2019-01-04 19:34:20 +00:00
|
|
|
.entry(section.file.canonical.clone()) // TODO: avoid this clone
|
2019-01-04 19:31:31 +00:00
|
|
|
.or_insert_with(Vec::new)
|
|
|
|
.push(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (key, section) in self.sections.iter_mut() {
|
|
|
|
let translations = §ions_translations[§ion.file.canonical];
|
|
|
|
if translations.len() == 1 {
|
|
|
|
section.translations = vec![];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
section.translations = translations.iter().filter(|k| **k != key).cloned().collect();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Same thing for pages
|
|
|
|
let mut pages_translations = HashMap::new();
|
|
|
|
for (key, page) in &self.pages {
|
|
|
|
pages_translations
|
2019-01-04 19:34:20 +00:00
|
|
|
.entry(page.file.canonical.clone()) // TODO: avoid this clone
|
2019-01-04 19:31:31 +00:00
|
|
|
.or_insert_with(Vec::new)
|
|
|
|
.push(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (key, page) in self.pages.iter_mut() {
|
|
|
|
let translations = &pages_translations[&page.file.canonical];
|
|
|
|
if translations.len() == 1 {
|
|
|
|
page.translations = vec![];
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
page.translations = translations.iter().filter(|k| **k != key).cloned().collect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 17:34:27 +00:00
|
|
|
/// Find all the orphan pages: pages that are in a folder without an `_index.md`
|
2018-10-02 14:42:34 +00:00
|
|
|
pub fn get_all_orphan_pages(&self) -> Vec<&Page> {
|
2018-10-31 07:18:57 +00:00
|
|
|
let pages_in_sections =
|
|
|
|
self.sections.values().flat_map(|s| &s.pages).collect::<HashSet<_>>();
|
2018-10-02 14:42:34 +00:00
|
|
|
|
|
|
|
self.pages
|
2018-10-05 13:03:22 +00:00
|
|
|
.iter()
|
|
|
|
.filter(|(key, _)| !pages_in_sections.contains(&key))
|
|
|
|
.map(|(_, page)| page)
|
2018-10-02 14:42:34 +00:00
|
|
|
.collect()
|
|
|
|
}
|
|
|
|
|
2019-01-30 08:15:46 +00:00
|
|
|
/// Find the parent section & all grandparents section that have transparent=true
|
|
|
|
/// Only used in rebuild.
|
|
|
|
pub fn find_parent_sections<P: AsRef<Path>>(&self, path: P) -> Vec<&Section> {
|
|
|
|
let mut parents = vec![];
|
|
|
|
let page = self.get_page(path.as_ref()).unwrap();
|
|
|
|
for ancestor in page.ancestors.iter().rev() {
|
|
|
|
let section = self.get_section_by_key(*ancestor);
|
|
|
|
if parents.is_empty() || section.meta.transparent {
|
|
|
|
parents.push(section);
|
2018-10-06 11:37:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-30 08:15:46 +00:00
|
|
|
parents
|
2018-10-06 11:37:06 +00:00
|
|
|
}
|
|
|
|
|
2018-10-15 20:28:25 +00:00
|
|
|
/// Only used in tests
|
2018-11-10 21:23:37 +00:00
|
|
|
pub fn get_section_key<P: AsRef<Path>>(&self, path: P) -> Option<&Key> {
|
|
|
|
self.paths_to_sections.get(path.as_ref())
|
2018-10-15 20:28:25 +00:00
|
|
|
}
|
|
|
|
|
2018-11-10 21:23:37 +00:00
|
|
|
pub fn get_section<P: AsRef<Path>>(&self, path: P) -> Option<&Section> {
|
|
|
|
self.sections.get(self.paths_to_sections.get(path.as_ref()).cloned().unwrap_or_default())
|
2018-10-02 14:42:34 +00:00
|
|
|
}
|
|
|
|
|
2018-11-10 21:23:37 +00:00
|
|
|
pub fn get_section_mut<P: AsRef<Path>>(&mut self, path: P) -> Option<&mut Section> {
|
2018-11-14 16:34:21 +00:00
|
|
|
self.sections
|
|
|
|
.get_mut(self.paths_to_sections.get(path.as_ref()).cloned().unwrap_or_default())
|
2018-10-02 14:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_section_by_key(&self, key: Key) -> &Section {
|
|
|
|
self.sections.get(key).unwrap()
|
|
|
|
}
|
|
|
|
|
2018-10-15 20:28:25 +00:00
|
|
|
pub fn get_section_mut_by_key(&mut self, key: Key) -> &mut Section {
|
|
|
|
self.sections.get_mut(key).unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_section_path_by_key(&self, key: Key) -> &str {
|
|
|
|
&self.get_section_by_key(key).file.relative
|
|
|
|
}
|
|
|
|
|
2018-11-10 21:23:37 +00:00
|
|
|
pub fn get_page<P: AsRef<Path>>(&self, path: P) -> Option<&Page> {
|
|
|
|
self.pages.get(self.paths_to_pages.get(path.as_ref()).cloned().unwrap_or_default())
|
2018-10-02 14:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_page_by_key(&self, key: Key) -> &Page {
|
|
|
|
self.pages.get(key).unwrap()
|
|
|
|
}
|
|
|
|
|
2018-11-07 18:42:15 +00:00
|
|
|
pub fn get_page_mut_by_key(&mut self, key: Key) -> &mut Page {
|
|
|
|
self.pages.get_mut(key).unwrap()
|
|
|
|
}
|
|
|
|
|
2018-11-10 21:23:37 +00:00
|
|
|
pub fn remove_section<P: AsRef<Path>>(&mut self, path: P) -> Option<Section> {
|
|
|
|
if let Some(k) = self.paths_to_sections.remove(path.as_ref()) {
|
2018-10-05 17:34:27 +00:00
|
|
|
self.sections.remove(k)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-10 21:23:37 +00:00
|
|
|
pub fn remove_page<P: AsRef<Path>>(&mut self, path: P) -> Option<Page> {
|
|
|
|
if let Some(k) = self.paths_to_pages.remove(path.as_ref()) {
|
2018-10-02 14:42:34 +00:00
|
|
|
self.pages.remove(k)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-05 17:34:27 +00:00
|
|
|
/// Used in rebuild, to check if we know it already
|
2018-11-10 21:23:37 +00:00
|
|
|
pub fn contains_section<P: AsRef<Path>>(&self, path: P) -> bool {
|
|
|
|
self.paths_to_sections.contains_key(path.as_ref())
|
2018-10-05 17:34:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Used in rebuild, to check if we know it already
|
2018-11-10 21:23:37 +00:00
|
|
|
pub fn contains_page<P: AsRef<Path>>(&self, path: P) -> bool {
|
|
|
|
self.paths_to_pages.contains_key(path.as_ref())
|
2018-10-02 14:42:34 +00:00
|
|
|
}
|
|
|
|
}
|