Subversion Repositories oidinfo_new_design

Rev

Blame | Last modification | View Log | RSS feed

  1. <html xmlns:o="urn:schemas-microsoft-com:office:office"
  2. xmlns="http://www.w3.org/TR/REC-html40">
  3.  
  4. <head>
  5. <meta http-equiv=Content-Type content="text/html; charset=windows-1252">
  6. <meta name=ProgId content=PowerPoint.Slide>
  7. <meta name=Generator content="Microsoft PowerPoint 9">
  8. <link id=Main-File rel=Main-File href=../../../en/tools/oid/doc/OID-tutorial_fichiers/OID-tutorial.htm>
  9. <link rel=File-List href="../../../en/tools/oid/doc/OID-tutorial_fichiers/./OID-tutorial_fichiers/filelist.xml">
  10. <link rel=Preview href="../../../en/tools/oid/doc/OID-tutorial_fichiers/./OID-tutorial_fichiers/preview.wmf">
  11. <title>Registration Authorities for OID components</title>
  12. <!--[if gte mso 9]><xml>
  13.  <o:DocumentProperties>
  14.   <o:Author>John larmouth</o:Author>
  15.   <o:Template>C:\Program Files\Microsoft Office\Templates\Blank Presentation.pot</o:Template>
  16.   <o:LastAuthor>Olivier DUBUISSON</o:LastAuthor>
  17.   <o:Revision>96</o:Revision>
  18.   <o:TotalTime>5411</o:TotalTime>
  19.   <o:LastPrinted>2000-04-19T12:51:17Z</o:LastPrinted>
  20.   <o:Created>2000-04-03T19:05:13Z</o:Created>
  21.   <o:LastSaved>2003-09-20T15:04:47Z</o:LastSaved>
  22.   <o:Words>1665</o:Words>
  23.   <o:PresentationFormat>Affichage à l'écran</o:PresentationFormat>
  24.  <o:Company>University of Salford</o:Company>
  25.  <o:Bytes>479342</o:Bytes>
  26.  <o:Paragraphs>149</o:Paragraphs>
  27.  <o:Slides>29</o:Slides>
  28.  <o:Notes>4</o:Notes>
  29.  <o:Version>9.4402</o:Version>
  30. </o:DocumentProperties>
  31. </xml><![endif]-->
  32. <meta http-equiv=expires content=0>
  33. <![if !ppt]><script><!--
  34.  
  35. var END_SHOW_HREF         = "v3_endshow.htm",
  36.    OUTLINE_EXPAND_HREF   = "v3_outline_expanded.htm",
  37.    OUTLINE_COLLAPSE_HREF = "v3_outline_collapsed.htm";
  38.    NAVBAR_HREF           = "v3_navigation_bar.htm";
  39.     BLANK_NOTES_HREF      = "v3_blank_notes.htm";
  40.    NUM_VISIBLE_SLIDES    = 29;
  41.    SIMPLE_FRAMESET       = 0;
  42.     SLIDE_FRAME         = "PPTSld";
  43.    NOTES_FRAME           = "PPTNts";
  44.    OUTLINE_FRAME         = "PPTOtl";
  45.    NAVBAR_FRAME          = "PPTNav";
  46.  
  47. var g_currentSlide = 1, g_prevSlide = 1;
  48.  
  49. var appVer = navigator.appVersion;
  50. var msie = appVer.indexOf( "MSIE " );
  51. var msieWin31 = (appVer.indexOf( "Windows 3.1" ) > 0);
  52. var ver = 0;
  53.  
  54. if ( msie >= 0 )
  55.  ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) );
  56. else
  57.  ver = parseInt( appVer );
  58.  
  59. var g_supportsPPTHTML = !msieWin31 && ( ( msie >= 0 && ver >= 3.02 ) || ( msie < 0 && ver >= 3 ) );
  60.  
  61. function GetCurrentSlideNum()
  62. {  
  63.  obj = GetHrefObj( g_currentSlide );
  64.  if ( GetHrefObj( g_currentSlide ).m_origVisibility == 1 )
  65.    return obj.m_slideIdx;
  66.  else  
  67.    return g_currentSlide;
  68. }
  69.  
  70. function GetNumSlides()
  71. {
  72.  if ( GetHrefObj( g_currentSlide ).m_origVisibility == 1 )
  73.    return NUM_VISIBLE_SLIDES;
  74.  else
  75.    return g_docTable.length;
  76. }
  77.  
  78. function GetHrefObj( slideIdx )
  79. { return g_docTable[slideIdx - 1];
  80. }
  81.  
  82. function GetSlideNum( slideHref )
  83. {
  84.  for (ii=0; ii<g_docTable.length; ii++) {
  85.    if ( g_docTable[ii].m_slideHref == slideHref )
  86.      return ii+1;
  87.  }
  88.  return 1;
  89. }
  90.  
  91. function GoToNextSld()
  92. {  
  93.  targetIdx = g_currentSlide + 1;
  94.  if ( GetHrefObj( targetIdx-1 ).m_origVisibility == 0 ) {
  95.    if ( targetIdx<=g_docTable.length ) {
  96.      obj = GetHrefObj( targetIdx );
  97.      obj.m_visibility = 1;
  98.      GoToSld( obj.m_slideHref );
  99.    }
  100.  }
  101.  else {
  102.    obj = GetHrefObj( targetIdx );
  103.    while ( obj && ( obj.m_origVisibility == 0 ) && ( targetIdx<=g_docTable.length ) )
  104.      obj = GetHrefObj( targetIdx++ );
  105.    if( obj && obj.m_origVisibility )
  106.      GoToSld( obj.m_slideHref );
  107.  }
  108. }
  109.  
  110. function GoToPrevSld()
  111. {
  112.  targetIdx = g_currentSlide - 1;
  113.  if ( targetIdx > 0 ) {
  114.    obj = GetHrefObj( targetIdx );
  115.    while ( ( obj.m_visibility == 0 ) && ( targetIdx>0 ) )
  116.      obj = GetHrefObj( targetIdx-- );
  117.    GoToSld( obj.m_slideHref );
  118.  }
  119. }
  120.  
  121. function GoToLast()
  122. {
  123.  targetIdx = g_docTable.length;
  124.  if ( targetIdx != g_currentSlide )
  125.    GoToSld( GetHrefObj( targetIdx ).m_slideHref );
  126. }
  127.  
  128. function GoToFirst()
  129. { GoToSld( GetHrefObj(1).m_slideHref );
  130. }
  131.  
  132. function ChangeFrame( frame, href )
  133. {
  134.  if( g_supportsPPTHTML )
  135.    frames[frame].location.replace( href );
  136.  else
  137.    frames[frame].location.href = href;
  138. }
  139.  
  140. function GoToSld( slideHref )
  141. {
  142.  if ( slideHref != GetHrefObj( g_currentSlide ).m_slideHref ) {
  143.    g_prevSlide = g_currentSlide;
  144.    g_currentSlide = GetSlideNum( slideHref );
  145.    obj = GetHrefObj( g_currentSlide );
  146.    obj.m_visibility = 1;
  147.    if( !SIMPLE_FRAMESET )
  148.      ChangeFrame( NOTES_FRAME, obj.m_notesHref );
  149.    ChangeFrame( NAVBAR_FRAME, NAVBAR_HREF );
  150.    frames[SLIDE_FRAME].location.href = slideHref;
  151.  }
  152. }
  153.  
  154. function PrevSldViewed()
  155. { GoToSld( GetHrefObj( g_prevSlide ).m_slideHref );
  156. }
  157.  
  158. function EndShow()
  159. { frames[SLIDE_FRAME].location.href = END_SHOW_HREF;
  160. }
  161.  
  162. function NoHref() {}
  163.  
  164. function ExpandOutline( )
  165. { ChangeFrame( OUTLINE_FRAME, OUTLINE_EXPAND_HREF );
  166. }
  167.  
  168. function CollapseOutline()
  169. { ChangeFrame( OUTLINE_FRAME, OUTLINE_COLLAPSE_HREF );
  170. }
  171.  
  172. function SlideUpdated( id )
  173. {
  174.  if ( id != GetHrefObj( g_currentSlide ).m_slideHref ) {
  175.    g_prevSlide = g_currentSlide;
  176.    g_currentSlide = GetSlideNum( id );
  177.    obj = GetHrefObj( g_currentSlide );
  178.    if( !SIMPLE_FRAMESET )
  179.      ChangeFrame( NOTES_FRAME, obj.m_notesHref );
  180.    ChangeFrame( NAVBAR_FRAME, NAVBAR_HREF );
  181.  }
  182. }
  183.  
  184. function hrefList( slideHref, notesHref, visible, slideIdx )
  185. {
  186.  this.m_slideHref  = slideHref;
  187.  this.m_notesHref  = notesHref;
  188.  this.m_navbarHref = NAVBAR_HREF;
  189.  this.m_origVisibility = visible;
  190.  this.m_visibility = visible;
  191.  this.m_slideIdx = slideIdx;
  192. }
  193. var g_docTable = new Array(
  194.   new hrefList("v3_slide0036.htm", BLANK_NOTES_HREF, 1, 1 ),
  195.   new hrefList("v3_slide0155.htm", BLANK_NOTES_HREF, 1, 2 ),
  196.   new hrefList("v3_slide0149.htm", BLANK_NOTES_HREF, 1, 3 ),
  197.   new hrefList("v3_slide0150.htm", BLANK_NOTES_HREF, 1, 4 ),
  198.   new hrefList("v3_slide0199.htm", BLANK_NOTES_HREF, 1, 5 ),
  199.   new hrefList("v3_slide0198.htm", BLANK_NOTES_HREF, 1, 6 ),
  200.   new hrefList("v3_slide0212.htm", BLANK_NOTES_HREF, 1, 7 ),
  201.   new hrefList("v3_slide0200.htm", BLANK_NOTES_HREF, 1, 8 ),
  202.   new hrefList("v3_slide0213.htm", BLANK_NOTES_HREF, 1, 9 ),
  203.   new hrefList("v3_slide0151.htm", BLANK_NOTES_HREF, 1, 10 ),
  204.   new hrefList("v3_slide0152.htm", BLANK_NOTES_HREF, 1, 11 ),
  205.   new hrefList("v3_slide0153.htm", BLANK_NOTES_HREF, 1, 12 ),
  206.   new hrefList("v3_slide0165.htm", BLANK_NOTES_HREF, 1, 13 ),
  207.   new hrefList("v3_slide0214.htm", BLANK_NOTES_HREF, 1, 14 ),
  208.   new hrefList("v3_slide0201.htm", BLANK_NOTES_HREF, 1, 15 ),
  209.   new hrefList("v3_slide0202.htm", BLANK_NOTES_HREF, 1, 16 ),
  210.   new hrefList("v3_slide0203.htm", BLANK_NOTES_HREF, 1, 17 ),
  211.   new hrefList("v3_slide0204.htm", BLANK_NOTES_HREF, 1, 18 ),
  212.   new hrefList("v3_slide0205.htm", BLANK_NOTES_HREF, 1, 19 ),
  213.   new hrefList("v3_slide0206.htm", BLANK_NOTES_HREF, 1, 20 ),
  214.   new hrefList("v3_slide0207.htm", BLANK_NOTES_HREF, 1, 21 ),
  215.   new hrefList("v3_slide0215.htm", BLANK_NOTES_HREF, 1, 22 ),
  216.   new hrefList("v3_slide0216.htm", BLANK_NOTES_HREF, 1, 23 ),
  217.   new hrefList("v3_slide0217.htm", BLANK_NOTES_HREF, 1, 24 ),
  218.   new hrefList("v3_slide0209.htm", BLANK_NOTES_HREF, 1, 25 ),
  219.   new hrefList("v3_slide0210.htm", BLANK_NOTES_HREF, 1, 26 ),
  220.   new hrefList("v3_slide0211.htm", BLANK_NOTES_HREF, 1, 27 ),
  221.   new hrefList("v3_slide0160.htm", BLANK_NOTES_HREF, 1, 28 ),
  222.   new hrefList("v3_slide0097.htm", BLANK_NOTES_HREF, 1, 29 )
  223. );
  224. //-->
  225. </script><![endif]>
  226. </head>
  227.  
  228. <frameset rows="*,27" framespacing=1 frameborder=1>
  229. <noframes>
  230.  <body>
  231.  <p>Cette page utilise des cadres, mais votre navigateur ne les prend pas en
  232.  charge.</p>
  233.  </body>
  234. </noframes>
  235. <frameset cols="*,495">
  236.  <frame src="v3_outline_collapsed.htm" name=PPTOtl noresize>
  237.  <frameset rows="376,*">
  238.   <frame src="v3_slide0036.htm" name=PPTSld marginheight=0 marginwidth=0>
  239.   <frame src="v3_blank_notes.htm" name=PPTNts marginheight=0 marginwidth=0
  240.   noresize>
  241.  </frameset>
  242. </frameset>
  243. <frameset cols="*,495">
  244.  <frame src="v3_outline_navigation_bar.htm" name=PPTOtlNav marginheight=0
  245.  marginwidth=0 scrolling=no noresize>
  246.  <frame src="v3_navigation_bar.htm" name=PPTNav marginheight=0 marginwidth=0
  247.  scrolling=no noresize>
  248. </frameset>
  249. </frameset>
  250.  
  251. </html>
  252.