Refactoring again before release
Some checks are pending
/ build (push) Waiting to run

Signed-off-by: Minecon724 <git@m724.eu>
This commit is contained in:
Minecon724 2025-03-08 11:08:58 +01:00
parent 5d98a8fd60
commit 977d7a1338
Signed by untrusted user who does not match committer: Minecon724
GPG key ID: 3CCC4D267742C8E8
5 changed files with 21 additions and 21 deletions

View file

@ -124,7 +124,7 @@ public class BlogBuilder {
}
/**
* Builds the blog by generating templates, copying assets, and rendering posts.
* Builds the blog by generating templates, copying assets, and rendering articles.
*
* @throws IOException if an I/O error occurs
*/

View file

@ -19,19 +19,19 @@ import java.util.HashMap;
import java.util.Map;
/**
* The {@code Article} class represents a blog post with various attributes including metadata and content.
* The {@code Article} class represents an article with various attributes including metadata and content.
*
* @param slug A unique identifier for the post derived from the file name.
* @param title The title of the post.
* @param summary A brief summary of the post content.
* @param draft Indicates whether the post is marked as a draft or published.
* @param revisions The number of revisions the post has undergone in version control.
* @param createdBy The name of the author who created the post.
* @param createdAt The timestamp of when the post was first created.
* @param modifiedBy The name of the author who last modified the post.
* @param modifiedAt The timestamp of the last modification to the post.
* @param custom A map of custom properties or metadata associated with the post.
* @param rawContent The raw content of the post, which <em>currently</em> is usually HTML.
* @param slug A unique identifier for the article derived from the file name.
* @param title The title of the article.
* @param summary A brief summary of the article content.
* @param draft Indicates whether the article is marked as a draft or published.
* @param revisions The number of revisions the article has undergone in version control.
* @param createdBy The name of the author who created the article.
* @param createdAt The timestamp of when the article was first created.
* @param modifiedBy The name of the author who last modified the article.
* @param modifiedAt The timestamp of the last modification to the article.
* @param custom A map of custom properties or metadata associated with the article.
* @param rawContent The raw content of the article, which <em>currently</em> is usually HTML.
*/
public record Article(
String slug,
@ -104,7 +104,7 @@ public record Article(
case "summary":
summary = value;
break;
case "live": // a post is live (not draft) if the key is there
case "live": // an article is live (not draft) if the key is there
draft = false;
break;
default:

View file

@ -13,11 +13,11 @@ public class Feed {
private static final DateTimeFormatter formatter = DateTimeFormatter.ofPattern("EEE, dd MMM yyyy HH:mm:ss zzz");
/**
* Generates an RSS feed XML string for a given website and its list of blog posts.
* Generates an XML RSS feed for the site and its articles.
*
* @param site the {@code Site} object representing the website for which the RSS feed is generated
* @param articles the list of {@link Article} objects representing the blog posts to include in the RSS feed
* @return a {@code String} containing the formatted RSS feed in XML
* @param site the {@link Site} object representing the website for which the RSS feed is generated
* @param articles the list of {@link Article} objects representing the articles to include in the RSS feed
* @return a {@link String} containing the formatted RSS feed in XML
*/
public static String generateRss(Site site, List<Article> articles) {
var content = new StringBuilder("<?xml version=\"1.0\" encoding=\"UTF-8\" ?>");

View file

@ -20,7 +20,7 @@ import java.util.Map;
* @param name the name of the site
* @param baseUrl the base URL of the site
* @param directory The directory that the site is installed into. Like "https://example.com/blog" turns to "/blog"
* @param templateArticles whether to parse posts with Pebble templating
* @param templateArticles whether to parse articles with Pebble templating
* @param custom a map of additional custom properties
*/
public record Site(

View file

@ -66,10 +66,10 @@ public class TemplateRenderer {
}
/**
* Renders the content of a post using this template.
* Renders the content of an article using this template.
*
* @param article the {@link Article} to be rendered
* @return the rendered post HTML page as a string
* @return the rendered article HTML page as a string
* @throws IOException if an error occurs during template evaluation
*/
public String renderArticle(Article article) throws IOException {