forked from abaevdict/abaev-basex
now index and display subentries
This commit is contained in:
parent
a8c0ea875c
commit
4ef96c50ab
4 changed files with 57 additions and 45 deletions
|
@ -15,6 +15,7 @@ as xs:string {
|
|||
=> replace('\)','')
|
||||
=> replace('́','') (: combining acute :)
|
||||
=> replace('\*','')
|
||||
=> replace('ᵆ','')
|
||||
|
||||
=> replace('a','/')
|
||||
=> replace('A', '/')
|
||||
|
@ -44,6 +45,7 @@ as xs:string {
|
|||
|
||||
=> replace('ʒ', '6')
|
||||
=> replace('Ʒ', '6')
|
||||
=> replace('ǯ', '6')
|
||||
|
||||
=> replace('e', '7')
|
||||
=> replace('E', '7')
|
||||
|
@ -67,6 +69,8 @@ as xs:string {
|
|||
|
||||
=> replace('ǧ', 'A')
|
||||
=> replace('Ǧ', 'A')
|
||||
=> replace('h', 'A')
|
||||
=> replace('H', 'A')
|
||||
|
||||
=> replace('i', 'B')
|
||||
=> replace('I', 'B')
|
||||
|
@ -166,6 +170,8 @@ as xs:string {
|
|||
|
||||
=> replace('z', 'X')
|
||||
=> replace('Z', 'X')
|
||||
=> replace('ž', 'X')
|
||||
=> replace('Ž', 'X')
|
||||
};
|
||||
|
||||
declare function abv-m:sort-collection($docs as document-node()+) {
|
||||
|
|
|
@ -2,11 +2,13 @@ declare default element namespace "http://www.tei-c.org/ns/1.0";
|
|||
declare namespace tei = "http://www.tei-c.org/ns/1.0";
|
||||
declare namespace abv = "http://ossetic-studies.org/ns/abaevdict";
|
||||
|
||||
import module namespace abv-m = 'http://ossetic-studies.org/ns/abaevdict-mod' at './abv-mod.xqm';
|
||||
|
||||
declare function local:genLookupEntry($doc as document-node())
|
||||
as element()?
|
||||
{
|
||||
let $node := $doc/tei:TEI/tei:text/tei:body/tei:entry
|
||||
let $phon := $node/tei:form[1]/tei:orth[1]/text()[1]
|
||||
let $phon := normalize-space(data($node/tei:form[1]/tei:orth[1]))
|
||||
|
||||
return element entry {
|
||||
attribute xml:id { $node/@xml:id },
|
||||
|
@ -16,9 +18,21 @@ as element()?
|
|||
}
|
||||
};
|
||||
|
||||
let $entries := for $doc in collection('abaevdict')
|
||||
return local:genLookupEntry($doc)
|
||||
|
||||
let $subentries := for $doc in collection('abaevdict')
|
||||
for $re in $doc//re
|
||||
let $etext := normalize-space(data($re/form[1]/orth[1]))
|
||||
where $etext != '' and not($etext = $entries/text())
|
||||
and not(starts-with($etext,','))
|
||||
and string-to-codepoints($etext)[1] != string-to-codepoints(' ')
|
||||
return <re corresp="{$doc/tei:TEI/tei:text/tei:body/tei:entry/@xml:id}">{$etext}</re>
|
||||
|
||||
let $tbl := <table>
|
||||
{for $doc in collection('abaevdict')
|
||||
return local:genLookupEntry($doc)}
|
||||
{for $e in ($entries,$subentries)
|
||||
order by abv-m:sortKey($e/text())
|
||||
return $e}
|
||||
</table>
|
||||
|
||||
return db:put('abaevdict_index', $tbl, 'lookup.xml')
|
|
@ -14,8 +14,12 @@ declare variable $page:items as xs:integer := 20;
|
|||
(: These variables are declared in module scope because they are needed in
|
||||
different places, but they are still dynamically evaluated :)
|
||||
declare variable $page:lookup := doc('abaevdict_index/lookup.xml')/tei:table/tei:entry;
|
||||
declare variable $page:lookup-all := doc('abaevdict_index/lookup.xml')/tei:table/*;
|
||||
|
||||
declare variable $page:total := ceiling(count($page:lookup) div $page:items);
|
||||
declare variable $page:sorted := abv-m:sort-nodes($page:lookup);
|
||||
(: This is still called sorted, because I haven't changed the code.
|
||||
But it's now equal to lookup, because the lookup itself is now sorted. :)
|
||||
declare variable $page:sorted := $page:lookup;
|
||||
|
||||
(: =============================================================== :)
|
||||
(: ======================= COMMON STUFF ========================== :)
|
||||
|
@ -331,15 +335,28 @@ declare %rest:path("{$lang}/dict")
|
|||
{html:doc('../static/chevron-left.svg')}
|
||||
</button>
|
||||
<aside id="leftbar">
|
||||
<input type="text" id="filter-entries" placeholder="Quick filter…"/>
|
||||
<fieldset>
|
||||
<input type="text" id="filter-entries"
|
||||
placeholder="{if ($lang = 'ru') then 'Быстрый фильтр' else 'Quick filter…'}"/>
|
||||
<label>
|
||||
<input id="show-re" type="checkbox" role="switch"></input>
|
||||
{if ($lang = 'ru') then 'Производные' else 'Show subentries'}
|
||||
</label>
|
||||
</fieldset>
|
||||
<nav id="entrylist">
|
||||
<ul>
|
||||
{for $doc in $page:sorted
|
||||
return <li id="link_{$doc/@xml:id}">
|
||||
<a href="./dict/{$doc/@xml:id}">
|
||||
{for $doc in $page:lookup-all
|
||||
let $id := if ($doc/name() = 'entry') then $doc/@xml:id
|
||||
else $doc/@corresp
|
||||
return element li {
|
||||
if ($doc/name() = 're') then
|
||||
(attribute hidden {'true'},
|
||||
attribute class {'abv-menu-re'}) else (),
|
||||
attribute id {`link_{$id}`},
|
||||
<a href="./dict/{$id}">
|
||||
{$doc/text()}
|
||||
</a>
|
||||
</li>
|
||||
}
|
||||
}
|
||||
</ul>
|
||||
</nav>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue