{"id":18950229,"url":"https://github.com/junker/rssgen","last_synced_at":"2026-01-27T19:26:57.128Z","repository":{"id":206835181,"uuid":"717805789","full_name":"Junker/rssgen","owner":"Junker","description":"RSS 2.0 generator for Common Lisp","archived":false,"fork":false,"pushed_at":"2024-02-18T05:12:00.000Z","size":4,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-01T01:45:38.758Z","etag":null,"topics":["common-lisp","rss","rss-generator"],"latest_commit_sha":null,"homepage":"","language":"Common Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Junker.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2023-11-12T16:52:31.000Z","updated_at":"2024-02-18T05:11:42.000Z","dependencies_parsed_at":"2023-11-12T17:58:18.923Z","dependency_job_id":"e270fa50-2f0f-44a5-9c6a-8c43b434db87","html_url":"https://github.com/Junker/rssgen","commit_stats":null,"previous_names":["junker/rssgen"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Junker%2Frssgen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Junker%2Frssgen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Junker%2Frssgen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Junker%2Frssgen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Junker","download_url":"https://codeload.github.com/Junker/rssgen/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239946915,"owners_count":19723018,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["common-lisp","rss","rss-generator"],"created_at":"2024-11-08T13:21:50.586Z","updated_at":"2026-01-27T19:26:57.085Z","avatar_url":"https://github.com/Junker.png","language":"Common Lisp","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RSSGen\n\nRSS 2.0 generator for Common Lisp.\n\n## Installation\n\nThis system can be installed from [UltraLisp](https://ultralisp.org/) like this:\n\n```lisp\n(ql-dist:install-dist \"http://dist.ultralisp.org/\"\n                      :prompt nil)\n(ql:quickload \"rssgen\")\n```\n\n## Usage\n\n```common-lisp\n(let ((items (list\n              (rss-item \"Title 1\"\n                        \"https://example.org/blog/article-1\"\n                        \"Desription of article 1\")\n              (rss-item \"Title 2\"\n                        \"https://example.org/blog/article-2\"\n                        \"Desription of article 2\"\n                        ;;optional\n                        :author \"john-doe@example.org (John Doe)\"\n                        :category (rss-item-category \"Category 1\")\n                        :comments \"https://example.org/blog/article-2#comments\"\n                        :enclosure (rss-item-enclosure \"https://example.org/example.jpg\"\n                                                       1024\n                                                       \"image/jpeg\")\n                        :guid (rss-item-guid \"a2331318-82de-4ef2-9d08-00fbda09e015\")\n                        :pub-date \"Sun, 19 May 2002 15:21:36 GMT\"\n                        :source (rss-item-source \"https://example.org/rss-2.xml\" \"Second channel\"))\n              (rss-item \"Title 3\"\n                        \"https://example.org/blog/article-3\"\n                        \"Desription of article 3\"\n                        :category (list (rss-item-category \"Category 1\" :domain \"https://example.org/blog\")\n                                        (rss-item-category \"Category 2\"))\n                        :pub-date (local-time:now)\n                        :guid (rss-item-guid \"https://example.org/a2331318\" :perma t)))))\n\n  (rssgen:rss \"Site title\" \"https://example.org\" \"Site description\"\n              :items items\n              ;; optional\n              :language \"en-us\"\n              :copyright \"Copyright 2022, John Doe\"\n              :managing-editor \"john-doe@example.org (John Doe)\"\n              :web-master \"jane-doe@example.org (Jane Doe)\"\n              :pub-date \"Sun, 19 May 2002 15:21:36 GMT\"\n              :last-build-date (local-time:now)\n              :category (rss-category \"News\")\n              :generator \"rssgen\"\n              :docs \"https://example.org/rss-specification\"\n              :ttl 60\n              :rating \"The PICS rating for the channel.\"\n              :image (rss-image \"https://example.org/logo.jpg\"\n                                \"Logo title\"\n                                \"https://example.org\"\n                                ;; optional\n                                :width 100\n                                :height 100\n                                :description \"Logo description\")\n              :skip-hours (list 21 22 23)\n              :skip-days (list \"Saturday\" \"Sunday\")))\n```\n\n## Documentation\n\n- [RSS 2.0 Specification](https://www.rssboard.org/rss-specification)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjunker%2Frssgen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjunker%2Frssgen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjunker%2Frssgen/lists"}