Advertisement
Isoraqathedh

config.lisp

May 24th, 2016
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 3.44 KB | None | 0 0
  1. ;; -*- lisp -*-
  2. ((:timezone . "Europe/London")
  3.  (:tag-props
  4.   (:language :metadata "Langs" :tumblr "conlangs" :filename "Trl")
  5.   (:world :metadata "Worlds" :tumblr "conworlds" :filename "Tpl")
  6.   (t :metadata "Other/Misc" :tumblr "misc" :filename "Mis"))
  7.  (:tags
  8.   ;;; Tags
  9.   ;; A property list that follows a string:
  10.   ;; a SYMBOL: a short code for the object that this thing names.
  11.   ;; All properties in the plist alist are optional except two:
  12.   ;; NAME: The full name of the object as it is most commonly known as, and
  13.   ;; TYPE: the type of tag that it belongs to.
  14.   ;; Other keys and values
  15.   ;; represent alternate forms of the name of the object
  16.   ;; such as ASCII form, true form, etc.
  17.  
  18.   ;; Main four
  19.   ("EP" :name "Egonyota Pasaru" :type :language)
  20.   ("SX" :name "Serakafph Xaxex" :type :language)
  21.   ("EQ" :name "yukũa|Elaga ütæk|Qvaḻsa"
  22.         :type :language
  23.         :ascii-name "yukua|Elaga utak|Qvalsa")
  24.   ("Ct" :name "Cipogrtesaj" :type :language)
  25.  
  26.   ;; PSD
  27.   ("Yk" :name "Yoskrai" :type :language)
  28.   ("Ag" :name "Âagenzbèe" :type :language :ascii-name "Aahqgenzbeeq")
  29.   ("Cd" :name "Cindri" :type :language)
  30.   ("Rs" :name "Rattssaw" :type :language)
  31.   ("GE" :name "Gwa-elohba" :type :language)
  32.   ("NH" :name "Nnn Heeel" :type :language)
  33.   ;; Reserved for future use
  34.   ;;R ("Gb" :name "Genbarg" :type :language)
  35.   ;;R ("Or" :name "Oraṕ" :type :language :ascii-name "Oraf")
  36.   ;;R ("EB" :name "Egonyota Bulilla" :type :language)
  37.   ;;R ("EV" :name "Egonyota Vohalyosun" :type :language)
  38.   ;;R ("Sr" :name "Strenpil" :type :language)
  39.  
  40.   ;; XAX
  41.   ("Sk" :name "Sekapon" :type :language)
  42.   ("Ya" :name "Ya-kĕnaj" :type :language :ascii-name "Ya-kewnaj")
  43.   ("OF" :name "Ouduec Fxelw" :type :language)
  44.  
  45.   ;; Others
  46.   ("Ub" :name "Uvbraot" :type :language)
  47.   ("MGY" :name "Man Gog Yuu" :type :language)
  48.   ("AKF" :name "Altrvukaif" :type :language)
  49.   ("GMF" :name "g'Mòdyfäjq" :type :language :ascii-name "gModifajq")
  50.   ;;R ("RDWA" :type :language "Rďƿa" :ascii-name "Rdhwqa")
  51.  
  52.   ;; Worlds
  53.   ("PSD" :name "Pseudo" :type :world :true-name "Pasaru")
  54.   ("XAX" :name "Xaxex" :type :world)
  55.   ("CIR" :name "Circular" :type :world :true-name "Cipog")
  56.   ("QUX" :name "Quaxtion" :type :world)
  57.   ("LEB" :name "Leħbraot" :type :world :ascii-name "Lehqhbraot")
  58.   ("BIG" :name "Bigencenryin" :type :world)
  59.   ("UZY" :name "Ùzje" :type :world :ascii-name "U!zje")
  60.  
  61.   ;;; Special tags
  62.   ;; These are thematic tags, tags that describe a running theme;
  63.   ;; they can be used in any combination with the tags above.
  64.   ;; They are usually mutually exclusive with each other and
  65.   ;; are in English rather than in their own language.
  66.   ("RSGN" :type :special :name "Road signs")
  67.   ("OVEX" :type :special :name "Octovexillology"))
  68.  
  69.  (:ignore-list
  70.   ;;; Ignore list
  71.   ;; For each book (whose code is indicated by the key),
  72.   ;; a list of objects that indicate its ignorance.
  73.   ;; Lists indicate that the specified pages are ignored in that particular book,
  74.   ;; whereas T indicates the entire book is ignored.
  75.   ;; For readability, it is advised to write the first cons in dotted form,
  76.   ;; even if another cons follows.
  77.   ("boc"
  78.    (1  . T)
  79.    (2  . T)
  80.    (3  . T)
  81.    (4  . T)
  82.    (5  . T)
  83.    (6  . (2 3))
  84.    (7  . (38 39 49))
  85.    (8  . (21 27 28))
  86.    (9  . (34 37))
  87.    (10 . (41))
  88.    (11 . (2))
  89.    (13 . (47))
  90.    (14 . (29 40))
  91.    (18 . (15)))
  92.   ("purple"
  93.    (1 . (2)))))
  94.  
  95. ;; Local Variables:
  96. ;; disable-flyspell: t;
  97. ;; End:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement