<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<!-- ***** BEGIN LICENSE BLOCK *****
   - Version: MPL 1.1/GPL 2.0/LGPL 2.1
   -
   - The contents of this file are subject to the Mozilla Public License Version
   - 1.1 (the "License"); you may not use this file except in compliance with
   - the License. You may obtain a copy of the License at
   - http://www.mozilla.org/MPL/
   -
   - Software distributed under the License is distributed on an "AS IS" basis,
   - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
   - for the specific language governing rights and limitations under the
   - License.
   -
   - The Original Code is mozilla.org Code.
   -
   - The Initial Developer of the Original Code is
   - Netscape Communications Corporation.
   - Portions created by the Initial Developer are Copyright (C) 1998
   - the Initial Developer. All Rights Reserved.
   -
   - Contributor(s):
   -   Mark Olson <maolson@earthlink.net>
   -   Alexey Chernyak <alexeyc@bigfoot.com>
   -   Frank Tang <ftang@netscape.com>
   -   Mike Connelly <mozilla@shepherdstown.com>
   -   Robert Kaiser <kairo@kairo.at>
   -   Ehsan Akhgari <ehsan.akhgari@gmail.com>
   -
   - Alternatively, the contents of this file may be used under the terms of
   - either the GNU General Public License Version 2 or later (the "GPL"), or
   - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
   - in which case the provisions of the GPL or the LGPL are applicable instead
   - of those above. If you wish to allow use of your version of this file only
   - under the terms of either the GPL or the LGPL, and not to allow others to
   - use your version of this file under the terms of the MPL, indicate your
   - decision by deleting the provisions above and replace them with the notice
   - and other provisions required by the LGPL or the GPL. If you do not delete
   - the provisions above, a recipient may use your version of this file under
   - the terms of any one of the MPL, the GPL or the LGPL.
   -
   - ***** END LICENSE BLOCK ***** -->
<html><head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<script type="application/javascript">
  var strBundleService = Components.classes["@mozilla.org/intl/stringbundle;1"].getService(Components.interfaces.nsIStringBundleService);
  var pluginsbundle = strBundleService.createBundle("chrome://global/locale/plugins.properties");
  var regionbundle = strBundleService.createBundle("chrome://global-region/locale/region.properties");

  document.writeln("<title>" + pluginsbundle.GetStringFromName("title_label") + "<\/title>");
</script><title>À propos des plugins</title>

<link rel="stylesheet" type="text/css" href="test_fichiers/plugins_002.css">
<link rel="stylesheet" type="text/css" href="test_fichiers/plugins.css">
</head>
<body>
<div id="outside">
<script type="application/javascript">

  function setDirection() {
    var frame = document.getElementById("directionDetector");
    var direction = frame.contentDocument
                         .defaultView
                         .window
                         .getComputedStyle(frame.contentDocument.getElementById("target"), "")
                         .getPropertyValue("direction");
    document.body.removeChild(frame);
    document.dir = direction;
  }

  function setupDirection() {
    var frame = document.createElement("iframe");
    frame.setAttribute("id", "directionDetector");
    frame.setAttribute("src", "chrome://global/content/directionDetector.html");
    frame.setAttribute("width", "0");
    frame.setAttribute("height", "0");
    frame.setAttribute("style", "visibility: hidden;");
    frame.setAttribute("onload", "setDirection();");
    document.body.appendChild(frame);
  }
  setupDirection();

  /* JavaScript to enumerate and display all installed plug-ins

   * First, refresh plugins in case anything has been changed recently in
   * prefs: (The "false" argument tells refresh not to reload or activate
   * any plug-ins that would be active otherwise.  In contrast, one would
   * use "true" in the case of ASD instead of restarting)
   */
  navigator.plugins.refresh(false);


  var numPlugins = navigator.plugins.length;

  if (numPlugins > 0)
    document.writeln("<h1 id=\"plugs\">" + pluginsbundle.GetStringFromName("enabledplugins_label") + "<\/h1>");
  else
    document.writeln("<h1 id=\"noplugs\">" + pluginsbundle.GetStringFromName("nopluginsareenabled_label") + "<\/h1>");

  document.writeln("<div id=\"findmore\">" + pluginsbundle.GetStringFromName("findmore_label") + " ");
  document.writeln("<a href=\"" + regionbundle.GetStringFromName("more_plugins_url") + "\">" + regionbundle.GetStringFromName("more_plugins_label") + "<\/a>.");
  document.writeln("<\/div>");

  document.writeln("<div id=\"findpluginupdates\">" + pluginsbundle.GetStringFromName("findpluginupdates_label") + " ");
  document.writeln("<a href=\"" + regionbundle.GetStringFromName("pluginupdates_url") + "\">" + regionbundle.GetStringFromName("pluginupdates_label") + "<\/a>.");
  document.writeln("<\/div>");

  document.writeln("<div id=\"installhelp\">" + pluginsbundle.GetStringFromName("installhelp_label") + " ");
  document.writeln("<a href=\"" + regionbundle.GetStringFromName("plugindoc_url") + "\">" + regionbundle.GetStringFromName("plugindoc_label") + "<\/a>.");
  document.writeln("<\/div><hr>");

  for (var i = 0; i < numPlugins; i++)
  {
    var plugin = navigator.plugins[i];

    if (plugin)
    {
      document.write("<h2 class=\"plugname\">");
      document.write(plugin.name);
      document.writeln("<\/h2>");

      document.writeln("<dl><dd><span class=\"label\">" + pluginsbundle.GetStringFromName("file_label") + "<\/span> ");
      document.write(plugin.filename);
      document.writeln("<\/dd><dd><span class=\"label\">" + pluginsbundle.GetStringFromName("version_label") + "<\/span> ");
      document.write(plugin.version);
      document.writeln("<\/dd><dd>");
      document.write(plugin.description);
      document.writeln("<\/dd><\/dl>");

      document.writeln("<table border=\"1\" class=\"contenttable\">");
      document.writeln("<thead>");
      document.writeln("<tr><th class=\"type\">" + pluginsbundle.GetStringFromName("mimetype_label") + "<\/th>");
      document.writeln("<th class=\"desc\">" + pluginsbundle.GetStringFromName("description_label") + "<\/th>");
      document.writeln("<th class=\"suff\">" + pluginsbundle.GetStringFromName("suffixes_label") + "<\/th>");
      document.writeln("<\/tr><\/thead>");
      document.writeln("<tbody>");

      var numTypes = plugin.length;
      var mimetype;
      for (var j = 0; j < numTypes; j++)
      {
        mimetype = plugin[j];

        if (mimetype)
        {
          document.writeln("<tr>");
          document.writeln("<td>" + mimetype.type + "<\/td>");
          document.writeln("<td>" + mimetype.description + "<\/td>");
          document.writeln("<td>" + mimetype.suffixes + "<\/td>");
          document.writeln("<\/tr>");
        }
      }

      document.write("<\/tbody>");
      document.write("<\/table>");
    }
  }
</script><h1 id="plugs">Plugins activés</h1>
<div id="findmore">Vous trouverez plus d'informations sur les plugins de votre navigateur sur 
<a href="https://pfs.mozilla.org/plugins/">mozilla.org</a>.
</div>
<div id="findpluginupdates">Vous trouverez des mises à jour pour les plugins installés sur 
<a href="http://www.mozilla.com/plugincheck/">mozilla.com/plugincheck</a>.
</div>
<div id="installhelp">De l'aide pour l'installation des plugins est disponible sur 
<a href="http://plugindoc.mozdev.org/">plugindoc.mozdev.org</a>.
</div><hr>
<h2 class="plugname">Shockwave Flash</h2>
<dl><dd><span class="label">Fichier :</span> 
libflashplayer.so</dd><dd><span class="label">Version :</span> 
</dd><dd>
Shockwave Flash 11.2 r202</dd></dl>
<table class="contenttable" border="1">
<thead>
<tr><th class="type">Type MIME</th>
<th class="desc">Description</th>
<th class="suff">Suffixes</th>
</tr></thead>
<tbody>
<tr>
<td>application/x-shockwave-flash</td>
<td>Shockwave Flash</td>
<td>swf</td>
</tr>
<tr>
<td>application/futuresplash</td>
<td>FutureSplash Player</td>
<td>spl</td>
</tr>
</tbody></table><h2 class="plugname">iTunes Application Detector</h2>
<dl><dd><span class="label">Fichier :</span> 
librhythmbox-itms-detection-plugin.so</dd><dd><span class="label">Version :</span> 
</dd><dd>
This plug-in detects the presence of iTunes when opening iTunes Store URLs in a web page with Firefox.</dd></dl>
<table class="contenttable" border="1">
<thead>
<tr><th class="type">Type MIME</th>
<th class="desc">Description</th>
<th class="suff">Suffixes</th>
</tr></thead>
<tbody>
<tr>
<td>application/itunes-plugin</td>
<td></td>
<td></td>
</tr>
</tbody></table><h2 class="plugname">Windows Media Player Plug-in 10 (compatible; Totem)</h2>
<dl><dd><span class="label">Fichier :</span> 
libtotem-gmp-plugin.so</dd><dd><span class="label">Version :</span> 
</dd><dd>
The <a href="http://www.gnome.org/projects/totem/">Totem</a> 2.30.2 plugin handles video and audio streams.</dd></dl>
<table class="contenttable" border="1">
<thead>
<tr><th class="type">Type MIME</th>
<th class="desc">Description</th>
<th class="suff">Suffixes</th>
</tr></thead>
<tbody>
<tr>
<td>application/x-mplayer2</td>
<td>vidéo AVI</td>
<td>avi, wma, wmv</td>
</tr>
<tr>
<td>video/x-ms-asf-plugin</td>
<td>vidéo ASF</td>
<td>asf, wmv</td>
</tr>
<tr>
<td>video/x-msvideo</td>
<td>vidéo AVI</td>
<td>asf, wmv</td>
</tr>
<tr>
<td>video/x-ms-asf</td>
<td>vidéo ASF</td>
<td>asf</td>
</tr>
<tr>
<td>video/x-ms-wmv</td>
<td>vidéo Windows Media</td>
<td>wmv</td>
</tr>
<tr>
<td>video/x-wmv</td>
<td>vidéo Windows Media</td>
<td>wmv</td>
</tr>
<tr>
<td>video/x-ms-wvx</td>
<td>vidéo Windows Media</td>
<td>wmv</td>
</tr>
<tr>
<td>video/x-ms-wm</td>
<td>vidéo Windows Media</td>
<td>wmv</td>
</tr>
<tr>
<td>video/x-ms-wmp</td>
<td>vidéo Windows Media</td>
<td>wmv</td>
</tr>
<tr>
<td>application/x-ms-wms</td>
<td>vidéo Windows Media</td>
<td>wms</td>
</tr>
<tr>
<td>application/x-ms-wmp</td>
<td>vidéo Windows Media</td>
<td>wmp</td>
</tr>
<tr>
<td>application/asx</td>
<td>liste de lecture Microsoft ASX</td>
<td>asx</td>
</tr>
<tr>
<td>audio/x-ms-wma</td>
<td>audio Windows Media</td>
<td>wma</td>
</tr>
</tbody></table><h2 class="plugname">DivX® Web Player</h2>
<dl><dd><span class="label">Fichier :</span> 
libtotem-mully-plugin.so</dd><dd><span class="label">Version :</span> 
</dd><dd>
DivX Web Player version 1.4.0.233</dd></dl>
<table class="contenttable" border="1">
<thead>
<tr><th class="type">Type MIME</th>
<th class="desc">Description</th>
<th class="suff">Suffixes</th>
</tr></thead>
<tbody>
<tr>
<td>video/divx</td>
<td>vidéo AVI</td>
<td>divx</td>
</tr>
</tbody></table><h2 class="plugname">QuickTime Plug-in 7.6.6</h2>
<dl><dd><span class="label">Fichier :</span> 
libtotem-narrowspace-plugin.so</dd><dd><span class="label">Version :</span> 
</dd><dd>
The <a href="http://www.gnome.org/projects/totem/">Totem</a> 2.30.2 plugin handles video and audio streams.</dd></dl>
<table class="contenttable" border="1">
<thead>
<tr><th class="type">Type MIME</th>
<th class="desc">Description</th>
<th class="suff">Suffixes</th>
</tr></thead>
<tbody>
<tr>
<td>video/quicktime</td>
<td>vidéo QuickTime</td>
<td>mov</td>
</tr>
<tr>
<td>video/mp4</td>
<td>vidéo MPEG-4</td>
<td>mp4</td>
</tr>
<tr>
<td>image/x-macpaint</td>
<td>image matricielle MacPaint</td>
<td>pntg</td>
</tr>
<tr>
<td>image/x-quicktime</td>
<td>dessin Macintosh Quickdraw/PICT</td>
<td>pict, pict1, pict2</td>
</tr>
<tr>
<td>video/x-m4v</td>
<td>vidéo MPEG-4</td>
<td>m4v</td>
</tr>
</tbody></table><h2 class="plugname">VLC Multimedia Plugin (compatible Totem 2.30.2)</h2>
<dl><dd><span class="label">Fichier :</span> 
libtotem-cone-plugin.so</dd><dd><span class="label">Version :</span> 
</dd><dd>
The <a href="http://www.gnome.org/projects/totem/">Totem</a> 2.30.2 plugin handles video and audio streams.</dd></dl>
<table class="contenttable" border="1">
<thead>
<tr><th class="type">Type MIME</th>
<th class="desc">Description</th>
<th class="suff">Suffixes</th>
</tr></thead>
<tbody>
<tr>
<td>application/x-vlc-plugin</td>
<td>VLC Multimedia Plugin</td>
<td></td>
</tr>
<tr>
<td>application/vlc</td>
<td>VLC Multimedia Plugin</td>
<td></td>
</tr>
<tr>
<td>video/x-google-vlc-plugin</td>
<td>VLC Multimedia Plugin</td>
<td></td>
</tr>
<tr>
<td>application/x-ogg</td>
<td>fichier multimédia Ogg</td>
<td>ogg</td>
</tr>
<tr>
<td>application/ogg</td>
<td>fichier multimédia Ogg</td>
<td>ogg</td>
</tr>
<tr>
<td>audio/ogg</td>
<td>audio Ogg</td>
<td>oga</td>
</tr>
<tr>
<td>audio/x-ogg</td>
<td>audio Ogg</td>
<td>ogg</td>
</tr>
<tr>
<td>video/ogg</td>
<td>vidéo Ogg</td>
<td>ogv</td>
</tr>
<tr>
<td>video/x-ogg</td>
<td>vidéo Ogg</td>
<td>ogg</td>
</tr>
<tr>
<td>application/annodex</td>
<td>format d'échange Annodex</td>
<td>anx</td>
</tr>
<tr>
<td>audio/annodex</td>
<td>audio Annodex</td>
<td>axa</td>
</tr>
<tr>
<td>video/annodex</td>
<td>vidéo Annodex</td>
<td>axv</td>
</tr>
<tr>
<td>video/mpeg</td>
<td>vidéo MPEG</td>
<td>mpg, mpeg, mpe</td>
</tr>
<tr>
<td>audio/wav</td>
<td>audio WAV</td>
<td>wav</td>
</tr>
<tr>
<td>audio/x-wav</td>
<td>audio WAV</td>
<td>wav</td>
</tr>
<tr>
<td>audio/mpeg</td>
<td>audio MP3</td>
<td>mp3</td>
</tr>
<tr>
<td>application/x-nsv-vp3-mp3</td>
<td>vidéo NullSoft</td>
<td>nsv</td>
</tr>
<tr>
<td>video/flv</td>
<td>vidéo Flash</td>
<td>flv</td>
</tr>
<tr>
<td>application/x-totem-plugin</td>
<td>Totem Multimedia plugin</td>
<td></td>
</tr>
</tbody></table>
</div>


</body></html>