<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rssdatehelper="urn:rssdatehelper"><channel><title>Latest wiki update</title><link>http://our.umbraco.org</link><pubDate></pubDate><generator>umbraco</generator><description>New pages on the umbraco documentation wiki</description><language>en</language><item><title>The page 'new-page' was not found here</title><link>http://our.umbraco.org/wiki/reference/templates/the-page-new-page-was-not-found-here</link><pubDate>Tue, 21 May 2013 07:08:35 GMT</pubDate><guid>http://our.umbraco.org/wiki/reference/templates/the-page-new-page-was-not-found-here</guid><content:encoded><![CDATA[ <p>You can start adding content to this page right away, by clicking the button below</p>]]></content:encoded></item><item><title>Macro with usercontrol </title><link>http://our.umbraco.org/wiki/how-tos/macro-with-usercontrol-</link><pubDate>Mon, 20 May 2013 08:28:06 GMT</pubDate><guid>http://our.umbraco.org/wiki/how-tos/macro-with-usercontrol-</guid><content:encoded><![CDATA[ <p>Hello,</p>
<p>I have started umbraco before 2 days ago.I learned about macro and created demo "hello world" as shown in video tutorial.</p>
<p>But i want to create user control with jquery ,i have created it but it is not taking effect of jquery and it's css.may be there is issues of path of js and css</p>
<p>I have created macro for my user control and added it in template .it is working but without taking an effect of jquery</p>
<p>so what should i do to assign proper path means where i should put my css and js ?</p>
<p>please help me out this.</p>]]></content:encoded></item><item><title>editconfigfile</title><link>http://our.umbraco.org/wiki/umbraco-help/developer/editconfigfile</link><pubDate>Wed, 17 Apr 2013 12:03:44 GMT</pubDate><guid>http://our.umbraco.org/wiki/umbraco-help/developer/editconfigfile</guid><content:encoded><![CDATA[ <h1>Edit valid elements in tinyMCE RTE Config file.</h1>
<p>&nbsp;</p>
<p>Very recently i face this kind of hurdle. when I paste a content attached with script is not rendering in the rte. I was checking the reasons and found that, there is a config ile in the /Config/tinyMCEConfig.config file in that, a tag named &lt;ValidElements&gt; consists of all the valid items that are accepted by the TinyMCE Editor. </p>
<p>&nbsp;</p>
<p>
Before edit the config file. Check this <a href="http://www.tinymce.com/wiki.php/Configuration:valid_elements">link.</a></p>]]></content:encoded></item><item><title>using IApplicationEventHandler to register events</title><link>http://our.umbraco.org/wiki/reference/api-cheatsheet/using-iapplicationeventhandler-to-register-events</link><pubDate>Mon, 25 Feb 2013 21:33:21 GMT</pubDate><guid>http://our.umbraco.org/wiki/reference/api-cheatsheet/using-iapplicationeventhandler-to-register-events</guid><content:encoded><![CDATA[ <p>From Umbraco 4.8 ? the previous method of registering for events in umbraco using ApplicationBase has been deprecated - it is now recommended that you impliment IApplicationEventHandler to run things at application startup such as registering for events</p>
<p><strong>Note: There is a slight diffrence in implimentation between v4 and v6 of umbraco</strong></p>
<p>in Umbraco 4.11.x&nbsp;</p>
<pre>using Umbraco.Web;</pre>
<div>in Umbraco 6.*</div>
<pre>using Umbraco.Core;</pre>
<p>you need to have the following three functions in your class to impliment the interface:</p>
<p>umbraco 4.x</p>
<pre>public void OnApplicationStarted(UmbracoApplication httpApplication, Umbraco.Core.ApplicationContext applicationContext) { }&nbsp;<br />public void OnApplicationStarting(UmbracoApplication httpApplication, Umbraco.Core.ApplicationContext applicationContext) &nbsp; { &nbsp; }<br />public void OnApplicationInitialized(UmbracoApplication httpApplication, Umbraco.Core.ApplicationContext applicationContext) &nbsp;{ &nbsp; }</pre>
<div>umbraco 6</div>
<div>
<pre>public void OnApplicationStarted(UmbracoApplicationBase httpApplicationBase, Umbraco.Core.ApplicationContext applicationContext) { }&nbsp;<br />public void OnApplicationStarting(UmbracoApplicationBase httpApplicationBase, Umbraco.Core.ApplicationContext applicationContext) &nbsp; {  }<br />public void OnApplicationInitialized(UmbracoApplicationBase httpApplicationBase, Umbraco.Core.ApplicationContext applicationContext) &nbsp;{  }</pre>
</div>
<div>If you just want to register events - you can do this in <strong>OnApplicationStarted</strong>.&nbsp;</div>
<div>however you cannot guarantee that OnApplicationStarted will be called only once - so you build in a lock to ensure you code only initlizes once.&nbsp;</div>
<div>Example (for v4) Below:&nbsp;</div>
<pre><div>public class uSync : IApplicationEventHandler</div><div>{</div><div>  private static object _lockObj = new object(); </div><div>  private static bool _ran = false ; </div><div>  public void OnApplicationStarted(UmbracoApplication httpApplication, Umbraco.Core.ApplicationContext applicationContext)</div><div>  {</div><div>    // lock</div><div>&nbsp;   if (!_ran)</div><div>&nbsp;   {</div><div>  &nbsp;   lock (_lockObj)</div><div>&nbsp;   &nbsp; {</div><div>&nbsp;   &nbsp;   if (!_ran)</div><div>&nbsp; &nbsp; &nbsp;   {</div><div>&nbsp; &nbsp;     &nbsp; // everything we do here is blocking</div><div>&nbsp; &nbsp;   &nbsp; &nbsp; // on application start, so we should be&nbsp;</div><div>&nbsp;   &nbsp; &nbsp; &nbsp; // quick.&nbsp;</div><div>  <span style="white-space:pre">	</span>  // do you're registering here... or in a function </div><div>  <span style="white-space:pre">	</span>  // you will need to add the relevent class at the top of your code (i.e using Umbraco.cms.businesslogic.web)</div><div>  </div><div>          Document.BeforePublish += new Document.PublishEventHandler(Document_BeforePublish);
</div><div>&nbsp; &nbsp; &nbsp; &nbsp;   _ran = true;</div><div>&nbsp; &nbsp; &nbsp;   }</div><div>&nbsp; &nbsp;   }</div><div>    }</div><div>  }</div><div>  //</div><div>  // your event delegate can go here..</div><div>  //  you might want to seperate these classes from teh IApplicationEventHander for ease of use...</div><div>  //</div><div>  void Document_BeforePublish(Document sender, PublishEventArgs e)
  {

      Log.Add(LogTypes.Debug, sender.Id, "the document " + sender.Text + " is about to be published");

      //cancel the publishing
      e.Cancel = true;
  }
</div><div>  // other functions in Interface </div><div>  public void OnApplicationStarting(UmbracoApplication httpApplication, Umbraco.Core.ApplicationContext applicationContext)
  {
  }
 
  public void OnApplicationInitialized(UmbracoApplication httpApplication, Umbraco.Core.ApplicationContext applicationContext)
  {
  }</div><div>}</div><div>&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</div></pre>
<p>&nbsp;</p>]]></content:encoded></item><item><title>Peru</title><link>http://our.umbraco.org/wiki/user-groups/south-america/peru</link><pubDate>Wed, 16 Jan 2013 19:35:19 GMT</pubDate><guid>http://our.umbraco.org/wiki/user-groups/south-america/peru</guid><content:encoded><![CDATA[ <p>Lanzamos el grupo G+ dedicado a Umbraco en Espa&ntilde;ol. Tambien, si quieren unirse en persona (Lima, Per&uacute;) sobre Umbraco, entra al grupo y postea sobre tu interes. Nos gustaria empezar un grupo de usuarios aqui en Lima &nbsp;y tambi&eacute;n online detro de la comunidad en espa&ntilde;ol</p>
<p><a href="https://plus.google.com/b/118009765373471270760/communities/112934191929020503914" target="_blank">https://plus.google.com/b/118009765373471270760/communities/112934191929020503914</a></p>
<p>We've launched a G+ group for Umbraco in Spanish. &nbsp;Also, if you'd like to meet in person and are in Lima, Peru, join our group and post about your interest. &nbsp;We'd like to get a user group started here in Lima and in general online in the Spanish community. &nbsp;Either Spanish or English or both languages are great for the in person group.</p>
<p><a href="https://plus.google.com/b/118009765373471270760/communities/112934191929020503914" target="_blank"></a></p>
<p><a href="https://plus.google.com/b/118009765373471270760/communities/112934191929020503914" target="_blank"></a></p>
<p><a href="https://plus.google.com/b/118009765373471270760/communities/112934191929020503914" target="_blank"></a></p>
<p><a href="https://plus.google.com/b/118009765373471270760/communities/112934191929020503914" target="_blank"></a></p>
<p><a href="https://plus.google.com/b/118009765373471270760/communities/112934191929020503914" target="_blank"></a></p>]]></content:encoded></item><item><title>Meta Tags: optional input</title><link>http://our.umbraco.org/wiki/reference/xslt/meta-tags-optional-input</link><pubDate>Thu, 27 Sep 2012 14:01:31 GMT</pubDate><guid>http://our.umbraco.org/wiki/reference/xslt/meta-tags-optional-input</guid><content:encoded><![CDATA[ <p>This is a simple snippet to use for meta tags (keyword and description):</p>
<p>(Assuming <strong>metaKeywords</strong> and <strong>metaDescription</strong> are properties defined on the document type.)</p>
<pre>&lt;xsl:if test="$currentPage[normalize-space(metaKeywords)]"&gt;<br />   &lt;meta name="keywords" content="{$currentPage/metaKeywords}"/&gt;<br />&lt;/xsl:if&gt;<br />&lt;xsl:if test="$currentPage[normalize-space(metaDescription)]"&gt;<br />   &lt;meta name="description" content="{$currentPage/metaDescription}"/&gt;<br />&lt;/xsl:if&gt;</pre>
<p>The metatags are optional: if they are empty, then they aren't displayed.</p>
<p>It is also possible to use metatags without xslt, with basic umbraco functionality like this:</p>
<pre>&lt;umbraco:Item runat="server" field="metaDescription" 
         insertTextBefore="&amp;lt;meta name=&amp;quot;description&amp;quot; content=&amp;quot;" 
         insertTextAfter="&amp;quot; /&amp;gt;" recursive="true"/&gt;
&lt;umbraco:Item runat="server" field="metaKeywords" 
         insertTextBefore="&amp;lt;meta name=&amp;quot;keywords&amp;quot; content=&amp;quot;" 
         insertTextAfter="&amp;quot; /&amp;gt;" recursive="true"/&gt;
</pre>]]></content:encoded></item><item><title>Additional steps for proxy &amp; email setup</title><link>http://our.umbraco.org/wiki/install-and-setup/how-to-install-umbraco-on-windows-server-2008/additional-steps-for-proxy-email-setup</link><pubDate>Thu, 21 Jun 2012 15:49:21 GMT</pubDate><guid>http://our.umbraco.org/wiki/install-and-setup/how-to-install-umbraco-on-windows-server-2008/additional-steps-for-proxy-email-setup</guid><content:encoded><![CDATA[ <h2>Additional Setup/Configuration Steps</h2>
<h3><strong>Setting up your proxy details.</strong></h3>
<h3> </h3>
<p>The following steps should
 be performed on your Umbraco deployment prior to running the setup 
facility.  These steps should ensure you are able to install starter kits and packages from 
the Umbraco repository.</p>
<p>1. Create proxy entry in Umbraco Web.Config file within &lt;System.Net&gt; as shown below. Add your proxy details, and set 'ByPassOnLocal' property to 
false (some proxy servers may require this to be set as "true", so it's always worth trying if you are having any issues). </p>
<pre><code class="xml syntaxhl"><span class="CodeRay"><span class="line-numbers">1</span>    <span class="tag">&lt;System.Net&gt;</span>
<span class="line-numbers">2</span>        <span class="tag">&lt;defaultProxy&gt;</span>
<span class="line-numbers">3</span>            <span class="tag">&lt;proxy</span> <span class="attribute-name">proxyaddress</span>=<span class="string"><span class="delimiter">"</span><span class="content">http://x.x.x.x</span><span class="delimiter">"</span></span> <span class="attribute-name">bypassonlocal</span>=<span class="string"><span class="delimiter">"</span><span class="content">false</span><span class="delimiter">"</span></span><span class="tag">/&gt;</span>
<span class="line-numbers">4</span>        <span class="tag">&lt;/defaultProxy&gt;</span>
<span class="line-numbers">5</span>    <span class="tag">&lt;/System.Net&gt;</span>
</span></code><br /></pre>
<p>2. If you are having problems installing packages ensure the application pool, allocated to the website, has 
required permissions on the website folder i.e. modify &amp; write. eg. IIS APPPOOL\xxx where xxx is the name of the allocated application pool - 'IIS APPPOOL\Umbraco v4'.<br />You may also need to give this application pool permissions to your system Temp folder.</p>
<p>More information here on defaultProxy web.config schema: <a href="http://msdn.microsoft.com/en-us/library/kd3cf2ex">http://msdn.microsoft.com/en-us/library/kd3cf2ex</a></p>
<p>Full example (from msdn):</p>
<pre>&lt;configuration&gt;
  &lt;system.net&gt;
    &lt;defaultProxy&gt;
      &lt;proxy
        autoDetect="true|false|unspecified"  
        bypassonlocal="true|false|unspecified" 
        proxyaddress="uriString"
        scriptLocation="uriString" 
        usesystemdefault="true|false|unspecified " <br />      /&gt;<br />      &lt;bypasslist&gt;
        &lt;add address="[a-z]+\.contoso\.com$" /&gt;
        &lt;add address="192\.168\.\d{1,3}\.\d{1,3}" /&gt;
      &lt;/bypasslist&gt;
   &nbsp;&lt;/defaultProxy&gt;
  &lt;/system.net&gt;
&lt;/configuration&gt;
</pre>
<h4>Load balancing</h4>
<p>When running more than one instance of Umbraco, communication between the servers goes through this proxy as well. In case the proxy can't access the servers, synchronization will fail. In order to overcome this, it is necessary to add the addresses of all your servers to the bypassList element or use the following whitelist use case.</p>
<h4>Advanced scenarios</h4>
<p>If you want the bypassList to serve as a whitelist instead of blacklist (e.g. for security reasons), you can easily take advantage of the .NET advanced regular expression constructs.</p>
<p>For example, to allow only youtube requests:</p>
<pre>&lt;bypasslist&gt;<br />  &lt;add address="(?!http://www\.youtube\.com)^.*$" /&gt;<br />&lt;/bypasslist&gt;&nbsp;</pre>
<p>&nbsp;</p>
<h3><strong>Email Settings.</strong></h3>
<p>1. In the Web.Config file you will need to update the mailSettings within the &lt;System.Net&gt; section. If you have a default email address you want Umbraco to use enter it as an attribute to &lt;smtp&gt; like so:</p>
<pre><code class="xml syntaxhl"><span class="CodeRay"><span class="line-numbers">1</span>    <span class="tag">&lt;mailSettings&gt;</span>
<span class="line-numbers">2</span>        <span class="tag">&lt;smtp</span> <span class="attribute-name">from</span>=<span class="string"><span class="delimiter">"</span><span class="content">anadmin@mysite.com</span><span class="delimiter">"</span></span><span class="tag">&gt;</span>
<span class="line-numbers">3</span>            <span class="tag">&lt;network</span> <span class="attribute-name">host</span>=<span class="string"><span class="delimiter">"</span><span class="content">smtp.myemailserver.mysite.com</span><span class="delimiter">"</span></span> <span class="tag">/&gt;</span>
<span class="line-numbers">4</span>        <span class="tag">&lt;/smtp&gt;</span>
<span class="line-numbers">5</span>    <span class="tag">&lt;/mailSettings&gt;</span>
</span></code></pre>
<p>OR - if your mail server requires a username and password, enter the details as below (this is the default setting you get from a fresh installation of Umbraco).</p>
<pre>&lt;network host="127.0.0.1" userName="username" password="password" /&gt;<br /></pre>
<p>More information the mailSettings web.config schema can be found here: <a href="http://msdn.microsoft.com/en-us/library/ms164242">http://msdn.microsoft.com/en-us/library/ms164242</a></p>
<p>Full example (from msdn): </p>
<pre>&lt;configuration&gt;<br />&nbsp; &lt;system.net&gt;<br />&nbsp;&nbsp;&nbsp; &lt;mailSettings&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;smtp deliveryMethod="network" from="from email address"&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;network<br />          clientDomain="string" 
          defaultCredentials="true|false"
          enableSsl="true|false"
          host="string" 
          password="string"
          port="integer" 
          targetName="string"
          userName="string"
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/smtp&gt;<br />&nbsp;&nbsp;&nbsp; &lt;/mailSettings&gt;<br />&nbsp; &lt;/system.net&gt;<br />&lt;/configuration&gt;</pre>
<table border="0">
<tbody>
<tr>
<th>
<p>Attribute</p>
</th><th>
<p>Description</p>
</th>
</tr>
<tr>
<td>
<p><strong><span><span class="input">clientDomain</span></span></strong></p>
</td>
<td>
<p>Specifies the client domain name to use in the initial SMTP protocol request to connect to the SMTP mail server. The default value is the localhost name of the local computer sending the request.</p>
</td>
</tr>
<tr>
<td>
<p><strong><span><span class="input">defaultCredentials </span></span></strong></p>
</td>
<td>
<p>Specifies whether the default user credentials should be used to access the SMTP mail server for SMTP transactions. The default value is <span><span class="input">false</span></span>.</p>
</td>
</tr>
<tr>
<td>
<p><strong><span><span class="input">enableSsl</span></span></strong></p>
</td>
<td>
<p>Specifies whether SSL is used to access an SMTP mail server. The default value is <span><span class="input">false</span></span>.</p>
</td>
</tr>
<tr>
<td>
<p><strong><span><span class="input">host </span></span></strong></p>
</td>
<td>
<p>Specifies the hostname of the SMTP mail server to use for SMTP transactions. This attribute has no default value.</p>
</td>
</tr>
<tr>
<td>
<p><strong><span><span class="input">password </span></span></strong></p>
</td>
<td>
<p>Specifies the password to use for authentication to the SMTP mail server. This attribute has no default value.</p>
</td>
</tr>
<tr>
<td>
<p><strong><span><span class="input">port </span></span></strong></p>
</td>
<td>
<p>Specifies the port number to use to connect to the SMTP mail server. The default value is 25.</p>
</td>
</tr>
<tr>
<td>
<p><strong><span><span class="input">targetName</span></span></strong></p>
</td>
<td>
<p>Specifies the Service Provider Name (SPN) to use for authentication when using extended protection for SMTP transactions. This attribute has no default value.</p>
</td>
</tr>
<tr>
<td>
<p><strong><span><span class="input">userName </span></span></strong></p>
</td>
<td>
<p>Specifies the user name to use for authentication to the SMTP mail server. This attribute has no default value.</p>
</td>
</tr>
</tbody>
</table>]]></content:encoded></item><item><title>Development</title><link>http://our.umbraco.org/wiki/how-tos/how-to-contribute-to-umbraco/develop-and-commit/development</link><pubDate>Fri, 15 Jun 2012 14:04:34 GMT</pubDate><guid>http://our.umbraco.org/wiki/how-tos/how-to-contribute-to-umbraco/develop-and-commit/development</guid><content:encoded><![CDATA[ <p>&nbsp;</p>
<p>Open the solution file and start hacking.</p>
<p>Start by updating the connection string in Web.Template.Config and make it point to your database.</p>
<p>Then blank out the umbracoConfigurationStatus in the template file in order to trigger the install.</p>
<p>
<div style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; color: #222222; line-height: normal;">&lt;add key="umbracoDbDSN" value="server=.\SQLEXPRESS;database=mydeveldatabase;user id=web;password=ohsoweak" /&gt;</div>
<div style="margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; color: #222222; line-height: normal;">&lt;add key="umbracoConfigurationStatus" value="" /&gt;</div>
</p>
<p>Build it and run it and you should see the installer running.</p>
<p>&nbsp;</p>
<p><br />Remember to commit often so your changes have a clear history. You do that by right-clicking in the project folder and selecting "Hg Commit".&nbsp;<br />Please give a good commit message so it's clear what you've done.<br /><a href="/media/upload/8ad5d1c6-b3fb-44c8-a811-76593855b17a/commitidialog.PNG" target="_blank"><img src="/media/upload/8ad5d1c6-b3fb-44c8-a811-76593855b17a/rs/commitidialog.PNG" border="0" alt="" /></a></p>
<p>Also remember that commiting in Mercurial is a local commit, which means that you need to push the changes to Codeplex to make them public.<br />You can do that by right-clicking in the project folder and select "TortoiseHg" -&gt; "Hg Workbench".<br />Then click the "Push" icon outlined below.<br /><a href="/media/upload/233e7093-5bab-41c4-a481-b1443237f56c/hg workbench push.PNG" target="_blank"><img src="/media/upload/233e7093-5bab-41c4-a481-b1443237f56c/rs/hg workbench push.PNG" border="0" alt="" /></a></p>
<p>&nbsp;</p>]]></content:encoded></item><item><title>Creating a pull request</title><link>http://our.umbraco.org/wiki/how-tos/how-to-contribute-to-umbraco/develop-and-commit/creating-a-pull-request</link><pubDate>Fri, 15 Jun 2012 14:02:58 GMT</pubDate><guid>http://our.umbraco.org/wiki/how-tos/how-to-contribute-to-umbraco/develop-and-commit/creating-a-pull-request</guid><content:encoded><![CDATA[ <p>
<p>Go to the Umbraco Codeplex repository, click "Source Code", then "Forks" and select "My forks" in the dropdown.<br />Then click on "Send Pull Request" next to your fork.<br /><a href="/media/upload/aa519338-059c-448c-810a-e386028e1496/myforks.PNG" target="_blank"><img src="/media/upload/aa519338-059c-448c-810a-e386028e1496/rs/myforks.PNG" border="0" alt="" /></a></p>
<p>Write a good summary of what you've done so the code reviewers can make a better assessment of your work.<br /><a href="/media/upload/ecaa3d23-13f8-42e1-a3eb-ec29ff28a934/createpullrequest.PNG" target="_blank"><img src="/media/upload/ecaa3d23-13f8-42e1-a3eb-ec29ff28a934/rs/createpullrequest.PNG" border="0" alt="" /></a></p>
<p>Click "Send" and you're done!<br />Someone will then review your pull request and hopefully it'll be merged into the core right away.</p>
</p>]]></content:encoded></item><item><title>Configuring the database</title><link>http://our.umbraco.org/wiki/how-tos/how-to-contribute-to-umbraco/develop-and-commit/configuring-the-database</link><pubDate>Fri, 15 Jun 2012 14:00:36 GMT</pubDate><guid>http://our.umbraco.org/wiki/how-tos/how-to-contribute-to-umbraco/develop-and-commit/configuring-the-database</guid><content:encoded><![CDATA[ <p>
<p>Now you need to configure the database.<br />Open SQL Management Studio, right-click the "Databases" node and click "New Databas".<br /><a href="/media/upload/1d1e8ae2-19ad-4a01-8c70-3cb69e497bf8/new database.PNG" target="_blank"><img src="/media/upload/1d1e8ae2-19ad-4a01-8c70-3cb69e497bf8/rs/new database.PNG" border="0" alt="" /></a></p>
<p><a href="/media/upload/1d1e8ae2-19ad-4a01-8c70-3cb69e497bf8/new database.PNG" target="_blank"></a>Then create a new login for that database.<br /><a href="/media/upload/c407e5e2-b7ac-43c7-8a44-906f224d26c0/newuser1.PNG" target="_blank"><img src="/media/upload/c407e5e2-b7ac-43c7-8a44-906f224d26c0/rs/newuser1.PNG" border="0" alt="" /></a><br /><a href="/media/upload/30d75f63-8b8e-4841-ae6f-3894ada2aa8d/newuser2.PNG" target="_blank"><img src="/media/upload/30d75f63-8b8e-4841-ae6f-3894ada2aa8d/rs/newuser2.PNG" border="0" alt="" /></a></p>
</p>]]></content:encoded></item></channel></rss>