unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Robert Pluim <rpluim@gmail.com>
To: Grant Shoshin Shangreaux <grant@churls.world>
Cc: Eli Zaretskii <eliz@gnu.org>, emacs-devel@gnu.org
Subject: Re: adding Lakota keyboard layouts
Date: Tue, 25 May 2021 10:31:25 +0200	[thread overview]
Message-ID: <87im3743ky.fsf@gmail.com> (raw)
In-Reply-To: <875yz9v1ly.fsf@churls.world> (Grant Shoshin Shangreaux's message of "Sun, 23 May 2021 11:47:21 -0500")

>>>>> On Sun, 23 May 2021 11:47:21 -0500, Grant Shoshin Shangreaux <grant@churls.world> said:

    Grant> Eli Zaretskii writes:

    >> Lakota uses the Latin script, right?  So I think your input method(s)
    >> should be in the latin-*.el files, depending on whether they are
    >> prefix or postfix.  Does that sound right?

    Grant> Yeah that sounds right to me. I'm contributing two orthographies, but
    Grant> they're both based on latin text. Fits in with the Hawaiian methods in
    Grant> the same file. Currently, I just have postfix, but may
    Grant> follow up with prefix input methods in the future.

    >> Thanks.  As Robert said, please read CONTRIBUTE and format
    >> accordingly.  We generally prefer the patches to be formatted by
    >> "git format-patch" relative to the current master branch, if that is
    >> feasible for you.

    Grant> yes no problem. i'm going to attach the patch here for now, since this
    Grant> thread is already open and there's no "bug" to attach it to yet on the
    Grant> other list.

    Grant> let me know what else may be needed for this patch! thanks

Thanks for this, comments below (disclaimer: I know nothing about
Lakota orthography)

    Grant> From 0caaf81a098ef168681672107a37bfaca8498d52 Mon Sep 17 00:00:00 2001
    Grant> From: Grant Shangreaux <grant@churls.world>
    Grant> Date: Sun, 23 May 2021 11:28:25 -0500
    Grant> Subject: [PATCH] * lisp/leim/quail/latin-post.el Add: Lakota postfix
    Grant>  definitions

Youʼre missing a ChangeLog and a NEWS entry. See commit 229c51afbf for
an example

    Grant> ---
    Grant>  lisp/leim/quail/latin-post.el | 49 +++++++++++++++++++++++++++++++++++
    Grant>  1 file changed, 49 insertions(+)

    Grant> diff --git a/lisp/leim/quail/latin-post.el b/lisp/leim/quail/latin-post.el
    Grant> index 10408776a2..f4876622b4 100644
    Grant> --- a/lisp/leim/quail/latin-post.el
    Grant> +++ b/lisp/leim/quail/latin-post.el
    Grant> @@ -1298,6 +1298,55 @@
    Grant>   ("a__" ["a_"])
    Grant>   )
 
    Grant> +;; Input modes of various orthographies for the Lakota language.
    Grant> +;; I'd like to acknowledge the elders and ancestors who fought
    Grant> +;; to keep the language and culture alive.
    Grant> +;; Grant Shangreaux <grant@churls.world> 2021-05-23
    Grant> +
    Grant> +(quail-define-package
    Grant> + "lakota-white-hat-postfix" "Lakota" "Lak " t
    Grant> + "Lakota White Hat orthography input method.
    Grant> +Unused letters `r' and `v' are used to add the dot above and macron
    Grant> +diacritics for used in this orthography. The glottal stop
    Grant> is produced

Two spaces after '.', here and below

    Grant> +by repeating the `'' character."
    Grant> +nil t nil nil nil nil nil nil nil nil t)
    Grant> +
    Grant> +(quail-define-rules
    Grant> + ("f" ?ŋ)
    Grant> + ("r" #x307)                            ; COMBINING DOT ABOVE
    Grant> + ("v" #x304)                            ; COMBINING MACRON

I guess these combine if you use the ? notation, which looks
terrible. Perhaps a comment to that effect?

Also, in the lakota-slo-postfix, you produce eg á, whereas this
method produces ȧ. Are they intended to represent the same sound? If
so, could it be confusing to have them represented differently?

    Grant> + ("''" ?’)
    Grant> + )
    Grant> +
    Grant> +(quail-define-package
    Grant> + "lakota-slo-postfix" "Lakota" "SLO " t
    Grant> + "Suggested Lakota Orthography input method.
    Grant> +Uses a postfix modifier key for adding accent diacritics. To add stress
    Grant> +to a vowel, simply type the single quote ' after the vowel. All other characters
    Grant> +are bound to a single key. Mitákuyepi philámayaye ló. "
    Grant> +nil t nil nil nil nil nil nil nil nil t)
    Grant> +
    Grant> +(quail-define-rules
    Grant> + ;; accented vowels
    Grant> + ("a'" ?á) ("A'" ?Á)
    Grant> + ("e'" ?é) ("E'" ?É)
    Grant> + ("i'" ?í) ("I'" ?Í)
    Grant> + ("o'" ?ó) ("O'" ?Ó)
    Grant> + ("u'" ?ú) ("U'" ?Ú)
    Grant> +
    Grant> + ;; consonants with caron
    Grant> + ("c" ?č) ("C" ?Č)
    Grant> + ("j" ?ȟ) ("J" ?Ȟ)
    Grant> + ("q" ?ǧ) ("Q" ?Ǧ)
    Grant> + ("x" ?ž) ("X" ?Ž)
    Grant> + ("r" ?š) ("R" ?Š)
    Grant> +
    Grant> + ;; velar nasal n
    Grant> + ("f" ?ŋ)
    Grant> +
    Grant> + ;; glottal stop
    Grant> + ("''" ?’))
    Grant> +
    Grant>  (quail-define-package
    Grant>   "norwegian-postfix" "Latin-1" "NO<" t
    Grant>   "Norwegian (Norsk) input method (rule: AE->Æ   OE->Ø   AA->Å   E\\='->É
    Grant> -- 
    Grant> 2.20.1


Robert
-- 



  reply	other threads:[~2021-05-25  8:31 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-18  1:29 adding Lakota keyboard layouts Grant Shoshin Shangreaux
2021-05-18  8:51 ` Robert Pluim
2021-05-18 11:24 ` Eli Zaretskii
2021-05-23 16:47   ` Grant Shoshin Shangreaux
2021-05-25  8:31     ` Robert Pluim [this message]
2021-06-18 15:31       ` Grant Shoshin Shangreaux
2021-06-20 11:06         ` Eli Zaretskii
2021-06-20 14:48         ` Robert Pluim

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87im3743ky.fsf@gmail.com \
    --to=rpluim@gmail.com \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=grant@churls.world \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).