Skip to content

Commit 73832c4

Browse files
Merge pull request #2506 from keymanapp/auto/A19S28-merge-master-into-staging
auto: A19S28 merge master into staging
2 parents 0c82162 + 8d57634 commit 73832c4

16 files changed

Lines changed: 2831 additions & 12 deletions

File tree

_includes/includes/template.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,19 @@ function head($args=[]){
100100
}
101101

102102
function write_breadcrumbs(){
103+
global $kb_title;
103104
$request_uri = explode("?",$_SERVER["REQUEST_URI"]);
104105
$crumbs = explode("/",$request_uri[0]);
105106
$crumbcount = count($crumbs);
106107
$crumbtrail = '';
108+
if(sizeof($crumbs) > 1 && $crumbs[1] == 'knowledge-base') {
109+
if(isset($_REQUEST['id'])) {
110+
// KB articles are served by a single file, so we need to look for the
111+
// global variable $kb_title to get the appropriate title, which is set
112+
// in /knowledge-base/index.php.
113+
$crumbs[2] = isset($kb_title) ? $kb_title : '';
114+
}
115+
}
107116
for($i=1; $i<$crumbcount; $i++){
108117
$crumb = ucfirst(str_replace(array(".php","_","-"),array(""," "," "),$crumbs[$i]) . ' ');
109118

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
$pagename = 'Assyrian Audo Keyboard Help';
3+
$pagetitle = $pagename;
4+
require_once('header.php');
5+
?>
6+
7+
<p>
8+
Assyrian Audo keyboard is designed for the Assyrian language. This keyboard is a non-phonetic layout, and it is packaged with the Ramsina font.
9+
</p>
10+
11+
<h2>Desktop/Tablet Keyboard Layout</h2>
12+
<div id='osk' data-states='default shift'>
13+
</div>
14+
15+
<h2>Mobile/Phone Keyboard Layout</h2>
16+
<p>Due to the size and number of keys, some characters are hidden in the long press.
17+
Press and hold on the key with a little dot on the top right to reveal and use them.</p>
18+
19+
<div id='osk-phone' data-states='default diacritics numeric'>
20+
</div>
21+
22+
<h3>Longpress</h3>
23+
<p>On mobile phone, keys with a little dot on the top right can be pressed and held for more keys.</p>
24+
<p><a href="phone_longpress.png"><img class="keyboard" src="phone_longpress.png" alt="Longpress state" /></a></p>
16.6 KB
Loading

0 commit comments

Comments
 (0)