[Geoserver-devel] [JIRA] (GEOS-7361) geoserver blog feed broken

Jody Garnett [Administrator] created an issue

GeoServer / BugGEOS-7361

geoserver blog feed broken

Issue Type:

BugBug

Assignee:

Unassigned

Components:

Documentation

Created:

22/Dec/15 8:35 PM

Priority:

MediumMedium

Reporter:

Jody Garnett [Administrator]

The geoserver.org website consumes blog feed on the main page here

  $.get("http://blog.geoserver.org/feed/", function(data) {
    var $xml = $(data);
    $xml.find("item:lt(3)").each(function() {
        var $this = $(this),
            item = {
                title: $this.find("title").text(),
                link: $this.find("link").text(),
                description: $this.find("description").text(),
                pubDate: $this.find("pubDate").text(),
                author: $this.find("author").text()
        }
        //Do something with item here...
        $("#news ul").append("<li><a href='"+item.link+"'>"+item.title+"</a><p>"+item.description+"</p></li>");
       });
   });

Sadly the webpage is empty - what happened?

Add Comment

Add Comment

This message was sent by Atlassian JIRA (v7.1.0-OD-02-030#71001-sha1:2ba8c0f)

Atlassian logo