[SIS-25] adding rss news module

updating abstracto version
This commit is contained in:
Sheldan
2023-10-29 19:00:16 +01:00
parent 0d6f71baac
commit 96d3918a4d
151 changed files with 4679 additions and 15 deletions

View File

@@ -13,6 +13,7 @@
<module>quote-translations</module>
<module>meetup-translations</module>
<module>debra-translations</module>
<module>rss-news-translations</module>
</modules>

View File

@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>module-translations</artifactId>
<groupId>dev.sheldan.sissi.templates.translations</groupId>
<version>1.4.19-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>rss-news-translations</artifactId>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<finalName>rss-news-translations-${project.version}</finalName>
<appendAssemblyId>false</appendAssemblyId>
<descriptors>
<descriptor>src/main/assembly/assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

View File

@@ -0,0 +1,15 @@
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>zip</id>
<includeBaseDirectory>false</includeBaseDirectory>
<formats>
<format>zip</format>
</formats>
<fileSets>
<fileSet>
<outputDirectory>.</outputDirectory>
<directory>${project.basedir}/src/main/resources</directory>
</fileSet>
</fileSets>
</assembly>

View File

@@ -0,0 +1,3 @@
A news category represents the grouping of external categories and defines where these categories should be posted to.
A news category can group together multiple categories from multiple news feeds and then posts them to multiple channels.
It is identified by a name and is individual per server.

View File

@@ -0,0 +1,2 @@
This command can be used to map a news category to one or more channels.
Each of the channels will then get a message, once a new message is found for the given news category.

View File

@@ -0,0 +1,2 @@
This command can be used to subscribe one news category to one particular news feed category.
These news feed categories are the ones from the original sources and are determined externally.

View File

@@ -0,0 +1 @@
This command deletes a news category with all mappings and subscriptions.

View File

@@ -0,0 +1 @@
Shows the news category configuration including subscriptions and channel mappings