<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic How can I avoid that every slash '/' in a URL is converting to '%2af'? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-avoid-that-every-slash-in-a-URL-is-converting-to-2af/m-p/344800#M165985</link>
    <description>&lt;P&gt;In one table column I have a URL as a Link. &lt;/P&gt;

&lt;P&gt;Working format: &lt;A href="http://www.google.de"&gt;www.google.de&lt;/A&gt;&lt;BR /&gt;
Not working format: &lt;A href="https://www.google.de/"&gt;https://www.google.de/&lt;/A&gt; because splunk is replacing this link to &lt;A href="https://https%3a%2f%2fwww.google.de%2f/"&gt;https://https%3a%2f%2fwww.google.de%2f/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;In my source code I have added this: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;      &amp;lt;link target="blank"&amp;gt; &lt;A href="https://$click.value$&amp;lt;/link&amp;gt;" target="test_blank"&gt;https://$click.value$&amp;lt;/link&amp;gt;&lt;/A&gt;;
    &amp;lt;/drilldown&amp;gt; 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Can you please help me that splunk is not converting each '/' into other letters that the link is working? &lt;/P&gt;

&lt;P&gt;Thanks a lot in advance!&lt;/P&gt;</description>
    <pubDate>Thu, 21 Sep 2017 11:33:56 GMT</pubDate>
    <dc:creator>wes7bb</dc:creator>
    <dc:date>2017-09-21T11:33:56Z</dc:date>
    <item>
      <title>How can I avoid that every slash '/' in a URL is converting to '%2af'?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-avoid-that-every-slash-in-a-URL-is-converting-to-2af/m-p/344800#M165985</link>
      <description>&lt;P&gt;In one table column I have a URL as a Link. &lt;/P&gt;

&lt;P&gt;Working format: &lt;A href="http://www.google.de"&gt;www.google.de&lt;/A&gt;&lt;BR /&gt;
Not working format: &lt;A href="https://www.google.de/"&gt;https://www.google.de/&lt;/A&gt; because splunk is replacing this link to &lt;A href="https://https%3a%2f%2fwww.google.de%2f/"&gt;https://https%3a%2f%2fwww.google.de%2f/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;In my source code I have added this: &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;      &amp;lt;link target="blank"&amp;gt; &lt;A href="https://$click.value$&amp;lt;/link&amp;gt;" target="test_blank"&gt;https://$click.value$&amp;lt;/link&amp;gt;&lt;/A&gt;;
    &amp;lt;/drilldown&amp;gt; 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Can you please help me that splunk is not converting each '/' into other letters that the link is working? &lt;/P&gt;

&lt;P&gt;Thanks a lot in advance!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2017 11:33:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-avoid-that-every-slash-in-a-URL-is-converting-to-2af/m-p/344800#M165985</guid>
      <dc:creator>wes7bb</dc:creator>
      <dc:date>2017-09-21T11:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: How can I avoid that every slash '/' in a URL is converting to '%2af'?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-avoid-that-every-slash-in-a-URL-is-converting-to-2af/m-p/344801#M165986</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;

&lt;P&gt;Try this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;           &amp;lt;link target="_blank"&amp;gt;
             &amp;lt;![CDATA[ &lt;A href="https://$click.value$" target="test_blank"&gt;https://$click.value$&lt;/A&gt; ]]&amp;gt;
           &amp;lt;/link&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Javier.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2017 12:50:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-avoid-that-every-slash-in-a-URL-is-converting-to-2af/m-p/344801#M165986</guid>
      <dc:creator>Javip</dc:creator>
      <dc:date>2017-09-21T12:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: How can I avoid that every slash '/' in a URL is converting to '%2af'?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-can-I-avoid-that-every-slash-in-a-URL-is-converting-to-2af/m-p/344802#M165987</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;&amp;lt;![CDATA[$click.value|n$]]&amp;gt; 
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I found this now as a solution. &lt;/P&gt;

&lt;P&gt;Thanks for your help!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Sep 2017 13:03:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-can-I-avoid-that-every-slash-in-a-URL-is-converting-to-2af/m-p/344802#M165987</guid>
      <dc:creator>wes7bb</dc:creator>
      <dc:date>2017-09-21T13:03:21Z</dc:date>
    </item>
  </channel>
</rss>

