summaryrefslogtreecommitdiff
path: root/internal/feed
diff options
context:
space:
mode:
Diffstat (limited to 'internal/feed')
-rw-r--r--internal/feed/feed.go7
-rw-r--r--internal/feed/template/feed.tpl.go2
2 files changed, 8 insertions, 1 deletions
diff --git a/internal/feed/feed.go b/internal/feed/feed.go
index 4ee2875..6b95f6e 100644
--- a/internal/feed/feed.go
+++ b/internal/feed/feed.go
@@ -26,6 +26,13 @@ type feeditem struct {
*gofeed.Item
}
+func (item feeditem) Creator() string {
+ if item.Item.Author != nil {
+ return item.Item.Author.Name
+ }
+ return ""
+}
+
func (feed *Feed) descriptor() feedDescriptor {
return feedDescriptor{
Name: feed.Name,
diff --git a/internal/feed/template/feed.tpl.go b/internal/feed/template/feed.tpl.go
index 3f6470f..bb49818 100644
--- a/internal/feed/template/feed.tpl.go
+++ b/internal/feed/template/feed.tpl.go
@@ -70,7 +70,7 @@ const feedTpl = `{{- /*gotype:github.com/Necoro/feed2imap-go/internal/feed.feedi
<hr width="100%"/>
<table width="100%" cellpadding="0" cellspacing="0">
{{template "bottomLine" (dict "descr" "Date:" "content" .Item.Published)}}
- {{with .Item.Author}}{{template "bottomLine" (dict "descr" "Author:" "content" .Name)}}{{end}}
+ {{template "bottomLine" (dict "descr" "Author:" "content" .Creator)}}
{{template "bottomLine" (dict "descr" "Subject:" "content" .Item.Title)}}
{{template "bottomLine" (dict "descr" "Filed under:" "content" (join ", " .Item.Categories))}}
</table>`
© 'Necoro' Neumann2-16/+14 2008-07-03Ported Notify pluginRenĂ© 'Necoro' Neumann4-37/+51 2008-07-03Remove xsd and -x cmdline optionRenĂ© 'Necoro' Neumann2-107/+1 2008-07-03Ported completelyRenĂ© 'Necoro' Neumann3-548/+54 2008-07-03Should show dependencies nowRenĂ© 'Necoro' Neumann2-82/+128 2008-07-03New plugin system - first hackRenĂ© 'Necoro' Neumann2-420/+683 2008-06-30Now the new design is able to do the same as the old oneRenĂ© 'Necoro' Neumann3-168/+182 2008-06-30First draft of the new plugin windowRenĂ© 'Necoro' Neumann1-8/+172 2008-06-30Added stuff to plugin.pyRenĂ© 'Necoro' Neumann1-2/+24 2008-06-25Now load 22 versions when running the correct portageRenĂ© 'Necoro' Neumann4-8/+18 2008-06-25Added Package_22 and System_22RenĂ© 'Necoro' Neumann4-5/+63