Merge branch 'master' of https://github.com/Alamantus/Lexiconga
This commit is contained in:
commit
6fad67da93
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "lexiconga",
|
"name": "lexiconga",
|
||||||
"version": "2.1.4",
|
"version": "2.1.5",
|
||||||
"description": "The quick and easy dictionary builder for constructed languages.",
|
"description": "The quick and easy dictionary builder for constructed languages.",
|
||||||
"main": "template-index.html",
|
"main": "template-index.html",
|
||||||
"repository": "https://github.com/Alamantus/Lexiconga.git",
|
"repository": "https://github.com/Alamantus/Lexiconga.git",
|
||||||
|
|
|
@ -60,7 +60,7 @@ export function renderDetails() {
|
||||||
const consonantHTML = `<p><strong>Consonants</strong><br>${consonants.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
const consonantHTML = `<p><strong>Consonants</strong><br>${consonants.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
||||||
const vowelHTML = `<p><strong>Vowels</strong><br>${vowels.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
const vowelHTML = `<p><strong>Vowels</strong><br>${vowels.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
||||||
const blendHTML = blends.length > 0 ? `<p><strong>Polyphthongs / Blends</strong><br>${blends.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>` : '';
|
const blendHTML = blends.length > 0 ? `<p><strong>Polyphthongs / Blends</strong><br>${blends.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>` : '';
|
||||||
const phonologyNotesHTML = phonology.notes.trim().length > 0 ? '<p><strong>Notes</strong></p><div>' + md(removeTags(phonology.notes)) + '</div>' : '';
|
const phonologyNotesHTML = phonology.notes.trim().length > 0 ? '<p><strong>Notes</strong></p><div>' + md(parseReferences(removeTags(phonology.notes))) + '</div>' : '';
|
||||||
const phonologyHTML = `<h2>Phonology</h2>
|
const phonologyHTML = `<h2>Phonology</h2>
|
||||||
<div class="split two">
|
<div class="split two">
|
||||||
<div>${consonantHTML}</div>
|
<div>${consonantHTML}</div>
|
||||||
|
@ -73,7 +73,7 @@ export function renderDetails() {
|
||||||
const onsetHTML = `<p><strong>Onset</strong><br>${onset.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
const onsetHTML = `<p><strong>Onset</strong><br>${onset.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
||||||
const nucleusHTML = `<p><strong>Nucleus</strong><br>${nucleus.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
const nucleusHTML = `<p><strong>Nucleus</strong><br>${nucleus.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
||||||
const codaHTML = `<p><strong>Coda</strong><br>${coda.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
const codaHTML = `<p><strong>Coda</strong><br>${coda.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
||||||
const phonotacticsNotesHTML = phonotactics.notes.trim().length > 0 ? '<p><strong>Notes</strong></p><div>' + md(removeTags(phonotactics.notes)) + '</div>' : '';
|
const phonotacticsNotesHTML = phonotactics.notes.trim().length > 0 ? '<p><strong>Notes</strong></p><div>' + md(parseReferences(removeTags(phonotactics.notes))) + '</div>' : '';
|
||||||
const phonotacticsHTML = onset.length + nucleus.length + coda.length + phonotacticsNotesHTML.length > 0
|
const phonotacticsHTML = onset.length + nucleus.length + coda.length + phonotacticsNotesHTML.length > 0
|
||||||
? `<h2>Phonotactics</h2>
|
? `<h2>Phonotactics</h2>
|
||||||
${onset.length > 0 || nucleus.length > 0 || coda.length > 0
|
${onset.length > 0 || nucleus.length > 0 || coda.length > 0
|
||||||
|
@ -93,14 +93,14 @@ export function renderDetails() {
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}).filter(html => html !== false).join(' ')}</p>` : '';
|
}).filter(html => html !== false).join(' ')}</p>` : '';
|
||||||
const orthographyNotesHTML = orthography.notes.trim().length > 0 ? '<p><strong>Notes</strong><br>' + md(removeTags(orthography.notes)) + '</div>' : '';
|
const orthographyNotesHTML = orthography.notes.trim().length > 0 ? '<p><strong>Notes</strong><br>' + md(parseReferences(removeTags(orthography.notes))) + '</div>' : '';
|
||||||
const orthographyHTML = translations.length + orthographyNotesHTML.length > 0
|
const orthographyHTML = translations.length + orthographyNotesHTML.length > 0
|
||||||
? `<h2>Orthography</h2>
|
? `<h2>Orthography</h2>
|
||||||
${translationsHTML}
|
${translationsHTML}
|
||||||
${orthographyNotesHTML}`
|
${orthographyNotesHTML}`
|
||||||
: '';
|
: '';
|
||||||
const grammarHTML = grammar.notes.trim().length > 0 ? '<h2>Grammar</h2><div>'
|
const grammarHTML = grammar.notes.trim().length > 0 ? '<h2>Grammar</h2><div>'
|
||||||
+ (grammar.notes.trim().length > 0 ? md(removeTags(grammar.notes)) : '')
|
+ (grammar.notes.trim().length > 0 ? md(parseReferences(removeTags(grammar.notes))) : '')
|
||||||
+ '</div>' : '';
|
+ '</div>' : '';
|
||||||
|
|
||||||
detailsPanel.innerHTML = generalHTML + phonologyHTML + phonotacticsHTML + orthographyHTML + grammarHTML;
|
detailsPanel.innerHTML = generalHTML + phonologyHTML + phonotacticsHTML + orthographyHTML + grammarHTML;
|
||||||
|
|
|
@ -66,7 +66,7 @@ export function renderDetails() {
|
||||||
const consonantHTML = `<p><strong>Consonants</strong><br>${consonants.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
const consonantHTML = `<p><strong>Consonants</strong><br>${consonants.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
||||||
const vowelHTML = `<p><strong>Vowels</strong><br>${vowels.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
const vowelHTML = `<p><strong>Vowels</strong><br>${vowels.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
||||||
const blendHTML = blends.length > 0 ? `<p><strong>Polyphthongs / Blends</strong><br>${blends.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>` : '';
|
const blendHTML = blends.length > 0 ? `<p><strong>Polyphthongs / Blends</strong><br>${blends.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>` : '';
|
||||||
const phonologyNotesHTML = phonology.notes.trim().length > 0 ? '<p><strong>Notes</strong></p><div>' + md(removeTags(phonology.notes)) + '</div>' : '';
|
const phonologyNotesHTML = phonology.notes.trim().length > 0 ? '<p><strong>Notes</strong></p><div>' + md(phonology.notes) + '</div>' : '';
|
||||||
const phonologyHTML = `<h3>Phonology</h3>
|
const phonologyHTML = `<h3>Phonology</h3>
|
||||||
<div class="split two">
|
<div class="split two">
|
||||||
<div>${consonantHTML}</div>
|
<div>${consonantHTML}</div>
|
||||||
|
@ -79,11 +79,11 @@ export function renderDetails() {
|
||||||
const onsetHTML = `<p><strong>Onset</strong><br>${onset.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
const onsetHTML = `<p><strong>Onset</strong><br>${onset.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
||||||
const nucleusHTML = `<p><strong>Nucleus</strong><br>${nucleus.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
const nucleusHTML = `<p><strong>Nucleus</strong><br>${nucleus.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
||||||
const codaHTML = `<p><strong>Coda</strong><br>${coda.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
const codaHTML = `<p><strong>Coda</strong><br>${coda.map(letter => `<span class="tag">${letter}</span>`).join(' ')}</p>`;
|
||||||
const phonotacticsNotesHTML = phonotactics.notes.trim().length > 0 ? '<p><strong>Notes</strong></p><div>' + md(removeTags(phonotactics.notes)) + '</div>' : '';
|
const phonotacticsNotesHTML = phonotactics.notes.trim().length > 0 ? '<p><strong>Notes</strong></p><div>' + md(phonotactics.notes) + '</div>' : '';
|
||||||
const phonotacticsHTML = onset.length + nucleus.length + coda.length + phonotacticsNotesHTML.length > 0
|
const phonotacticsHTML = onset.length + nucleus.length + coda.length + phonotacticsNotesHTML.length > 0
|
||||||
? `<h3>Phonotactics</h3>
|
? `<h3>Phonotactics</h3>
|
||||||
${onset.length > 0 || nucleus.length > 0 || coda.length > 0
|
${onset.length > 0 || nucleus.length > 0 || coda.length > 0
|
||||||
? `<div class="split three">
|
? `<div class="split three">
|
||||||
<div>${onsetHTML}</div>
|
<div>${onsetHTML}</div>
|
||||||
<div>${nucleusHTML}</div>
|
<div>${nucleusHTML}</div>
|
||||||
<div>${codaHTML}</div>
|
<div>${codaHTML}</div>
|
||||||
|
@ -99,15 +99,17 @@ export function renderDetails() {
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}).filter(html => html !== false).join(' ')}</p>` : '';
|
}).filter(html => html !== false).join(' ')}</p>` : '';
|
||||||
const orthographyNotesHTML = orthography.notes.trim().length > 0 ? '<p><strong>Notes</strong><br>' + md(removeTags(orthography.notes)) + '</div>' : '';
|
const orthographyNotesHTML = orthography.notes.trim().length > 0 ? '<p><strong>Notes</strong><br>' + md(orthography.notes) + '</div>' : '';
|
||||||
const orthographyHTML = translations.length + orthographyNotesHTML.length > 0
|
const orthographyHTML = translations.length + orthographyNotesHTML.length > 0
|
||||||
? `<h3>Orthography</h3>
|
? `<h3>Orthography</h3>
|
||||||
${translationsHTML}
|
${translationsHTML}
|
||||||
${orthographyNotesHTML}`
|
${orthographyNotesHTML}`
|
||||||
: '';
|
: '';
|
||||||
const grammarHTML = grammar.notes.trim().length > 0 ? '<h3>Grammar</h3><div>'
|
const grammarHTML = grammar.notes.trim().length > 0
|
||||||
+ (grammar.notes.trim().length > 0 ? md(removeTags(grammar.notes)) : '')
|
? '<h3>Grammar</h3><div>'
|
||||||
+ '</div>' : '';
|
+ (grammar.notes.trim().length > 0 ? md(grammar.notes) : '')
|
||||||
|
+ '</div>'
|
||||||
|
: '';
|
||||||
|
|
||||||
detailsPanel.innerHTML = generalHTML + phonologyHTML + phonotacticsHTML + orthographyHTML + grammarHTML;
|
detailsPanel.innerHTML = generalHTML + phonologyHTML + phonotacticsHTML + orthographyHTML + grammarHTML;
|
||||||
}
|
}
|
||||||
|
|
|
@ -44,20 +44,20 @@ class PublicDictionary {
|
||||||
'consonants' => $result['consonants'] !== '' ? explode(' ', $result['consonants']) : array(),
|
'consonants' => $result['consonants'] !== '' ? explode(' ', $result['consonants']) : array(),
|
||||||
'vowels' => $result['vowels'] !== '' ? explode(' ', $result['vowels']) : array(),
|
'vowels' => $result['vowels'] !== '' ? explode(' ', $result['vowels']) : array(),
|
||||||
'blends' => $result['blends'] !== '' ? explode(' ', $result['blends']) : array(),
|
'blends' => $result['blends'] !== '' ? explode(' ', $result['blends']) : array(),
|
||||||
'notes' => $result['phonology_notes'],
|
'notes' => $this->parseReferences(strip_tags($result['phonology_notes']), $result['id']),
|
||||||
),
|
),
|
||||||
'phonotactics' => array(
|
'phonotactics' => array(
|
||||||
'onset' => $result['onset'] !== '' ? explode(',', $result['onset']) : array(),
|
'onset' => $result['onset'] !== '' ? explode(',', $result['onset']) : array(),
|
||||||
'nucleus' => $result['nucleus'] !== '' ? explode(',', $result['nucleus']) : array(),
|
'nucleus' => $result['nucleus'] !== '' ? explode(',', $result['nucleus']) : array(),
|
||||||
'coda' => $result['coda'] !== '' ? explode(',', $result['coda']) : array(),
|
'coda' => $result['coda'] !== '' ? explode(',', $result['coda']) : array(),
|
||||||
'notes' => $result['phonotactics_notes'],
|
'notes' => $this->parseReferences(strip_tags($result['phonotactics_notes']), $result['id']),
|
||||||
),
|
),
|
||||||
'orthography' => array(
|
'orthography' => array(
|
||||||
'translations' => $result['translations'] !== '' ? explode(PHP_EOL, $result['translations']) : array(),
|
'translations' => $result['translations'] !== '' ? explode(PHP_EOL, $result['translations']) : array(),
|
||||||
'notes' => $result['orthography_notes'],
|
'notes' => $this->parseReferences(strip_tags($result['orthography_notes']), $result['id']),
|
||||||
),
|
),
|
||||||
'grammar' => array(
|
'grammar' => array(
|
||||||
'notes' => $result['grammar_notes'],
|
'notes' => $this->parseReferences(strip_tags($result['grammar_notes']), $result['id']),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
'settings' => array(
|
'settings' => array(
|
||||||
|
|
|
@ -134,7 +134,7 @@ switch ($view) {
|
||||||
oldLoad && oldLoad();
|
oldLoad && oldLoad();
|
||||||
if (UpUp) {
|
if (UpUp) {
|
||||||
UpUp.start({
|
UpUp.start({
|
||||||
'cache-version': '2.1.4',
|
'cache-version': '2.1.5',
|
||||||
'content-url': 'offline.html',
|
'content-url': 'offline.html',
|
||||||
'assets': [
|
'assets': [
|
||||||
\"" . implode('","', $files) . "\"
|
\"" . implode('","', $files) . "\"
|
||||||
|
|
Loading…
Reference in New Issue