diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2019-05-25 15:13:44 +0200 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2019-05-25 15:13:44 +0200 |
commit | 30b3a971f2c5794c05379db0d915c48b109afa3f (patch) | |
tree | 63bb51f185138e6e5c238a20711aabae0653ee57 /spec/dummy/app/views/sitemap | |
parent | a0341f27de42d2e8847c88db0df834ae03a28975 (diff) | |
download | refinerycms-pc_banners-30b3a971f2c5794c05379db0d915c48b109afa3f.tar.gz refinerycms-pc_banners-30b3a971f2c5794c05379db0d915c48b109afa3f.tar.bz2 refinerycms-pc_banners-30b3a971f2c5794c05379db0d915c48b109afa3f.zip |
Remove dummy test app from version control.
Should never have been checked in in the first place.
Diffstat (limited to 'spec/dummy/app/views/sitemap')
-rw-r--r-- | spec/dummy/app/views/sitemap/index.xml.builder | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/spec/dummy/app/views/sitemap/index.xml.builder b/spec/dummy/app/views/sitemap/index.xml.builder deleted file mode 100644 index 8e89852..0000000 --- a/spec/dummy/app/views/sitemap/index.xml.builder +++ /dev/null @@ -1,25 +0,0 @@ -xml.instruct! - -xml.urlset "xmlns" => "http://www.sitemaps.org/schemas/sitemap/0.9" do - - @locales.each do |locale| - ::I18n.locale = locale - ::Refinery::Page.live.in_menu.includes(:parts).each do |page| - # exclude sites that are external to our own domain. - page_url = if page.url.is_a?(Hash) - # This is how most pages work without being overriden by link_url - page.url.merge({:only_path => false}) - elsif page.url.to_s !~ /^http/ - # handle relative link_url addresses. - [request.protocol, request.host_with_port, page.url].join - end - - # Add XML entry only if there is a valid page_url found above. - xml.url do - xml.loc url_for(page_url) - xml.lastmod page.updated_at.to_date - end if page_url.present? and page.show_in_menu? - end - end - -end |