From f5461eb3d4eb2605b546a4ed202c12bcdaa1f4e4 Mon Sep 17 00:00:00 2001 From: "john.j.camilleri" Date: Mon, 16 Sep 2013 07:17:27 +0000 Subject: Remove contribs and examples Everything has now been moved to a separate repository at https://github.com/GrammaticalFramework/gf-contrib The contents of the examples folder are build during SetupWeb --- examples/animals/Animals.gf | 12 ------------ examples/animals/AnimalsEng.gf | 15 --------------- examples/animals/AnimalsFre.gf | 15 --------------- examples/animals/AnimalsSwe.gf | 15 --------------- examples/animals/OldQuestionsI.gfe | 15 --------------- examples/animals/Questions.gf | 10 ---------- examples/animals/QuestionsEng.gf | 2 -- examples/animals/QuestionsFre.gf | 2 -- examples/animals/QuestionsI.gf | 30 ------------------------------ examples/animals/QuestionsI.gfe | 16 ---------------- examples/animals/QuestionsSwe.gf | 2 -- 11 files changed, 134 deletions(-) delete mode 100644 examples/animals/Animals.gf delete mode 100644 examples/animals/AnimalsEng.gf delete mode 100644 examples/animals/AnimalsFre.gf delete mode 100644 examples/animals/AnimalsSwe.gf delete mode 100644 examples/animals/OldQuestionsI.gfe delete mode 100644 examples/animals/Questions.gf delete mode 100644 examples/animals/QuestionsEng.gf delete mode 100644 examples/animals/QuestionsFre.gf delete mode 100644 examples/animals/QuestionsI.gf delete mode 100644 examples/animals/QuestionsI.gfe delete mode 100644 examples/animals/QuestionsSwe.gf (limited to 'examples/animals') diff --git a/examples/animals/Animals.gf b/examples/animals/Animals.gf deleted file mode 100644 index 33b56e740..000000000 --- a/examples/animals/Animals.gf +++ /dev/null @@ -1,12 +0,0 @@ --- The Question grammar specialized to animals. - -abstract Animals = Questions ** { - - flags startcat=Phrase ; - - fun - -- a lexicon of animals and actions among them - Dog, Cat, Mouse, Lion, Zebra : Entity ; - Chase, Eat, See : Action ; -} - diff --git a/examples/animals/AnimalsEng.gf b/examples/animals/AnimalsEng.gf deleted file mode 100644 index dcebdd315..000000000 --- a/examples/animals/AnimalsEng.gf +++ /dev/null @@ -1,15 +0,0 @@ ---# -path=.:present - -concrete AnimalsEng of Animals = QuestionsEng ** - open SyntaxEng, ParadigmsEng, IrregEng in { - - lin - Dog = mkN "dog" ; - Cat = mkN "cat" ; - Mouse = mkN "mouse" "mice" ; - Lion = mkN "lion" ; - Zebra = mkN "zebra" ; - Chase = mkV2 "chase" ; - Eat = mkV2 eat_V ; - See = mkV2 see_V ; -} diff --git a/examples/animals/AnimalsFre.gf b/examples/animals/AnimalsFre.gf deleted file mode 100644 index 8d8f66c7a..000000000 --- a/examples/animals/AnimalsFre.gf +++ /dev/null @@ -1,15 +0,0 @@ ---# -path=.:present - -concrete AnimalsFre of Animals = QuestionsFre ** - open SyntaxFre, ParadigmsFre, IrregFre in { - - lin - Dog = mkN "chien" ; - Cat = mkN "chat" ; - Mouse = mkN "souris" feminine ; - Lion = mkN "lion" masculine ; - Zebra = mkN "zèbre" masculine ; - Chase = mkV2 (mkV "chasser") ; - Eat = mkV2 (mkV "manger") ; - See = voir_V2 ; -} diff --git a/examples/animals/AnimalsSwe.gf b/examples/animals/AnimalsSwe.gf deleted file mode 100644 index 8f256885a..000000000 --- a/examples/animals/AnimalsSwe.gf +++ /dev/null @@ -1,15 +0,0 @@ ---# -path=.:present:prelude - -concrete AnimalsSwe of Animals = QuestionsSwe ** - open LangSwe, ParadigmsSwe, IrregSwe in { - - lin - Dog = regN "hund" ; - Cat = mk2N "katt" "katter" ; - Mouse = mkN "mus" "musen" "möss" "mössen" ; - Lion = mk2N "lejon" "lejon" ; - Zebra = regN "zebra" ; - Chase = dirV2 (regV "jaga") ; - Eat = dirV2 äta_V ; - See = dirV2 se_V ; -} diff --git a/examples/animals/OldQuestionsI.gfe b/examples/animals/OldQuestionsI.gfe deleted file mode 100644 index 03c4ad071..000000000 --- a/examples/animals/OldQuestionsI.gfe +++ /dev/null @@ -1,15 +0,0 @@ --- to compile: echo "eb -file=QuestionsI.gfe" -probs=probs | gf $GF_LIB_PATH/present/LangEng.gfo --- or use directly gf Entity -> Phrase ; -- who chases X - Whom : Entity -> Action -> Phrase ; -- whom does X chase - Answer : Entity -> Action -> Entity -> Phrase ; -- X chases Y -} diff --git a/examples/animals/QuestionsEng.gf b/examples/animals/QuestionsEng.gf deleted file mode 100644 index c8f51fb82..000000000 --- a/examples/animals/QuestionsEng.gf +++ /dev/null @@ -1,2 +0,0 @@ -concrete QuestionsEng of Questions = QuestionsI with - (Syntax = SyntaxEng) ; diff --git a/examples/animals/QuestionsFre.gf b/examples/animals/QuestionsFre.gf deleted file mode 100644 index eb23829d3..000000000 --- a/examples/animals/QuestionsFre.gf +++ /dev/null @@ -1,2 +0,0 @@ -concrete QuestionsFre of Questions = QuestionsI with - (Syntax = SyntaxFre) ; diff --git a/examples/animals/QuestionsI.gf b/examples/animals/QuestionsI.gf deleted file mode 100644 index 4373103e8..000000000 --- a/examples/animals/QuestionsI.gf +++ /dev/null @@ -1,30 +0,0 @@ --- to compile: --- echo "eb -probs=probs -api -file=QuestionsI.gfe" | gf $GF_LIB_PATH/present/LangEng.gfo --- or use directly gf