Changeset 5277 for cats


Ignore:
Timestamp:
05/23/14 16:36:01 (10 years ago)
Author:
Menzo Windhouwer
Message:

M mod-ISOcat-site*

  • keep track of revision info
  • added LREC 2014 papers

M mod-ISOcat-access-data/access/dc_check.acc
M mod-ISOcat-access-data/access/dcs_check.acc

  • some performance tracking

M mod-ISOcat-access-data/dbms/ISOcat-schema-init.sql

  • added more language tags

M mod-ISOcat-control-access/control/credentials.js

  • filter out Shibboleth credential arguments
Location:
cats/ISOcat/trunk
Files:
20 edited

Legend:

Unmodified
Added
Removed
  • cats/ISOcat/trunk/mod-ISOcat-access-data/access/dc_check.acc

    r2686 r5277  
    1 <accessor debug="false">
     1<accessor debug="false" trace="false">
    22        <name>ISOcat.access.data.dc.check</name>
    33        <descr>Check a DC.</descr>
     
    1010                <seq>
    1111                        <!-- get the DCIF of this DC -->
    12                         <instr>
    13                                 <type>ISOcat.access.data.dc</type>
    14                                 <dc>var:dc</dc>
    15                                 <target>var:dcif</target>
    16                         </instr>
     12                    <accessor-trace name="DCIF">
     13                        <instr>
     14                            <type>ISOcat.access.data.dc</type>
     15                            <dc>var:dc</dc>
     16                            <target>var:dcif</target>
     17                        </instr>
     18                    </accessor-trace>
    1719                        <accessor-debug>
    1820                                <instr>
     
    2325                        </accessor-debug>
    2426                        <!-- and now validate the DC -->
    25                         <instr>
    26                                 <type>xslt2</type>
    27                                 <operand>var:dcif</operand>
    28                                 <operator>dc_check.xsl</operator>
    29                                 <debug>var:accessor-debug</debug>
    30                                 <target>var:check</target>
    31                         </instr>
     27                    <accessor-trace name="CHECK">
     28                        <instr>
     29                            <type>xslt2</type>
     30                            <operand>var:dcif</operand>
     31                            <operator>dc_check.xsl</operator>
     32                            <debug>var:accessor-debug</debug>
     33                            <target>var:check</target>
     34                        </instr>
     35                    </accessor-trace>
    3236                        <accessor-debug>
    3337                                <instr>
     
    3842                        </accessor-debug>
    3943                        <!-- store the result -->
    40                         <instr>
    41                                 <type>sloot.xquery</type>
    42                                 <operator>
    43                                         <xquery>
    44                                                 declare variable $dc as node() external;
    45                                                 declare variable $check as node() external;
    46                                                
    47                                                 &lt;sql>
    48                                                         UPDATE core_data_category
    49                                                         SET "check" = '{string($check/check/@result)}'
    50                                                         WHERE core_data_category.id = {string($dc)}
    51                                                         ;
    52                                                 &lt;/sql>
    53                                         </xquery>
    54                                 </operator>
    55                                 <dc>var:dc</dc>
    56                                 <check>var:check</check>
    57                                 <target>var:sql</target>
    58                         </instr>
    59                         <accessor-debug>
    60                                 <instr>
    61                                         <type>copy</type>
    62                                         <operand>var:sql</operand>
    63                                         <target>ffcpl:/trace/dc.check.sql.xml</target>
    64                                 </instr>
    65                         </accessor-debug>
    66                         <instr>
    67                                 <type>isocat.sqlUpdate</type>
    68                                 <operand>var:sql</operand>
    69                                 <target>var:result</target>
    70                         </instr>
    71                         <!-- make this:response -->
     44                    <accessor-trace name="DB">
     45                        <instr>
     46                                <type>sloot.xquery</type>
     47                                <operator>
     48                                        <xquery>
     49                                                declare variable $dc as node() external;
     50                                                declare variable $check as node() external;
     51                                               
     52                                                &lt;sql>
     53                                                        UPDATE core_data_category
     54                                                        SET "check" = '{string($check/check/@result)}'
     55                                                        WHERE core_data_category.id = {string($dc)}
     56                                                        ;
     57                                                &lt;/sql>
     58                                        </xquery>
     59                                </operator>
     60                                <dc>var:dc</dc>
     61                                <check>var:check</check>
     62                                <target>var:sql</target>
     63                        </instr>
     64                        <accessor-debug>
     65                                <instr>
     66                                        <type>copy</type>
     67                                        <operand>var:sql</operand>
     68                                        <target>ffcpl:/trace/dc.check.sql.xml</target>
     69                                </instr>
     70                        </accessor-debug>
     71                        <instr>
     72                                <type>isocat.sqlUpdate</type>
     73                                <operand>var:sql</operand>
     74                                <target>var:result</target>
     75                        </instr>
     76                    </accessor-trace>
     77                    <!-- make this:response -->
    7278                        <instr>
    7379                                <type>copy</type>
  • cats/ISOcat/trunk/mod-ISOcat-access-data/access/dcs_check.acc

    r4893 r5277  
    1 <accessor debug="false">
     1<accessor debug="false" trace="true">
    22        <name>ISOcat.access.data.dcs.check</name>
    33        <descr>Check the DCs in a DCS</descr>
     
    4040                                        <target>var:dc</target>
    4141                                </instr>
    42                                 <instr>
    43                                         <type>ISOcat.access.data.dc</type>
    44                                         <dc>var:dc</dc>
    45                                         <target>var:dcif</target>
    46                                 </instr>
    47                                 <instr>
    48                                         <type>xslt2</type>
    49                                         <operand>var:dcif</operand>
    50                                         <operator>dc_check.xsl</operator>
    51                                         <debug>var:accessor-debug</debug>
    52                                         <target>var:checks</target>
    53                                 </instr>
    54                                 <instr>
     42                            <accessor-trace name="DCIF">
     43                                <instr>
     44                                    <type>ISOcat.access.data.dc</type>
     45                                    <dc>var:dc</dc>
     46                                    <target>var:dcif</target>
     47                                </instr>
     48                            </accessor-trace>
     49                            <accessor-trace name="CHECK">
     50                                <instr>
     51                                           <type>xslt2</type>
     52                                           <operand>var:dcif</operand>
     53                                           <operator>dc_check.xsl</operator>
     54                                           <debug>var:accessor-debug</debug>
     55                                           <target>var:checks</target>
     56                                    </instr>
     57                            </accessor-trace>
     58                            <instr>
    5559                                        <type>xslt2</type>
    5660                                        <operand>var:dcs</operand>
  • cats/ISOcat/trunk/mod-ISOcat-access-data/dbms/ISOcat-schema-init.sql

    r2710 r5277  
    214214
    215215-- the default languages
    216 
    217 INSERT INTO core_language (name, tag, search, tags) VALUES ('English',  'en', 'english', 'eng');
    218 INSERT INTO core_language (name, tag, search) VALUES ('French',   'fr', 'french');
    219 INSERT INTO core_language (name, tag, search) VALUES ('Japanese', 'ja', 'simple');
    220 INSERT INTO core_language (name, tag, search) VALUES ('German',   'de', 'german');
    221 INSERT INTO core_language (name, tag, search) VALUES ('Dutch',    'nl', 'dutch');
    222 INSERT INTO core_language (name, tag, search) VALUES ('Czech',    'cs', 'simple');
    223 INSERT INTO core_language (name, tag, search) VALUES ('Estonian', 'et', 'simple');
    224 INSERT INTO core_language (name, tag, search) VALUES ('Finnish',  'fi', 'finnish');
    225 INSERT INTO core_language (name, tag, search) VALUES ('Hungarian','hu', 'hungarian');
    226 INSERT INTO core_language (name, tag, search) VALUES ('Italian',  'it', 'italian');
    227 INSERT INTO core_language (name, tag, search) VALUES ('Korean',   'ko', 'simple');
    228 INSERT INTO core_language (name, tag, search) VALUES ('Romanian', 'ro', 'romanian');
    229 INSERT INTO core_language (name, tag, search) VALUES ('Russian',  'ru', 'russian');
    230 INSERT INTO core_language (name, tag, search) VALUES ('Swedish',  'sv', 'swedish');
    231 
    232 INSERT INTO core_language (name, tag, search) VALUES ('Bulgarian',     'bg', 'simple');
    233 INSERT INTO core_language (name, tag, search) VALUES ('Croatian',      'hr', 'simple');
    234 INSERT INTO core_language (name, tag, search) VALUES ('Danish',        'da', 'danish');
    235 INSERT INTO core_language (name, tag, search) VALUES ('Greek',         'el', 'simple');
    236 INSERT INTO core_language (name, tag, search) VALUES ('Icelandic',     'is', 'simple');
    237 INSERT INTO core_language (name, tag, search) VALUES ('Irish',         'ga', 'simple');
    238 INSERT INTO core_language (name, tag, search) VALUES ('Hebrew',        'he', 'simple');
    239 INSERT INTO core_language (name, tag, search) VALUES ('Latvian',       'lv', 'simple');
    240 INSERT INTO core_language (name, tag, search) VALUES ('Lithuanian',    'lt', 'simple');
    241 INSERT INTO core_language (name, tag, search) VALUES ('Luxembourgish', 'lb', 'simple');
    242 INSERT INTO core_language (name, tag, search) VALUES ('Maltese',       'mt', 'simple');
    243 INSERT INTO core_language (name, tag, search) VALUES ('Norwegian',     'no', 'norwegian');
    244 INSERT INTO core_language (name, tag, search) VALUES ('Polish',        'pl', 'simple');
    245 INSERT INTO core_language (name, tag, search) VALUES ('Portuguese',    'pt', 'portuguese');
    246 INSERT INTO core_language (name, tag, search) VALUES ('Serbian',       'sr', 'simple');
    247 INSERT INTO core_language (name, tag, search) VALUES ('Slovene',       'sl', 'simple');
    248 INSERT INTO core_language (name, tag, search) VALUES ('Spanish',       'es', 'spanish');
    249 INSERT INTO core_language (name, tag, search) VALUES ('Turkish',       'tr', 'turkish');
    250 INSERT INTO core_language (name, tag, search) VALUES ('Slovak',        'sk', 'simple');
    251 
    252 INSERT INTO core_language (name, tag, search, tags) VALUES ('Welsh', 'cy', 'simple', 'cym');
    253 
    254 INSERT INTO core_language (name, tag, search, direction) VALUES ('Arabic',  'ar', 'simple', 'rtl');
    255 INSERT INTO core_language (name, tag, search, direction) VALUES ('Chinese', 'zh', 'simple', 'ltr');
     216-- tag  -> ISO 639-1
     217-- tags -> (ISO 639-2/B?) ISO 639-2/T&3
     218INSERT INTO core_language (name, tag, search, tags)            VALUES ('English',       'en', 'english',    'eng');
     219INSERT INTO core_language (name, tag, search, tags)            VALUES ('French',        'fr', 'french',     'fre fra');
     220INSERT INTO core_language (name, tag, search, tags)            VALUES ('Japanese',      'ja', 'simple',     'jpn');
     221INSERT INTO core_language (name, tag, search, tags)            VALUES ('German',        'de', 'german',     'ger deu');
     222INSERT INTO core_language (name, tag, search, tags)            VALUES ('Dutch',         'nl', 'dutch',      'dut nld');
     223INSERT INTO core_language (name, tag, search, tags)            VALUES ('Czech',         'cs', 'simple',     'cze ces');
     224INSERT INTO core_language (name, tag, search, tags)            VALUES ('Estonian',      'et', 'simple',     'est');
     225INSERT INTO core_language (name, tag, search, tags)            VALUES ('Finnish',       'fi', 'finnish',    'fin');
     226INSERT INTO core_language (name, tag, search, tags)            VALUES ('Hungarian',     'hu', 'hungarian',  'hun');
     227INSERT INTO core_language (name, tag, search, tags)            VALUES ('Italian',       'it', 'italian',    'ita');
     228INSERT INTO core_language (name, tag, search, tags)            VALUES ('Korean',        'ko', 'simple',     'kor');
     229INSERT INTO core_language (name, tag, search, tags)            VALUES ('Romanian',      'ro', 'romanian',   'rum ron');
     230INSERT INTO core_language (name, tag, search, tags)            VALUES ('Russian',       'ru', 'russian',    'rus');
     231INSERT INTO core_language (name, tag, search, tags)            VALUES ('Swedish',       'sv', 'swedish',    'swe');
     232INSERT INTO core_language (name, tag, search, tags)            VALUES ('Bulgarian',     'bg', 'simple',     'bul');
     233INSERT INTO core_language (name, tag, search, tags)            VALUES ('Croatian',      'hr', 'simple',     'hrv');
     234INSERT INTO core_language (name, tag, search, tags)            VALUES ('Danish',        'da', 'danish',     'dan');
     235INSERT INTO core_language (name, tag, search, tags)            VALUES ('Greek',         'el', 'simple',     'gre ell');
     236INSERT INTO core_language (name, tag, search, tags)            VALUES ('Icelandic',     'is', 'simple',     'ice isl');
     237INSERT INTO core_language (name, tag, search, tags)            VALUES ('Irish',         'ga', 'simple',     'gle');
     238INSERT INTO core_language (name, tag, search, tags)            VALUES ('Hebrew',        'he', 'simple',     'heb');
     239INSERT INTO core_language (name, tag, search, tags)            VALUES ('Latvian',       'lv', 'simple',     'lav');
     240INSERT INTO core_language (name, tag, search, tags)            VALUES ('Lithuanian',    'lt', 'simple',     'lit');
     241INSERT INTO core_language (name, tag, search, tags)            VALUES ('Luxembourgish', 'lb', 'simple',     'ltz');
     242INSERT INTO core_language (name, tag, search, tags)            VALUES ('Maltese',       'mt', 'simple',     'mlt');
     243INSERT INTO core_language (name, tag, search, tags)            VALUES ('Norwegian',     'no', 'norwegian',  'nor');
     244INSERT INTO core_language (name, tag, search, tags)            VALUES ('Polish',        'pl', 'simple',     'pol');
     245INSERT INTO core_language (name, tag, search, tags)            VALUES ('Portuguese',    'pt', 'portuguese', 'por');
     246INSERT INTO core_language (name, tag, search, tags)            VALUES ('Serbian',       'sr', 'simple',     'srp');
     247INSERT INTO core_language (name, tag, search, tags)            VALUES ('Slovene',       'sl', 'simple',     'slv');
     248INSERT INTO core_language (name, tag, search, tags)            VALUES ('Spanish',       'es', 'spanish',    'spa');
     249INSERT INTO core_language (name, tag, search, tags)            VALUES ('Turkish',       'tr', 'turkish',    'tur');
     250INSERT INTO core_language (name, tag, search, tags)            VALUES ('Slovak',        'sk', 'simple',     'slo slk');
     251INSERT INTO core_language (name, tag, search, tags)            VALUES ('Catalan',       'ca', 'simple',     'cat');
     252INSERT INTO core_language (name, tag, search, tags)            VALUES ('Welsh',         'cy', 'simple',     'wel cym');
     253INSERT INTO core_language (name, tag, search, tags, direction) VALUES ('Arabic',        'ar', 'simple',     'ara',     'rtl');
     254INSERT INTO core_language (name, tag, search, tags, direction) VALUES ('Chinese',       'zh', 'simple',     'chi zho', 'ltr');
    256255
    257256-- the default data types
  • cats/ISOcat/trunk/mod-ISOcat-control-access/control/credentials.js

    r4990 r5277  
    166166        continue;
    167167    } else {
     168        skipArg = false;
     169        for (i in shibHeaders) {
     170            if (arg.equals(shibHeaders[i])) {
     171                skipArg = true;
     172                break;
     173            }
     174        }
     175        if (skipArg) {
     176            continue;
     177        }
    168178        //java.lang.System.out.println("DBG:credentials.js:arg["+arg+"]");
    169179        argURI = req.getArgument(arg);
  • cats/ISOcat/trunk/mod-ISOcat-interface-gi/interface/settings/builder.xml

    r4290 r5277  
    33  <record jsxid="window" type="map">
    44    <record jsxid="splitters" type="map">
    5       <record jsxid="jsx_ide_splitter1" type="string">91.04665825977301%</record>
     5      <record jsxid="jsx_ide_splitter1" type="string">72.92464878671775%</record>
    66      <record jsxid="jsx_ide_splitter2" type="string">21.369047619047617%</record>
    77      <record jsxid="jsx_ide_splitter3" type="string">41.20734908136483%</record>
     
    5555      <record jsxid="recentFiles" type="array">
    5656        <record jsxid="0" type="string">components/appCanvas.xml</record>
    57         <record jsxid="1" type="string">components/WorkspaceViewer.xml</record>
    58         <record jsxid="2" type="string">xsl/SearchRecommenders2CDF.xsl</record>
    59         <record jsxid="3" type="string">js/org/isocat/gui/WSViewer.js</record>
    60         <record jsxid="4" type="string">js/org/isocat/data/Search.js</record>
    61         <record jsxid="5" type="string">components/DataCategoryEditor.xml</record>
    62         <record jsxid="6" type="string">jss/locale.xml</record>
    63         <record jsxid="7" type="string">components/Scope.xml</record>
    64         <record jsxid="8" type="string">components/User.xml</record>
    65         <record jsxid="9" type="string">components/ExplorerView.xml</record>
    66         <record jsxid="10" type="string">components/GroupEditor.xml</record>
    67         <record jsxid="11" type="string">components/DataCategoryViewer.xml</record>
    68         <record jsxid="12" type="string">components/DCSViewer.xml</record>
    69         <record jsxid="13" type="string">components/DataCategorySelectionViewer.xml</record>
    70         <record jsxid="14" type="string">components/ProfilesInput.xml</record>
     57        <record jsxid="1" type="string">components/DCSViewer.xml</record>
     58        <record jsxid="2" type="string">components/DataCategoryBasket.xml</record>
     59        <record jsxid="3" type="string">components/ExplorerView.xml</record>
     60        <record jsxid="4" type="string">components/WorkspaceViewer.xml</record>
     61        <record jsxid="5" type="string">xsl/SearchRecommenders2CDF.xsl</record>
     62        <record jsxid="6" type="string">js/org/isocat/gui/WSViewer.js</record>
     63        <record jsxid="7" type="string">js/org/isocat/data/Search.js</record>
     64        <record jsxid="8" type="string">components/DataCategoryEditor.xml</record>
     65        <record jsxid="9" type="string">jss/locale.xml</record>
     66        <record jsxid="10" type="string">components/Scope.xml</record>
     67        <record jsxid="11" type="string">components/User.xml</record>
     68        <record jsxid="12" type="string">components/GroupEditor.xml</record>
     69        <record jsxid="13" type="string">components/DataCategoryViewer.xml</record>
     70        <record jsxid="14" type="string">components/DataCategorySelectionViewer.xml</record>
    7171      </record>
    7272      <record jsxid="openFiles" type="array">
  • cats/ISOcat/trunk/mod-ISOcat-site/site/index.html

    r4853 r5277  
    9393background="index_files/image552.png" style='margin:0'>
    9494<!--[if gte vml 1]><v:background id="_x0000_s3073" o:bwmode="white"
    95  fillcolor="#dbe1e5" o:targetscreensize="1680,985">
     95 fillcolor="#dbe1e5" o:targetscreensize="1680,902">
    9696 <v:fill focus="100%" type="gradient"/>
    9797</v:background><![endif]-->
  • cats/ISOcat/trunk/mod-ISOcat-site/site/index_files/12620.html

    r4853 r5277  
    6262style='margin:0'>
    6363<!--[if gte vml 1]><v:background id="_x0000_s3073" o:bwmode="white"
    64  fillcolor="#e0e6e6" o:targetscreensize="1680,985">
     64 fillcolor="#e0e6e6" o:targetscreensize="1680,902">
    6565 <v:fill color2="white [7]" focus="100%" type="gradient"/>
    6666</v:background><![endif]-->
  • cats/ISOcat/trunk/mod-ISOcat-site/site/index_files/TDGs.html

    r4853 r5277  
    6464<body link=blue vlink=purple bgcolor="#DAE1EB" style='margin:0'>
    6565
    66 <div style='position:absolute;width:7.-71in;height:31.-1750in'>
     66<div style='position:absolute;width:7.-71in;height:31.-1793in'>
    6767<!--[if gte vml 1]><v:rect id="_x0000_s1516" style='position:absolute;left:234pt;
    6868 top:231pt;width:336pt;height:336pt;z-index:69;mso-wrap-distance-left:2.88pt;
     
    904904 <o:lock v:ext="edit" shapetype="t"/>
    905905</v:shapetype><v:shape id="_x0000_s1566" type="#_x0000_t201" style='position:absolute;
    906  left:175.5pt;top:175.5pt;width:525.48pt;height:2110.41pt;z-index:76;
     906 left:175.5pt;top:175.5pt;width:525.48pt;height:2110.1pt;z-index:76;
    907907 mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
    908908 mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' stroked="f"
     
    922922
    923923<table v:shapes="_x0000_s1566" cellpadding=0 cellspacing=0 width=701
    924  height=2814 border=0 dir=ltr style='width:525.48pt;height:2110.41pt;
    925  border-collapse:collapse;position:absolute;top:175.5pt;left:175.5pt;
    926  z-index:76'>
     924 height=2813 border=0 dir=ltr style='width:525.48pt;height:2110.1pt;border-collapse:
     925 collapse;position:absolute;top:175.5pt;left:175.5pt;z-index:76'>
    927926 <tr>
    928927  <td width=102 height=26 bgcolor=black style='width:76.5pt;height:19.5pt;
     
    13881387 <tr>
    13891388  <td width=701 height=35 colspan=3 bgcolor="#E0E6E6" style='width:525.48pt;
    1390   height:26.2479pt;padding-left:1.5pt;padding-right:1.5pt;padding-top:1.5pt;
     1389  height:26.0944pt;padding-left:1.5pt;padding-right:1.5pt;padding-top:1.5pt;
    13911390  padding-bottom:1.5pt;background:#E0E6E6;border-left:solid black 6.0pt;
    13921391  border-top:solid black .25pt;border-right:solid black 2.0pt;border-bottom:
     
    14211420 </tr>
    14221421 <tr>
    1423   <td width=701 height=66 colspan=3 bgcolor="#E0E6E6" style='width:525.48pt;
    1424   height:49.2459pt;padding-left:1.5pt;padding-right:1.5pt;padding-top:1.5pt;
     1422  <td width=701 height=65 colspan=3 bgcolor="#E0E6E6" style='width:525.48pt;
     1423  height:49.0924pt;padding-left:1.5pt;padding-right:1.5pt;padding-top:1.5pt;
    14251424  padding-bottom:1.5pt;background:#E0E6E6;border-left:solid black 6.0pt;
    14261425  border-top:solid black .25pt;border-right:solid black 2.0pt;border-bottom:
     
    14551454 </tr>
    14561455 <tr>
    1457   <td width=701 height=253 colspan=3 bgcolor="#E0E6E6" style='width:525.48pt;
     1456  <td width=701 height=254 colspan=3 bgcolor="#E0E6E6" style='width:525.48pt;
    14581457  height:190.3437pt;padding-left:1.5pt;padding-right:1.5pt;padding-top:1.5pt;
    14591458  padding-bottom:1.5pt;background:#E0E6E6;border-left:solid black 6.0pt;
     
    15371536 </tr>
    15381537 <tr>
    1539   <td width=701 height=192 colspan=3 bgcolor="#E0E6E6" style='width:525.48pt;
     1538  <td width=701 height=191 colspan=3 bgcolor="#E0E6E6" style='width:525.48pt;
    15401539  height:143.7392pt;padding-left:1.5pt;padding-right:1.5pt;padding-top:1.5pt;
    15411540  padding-bottom:1.5pt;background:#E0E6E6;border-left:solid black 6.0pt;
  • cats/ISOcat/trunk/mod-ISOcat-site/site/index_files/feedback.html

    r4853 r5277  
    6565style='margin:0'>
    6666<!--[if gte vml 1]><v:background id="_x0000_s3073" o:bwmode="white"
    67  fillcolor="#dbe1e5" o:targetscreensize="1680,985">
     67 fillcolor="#dbe1e5" o:targetscreensize="1680,902">
    6868 <v:fill focus="100%" type="gradient"/>
    6969</v:background><![endif]-->
  • cats/ISOcat/trunk/mod-ISOcat-site/site/index_files/issues.html

    r4853 r5277  
    6262style='margin:0'>
    6363<!--[if gte vml 1]><v:background id="_x0000_s3073" o:bwmode="white"
    64  fillcolor="#dbe1e5" o:targetscreensize="1680,985">
     64 fillcolor="#dbe1e5" o:targetscreensize="1680,902">
    6565 <v:fill focus="100%" type="gradient"/>
    6666</v:background><![endif]-->
  • cats/ISOcat/trunk/mod-ISOcat-site/site/index_files/manual.html

    r4853 r5277  
    6262style='margin:0'>
    6363<!--[if gte vml 1]><v:background id="_x0000_s3073" o:bwmode="white"
    64  fillcolor="#dbe1e5" o:targetscreensize="1680,985">
     64 fillcolor="#dbe1e5" o:targetscreensize="1680,902">
    6565 <v:fill focus="100%" type="gradient"/>
    6666</v:background><![endif]-->
  • cats/ISOcat/trunk/mod-ISOcat-site/site/index_files/news.html

    r4949 r5277  
    813813  class=shape>
    814814  <p class=MsoNormal><span lang=en-US style='font-family:Verdana;font-weight:
     815  bold;language:en-US'>2014-5-23</span></p>
     816  <p class=MsoNormal><span lang=en-US style='font-family:Verdana;language:en-US'>The 5277 revision provides the following functionality:</span></p>
     817  <p class=MsoNormal style='margin-left:54.0pt;text-indent:-18.0pt'><span
     818  style='direction:ltr;unicode-bidi:embed;font-family:"Times New Roman";
     819  font-size:10.0pt;language:x-none;color:black'>●</span><span style='width:
     820  12.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
     821  en-US'>in the DC viewer the administration section is now closed by default</span></p>
     822  <p class=MsoNormal style='margin-left:54.0pt;text-indent:-18.0pt'><span
     823  style='direction:ltr;unicode-bidi:embed;font-family:"Times New Roman";
     824  font-size:10.0pt;language:x-none;color:black'>●</span><span style='width:
     825  12.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
     826  en-US'>some IE specific fixes</span></p>
     827  <p class=MsoNormal><span lang=en-US style='font-family:Verdana;font-weight:
     828  bold;language:en-US'>&nbsp;</span></p>
     829  <p class=MsoNormal><span lang=en-US style='font-family:Verdana;font-weight:
    815830  bold;language:en-US'>2014-4-11</span></p>
    816831  <p class=MsoNormal><span lang=en-US style='font-family:Verdana;language:en-US'>The 4949 revision provides the following functionality:</span></p>
  • cats/ISOcat/trunk/mod-ISOcat-site/site/index_files/publications.html

    r4643 r5277  
    6464<body link=blue vlink=purple bgcolor="#DAE1E5" style='margin:0'>
    6565
    66 <div style='position:absolute;width:7.-71in;height:31.0156in'>
     66<div style='position:absolute;width:7.-71in;height:33.0156in'>
    6767<!--[if gte vml 1]><v:rect id="_x0000_s1026" style='position:absolute;left:234pt;
    6868 top:231pt;width:336pt;height:336pt;z-index:2;mso-wrap-distance-left:2.88pt;
     
    805805
    806806</span><![endif]><!--[if gte vml 1]><v:shape id="_x0000_s1244" type="#_x0000_t202"
    807  style='position:absolute;left:175.5pt;top:175.5pt;width:363pt;height:2056.5pt;
     807 style='position:absolute;left:175.5pt;top:175.5pt;width:363pt;height:2200.5pt;
    808808 z-index:21;visibility:visible;mso-wrap-edited:f;mso-wrap-distance-left:2.88pt;
    809809 mso-wrap-distance-top:2.88pt;mso-wrap-distance-right:2.88pt;
     
    823823 <v:textbox style='mso-column-margin:5.7pt' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
    824824</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:21;
    825 left:234px;top:234px;width:484px;height:2742px'>
     825left:234px;top:234px;width:484px;height:2934px'>
    826826
    827827<table cellpadding=0 cellspacing=0>
    828828 <tr>
    829   <td width=484 height=2742 style='vertical-align:top'><![endif]>
     829  <td width=484 height=2934 style='vertical-align:top'><![endif]>
    830830  <div v:shape="_x0000_s1244" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
    831831  class=shape>
     
    841841  font-size:10.0pt;language:en-US;color:black'>1.</span><span style='width:
    842842  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
     843  en-US'>D. Broeder, I. Schuurman, M. Windhouwer. </span><a
     844  href="http://www.lrec-conf.org/proceedings/lrec2014/summaries/153.html"><span
     845  lang=en-US style='font-family:Verdana;text-decoration:underline;language:
     846  en-US'>Experiences with the ISOcat Data Category Registry</span></a><span
     847  lang=en-US style='font-family:Verdana;language:en-US'>. In </span><span
     848  lang=en-US style='font-family:Verdana;font-style:italic;language:en-US'>Proceedings of the Ninth International Conference on Language Resources and Evaluation</span><span
     849  lang=en-US style='font-family:Verdana;language:en-US'> (</span><a
     850  href="http://lrec2014.lrec-conf.org/en/"><span lang=en-US style='font-family:
     851  Verdana;text-decoration:underline;language:en-US'>LREC 2014</span></a><span
     852  lang=en-US style='font-family:Verdana;language:en-US'>), European Language Resources Association (</span><a
     853  href="http://www.elra.info/"><span lang=en-US style='font-family:Verdana;
     854  text-decoration:underline;language:en-US'>ELRA</span></a><span lang=en-US
     855  style='font-family:Verdana;language:en-US'>), Reykjavik, Iceland, May 28-30, 2014.</span></p>
     856  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
     857  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
     858  font-size:10.0pt;language:en-US;color:black'>2.</span><span style='width:
     859  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    843860  en-US'>I. Schuurman, M. Windhouwer. </span><a
    844861  href="http://www.clarin.nl/node/1899"><span lang=en-US style='font-family:
     
    847864  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    848865  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    849   font-size:10.0pt;language:en-US;color:black'>2.</span><span style='width:
     866  font-size:10.0pt;language:en-US;color:black'>3.</span><span style='width:
    850867  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    851868  en-US'>I. Schuurman, M. Windhouwer. </span><a
     
    855872  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    856873  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    857   font-size:10.0pt;language:en-US;color:black'>3.</span><span style='width:
     874  font-size:10.0pt;language:en-US;color:black'>4.</span><span style='width:
    858875  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    859876  en-US'>M. Windhouwer, I. Schuurman, S.E. Wright. </span><a
     
    873890  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    874891  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    875   font-size:10.0pt;language:en-US;color:black'>4.</span><span style='width:
     892  font-size:10.0pt;language:en-US;color:black'>5.</span><span style='width:
    876893  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    877894  en-US'>M. Windhouwer. ISOcat introduction. At the </span><a
     
    882899  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    883900  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    884   font-size:10.0pt;language:en-US;color:black'>5.</span><span style='width:
     901  font-size:10.0pt;language:en-US;color:black'>6.</span><span style='width:
    885902  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    886903  en-US'>S.E. Wright, M. Windhouwer, I. Schuurman, M. Kemps-Snijders. Community efforts around the ISOcat Data Category Registry. In I. Gurevych and J. Kim (eds.), </span><a
     
    891908  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    892909  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    893   font-size:10.0pt;language:en-US;color:black'>6.</span><span style='width:
     910  font-size:10.0pt;language:en-US;color:black'>7.</span><span style='width:
    894911  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    895912  en-US'>M. Windhouwer, S.E. Wright. LMF and the Data Category Registry: principles and application. In G. Francopoulo (ed.), </span><a
     
    900917  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    901918  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    902   font-size:10.0pt;language:en-US;color:black'>7.</span><span style='width:
     919  font-size:10.0pt;language:en-US;color:black'>8.</span><span style='width:
    903920  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    904921  en-US'>A special issue on </span><span lang=en-US style='font-family:Verdana;
     
    911928  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    912929  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    913   font-size:10.0pt;language:en-US;color:black'>8.</span><span style='width:
     930  font-size:10.0pt;language:en-US;color:black'>9.</span><span style='width:
    914931  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    915932  en-US'>I. Schuurman, M. Windhouwer. </span><a
     
    919936  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    920937  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    921   font-size:10.0pt;language:en-US;color:black'>9.</span><span style='width:
    922   27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    923   en-US'>M. Windhouwer. Towards standardized descriptions of linguistic features: ISOcat and procedures for using common data categories. At the KONVENS 2012 workshop </span><span
     938  font-size:10.0pt;language:en-US;color:black'>10.</span><span
     939  style='width:27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
     940  language:en-US'>M. Windhouwer. Towards standardized descriptions of linguistic features: ISOcat and procedures for using common data categories. At the KONVENS 2012 workshop </span><span
    924941  lang=en-US style='font-family:Verdana;font-style:italic;language:en-US'>Standards for Language Resources</span><span
    925942  lang=en-US style='font-family:Verdana;language:en-US'>. Vienna, Austria, September 21, 2012. </span></p>
    926943  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    927944  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    928   font-size:10.0pt;language:en-US;color:black'>10.</span><span
    929   style='width:27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
     945  font-size:10.0pt;language:en-US;color:black'>11.</span><span
     946  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    930947  language:en-US'>I. Schuurman, M. Windhouwer. </span><a
    931948  href="http://www.clarin.nl/event/336"><span lang=en-US style='font-family:
     
    934951  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    935952  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    936   font-size:10.0pt;language:en-US;color:black'>11.</span><span
     953  font-size:10.0pt;language:en-US;color:black'>12.</span><span
    937954  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    938955  language:en-US'>I. Schuurman, M. Windhouwer. </span><a
     
    945962  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    946963  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    947   font-size:10.0pt;language:en-US;color:black'>12.</span><span
     964  font-size:10.0pt;language:en-US;color:black'>13.</span><span
    948965  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    949966  language:en-US'>I. Schuurman, M. Windhouwer. </span><a
     
    953970  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    954971  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    955   font-size:10.0pt;language:en-US;color:black'>13.</span><span
     972  font-size:10.0pt;language:en-US;color:black'>14.</span><span
    956973  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    957974  language:en-US'>M. Windhouwer, S.E. Wright. </span><a
     
    975992  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    976993  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    977   font-size:10.0pt;language:en-US;color:black'>14.</span><span
     994  font-size:10.0pt;language:en-US;color:black'>15.</span><span
    978995  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    979996  language:en-US'>M. Windhouwer, I. Schuurman. </span><a
     
    9891006  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    9901007  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    991   font-size:10.0pt;language:en-US;color:black'>15.</span><span
     1008  font-size:10.0pt;language:en-US;color:black'>16.</span><span
    9921009  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    9931010  language:en-US'>I. Schuurman, M. Windhouwer. CLARIN-D ISOcat tutorial. Berlin, Germany, January 11, 2012.</span></p>
    9941011  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    9951012  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    996   font-size:10.0pt;language:en-US;color:black'>16.</span><span
     1013  font-size:10.0pt;language:en-US;color:black'>17.</span><span
    9971014  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    9981015  language:en-US'>I. Schuurman, M. Windhouwer. </span><a
     
    10021019  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10031020  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1004   font-size:10.0pt;language:en-US;color:black'>17.</span><span
     1021  font-size:10.0pt;language:en-US;color:black'>18.</span><span
    10051022  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10061023  language:en-US'>S.E. Wright, Implementing Data Category Standardization in ISOcat . Presentation at the </span><span
     
    10131030  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10141031  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1015   font-size:10.0pt;language:en-US;color:black'>18.</span><span
     1032  font-size:10.0pt;language:en-US;color:black'>19.</span><span
    10161033  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10171034  language:en-US'>I. Schuurman, M. Windhouwer. </span><a
     
    10211038  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10221039  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1023   font-size:10.0pt;language:en-US;color:black'>19.</span><span
     1040  font-size:10.0pt;language:en-US;color:black'>20.</span><span
    10241041  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10251042  language:en-US'>M. Kemps-Snijders, M. Windhouwer, S.E. Wright. </span><a
     
    10351052  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10361053  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1037   font-size:10.0pt;language:en-US;color:black'>20.</span><span
     1054  font-size:10.0pt;language:en-US;color:black'>21.</span><span
    10381055  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10391056  language:en-US'>M. Kemps-Snijders, M. Windhouwer, S.E. Wright. </span><a
     
    10481065  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10491066  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1050   font-size:10.0pt;language:en-US;color:black'>21.</span><span
     1067  font-size:10.0pt;language:en-US;color:black'>22.</span><span
    10511068  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10521069  language:en-US'>M. Kemps-Snijders, M. Windhouwer, S.E. Wright. ISOcat: an ISO 12620:2009 Data Category Registry. Lecture at the </span><a
     
    10571074  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10581075  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1059   font-size:10.0pt;language:en-US;color:black'>22.</span><span
     1076  font-size:10.0pt;language:en-US;color:black'>23.</span><span
    10601077  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10611078  language:en-US'>S.E. Wright, M. Kemps-Snijders, M. Windhouwer. </span><a
     
    10741091  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10751092  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1076   font-size:10.0pt;language:en-US;color:black'>23.</span><span
     1093  font-size:10.0pt;language:en-US;color:black'>24.</span><span
    10771094  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10781095  language:en-US'>M. Windhouwer, S.E. Wright, M. Kemps-Snijders. </span><a
     
    10901107  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10911108  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1092   font-size:10.0pt;language:en-US;color:black'>24.</span><span
     1109  font-size:10.0pt;language:en-US;color:black'>25.</span><span
    10931110  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10941111  language:en-US'>M. Kemps-Snijders, S.E. Wright, M. Windhouwer. Using ISOcat to manage data category references for linguistic annotation. Tutorial at </span><a
     
    11021119  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11031120  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1104   font-size:10.0pt;language:en-US;color:black'>25.</span><span
     1121  font-size:10.0pt;language:en-US;color:black'>26.</span><span
    11051122  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11061123  language:en-US'>M. Kemps-Snijders, M. Windhouwer. </span><a
     
    11101127  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11111128  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1112   font-size:10.0pt;language:en-US;color:black'>26.</span><span
     1129  font-size:10.0pt;language:en-US;color:black'>27.</span><span
    11131130  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11141131  language:en-US'>M. Kemps-Snijders, S.E. Wright, M. Windhouwer. </span><a
     
    11221139  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11231140  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1124   font-size:10.0pt;language:en-US;color:black'>27.</span><span
     1141  font-size:10.0pt;language:en-US;color:black'>28.</span><span
    11251142  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11261143  language:en-US'>M. Kemps-Snijders, M. Windhouwer, P. Wittenburg, S.E. Wright. </span><a
     
    11401157  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11411158  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1142   font-size:10.0pt;language:en-US;color:black'>28.</span><span
     1159  font-size:10.0pt;language:en-US;color:black'>29.</span><span
    11431160  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11441161  language:en-US'>S.E. Wright. </span><a
     
    11531170  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11541171  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1155   font-size:10.0pt;language:en-US;color:black'>29.</span><span
     1172  font-size:10.0pt;language:en-US;color:black'>30.</span><span
    11561173  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11571174  language:en-US'>M. Windhouwer. </span><a
     
    11691186  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11701187  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1171   font-size:10.0pt;language:en-US;color:black'>30.</span><span
     1188  font-size:10.0pt;language:en-US;color:black'>31.</span><span
    11721189  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11731190  language:en-US'>S.E. Wright. </span><a
     
    11851202  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11861203  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1187   font-size:10.0pt;language:en-US;color:black'>31.</span><span
     1204  font-size:10.0pt;language:en-US;color:black'>32.</span><span
    11881205  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11891206  language:en-US'>M. Windhouwer. </span><a
     
    11981215  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11991216  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1200   font-size:10.0pt;language:en-US;color:black'>32.</span><span
     1217  font-size:10.0pt;language:en-US;color:black'>33.</span><span
    12011218  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    12021219  language:en-US'>M. Kemps-Snijders, S.E. Wright, M. Windhouwer. Implementing ISOcat Data Categories for Language Resources in ISO TC 37. Presentation at the </span><a
     
    12071224  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    12081225  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1209   font-size:10.0pt;language:en-US;color:black'>33.</span><span
     1226  font-size:10.0pt;language:en-US;color:black'>34.</span><span
    12101227  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    12111228  language:en-US'>M. Windhouwer. </span><a
     
    12201237  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    12211238  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1222   font-size:10.0pt;language:en-US;color:black'>34.</span><span
     1239  font-size:10.0pt;language:en-US;color:black'>35.</span><span
    12231240  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    12241241  language:en-US'>M. Kemps-Snijders, M. Windhouwer, P. Wittenburg, S.E. Wright. </span><a
     
    12321249  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    12331250  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1234   font-size:10.0pt;language:en-US;color:black'>35.</span><span
     1251  font-size:10.0pt;language:en-US;color:black'>36.</span><span
    12351252  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    12361253  language:en-US'>M. Kemps-Snijders, M. Windhouwer, S.E. Wright. </span><a
     
    12471264  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    12481265  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1249   font-size:10.0pt;language:en-US;color:black'>36.</span><span
     1266  font-size:10.0pt;language:en-US;color:black'>37.</span><span
    12501267  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    12511268  language:en-US'>M. Kemps-Snijders, M. Windhouwer, P. Wittenburg, S.E. Wright. A Revised Data Model for the ISO Data Category Registry. In Bodil Nistrup Madsen, Hanne Erdman Thomsen (eds), </span><span
     
    12611278  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    12621279  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1263   font-size:10.0pt;language:en-US;color:black'>37.</span><span
     1280  font-size:10.0pt;language:en-US;color:black'>38.</span><span
    12641281  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    12651282  language:en-US'>M. Kemps-Snijders, M. Windhouwer, P. Wittenburg, S.E. Wright. ISOcat: A Revised ISO TC 37 Data Category Registry. Presentation at the </span><span
     
    12681285  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    12691286  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1270   font-size:10.0pt;language:en-US;color:black'>38.</span><span
     1287  font-size:10.0pt;language:en-US;color:black'>39.</span><span
    12711288  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    12721289  language:en-US'>M. Kemps-Snijders, M. Windhouwer, P. Wittenburg, S.E. Wright. </span><a
     
    12851302  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    12861303  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1287   font-size:10.0pt;language:en-US;color:black'>39.</span><span
     1304  font-size:10.0pt;language:en-US;color:black'>40.</span><span
    12881305  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    12891306  language:en-US'>M. Kemps-Snijders, M. Windhouwer, P. Wittenburg, S.E. Wright. </span><a
     
    12991316  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    13001317  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1301   font-size:10.0pt;language:en-US;color:black'>40.</span><span
     1318  font-size:10.0pt;language:en-US;color:black'>41.</span><span
    13021319  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    13031320  language:en-US'>S.E. Wright, M. Kemps-Snijders, M. Windhouwer. </span><a
     
    13131330  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    13141331  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1315   font-size:10.0pt;language:en-US;color:black'>41.</span><span
     1332  font-size:10.0pt;language:en-US;color:black'>42.</span><span
    13161333  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    13171334  language:en-US'>S.E. Wright, M. Kemps-Snijders, M. Windhouwer. </span><a
  • cats/ISOcat/trunk/mod-ISOcat-site/site/index_files/relpubs.html

    r4643 r5277  
    852852  font-size:10.0pt;language:en-US;color:black'>1.</span><span style='width:
    853853  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
     854  en-US'>M. Windhouwer, I. Schuurman. </span><a
     855  href="http://www.lrec-conf.org/proceedings/lrec2014/summaries/396.html"><span
     856  lang=en-US style='font-family:Verdana;text-decoration:underline;language:
     857  en-US'>Linguistic resources and cats: how to use ISOcat, RELcat and SCHEMAcat</span></a><span
     858  lang=en-US style='font-family:Verdana;language:en-US'>. In </span><span
     859  lang=en-US style='font-family:Verdana;font-style:italic;language:en-US'>Proceedings of the Ninth International Conference on Language Resources and Evaluation</span><span
     860  lang=en-US style='font-family:Verdana;language:en-US'> (</span><a
     861  href="http://lrec2014.lrec-conf.org/en/"><span lang=en-US style='font-family:
     862  Verdana;text-decoration:underline;language:en-US'>LREC 2014</span></a><span
     863  lang=en-US style='font-family:Verdana;language:en-US'>), European Language Resources Association (</span><a
     864  href="http://www.elra.info/"><span lang=en-US style='font-family:Verdana;
     865  text-decoration:underline;language:en-US'>ELRA</span></a><span lang=en-US
     866  style='font-family:Verdana;language:en-US'>), Reykjavik, Iceland, May 28-30, 2014. </span></p>
     867  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
     868  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
     869  font-size:10.0pt;language:en-US;color:black'>2.</span><span style='width:
     870  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    854871  en-US'>I. Schuurman, M. Windhouwer. CMDI/ISOcat and Semantic Interoperability. At the </span><a
    855872  href="http://www.clarin.nl/node/1969"><span lang=en-US style='font-family:
     
    858875  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    859876  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    860   font-size:10.0pt;language:en-US;color:black'>2.</span><span style='width:
     877  font-size:10.0pt;language:en-US;color:black'>3.</span><span style='width:
    861878  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    862879  en-US'>M. Windhouwer, I. Schuurman. ISOcat and RELcat, two cooperating semantic registries. At the </span><span
     
    875892  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    876893  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    877   font-size:10.0pt;language:en-US;color:black'>3.</span><span style='width:
     894  font-size:10.0pt;language:en-US;color:black'>4.</span><span style='width:
    878895  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    879896  en-US'>M. Durco, M. Windhouwer, Semantic Mapping in CLARIN Component Metadata. In E. Garoufallou and J. Greenberg (eds.), </span><a
     
    887904  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    888905  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    889   font-size:10.0pt;language:en-US;color:black'>4.</span><span style='width:
     906  font-size:10.0pt;language:en-US;color:black'>5.</span><span style='width:
    890907  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    891908  en-US'>G. Francopoulo (ed.), </span><a
     
    896913  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    897914  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    898   font-size:10.0pt;language:en-US;color:black'>5.</span><span style='width:
     915  font-size:10.0pt;language:en-US;color:black'>6.</span><span style='width:
    899916  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    900917  en-US'>I. Schuurman, M. Windhouwer. </span><a
     
    917934  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    918935  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    919   font-size:10.0pt;language:en-US;color:black'>6.</span><span style='width:
     936  font-size:10.0pt;language:en-US;color:black'>7.</span><span style='width:
    920937  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    921938  en-US'>M. Windhouwer. </span><a
     
    932949  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    933950  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    934   font-size:10.0pt;language:en-US;color:black'>7.</span><span style='width:
     951  font-size:10.0pt;language:en-US;color:black'>8.</span><span style='width:
    935952  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    936953  en-US'>O. Crasborn, M. Windhouwer. ISOcat data categories for signed language resources. In E. Efthimiou, G. Kouroupetroglou and S. Fotinea (eds.), </span><a
     
    941958  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    942959  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    943   font-size:10.0pt;language:en-US;color:black'>8.</span><span style='width:
     960  font-size:10.0pt;language:en-US;color:black'>9.</span><span style='width:
    944961  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    945962  en-US'>C. Zinn, C. Hoppermann and T. Trippel. </span><a
     
    954971  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    955972  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    956   font-size:10.0pt;language:en-US;color:black'>9.</span><span style='width:
    957   27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    958   en-US'>M. Windhouwer. </span><a
     973  font-size:10.0pt;language:en-US;color:black'>10.</span><span
     974  style='width:27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
     975  language:en-US'>M. Windhouwer. </span><a
    959976  href="http://www.lrec-conf.org/proceedings/lrec2012/summaries/954.html"><span
    960977  lang=en-US style='font-family:Verdana;text-decoration:underline;language:
     
    968985  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    969986  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    970   font-size:10.0pt;language:en-US;color:black'>10.</span><span
    971   style='width:27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
     987  font-size:10.0pt;language:en-US;color:black'>11.</span><span
     988  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    972989  language:en-US'>I. Schuurman, M. Windhouwer. Explicit Semantics for Enriched Documents. What Do ISOcat, RELcat and SCHEMAcat Have To Offer? In the proceedings of the 2nd </span><span
    973990  lang=en-US style='font-family:Verdana;font-style:italic;language:en-US'>Supporting Digital Humanities conference</span><span
     
    982999  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    9831000  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    984   font-size:10.0pt;language:en-US;color:black'>11.</span><span
     1001  font-size:10.0pt;language:en-US;color:black'>12.</span><span
    9851002  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    9861003  language:en-US'>M. Windhouwer. </span><a
     
    9941011  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    9951012  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    996   font-size:10.0pt;language:en-US;color:black'>12.</span><span
     1013  font-size:10.0pt;language:en-US;color:black'>13.</span><span
    9971014  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    9981015  language:en-US'>M. Kemps-Snijders, M. Windhouwer, S.E. Wright. </span><a
     
    10061023  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10071024  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1008   font-size:10.0pt;language:en-US;color:black'>13.</span><span
     1025  font-size:10.0pt;language:en-US;color:black'>14.</span><span
    10091026  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10101027  language:en-US'>Daan Broeder. </span><a
     
    10211038  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10221039  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1023   font-size:10.0pt;language:en-US;color:black'>14.</span><span
     1040  font-size:10.0pt;language:en-US;color:black'>15.</span><span
    10241041  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10251042  language:en-US'>Gil Francopoulo. </span><a
     
    10371054  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10381055  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1039   font-size:10.0pt;language:en-US;color:black'>15.</span><span
     1056  font-size:10.0pt;language:en-US;color:black'>16.</span><span
    10401057  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10411058  language:en-US'>Guadalupe Aguado, John McCrae. </span><a
     
    10521069  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10531070  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1054   font-size:10.0pt;language:en-US;color:black'>16.</span><span
     1071  font-size:10.0pt;language:en-US;color:black'>17.</span><span
    10551072  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10561073  language:en-US'>M. Kemps-Snijders, M. Windhouwer, S.E. Wright. </span><a
     
    10641081  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10651082  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1066   font-size:10.0pt;language:en-US;color:black'>17.</span><span
     1083  font-size:10.0pt;language:en-US;color:black'>18.</span><span
    10671084  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10681085  language:en-US'>Daan Broeder, Marc Kemps-Snijders, Dieter Van Uytvanck, Menzo Windhouwer, Peter Withers, Peter Wittenburg and Claus Zinn. </span><a
     
    10801097  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10811098  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1082   font-size:10.0pt;language:en-US;color:black'>18.</span><span
     1099  font-size:10.0pt;language:en-US;color:black'>19.</span><span
    10831100  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10841101  language:en-US'>Agnieszka Patejuk, Adam Przepiórkowski. ISOcat </span><a
     
    10961113  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10971114  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1098   font-size:10.0pt;language:en-US;color:black'>19.</span><span
     1115  font-size:10.0pt;language:en-US;color:black'>20.</span><span
    10991116  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11001117  language:en-US'>Christian Chiarcos. </span><a
     
    11121129  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11131130  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1114   font-size:10.0pt;language:en-US;color:black'>20.</span><span
     1131  font-size:10.0pt;language:en-US;color:black'>21.</span><span
    11151132  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11161133  language:en-US'>Gil Francopoulo, Thierry Declerck, Virach Sornlertlamvanich, Eric de la Clergerie, Monica Monachini. </span><a
Note: See TracChangeset for help on using the changeset viewer.