<?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 Change copyright text webapp builder in ArcGIS Web AppBuilder Questions</title>
    <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-copyright-text-webapp-builder/m-p/469026#M12359</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have an app created from a map which has multiple services in it. All services will have the Ordnance Survey referenced in the credits as it is derived from their data, or will have open data copyright statements in. This means in maps with multiple services, there will be duplication of copyright on the map and app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way in WAB to hardcode the copyright data and not have it pick up from the service?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Sep 2018 09:59:55 GMT</pubDate>
    <dc:creator>MarkCooper5</dc:creator>
    <dc:date>2018-09-25T09:59:55Z</dc:date>
    <item>
      <title>Change copyright text webapp builder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-copyright-text-webapp-builder/m-p/469026#M12359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have an app created from a map which has multiple services in it. All services will have the Ordnance Survey referenced in the credits as it is derived from their data, or will have open data copyright statements in. This means in maps with multiple services, there will be duplication of copyright on the map and app.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way in WAB to hardcode the copyright data and not have it pick up from the service?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2018 09:59:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-copyright-text-webapp-builder/m-p/469026#M12359</guid>
      <dc:creator>MarkCooper5</dc:creator>
      <dc:date>2018-09-25T09:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: Change copyright text webapp builder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-copyright-text-webapp-builder/m-p/469027#M12360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;You should avoid this... But here is how.&lt;/P&gt;&lt;P&gt;In the MapManager.js _checkAppState function add lines 2 and 3.&lt;/P&gt;&lt;P&gt;What I am doing here is changing the text in the first attribution element to 'blah blah'&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;_checkAppState&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;function&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;var&lt;/SPAN&gt; spanList &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="token function"&gt;query&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'.esriAttributionList'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; spanList&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;children&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;innerHTML &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'blah blah'&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;'&amp;lt;span class="esriAttributionDelim"&amp;gt; | &amp;lt;/span&amp;gt;;'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;‍‍‍
&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 20:47:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-copyright-text-webapp-builder/m-p/469027#M12360</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2021-12-11T20:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: Change copyright text webapp builder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-copyright-text-webapp-builder/m-p/469028#M12361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks - I will give it a go.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I agree, I don't really want to do it this way, but from a customer point of view, they don't want to see the same copyright statement duplicated lots of times,&amp;nbsp;as it looks very unprofessional.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only other way I can see would be to publish the most of the services without the information, which runs the risk of those services getting used elsewhere without the copyright on at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What it really needs is some way of only showing unique information, so if the copyright is duplicated in multiple services, it will only display it once, but I doubt that is even possible!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Sep 2018 14:25:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-copyright-text-webapp-builder/m-p/469028#M12361</guid>
      <dc:creator>MarkCooper5</dc:creator>
      <dc:date>2018-09-25T14:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Change copyright text webapp builder</title>
      <link>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-copyright-text-webapp-builder/m-p/469029#M12362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Did this work for you?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Sep 2018 17:36:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-web-appbuilder-questions/change-copyright-text-webapp-builder/m-p/469029#M12362</guid>
      <dc:creator>RobertScheitlin__GISP</dc:creator>
      <dc:date>2018-09-26T17:36:31Z</dc:date>
    </item>
  </channel>
</rss>

