This is a migrated thread and some comments may be shown as answers.

Add a custom dialog (following a How To)

23 Answers 554 Views
WebParts for SharePoint
This is a migrated thread and some comments may be shown as answers.
Jean-François Robe
Top achievements
Rank 1
Jean-François Robe asked on 02 Oct 2009, 02:24 PM

Hello,

 

I tried to add a custom dialog from the tool bar of RadEditor for MOSS (full-featured version 5.5.1.0 installed on a WSS 3.0 environment).

 

To do it, I followed articles from Telerik’s web site.

But I had an issue, so I tried again following strictly this article:

http://www.telerik.com/help/aspnet-ajax/add_custom_dialog.html

 

I skipped the step 2 (about the button icon).

 

In the step 3, I replaced the version number in the path by 5.5.1.0

 

Finally for the step 5, I do clear my IE cache. I even close all windows, and do a IISreset.

 

The issue is that when I click on the button, I have the following alert:

The command CustomDialog is not implemented yet.

 

Which was also the original alert.

 

I verified arguments, names, paths, etc, but I can’t see what I am missing.

Note that I have previously customized the MediaManager with success (help to the support team).
If it could help, I can send you a copy of the modified/created files under the RadEditorSharePoint/5.5.1.0__1f131a624888eeed/Resources folder.

 

Thanks

 

Jeff

23 Answers, 1 is accepted

Sort by
0
Stanimir
Telerik team
answered on 06 Oct 2009, 10:55 AM
Hello Jean-François Robe,

In order to help you further I will need to review the MOSSEditorTools.js file, which is located in the /Program Files/Common Files/Microsoft Shared/web server extensions/wpresources/RadEditorSharePoint/5.5.1.0__1f131a624888eeed/Resources/ folder.

Thank you.

Sincerely yours,
Stanimir
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Jean-François Robe
Top achievements
Rank 1
answered on 06 Oct 2009, 01:33 PM
Hello Stanimir,

As it's a quite long file I attached it (I had to change the extension to force upload).

Thank you,

Jeff
0
Stanimir
Telerik team
answered on 08 Oct 2009, 11:13 AM
Hi Jean-François Robe,

There was something wrong in the encoding of the provided file. I attached a new version of the MOSSEditorTools.js to this thread. You can check if it will work for you as well. Note that I placed the additional source code to the end of the file.

Greetings,
Stanimir
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Jean-François Robe
Top achievements
Rank 1
answered on 09 Oct 2009, 02:49 PM
Hello Stanimir,

Thank you for your help. Now it works.

I noticed that you removed the command function for another custom tool : InsertSpecialLink.
Though I've picked up the code from another tutorial, http://mono.telerik.com/Editor/Examples/CustomDialogs/DefaultCS.aspx,
it doesn't worked in my implementation and it makes other custom tools not working neither.
But, with a few changes, all works great. So I'd like to share my version of the InsertSpecialLink function in the MOSSEditorTools.js :

Telerik.Web.UI.Editor.CommandList["InsertSpecialLink"] = function(commandName, editor, args)  
{          
    var argument = editor.getSelectedElement();  
 
//    if (argument.tagName == "A")  
//    {  
//        editor.selectElement(argument);  
//    }  
//    else  
//    {  
//       var content = editor.getSelectionHtml();   
//       var link = editor.get_document().createElement("A");  
//       link.innerHTML = content;  
//       argument = link;  
//    }  
 
    var myCallbackFunction = function(sender, args)    
    {    
        editor.pasteHtml(String.format("<a href='{0}' target='{1}' class='{2}'>{3}</a> ", args.href, args.target, args.className, args.name)); // OK...  
    }  
 
    editor.showExternalDialog(  
      '/_wpresources/RadEditorSharePoint/5.5.1.0__1f131a624888eeed/Resources/Dialogs/InsertLink.aspx',  
      argument,  
      600,  
      400,  
      myCallbackFunction,  
      null,    
      'Insert Link',  
      true,    
      Telerik.Web.UI.WindowBehaviors.Close + Telerik.Web.UI.WindowBehaviors.Move,  
      false,    
      false);    
}; 

I have another question, still about the tutorial http://mono.telerik.com/Editor/Examples/CustomDialogs/DefaultCS.aspx:
It doesn't tell where to insert the code for the step 1 (and it doesn't seem to fit the ToolsFile.XML).

Thank you again,

Jeff.

0
Stanimir
Telerik team
answered on 12 Oct 2009, 08:02 AM
Hello Jean-François Robe,

This example is not for RadEditor for MOSS, but for the ASP.NET AJAX RadEditor. When it comes to RadEditor for MOSS you need to add the tool via the ConfigFile.xml or ListConfigFile.xml, which are located in the /Program Files/Common Files/Microsoft Shared/web server extensions/wpresources/RadEditorSharePoint/5.x.x.0__1f131a624888eeed/Resources/ folder.


Sincerely yours,
Stanimir
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Jean-François Robe
Top achievements
Rank 1
answered on 12 Oct 2009, 04:07 PM

Hello Stanimir,

 

Thank you for your explanation.

 

There is another tutorial (it’s the last I’ve found, so let’s hope it’s my last question…):

http://www.telerik.com/support/kb/aspnet-ajax/sharepoint/adding-custom-dialog-to-radeditor-for-moss.aspx

 

In step 1, it declares the tool and its icon at the same time, help to an IconUrl attribute:

<tool name="LibraryImageManager" IconUrl="http://www.telerik.com/demos/aspnet/RadControls/Editor/Skins/Default/buttons/CustomDialog.gif" /> 

I tried this method but it doesn’t seem to work. (By the way, the given path is broken, I used a local one.)

Do you have a clue?

If not, it’s not a problem, because the CSS method (described in the two other tutorials) works fine, even if it’s less convenient.

 

Actually I didn’t felt comfortable with modifying the master page just for a CSS class. So I’ve inserted it in the CORE.css (C:\Program Files\Common files\Microsoft Shared\web server extensions\12\TEMPLATE\LAYOUTS\*<LCID>*\STYLES\). This file has also the advantage to be common for all sites and themes. But it may need a IISreset.

 

Regards,

 

Jeff

 

0
Stanimir
Telerik team
answered on 14 Oct 2009, 07:34 AM
Hello Jean-François,

At this point what I suggest you is to use the css method for setting the tool's icon (as it is in the online help article). If you add the following tool to the ToolsFile.xml, it will break the appearing of the toolbar.

We will investigate this issue further.

Thank you.


Sincerely yours,
Stanimir
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Jean-François Robe
Top achievements
Rank 1
answered on 17 Dec 2009, 01:23 PM

Hello,

 

I'm coming up again, because now I moved from a WSS server to a MOSS server.

 

On the new MOSS server I’ve installed the new full purchased versions of:

- RadControls (RadControls_for_ASP.NET_AJAX_2009_3_1103_dev)

- RadEditor for MOSS (RadEditorMOSS_5_6_dev)

On the previous server, I've installed RadEditor for MOSS version 5.5.1.0.

 

I copied a custom dialog (that works fine on my previous server), and had the common error message:

“The command xxx is not implemented yet.”

Where my custom dialog is “InsertStreaming_Real”.

 

To help you diagnose this issue, here is a description of the modified files under the “Resources” folder.

- ToolsFile.xml
1 line added :

<tool name="InsertStreaming_Real" /> 


- MOSSEditorTools.js 
1 custom function added at the beginning (the rest is as original) :

var RadE_HasRules = false;  
Type.registerNamespace("Telerik.Web.UI.Editor");  
if (typeof (Telerik.Web.UI.Editor.CommandList) == "undefined")  
    Telerik.Web.UI.Editor.CommandList = {};  
 
// --- >>> Custom :  
Telerik.Web.UI.Editor.CommandList["InsertStreaming_Real"] = function(commandName, editor, args)  
{  
    var myCallbackFunction = function(sender, args)   
    {  
        //editor.set_html(args);  
        editor.pasteHtml(args);  
    }  
      
    //var arg = editor.get_html();  
    var arg = editor.getSelectedElement();  
      
    editor.showExternalDialog('/_wpresources/RadEditorSharePoint/5.6.0.0__1f131a624888eeed/Resources/Dialogs/InsertStreaming_Real.aspx',   
     arg,   
     600,   
     400,   
     myCallbackFunction,   
     null,   
     'Insert a streaming video (Real Media)',   
     true,   
     Telerik.Web.UI.WindowBehaviors.Close + Telerik.Web.UI.WindowBehaviors.Move,   
     false,   
     false);  
};  
// --- <<<  
 
Telerik.Web.UI.Editor.CommandList["MOSSRightToLeft"] = function(commandName, editor, args)  
{  
    Telerk_MOSS_SetDirectionOfSelection(editor, "rtl");  
};  
 
...  
 


- Dialogs / InsertStreaming_Real.aspx

<%@ Page Language="C#" AutoEventWireup="true" %> 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml">  
<head id="Head1" runat="server">  
   <title>Untitled Page</title> 
</head> 
<body> 
   <form id="form1" runat="server">  
       <fieldset style="width: 214px; height: 190px">  
           URL de la vidéo (Real Media) :  
           <input type="text" id="URL" style="width: 400px; height: 100px"><br /> 
           <input type="button" onclick="return OK_onclick()" value="OK" /> 
       </fieldset> 
       <script type="text/javascript">  
         
           if (window.attachEvent)  
           {  
               window.attachEvent("onload", initDialog);  
           }  
           else if (window.addEventListener)  
           {  
               window.addEventListener("load", initDialog, false);  
           }  
 
           var URL = document.getElementById("URL");  
             
           function getRadWindow()  
           {  
               if (window.radWindow)  
            {  
             return window.radWindow;  
            }  
            if (window.frameElement && window.frameElement.radWindow)  
            {  
             return window.frameElement.radWindow;  
            }  
            return null;  
           }  
             
           var clientParameters;  
           function initDialog()  
           {  
               clientParameters = getRadWindow().ClientParameters; //return the arguments supplied from the parent page  
           }  
             
           function OK_onclick() //fires when the OK button is clicked  
           {  
              var EMBED_ImageWindow = "<embed src='" + URL.value + "' type='audio/x-pn-realaudio-plugin' console='533424' CONTROLS='ImageWindow' height=288 width=384 autostart=false maintainaspect=true></embed>";  
              var EMBED_ControlPanel = "<embed src='" + URL.value + "' type='audio/x-pn-realaudio-plugin' console='533424' CONTROLS='ControlPanel' height=20 width=384 autostart=false maintainaspect=true></embed>";          
              var ReturnValue = "<table><tr><td>" + EMBED_ImageWindow + "</td></tr><tr><td>" + EMBED_ControlPanel + "</td></tr></table>";  
              getRadWindow().close(ReturnValue); //use the close function of the getRadWindow to close the dialog and pass the arguments from the dialog to the callback function on the main page.  
           }  
             
       </script> 
   </form> 
</body> 
</html> 
 


Regards,

 

Jeff

 

0
Stanimir
Telerik team
answered on 22 Dec 2009, 03:08 PM
Hello Jean-François Robe,
I apologize for the late response.
“The command xxx is not implemented yet.”
- This error might be result from the browser's cache. Please make sure that you clean your browser's temporary files and that the correct MOSSEditorTools.js file is loaded. You can confirm this by adding an alert("This is the file"); statement in it and checking if it will execute.

Kind regards,
Stanimir
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Jean-François Robe
Top achievements
Rank 1
answered on 04 Jan 2010, 11:00 AM
Hello Stanimir,

I followed your instructions:
- I've cleared the browser's temporary files (from the IE8 browser's options, with all cases checked)
- I've add a test "alert" statement as the fisrt line of the MOSSEditorTools.js file

I've tried again but I still have the same error message.
The test "alert" did not execute.
So I also checked the file name is still "MOSSEditorTools.js" (at the root of the "Resources" folder).

Greetings,

Jeff
0
Stanimir
Telerik team
answered on 04 Jan 2010, 12:02 PM
Hello Jean-François,

In order to help you further I will need some additional information. Send me the HTML source of the page where you are using the editor. If you are using the editor in WCM scenario and you used the SharePoint Designer to replace the PublishingWebControls:RichHtmlField with telerik:RadHtmlField as it is described in the following article http://www.telerik.com/help/aspnet-ajax/using-radeditor-in-web-content-management-scenario.html, provide me with the line, which is defining the telerik:RadHtmlField. The ConfigFile.xml and ListConfigFile.xml, which are located in /Program Files/Common Files/Microsoft Shared/web server extensions/wpresources/RadEditorSharePoint/5.x.x.0__1f131a624888eeed/Resources/ will be helpful as well.


Kind regards,
Stanimir
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Jean-François Robe
Top achievements
Rank 1
answered on 04 Jan 2010, 02:58 PM
Hello,

I'm trying to use the Editor on a standard WebPart page, where the Editor's web part was added by modifing the page basicly (every step is standard and user-friendly, no use of Designer or else).
This page is named "Full.aspx", and is under a document library named "DocLib".

Here is the page HTML source :
<HTML xmlns:o="urn:schemas-microsoft-com:office:office" dir="ltr">  
<HEAD><meta name="GENERATOR" content="Microsoft SharePoint" /><meta name="progid" content="SharePoint.WebPartPage.Document" /><meta HTTP-EQUIV="Content-Type" content="text/html; charset=utf-8" /><meta HTTP-EQUIV="Expires" content="0" /><title>  
      
    DocLib - Full  
 
</title><link rel="stylesheet" type="text/css" href="/_layouts/1036/styles/core.css?rev=kp6dZ1ACnhmeDvEPafNX3w%3D%3D"/>  
<script type="text/javascript" language="javascript" src="/_layouts/1036/init.js?rev=IVERnxc9Kie1VChgRdTVng%3D%3D"></script> 
<script type="text/javascript" language="javascript" src="/_layouts/1036/core.js?rev=VKbIHucTq6Mhv44IfxtMTg%3D%3D"></script> 
<script type="text/javascript" language="javascript" src="/_layouts/portal.js?rev=cRI8b5r5N%2BkLhIuWR03ICg%3D%3D"></script> 
<script type="text/javascript" language="javascript" src="/_layouts/1036/ie55up.js?rev=Ni7%2Fj2ZV%2FzCvd09XYSSWvA%3D%3D"></script> 
<script type="text/javascript" language="javascript" src="/_layouts/1036/search.js?rev=LkcliuXuBtpyM1BbXQm3gw%3D%3D"></script> 
<link type="text/xml" rel="alternate" href="/_vti_bin/spsdisco.aspx" /> 
    <META Name="GENERATOR" Content="Microsoft SharePoint">  
    <META Name="ProgId" Content="SharePoint.WebPartPage.Document">  
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">  
    <META Name="CollaborationServer" Content="SharePoint Team Web Site">  
    <script> 
    var navBarHelpOverrideKey = "wssmain";  
    </script> 
<style type="text/css">  
    .zz1_TopNavigationMenu_0 { background-color:white;visibility:hidden;display:none;position:absolute;left:0px;top:0px; }  
    .zz1_TopNavigationMenu_1 { text-decoration:none; }  
    .zz1_TopNavigationMenu_2 {  }  
    .zz1_TopNavigationMenu_3 { border-style:none; }  
    .zz1_TopNavigationMenu_4 {  }  
    .zz1_TopNavigationMenu_5 {  }  
    .zz1_TopNavigationMenu_6 { border-style:none; }  
    .zz1_TopNavigationMenu_7 {  }  
    .zz1_TopNavigationMenu_8 { background-color:#F2F3F4;border-color:#A7B4CE;border-width:1px;border-style:solid; }  
    .zz1_TopNavigationMenu_9 { border-style:none; }  
    .zz1_TopNavigationMenu_10 {  }  
    .zz1_TopNavigationMenu_11 { border-style:none; }  
    .zz1_TopNavigationMenu_12 {  }  
    .zz1_TopNavigationMenu_13 { border-style:none; }  
    .zz1_TopNavigationMenu_14 {  }  
    .zz1_TopNavigationMenu_15 { border-style:none; }  
    .zz1_TopNavigationMenu_16 { background-color:#CBE3F0; }  
    .ctl00_PlaceHolderPageTitleInTitleArea_TitleBar_0 { border-color:Black;border-width:1px;border-style:Solid; }  
    .ctl00_PlaceHolderMain_FullPage_0 { border-color:Black;border-width:1px;border-style:Solid; }  
 
</style></HEAD>  
<BODY scroll="yes" onload="javascript:if (typeof(_spBodyOnLoadWrapper) != 'undefined') _spBodyOnLoadWrapper();">  
  <form name="aspnetForm" method="post" action="Full.aspx" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm">  
<div> 
<input type="hidden" name="MSO_PageHashCode" id="MSO_PageHashCode" value="112120927623" /> 
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> 
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> 
<input type="hidden" name="__REQUESTDIGEST" id="__REQUESTDIGEST" value="0xE395E2A9A12F4884B850838973CD621E4FC2852FBA97590D8070936F7305542EEB9EBA0063A060879CC8393EB42794AD7DAE81A7F7A88CEAFF8CB1EA50A560C8,04 Jan 2010 13:58:45 -0000" /> 
<input type="hidden" name="MSOWebPartPage_PostbackSource" id="MSOWebPartPage_PostbackSource" value="" /> 
<input type="hidden" name="MSOSPWebPartManager_DisplayModeName" id="MSOSPWebPartManager_DisplayModeName" value="Browse" /> 
<input type="hidden" name="MSOWebPartPage_Shared" id="MSOWebPartPage_Shared" value="" /> 
<input type="hidden" name="MSOLayout_LayoutChanges" id="MSOLayout_LayoutChanges" value="" /> 
<input type="hidden" name="MSOLayout_InDesignMode" id="MSOLayout_InDesignMode" value="" /> 
<input type="hidden" name="MSOSPWebPartManager_OldDisplayModeName" id="MSOSPWebPartManager_OldDisplayModeName" value="Browse" /> 
<input type="hidden" name="MSOSPWebPartManager_StartWebPartEditingName" id="MSOSPWebPartManager_StartWebPartEditingName" value="false" /> 
<input type="hidden" name="MSOTlPn_SelectedWpId" id="MSOTlPn_SelectedWpId" value="" /> 
<input type="hidden" name="MSOTlPn_View" id="MSOTlPn_View" value="0" /> 
<input type="hidden" name="MSOTlPn_ShowSettings" id="MSOTlPn_ShowSettings" value="False" /> 
<input type="hidden" name="MSOGallery_SelectedLibrary" id="MSOGallery_SelectedLibrary" value="" /> 
<input type="hidden" name="MSOGallery_FilterString" id="MSOGallery_FilterString" value="" /> 
<input type="hidden" name="MSOTlPn_Button" id="MSOTlPn_Button" value="none" /> 
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwULLTE3Mzc3MTk1OTkPZBYCZg9kFgJmD2QWAgIDD2QWDAIBD2QWAgUmZ19jNDA3Yjc0Yl85MmUyXzQzMTFfODkyYl9mNmFlMjM0MmIwZjAPDxYOHgVUaXRsZQUaVGVsZXJpayBSYWRFZGl0b3IgZm9yIE1PU1MeC0Rlc2NyaXB0aW9uBS5Dcm9zcy1icm93c2VyIHJpY2ggY29udGVudCBlZGl0b3IgZnJvbSBUZWxlcmlrHgZIZWlnaHQcHgVXaWR0aBweCkNocm9tZVR5cGVmHglEaXJlY3Rpb24LKipTeXN0ZW0uV2ViLlVJLldlYkNvbnRyb2xzLkNvbnRlbnREaXJlY3Rpb24AHgRfIVNCAoCDCGRkAgMPZBYEAg0PZBYCZg9kFgZmDxYCHgRUZXh0BSY8c3BhbiBzdHlsZT0ncGFkZGluZy1sZWZ0OjNweCc+PC9zcGFuPmQCAg8PFgQfBwUITW9uIHNpdGUeC05hdmlnYXRlVXJsBT1odHRwOi8vcG9ydGFpbC5mb3JtYXRpb24ubG9jYWw6ODAvTXlTaXRlL19sYXlvdXRzL015U2l0ZS5hc3B4ZGQCBA8WAh8HBTk8c3BhbiBzdHlsZT0ncGFkZGluZy1sZWZ0OjRweDtwYWRkaW5nLXJpZ2h0OjNweCc+fDwvc3Bhbj5kAg8PZBYCZg9kFgICAw8WAh8HBQF8ZAIJD2QWAgIBD2QWAmYPZBYCAgEPD2QWAh4FY2xhc3MFGG1zLXNidGFibGUgbXMtc2J0YWJsZS1leGQCCw9kFgICAw9kFgJmD2QWAgIDDw8WAh4JQWNjZXNzS2V5BQEvZGQCFw9kFgICAQ9kFgJmDw8WAh4HVmlzaWJsZWhkZAIvD2QWAgIED2QWAgIBD2QWAmYPDxYCHwtoZGQYAQVFY3RsMDAkUGxhY2VIb2xkZXJUb3BOYXZCYXIkUGxhY2VIb2xkZXJIb3Jpem9udGFsTmF2JFRvcE5hdmlnYXRpb25NZW51Dw9kBQdSRU5BVUxUZLsjeNf2CTbaglNvdtRqnm9ENTNT" /> 
</div> 
 
<script type="text/javascript">  
//<![CDATA[
var theForm = document.forms['aspnetForm'];
if (!theForm) {
    theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
//]]> 
</script> 
 
 
<script src="/WebResource.axd?d=-SEZuDMWt2BfpOVboxssqw2&amp;t=633791318898858736" type="text/javascript"></script> 
 
<script> var MSOWebPartPageFormName = 'aspnetForm';</script><script type="text/JavaScript" language="JavaScript">  
<!--  
var L_Menu_BaseUrl="";  
var L_Menu_LCID="1036";  
var L_Menu_SiteTheme="";  
//--> 
</script> 
<script type="text/javascript">  
//<![CDATA[
var originalFormAction = document.forms[0].action;
function FetchCallbackMenuItems(menutemplate)
{
   var template=document.getElementById(menutemplate);
   if(template == null || (template != null && template.hasChildNodes()))
   {
      return;
   }
   __theFormPostData = '';
   WebForm_InitCallback();
   var lastFormAction = document.forms[0].action;
   document.forms[0].action = originalFormAction;
   WebForm_DoCallback('ctl00$PlaceHolderGlobalNavigation$ctl08$MyLinksMenu','',PopulateCallbackMenuItems,'^R^,^F^,ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu,ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate',null,false);
   document.forms[0].action = lastFormAction;
}
//]]> 
</script> 
<SCRIPT LANGUAGE='JavaScript' > 
<!--
//--> 
</SCRIPT> 
<script src="/ScriptResource.axd?d=kK7KQJAkz9l-FV2oEwsEvy_tRCy25wdZ10Gabb1T96KrONkvpJxvMrmR0MLRf5-h0&amp;t=633791318898858736" type="text/javascript"></script> 
<script src="/ScriptResource.axd?d=RqBpxM2zrBO0i9MwY0o40oi8uivO00HxFtRNmUViMmL21g7YIaOOgmiSbzpLavSJiaJX4UlmmbgH7lgu4mF2wFRkgs_HNP63l5N4yxPe2301&amp;t=633791321519527072" type="text/javascript"></script> 
<script src="/ScriptResource.axd?d=RqBpxM2zrBO0i9MwY0o40oi8uivO00HxFtRNmUViMmL21g7YIaOOgmiSbzpLavSJrY3awq22-6wnho8NlADCkIbY-V6npRs5oWxFanzd0fA1&amp;t=633791321519527072" type="text/javascript"></script> 
<script type="text/javascript">  
//<![CDATA[
function WebForm_OnSubmit() {
UpdateFormDigest('\u002f', 1440000);return _spFormOnSubmitWrapper();
return true;
}
//]]> 
</script> 
 
      
  <TABLE class="ms-main" CELLPADDING=0 CELLSPACING=0 BORDER=0 WIDTH="100%" HEIGHT="100%">  
    <tr><td>  
       <table CELLPADDING=0 CELLSPACING=0 BORDER=0 WIDTH="100%">  
        <tr> 
         <td colspan=4 class="ms-globalbreadcrumb">  
            <span id="TurnOnAccessibility" style="display:none">  
               <href="#" class="ms-skip" onclick="SetIsAccessibilityFeatureEnabled(true);UpdateAccessibilityUI();return false;">Activer le mode plus accessible</a> 
            </span> 
            <href="javascript:;" onclick="javascript:this.href='#mainContent';" class="ms-skip" AccessKey="J">Passer au contenu principal</a> 
         <table cellpadding=0 cellspacing=0 height=100class="ms-globalleft">  
           <tr> 
            <td class="ms-globallinks" style="padding-top: 2px;" height=100valign=middle>  
             <div> 
              <span id="TurnOffAccessibility" style="display:none">  
                <href="#" class="ms-acclink" onclick="SetIsAccessibilityFeatureEnabled(false);UpdateAccessibilityUI();return false;">Désactiver le mode plus accessible</a> 
              </span> 
                
                <span id="ctl00_PlaceHolderGlobalNavigation_PlaceHolderGlobalNavigationSiteMap_GlobalNavigationSiteMap"><span><a class="ms-sitemapdirectional" href="/">RENAULT</a></span></span> 
                
              </div> 
             </td> 
           </tr> 
         </table> 
         <table cellpadding="0" cellspacing="0" height=100class="ms-globalright">  
          <tr> 
              <td valign="middle" class="ms-globallinks" style="padding-left:3px; padding-right:6px;">  
                
              </td> 
          <td valign="middle" class="ms-globallinks">  
              
       
    <span style="display:none"><menu type='ServerMenu' id="zz2_ID_PersonalActionMenu" largeIconMode="true"><ie:menuitem id="zz3_ID_PersonalInformation" type="option" iconSrc="/_layouts/images/menuprofile.gif" onMenuClick="javascript:GoToPage('\u002f_layouts\u002fuserdisp.aspx?Force=True\u0026ID=' + _spUserId);return false;" text="Mes param&#232;tres" description="Mettre &#224; jour vos informations utilisateur, vos param&#232;tres r&#233;gionaux et vos alertes." menuGroupId="100"></ie:menuitem><ie:menuitem id="zz4_ID_LoginAsDifferentUser" type="option" onMenuClick="javascript:LoginAsAnother('\u002f_layouts\u002fAccessDenied.aspx?loginasanotheruser=true', 0)" text="Se connecter en tant qu'utilisateur diff&#233;rent" description="Se connecter avec un autre compte." menuGroupId="200"></ie:menuitem><ie:menuitem id="zz5_ID_Logout" type="option" onMenuClick="window.location = '/_layouts/SignOut.aspx';" text="Se d&#233;connecter" description="Se d&#233;connecter du site." menuGroupId="200"></ie:menuitem><ie:menuitem id="zz6_ID_PersonalizePage" type="option" iconSrc="/_layouts/images/menupersonalize.gif" onMenuClick="javascript:MSOLayout_ChangeLayoutMode(true);" text="Personnaliser cette page" description="Ajouter, supprimer ou mettre &#224; jour les composants WebPart sur cette page." menuGroupId="300"></ie:menuitem></menu></span><span title="Menu Ouvrir"><div  id="zz7_Menu_t" class="ms-SPLink ms-SpLinkButtonInActive" onmouseover="MMU_PopMenuIfShowing(this);MMU_EcbTableMouseOverOut(this, true)" hoverActive="ms-SPLink ms-SpLinkButtonActive" hoverInactive="ms-SPLink ms-SpLinkButtonInActive" onclick=" MMU_Open(byid('zz2_ID_PersonalActionMenu'), MMU_GetMenuFromClientId('zz7_Menu'),event,false, null, 0);" foa="MMU_GetMenuFromClientId('zz7_Menu')" oncontextmenu="this.click(); return false;" nowrap="nowrap"><id="zz7_Menu" accesskey="L" href="#" onclick="javascript:return false;" style="cursor:hand;white-space:nowrap;" onfocus="MMU_EcbLinkOnFocusBlur(byid('zz2_ID_PersonalActionMenu'), this, true);" onkeydown="MMU_EcbLinkOnKeyDown(byid('zz2_ID_PersonalActionMenu'), MMU_GetMenuFromClientId('zz7_Menu'), event);" onclick=" MMU_Open(byid('zz2_ID_PersonalActionMenu'), MMU_GetMenuFromClientId('zz7_Menu'),event,false, null, 0);" oncontextmenu="this.click(); return false;" menuTokenValues="MENUCLIENTID=zz7_Menu,TEMPLATECLIENTID=zz2_ID_PersonalActionMenu" serverclientid="zz7_Menu">Bienvenue FORMATION\Administrateur<img src="/_layouts/images/blank.gif" border="0" alt="Appuyez sur Maj+Entrée pour ouvrir le menu (nouvelle fenêtre)"/></a><img align="absbottom" src="/_layouts/images/menudark.gif" alt="" /></div></span><script type="text/javascript" language="javascript">var _spUserId=1;</script> 
 
 
          </td> 
          <td style="padding-left:1px;padding-right:3px;" class="ms-globallinks">|</td> 
              <td valign="middle" class="ms-globallinks">  
                <table cellspacing="0" cellpadding="0">  
                 <tr> 
                  <td class="ms-globallinks"><span style='padding-left:3px'></span> 
<id="ctl00_PlaceHolderGlobalNavigation_ctl07_hlMySite" href="http://portail.formation.local:80/MySite/_layouts/MySite.aspx">Mon site</a> 
<span style='padding-left:4px;padding-right:3px'>|</span> 
</td> 
                  <td class="ms-globallinks">  
<table><tr>  
<td class="ms-globallinks"><span id="ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenu"><span style="display:none"><menu type='ServerMenu' id="ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate" largeIconMode="true"></menu></span><span title="Menu Ouvrir"><span  id="ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu_t" class="ms-SPLink ms-hovercellinactive" onmouseover="MMU_PopMenuIfShowing(this);MMU_EcbTableMouseOverOut(this, true)" hoverActive="ms-SPLink ms-hovercellactive" hoverInactive="ms-SPLink ms-hovercellinactive" onclick="javascript:FetchCallbackMenuItems(&#39;ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate&#39;); MMU_Open(byid('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate'), MMU_GetMenuFromClientId('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu'),event,true, null, 0);" foa="MMU_GetMenuFromClientId('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu')" oncontextmenu="this.click(); return false;" nowrap="nowrap"><id="ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu" accesskey="M" href="#" onclick="javascript:return false;" style="cursor:hand;white-space:nowrap;" onfocus="MMU_EcbLinkOnFocusBlur(byid('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate'), this, true);" onkeydown="MMU_EcbLinkOnKeyDown(byid('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate'), MMU_GetMenuFromClientId('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu'), event);" onclick="javascript:FetchCallbackMenuItems(&#39;ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate&#39;); MMU_Open(byid('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate'), MMU_GetMenuFromClientId('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu'),event,true, null, 0);" oncontextmenu="this.click(); return false;" menuTokenValues="MENUCLIENTID=ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu,TEMPLATECLIENTID=ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate" serverclientid="ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu">Mes liens<img src="/_layouts/images/blank.gif" border="0" alt="Appuyez sur Maj+Entrée pour ouvrir le menu (nouvelle fenêtre)"/></a><img align="absbottom" src="/_layouts/images/menudark.gif" alt="" /></span></span></span></td> 
<td class="ms-globallinks">|</td> 
</tr></table>  
</td> 
                 </tr> 
                </table> 
              </td> 
              <td valign="middle" class="ms-globallinks">&nbsp;  
                <href="javascript:TopHelpButtonClick('NavBarHelpHome')" id="ctl00_PlaceHolderGlobalNavigation_TopHelpLink" AccessKey="6" title="Aide (nouvelle fenêtre)"><img src="/_layouts/images/helpicon.gif" align="absmiddle" border="0" alt="Aide (nouvelle fenêtre)" /></a>  
              </td> 
              </tr> 
            </table> 
            </td> 
           </tr> 
       </table> 
      </td></tr>  
    <tr> 
     <td class="ms-globalTitleArea">  
      <table width=100cellpadding=0 cellspacing=0 border=0>  
       <tr> 
        <td id="GlobalTitleAreaImage" class="ms-titleimagearea"><img id="ctl00_onetidHeadbnnr0" src="/_layouts/images/titlegraphic.gif" alt="" style="border-width:0px;" /></td>  
        <td class="ms-sitetitle" width=100%> 
            
          <h1 class="ms-sitetitle">  
           <id="ctl00_PlaceHolderSiteName_onetidProjectPropertyTitle" href="/">  
             RENAULT  
           </a> 
          </h1> 
            
        </td> 
        <td style="padding-top:8px;" valign=top>  
            
    <table TOPLEVEL border="0" cellpadding="0" cellspacing="0" width="100%">  
    <tr> 
        <td valign="top"><div WebPartID="00000000-0000-0000-0000-000000000000" HasPers="true" id="WebPartWPQ1" width="100%" OnlyForMePart="true" allowDelete="false" style="" ><div id="SRSB"<div> 
            <input name="ctl00$PlaceHolderSearchArea$ctl01$ctl00" type="hidden" id="ctl00_PlaceHolderSearchArea_ctl01_ctl00" value="http://serveur:55555" /><table class="ms-sbtable ms-sbtable-ex" border="0">  
                <tr class="ms-sbrow">  
                    <td class="ms-sbscopes ms-sbcell"><select name="ctl00$PlaceHolderSearchArea$ctl01$SBScopesDDL" id="ctl00_PlaceHolderSearchArea_ctl01_SBScopesDDL" title="Zone de recherche" class="ms-sbscopes">  
                        <option selected="selected" value="Ce site">Ce site&#160;: RENAULT</option> 
 
                    </select></td><td class="ms-sbcell"><input name="ctl00$PlaceHolderSearchArea$ctl01$S6AE27B38_InputKeywords" type="text" maxlength="200" id="ctl00_PlaceHolderSearchArea_ctl01_S6AE27B38_InputKeywords" accesskey="S" title="Entrez les mots à rechercher" class="ms-sbplain" alt="Entrez les mots à rechercher" onkeypress="javascript:return S6AE27B38_OSBEK(event);" style="width:170px;" /></td><td class="ms-sbgo ms-sbcell"><id="ctl00_PlaceHolderSearchArea_ctl01_S6AE27B38_go" title="Lancer la recherche" href="javascript:S6AE27B38_Submit()"><img title="Lancer la recherche" onmouseover="this.src='/_layouts/images/gosearch.gif'" onmouseout="this.src='/_layouts/images/gosearch.gif'" alt="Lancer la recherche" src="/_layouts/images/gosearch.gif" style="border-width:0px;" /></a></td><td class="ms-sbLastcell"></td> 
                </tr> 
            </table> 
        </div></div></div></td>  
    </tr> 
</table> 
 
        </td> 
       </tr> 
      </table> 
     </td> 
    </tr> 
    <TR> 
     <TD id="onetIdTopNavBarContainer" WIDTH=100class="ms-bannerContainer">  
          
          <table class="ms-bannerframe" border="0" cellspacing="0" cellpadding="0" width="100%">  
           <tr> 
            <td nowrap valign="middle"></td> 
            <td class=ms-banner width=99% nowrap ID="HBN100">  
                  
    <table id="zz1_TopNavigationMenu" class="ms-topNavContainer zz1_TopNavigationMenu_5 zz1_TopNavigationMenu_2" cellpadding="0" cellspacing="0" border="0">  
    <tr> 
        <td onmouseover="Menu_HoverRoot(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)" title="Collection de site racine (&quot;/&quot;)  
Modèle : Site vide" id="zz1_TopNavigationMenun0"><table class="ms-topnav zz1_TopNavigationMenu_4 ms-topnavselected zz1_TopNavigationMenu_10" cellpadding="0" cellspacing="0" border="0" width="100%">  
            <tr> 
                <td style="white-space:nowrap;"><class="zz1_TopNavigationMenu_1 ms-topnav zz1_TopNavigationMenu_3 ms-topnavselected zz1_TopNavigationMenu_9" href="/" accesskey="1" style="border-style:none;font-size:1em;">RENAULT</a></td>  
            </tr> 
        </table></td><td style="width:0px;"></td><td><table border="0" cellpadding="0" cellspacing="0" width="100%" class="zz1_TopNavigationMenu_5">  
            <tr> 
                <td style="width:0px;"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)" id="zz1_TopNavigationMenun1"><table class="ms-topnav zz1_TopNavigationMenu_4" cellpadding="0" cellspacing="0" border="0" width="100%">  
                    <tr> 
                        <td style="white-space:nowrap;"><class="zz1_TopNavigationMenu_1 ms-topnav zz1_TopNavigationMenu_3" href="/TeamSite1/default.aspx" style="border-style:none;font-size:1em;">TeamSite1</a></td>  
                    </tr> 
                </table></td><td style="width:0px;"></td> 
            </tr> 
        </table></td>  
    </tr> 
</table> 
      
                  
            </td> 
            <td class=ms-banner>&nbsp;&nbsp;</td> 
            <td valign=bottom align=right style="position:relative;bottom:0;left:0;">  
             <table cellpadding=0 cellspacing=0 border=0>  
              <tr> 
               <td> 
                <table height=100class="ms-siteaction" cellpadding=0 cellspacing=0>  
                 <tr> 
                       <td class="ms-siteactionsmenu" id="siteactiontd">  
                         
                          
                        <span style="display:none"><menu type='ServerMenu' id="zz8_SiteActionsMenuMain" largeIconMode="true"><ie:menuitem id="zz9_MenuItem_Create" type="option" iconSrc="/_layouts/images/Actionscreate.gif" onMenuClick="window.location = '/_layouts/create.aspx';" text="Cr&#233;er" description="Ajouter une nouvelle biblioth&#232;que, liste ou page Web &#224; ce site Web." menuGroupId="100"></ie:menuitem><ie:menuitem id="ctl00_PlaceHolderTopNavBar_SiteActionsMenuMain_ctl00_MenuItem_EditPage" type="option" iconSrc="/_layouts/images/ActionsEditPage.gif" onMenuClick="window.location = 'javascript:MSOLayout_ChangeLayoutMode(false);';" text="Modifier la page" description="Ajouter, supprimer ou mettre &#224; jour des composants WebPart dans cette page." menuGroupId="100"></ie:menuitem><ie:menuitem id="zz10_MenuItem_Settings" type="option" iconSrc="/_layouts/images/ActionsSettings.gif" onMenuClick="window.location = '/_layouts/settings.aspx';" text="Param&#232;tres du site" description="G&#233;rer les param&#232;tres du site sur ce site." menuGroupId="100"></ie:menuitem></menu></span><div><div><span title="Menu Ouvrir"><div  id="zz11_SiteActionsMenu_t" class="" onmouseover="MMU_PopMenuIfShowing(this);MMU_EcbTableMouseOverOut(this, true)" hoverActive="ms-siteactionsmenuhover" hoverInactive="" onclick=" MMU_Open(byid('zz8_SiteActionsMenuMain'), MMU_GetMenuFromClientId('zz11_SiteActionsMenu'),event,false, null, 0);" foa="MMU_GetMenuFromClientId('zz11_SiteActionsMenu')" oncontextmenu="this.click(); return false;" nowrap="nowrap"><id="zz11_SiteActionsMenu" accesskey="/" href="#" onclick="javascript:return false;" style="cursor:hand;white-space:nowrap;" onfocus="MMU_EcbLinkOnFocusBlur(byid('zz8_SiteActionsMenuMain'), this, true);" onkeydown="MMU_EcbLinkOnKeyDown(byid('zz8_SiteActionsMenuMain'), MMU_GetMenuFromClientId('zz11_SiteActionsMenu'), event);" onclick=" MMU_Open(byid('zz8_SiteActionsMenuMain'), MMU_GetMenuFromClientId('zz11_SiteActionsMenu'),event,false, null, 0);" oncontextmenu="this.click(); return false;" menuTokenValues="MENUCLIENTID=zz11_SiteActionsMenu,TEMPLATECLIENTID=zz8_SiteActionsMenuMain" serverclientid="zz11_SiteActionsMenu">Actions du site<img src="/_layouts/images/blank.gif" border="0" alt="Appuyez sur Maj+Entrée pour ouvrir le menu (nouvelle fenêtre)"/></a><img align="absbottom" src="/_layouts/images/whitearrow.gif" alt="" /></div></span></div></div> 
                    </td> 
                 </tr> 
                </table> 
               </td> 
              </tr> 
             </table> 
            </td> 
           </tr> 
          </table> 
          
     </TD> 
    </TR> 
      
          
 
      
      
      
      
    <TR height="100%"><TD><TABLE width="100%" height="100%" cellspacing="0" cellpadding="0">  
    <tr> 
     <td class="ms-titlearealeft" id="TitleAreaImageCell" valign="middle" nowrap><div style="height:100%" class="ms-titleareaframe"></div></td>  
     <td class="ms-titleareaframe" id="TitleAreaFrameClass">  
        
       <div class="ms-titleareaframe"><IMG SRC="/_layouts/images/blank.gif" width=1 height=100alt=""></div> 
        
     </td> 
    <td valign=top id="onetidPageTitleAreaFrame" class='ms-pagetitleareaframe' nowrap> 
      <table id="onetidPageTitleAreaTable" cellpadding=0 cellspacing=0 width=100border="0">  
       <tr> 
        <td valign="top" class="ms-titlearea">  
           
          <span id="ctl00_PlaceHolderTitleBreadcrumb_ContentMap"><span><a class="ms-sitemapdirectional" href="/">RENAULT</a></span><span> &gt; </span><span><class="ms-sitemapdirectional" href="/DocLib/Forms/AllItems.aspx">DocLib</a></span><span> &gt; </span><span class="ms-sitemapdirectional">Full</span></span> &nbsp;  
           
        </td> 
       </tr> 
       <tr> 
        <td height=100valign=top ID=onetidPageTitle class="ms-pagetitle">  
          <h2 class="ms-pagetitle">  
              
    <table width="100%" cellpadding="0" cellspacing="0" border="0">  
    <tr> 
        <td id="MSOZoneCell_WebPartWPQ2" vAlign="top"><table TOPLEVEL border="0" cellpadding="0" cellspacing="0" width="100%">  
            <tr> 
                <td valign="top"><div WebPartID="e29dcf60-1f1f-420a-b17c-174fd8eaadf7" HasPers="false" id="WebPartWPQ2" width="100%" allowMinimize="false" allowRemove="false" allowDelete="false" style="" ><div><table id="MSOWebPart_Header" border="0" cellpadding="0" cellspacing="0" width="100%">  
                    <tr> 
                        <td style="width:100%;"><table border="0" cellpadding="0" cellspacing="0">  
                            <tr> 
                                <td vAlign="middle" align="left" style="padding-left:5;"><img src="/_layouts/images/wpicon.gif" align="absmiddle" alt="Image de la barre de titre de la page de composants WebPart" title="Icône" /></td><td title="" style="padding-left:5px;"><img height="3px" src="/_layouts/images/blank.gif" alt="" /><br><span class="ms-pagetitle">Full</span><br><img height="3px" src="/_layouts/images/blank.gif" alt="" /><br></td> 
                            </tr> 
                        </table></td>  
                    </tr><tr>  
                        <td colspan="3" class="ms-titlearealine"><img height="2px" align="left" src="/_layouts/images/blank.gif" alt="" /></td>  
                    </tr> 
                </table></div></div></td>  
            </tr> 
        </table></td>  
    </tr> 
</table> 
 
          </h2> 
        </td> 
       </tr> 
      </table> 
     </td> 
     <td class="ms-titlearearight">  
          
          
<div class="ms-titleareaframe" style='height:100%'><IMG SRC="/_layouts/images/blank.gif" width=1 height=1 alt=""></div> 
</td> 
    </tr> 
 
    <TR> 
      <TD class="ms-leftareacell" valign=top height=100id="LeftNavigationAreaCell">  
       <table class=ms-nav width=100height=100cellpadding=0 cellspacing=0>  
        <tr> 
         <td> 
          <TABLE height="100%" class=ms-navframe CELLPADDING=0 CELLSPACING=0 border="0">  
           <tr valign="top">  
            <td width="4px"><IMG SRC="/_layouts/images/blank.gif" width=4 height=1 alt=""></td> 
            <td valign="top" width="100%">  
                
                
                
                
                
 
            </td> 
           </tr> 
           <tr><td colspan=2></td></tr>  
          </TABLE> 
         </td> 
         <td></td>  
        </tr> 
       </table> 
      </TD> 
      <td> 
<div class="ms-pagemargin"><IMG SRC="/_layouts/images/blank.gif" width=10 height=1 alt=""></div> 
</td> 
      <td class='ms-bodyareacell' valign="top">  
        <PlaceHolder id="ctl00_MSO_ContentDiv">  
        <table id="MSO_ContentTable" width=100height="100%" border="0" cellspacing="0" cellpadding="0" class="ms-propertysheet">  
          <tr> 
             <td class='ms-bodyareaframe' valign="top" height="100%">  
               <name="mainContent"></A> 
                  
    Collection de site racine (&quot;/&quot;) <br>Modèle : Site vide  
 
                  
        <table cellpadding="4" cellspacing="0" border="0" width="100%">  
                <tr> 
                    <td id="_invisibleIfEmpty" name="_invisibleIfEmpty" valign="top" width="100%"<table width="100%" cellpadding="0" cellspacing="0" border="0">  
    <tr> 
        <td id="MSOZoneCell_WebPartWPQ3" vAlign="top"><table TOPLEVEL border="0" cellpadding="0" cellspacing="0" width="100%">  
            <tr> 
                <td><table border="0" cellpadding="0" cellspacing="0" width="100%">  
                    <tr class="ms-WPHeader">  
                        <td title="Telerik RadEditor for MOSS - Cross-browser rich content editor from Telerik" id="WebPartTitleWPQ3" style="width:100%;"><h3 class="ms-standardheader ms-WPTitle"><nobr><span>Telerik RadEditor for MOSS</span><span id="WebPartCaptionWPQ3"></span></nobr></h3></td><td align="right" style="padding-right:2px"><div style="cursor: pointer" class="ms-HoverCellInActive" onmouseout="this.className='ms-HoverCellInActive'" onmouseover="this.className='ms-HoverCellActiveDark'"><nobr><a onclick="MSOWebPartPage_OpenMenu(MSOMenu_WebPartMenu, this, WebPartWPQ3,&#39;False&#39;);return false;" id="WebPartWPQ3_MenuLink" onkeydown="MSOMenu_KeyboardClick(WebPartWPQ3_MenuLink, 13, 40)" href="#"><img src="/_layouts/images/Menu1.gif" border="0" align="absmiddle" title="Telerik RadEditor for MOSS - Menu du composant WebPart" alt="Telerik RadEditor for MOSS - Menu du composant WebPart" style="padding-left:2px;" /></a></nobr></div></td> 
                    </tr> 
                </table></td>  
            </tr><tr>  
                <td class="" valign="top"><div WebPartID="c407b74b-92e2-4311-892b-f6ae2342b0f0" HasPers="false" id="WebPartWPQ3" width="100%" class="ms-WPBody" allowDelete="false" style="" ><span id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_EditorScriptManager"><script type="text/javascript">  
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('ctl00$m$g_c407b74b_92e2_4311_892b_f6ae2342b0f0$TelerikScriptManager', document.getElementById('aspnetForm'));
Sys.WebForms.PageRequestManager.getInstance()._updateControls([], [], [], 90);
                //]]> 
</script> 
</span><strong>TestTestTest...</strong></div></td> 
            </tr> 
        </table></td>  
    </tr> 
</table> </td> 
                </tr> 
                <script language="javascript">if(typeof(MSOLayout_MakeInvisibleIfEmpty) == "function") {MSOLayout_MakeInvisibleIfEmpty();}</script> 
        </table> 
 
             </td> 
          </tr> 
        </table> 
        </PlaceHolder> 
      </td> 
      <td class="ms-rightareacell">  
    <div height=100class="ms-pagemargin"><IMG SRC="/_layouts/images/blank.gif" width=10 height=1 alt=""></div> 
</td> 
    </TR> 
<tr> 
    <td class="ms-pagebottommarginleft"><IMG SRC="/_layouts/images/blank.gif" width=1 height=10 alt=""></td> 
    <td class="ms-pagebottommargin"><IMG SRC="/_layouts/images/blank.gif" width=1 height=10 alt=""></td> 
    <td class="ms-bodyareapagemargin"><IMG SRC="/_layouts/images/blank.gif" width=1 height=10 alt=""></td> 
    <td class="ms-pagebottommarginright"><IMG SRC="/_layouts/images/blank.gif" width=1 height=10 alt=""></td> 
</tr> 
    </TABLE></TD></TR> 
  </TABLE> 
    
        
    
   <input type="text" name="__spDummyText1" style="display:none;" size=1/>  
   <input type="text" name="__spDummyText2" style="display:none;" size=1/>  
    
<div> 
 
    <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWBAKK1dOrCwKpn5bCCwKykbewCwLg8Za2BQFPPCcYiPbhihsJriQkyVUkP6lp" /> 
</div> 
 
<script type="text/javascript">  
//<![CDATA[
WebForm_InitCallback();var __wpmExportWarning='Cette page WebPart a été personnalisée. Par conséquent, une ou plusieurs propriétés peuvent contenir des informations confidentielles. Assurez-vous que les propriétés comportent des informations jugées fiables pour la lecture par d\'autres personnes. Après avoir exporté ce WebPart, affichez les propriétés dans le fichier de description du WebPart (.WebPart) à l\'aide d\'un éditeur de texte comme le Bloc-notes Microsoft.';var __wpmCloseProviderWarning='Vous êtes sur le point de fermer ce WebPart. Il fournit actuellement des données à d\'autres WebParts et ces connexions seront supprimées s\'il est fermé. Pour fermer ce WebPart, cliquez sur OK. Pour le conserver, cliquez sur Annuler.';var __wpmDeleteWarning='Vous êtes sur le point de supprimer définitivement ce WebPart. Êtes-vous sûr de vouloir continuer ? Pour supprimer ce WebPart, cliquez sur OK. Pour le conserver, cliquez sur Annuler.';//]]> 
</script> 
<span><menu id="MSOMenu_SettingsMenu" class="ms-SrvMenuUI">  
    <ie:menuitem id="MSOMenu_AddWebParts" type="submenu">  
        <ie:menuitem type="label">  
            Ajouter des composants WebPart  
        </ie:menuitem><ie:menuitem id="MSOMenu_BrowseGallery" onMenuClick="javascript:MSOTlPn_ShowToolPane2('Catalog');" type="option">  
            Parcourir  
        </ie:menuitem><ie:menuitem id="MSOMenu_SearchGallery" onMenuClick="javascript:MSOTlPn_ShowToolPane2('GallerySearch');" type="option">  
            Rechercher  
        </ie:menuitem><ie:menuitem id="MSOMenu_ImportGallery" onMenuClick="javascript:MSOTlPn_ShowToolPane2('Import');" type="option">  
            Importer  
        </ie:menuitem> 
    </ie:menuitem><ie:menuitem type="separator" /><ie:menuitem id="MSOMenu_LayoutMenuOption" onMenuClick="MSOLayout_ToggleLayoutMode()" type="option">  
        Modifier cette page  
    </ie:menuitem><ie:menuitem type="separator" /><ie:menuitem id="MSOMenu_ModifyWebParts" type="submenu">  
        <ie:menuitem type="label">  
            Modifier des composants WebPart partagés  
        </ie:menuitem><ie:menuitem onMenuClick="javascript:MSOTlPn_ShowToolPane2('Edit','g_e29dcf60_1f1f_420a_b17c_174fd8eaadf7');" type="option">  
            Barre de titre de la page de composants ...  
        </ie:menuitem><ie:menuitem onMenuClick="javascript:MSOTlPn_ShowToolPane2('Edit','g_c407b74b_92e2_4311_892b_f6ae2342b0f0');" type="option">  
            Telerik RadEditor for MOSS  
        </ie:menuitem> 
    </ie:menuitem><ie:menuitem type="separator" /><ie:menuitem id="MSOMenu_ChangesAllUsers" iconAltText="Affichage partagé" iconSrc="/_layouts/images/AllUsrCk.gif" onMenuClick="return;" title="Basculer en mode Affichage partagé. Les modifications s&#39;appliqueront à tous les utilisateurs. (sélectionné)" type="option">  
        Affichage partagé  
    </ie:menuitem><ie:menuitem id="MSOMenu_ChangesOnlyMe" iconAltText="Affichage personnel" iconSrc="/_layouts/images/PerUsr.gif" onMenuClick="javascript:MSOMode_SetMode(false)" title="Basculer en mode Affichage personnel. Les modifications ne s&#39;appliqueront qu&#39;à moi." type="option">  
        Affichage personnel  
    </ie:menuitem> 
</menu></span><script type="text/javascript" language="JavaScript" defer> 
<!--  
function S6AE27B38_Submit() {GoSearch(null,'ctl00_PlaceHolderSearchArea_ctl01_S6AE27B38_InputKeywords',null,true,true,'ctl00_PlaceHolderSearchArea_ctl01_SBScopesDDL','ctl00_PlaceHolderSearchArea_ctl01_ctl00',null,null,'http:\u002f\u002fserveur:55555\u002f_layouts\u002fOSSSearchResults.aspx', 'Ce site','Cette liste', 'Ce dossier', 'Sites associés', '\u002f_layouts\u002fOSSSearchResults.aspx');}  
// --> 
</script><script type="text/javascript" language="JavaScript" > 
// append an onload event handler  
var S6AE27B38__onloaddocument.body.onload;  
if(typeof document.body.onload == 'function')  
{  
 document.body.onload = function()  
 {  
S6AE27B38__onload();          
  document.getElementById('ctl00_PlaceHolderSearchArea_ctl01_S6AE27B38_InputKeywords').name = 'InputKeywords';  
 }  
}  
else  
{  
 document.body.onload = function()  
 {  
  eval(S6AE27B38__onload);          
  document.getElementById('ctl00_PlaceHolderSearchArea_ctl01_S6AE27B38_InputKeywords').name = 'InputKeywords';  
 }  
}  
 
function S6AE27B38_OSBEK(event1) {   
var kCode = String.fromCharCode(event1.keyCode);  
if(kCode == "\n" || kCode == "\r")  
{     
S6AE27B38_Submit();  
}  
}  
// --> 
</script> 
<script type="text/javascript">  
//<![CDATA[
var zz1_TopNavigationMenu_Data = new Object();
zz1_TopNavigationMenu_Data.disappearAfter = 500;
zz1_TopNavigationMenu_Data.horizontalOffset = 0;
zz1_TopNavigationMenu_Data.verticalOffset = 0;
zz1_TopNavigationMenu_Data.hoverClass = 'zz1_TopNavigationMenu_16 ms-topNavFlyOutsHover';
zz1_TopNavigationMenu_Data.hoverHyperLinkClass = 'zz1_TopNavigationMenu_15 ms-topNavFlyOutsHover';
zz1_TopNavigationMenu_Data.staticHoverClass = 'zz1_TopNavigationMenu_14 ms-topNavHover';
zz1_TopNavigationMenu_Data.staticHoverHyperLinkClass = 'zz1_TopNavigationMenu_13 ms-topNavHover';
if (typeof(overrideMenu_HoverStatic) == 'function' && typeof(Menu_HoverStatic) == 'function')
{
_spBodyOnLoadFunctionNames.push('enableFlyoutsAfterDelay');
Menu_HoverStatic = overrideMenu_HoverStatic;
}
var flyoutsAllowed = false;
function enableFlyoutsAfterDelay()
{
setTimeout('flyoutsAllowed = true;', 50);
}
function overrideMenu_HoverStatic(item)
{
if (!flyoutsAllowed || (document.readyState != null && document.readyState != 'complete'))
{
setTimeout(delayMenu_HoverStatic(item), 50);
}
else
{
// this code is the default ASP.NET implementation of Menu_HoverStatic
var node = Menu_HoverRoot(item);
var data = Menu_GetData(item);
if (!data) return;
__disappearAfter = data.disappearAfter;
Menu_Expand(node, data.horizontalOffset, data.verticalOffset);
}
}
function delayMenu_HoverStatic(item)
{
return (function()
{
overrideMenu_HoverStatic(item);
});
}
//]]> 
</script> 
<SCRIPT LANGUAGE='JavaScript' > 
<!--  
WPSC.Init(document);  
var varPartWPQ2 = WPSC.WebPartPage.Parts.Register('WPQ2','e29dcf60-1f1f-420a-b17c-174fd8eaadf7',document.all.item('WebPartWPQ2'));  
var varPartWPQ3 = WPSC.WebPartPage.Parts.Register('WPQ3','c407b74b-92e2-4311-892b-f6ae2342b0f0',document.all.item('WebPartWPQ3'));  
var varPartWPQ1 = WPSC.WebPartPage.Parts.Register('WPQ1','00000000-0000-0000-0000-000000000000',document.all.item('WebPartWPQ1'));  
WPSC.WebPartPage.WebURL = 'http:\u002f\u002fserveur:55555';  
WPSC.WebPartPage.WebServerRelativeURL = '\u002f';  
 
//--> 
</SCRIPT><span style="display:none;"><menu id="MSOMenu_WebPartMenu" class="ms-SrvMenuUI">  
    <ie:menuitem id="MSOMenu_Minimize" onMenuClick="javascript:MSOLayout_MinimizeRestore(MenuWebPart)" type="option">  
        Réduire  
    </ie:menuitem><ie:menuitem id="MSOMenu_Restore" onMenuClick="javascript:MSOLayout_MinimizeRestore(MenuWebPart)" type="option">  
        Restaurer  
    </ie:menuitem><ie:menuitem id="MSOMenu_Close" onMenuClick="javascript:MSOLayout_RemoveWebPart(MenuWebPart)" type="option">  
        Fermer  
    </ie:menuitem><ie:menuitem id="MSOMenu_Delete" iconSrc="/_layouts/images/DelItem.gif" onMenuClick="if(confirm(&#39;Vous \u00EAtes sur le point de supprimer d\u00E9finitivement ce composant WebPart. \u00CAtes-vous s\u00FBr de vouloir effectuer cette suppression\u00A0?\\nPour supprimer ce composant WebPart, cliquez sur OK. Pour le conserver, cliquez sur Annuler.&#39;)) {MSOWebPartPage_partDeleted = MenuWebPartID;MSOWebPartPage_MenuDoPostBack(&#39;ctl00$m&#39;, MenuWebPartID + &#39;;MSOMenu_Delete&#39;);}" type="option">  
        Supprimer  
    </ie:menuitem><ie:menuitem type="separator" /><ie:menuitem title="Modifie les propriétés de ce composant WebPart partagé. Ces modifications s&#39;appliqueront à tous les utilisateurs." id="MSOMenu_Edit" iconSrc="/_layouts/images/EditItem.gif" onMenuClick="javascript:MSOTlPn_ShowToolPane2Wrapper(&#39;Edit&#39;, 16, MenuWebPartID)" type="option">  
        Modifier le composant WebPart partagé  
    </ie:menuitem><ie:menuitem id="MSOMenu_Connections" onMenuClick="" type="option">  
        Connexions  
    </ie:menuitem><ie:menuitem type="separator" /><ie:menuitem id="MSOMenu_Export" onMenuClick="javascript:MSOWebPartPage_ExportCheckWarning(&#39;\u002f_vti_bin\u002fexportwp.aspx?pageurl=http\u00253A\u00252F\u00252Fserveur\u00253A55555\u00252FDocLib\u00252FFull\u00252Easpx\u0026guidstring=&#39;+ escape(MenuWebPartID), MenuWebPart.getAttribute(&#39;HasPers&#39;) == &#39;true&#39;)" type="option">  
        Exporter...  
    </ie:menuitem><ie:menuitem id="MSOMenu_Help" iconSrc="/_layouts/images/HelpIcon.gif" onMenuClick="MSOWebPartPage_SetNewWindowLocation(MenuWebPart.getAttribute(&#39;helpLink&#39;), MenuWebPart.getAttribute(&#39;helpMode&#39;))" type="option" style="display:none">  
        Aide  
    </ie:menuitem> 
</menu></span>  
<script type="text/javascript">  
//<![CDATA[
Sys.Application.initialize();
//]]> 
</script> 
</form> 
    
      
      
  <style type="text/css">  
    Div.ms-titleareaframe {  
    height: 100%;  
    }  
    .ms-pagetitleareaframe table {  
    background: none;  
    }  
  </style> 
 
</BODY> 
</HTML> 



Here is the "ConfigFile.xml" source:
<?xml version="1.0" encoding="utf-8" ?> 
<!-- ==============================================================================================  
    Config File valid structure:  
    <configuration> 
    <property>...</property> 
    ...  
        <property> 
            <item>...</item> 
            <item>...</item> 
            ...  
        </property> 
        ...  
    </configuration> 
=============================================================================================== --> 
<configuration> 
    <property name="ToolbarMode">ShowOnFocus</property> 
    <property name="ToolsWidth">680px</property> 
 
  <property name="ExternalDialogsPath">/_wpresources/RadEditorSharePoint/5.6.0.0__1f131a624888eeed/Resources/Dialogs</property> 
 
</configuration> 


Here is the "ListConfigFile.xml" source:
<?xml version="1.0" encoding="utf-8" ?> 
<!-- ==============================================================================================  
    Config File valid structure:  
    <configuration> 
    <property>...</property> 
    ...  
        <property> 
            <item>...</item> 
            <item>...</item> 
            ...  
        </property> 
        ...  
    </configuration> 
=============================================================================================== --> 
<configuration> 
    <property name="EditModes">Design,Html</property> 
    <property name="Height">240px</property> 
    <property name="Width">500px</property>    
</configuration> 


Regards,

Jeff
0
Stanimir
Telerik team
answered on 05 Jan 2010, 10:29 AM
Hello Jean-François,
Your config files look OK. However You provided me with the HTML code of the page when you are in presentation mode. Actually I need the code when you are in Editing mode. In this page you should see the following code.
<script type='text/javascript' src='/_wpresources/RadEditorSharePoint/5.6.0.0__1f131a624888eeed/Resources/MOSSEditorTools.js'></script>
Again, you need to be sure that the correct MOSSEditorTools.js file is loaded. You can examine the request for this file by using a debugging tool such as fiddler (view the attached image).

Best wishes,
Stanimir
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Jean-François Robe
Top achievements
Rank 1
answered on 05 Jan 2010, 04:54 PM
Hello Stanimir,

OK, here is the HTML code of the page when it's in Editing mode.
In this code I do find the code sample you've stated, and the path is correct.
<HTML xmlns:o="urn:schemas-microsoft-com:office:office" dir="ltr">  
<HEAD><meta name="GENERATOR" content="Microsoft SharePoint" /><meta name="progid" content="SharePoint.WebPartPage.Document" /><meta HTTP-EQUIV="Content-Type" content="text/html; charset=utf-8" /><meta HTTP-EQUIV="Expires" content="0" /><title>  
      
    DocLib - Full  
 
</title><link rel="stylesheet" type="text/css" href="/_wpresources/RadEditorSharePoint/5.6.0.0__1f131a624888eeed/Resources/ToolImages/RadEditorStyles_Default.css"/>  
<link rel="stylesheet" type="text/css" href="/_layouts/1036/styles/core.css?rev=kp6dZ1ACnhmeDvEPafNX3w%3D%3D"/>  
<script type="text/javascript" language="javascript" src="/_layouts/1036/init.js?rev=IVERnxc9Kie1VChgRdTVng%3D%3D"></script> 
<script type="text/javascript" language="javascript" src="/_layouts/1036/core.js?rev=VKbIHucTq6Mhv44IfxtMTg%3D%3D"></script> 
<script type="text/javascript" language="javascript" src="/_layouts/portal.js?rev=cRI8b5r5N%2BkLhIuWR03ICg%3D%3D"></script> 
<script type="text/javascript" language="javascript" src="/_layouts/1036/ie55up.js?rev=Ni7%2Fj2ZV%2FzCvd09XYSSWvA%3D%3D"></script> 
<script type="text/javascript" language="javascript" src="/_layouts/1036/search.js?rev=LkcliuXuBtpyM1BbXQm3gw%3D%3D"></script> 
<script type="text/javascript" language="javascript" src="/_layouts/1036/AssetPickers.js?rev=r6Wo8Um1zuHNl00AdRQUxQ%3D%3D"></script> 
<script type="text/javascript" language="javascript" src="/_layouts/1036/HtmlEditor.js?rev=ncMIOWY39qgH8Td8E%2FzSIg%3D%3D"></script> 
<link type="text/xml" rel="alternate" href="/_vti_bin/spsdisco.aspx" /> 
    <META Name="GENERATOR" Content="Microsoft SharePoint">  
    <META Name="ProgId" Content="SharePoint.WebPartPage.Document">  
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">  
    <META Name="CollaborationServer" Content="SharePoint Team Web Site">  
    <script> 
    var navBarHelpOverrideKey = "wssmain";  
    </script> 
<link href="/WebResource.axd?d=9Jvx3jSkiGs80OVt5c3M3N4_E_DVuaDLitIgu2Ztb-ZVWk4V0hAe9X1PVA-PPMlRX3AnqotBjxWLqABKtq6-HftzgFjI1xF_b36BTTjF2U-o26Ldeo3oxDt6CP07qUfP0&amp;t=633961513286875664" type="text/css" rel="stylesheet" class="Telerik_stylesheet" /><link href="/WebResource.axd?d=9Jvx3jSkiGs80OVt5c3M3N4_E_DVuaDLitIgu2Ztb-ZVWk4V0hAe9X1PVA-PPMlRX3AnqotBjxWLqABKtq6-HUE2ZuXqpK_u9kQcWyF8dJMLY46VH2Po0UZp7_yw4t_-e617KBzgAsQ6jEsVjqrHTw2&amp;t=633961513286875664" type="text/css" rel="stylesheet" class="Telerik_stylesheet" /><link href="/WebResource.axd?d=9Jvx3jSkiGs80OVt5c3M3N4_E_DVuaDLitIgu2Ztb-ZVWk4V0hAe9X1PVA-PPMlRX3AnqotBjxWLqABKtq6-HctdafGLPSGkbRa_jOf5qiIJfS2Ml8SL4JdL9RXenRxf0&amp;t=633961513286875664" type="text/css" rel="stylesheet" class="Telerik_stylesheet" /><link href="/WebResource.axd?d=9Jvx3jSkiGs80OVt5c3M3N4_E_DVuaDLitIgu2Ztb-ZVWk4V0hAe9X1PVA-PPMlRX3AnqotBjxWLqABKtq6-HelQMQtqVHtdp_WQTMpu-Gro9T079uZimPibVF7MFw6lWmCNrr4kn5Vf25m9XHTY6Q2&amp;t=633961513286875664" type="text/css" rel="stylesheet" class="Telerik_stylesheet" /><style type="text/css">  
    .zz1_TopNavigationMenu_0 { background-color:white;visibility:hidden;display:none;position:absolute;left:0px;top:0px; }  
    .zz1_TopNavigationMenu_1 { text-decoration:none; }  
    .zz1_TopNavigationMenu_2 {  }  
    .zz1_TopNavigationMenu_3 { border-style:none; }  
    .zz1_TopNavigationMenu_4 {  }  
    .zz1_TopNavigationMenu_5 {  }  
    .zz1_TopNavigationMenu_6 { border-style:none; }  
    .zz1_TopNavigationMenu_7 {  }  
    .zz1_TopNavigationMenu_8 { background-color:#F2F3F4;border-color:#A7B4CE;border-width:1px;border-style:solid; }  
    .zz1_TopNavigationMenu_9 { border-style:none; }  
    .zz1_TopNavigationMenu_10 {  }  
    .zz1_TopNavigationMenu_11 { border-style:none; }  
    .zz1_TopNavigationMenu_12 {  }  
    .zz1_TopNavigationMenu_13 { border-style:none; }  
    .zz1_TopNavigationMenu_14 {  }  
    .zz1_TopNavigationMenu_15 { border-style:none; }  
    .zz1_TopNavigationMenu_16 { background-color:#CBE3F0; }  
    .ctl00_PlaceHolderPageTitleInTitleArea_TitleBar_0 { border-color:Black;border-width:1px;border-style:Solid; }  
    .ctl00_PlaceHolderMain_FullPage_0 { border-color:Black;border-width:1px;border-style:Solid; }  
 
</style></HEAD>  
<BODY scroll="yes" onload="javascript:if (typeof(_spBodyOnLoadWrapper) != 'undefined') _spBodyOnLoadWrapper();">  
  <form name="aspnetForm" method="post" action="Full.aspx" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm">  
<div> 
<input type="hidden" name="MSO_PageHashCode" id="MSO_PageHashCode" value="112120927623" /> 
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" /> 
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" /> 
<input type="hidden" name="__REQUESTDIGEST" id="__REQUESTDIGEST" value="0x4253EB45854EF37D69AEBB999BAEC07D7A78B473678DA28AC4039F871581FFFC2DCDA13F34C3C5C6CB4B0AFC4DD055B38382DD0870A7BB6045C18A09CE2B4811,05 Jan 2010 15:27:52 -0000" /> 
<input type="hidden" name="MSOWebPartPage_PostbackSource" id="MSOWebPartPage_PostbackSource" value="" /> 
<input type="hidden" name="MSOSPWebPartManager_DisplayModeName" id="MSOSPWebPartManager_DisplayModeName" value="Edit" /> 
<input type="hidden" name="MSOWebPartPage_Shared" id="MSOWebPartPage_Shared" value="" /> 
<input type="hidden" name="MSOLayout_LayoutChanges" id="MSOLayout_LayoutChanges" value="" /> 
<input type="hidden" name="MSOLayout_InDesignMode" id="MSOLayout_InDesignMode" value="" /> 
<input type="hidden" name="MSOSPWebPartManager_OldDisplayModeName" id="MSOSPWebPartManager_OldDisplayModeName" value="Edit" /> 
<input type="hidden" name="MSOSPWebPartManager_StartWebPartEditingName" id="MSOSPWebPartManager_StartWebPartEditingName" value="false" /> 
<input type="hidden" name="MSOTlPn_SelectedWpId" id="MSOTlPn_SelectedWpId" value="g_c407b74b_92e2_4311_892b_f6ae2342b0f0" /> 
<input type="hidden" name="MSOTlPn_View" id="MSOTlPn_View" value="1" /> 
<input type="hidden" name="MSOTlPn_ShowSettings" id="MSOTlPn_ShowSettings" value="False" /> 
<input type="hidden" name="MSOGallery_SelectedLibrary" id="MSOGallery_SelectedLibrary" value="" /> 
<input type="hidden" name="MSOGallery_FilterString" id="MSOGallery_FilterString" value="" /> 
<input type="hidden" name="MSOTlPn_Maximized" id="MSOTlPn_Maximized" value="False" /> 
<input type="hidden" name="MSOTlPn_Button" id="MSOTlPn_Button" value="none" /> 
<input type="hidden" name="MSOSPWebPartManager_OldSelectedStorageKeyName" id="MSOSPWebPartManager_OldSelectedStorageKeyName" value="{c407b74b-92e2-4311-892b-f6ae2342b0f0}" /> 
<input type="hidden" name="PropertyMode" id="PropertyMode" value="customize" /> 
<input type="hidden" name="MSOWebPartPage_MaintainPropSheetValues" id="MSOWebPartPage_MaintainPropSheetValues" value="true" /> 
<input type="hidden" name="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AppearanceCategory_STATEFIELD" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AppearanceCategory_STATEFIELD" value="0" /> 
<input type="hidden" name="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_LayoutCategory_STATEFIELD" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_LayoutCategory_STATEFIELD" value="0" /> 
<input type="hidden" name="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AdvancedCategory_STATEFIELD" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AdvancedCategory_STATEFIELD" value="0" /> 
<input type="hidden" name="__spPickerHasReturnValue" id="__spPickerHasReturnValue" value="" /> 
<input type="hidden" name="__spPickerReturnValueHolder" id="__spPickerReturnValueHolder" value="" /> 
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwULLTE3Mzc3MTk1OTkPZBYCZg9kFgJmD2QWAgIDD2QWCgIDD2QWBAIND2QWAmYPZBYGZg8WAh4EVGV4dAUmPHNwYW4gc3R5bGU9J3BhZGRpbmctbGVmdDozcHgnPjwvc3Bhbj5kAgIPDxYEHwAFCE1vbiBzaXRlHgtOYXZpZ2F0ZVVybAU9aHR0cDovL3BvcnRhaWwuZm9ybWF0aW9uLmxvY2FsOjgwL015U2l0ZS9fbGF5b3V0cy9NeVNpdGUuYXNweGRkAgQPFgIfAAU5PHNwYW4gc3R5bGU9J3BhZGRpbmctbGVmdDo0cHg7cGFkZGluZy1yaWdodDozcHgnPnw8L3NwYW4+ZAIPD2QWAmYPZBYCAgMPFgIfAAUBfGQCCQ9kFgICAQ9kFgJmD2QWAgIBDw9kFgIeBWNsYXNzBRhtcy1zYnRhYmxlIG1zLXNidGFibGUtZXhkAgsPZBYCAgMPZBYCZg9kFgICAw8PFgIeCUFjY2Vzc0tleQUBL2RkAhcPZBYCAgEPZBYCZg8PFgIeB1Zpc2libGVoZGQCLw9kFgICBA9kFgICAQ9kFgJmDw8WAh8EZ2RkGAIFHl9fQ29udHJvbHNSZXF1aXJlUG9zdEJhY2tLZXlfXxYRBVpjdGwwMCRNU09UbFBuX0VkaXRvclpvbmUkRWRpdDBnX2M0MDdiNzRiXzkyZTJfNDMxMV84OTJiX2Y2YWUyMzQyYjBmMCRjdGwwMyRjdGwwMSRZZXNPcHRpb24FWmN0bDAwJE1TT1RsUG5fRWRpdG9yWm9uZSRFZGl0MGdfYzQwN2I3NGJfOTJlMl80MzExXzg5MmJfZjZhZTIzNDJiMGYwJGN0bDAzJGN0bDAxJFllc09wdGlvbgVZY3RsMDAkTVNPVGxQbl9FZGl0b3Jab25lJEVkaXQwZ19jNDA3Yjc0Yl85MmUyXzQzMTFfODkyYl9mNmFlMjM0MmIwZjAkY3RsMDMkY3RsMDEkTm9PcHRpb24FWmN0bDAwJE1TT1RsUG5fRWRpdG9yWm9uZSRFZGl0MGdfYzQwN2I3NGJfOTJlMl80MzExXzg5MmJfZjZhZTIzNDJiMGYwJGN0bDAzJGN0bDAyJFllc09wdGlvbgVaY3RsMDAkTVNPVGxQbl9FZGl0b3Jab25lJEVkaXQwZ19jNDA3Yjc0Yl85MmUyXzQzMTFfODkyYl9mNmFlMjM0MmIwZjAkY3RsMDMkY3RsMDIkWWVzT3B0aW9uBVljdGwwMCRNU09UbFBuX0VkaXRvclpvbmUkRWRpdDBnX2M0MDdiNzRiXzkyZTJfNDMxMV84OTJiX2Y2YWUyMzQyYjBmMCRjdGwwMyRjdGwwMiROb09wdGlvbgVYY3RsMDAkTVNPVGxQbl9FZGl0b3Jab25lJEVkaXQwZ19jNDA3Yjc0Yl85MmUyXzQzMTFfODkyYl9mNmFlMjM0MmIwZjAkY3RsMDckSGlkZGVuX0VESVRPUgVfY3RsMDAkTVNPVGxQbl9FZGl0b3Jab25lJEVkaXQwZ19jNDA3Yjc0Yl85MmUyXzQzMTFfODkyYl9mNmFlMjM0MmIwZjAkY3RsMTEkQWxsb3dNaW5pbWl6ZV9FRElUT1IFXGN0bDAwJE1TT1RsUG5fRWRpdG9yWm9uZSRFZGl0MGdfYzQwN2I3NGJfOTJlMl80MzExXzg5MmJfZjZhZTIzNDJiMGYwJGN0bDExJEFsbG93Q2xvc2VfRURJVE9SBVtjdGwwMCRNU09UbFBuX0VkaXRvclpvbmUkRWRpdDBnX2M0MDdiNzRiXzkyZTJfNDMxMV84OTJiX2Y2YWUyMzQyYjBmMCRjdGwxMSRBbGxvd0hpZGVfRURJVE9SBWFjdGwwMCRNU09UbFBuX0VkaXRvclpvbmUkRWRpdDBnX2M0MDdiNzRiXzkyZTJfNDMxMV84OTJiX2Y2YWUyMzQyYjBmMCRjdGwxMSRBbGxvd1pvbmVDaGFuZ2VfRURJVE9SBV5jdGwwMCRNU09UbFBuX0VkaXRvclpvbmUkRWRpdDBnX2M0MDdiNzRiXzkyZTJfNDMxMV84OTJiX2Y2YWUyMzQyYjBmMCRjdGwxMSRBbGxvd0Nvbm5lY3RfRURJVE9SBVtjdGwwMCRNU09UbFBuX0VkaXRvclpvbmUkRWRpdDBnX2M0MDdiNzRiXzkyZTJfNDMxMV84OTJiX2Y2YWUyMzQyYjBmMCRjdGwxMSRBbGxvd0VkaXRfRURJVE9SBWVjdGwwMCRNU09UbFBuX0VkaXRvclpvbmUkRWRpdDBnX2M0MDdiNzRiXzkyZTJfNDMxMV84OTJiX2Y2YWUyMzQyYjBmMCRjdGwxMSRBdXRob3JpemF0aW9uRmlsdGVyX0VESVRPUgU0Y3RsMDAkbSRnX2M0MDdiNzRiXzkyZTJfNDMxMV84OTJiX2Y2YWUyMzQyYjBmMCRjdGwwMAVBY3RsMDAkbSRnX2M0MDdiNzRiXzkyZTJfNDMxMV84OTJiX2Y2YWUyMzQyYjBmMCRjdGwwMCRkaWFsb2dPcGVuZXIFSGN0bDAwJG0kZ19jNDA3Yjc0Yl85MmUyXzQzMTFfODkyYl9mNmFlMjM0MmIwZjAkY3RsMDAkZGlhbG9nT3BlbmVyJFdpbmRvdwVFY3RsMDAkUGxhY2VIb2xkZXJUb3BOYXZCYXIkUGxhY2VIb2xkZXJIb3Jpem9udGFsTmF2JFRvcE5hdmlnYXRpb25NZW51Dw9kBQdSRU5BVUxUZBF4wnChpupKCIx9sWitRk5ZPRhS" /> 
</div> 
 
<script type="text/javascript">  
//<![CDATA[
var theForm = document.forms['aspnetForm'];
if (!theForm) {
    theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
//]]> 
</script> 
 
 
<script src="/WebResource.axd?d=-SEZuDMWt2BfpOVboxssqw2&amp;t=633791318898858736" type="text/javascript"></script> 
 
<script> var MSOWebPartPageFormName = 'aspnetForm';</script><script type="text/JavaScript" language="JavaScript">  
<!--  
var L_Menu_BaseUrl="";  
var L_Menu_LCID="1036";  
var L_Menu_SiteTheme="";  
//--> 
</script> 
<script type="text/javascript">  
//<![CDATA[
var originalFormAction = document.forms[0].action;
function FetchCallbackMenuItems(menutemplate)
{
   var template=document.getElementById(menutemplate);
   if(template == null || (template != null && template.hasChildNodes()))
   {
      return;
   }
   __theFormPostData = '';
   WebForm_InitCallback();
   var lastFormAction = document.forms[0].action;
   document.forms[0].action = originalFormAction;
   WebForm_DoCallback('ctl00$PlaceHolderGlobalNavigation$ctl08$MyLinksMenu','',PopulateCallbackMenuItems,'^R^,^F^,ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu,ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate',null,false);
   document.forms[0].action = lastFormAction;
}
//]]> 
</script> 
<SCRIPT LANGUAGE='JavaScript' > 
<!--
//--> 
</SCRIPT> 
<script src="/ScriptResource.axd?d=kK7KQJAkz9l-FV2oEwsEvy_tRCy25wdZ10Gabb1T96KrONkvpJxvMrmR0MLRf5-h0&amp;t=633791318898858736" type="text/javascript"></script> 
                    <script language="javascript">  
                      
                function CallbackWrapperctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR(xml)  
                {  
                    if(xml==null)  
                        return;  
 
                    var ctx='ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR';  
                    EntityEditorCallback(xml,ctx);  
                }  
                function __Dialog__ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR(defaultSearch)  
                    {  
                        if(defaultSearch==undefined)  
                            defaultSearch='';  
                        var sDialogUrl = '\u002f_layouts\u002fPicker.aspx?MultiSelect=True\u0026CustomProperty=GlobalAudience\u00252C\u002520DL\u00252C\u002520SharePointGroup\u0026EntitySeparator=\u00253B\u0026PickerDialogType=Microsoft\u00252EOffice\u00252EServer\u00252EWebControls\u00252EAudiencePickerDialog\u00252C\u002520Microsoft\u00252EOffice\u00252EServer\u00252C\u002520Version\u00253D12\u00252E0\u00252E0\u00252E0\u00252C\u002520Culture\u00253Dneutral\u00252C\u002520PublicKeyToken\u00253D71e9bce111e9429c';  
                        sDialogUrlsDialogUrl = sDialogUrl + '&DefaultSearch=' + escapeProperly(defaultSearch);  
                        var sFeatures='resizable: yes; status: no; scroll: no; help: no; center: yes; dialogWidth : 575px; dialogHeight : 500px;';  
 
                        var rv=commonShowModalDialog(sDialogUrl, sFeatures, CallbackWrapperctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR);  
                    }  
                    </script> 
<script type="text/javascript">  
//<![CDATA[
var EntityEditor_UseContentEditableControl = true;//]]> 
</script> 
 
<script type="text/javascript">  
//<![CDATA[
RadEditorClientDialogParameters = [];
function RadEditorClientLoad(editor, args)
{
    if (typeof(RadEditorClientDialogParameters) != 'undefined' && RadEditorClientDialogParameters[editor.get_id()])
    {
        var editorParameters = RadEditorClientDialogParameters[editor.get_id()];
        editor._dialogParameters = editorParameters;
        if(editorParameters.EditorBackgroundColor)
        {
            editor.get_contentArea().style.backgroundColor = editorParameters.EditorBackgroundColor;
        }
        if (typeof(editorParameters.LoadFunction) == 'string')
        {
            var loadFunction = eval(editorParameters.LoadFunction);
            loadFunction(editor, args);
        }
        editor._editingScenario = editorParameters.EditingScenario;
        Telerik.Web.UI.RadEditor.prototype.get_editingScenario = function() { return this._editingScenario;};
        //backwards compatibility
        editor.editingScenario = editorParameters.EditingScenario;
    }
}
RadEditorClientDialogParameters['ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00'] = {};
RadEditorClientDialogParameters['ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00'].AllowExternalUrls = true;
RadEditorClientDialogParameters['ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00'].CurrentWebBaseUrl = 'http://serveur:55555';
RadEditorClientDialogParameters['ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00'].EditingScenario = "WebPart";
//]]> 
</script> 
<script type='text/javascript' src='/_wpresources/RadEditorSharePoint/5.6.0.0__1f131a624888eeed/Resources/EditorToolPart.js'></script> 
<script type="text/javascript">  
//<![CDATA[
function QuickAddDialogCallback(uniqueId,result)
{
    if(result == null)
    {
        return;
    }
    if(result == 'OpenToolPane')
    {
        MSOTlPn_ShowToolPane2('Catalog');
    }    
    else
    {
        __doPostBack(uniqueId,result);
    }
}
function QuickAddDialogCallbackctl00$PlaceHolderMain$FullPage$ctl00(result) { QuickAddDialogCallback('ctl00$PlaceHolderMain$FullPage$ctl00',result); }
//]]> 
</script> 
 
<script src="/ScriptResource.axd?d=RqBpxM2zrBO0i9MwY0o40oi8uivO00HxFtRNmUViMmL21g7YIaOOgmiSbzpLavSJiaJX4UlmmbgH7lgu4mF2wFRkgs_HNP63l5N4yxPe2301&amp;t=633791321519527072" type="text/javascript"></script> 
<script src="/ScriptResource.axd?d=RqBpxM2zrBO0i9MwY0o40oi8uivO00HxFtRNmUViMmL21g7YIaOOgmiSbzpLavSJrY3awq22-6wnho8NlADCkIbY-V6npRs5oWxFanzd0fA1&amp;t=633791321519527072" type="text/javascript"></script> 
<script src="/ScriptResource.axd?d=_cmxeJsC69I4ypr1yZFEh-wsJtvrvY2UwpTw62ZZZEE2Y5rbvfkgAboKsY8zvC4GGirI70QvQGMzWyu2qS4FdTeItAlOamRKpIpGBO7xocI1&amp;t=633961513286875664" type="text/javascript"></script> 
<script src="/ScriptResource.axd?d=_cmxeJsC69I4ypr1yZFEh-wsJtvrvY2UwpTw62ZZZEE2Y5rbvfkgAboKsY8zvC4GGirI70QvQGMzWyu2qS4FdfCvUuoyjsJb3oPQ3pSzND9E5wJ0SzJTyV9ts6dZjRJe0&amp;t=633961513286875664" type="text/javascript"></script> 
<script src="/ScriptResource.axd?d=_cmxeJsC69I4ypr1yZFEh-wsJtvrvY2UwpTw62ZZZEE2Y5rbvfkgAboKsY8zvC4GGirI70QvQGMzWyu2qS4FdfTAMalvdDpo1aRSM_e3_S33ODdbucMVCxfW3aKyDIN40&amp;t=633961513286875664" type="text/javascript"></script> 
<script src="/ScriptResource.axd?d=_cmxeJsC69I4ypr1yZFEh-wsJtvrvY2UwpTw62ZZZEE2Y5rbvfkgAboKsY8zvC4GGirI70QvQGMzWyu2qS4FdQ4ez_Iz_AIzHDgJljjZsJF4zYre-whfKTP0gK0a759i0&amp;t=633961513286875664" type="text/javascript"></script> 
<script src="/ScriptResource.axd?d=_cmxeJsC69I4ypr1yZFEh-wsJtvrvY2UwpTw62ZZZEE2Y5rbvfkgAboKsY8zvC4GGirI70QvQGMzWyu2qS4Fdc9lfwBd6fwItBiwT6NLmc5ZSR9VhddBQ9IVoA1kslkl0&amp;t=633961513286875664" type="text/javascript"></script> 
<script src="/ScriptResource.axd?d=_cmxeJsC69I4ypr1yZFEh-wsJtvrvY2UwpTw62ZZZEE2Y5rbvfkgAboKsY8zvC4GGirI70QvQGMzWyu2qS4FdRn55NCp5oAt1k1VzMxt2fXkXyGFAwOJml4w4D7q-nQzo9RrgjZEiAtqVaboWk3tZw2&amp;t=633961513286875664" type="text/javascript"></script> 
<script src="/ScriptResource.axd?d=_cmxeJsC69I4ypr1yZFEh-wsJtvrvY2UwpTw62ZZZEE2Y5rbvfkgAboKsY8zvC4GGirI70QvQGMzWyu2qS4FdZdRr-sBov6u2MYaLBq7OSUtrR1OC8dnjwfXii9H96Sv0&amp;t=633961513286875664" type="text/javascript"></script> 
<script src="/ScriptResource.axd?d=_cmxeJsC69I4ypr1yZFEh-wsJtvrvY2UwpTw62ZZZEE2Y5rbvfkgAboKsY8zvC4GGirI70QvQGMzWyu2qS4FdaGd-bT5eourUZW76hgWORo2uYXdM9syQmdn1KKWwNC-0&amp;t=633961513286875664" type="text/javascript"></script> 
<script src="/ScriptResource.axd?d=_cmxeJsC69I4ypr1yZFEh-wsJtvrvY2UwpTw62ZZZEE2Y5rbvfkgAboKsY8zvC4GGirI70QvQGMzWyu2qS4FdShNhQIh26EAdrWLwCQZiR47t6M-6OHTTalef2g15NdO0&amp;t=633961513286875664" type="text/javascript"></script> 
<script src="/ScriptResource.axd?d=_cmxeJsC69I4ypr1yZFEh-wsJtvrvY2UwpTw62ZZZEE2Y5rbvfkgAboKsY8zvC4GGirI70QvQGMzWyu2qS4FdfmNW85mRWLmtjLOwO2_oqV2lDapDmwqTOaLsT8NFN0uB-iigEmpcQp_3CEjbwXdqw2&amp;t=633961513286875664" type="text/javascript"></script> 
<script src="/ScriptResource.axd?d=_cmxeJsC69I4ypr1yZFEh-wsJtvrvY2UwpTw62ZZZEE2Y5rbvfkgAboKsY8zvC4GGirI70QvQGMzWyu2qS4FdY7vTGatwEP7O5gvWq9pQxoaFHVZkiVGWbmeOpawH2aa0&amp;t=633961513286875664" type="text/javascript"></script> 
<script type="text/javascript">  
//<![CDATA[
function WebForm_OnSubmit() {
UpdateFormDigest('\u002f', 1440000);copyUplevelToHidden('ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR');return _spFormOnSubmitWrapper();
return true;
}
//]]> 
</script> 
 
      
<div id="ctl00_m___Drag" style="display:none; position:absolute; z-index: 32000; filter:alpha(opacity=75)"></div> 
 
  <TABLE class="ms-main" CELLPADDING=0 CELLSPACING=0 BORDER=0 WIDTH="100%" HEIGHT="100%">  
    <tr><td>  
       <table CELLPADDING=0 CELLSPACING=0 BORDER=0 WIDTH="100%">  
        <tr> 
         <td colspan=4 class="ms-globalbreadcrumb">  
            <span id="TurnOnAccessibility" style="display:none">  
               <href="#" class="ms-skip" onclick="SetIsAccessibilityFeatureEnabled(true);UpdateAccessibilityUI();return false;">Activer le mode plus accessible</a> 
            </span> 
            <href="javascript:;" onclick="javascript:this.href='#mainContent';" class="ms-skip" AccessKey="J">Passer au contenu principal</a> 
         <table cellpadding=0 cellspacing=0 height=100class="ms-globalleft">  
           <tr> 
            <td class="ms-globallinks" style="padding-top: 2px;" height=100valign=middle>  
             <div> 
              <span id="TurnOffAccessibility" style="display:none">  
                <href="#" class="ms-acclink" onclick="SetIsAccessibilityFeatureEnabled(false);UpdateAccessibilityUI();return false;">Désactiver le mode plus accessible</a> 
              </span> 
                
                <span id="ctl00_PlaceHolderGlobalNavigation_PlaceHolderGlobalNavigationSiteMap_GlobalNavigationSiteMap"><span><a class="ms-sitemapdirectional" href="/">RENAULT</a></span></span> 
                
              </div> 
             </td> 
           </tr> 
         </table> 
         <table cellpadding="0" cellspacing="0" height=100class="ms-globalright">  
          <tr> 
              <td valign="middle" class="ms-globallinks" style="padding-left:3px; padding-right:6px;">  
                
              </td> 
          <td valign="middle" class="ms-globallinks">  
              
       
    <span style="display:none"><menu type='ServerMenu' id="zz2_ID_PersonalActionMenu" largeIconMode="true"><ie:menuitem id="zz3_ID_PersonalInformation" type="option" iconSrc="/_layouts/images/menuprofile.gif" onMenuClick="javascript:GoToPage('\u002f_layouts\u002fuserdisp.aspx?Force=True\u0026ID=' + _spUserId);return false;" text="Mes param&#232;tres" description="Mettre &#224; jour vos informations utilisateur, vos param&#232;tres r&#233;gionaux et vos alertes." menuGroupId="100"></ie:menuitem><ie:menuitem id="zz4_ID_LoginAsDifferentUser" type="option" onMenuClick="javascript:LoginAsAnother('\u002f_layouts\u002fAccessDenied.aspx?loginasanotheruser=true', 0)" text="Se connecter en tant qu'utilisateur diff&#233;rent" description="Se connecter avec un autre compte." menuGroupId="200"></ie:menuitem><ie:menuitem id="zz5_ID_Logout" type="option" onMenuClick="window.location = '/_layouts/SignOut.aspx';" text="Se d&#233;connecter" description="Se d&#233;connecter du site." menuGroupId="200"></ie:menuitem><ie:menuitem id="zz6_ID_PersonalizePage" type="option" iconSrc="/_layouts/images/menupersonalize.gif" onMenuClick="javascript:MSOLayout_ChangeLayoutMode(true);" text="Personnaliser cette page" description="Ajouter, supprimer ou mettre &#224; jour les composants WebPart sur cette page." menuGroupId="300"></ie:menuitem></menu></span><span title="Menu Ouvrir"><div  id="zz7_Menu_t" class="ms-SPLink ms-SpLinkButtonInActive" onmouseover="MMU_PopMenuIfShowing(this);MMU_EcbTableMouseOverOut(this, true)" hoverActive="ms-SPLink ms-SpLinkButtonActive" hoverInactive="ms-SPLink ms-SpLinkButtonInActive" onclick=" MMU_Open(byid('zz2_ID_PersonalActionMenu'), MMU_GetMenuFromClientId('zz7_Menu'),event,false, null, 0);" foa="MMU_GetMenuFromClientId('zz7_Menu')" oncontextmenu="this.click(); return false;" nowrap="nowrap"><id="zz7_Menu" accesskey="L" href="#" onclick="javascript:return false;" style="cursor:hand;white-space:nowrap;" onfocus="MMU_EcbLinkOnFocusBlur(byid('zz2_ID_PersonalActionMenu'), this, true);" onkeydown="MMU_EcbLinkOnKeyDown(byid('zz2_ID_PersonalActionMenu'), MMU_GetMenuFromClientId('zz7_Menu'), event);" onclick=" MMU_Open(byid('zz2_ID_PersonalActionMenu'), MMU_GetMenuFromClientId('zz7_Menu'),event,false, null, 0);" oncontextmenu="this.click(); return false;" menuTokenValues="MENUCLIENTID=zz7_Menu,TEMPLATECLIENTID=zz2_ID_PersonalActionMenu" serverclientid="zz7_Menu">Bienvenue FORMATION\Administrateur<img src="/_layouts/images/blank.gif" border="0" alt="Appuyez sur Maj+Entrée pour ouvrir le menu (nouvelle fenêtre)"/></a><img align="absbottom" src="/_layouts/images/menudark.gif" alt="" /></div></span><script type="text/javascript" language="javascript">var _spUserId=1;</script> 
 
 
          </td> 
          <td style="padding-left:1px;padding-right:3px;" class="ms-globallinks">|</td> 
              <td valign="middle" class="ms-globallinks">  
                <table cellspacing="0" cellpadding="0">  
                 <tr> 
                  <td class="ms-globallinks"><span style='padding-left:3px'></span> 
<id="ctl00_PlaceHolderGlobalNavigation_ctl07_hlMySite" href="http://portail.formation.local:80/MySite/_layouts/MySite.aspx">Mon site</a> 
<span style='padding-left:4px;padding-right:3px'>|</span> 
</td> 
                  <td class="ms-globallinks">  
<table><tr>  
<td class="ms-globallinks"><span id="ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenu"><span style="display:none"><menu type='ServerMenu' id="ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate" largeIconMode="true"></menu></span><span title="Menu Ouvrir"><span  id="ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu_t" class="ms-SPLink ms-hovercellinactive" onmouseover="MMU_PopMenuIfShowing(this);MMU_EcbTableMouseOverOut(this, true)" hoverActive="ms-SPLink ms-hovercellactive" hoverInactive="ms-SPLink ms-hovercellinactive" onclick="javascript:FetchCallbackMenuItems(&#39;ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate&#39;); MMU_Open(byid('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate'), MMU_GetMenuFromClientId('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu'),event,true, null, 0);" foa="MMU_GetMenuFromClientId('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu')" oncontextmenu="this.click(); return false;" nowrap="nowrap"><id="ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu" accesskey="M" href="#" onclick="javascript:return false;" style="cursor:hand;white-space:nowrap;" onfocus="MMU_EcbLinkOnFocusBlur(byid('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate'), this, true);" onkeydown="MMU_EcbLinkOnKeyDown(byid('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate'), MMU_GetMenuFromClientId('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu'), event);" onclick="javascript:FetchCallbackMenuItems(&#39;ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate&#39;); MMU_Open(byid('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate'), MMU_GetMenuFromClientId('ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu'),event,true, null, 0);" oncontextmenu="this.click(); return false;" menuTokenValues="MENUCLIENTID=ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu,TEMPLATECLIENTID=ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenuTemplate" serverclientid="ctl00_PlaceHolderGlobalNavigation_ctl08_MyLinksMenuMenu">Mes liens<img src="/_layouts/images/blank.gif" border="0" alt="Appuyez sur Maj+Entrée pour ouvrir le menu (nouvelle fenêtre)"/></a><img align="absbottom" src="/_layouts/images/menudark.gif" alt="" /></span></span></span></td> 
<td class="ms-globallinks">|</td> 
</tr></table>  
</td> 
                 </tr> 
                </table> 
              </td> 
              <td valign="middle" class="ms-globallinks">&nbsp;  
                <href="javascript:TopHelpButtonClick('NavBarHelpHome')" id="ctl00_PlaceHolderGlobalNavigation_TopHelpLink" AccessKey="6" title="Aide (nouvelle fenêtre)"><img src="/_layouts/images/helpicon.gif" align="absmiddle" border="0" alt="Aide (nouvelle fenêtre)" /></a>  
              </td> 
              </tr> 
            </table> 
            </td> 
           </tr> 
       </table> 
      </td></tr>  
    <tr> 
     <td class="ms-globalTitleArea">  
      <table width=100cellpadding=0 cellspacing=0 border=0>  
       <tr> 
        <td id="GlobalTitleAreaImage" class="ms-titleimagearea"><img id="ctl00_onetidHeadbnnr0" src="/_layouts/images/titlegraphic.gif" alt="" style="border-width:0px;" /></td>  
        <td class="ms-sitetitle" width=100%> 
            
          <h1 class="ms-sitetitle">  
           <id="ctl00_PlaceHolderSiteName_onetidProjectPropertyTitle" href="/">  
             RENAULT  
           </a> 
          </h1> 
            
        </td> 
        <td style="padding-top:8px;" valign=top>  
            
    <table TOPLEVEL border="0" cellpadding="0" cellspacing="0" width="100%">  
    <tr> 
        <td valign="top"><div WebPartID="00000000-0000-0000-0000-000000000000" HasPers="true" id="WebPartWPQ1" width="100%" OnlyForMePart="true" allowDelete="false" style="" ><div id="SRSB"<div> 
            <input name="ctl00$PlaceHolderSearchArea$ctl01$ctl00" type="hidden" id="ctl00_PlaceHolderSearchArea_ctl01_ctl00" value="http://serveur:55555" /><table class="ms-sbtable ms-sbtable-ex" border="0">  
                <tr class="ms-sbrow">  
                    <td class="ms-sbscopes ms-sbcell"><select name="ctl00$PlaceHolderSearchArea$ctl01$SBScopesDDL" id="ctl00_PlaceHolderSearchArea_ctl01_SBScopesDDL" title="Zone de recherche" class="ms-sbscopes">  
                        <option selected="selected" value="Ce site">Ce site&#160;: RENAULT</option> 
 
                    </select></td><td class="ms-sbcell"><input name="ctl00$PlaceHolderSearchArea$ctl01$S6AE27B38_InputKeywords" type="text" maxlength="200" id="ctl00_PlaceHolderSearchArea_ctl01_S6AE27B38_InputKeywords" accesskey="S" title="Entrez les mots à rechercher" class="ms-sbplain" alt="Entrez les mots à rechercher" onkeypress="javascript:return S6AE27B38_OSBEK(event);" style="width:170px;" /></td><td class="ms-sbgo ms-sbcell"><id="ctl00_PlaceHolderSearchArea_ctl01_S6AE27B38_go" title="Lancer la recherche" href="javascript:S6AE27B38_Submit()"><img title="Lancer la recherche" onmouseover="this.src='/_layouts/images/gosearch.gif'" onmouseout="this.src='/_layouts/images/gosearch.gif'" alt="Lancer la recherche" src="/_layouts/images/gosearch.gif" style="border-width:0px;" /></a></td><td class="ms-sbLastcell"></td> 
                </tr> 
            </table> 
        </div></div></div></td>  
    </tr> 
</table> 
 
        </td> 
       </tr> 
      </table> 
     </td> 
    </tr> 
    <TR> 
     <TD id="onetIdTopNavBarContainer" WIDTH=100class="ms-bannerContainer">  
          
          <table class="ms-bannerframe" border="0" cellspacing="0" cellpadding="0" width="100%">  
           <tr> 
            <td nowrap valign="middle"></td> 
            <td class=ms-banner width=99% nowrap ID="HBN100">  
                  
    <table id="zz1_TopNavigationMenu" class="ms-topNavContainer zz1_TopNavigationMenu_5 zz1_TopNavigationMenu_2" cellpadding="0" cellspacing="0" border="0">  
    <tr> 
        <td onmouseover="Menu_HoverRoot(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)" title="Collection de site racine (&quot;/&quot;)  
Modèle : Site vide" id="zz1_TopNavigationMenun0"><table class="ms-topnav zz1_TopNavigationMenu_4 ms-topnavselected zz1_TopNavigationMenu_10" cellpadding="0" cellspacing="0" border="0" width="100%">  
            <tr> 
                <td style="white-space:nowrap;"><class="zz1_TopNavigationMenu_1 ms-topnav zz1_TopNavigationMenu_3 ms-topnavselected zz1_TopNavigationMenu_9" href="/" accesskey="1" style="border-style:none;font-size:1em;">RENAULT</a></td>  
            </tr> 
        </table></td><td style="width:0px;"></td><td><table border="0" cellpadding="0" cellspacing="0" width="100%" class="zz1_TopNavigationMenu_5">  
            <tr> 
                <td style="width:0px;"></td><td onmouseover="Menu_HoverStatic(this)" onmouseout="Menu_Unhover(this)" onkeyup="Menu_Key(this)" id="zz1_TopNavigationMenun1"><table class="ms-topnav zz1_TopNavigationMenu_4" cellpadding="0" cellspacing="0" border="0" width="100%">  
                    <tr> 
                        <td style="white-space:nowrap;"><class="zz1_TopNavigationMenu_1 ms-topnav zz1_TopNavigationMenu_3" href="/TeamSite1/default.aspx" style="border-style:none;font-size:1em;">TeamSite1</a></td>  
                    </tr> 
                </table></td><td style="width:0px;"></td> 
            </tr> 
        </table></td>  
    </tr> 
</table> 
      
                  
            </td> 
            <td class=ms-banner>&nbsp;&nbsp;</td> 
            <td valign=bottom align=right style="position:relative;bottom:0;left:0;">  
             <table cellpadding=0 cellspacing=0 border=0>  
              <tr> 
               <td> 
                <table height=100class="ms-siteaction" cellpadding=0 cellspacing=0>  
                 <tr> 
                       <td class="ms-siteactionsmenu" id="siteactiontd">  
                         
                          
                        <span style="display:none"><menu type='ServerMenu' id="zz8_SiteActionsMenuMain" largeIconMode="true"><ie:menuitem id="zz9_MenuItem_Create" type="option" iconSrc="/_layouts/images/Actionscreate.gif" onMenuClick="window.location = '/_layouts/create.aspx';" text="Cr&#233;er" description="Ajouter une nouvelle biblioth&#232;que, liste ou page Web &#224; ce site Web." menuGroupId="100"></ie:menuitem><ie:menuitem id="ctl00_PlaceHolderTopNavBar_SiteActionsMenuMain_ctl00_MenuItem_EditPage" type="option" iconSrc="/_layouts/images/ActionsEditPage.gif" onMenuClick="window.location = 'javascript:MSOLayout_ChangeLayoutMode(false);';" text="Modifier la page" description="Ajouter, supprimer ou mettre &#224; jour des composants WebPart dans cette page." menuGroupId="100"></ie:menuitem><ie:menuitem id="zz10_MenuItem_Settings" type="option" iconSrc="/_layouts/images/ActionsSettings.gif" onMenuClick="window.location = '/_layouts/settings.aspx';" text="Param&#232;tres du site" description="G&#233;rer les param&#232;tres du site sur ce site." menuGroupId="100"></ie:menuitem></menu></span><div><div><span title="Menu Ouvrir"><div  id="zz11_SiteActionsMenu_t" class="" onmouseover="MMU_PopMenuIfShowing(this);MMU_EcbTableMouseOverOut(this, true)" hoverActive="ms-siteactionsmenuhover" hoverInactive="" onclick=" MMU_Open(byid('zz8_SiteActionsMenuMain'), MMU_GetMenuFromClientId('zz11_SiteActionsMenu'),event,false, null, 0);" foa="MMU_GetMenuFromClientId('zz11_SiteActionsMenu')" oncontextmenu="this.click(); return false;" nowrap="nowrap"><id="zz11_SiteActionsMenu" accesskey="/" href="#" onclick="javascript:return false;" style="cursor:hand;white-space:nowrap;" onfocus="MMU_EcbLinkOnFocusBlur(byid('zz8_SiteActionsMenuMain'), this, true);" onkeydown="MMU_EcbLinkOnKeyDown(byid('zz8_SiteActionsMenuMain'), MMU_GetMenuFromClientId('zz11_SiteActionsMenu'), event);" onclick=" MMU_Open(byid('zz8_SiteActionsMenuMain'), MMU_GetMenuFromClientId('zz11_SiteActionsMenu'),event,false, null, 0);" oncontextmenu="this.click(); return false;" menuTokenValues="MENUCLIENTID=zz11_SiteActionsMenu,TEMPLATECLIENTID=zz8_SiteActionsMenuMain" serverclientid="zz11_SiteActionsMenu">Actions du site<img src="/_layouts/images/blank.gif" border="0" alt="Appuyez sur Maj+Entrée pour ouvrir le menu (nouvelle fenêtre)"/></a><img align="absbottom" src="/_layouts/images/whitearrow.gif" alt="" /></div></span></div></div> 
                    </td> 
                 </tr> 
                </table> 
               </td> 
              </tr> 
             </table> 
            </td> 
           </tr> 
          </table> 
          
     </TD> 
    </TR> 
      
        <span id="ctl00_WSSDesignConsole_IdDesignModeConsole_DesignModeContainer">  
<!-- Design Mode Console --> 
       <tr> 
        <td colspan=3 width=100class="ms-consolestatuscell">  
         <table width="100%" cellspacing="0" cellpadding="0" border="0">  
            <tr> 
               <td> 
                  <table cellspacing=0 cellpadding=0 width=100class="ms-consoleframe"><tr><td>  
                  <table cellspacing=0 cellpadding=0 border=0 width=100> 
                     <tr> 
                        <td colspan=2 class="ms-consolestatuscheckoutframe">  
                        </td> 
                     </tr> 
                  </table> 
                  <table cellspacing=0 cellpadding=0 border=0 width=100class="ms-consolestatusframe" style="padding-top: 1px;">  
                        <tr> 
                           <td align="left" class="ms-consoleminiframe">  
                              <table cellpadding=0 cellspacing=0 border=0>  
                                 <tr> 
                                   <td class="ms-consolestatus">&nbsp;  
                                      <b>Version :</b>&nbsp;Vous modifiez la version partagée de cette page.  
                                   </td> 
                                   <td class="ms-consolestatus">  
                                      &nbsp;&nbsp;&nbsp;&nbsp;  
                                   </td> 
                                </tr> 
                             </table> 
                          </td> 
                          <td align="right" class="ms-consoleminiframe" style="padding-left: 10px;padding-right: 10px;">  
                             <table cellpadding='0' cellspacing='0'><tr><td><class="ms-consoletoolbar" ID="edmc2" href="#" onclick="javascript:MSOLayout_ChangeLayoutMode(null, true);return false;">Quitter le mode Édition</a></td><td><a ID="edmc2_imagelink" class="ms-consoletoolbar" href="#" onclick="javascript:MSOLayout_ChangeLayoutMode(null, true);return false;"title="Quitter le mode Édition"><img src="/_layouts/images/exitedit.gif" ID="edmc2_image" alt="Quitter le mode Édition" border=0 width=16 height=16></a></td></tr></table>  
                          </td> 
                       </tr> 
                 </table> 
                 </td></tr></table> 
              </td> 
           </tr> 
        </table> 
       </td> 
      </tr> 
<!-- Design Mode Console --> 
     </span> 
 
      
      
      
      
    <TR height="100%"><TD><TABLE width="100%" height="100%" cellspacing="0" cellpadding="0">  
    <tr> 
     <td class="ms-titlearealeft" id="TitleAreaImageCell" valign="middle" nowrap><div style="height:100%" class="ms-titleareaframe"></div></td>  
     <td class="ms-titleareaframe" id="TitleAreaFrameClass">  
        
       <div class="ms-titleareaframe"><IMG SRC="/_layouts/images/blank.gif" width=1 height=100alt=""></div> 
        
     </td> 
    <td valign=top id="onetidPageTitleAreaFrame" class='ms-pagetitleareaframe' nowrap> 
      <table id="onetidPageTitleAreaTable" cellpadding=0 cellspacing=0 width=100border="0">  
       <tr> 
        <td valign="top" class="ms-titlearea">  
           
          <span id="ctl00_PlaceHolderTitleBreadcrumb_ContentMap"><span><a class="ms-sitemapdirectional" href="/">RENAULT</a></span><span> &gt; </span><span><class="ms-sitemapdirectional" href="/DocLib/Forms/AllItems.aspx">DocLib</a></span><span> &gt; </span><span class="ms-sitemapdirectional">Full</span></span> &nbsp;  
           
        </td> 
       </tr> 
       <tr> 
        <td height=100valign=top ID=onetidPageTitle class="ms-pagetitle">  
          <h2 class="ms-pagetitle">  
              
    <table width="100%" cellpadding="0" cellspacing="0" border="0">  
    <tr> 
        <td id="MSOZoneCell_WebPartWPQ2" vAlign="top"><table TOPLEVEL border="0" cellpadding="0" cellspacing="0" width="100%">  
            <tr> 
                <td valign="top"><div WebPartID="e29dcf60-1f1f-420a-b17c-174fd8eaadf7" HasPers="false" id="WebPartWPQ2" width="100%" allowMinimize="false" allowRemove="false" allowDelete="false" style="" ><div><table id="MSOWebPart_Header" border="0" cellpadding="0" cellspacing="0" width="100%">  
                    <tr> 
                        <td style="width:100%;"><table border="0" cellpadding="0" cellspacing="0">  
                            <tr> 
                                <td vAlign="middle" align="left" style="padding-left:5;"><img src="/_layouts/images/wpicon.gif" align="absmiddle" alt="Image de la barre de titre de la page de composants WebPart" title="Icône" /></td><td title="" style="padding-left:5px;"><img height="3px" src="/_layouts/images/blank.gif" alt="" /><br><span class="ms-pagetitle">Full</span><br><img height="3px" src="/_layouts/images/blank.gif" alt="" /><br></td> 
                            </tr> 
                        </table></td><td align="right" valign="bottom" class="ms-SPLink" style="padding:5px"><nobr><a href="javascript:MSOTlPn_ShowToolPane2Wrapper('Edit', 16, 'g_e29dcf60_1f1f_420a_b17c_174fd8eaadf7')">Modifier les propriétés de la barre de titre</a></nobr></td> 
                    </tr><tr>  
                        <td colspan="3" class="ms-titlearealine"><img height="2px" align="left" src="/_layouts/images/blank.gif" alt="" /></td>  
                    </tr> 
                </table></div></div></td>  
            </tr> 
        </table></td>  
    </tr> 
</table> 
 
          </h2> 
        </td> 
       </tr> 
      </table> 
     </td> 
     <td class="ms-titlearearight">  
          
          
<div class="ms-titleareaframe" style='height:100%'><IMG SRC="/_layouts/images/blank.gif" width=1 height=1 alt=""></div> 
</td> 
    </tr> 
 
    <TR> 
      <TD class="ms-leftareacell" valign=top height=100id="LeftNavigationAreaCell">  
       <table class=ms-nav width=100height=100cellpadding=0 cellspacing=0>  
        <tr> 
         <td> 
          <TABLE height="100%" class=ms-navframe CELLPADDING=0 CELLSPACING=0 border="0">  
           <tr valign="top">  
            <td width="4px"><IMG SRC="/_layouts/images/blank.gif" width=4 height=1 alt=""></td> 
            <td valign="top" width="100%">  
                
                
 
            </td> 
           </tr> 
           <tr><td colspan=2></td></tr>  
          </TABLE> 
         </td> 
         <td></td>  
        </tr> 
       </table> 
      </TD> 
      <td> 
<div class="ms-pagemargin"><IMG SRC="/_layouts/images/blank.gif" width=10 height=1 alt=""></div> 
</td> 
      <td class='ms-bodyareacell' valign="top">  
        <PlaceHolder id="ctl00_MSO_ContentDiv"><table id='MSO_tblPageBody' cellpadding=0 cellspacing=0 border="0" style="height:100%;width:100%;"><tr><td valign=top><div id='MSOTlPn_WebPartPageDiv' style="overflow:auto;width:100%;height:100%;">  
        <table id="MSO_ContentTable" width=100height="100%" border="0" cellspacing="0" cellpadding="0" class="ms-propertysheet">  
          <tr> 
             <td class='ms-bodyareaframe' valign="top" height="100%">  
               <name="mainContent"></A> 
                  
    Collection de site racine (&quot;/&quot;) <br>Modèle : Site vide  
 
                  
        <table cellpadding="4" cellspacing="0" border="0" width="100%">  
                <tr> 
                    <td id="_invisibleIfEmpty" name="_invisibleIfEmpty" valign="top" width="100%"<table cellpadding="1" cellspacing="0" border="0" style="width:100%;">  
    <tr> 
        <td align="center" class="ms-SPZoneLabel"><nobr>Page entière</nobr></td>  
    </tr><tr>  
        <td style="height:100%;"><table ondragenter="MSOLayout_MoveWebPartDragZoneEnter(this);" ondragover="MSOLayout_MoveWebPartStopEventBubble();" class="ms-SPZone" id="MSOZone" zoneID="FullPage" zoneTitle="Page entière" orientation="Vertical" width="100%" cellpadding="0" cellspacing="0" border="0" style="height:100%;">  
            <tr> 
                <td orientation="Vertical" ondragenter="MSOLayout_MoveWebPartDragEnter(this)" ondragover="MSOLayout_MoveWebPartDragOver(this, 'False');" style="vertical-align:top;width:100%;min-width:100%;"><table onclick="MSOLayout_ShowQuickAddDialog('2e75871c-c674-4bbc-9c7d-db42fde97287','007f9572-04c9-45f4-8887-2e073321b7dd','',true,2,50,QuickAddDialogCallbackctl00$PlaceHolderMain$FullPage$ctl00,'Page\u002520enti\u0025C3\u0025A8re','\u002f_layouts\u002fwebpartgallerypickerpage.aspx','resizable: yes; status: no; scroll: no; help: no;dialogWidth : 700px; dialogHeight : 700px;');" onmouseover="this.className='ms-SPButton ms-WPAddButton ms-WPAddButtonHover';" onmouseout="this.className='ms-SPButton ms-WPAddButton';" class="ms-SPButton ms-WPAddButton" title="Ajouter un composant WebPart (s'ouvre dans une nouvelle fenêtre)" cellspacing="0" cellpadding="0" style="width:100%;">  
                    <tr> 
                        <td><a href="#" title="Ajouter un composant WebPart (s'ouvre dans une nouvelle fenêtre)" onclick="MSOLayout_ShowQuickAddDialog('2e75871c-c674-4bbc-9c7d-db42fde97287','007f9572-04c9-45f4-8887-2e073321b7dd','',true,2,50,QuickAddDialogCallbackctl00$PlaceHolderMain$FullPage$ctl00,'Page\u002520enti\u0025C3\u0025A8re','\u002f_layouts\u002fwebpartgallerypickerpage.aspx','resizable: yes; status: no; scroll: no; help: no;dialogWidth : 700px; dialogHeight : 700px;');;event.cancelBubble=true;" style="text-decoration:none;"><nobr><img align="middle" border="0" alt="Ajouter un composant WebPart (s'ouvre dans une nouvelle fenêtre)" src="/_layouts/images/wpqaicon.gif" />&nbsp;<span>Ajouter un composant WebPart</span></nobr></a></td>  
                    </tr> 
                </table></td>  
            </tr><tr>  
                <td id="MSOZoneCell_WebPartWPQ3" orientation="Vertical" name="MSOZoneCell" relatedWebPart="WebPartWPQ3" ondragenter="MSOLayout_MoveWebPartDragEnter(this)" ondragend="MSOLayout_MoveWebPart(this, MSOLayout_oDropLocation);" ondragover="MSOLayout_MoveWebPartDragOver(this, 'True');" vAlign="top"><table TOPLEVEL class="ms-WPSelected" border="0" cellpadding="0" cellspacing="0" width="100%">  
                    <tr> 
                        <td><table border="0" cellpadding="0" cellspacing="0" width="100%">  
                            <tr class="ms-WPHeader">  
                                <td onmousedown="MSOLayout_MoveWebPartStart(MSOZoneCell_WebPartWPQ3, 'Telerik RadEditor for MOSS', false)" relatedWebPart="WebPartWPQ3" title="Telerik RadEditor for MOSS - Cross-browser rich content editor from Telerik" id="WebPartTitleWPQ3" style="cursor:move;width:100%;"><h3 class="ms-standardheader ms-WPTitle"><nobr><span>Telerik RadEditor for MOSS</span><span id="WebPartCaptionWPQ3"></span></nobr></h3></td><td align="right" style="padding-right:2px"><span style="display:none;"><menu id="MSOMenu_ConnectionsWebPartWPQ3" class="ms-SrvMenuUI">  
                                    <ie:menuitem disabled="true" title="Le composant WebPart à partir duquel vous vous connectez n&#39;autorise pas la création de connexions." id="MSOMenu_Connections" type="option">  
                                        Connexions  
                                    </ie:menuitem> 
                                </menu></span><div style="cursor: pointer" class="ms-HoverCellInActive" onmouseout="this.className='ms-HoverCellInActive'" onmouseover="this.className='ms-HoverCellActiveDark'"><nobr><img src="/_layouts/images/blank.gif" alt="" style="padding-left:2px;" /><a onclick="MSOWebPartPage_OpenMenu(MSOMenu_WebPartMenu, this, WebPartWPQ3,&#39;True&#39;);return false;" id="WebPartWPQ3_MenuLink" onkeydown="MSOMenu_KeyboardClick(WebPartWPQ3_MenuLink, 13, 40)" href="#"><span class="ms-WPEditText">modifier</span><img src="/_layouts/images/Menu1.gif" border="0" align="absmiddle" title="Telerik RadEditor for MOSS - Menu du composant WebPart" alt="Telerik RadEditor for MOSS - Menu du composant WebPart" style="padding-left:2px;" /></a></nobr></div></td><td valign="middle" style="width:10px;padding-right:2px;"><title="Fermer Telerik RadEditor for MOSS" href="#" onclick="javascript:MSOLayout_RemoveWebPart(document.all['WebPartWPQ3'])" id="WebPartWPQ3_Close"><img class="ms-HoverCellInActive" onmouseout="this.className='ms-HoverCellInActive'" onmouseover="this.className='ms-HoverCellActiveDark'" align="absmiddle" border="0" src="/_layouts/images/ptclose.gif" alt="Fermer Telerik RadEditor for MOSS" /></a></td> 
                            </tr> 
                        </table></td>  
                    </tr><tr>  
                        <td class="" valign="top"><div WebPartID="c407b74b-92e2-4311-892b-f6ae2342b0f0" HasPers="false" id="WebPartWPQ3" width="100%" class="ms-WPBody" SelectedWebPart="true" style="" ><span id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_EditorScriptManager"><script type="text/javascript">  
//<![CDATA[
Sys.WebForms.PageRequestManager._initialize('ctl00$m$g_c407b74b_92e2_4311_892b_f6ae2342b0f0$TelerikScriptManager', document.getElementById('aspnetForm'));
Sys.WebForms.PageRequestManager.getInstance()._updateControls([], [], [], 90);
                        //]]> 
</script> 
</span><div id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00" class="RadEditor Default reWrapper " style="width:680px;height:400px;">  
                            <!-- 2009.3.1103.20 --><div id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_dialogOpener" style="display:none;">  
                                <div id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_dialogOpener_Window" style="display:none;">  
                                    <div id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_dialogOpener_Window_C">  
 
                                    </div><input id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_dialogOpener_Window_ClientState" name="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_dialogOpener_Window_ClientState" type="hidden" /> 
                                </div><input id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_dialogOpener_ClientState" name="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_dialogOpener_ClientState" type="hidden" /> 
                            </div><table id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00Wrapper" cellpadding="0" cellspacing="0" style="table-layout:auto;width:100%;height:400px;">  
                                <tbody> 
                                    <tr> 
                                        <td class="reWrapper_corner reCorner_top_left">&nbsp;</td><td class="reWrapper_center reCenter_top" colspan="3">&nbsp;</td><td class="reWrapper_corner reCorner_top_right">&nbsp;</td> 
                                    </tr><tr>  
                                        <td class="reLeftVerticalSide" rowspan="4">&nbsp;</td><td rowspan="4" id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00Left" class="reTlbVertical"></td><td id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00Top" class="reToolCell" style="width:100%;"><div class="Default reToolbarWrapper" style="overflow:hidden;height:0px;visibility:hidden;overflow:hidden;height:0px;">  
                                            <ul class="reToolbar Default">  
                                                <li class="reGrip grip_first">&nbsp;</li><li><title="AJAX Spellchecker" class="reTool" href="#"><span class="AjaxSpellCheck">&nbsp;</span></a></li><li><title="Find And Replace" class="reTool" href="#"><span class="FindAndReplace">&nbsp;</span></a></li><li class="reSeparator">&nbsp;</li><li><title="Cut (CTRL+X)" class="reTool" href="#"><span class="Cut">&nbsp;</span></a></li><li><title="Copy (CTRL+C)" class="reTool" href="#"><span class="Copy">&nbsp;</span></a></li><li><title="Paste (CTRL+V)" class="reTool" href="#"><span class="Paste">&nbsp;</span></a></li><li class="reSeparator">&nbsp;</li><li><title="Undo (CTRL+Z)" class="reTool reSplitButton" href="#"><span class="Undo">&nbsp;</span><span class="split_arrow">&nbsp;</span></a></li><li><title="Redo (CTRL+Y)" class="reTool reSplitButton" href="#"><span class="Redo">&nbsp;</span><span class="split_arrow">&nbsp;</span></a></li><li class="reSeparator">&nbsp;</li><li><title="MOSSLinkManager (CTRL+K)" class="reTool" href="#"><span class="MOSSLinkManager">&nbsp;</span></a></li><li><title="Remove Link (CTRL+SHIFT+K)" class="reTool" href="#"><span class="Unlink">&nbsp;</span></a></li><li><title="Image Manager (CTRL+G)" class="reTool" href="#"><span class="ImageManager">&nbsp;</span></a></li><li><title="InsertStreaming_Real" class="reTool" href="#"><span class="InsertStreaming_Real">&nbsp;</span></a></li><li><title="Media Manager" class="reTool" href="#"><span class="MediaManager">&nbsp;</span></a></li><li><title="Flash Manager" class="reTool" href="#"><span class="FlashManager">&nbsp;</span></a></li><li><title="MOSSTemplateManager" class="reTool" href="#"><span class="MOSSTemplateManager">&nbsp;</span></a></li><li class="reSeparator">&nbsp;</li><li><title="MOSSInsertTable" class="reTool" href="#"><span class="MOSSInsertTable">&nbsp;</span></a></li><li><title="Table Properties" class="reTool" href="#"><span class="SetTableProperties">&nbsp;</span></a></li><li><title="Show/Hide Border" class="reTool" href="#"><span class="ToggleTableBorder">&nbsp;</span></a></li><li class="reSeparator">&nbsp;</li><li><title="MOSSInsertTableElement" class="reTool reSplitButton" href="#"><span class="MOSSInsertTableElement">&nbsp;</span><span class="split_arrow">&nbsp;</span></a></li><li><title="Merge Cells Horizontally" class="reTool" href="#"><span class="MergeColumns">&nbsp;</span></a></li><li class="reSeparator">&nbsp;</li><li><title="ToggleSource" class="reTool" href="#"><span class="ToggleSource">&nbsp;</span></a></li><li><title="Format Stripper" class="reTool reSplitButton" href="#"><span class="FormatStripper">&nbsp;</span><span class="split_arrow">&nbsp;</span></a></li><li class="reSeparator">&nbsp;</li><li><title="MOSSRightToLeft" class="reTool" href="#"><span class="MOSSRightToLeft">&nbsp;</span></a></li><li><title="MOSSLeftToRight" class="reTool" href="#"><span class="MOSSLeftToRight">&nbsp;</span></a></li><li class="reSeparator">&nbsp;</li><li><title="Foreground Color" class="reTool reSplitButton" href="#"><span class="ForeColor">&nbsp;</span><span class="split_arrow">&nbsp;</span></a></li><li><title="Background Color" class="reTool reSplitButton" href="#"><span class="BackColor">&nbsp;</span><span class="split_arrow">&nbsp;</span></a></li><li class="reGrip grip_last">&nbsp;</li> 
                                            </ul><ul class="reToolbar Default">  
                                                <li class="reGrip grip_first">&nbsp;</li><li><title="Apply CSS Class" class="reDropdown" href="#"><span class="ApplyClass" style="width:80px;">Apply CSS Class</span></a></li><li><title="Paragraph Style" class="reDropdown" href="#"><span class="FormatBlock" style="width:80px;">Paragraph Style</span></a></li><li class="reSeparator">&nbsp;</li><li><title="Font Name" class="reDropdown" href="#"><span class="FontName" style="width:80px;">Font Name</span></a></li><li><title="Size" class="reDropdown" href="#"><span class="FontSize" style="width:21px;">Size</span></a></li><li class="reSeparator">&nbsp;</li><li><title="Bold (CTRL+B)" class="reTool" href="#"><span class="Bold">&nbsp;</span></a></li><li><title="Italic (CTRL+I)" class="reTool" href="#"><span class="Italic">&nbsp;</span></a></li><li><title="Underline (CTRL+U)" class="reTool" href="#"><span class="Underline">&nbsp;</span></a></li><li class="reSeparator">&nbsp;</li><li><title="Align Left" class="reTool" href="#"><span class="JustifyLeft">&nbsp;</span></a></li><li><title="Align Center" class="reTool" href="#"><span class="JustifyCenter">&nbsp;</span></a></li><li><title="Align Right" class="reTool" href="#"><span class="JustifyRight">&nbsp;</span></a></li><li class="reSeparator">&nbsp;</li><li><title="Numbered List" class="reTool" href="#"><span class="InsertOrderedList">&nbsp;</span></a></li><li><title="Bullet List" class="reTool" href="#"><span class="InsertUnorderedList">&nbsp;</span></a></li><li class="reSeparator">&nbsp;</li><li><title="Indent" class="reTool" href="#"><span class="Indent">&nbsp;</span></a></li><li><title="Outdent" class="reTool" href="#"><span class="Outdent">&nbsp;</span></a></li><li class="reGrip grip_last">&nbsp;</li> 
                                            </ul> 
                                        </div></td><td rowspan="4" id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00Right" class="reTlbVertical"></td><td rowspan="4" class="reRightVerticalSide">&nbsp;</td> 
                                    </tr><tr>  
                                        <td valign="top" id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00Center" class="reContentCell" style="height:100%;"><textarea id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00ContentHiddenTextarea" name="ctl00$m$g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl00" rows="4" cols="20" style="display:none;">%3cstrong%3eTestTestTest...%3c/strong%3e</textarea></td>  
                                    </tr><tr>  
                                        <td class="reToolZone"><table cellpadding="0" cellspacing="0" id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_BottomTable" style="width:100%;display:none;">  
                                            <tbody> 
                                                <tr> 
                                                    <td class="reEditorModesCell"><div class="reEditorModes" id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_ModesWrapper">  
                                                        <ul> 
                                                            <li><a href="javascript:void(0);" title="Design" class="reMode_design reMode_selected"><span>Design</span></a></li><li><href="javascript:void(0);" title="HTML" class="reMode_html"><span>HTML</span></a></li><li><href="javascript:void(0);" title="Preview" class="reMode_preview"><span>Preview</span></a></li> 
                                                        </ul> 
                                                    </div></td><td class="reBottomZone" id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00Bottom">&nbsp;</td><td class="reResizeCell" valign="bottom" align="right" style="width:15px;"><div id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00BottomResizer">  
                                                        &nbsp;  
                                                    </div></td>  
                                                </tr> 
                                            </tbody> 
                                        </table></td>  
                                    </tr><tr>  
                                        <td id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00Module" class="reToolZone"></td> 
                                    </tr><tr>  
                                        <td class="reWrapper_corner reCorner_bottom_left">&nbsp;</td><td class="reWrapper_center reCenter_bottom" colspan="3">&nbsp;</td><td class="reWrapper_corner reCorner_bottom_right">&nbsp;</td> 
                                    </tr> 
                                </tbody> 
                            </table><input id="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_ClientState" name="ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_ClientState" type="hidden" /> 
                        </div><script type="text/javascript">  
                            var inPageEditor = 'ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00';  
                        </script></div></td> 
                    </tr> 
                </table></td>  
            </tr><tr>  
                <td orientation="Vertical" ondragenter="MSOLayout_MoveWebPartDragEnter(this)" ondragover="MSOLayout_MoveWebPartDragOver(this, 'False');" align="center" vAlign="middle" id="MSOZone_EmptyZoneCell" style="height:100%;padding:0;"><span class="ms-spzonecaption" id="MSOZoneCell_emptyZoneText" webPartsInZone="1" style="display:none;">&nbsp<br></span></td> 
            </tr> 
        </table></td>  
    </tr> 
</table> </td> 
                </tr> 
                <script language="javascript">if(typeof(MSOLayout_MakeInvisibleIfEmpty) == "function") {MSOLayout_MakeInvisibleIfEmpty();}</script> 
        </table> 
 
             </td> 
          </tr> 
        </table> 
        </div></td><td id='MSOTlPn_MainTD' valign=top style="width:225px"><table border="0" cellspacing="0" cellpadding="0" class="ms-ToolPaneOuter" id="MSOTlPn_Tbl" style="width:225px;height:100%;">  
    <tr> 
        <td valign="top" id="MSOTlPn_ToolPaneCaption"><table cellspacing="0" cellpadding="0" border="0" style="width:100%;">  
            <tr> 
                <td class="ms-ToolPaneTitle"><nobr><a tabindex="0" href="#" onclick="MSOTlPn_onToolPaneMaxClick();window.event.returnValue = false;" onkeydown="MSOMenu_KeyboardClick(this, 13, 32)" title="Élargir"><img id="MSOTlPn_minMaxIcon" align="absmiddle" border="0" class="ms-HoverCellInActive" onmouseout="javascript:this.className = 'ms-HoverCellInActive'" onmouseover="javascript:this.className = 'ms-HoverCellActiveDark'" src="/_layouts/images/tpmax.gif" name="Élargir" title="Élargir" alt="Élargir" /></a><span id="MSOTlPn_TlPnCaptionSpan" ms-TlPnWiden="true" style="padding-left:5;width:200px;text-overflow:ellipsis;overflow:hidden;">Telerik RadEditor for MOSS</span></nobr></td><td title="Fermer" align="right" class="ms-ToolPaneClose"><tabindex="0" href="#" onclick="javascript:MSOTlPn_onToolPaneCloseClick();return false;" onkeydown="MSOMenu_KeyboardClick(this, 13, 32)" id="MSOTlPn_Close"><img align="absmiddle" border="0" class="ms-HoverCellInActive" onmouseout="javascript:this.className = 'ms-HoverCellInActive'" onmouseover="javascript:this.className = 'ms-HoverCellActiveDark'" src="/_layouts/images/ptclose.gif" name="Fermer" title="Fermer" alt="Fermer" /></a></td> 
            </tr> 
        </table><div class='UserCaptionShadow' width='100%'><img src='/_layouts/images/blank.gif' alt=''></div></td>  
    </tr><tr>  
 
    </tr><tr>  
        <td valign="top" id="MSOTlPn_Parts" style="width:100%;height:100%;"><div class='ms-ToolPaneBorder ms-ToolPaneBody' style='height:100%;width:100%;overflow:auto;'><div id="ToolPartctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0" class="ms-TPBody"><div> 
            <table cellspacing="0" cellpadding="0" border="0" style="width:100%;border-collapse:collapse;">  
                <tr> 
                    <td><div class="UserSectionTitle"><id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AppearanceCategory_IMAGEANCHOR" TabIndex="0" onkeydown='MSOMenu_KeyboardClick(this, 13, 32);' style='cursor:hand' onclick="javascript:MSOTlPn_ToggleDisplay('ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AppearanceCategory', 'ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AppearanceCategory_IMAGE', 'ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AppearanceCategory_ANCHOR', 'D\u00E9velopper la cat\u00E9gorie\u00A0: Apparence', 'R\u00E9duire la cat\u00E9gorie\u00A0: Apparence','ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AppearanceCategory_IMAGEANCHOR');" title="Développer la catégorie : Apparence" >&nbsp;<img id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AppearanceCategory_IMAGE" alt="Développer la catégorie : Apparence" border="0" src="/_layouts/images/TPMax2.gif" />&nbsp;</a><a TabIndex="-1"  onkeydown='MSOMenu_KeyboardClick(this, 13, 32);' id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AppearanceCategory_ANCHOR" style='cursor:hand' onclick="javascript:MSOTlPn_ToggleDisplay('ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AppearanceCategory', 'ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AppearanceCategory_IMAGE', 'ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AppearanceCategory_ANCHOR', 'D\u00E9velopper la cat\u00E9gorie\u00A0: Apparence', 'R\u00E9duire la cat\u00E9gorie\u00A0: Apparence','ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AppearanceCategory_IMAGEANCHOR');" title="Développer la catégorie : Apparence" > &nbsp;Apparence</a></div></td> 
                </tr> 
            </table><div id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AppearanceCategory" style="display:none;">  
                <table cellspacing="0" border="0" style="border-width:0px;width:100%;border-collapse:collapse;">  
                    <tr> 
                        <td><div class="UserSectionHead"><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_Title_EDITOR" TITLE="Titre qui apparaît en haut du composant WebPart.">Titre</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl03$Title_EDITOR" type="text" value="Telerik RadEditor for MOSS" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_Title_EDITOR" class="UserInput" ms-TlPnWiden="true" onfocusin="MSOPGrid_BuilderVisible(ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_Title_BUILDER)" ondeactivate="MSOTlPn_prevBuilder=ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_Title_BUILDER;" style="width:176px;" />&nbsp;<input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl03$Title_BUILDER" type="button" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_Title_BUILDER" value="..." title="Cliquez pour utiliser le générateur" tabindex="0" class="ms-PropGridBuilderButton" onfocusout="this.style.display='none';" onclick="javascript:MSOPGrid_doBuilder('\u002f_layouts\u002fzoombldr.aspx?culture=fr-FR', ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_Title_EDITOR, 'dialogHeight:340px;dialogWidth:430px;help:no;status:no;resizable:yes')" /></nobr></div></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr layoutID="Height">  
                        <td><div class="UserSectionHead"><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl01_Height_EDITOR" TITLE="Ajuste la hauteur de ce composant WebPart lorsqu&#39;il apparaît sur la page de composants WebPart.">Hauteur</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><table id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl01_Height_EDITOR" cellspacing="0" cellpadding="2" onclick="MSOPGrid_HidePrevBuilder()" onfocusin="MSOPGrid_HidePrevBuilder()" border="0" style="border-collapse:collapse;border-collapse:collapse;">  
                            <tr> 
                                <td colspan="2"><span>La hauteur du composant WebPart doit-elle être fixe ?</span></td>  
                            </tr><tr>  
                                <td><input id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl01_YesOption" type="radio" name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl03$ctl01$DimensionEditorGroup" value="YesOption" /><label for="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl01_YesOption">Oui</label></td><td><input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl03$ctl01$SizeTextBox" type="text" size="5" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl01_SizeTextBox" title="Tapez un nombre pour la Hauteur." class="UserInput" style="text-align:right;" />&nbsp;<LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl01_UnitsDropdown" style='display:none;'>Sélectionnez une unité de mesure.</LABEL><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl01_UnitsDropdown" style='display:none;'>Sélectionnez une unité de mesure.</LABEL><select name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl03$ctl01$UnitsDropdown" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl01_UnitsDropdown">  
                                    <option value="Cm">Centim&#232;tres</option> 
                                    <option value="Inch">Pouces</option> 
                                    <option value="Mm">Millim&#232;tres</option> 
                                    <option value="Point">Points</option> 
                                    <option value="Pica">Picas</option> 
                                    <option selected="selected" value="Pixel">Pixels</option> 
 
                                </select></td>  
                            </tr><tr>  
                                <td colspan="2"><input id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl01_NoOption" type="radio" name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl03$ctl01$DimensionEditorGroup" value="NoOption" checked="checked" /><label for="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl01_NoOption">Non. Ajuster la hauteur à la zone.</label></td>  
                            </tr> 
                        </table></nobr></div></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr layoutID="Width">  
                        <td><div class="UserSectionHead"><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl02_Width_EDITOR" TITLE="Ajuste la largeur de ce composant WebPart lorsqu&#39;il apparaît sur la page de composants WebPart.">Largeur</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><table id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl02_Width_EDITOR" cellspacing="0" cellpadding="2" onclick="MSOPGrid_HidePrevBuilder()" onfocusin="MSOPGrid_HidePrevBuilder()" border="0" style="border-collapse:collapse;border-collapse:collapse;">  
                            <tr> 
                                <td colspan="2"><span>La largeur du composant WebPart doit-elle être fixe ?</span></td>  
                            </tr><tr>  
                                <td><input id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl02_YesOption" type="radio" name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl03$ctl02$DimensionEditorGroup" value="YesOption" /><label for="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl02_YesOption">Oui</label></td><td><input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl03$ctl02$SizeTextBox" type="text" size="5" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl02_SizeTextBox" title="Tapez un nombre pour la Largeur." class="UserInput" style="text-align:right;" />&nbsp;<LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl02_UnitsDropdown" style='display:none;'>Sélectionnez une unité de mesure.</LABEL><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl02_UnitsDropdown" style='display:none;'>Sélectionnez une unité de mesure.</LABEL><select name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl03$ctl02$UnitsDropdown" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl02_UnitsDropdown">  
                                    <option value="Cm">Centim&#232;tres</option> 
                                    <option value="Inch">Pouces</option> 
                                    <option value="Mm">Millim&#232;tres</option> 
                                    <option value="Point">Points</option> 
                                    <option value="Pica">Picas</option> 
                                    <option selected="selected" value="Pixel">Pixels</option> 
 
                                </select></td>  
                            </tr><tr>  
                                <td colspan="2"><input id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl02_NoOption" type="radio" name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl03$ctl02$DimensionEditorGroup" value="NoOption" checked="checked" /><label for="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ctl02_NoOption">Non. Ajuster la largeur à la zone.</label></td>  
                            </tr> 
                        </table></nobr></div></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr layoutID="ChromeState">  
                        <td><div class="UserSectionHead"><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ChromeState_EDITOR" TITLE="État initial du chrome du composant WebPart.">État de chrome</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><table id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ChromeState_EDITOR" onclick="MSOPGrid_HidePrevBuilder()" onfocusin="MSOPGrid_HidePrevBuilder()" border="0">  
                            <tr> 
                                <td><input id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ChromeState_EDITOR_0" type="radio" name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl03$ChromeState_EDITOR" value="Minimized" /><label for="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ChromeState_EDITOR_0">Réduit</label></td>  
                            </tr><tr>  
                                <td><input id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ChromeState_EDITOR_1" type="radio" name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl03$ChromeState_EDITOR" value="Normal" checked="checked" /><label for="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ChromeState_EDITOR_1">Normal</label></td>  
                            </tr> 
                        </table></nobr></div></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><LABEL  TITLE="Style du chrome du composant WebPart.">Style de cadre</LABEL><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ChromeType_EDITOR" style='display:none;'>Style de cadre</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><select name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl03$ChromeType_EDITOR" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl03_ChromeType_EDITOR" class="UserSelect" onclick="MSOPGrid_HidePrevBuilder()" onfocusin="MSOPGrid_HidePrevBuilder()">  
                            <option selected="selected" value="Default">Par d&#233;faut</option> 
                            <option value="None">Aucun</option> 
                            <option value="TitleAndBorder">Titre et bordure</option> 
                            <option value="TitleOnly">Titre seul</option> 
                            <option value="BorderOnly">Bordure uniquement</option> 
 
                        </select></nobr></div></div></td> 
                    </tr> 
                </table> 
            </div> 
        </div><div>  
            <table cellspacing="0" cellpadding="0" border="0" style="width:100%;border-collapse:collapse;">  
                <tr> 
                    <td><div class="UserSectionTitle"><id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_LayoutCategory_IMAGEANCHOR" TabIndex="0" onkeydown='MSOMenu_KeyboardClick(this, 13, 32);' style='cursor:hand' onclick="javascript:MSOTlPn_ToggleDisplay('ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_LayoutCategory', 'ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_LayoutCategory_IMAGE', 'ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_LayoutCategory_ANCHOR', 'D\u00E9velopper la cat\u00E9gorie\u00A0: Disposition', 'R\u00E9duire la cat\u00E9gorie\u00A0: Disposition','ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_LayoutCategory_IMAGEANCHOR');" title="Développer la catégorie : Disposition" >&nbsp;<img id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_LayoutCategory_IMAGE" alt="Développer la catégorie : Disposition" border="0" src="/_layouts/images/TPMax2.gif" />&nbsp;</a><a TabIndex="-1"  onkeydown='MSOMenu_KeyboardClick(this, 13, 32);' id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_LayoutCategory_ANCHOR" style='cursor:hand' onclick="javascript:MSOTlPn_ToggleDisplay('ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_LayoutCategory', 'ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_LayoutCategory_IMAGE', 'ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_LayoutCategory_ANCHOR', 'D\u00E9velopper la cat\u00E9gorie\u00A0: Disposition', 'R\u00E9duire la cat\u00E9gorie\u00A0: Disposition','ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_LayoutCategory_IMAGEANCHOR');" title="Développer la catégorie : Disposition" > &nbsp;Disposition</a></div></td> 
                </tr> 
            </table><div id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_LayoutCategory" style="display:none;">  
                <table cellspacing="0" border="0" style="border-width:0px;width:100%;border-collapse:collapse;">  
                    <tr> 
                        <td><div class="UserSectionHead"><span onfocusin="MSOPGrid_HidePrevBuilder()"><input id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl07_Hidden_EDITOR" type="checkbox" name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl07$Hidden_EDITOR" onclick="MSOPGrid_HidePrevBuilder();" /></span>&nbsp;&nbsp;<LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl07_Hidden_EDITOR" TITLE="Spécifie si le composant WebPart est masqué ou affiché.">Masqué</LABEL></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><LABEL  TITLE="Sens du texte dans le composant WebPart.">Sens</LABEL><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl07_Direction_EDITOR" style='display:none;'>Sens</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><select name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl07$Direction_EDITOR" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl07_Direction_EDITOR" class="UserSelect" onclick="MSOPGrid_HidePrevBuilder()" onfocusin="MSOPGrid_HidePrevBuilder()">  
                            <option selected="selected" value="NotSet">Aucun</option> 
                            <option value="LeftToRight">De gauche &#224; droite</option> 
                            <option value="RightToLeft">De droite &#224; gauche</option> 
 
                        </select></nobr></div></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><LABEL  TITLE="Identificateur de chaîne de la zone à laquelle le composant WebPart appartient.">Zone</LABEL><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl07_Zone_EDITOR" style='display:none;'>Zone</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><select name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl07$Zone_EDITOR" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl07_Zone_EDITOR" class="UserSelect" layoutID="Zone" onclick="MSOPGrid_HidePrevBuilder()" onfocusin="MSOPGrid_HidePrevBuilder()">  
                            <option selected="selected" value="FullPage">Page enti&#232;re</option> 
 
                        </select></nobr></div></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl07_ZoneIndex_EDITOR" TITLE="Valeur d&#39;entier qui spécifie l&#39;index du composant WebPart dans une zone.">Index de zone</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl07$ZoneIndex_EDITOR" type="text" value="0" size="10" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl07_ZoneIndex_EDITOR" class="UserInput" layoutID="ZoneIndex" onclick="MSOPGrid_HidePrevBuilder()" onfocusin="MSOPGrid_HidePrevBuilder()" style="text-align:right;" /></nobr></div></div></td> 
                    </tr> 
                </table> 
            </div> 
        </div><div>  
            <table cellspacing="0" cellpadding="0" border="0" style="width:100%;border-collapse:collapse;">  
                <tr> 
                    <td><div class="UserSectionTitle"><id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AdvancedCategory_IMAGEANCHOR" TabIndex="0" onkeydown='MSOMenu_KeyboardClick(this, 13, 32);' style='cursor:hand' onclick="javascript:MSOTlPn_ToggleDisplay('ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AdvancedCategory', 'ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AdvancedCategory_IMAGE', 'ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AdvancedCategory_ANCHOR', 'D\u00E9velopper la cat\u00E9gorie\u00A0: Param\u00E8tres avanc\u00E9s', 'R\u00E9duire la cat\u00E9gorie\u00A0: Param\u00E8tres avanc\u00E9s','ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AdvancedCategory_IMAGEANCHOR');" title="Développer la catégorie : Paramètres avancés" >&nbsp;<img id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AdvancedCategory_IMAGE" alt="Développer la catégorie : Paramètres avancés" border="0" src="/_layouts/images/TPMax2.gif" />&nbsp;</a><a TabIndex="-1"  onkeydown='MSOMenu_KeyboardClick(this, 13, 32);' id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AdvancedCategory_ANCHOR" style='cursor:hand' onclick="javascript:MSOTlPn_ToggleDisplay('ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AdvancedCategory', 'ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AdvancedCategory_IMAGE', 'ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AdvancedCategory_ANCHOR', 'D\u00E9velopper la cat\u00E9gorie\u00A0: Param\u00E8tres avanc\u00E9s', 'R\u00E9duire la cat\u00E9gorie\u00A0: Param\u00E8tres avanc\u00E9s','ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AdvancedCategory_IMAGEANCHOR');" title="Développer la catégorie : Paramètres avancés" > &nbsp;Paramètres avancés</a></div></td> 
                </tr> 
            </table><div id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_AdvancedCategory" style="display:none;">  
                <table cellspacing="0" border="0" style="border-width:0px;width:100%;border-collapse:collapse;">  
                    <tr> 
                        <td><div class="UserSectionHead"><span onfocusin="MSOPGrid_HidePrevBuilder()"><input id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AllowMinimize_EDITOR" type="checkbox" name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$AllowMinimize_EDITOR" checked="checked" onclick="MSOPGrid_HidePrevBuilder();" /></span>&nbsp;&nbsp;<LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AllowMinimize_EDITOR" TITLE="Spécifie si le composant WebPart peut être réduit.">Autoriser la réduction</LABEL></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><span onfocusin="MSOPGrid_HidePrevBuilder()"><input id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AllowClose_EDITOR" type="checkbox" name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$AllowClose_EDITOR" checked="checked" onclick="MSOPGrid_HidePrevBuilder();" /></span>&nbsp;&nbsp;<LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AllowClose_EDITOR" TITLE="Spécifie si le composant WebPart peut être supprimé d&#39;une page de composants WebPart.">Autoriser la fermeture</LABEL></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><span onfocusin="MSOPGrid_HidePrevBuilder()"><input id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AllowHide_EDITOR" type="checkbox" name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$AllowHide_EDITOR" checked="checked" onclick="MSOPGrid_HidePrevBuilder();" /></span>&nbsp;&nbsp;<LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AllowHide_EDITOR" TITLE="Spécifie si le composant WebPart peut être masqué.">Autoriser les éléments masqués</LABEL></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><span onfocusin="MSOPGrid_HidePrevBuilder()"><input id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AllowZoneChange_EDITOR" type="checkbox" name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$AllowZoneChange_EDITOR" checked="checked" onclick="MSOPGrid_HidePrevBuilder();" /></span>&nbsp;&nbsp;<LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AllowZoneChange_EDITOR" TITLE="Spécifie si le composant WebPart peut être déplacé vers une zone différente.">Autoriser le changement de zone</LABEL></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><span onfocusin="MSOPGrid_HidePrevBuilder()"><input id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AllowConnect_EDITOR" type="checkbox" name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$AllowConnect_EDITOR" checked="checked" onclick="MSOPGrid_HidePrevBuilder();" /></span>&nbsp;&nbsp;<LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AllowConnect_EDITOR" TITLE="Spécifie si le composant WebPart peut participer aux connexions.">Autoriser les connexions</LABEL></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><span onfocusin="MSOPGrid_HidePrevBuilder()"><input id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AllowEdit_EDITOR" type="checkbox" name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$AllowEdit_EDITOR" checked="checked" onclick="MSOPGrid_HidePrevBuilder();" /></span>&nbsp;&nbsp;<LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AllowEdit_EDITOR" TITLE="Spécifie si les propriétés du composant WebPart peuvent être modifiées.">Autoriser les modifications en mode Affichage personnel</LABEL></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><LABEL  TITLE="Niveau d&#39;exportation devant être autorisé pour ce composant WebPart. ">Mode d&#39;exportation</LABEL><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_ExportMode_EDITOR" style='display:none;'>Mode d&#39;exportation</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><select name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$ExportMode_EDITOR" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_ExportMode_EDITOR" class="UserSelect" onclick="MSOPGrid_HidePrevBuilder()" onfocusin="MSOPGrid_HidePrevBuilder()">  
                            <option value="NonSensitiveData">Donn&#233;es non sensibles uniquement</option> 
                            <option selected="selected" value="All">Exporter toutes les donn&#233;es</option> 
 
                        </select></nobr></div></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_TitleUrl_EDITOR" TITLE="Chemin d&#39;adresse Web vers un fichier HTML qui contient des informations facultatives sur le composant WebPart.">URL de titre</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$TitleUrl_EDITOR" type="text" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_TitleUrl_EDITOR" class="UserInput" ms-TlPnWiden="true" onfocusin="MSOPGrid_BuilderVisible(ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_TitleUrl_BUILDER)" ondeactivate="MSOTlPn_prevBuilder=ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_TitleUrl_BUILDER;" style="width:176px;direction:ltr;" />&nbsp;<input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$TitleUrl_BUILDER" type="button" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_TitleUrl_BUILDER" value="..." title="Cliquez pour utiliser le générateur" tabindex="0" class="ms-PropGridBuilderButton" onfocusout="this.style.display='none';" onclick="javascript:MSOPGrid_doBuilder('\u002f_layouts\u002fzoombldr.aspx?culture=fr-FR', ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_TitleUrl_EDITOR, 'dialogHeight:340px;dialogWidth:430px;help:no;status:no;resizable:yes')" /></nobr></div></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_Description_EDITOR" TITLE="Description qui apparaît lorsque l&#39;utilisateur place le pointeur de la souris sur le titre ou les icônes du composant WebPart.">Description</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$Description_EDITOR" type="text" value="Cross-browser rich content editor from Telerik" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_Description_EDITOR" class="UserInput" ms-TlPnWiden="true" onfocusin="MSOPGrid_BuilderVisible(ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_Description_BUILDER)" ondeactivate="MSOTlPn_prevBuilder=ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_Description_BUILDER;" style="width:176px;" />&nbsp;<input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$Description_BUILDER" type="button" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_Description_BUILDER" value="..." title="Cliquez pour utiliser le générateur" tabindex="0" class="ms-PropGridBuilderButton" onfocusout="this.style.display='none';" onclick="javascript:MSOPGrid_doBuilder('\u002f_layouts\u002fzoombldr.aspx?culture=fr-FR', ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_Description_EDITOR, 'dialogHeight:340px;dialogWidth:430px;help:no;status:no;resizable:yes')" /></nobr></div></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_HelpUrl_EDITOR" TITLE="Chemin d&#39;une adresse Web vers un fichier d&#39;aide au format HTML.">URL de l&#39;aide</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$HelpUrl_EDITOR" type="text" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_HelpUrl_EDITOR" class="UserInput" ms-TlPnWiden="true" onfocusin="MSOPGrid_BuilderVisible(ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_HelpUrl_BUILDER)" ondeactivate="MSOTlPn_prevBuilder=ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_HelpUrl_BUILDER;" style="width:176px;direction:ltr;" />&nbsp;<input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$HelpUrl_BUILDER" type="button" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_HelpUrl_BUILDER" value="..." title="Cliquez pour utiliser le générateur" tabindex="0" class="ms-PropGridBuilderButton" onfocusout="this.style.display='none';" onclick="javascript:MSOPGrid_doBuilder('\u002f_layouts\u002fzoombldr.aspx?culture=fr-FR', ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_HelpUrl_EDITOR, 'dialogHeight:340px;dialogWidth:430px;help:no;status:no;resizable:yes')" /></nobr></div></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><LABEL  TITLE="Type de fenêtre d&#39;aide utilisée pour afficher la rubrique d&#39;aide.">Mode d&#39;aide</LABEL><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_HelpMode_EDITOR" style='display:none;'>Mode d&#39;aide</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><select name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$HelpMode_EDITOR" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_HelpMode_EDITOR" class="UserSelect" onclick="MSOPGrid_HidePrevBuilder()" onfocusin="MSOPGrid_HidePrevBuilder()">  
                            <option value="Modal">Modal</option> 
                            <option selected="selected" value="Modeless">Non modal</option> 
                            <option value="Navigate">Naviguer</option> 
 
                        </select></nobr></div></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_CatalogIconImageUrl_EDITOR" TITLE="Chemin d&#39;une adresse Web vers une petite image d&#39;icône (16 x 16 pixels).">URL de l&#39;image de l&#39;icône de catalogue</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$CatalogIconImageUrl_EDITOR" type="text" value="/_layouts/images/radeditor.gif" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_CatalogIconImageUrl_EDITOR" class="UserInput" ms-TlPnWiden="true" onfocusin="MSOPGrid_BuilderVisible(ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_CatalogIconImageUrl_BUILDER)" ondeactivate="MSOTlPn_prevBuilder=ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_CatalogIconImageUrl_BUILDER;" style="width:176px;direction:ltr;" />&nbsp;<input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$CatalogIconImageUrl_BUILDER" type="button" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_CatalogIconImageUrl_BUILDER" value="..." title="Cliquez pour utiliser le générateur" tabindex="0" class="ms-PropGridBuilderButton" onfocusout="this.style.display='none';" onclick="javascript:MSOPGrid_doBuilder('\u002f_layouts\u002fzoombldr.aspx?culture=fr-FR', ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_CatalogIconImageUrl_EDITOR, 'dialogHeight:340px;dialogWidth:430px;help:no;status:no;resizable:yes')" /></nobr></div></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_TitleIconImageUrl_EDITOR" TITLE="Chemin d&#39;une adresse Web vers une petite image d&#39;icône (16 x 16 pixels).">URL de l&#39;image de l&#39;icône de titre</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$TitleIconImageUrl_EDITOR" type="text" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_TitleIconImageUrl_EDITOR" class="UserInput" ms-TlPnWiden="true" onfocusin="MSOPGrid_BuilderVisible(ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_TitleIconImageUrl_BUILDER)" ondeactivate="MSOTlPn_prevBuilder=ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_TitleIconImageUrl_BUILDER;" style="width:176px;direction:ltr;" />&nbsp;<input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$TitleIconImageUrl_BUILDER" type="button" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_TitleIconImageUrl_BUILDER" value="..." title="Cliquez pour utiliser le générateur" tabindex="0" class="ms-PropGridBuilderButton" onfocusout="this.style.display='none';" onclick="javascript:MSOPGrid_doBuilder('\u002f_layouts\u002fzoombldr.aspx?culture=fr-FR', ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_TitleIconImageUrl_EDITOR, 'dialogHeight:340px;dialogWidth:430px;help:no;status:no;resizable:yes')" /></nobr></div></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_ImportErrorMessage_EDITOR" TITLE="Message indiquant l&#39;échec de l&#39;importation du composant WebPart.">Message d&#39;erreur d&#39;importation</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$ImportErrorMessage_EDITOR" type="text" value="Impossible d'importer ce composant WebPart." id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_ImportErrorMessage_EDITOR" class="UserInput" ms-TlPnWiden="true" onfocusin="MSOPGrid_BuilderVisible(ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_ImportErrorMessage_BUILDER)" ondeactivate="MSOTlPn_prevBuilder=ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_ImportErrorMessage_BUILDER;" style="width:176px;" />&nbsp;<input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$ImportErrorMessage_BUILDER" type="button" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_ImportErrorMessage_BUILDER" value="..." title="Cliquez pour utiliser le générateur" tabindex="0" class="ms-PropGridBuilderButton" onfocusout="this.style.display='none';" onclick="javascript:MSOPGrid_doBuilder('\u002f_layouts\u002fzoombldr.aspx?culture=fr-FR', ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_ImportErrorMessage_EDITOR, 'dialogHeight:340px;dialogWidth:430px;help:no;status:no;resizable:yes')" /></nobr></div></div><div style='width:100%' class='UserDottedLine'></div></td>  
                    </tr><tr>  
                        <td><div class="UserSectionHead"><LABEL FOR="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR" TITLE="Chaîne utilisée par le WebPartManager pour déterminer si l&#39;utilisateur est autorisé à afficher ce WebPart.">Audiences ciblées</LABEL></div><div class="UserSectionBody"><div class="UserControlGroup"><nobr><span id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR" RemoveText="Supprimer" value="" NoMatchesText="&lt;Aucun nom correspondant>" allowEmpty="1" onclick="MSOPGrid_HidePrevBuilder()" MoreItemsText="Plus de noms..." EEAfterCallbackClientScript="" onfocusin="MSOPGrid_HidePrevBuilder()" ShowEntityDisplayTextInTextBox="0"><input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$AuthorizationFilter_EDITOR$hiddenSpanData" type="hidden" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR_hiddenSpanData" /><input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$AuthorizationFilter_EDITOR$OriginalEntities" type="hidden" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR_OriginalEntities" value="&lt;Entities />" /><input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$AuthorizationFilter_EDITOR$HiddenEntityKey" type="hidden" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR_HiddenEntityKey" /><input name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$AuthorizationFilter_EDITOR$HiddenEntityDisplayText" type="hidden" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR_HiddenEntityDisplayText" /><table id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR_OuterTable" cellspacing="0" cellpadding="0" border="0" style="border-collapse:collapse;">  
                            <tr valign="bottom">  
                                <td valign="top" style="width:90%;"><table cellpadding="0" cellspacing="0" border="0" style="width:100%;table-layout:fixed;">  
                                    <tr> 
                                        <td><div id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR_upLevelDiv" TabIndex="0" onFocusIn="this._fFocus=1;saveOldEntities('ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR_upLevelDiv')" onClick="onClickRw(true, true);" onChange="updateControlValue('ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR')" onFocusOut="this._fFocus=0;" onPaste="dopaste();" AutoPostBack="0" class="ms-inputuserfield" onDragStart="canEvt(event);" onKeyup="return onKeyUpRw('ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR');" onCopy="docopy();" onBlur="updateControlValue('ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR')" Title="Éditeur d'audience" onKeyDown="return onKeyDownRw(this, 'ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR', 3, true, event);" contentEditable="true" style="width: 100%; word-wrap: break-work;overflow-x: hidden; background-color: window; color: windowtext;overflow-y: auto;" name="upLevelDiv"></div><textarea name="ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$AuthorizationFilter_EDITOR$downlevelTextBox" rows="1" cols="20" id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR_downlevelTextBox" class="ms-input" onKeyDown="return onKeyDownRw(this, 'ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR', 3, true, event);" onKeyUp="onKeyUpRw('ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR');" Title="Éditeur d'audience" AutoPostBack="0" style="width:100%;display: none;position: absolute; "></textarea></td>  
                                    </tr> 
                                </table></td><td align="right" valign="top" nowrap="true" style="padding-left:5px;"><id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR_checkNames" title="Vérifier les noms" onclick="var arg=getUplevel('ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR');var ctx='ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR';EntityEditorSetWaitCursor(ctx);WebForm_DoCallback('ctl00$MSOTlPn_EditorZone$Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0$ctl11$AuthorizationFilter_EDITOR',arg,EntityEditorHandleCheckNameResult,ctx,EntityEditorHandleCheckNameError,true);return false;" href="javascript:"><img title="Vérifier les noms" src="/_layouts/images/checkaudience.gif" alt="Vérifier les noms" style="border-width:0px;" /></a>&nbsp;<id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR_browse" accesskey="B" title="Parcourir" onclick="__Dialog__ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR(); return false;" href="javascript:"><img title="Parcourir" src="/_layouts/images/addressbook.gif" alt="Parcourir" style="border-width:0px;" /></a></td> 
                            </tr><tr>  
                                <td colspan="3"><span id="ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR_errorLabel" class="ms-error"></span></td>  
                            </tr> 
                        </table></span></nobr></div></div></td>  
                    </tr> 
                </table> 
            </div> 
        </div></div><div class='ms-ToolPartSpacing'></div><div id="ToolPartctl00_MSOTlPn_EditorZone_Edit1g_c407b74b_92e2_4311_892b_f6ae2342b0f0" class="ms-TPBody"><script type="text/javascript">  
            var octl00_MSOTlPn_EditorZone_Edit1g_c407b74b_92e2_4311_892b_f6ae2342b0f0 = new RadEditorToolPart();var editorToolPart = octl00_MSOTlPn_EditorZone_Edit1g_c407b74b_92e2_4311_892b_f6ae2342b0f0;octl00_MSOTlPn_EditorZone_Edit1g_c407b74b_92e2_4311_892b_f6ae2342b0f0.ResourcePath = "/_wpresources/RadEditorSharePoint/5.6.0.0__1f131a624888eeed/Resources";octl00_MSOTlPn_EditorZone_Edit1g_c407b74b_92e2_4311_892b_f6ae2342b0f0.ContentHolderId = "Contentctl00$MSOTlPn_EditorZone$Edit1g_c407b74b_92e2_4311_892b_f6ae2342b0f0";  
        </script><br /><textarea id="Contentctl00$MSOTlPn_EditorZone$Edit1g_c407b74b_92e2_4311_892b_f6ae2342b0f0" name="Contentctl00$MSOTlPn_EditorZone$Edit1g_c407b74b_92e2_4311_892b_f6ae2342b0f0" style="display:none">%3Cstrong%3ETestTestTest...%3C/strong%3E</textarea></div><div class='ms-ToolPartSpacing'></div></div></td> 
    </tr><tr>  
 
    </tr><tr>  
        <td valign="bottom" id="MSOTlPn_CommandUI" nowrap="true"><div class="ms-toolpanefooter" id="MSOTlPn_ToolPaneButtons">  
            <input type="submit" name="ctl00$MSOTlPn_EditorZone$MSOTlPn_OKBtn" value="OK" onclick="javascript:octl00_MSOTlPn_EditorZone_Edit1g_c407b74b_92e2_4311_892b_f6ae2342b0f0.OnEditorUpdate();" id="ctl00_MSOTlPn_EditorZone_MSOTlPn_OKBtn" accesskey="O" class="UserButton" style="width:64px;" />&nbsp<input type="submit" name="ctl00$MSOTlPn_EditorZone$MSOTlPn_CnclBtn" value="Annuler" id="ctl00_MSOTlPn_EditorZone_MSOTlPn_CnclBtn" accesskey="C" title="Annuler les modifications" class="UserButton" style="width:64px;" />&nbsp<input type="submit" name="ctl00$MSOTlPn_EditorZone$MSOTlPn_AppBtn" value="Appliquer" onclick="javascript:octl00_MSOTlPn_EditorZone_Edit1g_c407b74b_92e2_4311_892b_f6ae2342b0f0.OnEditorApply();" id="ctl00_MSOTlPn_EditorZone_MSOTlPn_AppBtn" accesskey="Y" title="Appliquer les modifications" class="UserButton" style="width:64px;" /> 
        </div></td>  
    </tr> 
</table></td></tr></table><script language='javascript'>MSOTlPn_CheckUrl(); </script></PlaceHolder>  
      </td> 
      <td class="ms-rightareacell">  
    <div height=100class="ms-pagemargin"><IMG SRC="/_layouts/images/blank.gif" width=10 height=1 alt=""></div> 
</td> 
    </TR> 
<tr> 
    <td class="ms-pagebottommarginleft"><IMG SRC="/_layouts/images/blank.gif" width=1 height=10 alt=""></td> 
    <td class="ms-pagebottommargin"><IMG SRC="/_layouts/images/blank.gif" width=1 height=10 alt=""></td> 
    <td class="ms-bodyareapagemargin"><IMG SRC="/_layouts/images/blank.gif" width=1 height=10 alt=""></td> 
    <td class="ms-pagebottommarginright"><IMG SRC="/_layouts/images/blank.gif" width=1 height=10 alt=""></td> 
</tr> 
    </TABLE></TD></TR> 
  </TABLE> 
    
        
    
   <input type="text" name="__spDummyText1" style="display:none;" size=1/>  
   <input type="text" name="__spDummyText2" style="display:none;" size=1/>  
    
<div> 
 
    <input type="hidden" name="ToolPartctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0ChromeState" id="ToolPartctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0ChromeState" value="Normal" /> 
    <input type="hidden" name="ToolPartctl00_MSOTlPn_EditorZone_Edit1g_c407b74b_92e2_4311_892b_f6ae2342b0f0ChromeState" id="ToolPartctl00_MSOTlPn_EditorZone_Edit1g_c407b74b_92e2_4311_892b_f6ae2342b0f0ChromeState" value="Normal" /> 
    <input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="/wEWRQLZtuSkAwKpn5bCCwKykbewCwLg8Za2BQKnsoTWBgKRvP7FBQKiidrZDQKrtp7wAwL2lfe6BALpyvbrBgLIlfe6BALU663aCALgytbfCAK377z7DgLMydCQBwLj4qD3DgLa+sj7AwLU7MW4BQLLs8TpBwLq7MW4BQL2kp/YCQLCs+TdCQKVlo75DwKNoqq+BALc2rK1BALMwoXRCgLr7/qFCwLkpPGpDALJ7++7AQLU6pW0DAK86NKvBQLEsqytDwKvyOfKCwKlhauFBwLU09C8BwL/07SvDgKJ8aWKDgLNmpHwDwLlvKmbCgKZl4PJDgKi/vrwCwLQ+cC5BgLFivDwAgL7lcexAgKe+NL2DALC96LuCgLj64zGCgLW9K/CCQKflvbQCgKP0K/8DQLu3qeQCgKepOb2BAL4o9qdAgLdlcyCBALUprfaCwLwm67DDQKw9Ym4DwLL/5OmBwL55ZqrDAKukaT/DwLhw42eDQKYhd7CCgKbtanlBwLQzfSDCgL3lNjxCAL2pfmJCQLimZaSCQKTt/L0DALhjo/kDw2X+U8EOPL5UGky+qPHLOrsDTHU" /> 
</div> 
 
<script type="text/javascript">  
//<![CDATA[
WebForm_InitCallback();//]]> 
</script> 
<script> MSOLayout_SetupLayoutFlags(); </script> 
<script type="text/javascript">  
//<![CDATA[
var __wpmExportWarning='Cette page WebPart a été personnalisée. Par conséquent, une ou plusieurs propriétés peuvent contenir des informations confidentielles. Assurez-vous que les propriétés comportent des informations jugées fiables pour la lecture par d\'autres personnes. Après avoir exporté ce WebPart, affichez les propriétés dans le fichier de description du WebPart (.WebPart) à l\'aide d\'un éditeur de texte comme le Bloc-notes Microsoft.';var __wpmCloseProviderWarning='Vous êtes sur le point de fermer ce WebPart. Il fournit actuellement des données à d\'autres WebParts et ces connexions seront supprimées s\'il est fermé. Pour fermer ce WebPart, cliquez sur OK. Pour le conserver, cliquez sur Annuler.';var __wpmDeleteWarning='Vous êtes sur le point de supprimer définitivement ce WebPart. Êtes-vous sûr de vouloir continuer ? Pour supprimer ce WebPart, cliquez sur OK. Pour le conserver, cliquez sur Annuler.';//]]> 
</script> 
<span><menu id="MSOMenu_SettingsMenu" class="ms-SrvMenuUI">  
    <ie:menuitem id="MSOMenu_AddWebParts" type="submenu">  
        <ie:menuitem type="label">  
            Ajouter des composants WebPart  
        </ie:menuitem><ie:menuitem id="MSOMenu_BrowseGallery" onMenuClick="javascript:MSOTlPn_ShowToolPane2('Catalog');" type="option">  
            Parcourir  
        </ie:menuitem><ie:menuitem id="MSOMenu_SearchGallery" onMenuClick="javascript:MSOTlPn_ShowToolPane2('GallerySearch');" type="option">  
            Rechercher  
        </ie:menuitem><ie:menuitem id="MSOMenu_ImportGallery" onMenuClick="javascript:MSOTlPn_ShowToolPane2('Import');" type="option">  
            Importer  
        </ie:menuitem> 
    </ie:menuitem><ie:menuitem type="separator" /><ie:menuitem id="MSOMenu_LayoutMenuOption" onMenuClick="MSOLayout_ToggleLayoutMode()" disabled="true" checked="true" type="option">  
        Modifier cette page  
    </ie:menuitem><ie:menuitem type="separator" /><ie:menuitem id="MSOMenu_ModifyWebParts" type="submenu">  
        <ie:menuitem type="label">  
            Modifier des composants WebPart partagés  
        </ie:menuitem><ie:menuitem onMenuClick="javascript:MSOTlPn_ShowToolPane2('Edit','g_e29dcf60_1f1f_420a_b17c_174fd8eaadf7');" type="option">  
            Barre de titre de la page de composants ...  
        </ie:menuitem><ie:menuitem onMenuClick="javascript:MSOTlPn_ShowToolPane2('Edit','g_c407b74b_92e2_4311_892b_f6ae2342b0f0');" type="option">  
            Telerik RadEditor for MOSS  
        </ie:menuitem> 
    </ie:menuitem><ie:menuitem type="separator" /><ie:menuitem id="MSOMenu_ChangesAllUsers" iconAltText="Affichage partagé" iconSrc="/_layouts/images/AllUsrCk.gif" onMenuClick="return;" title="Basculer en mode Affichage partagé. Les modifications s&#39;appliqueront à tous les utilisateurs. (sélectionné)" type="option">  
        Affichage partagé  
    </ie:menuitem><ie:menuitem id="MSOMenu_ChangesOnlyMe" iconAltText="Affichage personnel" iconSrc="/_layouts/images/PerUsr.gif" onMenuClick="javascript:MSOMode_SetMode(false)" title="Basculer en mode Affichage personnel. Les modifications ne s&#39;appliqueront qu&#39;à moi." type="option">  
        Affichage personnel  
    </ie:menuitem> 
</menu></span><script type="text/javascript" language="JavaScript" defer> 
<!--  
function S6AE27B38_Submit() {GoSearch(null,'ctl00_PlaceHolderSearchArea_ctl01_S6AE27B38_InputKeywords',null,true,true,'ctl00_PlaceHolderSearchArea_ctl01_SBScopesDDL','ctl00_PlaceHolderSearchArea_ctl01_ctl00',null,null,'http:\u002f\u002fserveur:55555\u002f_layouts\u002fOSSSearchResults.aspx', 'Ce site','Cette liste', 'Ce dossier', 'Sites associés', '\u002f_layouts\u002fOSSSearchResults.aspx');}  
// --> 
</script><script type="text/javascript" language="JavaScript" > 
// append an onload event handler  
var S6AE27B38__onloaddocument.body.onload;  
if(typeof document.body.onload == 'function')  
{  
 document.body.onload = function()  
 {  
S6AE27B38__onload();          
  document.getElementById('ctl00_PlaceHolderSearchArea_ctl01_S6AE27B38_InputKeywords').name = 'InputKeywords';  
 }  
}  
else  
{  
 document.body.onload = function()  
 {  
  eval(S6AE27B38__onload);          
  document.getElementById('ctl00_PlaceHolderSearchArea_ctl01_S6AE27B38_InputKeywords').name = 'InputKeywords';  
 }  
}  
 
function S6AE27B38_OSBEK(event1) {   
var kCode = String.fromCharCode(event1.keyCode);  
if(kCode == "\n" || kCode == "\r")  
{     
S6AE27B38_Submit();  
}  
}  
// --> 
</script> 
<script type="text/javascript">  
//<![CDATA[
var zz1_TopNavigationMenu_Data = new Object();
zz1_TopNavigationMenu_Data.disappearAfter = 500;
zz1_TopNavigationMenu_Data.horizontalOffset = 0;
zz1_TopNavigationMenu_Data.verticalOffset = 0;
zz1_TopNavigationMenu_Data.hoverClass = 'zz1_TopNavigationMenu_16 ms-topNavFlyOutsHover';
zz1_TopNavigationMenu_Data.hoverHyperLinkClass = 'zz1_TopNavigationMenu_15 ms-topNavFlyOutsHover';
zz1_TopNavigationMenu_Data.staticHoverClass = 'zz1_TopNavigationMenu_14 ms-topNavHover';
zz1_TopNavigationMenu_Data.staticHoverHyperLinkClass = 'zz1_TopNavigationMenu_13 ms-topNavHover';
if (typeof(overrideMenu_HoverStatic) == 'function' && typeof(Menu_HoverStatic) == 'function')
{
_spBodyOnLoadFunctionNames.push('enableFlyoutsAfterDelay');
Menu_HoverStatic = overrideMenu_HoverStatic;
}
var flyoutsAllowed = false;
function enableFlyoutsAfterDelay()
{
setTimeout('flyoutsAllowed = true;', 50);
}
function overrideMenu_HoverStatic(item)
{
if (!flyoutsAllowed || (document.readyState != null && document.readyState != 'complete'))
{
setTimeout(delayMenu_HoverStatic(item), 50);
}
else
{
// this code is the default ASP.NET implementation of Menu_HoverStatic
var node = Menu_HoverRoot(item);
var data = Menu_GetData(item);
if (!data) return;
__disappearAfter = data.disappearAfter;
Menu_Expand(node, data.horizontalOffset, data.verticalOffset);
}
}
function delayMenu_HoverStatic(item)
{
return (function()
{
overrideMenu_HoverStatic(item);
});
}
//]]> 
</script> 
<SCRIPT LANGUAGE='JScript'> window.attachEvent('onload',new Function("if (document.body.all['MSOTlPn_TlPnCaptionSpan']!= null) document.body.all['MSOTlPn_TlPnCaptionSpan'].focus();"));</script> 
<script type="text/javascript">  
//<![CDATA[
PickerAdjustHeight('ctl00_MSOTlPn_EditorZone_Edit0g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl11_AuthorizationFilter_EDITOR', 3);//]]> 
</script> 
<script type='text/javascript' src='/_wpresources/RadEditorSharePoint/5.6.0.0__1f131a624888eeed/Resources/MOSSEditorTools.js'></script><SCRIPT LANGUAGE='JavaScript' > 
<!--  
WPSC.Init(document);  
var varPartWPQ2 = WPSC.WebPartPage.Parts.Register('WPQ2','e29dcf60-1f1f-420a-b17c-174fd8eaadf7',document.all.item('WebPartWPQ2'));  
var varPartWPQ3 = WPSC.WebPartPage.Parts.Register('WPQ3','c407b74b-92e2-4311-892b-f6ae2342b0f0',document.all.item('WebPartWPQ3'));  
var varPartWPQ1 = WPSC.WebPartPage.Parts.Register('WPQ1','00000000-0000-0000-0000-000000000000',document.all.item('WebPartWPQ1'));  
WPSC.WebPartPage.WebURL = 'http:\u002f\u002fserveur:55555';  
WPSC.WebPartPage.WebServerRelativeURL = '\u002f';  
 
//--> 
</SCRIPT><span style="display:none;"><menu id="MSOMenu_WebPartMenu" class="ms-SrvMenuUI">  
    <ie:menuitem id="MSOMenu_Minimize" onMenuClick="javascript:MSOLayout_MinimizeRestore(MenuWebPart)" type="option">  
        Réduire  
    </ie:menuitem><ie:menuitem id="MSOMenu_Restore" onMenuClick="javascript:MSOLayout_MinimizeRestore(MenuWebPart)" type="option">  
        Restaurer  
    </ie:menuitem><ie:menuitem id="MSOMenu_Close" onMenuClick="javascript:MSOLayout_RemoveWebPart(MenuWebPart)" type="option">  
        Fermer  
    </ie:menuitem><ie:menuitem id="MSOMenu_Delete" iconSrc="/_layouts/images/DelItem.gif" onMenuClick="if(confirm(&#39;Vous \u00EAtes sur le point de supprimer d\u00E9finitivement ce composant WebPart. \u00CAtes-vous s\u00FBr de vouloir effectuer cette suppression\u00A0?\\nPour supprimer ce composant WebPart, cliquez sur OK. Pour le conserver, cliquez sur Annuler.&#39;)) {MSOWebPartPage_partDeleted = MenuWebPartID;MSOWebPartPage_MenuDoPostBack(&#39;ctl00$m&#39;, MenuWebPartID + &#39;;MSOMenu_Delete&#39;);}" type="option">  
        Supprimer  
    </ie:menuitem><ie:menuitem type="separator" /><ie:menuitem title="Modifie les propriétés de ce composant WebPart partagé. Ces modifications s&#39;appliqueront à tous les utilisateurs." id="MSOMenu_Edit" iconSrc="/_layouts/images/EditItem.gif" onMenuClick="javascript:MSOTlPn_ShowToolPane2Wrapper(&#39;Edit&#39;, 16, MenuWebPartID)" type="option">  
        Modifier le composant WebPart partagé  
    </ie:menuitem><ie:menuitem id="MSOMenu_Connections" onMenuClick="" type="option">  
        Connexions  
    </ie:menuitem><ie:menuitem type="separator" /><ie:menuitem id="MSOMenu_Export" onMenuClick="javascript:MSOWebPartPage_ExportCheckWarning(&#39;\u002f_vti_bin\u002fexportwp.aspx?pageurl=http\u00253A\u00252F\u00252Fserveur\u00253A55555\u00252FDocLib\u00252FFull\u00252Easpx\u0026guidstring=&#39;+ escape(MenuWebPartID), MenuWebPart.getAttribute(&#39;HasPers&#39;) == &#39;true&#39;)" type="option">  
        Exporter...  
    </ie:menuitem><ie:menuitem id="MSOMenu_Help" iconSrc="/_layouts/images/HelpIcon.gif" onMenuClick="MSOWebPartPage_SetNewWindowLocation(MenuWebPart.getAttribute(&#39;helpLink&#39;), MenuWebPart.getAttribute(&#39;helpMode&#39;))" type="option" style="display:none">  
        Aide  
    </ie:menuitem> 
</menu></span>  
<script type="text/javascript">  
//<![CDATA[
Sys.Application.initialize();
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadWindow, {"_dockMode":false,"clientStateFieldID":"ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_dialogOpener_Window_ClientState","formID":"aspnetForm","iconUrl":"","left":"","minimizeIconUrl":"","name":"Window","showContentDuringLoad":false,"skin":"Default","top":""}, null, null, $get("ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_dialogOpener_Window"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadDialogOpener, {"_dialogDefinitions":{"ImageManager":{"SerializedParameters":"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","Width":"690px","Height":"450px","Title":"Image Manager"},"DocumentManager":{"SerializedParameters":"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","Width":"690px","Height":"450px","Title":"Document Manager"},"FlashManager":{"SerializedParameters":"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","Width":"690px","Height":"450px","Title":"Flash Manager"},"MediaManager":{"SerializedParameters":"YwZxQG8AF1EYBRBKZloDRiZ2EzV1B0lZI1tfCBYpPHNgETZrGW55Dmd7OwEbY08+bRJAQnl3NWEYYA9vV1oyRhcpADVbdmRLDHNLdSc+dAB/dRBfIX5ldG9uAS4mc18+ewdlTFFkFEoPdD1sZnIfZRERIhFvA2dwJHVDaxQDLApmdCECEAt1DGFWFS4nXnU+YQRldmABE0ojBCFVZ3IPVBIqKTF3EUl+JQNbbSEvDktlLwRSEW9fNWZSESwPbHUdYQZHdlR1Gw8gcwNvVQUIBBwTdxVvAQBgJHdfUSEBKwtkABQAJwt5A1R+CQgjWUA8YCpUTWMBF2EXXC1uVm8XYRwoFDV2El1LIHUGaRZ3LHdkExcCJwhDAm9+JxUQBFtxbRRfemxlGE4MfyFjYloIBB8CHAlvAQBgIHd1diECKwtkABQAJwhXMWJVMy8UcW0SYXNPWmYDcEohcSltVnEfXRMqNgF1dV1KG3VXdhEqBmNmAxNEIAhhAWdVBSwQWnUNYSwCVFReEw8Pcy4OZmBwXRwpPipqEwBRG2dhUxkTFnppHQxfFgphcVd/FTwjc2EoUwJPcmxkOUMYZDJDeHEXTCETE3FsAwhSGGdLSCYpAglREntGFn51dFR7OwEbY08+bRJAQnl3NW0YYANAbQUtZBwcFHZiHHtNIklLbSAqElV8AQNADAlpNFd/FQUhWQ53VHNhTGQBeEwmcBNMUHEHTCd3HDZiA2dBF3hfTxkRcVFSEhdAEVR1N1YKFjUPd08TZXBtT2JfKXIhcAMMemEXXRd0HHNvKGt7JV11YA0QBnRRdBhBGm9bF1FVDTYMYmUSZRQCB2xedGogcA9MYVsDXycQLT9hElVrI3d9SCd2IG9SEBhBFlVXF1Z/EQ4NbFsSeixfWmwBcG4XYAxAVn8TXhR3IihuKQBvJGd+QSEMHlBRLwNLF35DHlFtcgIMfFMJZnF9cG91JQ0PcBdgZ1o9ZBM+EDViAllrJGZfYCd3CnNiLgtLFG4CcFZ+KDEmc08oYS19B2xnC24mYQdsZlp0exMBd3JvEmNiJGUGfRk+FmlidBhAFFVXFmVsNxMYY08oVCxbR3lYE0kbYD1PbgcXWR8pKjNZHGNIIwIHTREDKFFSAntdFXFfM29tdi4gY2I3ZSxxRlYBFEoPdD1uZgYfTxIoLg1bA3cND2ZbWRV0KAhmKRRBJ295HGBWAS0QTltxYwZDZlZ1LWEnfx9YeXJwBxwpcxVdE3hBJHhDdSI+AkpnLiZAIn9hHGdWFRwUBmU3bnNDZlZ1LWEnfx9YUW8hWxMvIhFbdUFhEl5xUCYQEmBnKSZ5J29pElQLDQwQWEc3bnMCelZ0CEAMcyl3VVwDBhF1C3ZdL0lJE2hbdhEBdQhkEjJxIAlfAmFSBS8Rcn48bnMGY3pkC00UXQNSZ3I1WhwvCHVidWdxF11fURF2PEhlPwhkDW9pDHpgCScUTmZxYxdlf1B1MU0QWj12UVohAREpNhFZEl1tFV1HdxIQdAB/dXNbJn9lM1d/ei4YcW00VQZhYVRrMVUOch9RVn8LWQkAAzV1LnAIDnRyTwx0Eg1UAhRKIVR1N2d/Ly4gcw4qVHB1XVF0JkoQWgNKVwUQRggHPgt1EFpCGABbcyEDCUB/EQRZIWwGN2wLKHMXBVscYiptVGcBNk4bXQtyYnADfRcqKiduL3sKGGZQCQ4BPA9mHRR8Im1hd2F/MwUYWF9yZSwGe2N2cA0VYRdjUWJwcB8+FBZqdWtLFlxXaicoEk1mKzJaDghpcWJsCREnX0AzYi91b2MAKQsVXQt3UF0xcycpAC9aA2d+I2d5VBkDFlVqAwxBIm4GPnl9GS4gfHkoewV6RmN7CwgYYzFvV3A9QxwTFBdhHGNXIklLbSAqElV8AQNAFXxhA2EIcg4UWF8oZXJffmBfKVYmBiFhemIxXRd0c3dhHF5PIgFhfRIoClJSAjYAGWxbB2JUM3APcFsJZRlTAWN0dHojBgxBY1wTbyQvKXZhPndPFnZhSRIpLG5VKDVLFW5HLntvBTIXWF8KYXJfRWxeOXIMXD1/UAQhXBcpLhVsE0FLDGZDcA4SIFVmdAh6FVQCdGAKCRMgcGEeVQZfemB1Dw0WYnRvem8hVBcTFB5tL1VyJGdlcRcpAm59ARAAFG9pLntvEREWWF8KYXNfXWFkOVgMXD1/UAQhbScoNjdhKGN/F2ZXSyIBMHdSDQBpFgtLE2xuGXAQXnkeVnNlfWFmG04VYRdseX8LYBcBHC5hdGtPEnZpTRQpNFJVLwMGDAhpNG9gJxcbbGUrVDhPYFZdF1UOcwRKYnIXchF0dw5uKFlUEwNbcxYoLFZUdCZrDWxHLGcIdncbbFgzVHBlcGRfD1IgcDEKbmItdhIoNnB1AF11E2hXDBUDcXpRdAtLFFJlHlRTLHYbTnEzYAdlRGReKW4nWjJBYmAxXwsTADJtKFl2FwNbSBopPHJ+Ljp1JwpXLWdVKxUWY0c3ehdHfXhlJVUUBg9wYlp0BRB2DBNaAGdiI3dbdxYCCg1kEHNlDWFXJWdvER4XX1MOUhZhfGFeB24PcxcKY2EfXwsTFBFsKFl2FwJbUBcTPFh+Ljp1JwpXHFdUMzcbWGUDYRdTRlR2NXcgfwdjYQU9YhwSHHBqLn9iIAJhcBcRHk5nExBmDnF9EWd9GS4bBG0zZAdtQGJeMVInXQQMewYLRSEDEBBbKUZLE111SyB2EUp9BjpbEH96M2wIETAmX0A+YyxPX1dfMUoYcS1zelxwYBMQAAluAmQB","Width":"690px","Height":"450px","Title":"Media Manager"},"LinkManager":{"SerializedParameters":"ZRYCXWxeOVUQYHRQbmAXXh8TFAVhHH9UFANhDSEDEkNRAhRfJ3pLA2xvOzwYZ0A+ewdlTFFkFA4WcANMbgQTXR92EzVqKXdLIgJmSw4HPFhSLi4DFlRLDmVsNwAgWXEtVQZhc1dkC1UYcBdVbnELRyQTczx0AWtQI3h9VA8ACUpmDQgCGW1HEW9vOyohWVs2eyplRWxkOU8YBxdVblopQCQcFDZadgVNE3dfUCEDfVdmDS5EGWwGLFdvFjUQWXE3VHNiRnhwOW4QBh9DY1stfiYDAHN2EllZFwBfCRUoEktUEwhrFldxL2dCL3MWc0MXVAdbbVB7G1gPcnALbVpwZiATDz9dDEF1IANbTxopdQlkKS5rDW5bJXhUGXMXX1M3VgZ9fXpkdHQTBw9vY1shAScDCDJaDHt1I3dhSxQTLwhmKQxnJwtXE1duGXMbTn03Uyx9RHh7LXcQcgAIYHA1eyERdxNqHFV2JGRhDRcRCgpqdAdJFVd9L2Z+GXMVWGY8UxdHbGNZA1MgYh9DYHILdhATFB5rKn9QFwAGdRQoLEpmEgtKJ35LLVRSAXIWY0cDVRdbbWNnD2kQchBAYFshfiQBdj9tEHAPE2hbCBkcDkxpEjp2Im51N1cKJzwXc3F0VgJPcmxkOUMYZDJOeHIyTQoQCCxrAUFLGEp6DQ4TCk1kKDpZJm1fEGJuJxUQWEcMVQV1XHgDMWwbYiF+UWE1YhQqHC5uPmRPFXhDbicRcUl+DSZ+IlJ5KWJwMwEgYQYRYxlfb2N1LQwWXBdXenJ8fRMpPidudXcKF2cCbyYpDUNmKy5pDlVpcmF8ARUhclscUgltVHgDcAsNBz1PbQUDRiQcNi5cA11OI1xxUCcDI0piKARAIAtmN3h7NHs=","Width":"408px","Height":"340px","Title":"Hyperlink Manager"},"TableWizard":{"SerializedParameters":"ZRYCXWxeOVUQYHRQbmAXXh8TFAVhHH9UFANhDSEDEkNRAhRfJ3pLA2xvOzwYZ0A+ewdlTFFkFA4WcANMbgQTXR92EzVqKXdLIgJmSw4HPFhSLi4DFlRLDmVsNwAgWXEtVQZhc1dkC1UYcBdVbnELRyQTczx0AWtQI3h9VA8ACUpmDQgCGW1HEW9vOyohWVs2eyplRWxkOU8YBxdVblopQCQcFDZadgVNE3dfUCEDfVdmDS5EGWwGLFdvFjUQWXE3VHNiRnhwOW4QBh9DY1stfiYDAHN2EllZFwBfCRUoEktUEwhrFldxL2dCL3MWc0MXVAdbbVB7G1gPcnALbVpwZiATDz9dDEF1I3Z5VxQTdQ1SAxtKIX1pHmJ9MzQXX1M3VgZ9fXpkdHQTBw9vY1shAScDCDJaDHt1I3dhSxQTLwhmKQxnJwtXE1duGXMbTn03Uyx9RHh7LXcQcgAIYHA1eyERdxNqHFV2JGRhDRcRCgpqdAdJFVd9L2Z+GXMVWGY8UxdHbGNZA1MgYh9DYHILdhATFB5rKn9QFwAGdRQoLEpmEgtKJ35LLVRSAXIWY0cDVRdbbWNnD2kQchBAYFshfiQBdj9tEHAPE2hbCBkcDkxpEjp2Im51N1cKJzwXc3F0VgJPcmxkOUMYZDJOeHIyTQoQCCxrAUFLGEp6DQ4TCk1kKDpZJm1fEGJuJxUQWEcMVQV1XHgDMWwbYiF+UWE1YhQqHC5uPmRPFXhDbicRcUl+DSZ+IlJ5KWJwMwEgYQYRYxlfb2N1LQwWXBdXenJ8fRMpPidudXcKF2cCbyYpDUNmKy5pDlVpcmF8ARUhclscUgltVHgDcAsNBz1PbQUDRiQcNi5cA11OI1xxUCcDI0piKARAIAtmN3h7NHs=","Width":"720px","Height":"500px","Title":"Table Wizard"},"FindAndReplace":{"SerializedParameters":"ZRYCXWxeOVUQYHRQbmAXXh8TFAVhHH9UFANhDSEDEkNRAhRfJ3pLA2xvOzwYZ0A+ewdlTFFkFA4WcANMbgQTXR92EzVqKXdLIgJmSw4HPFhSLi4DFlRLDmVsNwAgWXEtVQZhc1dkC1UYcBdVbnELRyQTczx0AWtQI3h9VA8ACUpmDQgCGW1HEW9vOyohWVs2eyplRWxkOU8YBxdVblopQCQcFDZadgVNE3dfUCEDfVdmDS5EGWwGLFdvFjUQWXE3VHNiRnhwOW4QBh9DY1stfiYDAHN2EllZFwBfCRUoEktUEwhrFldxL2dCL3MWc0MXVAdbbVB7G1gPcnALbVpwZiATDz9dDEF1IAFDTxopdWphKAhHFlV9JWJ9CTwVYlMLVQd9fVd0KVAQTSlMYHILdhMSNh5dA0lSI2dLQRcDPFJSAy5DDW9pEGALJygUWQYTUhZ6TFd7G1AjXQcMYGIXdwsRPjdsHGd2F3VlCxccLwlVEHN3JwtXFngJGTwYcV8TUhdHYHhrF1gVcRxObQV0ciZ0PgJpKHdTFwBDQhoSIHZkAzJqIX9lLXhWETUbWVgzUgQGRGdecGMUBhBDYAcXcwgvcx5rKVl2DFx2Twx0Eg1UAhRKIVR1N2d/Ly4gcw4qVHB1XVF0JkoQWgNKVwUQRggHPgt1EFpCGABbcyEDCUB/EQRZIWwGN2wLKHMXBVscYiptVGcBNk4bXQtyYnADfRcqKiduL3sKGGZQCQ4BPA9mHRR8Im1hd2F/MwUYWF9yZSwGe2N2cA0VYRdjUWJwcB8+FBZqdWtLFlxXaicoEk1mKzJaDghpcWJsCREnX0AzYi91b2MAKQsVXQt3UF0xeCd2CC5aA10OGGhhSCF2cWhpHRBcD3xpLFdwDSoOcHY3","Width":"430px","Height":"292px","Title":"Find And Replace","Modal":false},"CleanPasteHtmlContent":{"SerializedParameters":"ZRYCXWxeOVUQYHRQbmAXXh8TFAVhHH9UFANhDSEDEkNRAhRfJ3pLA2xvOzwYZ0A+ewdlTFFkFA4WcANMbgQTXR92EzVqKXdLIgJmSw4HPFhSLi4DFlRLDmVsNwAgWXEtVQZhc1dkC1UYcBdVbnELRyQTczx0AWtQI3h9VA8ACUpmDQgCGW1HEW9vOyohWVs2eyplRWxkOU8YBxdVblopQCQcFDZadgVNE3dfUCEDfVdmDS5EGWwGLFdvFjUQWXE3VHNiRnhwOW4QBh9DY1stfiYDAHN2EllZFwBfCRUoEktUEwhrFldxL2dCL3MWc0MXVAdbbVB7G1gPcnALbVpwZiATDz9dDEF1IEp1ChkTdUpTdwh7EVV1HmJ9dzEVWGEregZ9bVB2F1EUBx9DbV0PXyZ0KgFtKUlREwFpDRoSIENUExtKFVRfCVd+GQ0WcXkHYXBHbGZdMVEUTSkIYXEXfyF0dwNZd2d2JGRhDBcSFntVLjpCEGFXCWQICQMYclNwegZlbGZeOWgUTRNKbnEtZiASKh5cd39yE1t6QBQTdQ1TAylEJ35LKGNUCXQbYH0TUxd1YGdrLXcUBjVWY1sXXwsBdxNvEHdiI2VlDhQvFmtgETZ1JnFhKFZVdi4gcWU0bhZPQ28AD2gbbxdWeHIfXScMCCp0AHBLFXR2DQ52CnBjKDpZDlNYPGwKcgkgc3lxeBd5b2MCC34VXCFKeXAMTxYoFC5qdGsNFlxpeycpAmF+EQB+JlVldWFVKHYmBE81ZixtbFBYG00WYRd3UXEpYBIcKglqA1IIFQBXbyECNGFlHRhlIW9pcmxSDREnYlw9YS9HeHh1C04VYSENUFsqTxEcH3FsAwhSGGdLSCYpAglREntGFn51dFR7OwEbY08+bRJAQnlyfAQ=","Width":"517px","Height":"300px","Title":"Paste As Html"},"CleanPasteTextContent":{"SerializedParameters":"ZRYCXWxeOVUQYHRQbmAXXh8TFAVhHH9UFANhDSEDEkNRAhRfJ3pLA2xvOzwYZ0A+ewdlTFFkFA4WcANMbgQTXR92EzVqKXdLIgJmSw4HPFhSLi4DFlRLDmVsNwAgWXEtVQZhc1dkC1UYcBdVbnELRyQTczx0AWtQI3h9VA8ACUpmDQgCGW1HEW9vOyohWVs2eyplRWxkOU8YBxdVblopQCQcFDZadgVNE3dfUCEDfVdmDS5EGWwGLFdvFjUQWXE3VHNiRnhwOW4QBh9DY1stfiYDAHN2EllZFwBfCRUoEktUEwhrFldxL2dCL3MWc0MXVAdbbVB7G1gPcnALbVpwZiATDz9dDEF1IEp1ChkTdUpTdwh7EVV1HmJ9dzEVWG0XVQZhfGBYF1EUBx9DbV0PXyZ0KgFtKUlREwFpDRoSIENUExtKFVRfCVd+GQ0WcXkHYXBHbGZdMVEUTSkIYXEXfyF0dwNZd2d2JGRhDBcSFntVLjpCEGFXCWQICQMYclNwegZlbGZeOWgUTRNKbnEtZiASKh5cd39yE1t6QBQTdQ1TAylEJ35LKGNUCXQbYH0TUxd1YGdrLXcUBjVWY1sXXwsBdxNvEHdiI2VlDhQvFmtgETZ1JnFhKFZVdi4gcWU0bhZPQ28AD2gbbxdWeHIfXScMCCp0AHBLFXR2DQ52CnBjKDpZDlNYPGwKcgkgc3lxeBd5b2MCC34VXCFKeXAMTxYoFC5qdGsNFlxpeycpAmF+EQB+JlVldWFVKHYmBE81ZixtbFBYG00WYRd3UXEpYBIcKglqA1IIFQBXbyECNGFlHRhlIW9pcmxSDREnYlw9YS9HeHh1C04VYSENUFsqTxEcH3FsAwhSGGdLSCYpAglREntGFn51dFR7OwEbY08+bRJAQnlyfAQ=","Width":"517px","Height":"300px","Title":"Paste Plain Text"},"ImageEditor":{"SerializedParameters":"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","Width":"832px","Height":"520px","Title":"Image Editor"},"ImageProperties":{"SerializedParameters":"ZRYCXWxeOVUQYHRQbmAXXh8TFAVhHH9UFANhDSEDEkNRAhRfJ3pLA2xvOzwYZ0A+ewdlTFFkFA4WcANMbgQTXR92EzVqKXdLIgJmSw4HPFhSLi4DFlRLDmVsNwAgWXEtVQZhc1dkC1UYcBdVbnELRyQTczx0AWtQI3h9VA8ACUpmDQgCGW1HEW9vOyohWVs2eyplRWxkOU8YBxdVblopQCQcFDZadgVNE3dfUCEDfVdmDS5EGWwGLFdvFjUQWXE3VHNiRnhwOW4QBh9DY1stfiYDAHN2EllZFwBfCRUoEktUEwhrFldxL2dCL3MWc0MXVAdbbVB7G1gPcnALbVpwZiATDz9dDEF1I3UGSxkBEkpUAy5rGX5LEmZ9M3QbBFMTUhZlfVd0OVMPcQ9OY2EhASEoNnNcdlVvEwFpQhQoLHJTAgQGDW9bJWMIL3cUWGE2VHFbcmJeOVMgXHBObV0MBQoRdzdpHFVoFEphDhcDNH9VAHN2F2FlClRTBTwRYWELehZ9fGBZB1MgYRAMbVp0YggTFA9rKVlREANXVhURLG5REgh7IX5DEHhUGncUX1RxVC1HbXt3LXcUcikNY1p0cicBc3Bid1l3IFxpSBQSFnZRdXdxE20Dc2dgK3YYbH0xbhZPcFRkB0ogBSFDYXADBSQHPgFhE0lCG2NETw8BM0F/EQxZEHxDN2xCCnMPY3kwYyxPX1BnLW0VYSFqZls1fScABC91dEFtGGVXfyYSNG5hKxhbFUNmM2FwMxAmYQI0eQlTeFRYC1QVfzV+VmJ0YBEcLhxuAl0NFVthVg0BfXFmKDpSFQh1dmNvchEnWX4+YS9bb3hfGw8WcwdqV3EpbSAMHCd1dAAKDgBLThp2AkpRHTJbJ35fMldUAS4mc1A3ZSxxRlYBFEoPdDIE","Width":"352px","Height":"432px","Title":"Properties..."},"ImageMapDialog":{"SerializedParameters":"ZRYCXWxeOVUQYHRQbmAXXh8TFAVhHH9UFANhDSEDEkNRAhRfJ3pLA2xvOzwYZ0A+ewdlTFFkFA4WcANMbgQTXR92EzVqKXdLIgJmSw4HPFhSLi4DFlRLDmVsNwAgWXEtVQZhc1dkC1UYcBdVbnELRyQTczx0AWtQI3h9VA8ACUpmDQgCGW1HEW9vOyohWVs2eyplRWxkOU8YBxdVblopQCQcFDZadgVNE3dfUCEDfVdmDS5EGWwGLFdvFjUQWXE3VHNiRnhwOW4QBh9DY1stfiYDAHN2EllZFwBfCRUoEktUEwhrFldxL2dCL3MWc0MXVAdbbVB7G1gPcnALbVpwZiATDz9dDEF1IAJLCBQSIFJSAxBrEVdXF2cKOykbX1RxVSpPcWRfF1gUBC1KbQV0RiYvPjViA0liIGRlbxZ1CgpqdBhHFVdfLnhVO3QbWVgzUhQGcGRnF3QjXHQIYGEXcyF0d3N2DF12EANXVhYQCm5TdxB6FVdfJWN8BXcVWF8TegZ5QWddD3QTBw9rbnEhfiZ2AB5sL0lZFndLbhouDglSAghCDnFbClRTGTIVYlMSenEOcGdnC3YUBzVWYGMPZwgAMgBdDGNUIl0GUCEBFklpEjpFGQp9FWxgESkOcW0sVQl5WXl3AEoWcwAMeQULfBYpPix1LlpAGAICdyEDCgx/EwxpFQh5A2JTJzUPc34+ZC1lXWcDGwwVWx96UFoDbQsQBAtdKGcJFV1YCCd0PEhhKBhqJlJpMGFuEQgnclsRYBlbemd0IgkWByFuVnE1bRAcHBBaEmsOGFp9byYSL0BmKzJ+Dn95M2JuJ3ImWFg+YxluAmF0eFMbYD1JUVoDBSQTfzNtA3cIIHNLfxoTPENqFjVED3gOeQ==","Width":"700px","Height":"430px","Title":"Image Map Editor"},"StyleBuilder":{"SerializedParameters":"ZRYCXWxeOVUQYHRQbmAXXh8TFAVhHH9UFANhDSEDEkNRAhRfJ3pLA2xvOzwYZ0A+ewdlTFFkFA4WcANMbgQTXR92EzVqKXdLIgJmSw4HPFhSLi4DFlRLDmVsNwAgWXEtVQZhc1dkC1UYcBdVbnELRyQTczx0AWtQI3h9VA8ACUpmDQgCGW1HEW9vOyohWVs2eyplRWxkOU8YBxdVblopQCQcFDZadgVNE3dfUCEDfVdmDS5EGWwGLFdvFjUQWXE3VHNiRnhwOW4QBh9DY1stfiYDAHN2EllZFwBfCRUoEktUEwhrFldxL2dCL3MWc0MXVAdbbVB7G1gPcnALbVpwZiATDz9dDEF1I3UHTxkSIA1SAwRGFVdxLWcJCTUbBlt3bXBtfWNdD1gVcjVObW8uBBICNh5rHGdvF2dHQhARHlhSAgxGF1dxLXhSEnMWY0cGU3EOYXt7MXQjXBMNYGIXeyERdzdpHH9yE2UHQBovLGp9EgxHFW1fLVduGj4YcV8PVgZ9cVEBJW8RcR9JbVwhRiQoCz9uLmdvE0pfQRQoJwl/EHNmEGFbJVdtGTUWWkcqUgQCRGNeLWMUcnBLYFwADBUQMgBdDGNUIl0GUCEBFklpEjpFGQp9FWxgESkOcW0sVQl5WXl3AEoWcwAMeQULfBYpPix1LlpAGAICdyEDCgx/EwxpFQh5A2JTJzUPc34+ZC1lXWcDGwwVWx96UFoDbQsQBAtdKGcJFV1YCCd0PEhhKBhqJlJpMGFuEQgnclsRYBlbemd0IgkWByFuVnE1bRAcHBBaEmsOGFp9byYSL0BmKzJ+Dn95M2JuJ3ImWFg+YxluAmF0eFMbYD1JUVoDBSQTfzNtA3cIIHNLfxoTPENqFjVED3gOeQ==","Width":"541px","Height":"490px","Title":"Style Builder"}},"_dialogUniqueID":"76d61e59-6f6c-4ab1-bedf-f5da290bbfc3","additionalQueryString":"","clientStateFieldID":"ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_dialogOpener_ClientState","handlerUrl":"/_wpresources/RadEditorSharePoint/5.6.0.0__1f131a624888eeed/Resources/Telerik.Web.UI.DialogHandler.aspx","skin":"Default"}, null, {"container":"ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_dialogOpener_Window"}, $get("ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_dialogOpener"));
});
Sys.Application.add_init(function() {
    $create(Telerik.Web.UI.RadEditor, {"_localization":{"addcustomcolor":"Add Custom Color...","addcustomhexcolor":"Add Hex Color...","addcustomwordsuccess":"successfully added to dictionary","addtodictionary":"Add to dictionary","askwordcleaning":"The content you are trying to paste has MS Word formatting.\r\nWould you like to clean it?","cancelbutton":"Cancel","canceltable":"Cancel","cellproperties":"Cell Properties","cellwarning":"Please, select a cell to set its properties!","changewordstring":"Change Manually","class":"CSS Class","clearclass":"Clear Class","clearallhtmltags":"All HTML Tags","clearcssformatting":"Cascading Style Sheets","clearfonttags":"Font Tags","clearformatting":"Clear Formatting","clearspantags":"Span Tags","clearstyle":"Clear Style","clearwordformatting":"Microsoft Word Formatting","correctspelling":"Spelling Changes","createlink":"Create Link","dialogtoolbar":"Dialogs","dropdowntoolbar":"Dropdowns","exceededhtmllength":"The added HTML code exceeded the character limit","exceededtextlength":"The added text exceeded the character limit","enhancededittoolbar":"Enhanced Edit","fileopen":"Open file..","filesaveas":"Save as...","formbutton":"Button","formcheckbox":"Checkbox","formform":"Form","formhidden":"Hidden","formpassword":"Password","formradio":"Radio button","formreset":"Reset","formselect":"Select","formsubmit":"Submit","formtext":"Textbox","formtextarea":"Textarea","htmlmode":"HTML Mode","ignoreallstring":"Ignore All","ignorestring":"Ignore","imagemapwarning":"Please, select an image to set its image map properties!","indenthtml":"Indent HTML","inserttoolbar":"Insert","maintoolbar":"Main Toolbar","morethanoncemessage":"This word occurs more than once in the text. Would you like to replace all instances?","movecommand":"Move","nospellingmistakes":"No mistakes found.","nosuggestions":"(no suggestions)","promptcolor":"Please, provide the custom color HEX value:","radeditordesignmode":"Design","radeditorhtmlmode":"HTML","radeditorpreviewmode":"Preview","reducetheconentlength":"Please, reduce the content of the field","resizecommand":"Resize Object","sethtml":"Set HTML","showtoolbartooltip":"Show toolbar","spellcheckcomplete":"Spellchecking complete!","spellcheckend":"Finish spellchecking","spellingchange":"Spelling Change","spellinginprogress":"Spell checking in progress...","spellingmode":"Spell checking mode. Misspelled words are highlighted in yellow.","table":"Table","tabletoolbar":"Table","tablewarning":"Please, select a table to set its properties!","toolbarcaption":"RadEditor Toolbar","toolnotsupportedbynetscape":"This tool is not supported by Mozilla/Netscape browsers.","typing":"Typing...","undodisabledmessage":"You cannot undo further while in spellcheck mode. Please finish spellchecking first.","updatebutton":"Update","usectrlc":"Please use Ctrl+C to Copy","usectrlv":"Please use Ctrl+V to Paste","usectrlx":"Please use Ctrl+X to Cut","aboutdialog":"About RadEditor","absoluteposition":"Set Absolute Position","ajaxspellcheck":"AJAX Spellchecker","applyclass":"Apply CSS Class","backcolor":"Background Color","bold":"Bold","converttolower":"Convert to lower case","converttoupper":"Convert to upper case","copy":"Copy","cut":"Cut","decreasesize":"Decrease Size","deletecell":"Delete Cell","deletecolumn":"Delete Column","deleterow":"Delete Row","deletetable":"Delete Table","documentmanager":"Document Manager","findandreplace":"Find And Replace","flashmanager":"Flash Manager","fontname":"Font Name","fontsize":"Size","forecolor":"Foreground Color","formatblock":"Paragraph Style","formatcodeblock":"Format Code Block","formatstripper":"Format Stripper","help":"Help","imageeditor":"Image Editor","imagemanager":"Image Manager","imagemapdialog":"Image Map Editor","increasesize":"Increase Size","indent":"Indent","insertanchor":"Insert Anchor","insertcolumnleft":"Insert Column to the Left","insertcolumnright":"Insert Column to the Right","insertcustomlink":"Custom Links","insertdate":"Insert Date","insertemaillink":"Insert Email Link","insertformbutton":"Insert Button","insertformcheckbox":"Insert Checkbox","insertformelement":"Insert Form Element","insertformform":"Insert Form","insertformhidden":"Insert Hidden","insertformpassword":"Insert Password","insertformradio":"Insert Radio","insertformreset":"Insert Reset","insertformselect":"Insert Select","insertformsubmit":"Insert Submit","insertformtext":"Insert Textbox","insertformtextarea":"Insert Textarea","insertgroupbox":"Insert Groupbox","inserthorizontalrule":"Horizontal Rule","insertorderedlist":"Numbered List","insertparagraph":"New Paragraph","insertrowabove":"Insert Row Above","insertrowbelow":"Insert Row Below","insertsnippet":"Insert Code Snippet","insertsymbol":"Insert Symbol","inserttable":"Insert Table","inserttime":"Insert Time","insertunorderedlist":"Bullet List","italic":"Italic","justifycenter":"Align Center","justifyfull":"Justify","justifyleft":"Align Left","justifynone":"Remove alignment","justifyright":"Align Right","linkmanager":"Hyperlink Manager","mediamanager":"Media Manager","mergecolumns":"Merge Cells Horizontally","mergerows":"Merge Cells Vertically","modulemanager":"Module Manager","outdent":"Outdent","pageproperties":"Page Properties","paste":"Paste","pasteashtml":"Paste As Html","pastefromword":"Paste from Word","pastefromwordnofontsnosizes":"Paste from Word, strip font","pasteplaintext":"Paste Plain Text","pastestrip":"Paste Options","print":"Print","realfontsize":"Real font size","redo":"Redo","repeatlastcommand":"Repeat Last Command","selectall":"Select All","setcellproperties":"Cell Properties","setimageproperties":"Properties...","setlinkproperties":"Properties...","settableproperties":"Table Properties","silverlightmanager":"Silverlight Manager","spellcheck":"Spellchecker","splitcell":"Split Cell","splitcellhorizontal":"Split Cell Horizontally","strikethrough":"Strikethrough","stripall":"Strip All Formatting","stripcss":"Strip Css Formatting","stripfont":"Strip Font Elements","stripspan":"Strip Span Elements","stripword":"Strip Word Formatting","stylebuilder":"Style Builder","subscript":"Subscript","superscript":"SuperScript","tablewizard":"Table Wizard","templatemanager":"Template Manager","toggledocking":"Dock all Floating Toolbars/Modules","togglescreenmode":"Toggle Full Screen Mode","toggletableborder":"Show/Hide Border","trackchangesdialog":"Track Changes","underline":"Underline","undo":"Undo","unlink":"Remove Link","xhtmlvalidator":"XHTML Validator","zoom":"Zoom","blank":"New Window","media":"Media Pane","parent":"Parent Window","search":"Search Pane","self":"Same Window","top":"Browser Window","action":"Action","align":"Alignment","alt":"ToolTip","bgcolor":"Background","border":"Border Width","bordercolor":"Border color","cellpadding":"CellPadding","cellspacing":"CellSpacing","classname":"Classname","cols":"Columns","doctype":"Select Doctype","dominspectorremoveelement":"RemoveElement","expandvalidator":"Expand Report Pane","height":"Height","href":"URL","id":"Id","name":"Name","nodeinspectorinvalidvalue":"Invalid value. Please enter a number.","nodeinspectorselectedelement":"The selected element is ","nowrap":"Nowrap","radeditordominspector":"Tag Inspector","radeditorhtmlinspector":"Real-Time HTML View","radeditornodeinspector":"Properties Inspector","radeditorstatistics":"Statistics","radeditorxhtmlvalidator":"XHTML Validator","rows":"Rows","statisticscharacters":"Characters:","statisticswords":"Words:","target":"Target","title":"ToolTip","validatexhtml":"Validate XHTML","valign":"Vertical Alignment","value":"Value","width":"Width"},"ajaxSpellCheckScriptReference":"/WebResource.axd?d=9Jvx3jSkiGs80OVt5c3M3N4_E_DVuaDLitIgu2Ztb-ZVWk4V0hAe9X1PVA-PPMlRX3AnqotBjxWLqABKtq6-HbjrpwSCnK39ccnYzODYhcTaMV3CjF0NdFSsDNimLEP70&t=633961513286875664","clientStateFieldID":"ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_ClientState","contentAreaCssFile":"/WebResource.axd?d=9Jvx3jSkiGs80OVt5c3M3N4_E_DVuaDLitIgu2Ztb-ZVWk4V0hAe9X1PVA-PPMlRX3AnqotBjxWLqABKtq6-Hfqn7TKx2SCi0tdJA2_vBKHYXSQdzqVJuze1aPHRyTQxtMhZnLVIqI8c3gg9sYUqGw2&t=633961513286875664","contextMenusJSON":[{"tools":[{"name":"Cut","text":"Cut"},{"name":"Copy","text":"Copy"},{"name":"Paste","text":"Paste"}]},{"tagName":"TABLE","tools":[{"name":"ToggleTableBorder","text":"Show/Hide Border"},{"name":"SetTableProperties","text":"Table Properties"},{"name":"DeleteTable","text":"Delete Table"}]},{"tagName":"TD","tools":[{"name":"InsertRowAbove","text":"Insert Row Above"},{"name":"InsertRowBelow","text":"Insert Row Below"},{"name":"DeleteRow","text":"Delete Row"},{"name":"InsertColumnLeft","text":"Insert Column to the Left"},{"name":"InsertColumnRight","text":"Insert Column to the Right"},{"name":"DeleteColumn","text":"Delete Column"},{"name":"MergeColumns","text":"Merge Cells Horizontally"},{"name":"MergeRows","text":"Merge Cells Vertically"},{"name":"SplitCell","text":"Split Cell"},{"name":"SplitCellHorizontal","text":"Split Cell Horizontally"},{"name":"DeleteCell","text":"Delete Cell"},{"name":"SetCellProperties","text":"Cell Properties"},{"name":"SetTableProperties","text":"Table Properties"}]},{"tagName":"IMG","tools":[{"name":"SetImageProperties","text":"Properties..."},{"name":"ImageMapDialog","text":"Image Map Editor"}]},{"tagName":"A","tools":[{"name":"SetLinkProperties","text":"Properties..."},{"name":"Unlink","text":"Remove Link"}]}],"cssFiles":["/_layouts/1036/styles/HtmlEditorTableFormats.css","/_layouts/1036/styles/HtmlEditorCustomStyles.css"],"modulesJSON":[{"scriptFile":"","name":"RadEditorDomInspector"}],"mozillaFlashOverlayImage":"/WebResource.axd?d=9Jvx3jSkiGs80OVt5c3M3N4_E_DVuaDLitIgu2Ztb-ZVWk4V0hAe9X1PVA-PPMlRX3AnqotBjxWLqABKtq6-HR5cb7BVczJyTjI7fPHh4StMPn-3880obhMN9Vaal33x0&t=633961513286875664","skin":"Default","spellCheckJSON":{"configuration":"ZQZbX1F0LU8gWgNAUWEHXSEDITVqKXdLIgJmSw4HPGtVKwBZFWxbD1FULDwRWV8tYnF9fWxlJQ0gcAhBUXIhXRN0czBhElVvJGd9DRIpNFB9LwQDGX9QdVBUKwAPbHUeenFHB2xJCAwgYBd9ZVsXXRd0HHNvKFVrGAFqQRUpKHNiLndAGgsGJVd/DTYTX20oZAd9RmxedHYhcAxAem81bBYDFHVhdgBvJF16QhUqKGN9KRgFFHxpD1R+MwAUWUMsYAd9B2wBOXYgBilgZ1o9Yxc+KjFhKQRrGAAGbA0ADnRRLgQCF2xqcW9Tch4VbF8KUiptWmFeMXMPcnx8bk0XVBN1HDVvL2sMFAFDYRcqHlJnADJCFFVbC2wJBR8TWlMdegd9Wm92JX4bBhNNZloxYwh0DDVhL1UMGEpHeiIpAg1mHQhAD3xpLFdwDSoOcHY3YwVyAHgBD3ARWj1TeV0uTRx2dwlaA38NDmZ9YhV1Dn5nLiZADn56PmZUES4QBG1xYC1tdlFeB2EMYwd0UVsTBBEpLXZcdElJEF1pYSYvHk1kExB9Jn9fEWJgLwkQc1R0Y3FTYld1MWEXbx9vVmEfAxwuCBFdElpBF15DdQ4SDkppLiZkJm51HFYLFREPWG00YwZPYmZYOUoWWSFYYgQtTxAQDClaAlpBJXVfYhU+EktpLiZkJmxLMGdWMy4Rc1R9","url":"/_wpresources/RadEditorSharePoint/5.6.0.0__1f131a624888eeed/Resources/Telerik.Web.UI.SpellCheckHandler.ashx","language":"en-US"},"tableLayoutCssFile":"","toolAdapterType":"Telerik.Web.UI.Editor.DefaultToolAdapter","toolJSON":[{"tag":"MossTools1","tools":[{"name":"AjaxSpellCheck"},{"name":"FindAndReplace"},{"type":8},{"name":"Cut","shortCut":"CTRL+X"},{"name":"Copy","shortCut":"CTRL+C"},{"name":"Paste","shortCut":"CTRL+V"},{"type":8},{"attributes":{"popupclassname":"reUndoRedo"},"name":"Undo","shortCut":"CTRL+Z","type":4},{"attributes":{"popupclassname":"reUndoRedo"},"name":"Redo","shortCut":"CTRL+Y","type":4},{"type":8},{"name":"MOSSLinkManager","shortCut":"CTRL+K"},{"name":"Unlink","shortCut":"CTRL+SHIFT+K"},{"name":"ImageManager","shortCut":"CTRL+G"},{"name":"InsertStreaming_Real"},{"name":"MediaManager"},{"name":"FlashManager"},{"name":"MOSSTemplateManager"},{"type":8},{"name":"MOSSInsertTable"},{"name":"SetTableProperties"},{"name":"ToggleTableBorder"},{"type":8},{"name":"MOSSInsertTableElement","type":16,"tools":[{"name":"InsertRowAbove","text":"Insert Row Above"},{"name":"InsertRowBelow","text":"Insert Row Below"},{"name":"InsertColumnLeft","text":"Insert Column to the Left"},{"name":"InsertColumnRight","text":"Insert Column to the Right"},{"name":"DeleteRow","text":"Delete Row"},{"name":"DeleteColumn","text":"Delete Column"},{"name":"SplitCell","text":"Split Cell"}]},{"name":"MergeColumns"},{"type":8},{"name":"ToggleSource"},{"attributes":{"sizetofit":"true"},"name":"FormatStripper","type":16,"tools":[{"name":"StripAll","text":"Strip All Formatting"},{"name":"StripCss","text":"Strip Css Formatting"},{"name":"StripFont","text":"Strip Font Elements"},{"name":"StripSpan","text":"Strip Span Elements"},{"name":"StripWord","text":"Strip Word Formatting"}]},{"type":8},{"name":"MOSSRightToLeft"},{"name":"MOSSLeftToRight"},{"type":8},{"attributes":{"popupclassname":"reColorPicker","itemsperrow":"10","sizetofit":"true"},"name":"ForeColor","type":4},{"attributes":{"popupclassname":"reColorPicker","itemsperrow":"10","sizetofit":"true"},"name":"BackColor","type":4}]},{"tag":"MossTools2","tools":[{"attributes":{"popupclassname":"reApplyClass","clearclasstext":"Clear Class"},"name":"ApplyClass","type":2},{"name":"FormatBlock","type":2},{"type":8},{"name":"FontName","type":2},{"attributes":{"popupwidth":"60px","sizetofit":"true"},"name":"FontSize","type":2},{"type":8},{"name":"Bold","shortCut":"CTRL+B"},{"name":"Italic","shortCut":"CTRL+I"},{"name":"Underline","shortCut":"CTRL+U"},{"type":8},{"name":"JustifyLeft"},{"name":"JustifyCenter"},{"name":"JustifyRight"},{"type":8},{"name":"InsertOrderedList"},{"name":"InsertUnorderedList"},{"type":8},{"name":"Indent"},{"name":"Outdent"}]}],"toolbarMode":8,"toolsWidth":"680px"}, {"load":RadEditorClientLoad}, {"dialogOpener":"ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00_dialogOpener"}, $get("ctl00_m_g_c407b74b_92e2_4311_892b_f6ae2342b0f0_ctl00"));
});
//]]> 
</script> 
</form> 
    
      
  <style type="text/css">  
    Div.ms-titleareaframe {  
    height: 100%;  
    }  
    .ms-pagetitleareaframe table {  
    background: none;  
    }  
  </style> 
 
</BODY> 
</HTML> 
 

As you've suggested I used Fiddler and took a screenshot of the result (in attachement).
Here is a description of the actions on the page :
- I've clicked on the "ImageManager" icon (then on "Cancel") => lines 43 & 44 appear
- I've clicked on my custom dialog icon and had the usual error message => no new lines on Fiddler !
- I've clicked on the "MediaManager" icon (then on "Cancel") => lines 45 & 46 appear

I hope this information would help you.

Best wishes,

Jeff

 

0
Stanimir
Telerik team
answered on 07 Jan 2010, 11:15 AM
Hi Jean-François,
1. Check if you can access the MOSSEditorTools.js by entering the following URL in the web browser http://[the root of your MOSS site]/_wpresources/RadEditorSharePoint/5.6.1.0__1f131a624888eeed/Resources/MOSSEditorTools.js.

2. Check if you have any javascript errors in the page. They might be braking the javascript in general.

3. Please, provide me with your MOSSEditorTools.js and ConfigFile.xml. I need them in order to help you further.

4. In addition could you please check if upgrading to the latest version of RadEditor, which now is 5.6.1 will solve the issue?

5. You can move your custom javascript code in a separate file which you can load in your master template by using SharePoint Designer.

Sincerely yours,
Stanimir
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Jean-François Robe
Top achievements
Rank 1
answered on 08 Jan 2010, 11:08 AM

Hello Stanimir,

 

Here are my answers:

 

1 & 2) Yes I can access the file. I can choose between downloading (it works) or executing it (it needs a confirmation, then raises an error from “Windows Script Host” as shown in attachment).

 

4) Yes, upgrading RadEditor solves the issue!

The test “alert” runs well and my custom dialog too.

 

As upgrade solved this issue, I didn’t go further (concerning questions 3 & 5).

 

But my upgrade may not be proper: I have two “Telerik RadEditor for MOSS” webparts in the dialog box for adding a webpart to a page.

 

I must confess I first made the upgrade “instinctively”… Here is the story:

 

I tried to retract the solution (specifying the only web application where it was deployed), but the retraction process status was still on “Retraction (planned)” after 10 minutes.

So, I’ve run “stsadm -o deletesolution -name RadEditorMOSS.wsp -override”.

Then, I’ve installed the new solution (by command line) and deployed it (from the UI).

At this moment, I thought the upgrade was complete, I saw that the issue was solved, and I was happy! J

 

But… I had some doubts about how my test page could works fine calling custom code in the old Resources folder (I didn’t copy it in the new version’s folder).

 

From here, I looked at the production documentation (“Upgrading to a newer version of RadEditor for MOSS”). I found that what I’ve made was equivalent to the two first steps. So I followed with the two last steps:

 

Step “3”: I add this tags at the web.config:

      <dependentAssembly> 
        <assemblyIdentity name="RadEditorSharePoint" publicKeyToken="1f131a624888eeed" culture="neutral" /> 
        <bindingRedirect oldVersion="1.0.0.0-5.6.0.0" newVersion="5.6.1.0" /> 
      </dependentAssembly> 

 

Step “4”: As I remember*, I didn’t add new SafeControl tags for the "RadEditorSharePoint” assembly (new version). Because the documentation explains that the RadEditor WebParts were created with the previous version. Therefore, SafeControl tags have to stay at the previous version number. Isn’t it?

 

*I’ve just check the web.config and now it contains SafeControl tags for the both versions! Could it have been done automatically?

 

So, now you have an idea of my web.config (I’ll paste it bellow).

 

To recap the other points:

 

- I have one solution in the Central Administration.
Now it’s the new version, but it still impossible to retract properly.

Do you have a clue to ease retraction?

 

- I have no webpart component visible in the site collection webpart gallery.

It’s ok, as usual.

 

- I have two “Telerik RadEditor for MOSS” webparts in the dialog box for adding a webpart to a page (in the “Miscellaneous” category).

This is the main issue.

 

- Now, the old custom code is not called anymore.

It’s quite logical as I didn’t copy it in the new version’s Resources folder.

I wait for your answers before customizing the new folder.

 

Thank you in advance.

Regards,

Jeff

 

- - - - - - - - - -

PS: Here is the web.config.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>  
<configuration> 
  <configSections> 
    <sectionGroup name="SharePoint">  
      <section name="SafeControls" type="Microsoft.SharePoint.ApplicationRuntime.SafeControlsConfigurationHandler, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
      <section name="RuntimeFilter" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> 
      <section name="WebPartLimits" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> 
      <section name="WebPartCache" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> 
      <section name="WebPartWorkItem" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> 
      <section name="WebPartControls" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> 
      <section name="SafeMode" type="Microsoft.SharePoint.ApplicationRuntime.SafeModeConfigurationHandler, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
      <section name="MergedActions" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> 
      <section name="PeoplePickerWildcards" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> 
      <section name="BlobCache" type="System.Configuration.SingleTagSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> 
    </sectionGroup> 
    <sectionGroup name="System.Workflow.ComponentModel.WorkflowCompiler" type="System.Workflow.ComponentModel.Compiler.WorkflowCompilerConfigurationSectionGroup, System.Workflow.ComponentModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35">  
      <section name="authorizedTypes" type="System.Workflow.ComponentModel.Compiler.AuthorizedTypesSectionHandler, System.Workflow.ComponentModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" /> 
    </sectionGroup> 
    <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Culture=neutral, PublicKeyToken=31BF3856AD364E35">  
      <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Culture=neutral, PublicKeyToken=31BF3856AD364E35">  
        <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" /> 
        <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Culture=neutral, PublicKeyToken=31BF3856AD364E35">  
          <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere" /> 
          <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" /> 
          <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" /> 
          <section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication" /> 
        </sectionGroup> 
      </sectionGroup> 
    </sectionGroup> 
  </configSections> 
  <SharePoint> 
    <SafeMode MaxControls="200" CallStack="false" DirectFileDependencies="10" TotalFileDependencies="50" AllowPageLevelTrace="false">  
      <PageParserPaths> 
      </PageParserPaths> 
    </SafeMode> 
    <WebPartLimits MaxZoneParts="50" PropertySize="1048576" /> 
    <WebPartCache Storage="CacheObject" /> 
    <WebPartControls DatasheetControlGuid="65BCBEE4-7728-41a0-97BE-14E1CAE36AAE" /> 
    <SafeControls> 
      <SafeControl Assembly="System.Web, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="System.Web, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI.HtmlControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI.WebControls" TypeName="SqlDataSource" Safe="False" AllowRemoteDesigner="False" /> 
      <SafeControl Assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI.WebControls" TypeName="AccessDataSource" Safe="False" AllowRemoteDesigner="False" /> 
      <SafeControl Assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI.WebControls" TypeName="XmlDataSource" Safe="False" AllowRemoteDesigner="False" /> 
      <SafeControl Assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" Namespace="System.Web.UI.WebControls" TypeName="ObjectDataSource" Safe="False" AllowRemoteDesigner="False" /> 
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.ApplicationPages" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.SoapServer" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.SharePoint, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Meetings" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebPartPages" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.ApplicationPages" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.SoapServer" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Meetings" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.SharePoint.Search, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Search.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.SharePoint.Search, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Search.Internal.WebControls" TypeName="*" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Src="~/_controltemplates/*" IncludeSubFolders="True" Safe="True" AllowRemoteDesigner="True" /> 
      <SafeControl Assembly="Microsoft.Office.Workflow.Feature, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Workflow.Feature" TypeName="ProcessAllTasksButton" Safe="True" /> 
      <SafeControl Assembly="Microsoft.Office.Excel.WebUI, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Excel.WebUI" TypeName="*" /> 
      <SafeControl Assembly="Microsoft.Office.Server.UI, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebControls" TypeName="*" /> 
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=11.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="*" /> 
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing" TypeName="*" /> 
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.Internal.WebControls" TypeName="*" /> 
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.WebControls" TypeName="*" /> 
      <SafeControl Assembly="Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Publishing.Navigation" TypeName="*" /> 
      <SafeControl Assembly="Microsoft.Office.Server, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebControls" TypeName="*" /> 
      <SafeControl Assembly="Microsoft.Office.Server, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebControls.FieldTypes" TypeName="*" /> 
      <SafeControl Assembly="Microsoft.Office.Workflow.Feature, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.WebControls.FieldTypes" TypeName="*" /> 
      <SafeControl Assembly="Microsoft.Office.Excel.WebUI, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Excel.WebUI" TypeName="*" /> 
      <SafeControl Assembly="Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Portal.WebControls" TypeName="*" /> 
      <SafeControl Assembly="Microsoft.Office.Server.Search, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.Office.Server.Search.WebControls" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="System.Web.Extensions, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Web.UI" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1103.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1103.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1103.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.Design" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1103.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.Design" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1103.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI.Editor" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1103.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI.Widgets" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="RadEditorSharePoint, Version=5.6.0.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="RadEditorSharePoint, Version=5.6.0.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint.FieldEditor" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="RadEditorSharePoint, Version=5.6.0.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint.ListFieldEditor" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="SP.ListViewer" Namespace="SP.ListViewer" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="KWizCom.SharePoint.WebParts.SPRemoteListViewer, Version=1.0.0.0, Culture=neutral, PublicKeyToken=30fb4ddbec95ff8f" Namespace="KWizCom.Sharepoint.WebParts.SPRemoteListViewer" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1208.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1208.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI.Editor" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1208.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI.Widgets" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1208.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.Design" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="RadEditorSharePoint, Version=5.6.1.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="RadEditorSharePoint, Version=5.6.1.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint.FieldEditor" TypeName="*" Safe="True" /> 
      <SafeControl Assembly="RadEditorSharePoint, Version=5.6.1.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint.ListFieldEditor" TypeName="*" Safe="True" /> 
    </SafeControls> 
    <PeoplePickerWildcards> 
      <clear /> 
      <add key="AspNetSqlMembershipProvider" value="%" /> 
    </PeoplePickerWildcards> 
    <MergedActions> 
      <Action id="bf064279-3567-42bf-a34d-0a74f6fe56ca" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.dlc.xml" /> 
      <Action id="e3b7adae-f5db-4ce5-becb-1af83f7938ce" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.ewr.xml" /> 
      <Action id="89be315b-a983-44f9-b1ed-d9920cf5528e" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.osrv.xml" /> 
      <Action id="2637af1c-f384-4440-ab0c-e07a2e45f4d5" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.osrv.xml" /> 
      <Action id="fc002d03-7839-402b-a94a-1c9a2d40b63d" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="cd6122b2-5c40-45fb-952b-908354a91e33" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="2365277a-c5ee-4589-84d4-c759e6b9477d" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="0582988f-9c26-4990-8672-0099f4567b03" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="9008b35c-3ad5-4831-bcbe-ec456a4e152b" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="009e5494-26c5-4181-936f-4d16f444b642" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="ab44b1d7-83b4-487b-ae26-22abe4008258" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="72db2c92-8bc1-4767-a12c-94b67d46d0cf" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="4cc2777f-e9ed-4af4-acbb-9f101f64e4d6" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="4cca960b-247e-4743-9f4b-835975e867f9" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="5552b985-f1b8-4647-83e1-97a3a8d5ca60" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="4e6e31a8-e068-491e-8d32-38da48dcf10a" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="090de644-e7ee-4a67-8fbf-8f41f2b4f1ff" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="2468c72a-0386-4c9e-9143-392fe192f9c0" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="0f0fbbf9-92c0-49d0-89bd-969b596d8492" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.sps.xml" /> 
      <Action id="eaa3e0c0-973a-4dbd-96e9-48f7837a8909" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.spss.xml" /> 
      <Action id="8182ca12-e9a6-4f4f-9cfe-8a0a21e217e6" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.spss.xml" /> 
      <Action id="5055b13f-c200-45dd-8dbd-b046710e01ac" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.spss.xml" /> 
      <Action id="5321d9c5-2486-49e8-bd2d-ab555ac4083d" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.spss.xml" /> 
      <Action id="ea2d54ca-cd14-48a7-a5ca-b10b24141937" sourceFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\webconfig.spss.xml" /> 
    </MergedActions> 
    <BlobCache location="C:\blobCache" path="\.(gif|jpg|png|css|js)$" maxSize="10" enabled="false" /> 
    <RuntimeFilter Assembly="Microsoft.Office.Server, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Class="Microsoft.Office.Server.Audience.AudienceManager" BuilderURL="audience_chooser.aspx" /> 
  </SharePoint> 
  <system.web> 
    <securityPolicy> 
      <trustLevel name="WSS_Medium" policyFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\wss_mediumtrust.config" /> 
      <trustLevel name="WSS_Minimal" policyFile="C:\Program Files\Fichiers communs\Microsoft Shared\Web Server Extensions\12\config\wss_minimaltrust.config" /> 
    </securityPolicy> 
    <httpHandlers> 
      <remove verb="GET,HEAD,POST" path="*" /> 
      <add verb="GET,HEAD,POST" path="*" type="Microsoft.SharePoint.ApplicationRuntime.SPHttpHandler, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
      <add verb="OPTIONS,PROPFIND,PUT,LOCK,UNLOCK,MOVE,COPY,GETLIB,PROPPATCH,MKCOL,DELETE,(GETSOURCE),(HEADSOURCE),(POSTSOURCE)" path="*" type="Microsoft.SharePoint.ApplicationRuntime.SPHttpHandler, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
      <add verb="*" path="Reserved.ReportViewerWebControl.axd" type="Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> 
      <add verb="*" path="*.asmx" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 
      <add verb="*" path="*_AppService.axd" validate="false" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 
      <add verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false" /> 
      <add verb="*" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2009.3.1103.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false" /> 
      <!-- optional (Telerik.Web.UI.WebResource.axd) --> 
    </httpHandlers> 
    <customErrors mode="Off" /> 
    <httpRuntime maxRequestLength="51200" /> 
    <authentication mode="Windows" /> 
    <identity impersonate="true" /> 
    <authorization> 
      <allow users="*" /> 
    </authorization> 
    <httpModules> 
      <clear /> 
      <add name="SPRequest" type="Microsoft.SharePoint.ApplicationRuntime.SPRequestModule, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
      <add name="OutputCache" type="System.Web.Caching.OutputCacheModule" /> 
      <add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule" /> 
      <add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule" /> 
      <add name="WindowsAuthentication" type="System.Web.Security.WindowsAuthenticationModule" /> 
      <add name="RoleManager" type="System.Web.Security.RoleManagerModule" /> 
      <!-- <add name="Session" type="System.Web.SessionState.SessionStateModule"/> --> 
      <add name="PublishingHttpModule" type="Microsoft.SharePoint.Publishing.PublishingHttpModule, Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
      <add name="Session" type="System.Web.SessionState.SessionStateModule" /> 
      <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 
    </httpModules> 
    <globalization fileEncoding="utf-8" /> 
    <compilation batch="false" debug="false">  
      <assemblies> 
        <add assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add assembly="System.Core, Culture=neutral, PublicKeyToken=B77A5C561934E089" /> 
        <add assembly="System.Web.Extensions, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 
        <add assembly="System.Data.DataSetExtensions, Culture=neutral, PublicKeyToken=B77A5C561934E089" /> 
        <add assembly="System.Xml.Linq, Culture=neutral, PublicKeyToken=B77A5C561934E089" /> 
      </assemblies> 
      <expressionBuilders> 
        <remove expressionPrefix="Resources" /> 
        <add expressionPrefix="Resources" type="Microsoft.SharePoint.SPResourceExpressionBuilder, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add expressionPrefix="SPHtmlEncodedResources" type="Microsoft.SharePoint.SPHtmlEncodedResourceExpressionBuilder, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add expressionPrefix="SPSimpleFormattingEncodedResources" type="Microsoft.SharePoint.SPSimpleFormattingEncodedResourceExpressionBuilder, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add expressionPrefix="SPUrl" type="Microsoft.SharePoint.Publishing.WebControls.SPUrlExpressionBuilder, Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
      </expressionBuilders> 
    </compilation> 
    <pages enableSessionState="false" enableViewState="true" enableViewStateMac="true" validateRequest="false" pageParserFilterType="Microsoft.SharePoint.ApplicationRuntime.SPPageParserFilter, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" asyncTimeout="7">  
      <namespaces> 
        <remove namespace="System.Web.UI.WebControls.WebParts" /> 
      </namespaces> 
      <tagMapping> 
        <add tagType="System.Web.UI.WebControls.SqlDataSource, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" mappedTagType="Microsoft.SharePoint.WebControls.SPSqlDataSource, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
      </tagMapping> 
      <controls> 
        <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> 
        <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Culture=neutral,PublicKeyToken=31BF3856AD364E35" /> 
      </controls> 
    </pages> 
    <siteMap defaultProvider="CurrentNavSiteMapProvider" enabled="true">  
      <providers> 
        <add name="SPNavigationProvider" type="Microsoft.SharePoint.Navigation.SPNavigationProvider, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add name="SPSiteMapProvider" type="Microsoft.SharePoint.Navigation.SPSiteMapProvider, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add name="SPContentMapProvider" type="Microsoft.SharePoint.Navigation.SPContentMapProvider, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add name="SPXmlContentMapProvider" siteMapFile="_app_bin/layouts.sitemap" type="Microsoft.SharePoint.Navigation.SPXmlContentMapProvider, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add name="AdministrationQuickLaunchProvider" description="QuickLaunch navigation provider for the central administration site" type="Microsoft.Office.Server.Web.AdministrationQuickLaunchProvider, Microsoft.Office.Server.UI, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add name="SharedServicesQuickLaunchProvider" description="QuickLaunch navigation provider for shared services administration sites" type="Microsoft.Office.Server.Web.SharedServicesQuickLaunchProvider, Microsoft.Office.Server.UI, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add name="GlobalNavSiteMapProvider" description="CMS provider for Global navigation" type="Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" NavigationType="Global" EncodeOutput="true" /> 
        <add name="CombinedNavSiteMapProvider" description="CMS provider for Combined navigation" type="Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" NavigationType="Combined" EncodeOutput="true" /> 
        <add name="CurrentNavSiteMapProvider" description="CMS provider for Current navigation" type="Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" NavigationType="Current" EncodeOutput="true" /> 
        <add name="CurrentNavSiteMapProviderNoEncode" description="CMS provider for Current navigation, no encoding of output" type="Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" NavigationType="Current" EncodeOutput="false" /> 
        <add name="SiteDirectoryCategoryProvider" description="Site Directory category provider" type="Microsoft.SharePoint.Portal.WebControls.SiteDirectoryCategoryProvider, Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add name="MySiteMapProvider" description="MySite provider that returns areas and based on the current user context" type="Microsoft.SharePoint.Portal.MySiteMapProvider, Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add name="MySiteLeftNavProvider" description="MySite Left Nav provider that returns areas and based on the current user context" type="Microsoft.SharePoint.Portal.MySiteLeftNavProvider, Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add name="UsagePagesSiteMapProvider" description="Provider for navigation in Portal Usage pages" type="Microsoft.SharePoint.Portal.Analytics.UsagePagesSiteMapProvider, Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
      </providers> 
    </siteMap> 
    <trust level="WSS_Minimal" originUrl="" /> 
    <webParts> 
      <transformers> 
        <add name="TransformableFilterValuesToFilterValuesTransformer" type="Microsoft.SharePoint.WebPartPages.TransformableFilterValuesToFilterValuesTransformer, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add name="TransformableFilterValuesToParametersTransformer" type="Microsoft.SharePoint.WebPartPages.TransformableFilterValuesToParametersTransformer, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add name="TransformableFilterValuesToFieldTransformer" type="Microsoft.SharePoint.WebPartPages.TransformableFilterValuesToFieldTransformer, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
        <add name="TransformableFilterValuesToEntityInstanceTransformer" type="Microsoft.SharePoint.Portal.WebControls.TransformableFilterValuesToEntityInstanceTransformer, Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
      </transformers> 
    </webParts> 
    <machineKey validationKey="30E3D9898AB82C1A788273782C249B6D47DBE18C8A79EEB5" decryptionKey="7A7553A9B7E947E5EDFF8D18A038CDD90EB3C93D58CFB47D" validation="SHA1" /> 
    <sessionState mode="SQLServer" timeout="60" allowCustomSqlDatabase="true" partitionResolverType="Microsoft.Office.Server.Administration.SqlSessionStateResolver, Microsoft.Office.Server, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
  </system.web> 
  <runtime> 
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">  
      <dependentAssembly> 
        <assemblyIdentity name="Microsoft.SharePoint" publicKeyToken="71e9bce111e9429c" culture="neutral" /> 
        <bindingRedirect oldVersion="11.0.0.0" newVersion="12.0.0.0" /> 
      </dependentAssembly> 
      <dependentAssembly> 
        <assemblyIdentity name="Microsoft.SharePoint.Dsp" publicKeyToken="71e9bce111e9429c" culture="neutral" /> 
        <bindingRedirect oldVersion="11.0.0.0" newVersion="12.0.0.0" /> 
      </dependentAssembly> 
      <dependentAssembly> 
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.OleDb" publicKeyToken="71e9bce111e9429c" culture="neutral" /> 
        <bindingRedirect oldVersion="11.0.0.0" newVersion="12.0.0.0" /> 
      </dependentAssembly> 
      <dependentAssembly> 
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.SoapPT" publicKeyToken="71e9bce111e9429c" culture="neutral" /> 
        <bindingRedirect oldVersion="11.0.0.0" newVersion="12.0.0.0" /> 
      </dependentAssembly> 
      <dependentAssembly> 
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.Sts" publicKeyToken="71e9bce111e9429c" culture="neutral" /> 
        <bindingRedirect oldVersion="11.0.0.0" newVersion="12.0.0.0" /> 
      </dependentAssembly> 
      <dependentAssembly> 
        <assemblyIdentity name="Microsoft.SharePoint.Dsp.XmlUrl" publicKeyToken="71e9bce111e9429c" culture="neutral" /> 
        <bindingRedirect oldVersion="11.0.0.0" newVersion="12.0.0.0" /> 
      </dependentAssembly> 
      <dependentAssembly> 
        <assemblyIdentity name="Microsoft.SharePoint.intl" publicKeyToken="71e9bce111e9429c" culture="neutral" /> 
        <bindingRedirect oldVersion="11.0.0.0" newVersion="12.0.0.0" /> 
      </dependentAssembly> 
      <dependentAssembly> 
        <assemblyIdentity name="Microsoft.SharePoint.Library" publicKeyToken="71e9bce111e9429c" culture="neutral" /> 
        <bindingRedirect oldVersion="11.0.0.0" newVersion="12.0.0.0" /> 
      </dependentAssembly> 
      <dependentAssembly> 
        <assemblyIdentity name="Microsoft.SharePoint.Security" publicKeyToken="71e9bce111e9429c" culture="neutral" /> 
        <bindingRedirect oldVersion="11.0.0.0" newVersion="12.0.0.0" /> 
      </dependentAssembly> 
      <probing privatePath="bin;_app_bin" /> 
      <dependentAssembly xmlns="urn:schemas-microsoft-com:asm.v1">  
        <assemblyIdentity name="Microsoft.SharePoint.Portal" publicKeyToken="71e9bce111e9429c" culture="neutral" /> 
        <bindingRedirect oldVersion="11.0.0.0" newVersion="12.0.0.0" /> 
      </dependentAssembly> 
      <dependentAssembly> 
        <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" /> 
        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" /> 
      </dependentAssembly> 
      <dependentAssembly> 
        <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35" /> 
        <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0" /> 
      </dependentAssembly> 
        
      <dependentAssembly> 
        <assemblyIdentity name="RadEditorSharePoint" publicKeyToken="1f131a624888eeed" culture="neutral" /> 
        <bindingRedirect oldVersion="1.0.0.0-5.6.0.0" newVersion="5.6.1.0" /> 
      </dependentAssembly> 
        
    </assemblyBinding> 
  </runtime> 
  <location path="_layouts/images">  
    <system.web> 
      <authorization> 
        <allow users="*" /> 
      </authorization> 
    </system.web> 
  </location> 
  <location path="_layouts/mobile/mbllogin.aspx">  
    <system.web> 
      <authorization> 
        <allow users="*" /> 
      </authorization> 
    </system.web> 
  </location> 
  <System.Workflow.ComponentModel.WorkflowCompiler> 
    <authorizedTypes> 
      <authorizedType Assembly="System.Workflow.Activities, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="*" Authorized="True" /> 
      <authorizedType Assembly="System.Workflow.ComponentModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="*" Authorized="True" /> 
      <authorizedType Assembly="System.Workflow.Runtime, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" Namespace="System.Workflow.*" TypeName="*" Authorized="True" /> 
      <authorizedType Assembly="System.Transactions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System*" TypeName="*" Authorized="True" /> 
      <authorizedType Assembly="mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System*" TypeName="*" Authorized="True" /> 
      <authorizedType Assembly="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" Namespace="System*" TypeName="*" Authorized="True" /> 
      <authorizedType Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="SPWorkflowActivationProperties" Authorized="True" /> 
      <authorizedType Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="SPWorkflowTaskProperties" Authorized="True" /> 
      <authorizedType Assembly="Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.Workflow" TypeName="SPWorkflowHistoryEventType" Authorized="True" /> 
      <authorizedType Assembly="Microsoft.SharePoint.WorkflowActions, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" Namespace="Microsoft.SharePoint.WorkflowActions" TypeName="*" Authorized="True" /> 
    </authorizedTypes> 
  </System.Workflow.ComponentModel.WorkflowCompiler> 
  <appSettings> 
    <add key="FeedCacheTime" value="300" /> 
    <add key="FeedPageUrl" value="/_layouts/feed.aspx?" /> 
    <add key="FeedXsl1" value="/Style Library/Xsl Style Sheets/Rss.xsl" /> 
    <add key="ReportViewerMessages" value="Microsoft.SharePoint.Portal.Analytics.UI.ReportViewerMessages, Microsoft.SharePoint.Portal, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" /> 
  </appSettings> 
  <system.net> 
    <defaultProxy> 
      <proxy autoDetect="true" /> 
    </defaultProxy> 
  </system.net> 
  <system.web.extensions> 
    <scripting> 
      <webServices> 
        <!-- Uncomment this line to enable the authentication service. Include requireSSL="true" if appropriate. --> 
        <!--
       <authenticationService enabled="true" requireSSL = "true|false"/>
     --> 
        <!-- Uncomment these lines to enable the profile service. To allow profile properties to be retrieved and modified in ASP.NET AJAX applications, you need to add each property name to the readAccessProperties and writeAccessProperties attributes. --> 
        <!--  
     <profileService enabled="true" 
                     readAccessProperties="propertyname1,propertyname2" 
                     writeAccessProperties="propertyname1,propertyname2" /> 
     --> 
      </webServices> 
      <!--
     <scriptResourceHandler enableCompression="true" enableCaching="true" />
     --> 
    </scripting> 
  </system.web.extensions> 
  <system.webServer> 
    <validation validateIntegratedModeConfiguration="false" /> 
    <modules> 
      <remove name="ScriptModule" /> 
      <add name="ScriptModule" preCondition="integratedMode" type="System.Web.Handlers.ScriptModule, &#xD;&#xA;         System.Web.Extensions, &#xD;&#xA;           Culture=neutral, &#xD;&#xA;         PublicKeyToken=31BF3856AD364E35" /> 
      <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, &#xD;&#xA;         System.Web.Extensions, &#xD;&#xA;           Culture=neutral, &#xD;&#xA;         PublicKeyToken=31BF3856AD364E35" /> 
    </modules> 
    <handlers> 
      <remove name="WebServiceHandlerFactory-Integrated" /> 
      <remove name="ScriptHandlerFactory" /> 
      <remove name="ScriptHandlerFactoryAppServices" /> 
      <remove name="ScriptResource" /> 
      <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, &#xD;&#xA;           System.Web.Extensions, &#xD;&#xA;           Culture=neutral, &#xD;&#xA;         PublicKeyToken=31BF3856AD364E35" /> 
      <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, &#xD;&#xA;          System.Web.Extensions, &#xD;&#xA;           Culture=neutral, &#xD;&#xA;         PublicKeyToken=31BF3856AD364E35" /> 
      <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, &#xD;&#xA;            System.Web.Extensions, &#xD;&#xA;           Culture=neutral, &#xD;&#xA;         PublicKeyToken=31BF3856AD364E35" /> 
    </handlers> 
  </system.webServer> 
</configuration> 
0
Stanimir
Telerik team
answered on 12 Jan 2010, 10:46 AM
Hi Jean-François Robe,

I have two “Telerik RadEditor for MOSS” webparts in the dialog box for adding a webpart to a page (in the “Miscellaneous” category). - Since you have no webpart component visible in the site collection webpart gallery, the only solution that I can give you is uninstalling RadEditor for MOSS as it is explained in the following online help article http://www.telerik.com/help/aspnet-ajax/uninstalling-radeditor.html and reinstalling it again.

Regarding the web config file, make sure that after the reinstall you make the following modifications.
1. The telerik related SafeControl statements should be reduced to:
<SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1208.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TypeName="*" Safe="True" />
<SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1208.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI.Editor" TypeName="*" Safe="True" />
<SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1208.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI.Widgets" TypeName="*" Safe="True" />
<SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1208.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.Design" TypeName="*" Safe="True" />
<SafeControl Assembly="RadEditorSharePoint, Version=5.6.1.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" />
<SafeControl Assembly="RadEditorSharePoint, Version=5.6.1.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint.FieldEditor" TypeName="*" Safe="True" />
<SafeControl Assembly="RadEditorSharePoint, Version=5.6.1.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint.ListFieldEditor" TypeName="*" Safe="True" />
<SafeControl Assembly="RadEditorSharePoint, Version=5.6.0.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" Namespace="Telerik.SharePoint" TypeName="*" Safe="True" />

2. Change the version of the Telerik.Web.UI in the type declaration for Telerik.Web.UI.WebResource.axd.
Replace 2009.3.1103.20 with 2009.3.1208.20.
<add verb="*" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2009.3.1208.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false" />

3. The Following bindig redirect is correct.
<dependentAssembly>
    <assemblyIdentity name="RadEditorSharePoint" publicKeyToken="1f131a624888eeed" culture="neutral" />
    <bindingRedirect oldVersion="1.0.0.0-5.6.0.0" newVersion="5.6.1.0" />
</dependentAssembly>

The following steps are necessary if you want to use 2009.3.1208.35 version of Telerik.Web.UI.
1. Make sure that you add the 2009.3.1208.35 Telerik.Web.UI.dll to the GAC.

2. Add the following SafeControl statement.
<SafeControl Assembly="Telerik.Web.UI, Version=2009.3.1208.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TypeName="*" Safe="True" />

3. Change the version of the Telerik.Web.UI in the type declaration for Telerik.Web.UI.WebResource.axd.
Replace 2009.3.1208.20 with 2009.3.1208.35.
<add verb="*" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2009.3.1208.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false" />

4. Add the following binding redirect.
<dependentAssembly>
    <assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4" />
    <bindingRedirect oldVersion="1.0.0.0-2009.3.1208.20" newVersion="2009.3.1208.35" />
</dependentAssembly>

I hope this helps.

Best wishes,
Stanimir
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Jean-François Robe
Top achievements
Rank 1
answered on 12 Jan 2010, 04:25 PM

Hello Stanimir,

 

I followed your instructions (except the steps for using the 2009.3.1208.35 version of Telerik.Web.UI).

The uninstall goes well: I have no WCM scenario, the retraction processed quickly, and then I’ve deleted the solution.

After re-installing, I’ve checked the web.config: only the Telerik.Web.UI.WebResource.axd type declaration was missing.

 

I’ve tried again but I still have two RadEditor components. [See image #1]

 

I’ve made further tests around uninstalling:

- I checked again that there’s no RadEditor component in the gallery, and no feature activated.

- I removed each occurrence of the RadEditor on the WebPart pages.

- I retracted the solution and deleted it.

- I checked that there’s no RadEditor folder (near the “12”).

- I deleted the RadEditor assembly from the GAC.

 

With this configuration, I hope there’s no more any trace of the RadEditor…

It should not, right?

 

Nevertheless, the “Add a webpart” dialog keeps displaying a RadEditor component! Only one, but one instead of zero. [See image #2]

 

When I try to add it, it raises an error. [See image #3]

The error message says something like:

“Impossible to add the selected WebPart component(s).

 Telerik RadEditor for MOSS: Impossible to import this WebPart component.”

 

When I click “OK” the page is still empty (and in edition mode). But if I keep the page in this status, reinstall the solution (deploy it and check the web.config) and come back to the page to refresh it, then the component finally appears on the page and works well!

 

To recap:

- When the RadEditor is installed, the dialog displays 2 components instead of 1.

The components work and seem to have the same behavior.

- When the RadEditor is uninstalled, the dialog displays 1 component instead of 0.

The component doesn’t work, it raises an error.

 

I hope this help.

 

Regards,

Jeff

0
Stanimir
Telerik team
answered on 14 Jan 2010, 03:08 PM
Hello Jean-François Robe,
From what I get, the problem is that after you uninstall the solution a Telerik RadEditor for MOSS (probably form the previous version, which by some reason did not uninstall correctly) option is still available in the Web Parts Gallery list. I did some research of how you can manually remove it but unfortunately did not find any articles that might help.

So at this point I suggest you try a couple more test with the uninstall.
I know of two ways of uninstalling:
1. Using the SharePoint Central Administration page as it is described in the help article I provided in my previous post.

2. Execute the following stsadm commands:

stsadm -o retractsolution -name RadEditorMOSS.wsp -immediate -allcontenturls
stsadm -o deletesolution -name RadEditorMOSS.wsp

Make sure that you execute the second command 2,3 minutes after the first command. This time is needed for some processes of the retraction to be completed.

Also try executing iisreset command after the uninstall.

I really can not think of any reason that might be causing the Telerik RadEditor for MOSS option to stay in the list after a proper uninstall.

One other thing you can do is check if there are any errors in the event log. If there are errors, they might help us resolve the issue.


All the best,
Stanimir
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Jean-François Robe
Top achievements
Rank 1
answered on 15 Jan 2010, 11:13 AM

Hello Stanimir,

 

I’ve tried the uninstall with stsadm command lines. It ran without warning.

Unfortunately, I still have the issue.

 

I’ve checked for the logs and I’d like to share them with you but there’s about 2500 lines and most of them seem to concern our operations. I think it’s too long to paste it in a post. Is there a way to attach the log file or to send it to you ?

 

In the meantime here’s the last part of the log file, starting with the moment when I’ve tried to add the “persistent” RadEditor component webpart. We can see that it references the previous version (5.6.0.0):

 

01/15/2010 10:46:45.04  w3wp.exe (0x0A8C)                        0x0BE0 Windows SharePoint Services    Web Parts                      8l4f Monitorable Error importing WebPart. Assembly RadEditorSharePoint,Version=5.6.0.0,Culture=neutral,PublicKeyToken=1f131a624888eeed, TypeName. Telerik.SharePoint.RadEditorWebPart 
01/15/2010 10:46:45.04  w3wp.exe (0x0A8C)                        0x0BE0 Windows SharePoint Services    Web Parts                      89ku High     Failed to add webpart virtualserverwp:c:/inetpub/wwwroot/wss/virtualdirectories/55555/wpcatalog/radeditorsharepoint_5.6.0.0__1f131a624888eeed_radeditorsharepoint.dwp;Telerik%2520RadEditor%2520for%2520MOSS.  Exception Microsoft.SharePoint.WebPartPages.WebPartPageUserException: Impossible d'importer ce composant WebPart.     à Microsoft.SharePoint.WebPartPages.WebPartImporter.CreateWebPart(Boolean clearConnections)     à Microsoft.SharePoint.WebPartPages.WebPartImporter.Import(SPWebPartManager manager, XmlReader reader, Boolean clearConnections, Uri webPartPageUri, SPWeb spWeb)     à Microsoft.SharePoint.WebPartPages.WebPartImporter.Import(SPWebPartManager manager, XmlReader reader, Boolean clearConnections, SPWeb spWeb)     à Microsoft.SharePoint.WebPartPages.WebPartQuickAdd.ImportVirtualSe... 
01/15/2010 10:46:45.04* w3wp.exe (0x0A8C)                        0x0BE0 Windows SharePoint Services    Web Parts                      89ku High     ...rverWebPart(String filePath, SPWebPartManager manager, SPWeb currentWeb)     à Microsoft.SharePoint.WebPartPages.WebPartQuickAdd.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) 
01/15/2010 10:46:55.67  wsstracing.exe (0x086C)                  0x0B64 ULS Logging                    Unified Logging Service        uls1 Monitorable Tracing Service lost trace events.  Current value 1. 
01/15/2010 10:47:00.37  OWSTIMER.EXE (0x0858)                    0x0614 SharePoint Portal Server       SSO                            8inc Medium   In SSOService::Synch(), sso database conn string:  
01/15/2010 10:47:00.47  OWSTIMER.EXE (0x0858)                    0x0614 Office Server                  Setup and Upgrade              8u3j High     Registry key value {SearchThrottled} was not found under registry hive {Software\Microsoft\Office Server\12.0}. Assuming search sku is not throttled. 
01/15/2010 10:47:00.54  OWSTIMER.EXE (0x0858)                    0x0614 Search Server Common           MS Search Administration       90gf Medium   SQL: dbo.proc_MSS_PropagationGetQueryServers 
01/15/2010 10:47:00.59  OWSTIMER.EXE (0x0858)                    0x0614 Search Server Common           MS Search Administration       8wni High     Resuming default catalog with reason 'GPR_PROPAGATION' for application 'SharedServices1'... 
01/15/2010 10:47:00.59  mssearch.exe (0x0DA0)                    0x0C70 Search Server Common           GatherSvc                      0 Medium   CGatherApplication::CGatherApplication::IsApplicationAssignedToIndexer - Checking which Indexer machine owns application '0d44ee22-fb09-415b-9e71-26818b59c941'. - File:d:\office\source\search\search\gather\gthrsvc\gthrapp.cxx Line:905 
01/15/2010 10:47:00.59  mssearch.exe (0x0DA0)                    0x0C70 Search Server Common           GatherSvc                      0 Medium   CGatherApplication::CGatherApplication::GetRole - What is the role of this server? - File:d:\office\source\search\search\gather\gthrsvc\gthrapp.cxx Line:730 
01/15/2010 10:47:00.59  mssearch.exe (0x0DA0)                    0x0C70 Search Server Common           GatherSvc                      0 Medium   CGatherApplication::CGatherApplication::GetRole - The role of this server is 3 - File:d:\office\source\search\search\gather\gthrsvc\gthrapp.cxx Line:752 
01/15/2010 10:47:00.60  mssearch.exe (0x0DA0)                    0x0C70 Search Server Common           GatherSvc                      0 Medium   Application '0d44ee22-fb09-415b-9e71-26818b59c941' - The property 'indexer' contains 'SERVEUR'. - File:d:\office\source\search\search\gather\gthrsvc\gthrapp.cxx Line:1018 
01/15/2010 10:47:00.60  mssearch.exe (0x0DA0)                    0x0C70 Search Server Common           GatherSvc                      0 Medium   Application '0d44ee22-fb09-415b-9e71-26818b59c941' - The netbios name is 'SERVEUR', wss server name 'SERVEUR'. - File:d:\office\source\search\search\gather\gthrsvc\gthrapp.cxx Line:782 
01/15/2010 10:47:00.61  OWSTIMER.EXE (0x0858)                    0x0614 Search Server Common           MS Search Administration       8wnj High     Resuming anchor text catalog with reason GPR_PROPAGATION' for application 'SharedServices1'... 
01/15/2010 10:47:00.61  mssearch.exe (0x0DA0)                    0x0C70 Search Server Common           GatherSvc                      0 Medium   CGatherApplication::CGatherApplication::IsApplicationAssignedToIndexer - Checking which Indexer machine owns application '0d44ee22-fb09-415b-9e71-26818b59c941'. - File:d:\office\source\search\search\gather\gthrsvc\gthrapp.cxx Line:905 
01/15/2010 10:47:00.61  mssearch.exe (0x0DA0)                    0x0C70 Search Server Common           GatherSvc                      0 Medium   CGatherApplication::CGatherApplication::GetRole - What is the role of this server? - File:d:\office\source\search\search\gather\gthrsvc\gthrapp.cxx Line:730 
01/15/2010 10:47:00.61  mssearch.exe (0x0DA0)                    0x0C70 Search Server Common           GatherSvc                      0 Medium   CGatherApplication::CGatherApplication::GetRole - The role of this server is 3 - File:d:\office\source\search\search\gather\gthrsvc\gthrapp.cxx Line:752 
01/15/2010 10:47:00.61  mssearch.exe (0x0DA0)                    0x0C70 Search Server Common           GatherSvc                      0 Medium   Application '0d44ee22-fb09-415b-9e71-26818b59c941' - The property 'indexer' contains 'SERVEUR'. - File:d:\office\source\search\search\gather\gthrsvc\gthrapp.cxx Line:1018 
01/15/2010 10:47:00.61  mssearch.exe (0x0DA0)                    0x0C70 Search Server Common           GatherSvc                      0 Medium   Application '0d44ee22-fb09-415b-9e71-26818b59c941' - The netbios name is 'SERVEUR', wss server name 'SERVEUR'. - File:d:\office\source\search\search\gather\gthrsvc\gthrapp.cxx Line:782 
01/15/2010 10:47:00.70  OWSTIMER.EXE (0x0858)                    0x0614 Search Server Common           MS Search Administration       8dvl Medium   Search application '0d44ee22-fb09-415b-9e71-26818b59c941': Provision start addresses in default content source. 
01/15/2010 10:47:00.76  OWSTIMER.EXE (0x0858)                    0x0614 Search Server Common           MS Search Administration       7hmh High     exception in SearchUpgradeProvisioner Keyword Config System.InvalidOperationException: jobServerSearchServiceInstance is null     à Microsoft.Office.Server.Search.Administration.SearchUpgradeProvisioner..ctor(SearchServiceInstance searchServiceInstance)     à Microsoft.Office.Server.Search.Administration.OSSPrimaryGathererProject.ProvisionContentSources() 
01/15/2010 10:47:04.89  w3wp.exe (0x0A8C)                        0x0BE0 SharePoint Portal Server       Runtime                        8gp7 Medium   Topology cache updated. (AppDomain: /LM/W3SVC/1994762802/Root-1-129080222915080784) 
01/15/2010 10:47:06.44  mssearch.exe (0x0DA0)                    0x0604 Search Server Common           GatherSvc                      0 Medium   CGatherApplication::CGatherApplication::GetRole - What is the role of this server? - File:d:\office\source\search\search\gather\gthrsvc\gthrapp.cxx Line:730 
01/15/2010 10:47:06.44  mssearch.exe (0x0DA0)                    0x0604 Search Server Common           GatherSvc                      0 Medium   CGatherApplication::CGatherApplication::GetRole - The role of this server is 3 - File:d:\office\source\search\search\gather\gthrsvc\gthrapp.cxx Line:752 
01/15/2010 10:47:19.52  OWSTIMER.EXE (0x0858)                    0x0D84 Excel Services                 Excel Services Administration  8tqi Medium   ExcelServerSharedWebApplication.Synchronize: Starting synchronize for instance of Excel Services in SSP 'SharedServices1'. 
01/15/2010 10:47:19.53  OWSTIMER.EXE (0x0858)                    0x0D84 Excel Services                 Excel Services Administration  8tqj Medium   ExcelServerSharedWebApplication.Synchronize: Successfully synchronized instance of Excel Services in SSP 'SharedServices1'.


Regards,
Jeff

0
Stanimir
Telerik team
answered on 19 Jan 2010, 10:46 AM
Hi Jean-François Robe,

Here is one other suggestion. Obviously the 5.6.0.0 version of RadEditor for MOSS did not uninstall correctly. So try the following. Make sure that you do not have any radeditormoss.wsp solutions deployed in the Operations -> Solution Manager of SharePoint Central Administration. Then install 5.6.0.0 version of RadEditor for MOSS. After you make sure that the installation processed successfully and you can add the “persistent” RadEditor component webpart, try uninstalling as it is described in the help article http://www.telerik.com/help/aspnet-ajax/uninstalling-radeditor.html. If you uninstall it successfully you can continue upgrading.

It is normal to receive the "Monitorable Error importing WebPart. Assembly RadEditorSharePoint,Version=5.6.0.0 ..." since the web part is broken.


Kind regards,
Stanimir
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
0
Jean-François Robe
Top achievements
Rank 1
answered on 21 Jan 2010, 04:53 PM

Hello Stanimir,

 

I had to made it two times and it finally works!

 

The second time, I’ve made the following operations:

 Add solution 5.6.0 (stsadm)

 Deploy it (GUI)

 IIS reset

 Test on the page: one webpart but it fails (like when the solution is deleted)!?

 Delete the page (so there’s no occurrence of the webpart)

 Retract solution (GUI)

 Delete solution (GUI)

 Reboot the server (this seemed to be the most important missing step)

 Test: OK (no more persistent webpart)

 Add solution 5.6.1 (stsadm)

 Deploy it (GUI)

 IIS reset

 Test on the page: only one webpart, it works.

 

Now I have a clean RadEditor 5.6.1 install, I’m ready to add my custom dialog… !

 

Thank you very much for your support.

 

Regards,

Jeff

0
Stanimir
Telerik team
answered on 22 Jan 2010, 07:58 AM
Hello Jean-François Robe,
I am glad that you managed to fix the problem. If you have any further questions, I will be glad to answer them.

Greetings,
Stanimir
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
WebParts for SharePoint
Asked by
Jean-François Robe
Top achievements
Rank 1
Answers by
Stanimir
Telerik team
Jean-François Robe
Top achievements
Rank 1
Share this question
or