Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in / Register
  • funkwhale funkwhale
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Locked Files
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
    • Requirements
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
    • Test Cases
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Container Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Code review
    • Insights
    • Issue
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • jovuit
  • funkwhalefunkwhale
  • Repository
Switch branch/tag
  • funkwhale
  • changes
  • changelog.d
  • 1250.bugfix
Find file BlameHistoryPermalink
  • Kuba Orlik's avatar
    Fix feed formatting so it passes w3c validation · 3a83290c
    Kuba Orlik authored Oct 22, 2020 and Agate's avatar Agate committed Oct 22, 2020
    Feeds generated by Funkwhale do not pass validation with the [w3c
    validator](https://validator.w3.org/feed/check.cgi?url=https%3A%2F%2Fpodcast.midline.pl%2Fapi%2Fv1%2Fchannels%2FMidline%2Frss).
    This commit addresses the problems identified during validation:
    
    1. The `isPermalink` is not recognized -> changed it to
       `isPermaLink` (capital "L")
    
    2. `itunes:summary` and `itunes:subtitle` are 256 characters after
       truncating, but the maximum is 255. The truncating function trims the
       text to 255 chars, but then adds `…`, so the text is one character
       too long
    
    3. The tags within `itunes:keywords` are now separated with commas
       instead of spaces (https://validator.w3.org/feed/docs/warning/InvalidKeywords.html)
    3a83290c