Changeset 2724


Ignore:
Timestamp:
03/20/13 12:41:13 (11 years ago)
Author:
mwindhouwer
Message:

M mod-ISOcat-interface-gi/interface/JSXAPPS/ISOcat/js/org/isocat/gui/DCEditor.js

  • smoothing the profile list

M mod-ISOcat-access-data/access/dc_update.acc
M mod-ISOcat-access-data/access/dc_new.acc
M mod-ISOcat-access-data/access/dc_hug.acc
M mod-ISOcat-access-data/access/dc_touch.acc

  • check DCs in the background
  • added a direction to the propagation to prevent loops:

-- starting from a simple DC we go up
-- starting from a complex DC we go down

M mod-ISOcat-access-data/access/dcs_scope_update.acc

  • minor

M mod-ISOcat-access-data/access/user_shibboleth.acc

  • disabled debugging

M mod-ISOcat-site/site/index_files/news.html
M mod-ISOcat-site/site/index_files/relpubs.html
M mod-ISOcat-site/site/index_files/publications.html
M mod-ISOcat-site/site/index_files/TDGs.html
M mod-ISOcat-site/site/index.html
M mod-ISOcat-site/pub/isocat.pub

  • keep track of the revision info
  • announcement of the LMF book
  • updated publication list
Location:
cats/ISOcat/trunk
Files:
13 edited

Legend:

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

    r2029 r2724  
    1515                        <default>
    1616                                <string>true</string>
     17                        </default>
     18                </source>
     19        </param>
     20        <param>
     21                <name>dir</name>
     22                <descr>direction of the DC check propagation</descr>
     23                <type canonical="true">string</type>
     24                <source>
     25                        <param/>
     26                        <default>
     27                                <string>down</string>
    1728                        </default>
    1829                </source>
     
    133144                                        >
    134145                                                <xsl:param name="check"/>
     146                                                <xsl:param name="dir"/>
    135147                                                <xsl:template match="text()"/>
    136148                                                <xsl:template name="dc-name">
     
    161173                                                                        </string>
    162174                                                                </check>
     175                                                                <dir>
     176                                                                        <string>
     177                                                                                <xsl:value-of select="$dir"/>
     178                                                                        </string>
     179                                                                </dir>
    163180                                                                <target>var:void</target>
    164181                                                        </instr>
     
    169186                                                </xsl:template>
    170187                                                <xsl:template match="domain">
    171                                                         <xsl:comment>touch the domain complex DC[<xsl:call-template name="dc-name"/>]</xsl:comment>
    172                                                         <xsl:copy-of select="isocat:touch('dc',@dc)"/>
     188                                                        <xsl:if test="$dir='up'">
     189                                                                <xsl:comment>touch the domain complex DC[<xsl:call-template name="dc-name"/>]</xsl:comment>
     190                                                                <xsl:copy-of select="isocat:touch('dc',@dc)"/>
     191                                                        </xsl:if>
     192                                                </xsl:template>
     193                                                <xsl:template match="value">
     194                                                        <xsl:if test="$dir='down'">
     195                                                                <xsl:comment>touch the value simple DC[<xsl:call-template name="dc-name"/>]</xsl:comment>
     196                                                                <xsl:copy-of select="isocat:touch('dc',@dc)"/>
     197                                                        </xsl:if>
    173198                                                </xsl:template>
    174199                                                <xsl:template match="profile">
     
    197222                                </operator>
    198223                                <check>var:check</check>
     224                                <dir>var:dir</dir>
    199225                                <target>var:hug</target>
    200226                        </instr>
  • cats/ISOcat/trunk/mod-ISOcat-access-data/access/dc_new.acc

    r2686 r2724  
    410410
    411411                <accessor-trace name="touch">
     412                        <!-- determine the direction of the DC check propagation -->
     413                        <instr>
     414                                <type>sloot.xquery</type>
     415                                <operator>
     416                                        <string xmlns:dcif="http://www.isocat.org/ns/dcif">{if ($dc/dcif:dataCategorySelection/dcif:dataCategory/@type='simple') then ('up') else ('down')}</string>
     417                                </operator>
     418                                <dc>var:response</dc>
     419                                <target>var:dir</target>
     420                        </instr>
    412421                        <!-- touch the new DC -->
    413422                        <instr>
     
    415424                                <dc>var:id</dc>
    416425                                <check>var:check</check>
     426                                <dir>var:dir</dir>
    417427                                <target>var:void</target>
    418428                        </instr>
  • cats/ISOcat/trunk/mod-ISOcat-access-data/access/dc_touch.acc

    r2029 r2724  
    1515                        <default>
    1616                                <string>true</string>
     17                        </default>
     18                </source>
     19        </param>
     20        <param>
     21                <name>dir</name>
     22                <descr>direction of the DC check propagation</descr>
     23                <type canonical="true">string</type>
     24                <source>
     25                        <param/>
     26                        <default>
     27                                <string>down</string>
    1728                        </default>
    1829                </source>
     
    7283                        </choose>
    7384                        <!-- hug the context of this DC -->
    74                         <!--<instr>
     85                        <instr>
    7586                                <type>async</type>
    7687                                <uri>active:ISOcat.access.data.dc.hug.bg</uri>
     
    7889                                <check>var:check</check>
    7990                                <target>var:void</target>
    80                         </instr>-->
    81                         <instr>
     91                        </instr>
     92                        <!--<instr>
    8293                                <type>ISOcat.access.data.dc.hug</type>
    8394                                <dc>var:dc</dc>
    8495                                <check>var:check</check>
     96                                <dir>var:dir</dir>
    8597                                <target>var:void</target>
    86                         </instr>
     98                        </instr>-->
    8799                        <instr>
    88100                                <type>copy</type>
  • cats/ISOcat/trunk/mod-ISOcat-access-data/access/dc_update.acc

    r2686 r2724  
    195195                </accessor-debug>
    196196
    197                 <!-- touch the updated DC -->
    198                 <instr>
    199                         <type>ISOcat.access.data.dc.touch</type>
    200                         <dc>var:id</dc>
    201                         <check>var:check</check>
    202                         <target>var:void</target>
    203                 </instr>
    204 
    205197                <!-- get the updated DCIF -->
    206198                <instr>
     
    210202                                <string>false</string>
    211203                        </parse-xml-constraints>
    212                         <target>this:response</target>
    213                 </instr>
    214                 <accessor-debug>
    215                         <instr>
    216                                 <type>copy</type>
    217                                 <operand>this:response</operand>
     204                        <target>var:response</target>
     205                </instr>
     206                <accessor-debug>
     207                        <instr>
     208                                <type>copy</type>
     209                                <operand>var:response</operand>
    218210                                <target>ffcpl:/trace/dc_update.dcif.xml</target>
    219211                        </instr>
    220212                </accessor-debug>
     213               
     214                <!-- determine the direction of the DC check propagation -->
     215                <instr>
     216                        <type>sloot.xquery</type>
     217                        <operator>
     218                                <string xmlns:dcif="http://www.isocat.org/ns/dcif">{if ($dc/dcif:dataCategorySelection/dcif:dataCategory/@type='simple') then ('up') else ('down')}</string>
     219                        </operator>
     220                        <dc>var:response</dc>
     221                        <target>var:dir</target>
     222                </instr>
     223                <!-- touch the updated DC -->
     224                <instr>
     225                        <type>ISOcat.access.data.dc.touch</type>
     226                        <dc>var:id</dc>
     227                        <check>var:check</check>
     228                        <dir>var:dir</dir>
     229                        <target>var:void</target>
     230                </instr>
    221231
    222232                <!-- a nice log message -->
    223233                <instr>
    224234                        <type>xslt2</type>
    225                         <operand>this:response</operand>
     235                        <operand>var:response</operand>
    226236                        <operator>
    227237                                <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"
     
    248258                        <operand>var:msg</operand>
    249259                </instr>
     260
     261                <instr>
     262                        <type>copy</type>
     263                        <operand>var:response</operand>
     264                        <target>this:response</target>
     265                </instr>
    250266        </idoc>
    251267        <exception>
  • cats/ISOcat/trunk/mod-ISOcat-access-data/access/dcs_scope_update.acc

    r2686 r2724  
    182182                                <target>var:void</target>
    183183                        </instr>
    184                         <!-- async hug the context of the updated DCS -->
     184                        <!-- hug the context of the updated DCS -->
    185185                        <instr>
    186186                                <type>ISOcat.access.data.dcs.hug</type>
  • cats/ISOcat/trunk/mod-ISOcat-access-data/access/user_shibboleth.acc

    r2686 r2724  
    1 <accessor debug="true">
     1<accessor debug="false">
    22        <name>ISOcat.access.data.user.shibboleth</name>
    33        <descr>Bind the shibboleth principal to an user, or lookup the user.</descr>
  • cats/ISOcat/trunk/mod-ISOcat-interface-gi/interface/JSXAPPS/ISOcat/js/org/isocat/gui/DCEditor.js

    r2710 r2724  
    889889       
    890890        DCEditor_prototype.addProfile = function() {
    891                 var rec = this.profiles.insertRecord({jsxid:'profile-0',jsxtext:''});
    892                 jsx3.sleep(function() { this.profiles.focusCellById('profile-0',"jsxtext"); },"focusCell",this,true);
     891                var rec = this.profiles.insertRecord({jsxid:'profile-0',jsxtext:'undecided'});
     892                jsx3.sleep(function() { this.profiles.focusCellById('profile-0',"jsxid"); },"focusCell",this,true);
    893893                this.changed();
    894894                this.profilesChanged();
  • cats/ISOcat/trunk/mod-ISOcat-site/site/index.html

    r2633 r2724  
    9797</v:background><![endif]-->
    9898
    99 <div style='position:absolute;width:7.-71in;height:8.-18in'>
     99<div style='position:absolute;width:7.-71in;height:10.0364in'>
    100100<!--[if gte vml 1]><v:oval id="_x0000_s1029" style='position:absolute;left:24.75pt;
    101101 top:153.75pt;width:171pt;height:12pt;z-index:5;mso-wrap-distance-left:2.88pt;
     
    936936src="index_files/image450.png" v:shapes="_x0000_s1338"></span><![endif]><!--[if gte vml 1]><v:shape
    937937 id="_x0000_s1618" type="#_x0000_t202" style='position:absolute;left:177pt;
    938  top:177pt;width:363pt;height:447pt;z-index:86;visibility:visible;
     938 top:176.25pt;width:363pt;height:545.25pt;z-index:86;visibility:visible;
    939939 mso-wrap-edited:f;mso-wrap-distance-left:2.88pt;mso-wrap-distance-top:2.88pt;
    940940 mso-wrap-distance-right:2.88pt;mso-wrap-distance-bottom:2.88pt' filled="f"
     
    957957 <v:textbox style='mso-column-margin:5.7pt' inset="2.85pt,2.85pt,2.85pt,2.85pt"/>
    958958</v:shape><![endif]--><![if !vml]><span style='position:absolute;z-index:86;
    959 left:236px;top:236px;width:484px;height:596px'>
     959left:236px;top:235px;width:484px;height:727px'>
    960960
    961961<table cellpadding=0 cellspacing=0>
    962962 <tr>
    963   <td width=484 height=596 style='vertical-align:top'><![endif]>
     963  <td width=484 height=727 style='vertical-align:top'><![endif]>
    964964  <div v:shape="_x0000_s1618" style='padding:2.85pt 2.85pt 2.85pt 2.85pt'
    965965  class=shape>
    966966  <p class=MsoNormal><span lang=en-US style='font-family:Verdana;language:en-US'>ISO 12620 provides a framework for defining data categories compliant with the ISO/IEC 11179 family of standards. According to this model, each data category is assigned a unique administrative identifier, together with information on the status or decision-making process associated with the data category. In addition, data category specifications in the DCR contain linguistic descriptions, such as data category definitions, statements of associated value domains, and examples. Data category specifications can be associated with a variety of data element names and with language-specific versions of definitions, names, value domains and other attributes.</span></p>
     967  <p class=MsoNormal><span lang=en-US style='font-family:Verdana;language:en-US'>&nbsp;</span></p>
     968  <p class=MsoNormal style='text-align:center;text-align:center'><span
     969  lang=en-US style='font-family:Verdana;color:red;language:en-US'>________________________________________________________</span></p>
     970  <p class=MsoNormal style='text-align:center;text-align:center'><span
     971  lang=en-US style='font-family:Verdana;language:en-US'>&nbsp;</span></p>
     972  <p class=MsoNormal style='text-align:center;text-align:center'><span
     973  lang=en-US style='font-family:Verdana;font-weight:bold;language:en-US'>Book Announcement</span></p>
     974  <p class=MsoNormal style='text-align:center;text-align:center'><span
     975  lang=en-US style='font-family:Verdana;language:en-US'>&nbsp;</span></p>
     976  <p class=MsoNormal style='text-align:center;text-align:center'><a
     977  href="http://www.iste.co.uk/index.php?f=a&amp;ACTION=View&amp;id=566"><span
     978  lang=en-US style='font-family:Verdana;font-style:italic;text-decoration:underline;
     979  language:en-US'>LMF: Lexical Markup Framework, theory and practice</span></a></p>
     980  <p class=MsoNormal style='text-align:center;text-align:center'><span
     981  lang=en-US style='font-family:Verdana;language:en-US'>Edited by Gil Francopoulo</span></p>
     982  <p class=MsoNormal style='text-align:center;text-align:center'><span
     983  lang=en-US style='font-family:Verdana;language:en-US'>Published by ISTE/HERMES/WILEY</span></p>
     984  <p class=MsoNormal style='text-align:center;text-align:center'><span
     985  lang=en-US style='font-family:Verdana;language:en-US'>&nbsp;</span></p>
     986  <p class=MsoNormal style='text-align:center;text-align:center'><span
     987  lang=en-US style='font-family:Verdana;language:en-US'>This book starts with the historical context of LMF (ISO 24613:2008), before providing an overview of the LMF model and the ISOcat Data Category Registry, which provides a flexible means for applying constants like /</span><span
     988  lang=en-US style='font-family:Verdana;font-style:italic;language:en-US'>grammatical gender</span><span
     989  lang=en-US style='font-family:Verdana;language:en-US'>/ in a variety of different settings. It then presents concrete applications and experiments on real data, which are important for developers who want to learn about the use of LMF.</span></p>
     990  <p class=MsoNormal style='text-align:center;text-align:center'><span
     991  lang=en-US style='font-family:Verdana;color:red;language:en-US'>________________________________________________________</span></p>
    967992  <p class=MsoNormal><span lang=en-US style='font-family:Verdana;language:en-US'>&nbsp;</span></p>
    968993  <p class=prominentlink><a href="$site$interface/index.html"><span lang=en-US
  • cats/ISOcat/trunk/mod-ISOcat-site/site/index_files/TDGs.html

    r2635 r2724  
    13881388 <tr>
    13891389  <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;
     1390  height:26.0944pt;padding-left:1.5pt;padding-right:1.5pt;padding-top:1.5pt;
    13911391  padding-bottom:1.5pt;background:#E0E6E6;border-left:solid black 6.0pt;
    13921392  border-top:solid black .25pt;border-right:solid black 2.0pt;border-bottom:
     
    14221422 <tr>
    14231423  <td width=701 height=65 colspan=3 bgcolor="#E0E6E6" style='width:525.48pt;
    1424   height:49.0924pt;padding-left:1.5pt;padding-right:1.5pt;padding-top:1.5pt;
     1424  height:49.2459pt;padding-left:1.5pt;padding-right:1.5pt;padding-top:1.5pt;
    14251425  padding-bottom:1.5pt;background:#E0E6E6;border-left:solid black 6.0pt;
    14261426  border-top:solid black .25pt;border-right:solid black 2.0pt;border-bottom:
  • cats/ISOcat/trunk/mod-ISOcat-site/site/index_files/news.html

    r2710 r2724  
    844844  font-size:10.0pt;language:x-none;color:black'>●</span><span style='width:
    845845  12.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    846   en-US'>throttle access to the DBMS and throttle DCIF generation of large DCSs/profiles </span></p>
     846  en-US'>throttle access to the DBMS and throttle DCIF generation of large DCSs/profiles</span></p>
     847  <p class=MsoNormal style='margin-left:54.0pt;text-indent:-18.0pt'><span
     848  style='direction:ltr;unicode-bidi:embed;font-family:"Times New Roman";
     849  font-size:10.0pt;language:x-none;color:black'>●</span><span style='width:
     850  12.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
     851  en-US'>when a value domain is updated the associated simple DCs are rechecked </span></p>
    847852  <p class=MsoNormal><span lang=en-US style='font-family:Verdana;font-weight:
    848853  bold;language:en-US'>&nbsp;</span></p>
  • cats/ISOcat/trunk/mod-ISOcat-site/site/index_files/publications.html

    r2689 r2724  
    6464<body link=blue vlink=purple bgcolor="#DAE1E5" style='margin:0'>
    6565
    66 <div style='position:absolute;width:7.-71in;height:27.-894in'>
     66<div style='position:absolute;width:7.-71in;height:28.-686in'>
    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:1794.75pt;
     807 style='position:absolute;left:175.5pt;top:175.5pt;width:363pt;height:1868.25pt;
    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:2393px'>
     825left:234px;top:234px;width:484px;height:2491px'>
    826826
    827827<table cellpadding=0 cellspacing=0>
    828828 <tr>
    829   <td width=484 height=2393 style='vertical-align:top'><![endif]>
     829  <td width=484 height=2491 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'>M. Windhouwer, S.E. Wright. LMF and the Data Category Registry: principles and application. In G. Francopoulo (ed.), </span><a
     844  href="http://www.iste.co.uk/index.php?f=a&amp;ACTION=View&amp;id=566"><span
     845  lang=en-US style='font-family:Verdana;font-style:italic;text-decoration:underline;
     846  language:en-US'>LMF: Lexical Markup Framework, theory and practice</span></a><span
     847  lang=en-US style='font-family:Verdana;language:en-US'>. ISTE/HERMES/WILEY, March, 2013.</span></p>
     848  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
     849  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
     850  font-size:10.0pt;language:en-US;color:black'>2.</span><span style='width:
     851  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    843852  en-US'>A special issue on </span><span lang=en-US style='font-family:Verdana;
    844853  font-style:italic;language:en-US'>Datenkategorien in der Terminologie</span><span
     
    850859  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    851860  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    852   font-size:10.0pt;language:en-US;color:black'>2.</span><span style='width:
     861  font-size:10.0pt;language:en-US;color:black'>3.</span><span style='width:
    853862  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    854863  en-US'>I. Schuurman, M.A. Windhouwer. </span><a
     
    858867  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    859868  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    860   font-size:10.0pt;language:en-US;color:black'>3.</span><span style='width:
     869  font-size:10.0pt;language:en-US;color:black'>4.</span><span style='width:
    861870  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    862871  en-US'>M.A. Windhouwer. Towards standardized descriptions of linguistic features: ISOcat and procedures for using common data categories. At the KONVENS 2012 workshop </span><span
     
    865874  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    866875  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    867   font-size:10.0pt;language:en-US;color:black'>4.</span><span style='width:
     876  font-size:10.0pt;language:en-US;color:black'>5.</span><span style='width:
    868877  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    869878  en-US'>I. Schuurman, M.A. Windhouwer. </span><a
     
    873882  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    874883  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    875   font-size:10.0pt;language:en-US;color:black'>5.</span><span style='width:
     884  font-size:10.0pt;language:en-US;color:black'>6.</span><span style='width:
    876885  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    877886  en-US'>I. Schuurman, M.A. Windhouwer. </span><a
     
    884893  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    885894  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    886   font-size:10.0pt;language:en-US;color:black'>6.</span><span style='width:
     895  font-size:10.0pt;language:en-US;color:black'>7.</span><span style='width:
    887896  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    888897  en-US'>I. Schuurman, M.A. Windhouwer. </span><a
     
    892901  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    893902  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    894   font-size:10.0pt;language:en-US;color:black'>7.</span><span style='width:
     903  font-size:10.0pt;language:en-US;color:black'>8.</span><span style='width:
    895904  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    896905  en-US'>M.A. Windhouwer, S.E. Wright. </span><a
     
    914923  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    915924  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    916   font-size:10.0pt;language:en-US;color:black'>8.</span><span style='width:
     925  font-size:10.0pt;language:en-US;color:black'>9.</span><span style='width:
    917926  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    918927  en-US'>M.A. Windhouwer, I. Schuurman. </span><a
     
    928937  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    929938  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    930   font-size:10.0pt;language:en-US;color:black'>9.</span><span style='width:
    931   27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    932   en-US'>I. Schuurman, M.A. Windhouwer. CLARIN-D ISOcat tutorial. Berlin, Germany, January 11, 2012.</span></p>
    933   <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    934   5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    935939  font-size:10.0pt;language:en-US;color:black'>10.</span><span
    936940  style='width:27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
     941  language:en-US'>I. Schuurman, M.A. Windhouwer. CLARIN-D ISOcat tutorial. Berlin, Germany, January 11, 2012.</span></p>
     942  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
     943  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
     944  font-size:10.0pt;language:en-US;color:black'>11.</span><span
     945  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    937946  language:en-US'>I. Schuurman, M.A. Windhouwer. </span><a
    938947  href="http://www.clarin.nl/node/225"><span lang=en-US style='font-family:
     
    941950  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    942951  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    943   font-size:10.0pt;language:en-US;color:black'>11.</span><span
     952  font-size:10.0pt;language:en-US;color:black'>12.</span><span
    944953  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    945954  language:en-US'>S.E. Wright, Implementing Data Category Standardization in ISOcat . Presentation at the </span><span
     
    952961  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    953962  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    954   font-size:10.0pt;language:en-US;color:black'>12.</span><span
     963  font-size:10.0pt;language:en-US;color:black'>13.</span><span
    955964  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    956965  language:en-US'>I. Schuurman, M.A. Windhouwer. </span><a
     
    960969  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    961970  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    962   font-size:10.0pt;language:en-US;color:black'>13.</span><span
     971  font-size:10.0pt;language:en-US;color:black'>14.</span><span
    963972  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    964973  language:en-US'>M. Kemps-Snijders, M.A. Windhouwer, S.E. Wright. </span><a
     
    974983  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    975984  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    976   font-size:10.0pt;language:en-US;color:black'>14.</span><span
     985  font-size:10.0pt;language:en-US;color:black'>15.</span><span
    977986  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    978987  language:en-US'>M. Kemps-Snijders, M.A. Windhouwer, S.E. Wright. </span><a
     
    987996  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    988997  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    989   font-size:10.0pt;language:en-US;color:black'>15.</span><span
     998  font-size:10.0pt;language:en-US;color:black'>16.</span><span
    990999  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    9911000  language:en-US'>M. Kemps-Snijders, M.A. Windhouwer, S.E. Wright. ISOcat: an ISO 12620:2009 Data Category Registry. Lecture at the </span><a
     
    9961005  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    9971006  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    998   font-size:10.0pt;language:en-US;color:black'>16.</span><span
     1007  font-size:10.0pt;language:en-US;color:black'>17.</span><span
    9991008  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10001009  language:en-US'>S.E. Wright, M. Kemps-Snijders, M.A. Windhouwer. </span><a
     
    10131022  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10141023  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1015   font-size:10.0pt;language:en-US;color:black'>17.</span><span
     1024  font-size:10.0pt;language:en-US;color:black'>18.</span><span
    10161025  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10171026  language:en-US'>M.A. Windhouwer, S.E. Wright, M. Kemps-Snijders. </span><a
     
    10291038  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10301039  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1031   font-size:10.0pt;language:en-US;color:black'>18.</span><span
     1040  font-size:10.0pt;language:en-US;color:black'>19.</span><span
    10321041  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10331042  language:en-US'>M. Kemps-Snijders, S.E. Wright, M.A. Windhouwer. Using ISOcat to manage data category references for linguistic annotation. Tutorial at </span><a
     
    10411050  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10421051  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1043   font-size:10.0pt;language:en-US;color:black'>19.</span><span
     1052  font-size:10.0pt;language:en-US;color:black'>20.</span><span
    10441053  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10451054  language:en-US'>M. Kemps-Snijders, M.A. Windhouwer. </span><a
     
    10491058  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10501059  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1051   font-size:10.0pt;language:en-US;color:black'>20.</span><span
     1060  font-size:10.0pt;language:en-US;color:black'>21.</span><span
    10521061  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10531062  language:en-US'>M. Kemps-Snijders, S.E. Wright, M.A. Windhouwer. </span><a
     
    10611070  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10621071  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1063   font-size:10.0pt;language:en-US;color:black'>21.</span><span
     1072  font-size:10.0pt;language:en-US;color:black'>22.</span><span
    10641073  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10651074  language:en-US'>M. Kemps-Snijders, M.A. Windhouwer, P. Wittenburg, S.E. Wright. </span><a
     
    10791088  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10801089  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1081   font-size:10.0pt;language:en-US;color:black'>22.</span><span
     1090  font-size:10.0pt;language:en-US;color:black'>23.</span><span
    10821091  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10831092  language:en-US'>S.E. Wright. </span><a
     
    10921101  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10931102  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1094   font-size:10.0pt;language:en-US;color:black'>23.</span><span
     1103  font-size:10.0pt;language:en-US;color:black'>24.</span><span
    10951104  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10961105  language:en-US'>M.A. Windhouwer. </span><a
     
    11081117  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11091118  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1110   font-size:10.0pt;language:en-US;color:black'>24.</span><span
     1119  font-size:10.0pt;language:en-US;color:black'>25.</span><span
    11111120  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11121121  language:en-US'>S.E. Wright. </span><a
     
    11241133  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11251134  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1126   font-size:10.0pt;language:en-US;color:black'>25.</span><span
     1135  font-size:10.0pt;language:en-US;color:black'>26.</span><span
    11271136  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11281137  language:en-US'>M.A. Windhouwer. </span><a
     
    11371146  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11381147  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1139   font-size:10.0pt;language:en-US;color:black'>26.</span><span
     1148  font-size:10.0pt;language:en-US;color:black'>27.</span><span
    11401149  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11411150  language:en-US'>M. Kemps-Snijders, S.E. Wright, M.A. Windhouwer. Implementing ISOcat Data Categories for Language Resources in ISO TC 37. Presentation at the </span><a
     
    11461155  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11471156  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1148   font-size:10.0pt;language:en-US;color:black'>27.</span><span
     1157  font-size:10.0pt;language:en-US;color:black'>28.</span><span
    11491158  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11501159  language:en-US'>M.A. Windhouwer. </span><a
     
    11591168  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11601169  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1161   font-size:10.0pt;language:en-US;color:black'>28.</span><span
     1170  font-size:10.0pt;language:en-US;color:black'>29.</span><span
    11621171  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11631172  language:en-US'>M. Kemps-Snijders, M.A. Windhouwer, P. Wittenburg, S.E. Wright. </span><a
     
    11711180  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11721181  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1173   font-size:10.0pt;language:en-US;color:black'>29.</span><span
     1182  font-size:10.0pt;language:en-US;color:black'>30.</span><span
    11741183  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11751184  language:en-US'>M. Kemps-Snijders, M.A. Windhouwer, S.E. Wright. </span><a
     
    11861195  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    11871196  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1188   font-size:10.0pt;language:en-US;color:black'>30.</span><span
     1197  font-size:10.0pt;language:en-US;color:black'>31.</span><span
    11891198  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    11901199  language:en-US'>M. Kemps-Snijders, M.A. 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
     
    12001209  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    12011210  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1202   font-size:10.0pt;language:en-US;color:black'>31.</span><span
     1211  font-size:10.0pt;language:en-US;color:black'>32.</span><span
    12031212  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    12041213  language:en-US'>M. Kemps-Snijders, M.A. Windhouwer, P. Wittenburg, S.E. Wright. ISOcat: A Revised ISO TC 37 Data Category Registry. Presentation at the </span><span
     
    12071216  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    12081217  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1209   font-size:10.0pt;language:en-US;color:black'>32.</span><span
     1218  font-size:10.0pt;language:en-US;color:black'>33.</span><span
    12101219  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    12111220  language:en-US'>M. Kemps-Snijders, M.A. Windhouwer, P. Wittenburg, S.E. Wright. </span><a
     
    12241233  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    12251234  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1226   font-size:10.0pt;language:en-US;color:black'>33.</span><span
     1235  font-size:10.0pt;language:en-US;color:black'>34.</span><span
    12271236  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    12281237  language:en-US'>M. Kemps-Snijders, M.A. Windhouwer, P. Wittenburg, S.E. Wright. </span><a
     
    12381247  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    12391248  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1240   font-size:10.0pt;language:en-US;color:black'>34.</span><span
     1249  font-size:10.0pt;language:en-US;color:black'>35.</span><span
    12411250  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    12421251  language:en-US'>S.E. Wright, M. Kemps-Snijders, M.A. Windhouwer. </span><a
     
    12521261  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    12531262  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1254   font-size:10.0pt;language:en-US;color:black'>35.</span><span
     1263  font-size:10.0pt;language:en-US;color:black'>36.</span><span
    12551264  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    12561265  language:en-US'>S.E. Wright, M. Kemps-Snijders, M.A. Windhouwer. </span><a
  • cats/ISOcat/trunk/mod-ISOcat-site/site/index_files/relpubs.html

    r2635 r2724  
    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'>G. Francopoulo (ed.), </span><a
     855  href="http://www.iste.co.uk/index.php?f=a&amp;ACTION=View&amp;id=566"><span
     856  lang=en-US style='font-family:Verdana;font-style:italic;text-decoration:underline;
     857  language:en-US'>LMF: Lexical Markup Framework, theory and practice</span></a><span
     858  lang=en-US style='font-family:Verdana;language:en-US'>. ISTE/HERMES/WILEY, March, 2013.</span></p>
     859  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
     860  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
     861  font-size:10.0pt;language:en-US;color:black'>2.</span><span style='width:
     862  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    854863  en-US'>I. Schuurman, M.A. Windhouwer. </span><a
    855864  href="http://hmi.ewi.utwente.nl/clin2013-dir/bookofabstracts.pdf#page=110"><span
     
    871880  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    872881  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    873   font-size:10.0pt;language:en-US;color:black'>2.</span><span style='width:
     882  font-size:10.0pt;language:en-US;color:black'>3.</span><span style='width:
    874883  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    875884  en-US'>M.A. Windhouwer. </span><a
     
    886895  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    887896  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    888   font-size:10.0pt;language:en-US;color:black'>3.</span><span style='width:
     897  font-size:10.0pt;language:en-US;color:black'>4.</span><span style='width:
    889898  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    890899  en-US'>O. Crasborn, M.A. Windhouwer. ISOcat data categories for signed language resources. In E. Efthimiou, G. Kouroupetroglou and S. Fotinea (eds.), </span><a
     
    895904  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    896905  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    897   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:
    898907  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    899908  en-US'>C. Zinn, C. Hoppermann and T. Trippel. </span><a
     
    908917  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    909918  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    910   font-size:10.0pt;language:en-US;color:black'>5.</span><span style='width:
     919  font-size:10.0pt;language:en-US;color:black'>6.</span><span style='width:
    911920  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    912921  en-US'>M.A. Windhouwer. </span><a
     
    922931  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    923932  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    924   font-size:10.0pt;language:en-US;color:black'>6.</span><span style='width:
     933  font-size:10.0pt;language:en-US;color:black'>7.</span><span style='width:
    925934  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    926935  en-US'>I. Schuurman, M.A. Windhouwer. Explicit Semantics for Enriched Documents. What Do ISOcat, RELcat and SCHEMAcat Have To Offer? In the proceedings of the 2nd </span><span
     
    936945  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    937946  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    938   font-size:10.0pt;language:en-US;color:black'>7.</span><span style='width:
     947  font-size:10.0pt;language:en-US;color:black'>8.</span><span style='width:
    939948  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    940949  en-US'>M.A. Windhouwer. </span><a
     
    948957  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    949958  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    950   font-size:10.0pt;language:en-US;color:black'>8.</span><span style='width:
     959  font-size:10.0pt;language:en-US;color:black'>9.</span><span style='width:
    951960  27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    952961  en-US'>M. Kemps-Snijders, M.A. Windhouwer, S.E. Wright. </span><a
     
    960969  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    961970  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    962   font-size:10.0pt;language:en-US;color:black'>9.</span><span style='width:
    963   27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;language:
    964   en-US'>Daan Broeder. </span><a
     971  font-size:10.0pt;language:en-US;color:black'>10.</span><span
     972  style='width:27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
     973  language:en-US'>Daan Broeder. </span><a
    965974  href="$site$2010-TKE/presentations/CMDI-ISOCat.ppt"><span lang=en-US
    966975  style='font-family:Verdana;text-decoration:underline;language:en-US'>CMDI and Metadata Data Categories</span></a><span
     
    975984  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    976985  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    977   font-size:10.0pt;language:en-US;color:black'>10.</span><span
    978   style='width:27.0pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
     986  font-size:10.0pt;language:en-US;color:black'>11.</span><span
     987  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    979988  language:en-US'>Gil Francopoulo. </span><a
    980989  href="$site$2010-TKE/presentations/presentationMorphosyntacticProfileDCR.ppt"><span
     
    9911000  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    9921001  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    993   font-size:10.0pt;language:en-US;color:black'>11.</span><span
     1002  font-size:10.0pt;language:en-US;color:black'>12.</span><span
    9941003  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    9951004  language:en-US'>Guadalupe Aguado, John McCrae. </span><a
     
    10061015  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10071016  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1008   font-size:10.0pt;language:en-US;color:black'>12.</span><span
     1017  font-size:10.0pt;language:en-US;color:black'>13.</span><span
    10091018  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10101019  language:en-US'>M. Kemps-Snijders, M.A. Windhouwer, S.E. Wright. </span><a
     
    10181027  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10191028  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1020   font-size:10.0pt;language:en-US;color:black'>13.</span><span
     1029  font-size:10.0pt;language:en-US;color:black'>14.</span><span
    10211030  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10221031  language:en-US'>Daan Broeder, Marc Kemps-Snijders, Dieter Van Uytvanck, Menzo Windhouwer, Peter Withers, Peter Wittenburg and Claus Zinn. </span><a
     
    10341043  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10351044  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1036   font-size:10.0pt;language:en-US;color:black'>14.</span><span
     1045  font-size:10.0pt;language:en-US;color:black'>15.</span><span
    10371046  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10381047  language:en-US'>Agnieszka Patejuk, Adam Przepiórkowski. ISOcat </span><a
     
    10501059  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10511060  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1052   font-size:10.0pt;language:en-US;color:black'>15.</span><span
     1061  font-size:10.0pt;language:en-US;color:black'>16.</span><span
    10531062  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10541063  language:en-US'>Christian Chiarcos. </span><a
     
    10661075  <p class=MsoNormal style='margin-left:36.0pt;text-indent:-36.0pt;margin-bottom:
    10671076  5.0pt'><span style='direction:ltr;unicode-bidi:embed;font-family:Verdana;
    1068   font-size:10.0pt;language:en-US;color:black'>16.</span><span
     1077  font-size:10.0pt;language:en-US;color:black'>17.</span><span
    10691078  style='width:21.75pt'>&nbsp;</span><span lang=en-US style='font-family:Verdana;
    10701079  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.