summaryrefslogtreecommitdiff
path: root/contrib/summerschool/2013
diff options
context:
space:
mode:
authorjohn.j.camilleri <john.j.camilleri@chalmers.se>2013-09-16 07:17:27 +0000
committerjohn.j.camilleri <john.j.camilleri@chalmers.se>2013-09-16 07:17:27 +0000
commitf5461eb3d4eb2605b546a4ed202c12bcdaa1f4e4 (patch)
tree946c9e8542b8e8271b6b529a95c0400fa6613cb4 /contrib/summerschool/2013
parent8e1c6cca407c82fc09569d80c231b8d256735989 (diff)
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
Diffstat (limited to 'contrib/summerschool/2013')
-rw-r--r--contrib/summerschool/2013/bestPractices/Facebook.gf35
-rw-r--r--contrib/summerschool/2013/bestPractices/FacebookEng.gf14
-rw-r--r--contrib/summerschool/2013/bestPractices/FacebookI.gf29
-rw-r--r--contrib/summerschool/2013/bestPractices/LexFacebook.gf8
-rw-r--r--contrib/summerschool/2013/bestPractices/LexFacebookEng.gf16
-rw-r--r--contrib/summerschool/2013/bestPractices/corpus.txt7
6 files changed, 0 insertions, 109 deletions
diff --git a/contrib/summerschool/2013/bestPractices/Facebook.gf b/contrib/summerschool/2013/bestPractices/Facebook.gf
deleted file mode 100644
index 859f6abff..000000000
--- a/contrib/summerschool/2013/bestPractices/Facebook.gf
+++ /dev/null
@@ -1,35 +0,0 @@
-abstract Facebook = {
-
-flags startcat = Action ;
-
-cat
- SPerson;
- Person;
- Place;
- Page;
- Action;
- Item ;
-
-fun
- CheckIn : SPerson -> Place -> Action ;
- BeFriends : SPerson -> Person -> Action ;
- Like : SPerson -> Item -> Action ;
-
- SPersonToPerson : SPerson -> Person ;
- MorePersons : SPerson -> Person -> Person ;
-
- PlaceToItem : Place -> Item ;
- PageToItem : Page -> Item ;
- ActionToItem : Action -> Item ;
-
-
----------
-
-You : SPerson ;
-John : SPerson;
-Mary : SPerson;
-
-Frauinsel : Place;
-GF : Page;
-
-} \ No newline at end of file
diff --git a/contrib/summerschool/2013/bestPractices/FacebookEng.gf b/contrib/summerschool/2013/bestPractices/FacebookEng.gf
deleted file mode 100644
index 6f4a448d8..000000000
--- a/contrib/summerschool/2013/bestPractices/FacebookEng.gf
+++ /dev/null
@@ -1,14 +0,0 @@
-
-concrete FacebookEng of Facebook = FacebookI with
- (Syntax = SyntaxEng),
- (LexFacebook = LexFacebookEng) **
- open ParadigmsEng in {
-
-lin
-You = you_NP ;
-John = mkNP (mkPN "John") ;
-Mary = mkNP (mkPN "Mary") ;
-Frauinsel = mkNP (mkPN "Frauinsel") ;
-GF = mkNP (mkPN "GF") ;
-
-} \ No newline at end of file
diff --git a/contrib/summerschool/2013/bestPractices/FacebookI.gf b/contrib/summerschool/2013/bestPractices/FacebookI.gf
deleted file mode 100644
index 5c798e1e3..000000000
--- a/contrib/summerschool/2013/bestPractices/FacebookI.gf
+++ /dev/null
@@ -1,29 +0,0 @@
-incomplete concrete FacebookI of Facebook =
- open
- Syntax,
- Prelude,
- LexFacebook
- in
-{
-lincat
- SPerson = NP ;
- Person = NP ;
- Place = NP ;
- Page = NP ;
- Action = S ;
- Item = NP ;
-
-
-lin
-SPersonToPerson sperson = sperson ;
-MorePersons sperson person = mkNP and_Conj sperson person ;
-
-PlaceToItem place = place ;
-PageToItem page = page ;
-ActionToItem action = nounFromS action ;
-
-CheckIn sperson place = mkS pastTense (mkCl sperson (checkIn place)) ;
-BeFriends sperson person = mkS pastTense (mkCl sperson (beFriends person)) ;
-Like sperson item = like sperson item ;
-
-} \ No newline at end of file
diff --git a/contrib/summerschool/2013/bestPractices/LexFacebook.gf b/contrib/summerschool/2013/bestPractices/LexFacebook.gf
deleted file mode 100644
index e6ee7b5c8..000000000
--- a/contrib/summerschool/2013/bestPractices/LexFacebook.gf
+++ /dev/null
@@ -1,8 +0,0 @@
-interface LexFacebook = open Syntax in
-{
-oper
-nounFromS : S -> NP ;
-checkIn : NP -> VP ;
-beFriends : NP -> VP ;
-like : NP -> NP -> S ;
-} \ No newline at end of file
diff --git a/contrib/summerschool/2013/bestPractices/LexFacebookEng.gf b/contrib/summerschool/2013/bestPractices/LexFacebookEng.gf
deleted file mode 100644
index 1d065fdb4..000000000
--- a/contrib/summerschool/2013/bestPractices/LexFacebookEng.gf
+++ /dev/null
@@ -1,16 +0,0 @@
-instance LexFacebookEng of LexFacebook =
- open SyntaxEng,
- ParadigmsEng,
- --ExtraEng,
- IrregEng in
-{
-oper
- nounFromS s = mkNP (mkNP the_Det (mkCN (mkN "fact"))) (SyntaxEng.mkAdv that_Subj s) ;
-
- checkIn np = mkVP (mkV2 (partV (mkV "check") "in") (mkPrep "to")) np ;
-
- beFriends np = mkVP (mkVP (dirV2 become_V) (mkNP a_Art plNum (mkCN (mkN "friend")))) (SyntaxEng.mkAdv (mkPrep "with") np) ;
-
- like np1 np2 = mkS (mkCl np1 (mkVP (dirV2 (mkV "like")) np2)) ;
-
-} \ No newline at end of file
diff --git a/contrib/summerschool/2013/bestPractices/corpus.txt b/contrib/summerschool/2013/bestPractices/corpus.txt
deleted file mode 100644
index 7ff207000..000000000
--- a/contrib/summerschool/2013/bestPractices/corpus.txt
+++ /dev/null
@@ -1,7 +0,0 @@
-You and John are now friends. You became friends with John.
-You became friends with John and Mary.
-You checked in to Frauinsel.
-You like GF.
-You like Frauinsel.
-You like that John checked in to Frauinsel.
-You like that you became friends with John and Mary.