This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<rule comment="rule: prep artic nom"> | |
<pattern> | |
<pattern-item n="prep"/> | |
<pattern-item n="artic"/> | |
<pattern-item n="nom"/> | |
</pattern> | |
<action> | |
<choose> | |
<when> | |
<test> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<rule comment="rule: prep artic nom"> | |
<pattern> | |
<pattern-item n="prep"/> | |
<pattern-item n="artic"/> | |
<pattern-item n="nom"/> | |
</pattern> | |
<action> | |
<choose> | |
<when> | |
<test> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<rule comment="rule: prep artic numeral"> | |
<pattern> | |
<pattern-item n="prep"/> | |
<pattern-item n="artic"/> | |
<pattern-item n="numeral"/> | |
</pattern> | |
<action> | |
<choose> | |
<when> | |
<test> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<e><p><l>ammess<s n="adj"/></l><r>admitted<s n="adj"/></r></p></e> | |
<e><p><l>trasformat<s n="adj"/></l><r>transformed<s n="adj"/></r></p></e> | |
<e><p><l>modifikat<s n="adj"/></l><r>modified<s n="adj"/></r></p></e> | |
<e><p><l>imbuttat<s n="adj"/></l><r>pushed<s n="adj"/></r></p></e> | |
<e><p><l>presedut<s n="adj"/></l><r>chaired<s n="adj"/></r></p></e> | |
<e><p><l>rifjutat<s n="adj"/></l><r>refused<s n="adj"/></r></p></e> | |
<e><p><l>segwit<s n="adj"/></l><r>followed<s n="adj"/></r></p></e> <!-- segwit minn Venere 'followed by Venus' --> | |
<e><p><l>skopert<s n="adj"/></l><r>discovered<s n="adj"/></r></p></e> | |
<e><p><l>skurjat<s n="adj"/></l><r>scored<s n="adj"/></r></p></e> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"glossary": { | |
"title": "example glossary", | |
"GlossDiv": { | |
"title": "S", | |
"GlossList": { | |
"GlossEntry": { | |
"ID": "SGML", | |
"SortAs": "SGML", | |
"GlossTerm": "Standard Generalized Markup Language", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/Users/sagiemaoz/Projects/gsoc/apertium-mt-he [git::master *] [sagiemaoz@sagiem-mac] [12:31] | |
$ cat ../maltese/wikipedia/xaa | sh dev/coverage.sh mt-he.automorf.bin | |
Number of tokenised words in the corpus: 37016 | |
Number of known words in the corpus: 29006 | |
Coverage: 78.4 % | |
Top unknown words in the corpus: | |
41 ^Renju/*Renju$ | |
37 ^Unit/*Unit$ | |
30 ^Kavallieri/*Kavallieri$ | |
23 ^de/*de$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;(function($) { | |
$.stacheComb = function(el, name, context, options) { | |
var defaults = { | |
container: 'body', | |
path : 'templates/' | |
}; | |
var plugin = this; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE external_directory( | |
id BIGINT NOT NULL, | |
parent_id BIGINT NOT NULL DEFAULT 0, | |
name VARCHAR(40) DEFAULT NULL, | |
iconname VARCHAR(40) DEFAULT NULL, | |
enabled BOOLEAN DEFAULT true, | |
keywords VARCHAR(120) DEFAULT NULL | |
); | |
CREATE SEQUENCE external_directory_id_seq |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function ajax(url, settings) { | |
var promise; | |
// actual call | |
promise = $.ajax(url, settings).promise(); | |
// delay magic | |
promise = $.when(promise, $('<div/>').appendTo('body').fadeOut(3000)).pipe(function(value){return value[0];}); | |
// here you can set generic handlers for success, fail and always |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html{ | |
width:100%; | |
height: 100%; | |
} | |
body{ | |
/*background-color: rgb(69,203,254);*/ | |
font-family: Arial; | |
display: inline-block; | |
width:100%; |