{"id":18695167,"url":"https://github.com/davorg-cpan/template-plugin-xml-feed","last_synced_at":"2026-05-30T17:33:44.698Z","repository":{"id":503783,"uuid":"131069","full_name":"davorg-cpan/template-plugin-xml-feed","owner":"davorg-cpan","description":"Template plugin for XML::Feed","archived":false,"fork":false,"pushed_at":"2024-01-23T21:40:25.000Z","size":29,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-13T06:38:02.629Z","etag":null,"topics":["cpan","hacktoberfest","perl"],"latest_commit_sha":null,"homepage":"http://search.cpan.org/dist/Template-Plugin-XML-Feed","language":"Perl","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/davorg-cpan.png","metadata":{"files":{"readme":"README.md","changelog":"Changes","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2009-02-17T20:29:30.000Z","updated_at":"2024-10-01T17:48:56.000Z","dependencies_parsed_at":"2025-05-19T00:12:02.806Z","dependency_job_id":"7261580a-ada5-4f92-9fdf-4921f3f6f649","html_url":"https://github.com/davorg-cpan/template-plugin-xml-feed","commit_stats":null,"previous_names":["davorg/template-plugin-xml-feed"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/davorg-cpan/template-plugin-xml-feed","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davorg-cpan%2Ftemplate-plugin-xml-feed","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davorg-cpan%2Ftemplate-plugin-xml-feed/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davorg-cpan%2Ftemplate-plugin-xml-feed/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davorg-cpan%2Ftemplate-plugin-xml-feed/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/davorg-cpan","download_url":"https://codeload.github.com/davorg-cpan/template-plugin-xml-feed/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/davorg-cpan%2Ftemplate-plugin-xml-feed/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33703065,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-30T02:00:06.278Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cpan","hacktoberfest","perl"],"created_at":"2024-11-07T11:14:09.343Z","updated_at":"2026-05-30T17:33:44.663Z","avatar_url":"https://github.com/davorg-cpan.png","language":"Perl","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Template::Plugin::XML::Feed - Template Toolkit plugin for XML::Feed\n\n[![Build Status](https://github.com/davorg-cpan/template-plugin-xml-feed/actions/workflows/perltest.yml/badge.svg?branch=master)](https://github.com/davorg-cpan/template-plugin-xml-feed/actions/workflows/perltest.yml) [![Coverage Status](https://coveralls.io/repos/github/davorg-cpan/template-plugin-xml-feed/badge.svg?branch=master)](https://coveralls.io/github/davorg-cpan/template-plugin-xml-feed?branch=master)\n\nThis [Template Toolkit](http://www.template-toolkit.org/) plugin provides a\nsimple interface to the `XML::Feed` module and hence allows information from\nan Atom or RSS feed to be used within a Template Toolkit template.\n\n## Installation\n\nThe simplest way to install this module is to use\n[cpanm](https://metacpan.org/pod/App::cpanminus):\n\n```\n$ cpanm Template::Plugin::XML::Feed\n```\n\nHowever, if you downloaded the tarball directly, then you can install the\nmodule in the traditional manner:\n\n```\n$ tar -xvzf Template-Plugin-XML-Feed-vx.y.z.tar.gz\n$ cd Template-Plugin-XML-Feed-vx.y.z\n$ perl Makefile.PL\n$ make\n$ make test\n$ make install\n```\n\n## Usage\n\n```\n[% USE news = XML.Feed('news.rdf') %]\n\n[% FOREACH item IN news.items %]\n   [% item.title %]\n   [% item.link  %]\n[% END %]\n```\n\nIn this example, the RSS feed file `news.rdf` is read into the `news` variable\nand then for each news item within the feed, the title and link for that item\nare added to the rendered output of the template.\n\nFor more information about `Template::Plugin::XML::Feed` see its documentation\nby running `perldoc`:\n\n```\n$ perldoc Template::Plugin::XML::Feed\n```\n\nFor more information about how to use the [Template\nToolkit](http://www.template-toolkit.org/), see its [online\ndocumentation](http://www.template-toolkit.org/docs/index.html).\n\n## Development\n\nIf you want to help development of `Template::Plugin::XML::Feed`, then you'll\nfirst need to fork the [project on\nGitHub](https://github.com/davorg/template-plugin-xml-feed).  Then, you can\nclone your fork via git:\n\n```\n$ git clone git@github.com:\u003cyour-github-username\u003e/template-plugin-xml-feed.git\n```\n\nTo build and test the software locally, you'll need to ensure that\n[Module::Build](https://metacpan.org/pod/Module::Build) is installed:\n\n```\n$ cpanm Module::Build\n```\n\nThen, you can create the `Build` program and build the module:\n\n```\n$ perl Build.PL\n$ ./Build\n```\n\nTo run the test suite, simply use the `Build` program's `test` argument:\n\n```\n$ ./Build test\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavorg-cpan%2Ftemplate-plugin-xml-feed","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdavorg-cpan%2Ftemplate-plugin-xml-feed","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdavorg-cpan%2Ftemplate-plugin-xml-feed/lists"}