mirror of
https://gitea.blesmrt.net/mikaela/gist.git
synced 2024-11-27 05:29:44 +01:00
pre-commit run --all-files
This commit is contained in:
parent
03549be4fa
commit
6512330667
@ -5,7 +5,7 @@ CHTDIR=~/PS2/CHT
|
|||||||
mkdir -p $CHTDIR
|
mkdir -p $CHTDIR
|
||||||
|
|
||||||
for chtfile in *.cht; do
|
for chtfile in *.cht; do
|
||||||
cat $chtfile >$CHTDIR/$chtfile
|
cat $chtfile > $CHTDIR/$chtfile
|
||||||
done
|
done
|
||||||
|
|
||||||
chmod -R 777 $CHTDIR
|
chmod -R 777 $CHTDIR
|
||||||
|
@ -18,7 +18,7 @@ chmod -R 777 $VMCDIR
|
|||||||
chmod -R 777 $BACKUPDIR
|
chmod -R 777 $BACKUPDIR
|
||||||
|
|
||||||
# If duperemove is installed, perform FS based deduplication of backups
|
# If duperemove is installed, perform FS based deduplication of backups
|
||||||
if hash duperemove 2>/dev/null; then
|
if hash duperemove 2> /dev/null; then
|
||||||
# recursive, dedupe, human-readable, hashfile is like ddrescue mapfile
|
# recursive, dedupe, human-readable, hashfile is like ddrescue mapfile
|
||||||
duperemove -rdh --hashfile=$BACKUPDIR/duperemove.hashfile $BACKUPDIR/
|
duperemove -rdh --hashfile=$BACKUPDIR/duperemove.hashfile $BACKUPDIR/
|
||||||
fi
|
fi
|
||||||
|
@ -3,194 +3,194 @@
|
|||||||
# probably just confuses networks without RELAYMSG and at least Kiwi pings
|
# probably just confuses networks without RELAYMSG and at least Kiwi pings
|
||||||
# on @nick. Labels can be shorter than protocol names (more descriptive in
|
# on @nick. Labels can be shorter than protocol names (more descriptive in
|
||||||
# case of IRC and are ircCamelCase for benefit of IRC bots)
|
# case of IRC and are ircCamelCase for benefit of IRC bots)
|
||||||
RemoteNickFormat="@{NOPINGNICK}/{LABEL}: "
|
RemoteNickFormat = "@{NOPINGNICK}/{LABEL}: "
|
||||||
IgnoreFailureOnStart=true
|
IgnoreFailureOnStart = true
|
||||||
MessageSplit=true
|
MessageSplit = true
|
||||||
MediaDownloadPath="/var/www/html/matterbridge"
|
MediaDownloadPath = "/var/www/html/matterbridge"
|
||||||
MediaServerDownload="https://etro.mikaela.info/matterbridge"
|
MediaServerDownload = "https://etro.mikaela.info/matterbridge"
|
||||||
MediaDownloadSize=20000000
|
MediaDownloadSize = 20000000
|
||||||
MediaDownloadBlacklist=[".html$",".htm$"]
|
MediaDownloadBlacklist = [".html$", ".htm$"]
|
||||||
replacemessages=[ ["@room","@rööm"], ["@online","@önline"] ]
|
replacemessages = [["@room", "@rööm"], ["@online", "@önline"]]
|
||||||
EditSuffix=" ✏️"
|
EditSuffix = " ✏️"
|
||||||
MessageClipped="…"
|
MessageClipped = "…"
|
||||||
UseLocalAvatar=["irc"]
|
UseLocalAvatar = ["irc"]
|
||||||
|
|
||||||
# This refers to https://ergo.chat/about
|
# This refers to https://ergo.chat/about
|
||||||
[irc.localergo]
|
[irc.localergo]
|
||||||
Nick="T4"
|
Nick = "T4"
|
||||||
# Normal client would specify @freeformClientID, but with matterbridge that
|
# Normal client would specify @freeformClientID, but with matterbridge that
|
||||||
# could result to flood from integrated bouncer
|
# could result to flood from integrated bouncer
|
||||||
NickServNick="T4"
|
NickServNick = "T4"
|
||||||
NickServPassword=""
|
NickServPassword = ""
|
||||||
Server="localhost:6667"
|
Server = "localhost:6667"
|
||||||
UseTLS=false
|
UseTLS = false
|
||||||
UseSASL=true
|
UseSASL = true
|
||||||
Label="ircEtro"
|
Label = "ircEtro"
|
||||||
Charset="utf8"
|
Charset = "utf8"
|
||||||
# sends join/quit/part from the integrated bouncer
|
# sends join/quit/part from the integrated bouncer
|
||||||
IgnoreNicks="HistServ"
|
IgnoreNicks = "HistServ"
|
||||||
RunCommands=["OPER T4 MI-ne-DIRAS-do-AL-vin", "MODE T4 -iw+BET"]
|
RunCommands = ["OPER T4 MI-ne-DIRAS-do-AL-vin", "MODE T4 -iw+BET"]
|
||||||
# Requires the bot to be chanop, spoofs sender
|
# Requires the bot to be chanop, spoofs sender
|
||||||
UseRelayMsg=true
|
UseRelayMsg = true
|
||||||
RemoteNickFormat="{NICK}/{LABEL}"
|
RemoteNickFormat = "{NICK}/{LABEL}"
|
||||||
|
|
||||||
[irc.freenode]
|
[irc.freenode]
|
||||||
Nick="T4"
|
Nick = "T4"
|
||||||
NickServNick="T4"
|
NickServNick = "T4"
|
||||||
NickServPassword=""
|
NickServPassword = ""
|
||||||
Server="chat.ipv6.freenode.net:6697"
|
Server = "chat.ipv6.freenode.net:6697"
|
||||||
UseTLS=true
|
UseTLS = true
|
||||||
UseSASL=true
|
UseSASL = true
|
||||||
SkipTLSVerify=false
|
SkipTLSVerify = false
|
||||||
Label="ircFn"
|
Label = "ircFn"
|
||||||
Charset="utf8"
|
Charset = "utf8"
|
||||||
RunCommands=["MODE T4 -iw+gQR"]
|
RunCommands = ["MODE T4 -iw+gQR"]
|
||||||
|
|
||||||
[irc.liberachat]
|
[irc.liberachat]
|
||||||
Nick="T4"
|
Nick = "T4"
|
||||||
NickServNick="T4"
|
NickServNick = "T4"
|
||||||
NickServPassword=""
|
NickServPassword = ""
|
||||||
Server="irc.libera.chat:6697"
|
Server = "irc.libera.chat:6697"
|
||||||
UseTLS=true
|
UseTLS = true
|
||||||
UseSASL=true
|
UseSASL = true
|
||||||
SkipTLSVerify=false
|
SkipTLSVerify = false
|
||||||
Label="ircLc"
|
Label = "ircLc"
|
||||||
Charset="utf8"
|
Charset = "utf8"
|
||||||
RunCommands=["MODE T4 -iw+gQR"]
|
RunCommands = ["MODE T4 -iw+gQR"]
|
||||||
|
|
||||||
[matrix.matrixexample]
|
[matrix.matrixexample]
|
||||||
Server="https://matrix.example.org"
|
Server = "https://matrix.example.org"
|
||||||
MxID="@yournick.matterbridge:example.org"
|
MxID = "@yournick.matterbridge:example.org"
|
||||||
# Above the clear cache & reload button. DON'T LOG OUT or it will be invalid.
|
# Above the clear cache & reload button. DON'T LOG OUT or it will be invalid.
|
||||||
# If leaked, login and remove the session from "Infosec & Privacy"
|
# If leaked, login and remove the session from "Infosec & Privacy"
|
||||||
Token="MEOW-MEOW_CHOCO-CHOW"
|
Token = "MEOW-MEOW_CHOCO-CHOW"
|
||||||
# Otherwise collision risk with UseUserName=true
|
# Otherwise collision risk with UseUserName=true
|
||||||
NoHomeServerSuffix=false
|
NoHomeServerSuffix = false
|
||||||
# The Matrix logo "[m]" easens hitting up Discord maximum length so it's
|
# The Matrix logo "[m]" easens hitting up Discord maximum length so it's
|
||||||
# better to only have a single char label with the full MXID
|
# better to only have a single char label with the full MXID
|
||||||
Label="m"
|
Label = "m"
|
||||||
# Use Matrix ID instead of display name to avoid messages getting lost due
|
# Use Matrix ID instead of display name to avoid messages getting lost due
|
||||||
# to Ergo and Matterbridge disagreeing on invalid characters (e.g. LGBT* flag)
|
# to Ergo and Matterbridge disagreeing on invalid characters (e.g. LGBT* flag)
|
||||||
# https://github.com/ergochat/ergo/issues/1441
|
# https://github.com/ergochat/ergo/issues/1441
|
||||||
UseUserName=true
|
UseUserName = true
|
||||||
# Send everything as is, don't "cleverly" convert into HTML/Markdown which
|
# Send everything as is, don't "cleverly" convert into HTML/Markdown which
|
||||||
# would break #channels (-> markdown h1 tag), mathematical equatons etc.
|
# would break #channels (-> markdown h1 tag), mathematical equatons etc.
|
||||||
# The IRC equivalent would be `StripMarkdown`, but I consider it as
|
# The IRC equivalent would be `StripMarkdown`, but I consider it as
|
||||||
# more harmful than good
|
# more harmful than good
|
||||||
HTMLDisable=true
|
HTMLDisable = true
|
||||||
|
|
||||||
[mattermost.mattermostexample]
|
[mattermost.mattermostexample]
|
||||||
Server="mattermost.example.org:443"
|
Server = "mattermost.example.org:443"
|
||||||
Team="awesometeam"
|
Team = "awesometeam"
|
||||||
Token="abcdef123456"
|
Token = "abcdef123456"
|
||||||
PrefixMessagesWithNick=true
|
PrefixMessagesWithNick = true
|
||||||
Label="Mm"
|
Label = "Mm"
|
||||||
# mattermost.example.org is presumably behind a remote proxy that
|
# mattermost.example.org is presumably behind a remote proxy that
|
||||||
# suppresses non standards headers and thus breaks usual version check?
|
# suppresses non standards headers and thus breaks usual version check?
|
||||||
# https://github.com/42wim/matterbridge/wiki/Settings#skipversioncheck
|
# https://github.com/42wim/matterbridge/wiki/Settings#skipversioncheck
|
||||||
SkipVersionCheck=true
|
SkipVersionCheck = true
|
||||||
|
|
||||||
[discord.discordexample]
|
[discord.discordexample]
|
||||||
Token="nope"
|
Token = "nope"
|
||||||
Server="123456789"
|
Server = "123456789"
|
||||||
# When these are True, pinging from other platforms breaks
|
# When these are True, pinging from other platforms breaks
|
||||||
UseUsername=false
|
UseUsername = false
|
||||||
UseDiscriminator=false
|
UseDiscriminator = false
|
||||||
Label="D"
|
Label = "D"
|
||||||
# Discord has webhooks so trailing space isn't required. Looks same as Ergo except has avatar
|
# Discord has webhooks so trailing space isn't required. Looks same as Ergo except has avatar
|
||||||
RemoteNickFormat="{NICK}/{LABEL}"
|
RemoteNickFormat = "{NICK}/{LABEL}"
|
||||||
# Allow mentioning users and roles, not everyone etc.
|
# Allow mentioning users and roles, not everyone etc.
|
||||||
AllowMention=["user","role"]
|
AllowMention = ["user", "role"]
|
||||||
|
|
||||||
[telegram.telegrambot]
|
[telegram.telegrambot]
|
||||||
Token="nopenopenope"
|
Token = "nopenopenope"
|
||||||
Label="T"
|
Label = "T"
|
||||||
QuoteLengthLimit=60
|
QuoteLengthLimit = 60
|
||||||
MediaConvertWebPToPNG=false
|
MediaConvertWebPToPNG = false
|
||||||
# Convert .tgs.webp (animated stickers) to webp
|
# Convert .tgs.webp (animated stickers) to webp
|
||||||
#MediaConvertTgs="webp"
|
#MediaConvertTgs="webp"
|
||||||
# https://github.com/telegramdesktop/tdesktop/issues/6959 + Matrix homeservers become clickable links polluting links
|
# https://github.com/telegramdesktop/tdesktop/issues/6959 + Matrix homeservers become clickable links polluting links
|
||||||
RemoteNickFormat="<code>@{NICK}/{LABEL}</code>: "
|
RemoteNickFormat = "<code>@{NICK}/{LABEL}</code>: "
|
||||||
MessageFormat="HTMLNick"
|
MessageFormat = "HTMLNick"
|
||||||
DisableWebPagePreview=true
|
DisableWebPagePreview = true
|
||||||
|
|
||||||
[xmpp.example]
|
[xmpp.example]
|
||||||
Server="example.net:5222"
|
Server = "example.net:5222"
|
||||||
Jid="matterbridge@example.net"
|
Jid = "matterbridge@example.net"
|
||||||
Password="nonono"
|
Password = "nonono"
|
||||||
Muc="conference.example.net"
|
Muc = "conference.example.net"
|
||||||
Nick="M"
|
Nick = "M"
|
||||||
Label="xmpp"
|
Label = "xmpp"
|
||||||
|
|
||||||
[[gateway]]
|
[[gateway]]
|
||||||
name="redactedchanone"
|
name = "redactedchanone"
|
||||||
enable=false
|
enable = false
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
account="irc.freenode"
|
account = "irc.freenode"
|
||||||
channel="#redactedchanone"
|
channel = "#redactedchanone"
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
account="irc.liberachat"
|
account = "irc.liberachat"
|
||||||
channel="#redactedchanone"
|
channel = "#redactedchanone"
|
||||||
|
|
||||||
[[gateway]]
|
[[gateway]]
|
||||||
name="secretchan"
|
name = "secretchan"
|
||||||
enable=true
|
enable = true
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
account="irc.freenode"
|
account = "irc.freenode"
|
||||||
channel="##secretchan+"
|
channel = "##secretchan+"
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
account="irc.liberachat"
|
account = "irc.liberachat"
|
||||||
channel="##secretchan+"
|
channel = "##secretchan+"
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
account="irc.localergo"
|
account = "irc.localergo"
|
||||||
channel="#secretchan+"
|
channel = "#secretchan+"
|
||||||
|
|
||||||
[[gateway]]
|
[[gateway]]
|
||||||
name="test"
|
name = "test"
|
||||||
enable="true"
|
enable = "true"
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
account="irc.localergo"
|
account = "irc.localergo"
|
||||||
channel="#test"
|
channel = "#test"
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
account="irc.liberachat"
|
account = "irc.liberachat"
|
||||||
channel="#test"
|
channel = "#test"
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
account="irc.freenode"
|
account = "irc.freenode"
|
||||||
channel="#test"
|
channel = "#test"
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
account="discord.discordexample"
|
account = "discord.discordexample"
|
||||||
# Get it by enabling developer mode from Discord settings and
|
# Get it by enabling developer mode from Discord settings and
|
||||||
# right-clicking the channel name
|
# right-clicking the channel name
|
||||||
channel="ID:121212123124618"
|
channel = "ID:121212123124618"
|
||||||
[gateway.inout.options]
|
[gateway.inout.options]
|
||||||
WebhookURL="https://discordapp.com/api/webhooks/..."
|
WebhookURL = "https://discordapp.com/api/webhooks/..."
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
account="telegram.telegrambot"
|
account = "telegram.telegrambot"
|
||||||
# Get it by adding the bot to a group runtime and /chatId
|
# Get it by adding the bot to a group runtime and /chatId
|
||||||
channel="-1001199999999"
|
channel = "-1001199999999"
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
account="mattermost.mattermostexample"
|
account = "mattermost.mattermostexample"
|
||||||
channel="test"
|
channel = "test"
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
account="matrix.matrixexample"
|
account = "matrix.matrixexample"
|
||||||
# Invite the bot account to a room and it will accept invite on start,
|
# Invite the bot account to a room and it will accept invite on start,
|
||||||
# alternatively use a room alias (but the server it refers to will need
|
# alternatively use a room alias (but the server it refers to will need
|
||||||
# to be online). If using internal ID, remember to update it when
|
# to be online). If using internal ID, remember to update it when
|
||||||
# performing /upgraderoom
|
# performing /upgraderoom
|
||||||
channel="!roomInternalIDFromAdvancedRoomSettings:example.org"
|
channel = "!roomInternalIDFromAdvancedRoomSettings:example.org"
|
||||||
|
|
||||||
[[gateway.inout]]
|
[[gateway.inout]]
|
||||||
account="xmpp.example"
|
account = "xmpp.example"
|
||||||
channel="test"
|
channel = "test"
|
||||||
|
@ -1,100 +1,558 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
<opml version="1.0">
|
<opml version="1.0">
|
||||||
<head>
|
<head>
|
||||||
<title>Liferea Feed List Export</title>
|
<title>Liferea Feed List Export</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<outline title="Aminda" text="Aminda" description="Aminda" type="folder">
|
<outline title="Aminda" text="Aminda" description="Aminda" type="folder">
|
||||||
<outline title="Aminda Suomalainen ⚧" text="Aminda Suomalainen ⚧" description="Aminda Suomalainen ⚧" type="rss" xmlUrl="https://www.aminda.eu/blog/feed.xml" htmlUrl="https://aminda.eu/"/>
|
<outline
|
||||||
<outline title="Feed of "Aminda Suomalainen"" text="Feed of "Aminda Suomalainen"" description="Feed of "Aminda Suomalainen"" type="atom" xmlUrl="https://codeberg.org/Mikaela.atom" htmlUrl="https://codeberg.org/Mikaela"/>
|
title="Aminda Suomalainen ⚧"
|
||||||
|
text="Aminda Suomalainen ⚧"
|
||||||
|
description="Aminda Suomalainen ⚧"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://www.aminda.eu/blog/feed.xml"
|
||||||
|
htmlUrl="https://aminda.eu/"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Feed of "Aminda Suomalainen""
|
||||||
|
text="Feed of "Aminda Suomalainen""
|
||||||
|
description="Feed of "Aminda Suomalainen""
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://codeberg.org/Mikaela.atom"
|
||||||
|
htmlUrl="https://codeberg.org/Mikaela"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="Associations" text="Associations" description="Associations" type="folder">
|
<outline
|
||||||
<outline title="News – DarkSky International" text="News – DarkSky International" description="News – DarkSky International" type="rss" xmlUrl="https://darksky.org/news/feed/" htmlUrl="https://darksky.org"/>
|
title="Associations"
|
||||||
|
text="Associations"
|
||||||
|
description="Associations"
|
||||||
|
type="folder"
|
||||||
|
>
|
||||||
|
<outline
|
||||||
|
title="News – DarkSky International"
|
||||||
|
text="News – DarkSky International"
|
||||||
|
description="News – DarkSky International"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://darksky.org/news/feed/"
|
||||||
|
htmlUrl="https://darksky.org"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="BBC" text="BBC" description="BBC" type="folder">
|
<outline title="BBC" text="BBC" description="BBC" type="folder">
|
||||||
<outline title="BBC News" text="BBC News" description="BBC News" type="rss" xmlUrl="https://feeds.bbci.co.uk/news/world/europe/rss.xml" htmlUrl="https://www.bbc.co.uk/news/world/europe"/>
|
<outline
|
||||||
<outline title="BBC News - UK Politics" text="BBC News - UK Politics" description="BBC News - UK Politics" type="rss" xmlUrl="https://feeds.bbci.co.uk/news/politics/rss.xml" htmlUrl="https://www.bbc.co.uk/news/"/>
|
title="BBC News"
|
||||||
<outline title="BBC News" text="BBC News" description="BBC News" type="rss" xmlUrl="https://feeds.bbci.co.uk/news/science_and_environment/rss.xml" htmlUrl="https://www.bbc.co.uk/news/science_and_environment"/>
|
text="BBC News"
|
||||||
<outline title="BBC News" text="BBC News" description="BBC News" type="rss" xmlUrl="https://feeds.bbci.co.uk/news/technology/rss.xml" htmlUrl="https://www.bbc.co.uk/news/technology"/>
|
description="BBC News"
|
||||||
<outline title="BBC News - Home" text="BBC News - Home" description="BBC News - Home" type="rss" xmlUrl="https://feeds.bbci.co.uk/news/rss.xml" htmlUrl="https://www.bbc.co.uk/news/"/>
|
type="rss"
|
||||||
<outline title="BBC News - US & Canada" text="BBC News - US & Canada" description="BBC News - US & Canada" type="rss" xmlUrl="https://feeds.bbci.co.uk/news/world/us_and_canada/rss.xml" htmlUrl="https://www.bbc.co.uk/news/"/>
|
xmlUrl="https://feeds.bbci.co.uk/news/world/europe/rss.xml"
|
||||||
<outline title="BBC News - World" text="BBC News - World" description="BBC News - World" type="rss" xmlUrl="https://feeds.bbci.co.uk/news/world/rss.xml" htmlUrl="https://www.bbc.co.uk/news/"/>
|
htmlUrl="https://www.bbc.co.uk/news/world/europe"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="BBC News - UK Politics"
|
||||||
|
text="BBC News - UK Politics"
|
||||||
|
description="BBC News - UK Politics"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://feeds.bbci.co.uk/news/politics/rss.xml"
|
||||||
|
htmlUrl="https://www.bbc.co.uk/news/"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="BBC News"
|
||||||
|
text="BBC News"
|
||||||
|
description="BBC News"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://feeds.bbci.co.uk/news/science_and_environment/rss.xml"
|
||||||
|
htmlUrl="https://www.bbc.co.uk/news/science_and_environment"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="BBC News"
|
||||||
|
text="BBC News"
|
||||||
|
description="BBC News"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://feeds.bbci.co.uk/news/technology/rss.xml"
|
||||||
|
htmlUrl="https://www.bbc.co.uk/news/technology"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="BBC News - Home"
|
||||||
|
text="BBC News - Home"
|
||||||
|
description="BBC News - Home"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://feeds.bbci.co.uk/news/rss.xml"
|
||||||
|
htmlUrl="https://www.bbc.co.uk/news/"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="BBC News - US & Canada"
|
||||||
|
text="BBC News - US & Canada"
|
||||||
|
description="BBC News - US & Canada"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://feeds.bbci.co.uk/news/world/us_and_canada/rss.xml"
|
||||||
|
htmlUrl="https://www.bbc.co.uk/news/"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="BBC News - World"
|
||||||
|
text="BBC News - World"
|
||||||
|
description="BBC News - World"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://feeds.bbci.co.uk/news/world/rss.xml"
|
||||||
|
htmlUrl="https://www.bbc.co.uk/news/"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="Certificate Transparency" text="Certificate Transparency" description="Certificate Transparency" type="folder">
|
<outline
|
||||||
<outline title="q=114077943.xyz" text="q=114077943.xyz" description="q=114077943.xyz" type="atom" xmlUrl="https://crt.sh/atom?q=114077943.xyz" htmlUrl=""/>
|
title="Certificate Transparency"
|
||||||
<outline title="q=aminda.eu" text="q=aminda.eu" description="q=aminda.eu" type="atom" xmlUrl="https://crt.sh/atom?q=aminda.eu" htmlUrl=""/>
|
text="Certificate Transparency"
|
||||||
<outline title="q=mikaela.info" text="q=mikaela.info" description="q=mikaela.info" type="atom" xmlUrl="https://crt.sh/atom?q=mikaela.info" htmlUrl=""/>
|
description="Certificate Transparency"
|
||||||
<outline title="q=olepiraatti.fi" text="q=olepiraatti.fi" description="q=olepiraatti.fi" type="atom" xmlUrl="https://crt.sh/atom?q=olepiraatti.fi" htmlUrl=""/>
|
type="folder"
|
||||||
<outline title="q=pinu.fi" text="q=pinu.fi" description="q=pinu.fi" type="atom" xmlUrl="https://crt.sh/atom?q=pinu.fi" htmlUrl=""/>
|
>
|
||||||
<outline title="q=piraatit.fi" text="q=piraatit.fi" description="q=piraatit.fi" type="atom" xmlUrl="https://crt.sh/atom?q=piraatit.fi" htmlUrl=""/>
|
<outline
|
||||||
<outline title="q=piraattinuoret.fi" text="q=piraattinuoret.fi" description="q=piraattinuoret.fi" type="atom" xmlUrl="https://crt.sh/atom?q=piraattinuoret.fi" htmlUrl=""/>
|
title="q=114077943.xyz"
|
||||||
<outline title="q=piraattipuolue.fi" text="q=piraattipuolue.fi" description="q=piraattipuolue.fi" type="atom" xmlUrl="https://crt.sh/atom?q=piraattipuolue.fi" htmlUrl=""/>
|
text="q=114077943.xyz"
|
||||||
<outline title="q=pirateirc.net" text="q=pirateirc.net" description="q=pirateirc.net" type="atom" xmlUrl="https://crt.sh/atom?q=pirateirc.net" htmlUrl=""/>
|
description="q=114077943.xyz"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://crt.sh/atom?q=114077943.xyz"
|
||||||
|
htmlUrl=""
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="q=aminda.eu"
|
||||||
|
text="q=aminda.eu"
|
||||||
|
description="q=aminda.eu"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://crt.sh/atom?q=aminda.eu"
|
||||||
|
htmlUrl=""
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="q=mikaela.info"
|
||||||
|
text="q=mikaela.info"
|
||||||
|
description="q=mikaela.info"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://crt.sh/atom?q=mikaela.info"
|
||||||
|
htmlUrl=""
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="q=olepiraatti.fi"
|
||||||
|
text="q=olepiraatti.fi"
|
||||||
|
description="q=olepiraatti.fi"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://crt.sh/atom?q=olepiraatti.fi"
|
||||||
|
htmlUrl=""
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="q=pinu.fi"
|
||||||
|
text="q=pinu.fi"
|
||||||
|
description="q=pinu.fi"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://crt.sh/atom?q=pinu.fi"
|
||||||
|
htmlUrl=""
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="q=piraatit.fi"
|
||||||
|
text="q=piraatit.fi"
|
||||||
|
description="q=piraatit.fi"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://crt.sh/atom?q=piraatit.fi"
|
||||||
|
htmlUrl=""
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="q=piraattinuoret.fi"
|
||||||
|
text="q=piraattinuoret.fi"
|
||||||
|
description="q=piraattinuoret.fi"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://crt.sh/atom?q=piraattinuoret.fi"
|
||||||
|
htmlUrl=""
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="q=piraattipuolue.fi"
|
||||||
|
text="q=piraattipuolue.fi"
|
||||||
|
description="q=piraattipuolue.fi"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://crt.sh/atom?q=piraattipuolue.fi"
|
||||||
|
htmlUrl=""
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="q=pirateirc.net"
|
||||||
|
text="q=pirateirc.net"
|
||||||
|
description="q=pirateirc.net"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://crt.sh/atom?q=pirateirc.net"
|
||||||
|
htmlUrl=""
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="Fanfiction" text="Fanfiction" description="Fanfiction" type="folder">
|
<outline
|
||||||
<outline title="AO3 News" text="AO3 News" description="AO3 News" type="rss" xmlUrl="https://archiveofourown.org/admin_posts.rss" htmlUrl="https://archiveofourown.org/admin_posts"/>
|
title="Fanfiction"
|
||||||
|
text="Fanfiction"
|
||||||
|
description="Fanfiction"
|
||||||
|
type="folder"
|
||||||
|
>
|
||||||
|
<outline
|
||||||
|
title="AO3 News"
|
||||||
|
text="AO3 News"
|
||||||
|
description="AO3 News"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://archiveofourown.org/admin_posts.rss"
|
||||||
|
htmlUrl="https://archiveofourown.org/admin_posts"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="Myndigheterna" text="Myndigheterna" description="Myndigheterna" type="folder">
|
<outline
|
||||||
<outline title="Poliisi - Nyheter" text="Poliisi - Nyheter" description="Poliisi - Nyheter" type="rss" xmlUrl="https://poliisi.fi/sv/aktuellt/-/asset_publisher/yCqu73OvueAR/rss" htmlUrl="https://poliisi.fi/sv/aktuellt/-/asset_publisher/yCqu73OvueAR/rss"/>
|
title="Myndigheterna"
|
||||||
<outline title="Fingrid" text="Fingrid" description="Fingrid" type="rss" xmlUrl="https://www.fingrid.fi/api/rss/news?language=se" htmlUrl="http://www.fingrid.fi/api/rss/news?language=se"/>
|
text="Myndigheterna"
|
||||||
|
description="Myndigheterna"
|
||||||
|
type="folder"
|
||||||
|
>
|
||||||
|
<outline
|
||||||
|
title="Poliisi - Nyheter"
|
||||||
|
text="Poliisi - Nyheter"
|
||||||
|
description="Poliisi - Nyheter"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://poliisi.fi/sv/aktuellt/-/asset_publisher/yCqu73OvueAR/rss"
|
||||||
|
htmlUrl="https://poliisi.fi/sv/aktuellt/-/asset_publisher/yCqu73OvueAR/rss"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Fingrid"
|
||||||
|
text="Fingrid"
|
||||||
|
description="Fingrid"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://www.fingrid.fi/api/rss/news?language=se"
|
||||||
|
htmlUrl="http://www.fingrid.fi/api/rss/news?language=se"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="Novosti" text="Novosti" description="Novosti" type="folder">
|
<outline
|
||||||
<outline title="BBC Russian - Главная" text="BBC Russian - Главная" description="BBC Russian - Главная" type="rss" xmlUrl="https://feeds.bbci.co.uk/russian/rss.xml" htmlUrl="http://www.bbcrussian.com"/>
|
title="Novosti"
|
||||||
<outline title="Радио Болгария" text="Радио Болгария" description="Радио Болгария" xmlUrl="https://bnr.bg/ru/rss/news" htmlUrl=""/>
|
text="Novosti"
|
||||||
<outline title="DN.se - News in Russian" text="DN.se - News in Russian" description="DN.se - News in Russian" type="rss" xmlUrl="https://www.dn.se/rss/om/news-in-russian/" htmlUrl="https://www.dn.se/om/news-in-russian/"/>
|
description="Novosti"
|
||||||
<outline title="новости | ERR" text="новости | ERR" description="новости | ERR" type="rss" xmlUrl="https://rus.err.ee/rss" htmlUrl="http://rus.err.ee"/>
|
type="folder"
|
||||||
<outline title="News in Russian - Helsingin Sanomat" text="News in Russian - Helsingin Sanomat" description="News in Russian - Helsingin Sanomat" type="rss" xmlUrl="https://hs.fi/rss/newsinrussian.xml" htmlUrl="https://www.hs.fi"/>
|
>
|
||||||
<outline title="LRT Новости" text="LRT Новости" description="LRT Новости" type="rss" xmlUrl="https://www.lrt.lt/ru/novosti?rss" htmlUrl="https://www.lrt.lt/ru/novosti"/>
|
<outline
|
||||||
<outline title="Meduza.io" text="Meduza.io" description="Meduza.io" type="rss" xmlUrl="https://meduza.io/rss/all" htmlUrl="https://meduza.io"/>
|
title="BBC Russian - Главная"
|
||||||
<outline title="Radio Prague International - последние статьи" text="Radio Prague International - последние статьи" description="Radio Prague International - последние статьи" type="rss" xmlUrl="https://ruski.radio.cz/rcz-rss/ru" htmlUrl="https://ruski.radio.cz"/>
|
text="BBC Russian - Главная"
|
||||||
<outline title="Yle Novosti | Tuoreimmat uutiset" text="Yle Novosti | Tuoreimmat uutiset" description="Yle Novosti | Tuoreimmat uutiset" type="rss" xmlUrl="https://feeds.yle.fi/uutiset/v1/recent.rss?publisherIds=YLE_NOVOSTI" htmlUrl="https://yle.fi/novosti"/>
|
description="BBC Russian - Главная"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://feeds.bbci.co.uk/russian/rss.xml"
|
||||||
|
htmlUrl="http://www.bbcrussian.com"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Радио Болгария"
|
||||||
|
text="Радио Болгария"
|
||||||
|
description="Радио Болгария"
|
||||||
|
xmlUrl="https://bnr.bg/ru/rss/news"
|
||||||
|
htmlUrl=""
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="DN.se - News in Russian"
|
||||||
|
text="DN.se - News in Russian"
|
||||||
|
description="DN.se - News in Russian"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://www.dn.se/rss/om/news-in-russian/"
|
||||||
|
htmlUrl="https://www.dn.se/om/news-in-russian/"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="новости | ERR"
|
||||||
|
text="новости | ERR"
|
||||||
|
description="новости | ERR"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://rus.err.ee/rss"
|
||||||
|
htmlUrl="http://rus.err.ee"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="News in Russian - Helsingin Sanomat"
|
||||||
|
text="News in Russian - Helsingin Sanomat"
|
||||||
|
description="News in Russian - Helsingin Sanomat"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://hs.fi/rss/newsinrussian.xml"
|
||||||
|
htmlUrl="https://www.hs.fi"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="LRT Новости"
|
||||||
|
text="LRT Новости"
|
||||||
|
description="LRT Новости"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://www.lrt.lt/ru/novosti?rss"
|
||||||
|
htmlUrl="https://www.lrt.lt/ru/novosti"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Meduza.io"
|
||||||
|
text="Meduza.io"
|
||||||
|
description="Meduza.io"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://meduza.io/rss/all"
|
||||||
|
htmlUrl="https://meduza.io"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Radio Prague International - последние статьи"
|
||||||
|
text="Radio Prague International - последние статьи"
|
||||||
|
description="Radio Prague International - последние статьи"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://ruski.radio.cz/rcz-rss/ru"
|
||||||
|
htmlUrl="https://ruski.radio.cz"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Yle Novosti | Tuoreimmat uutiset"
|
||||||
|
text="Yle Novosti | Tuoreimmat uutiset"
|
||||||
|
description="Yle Novosti | Tuoreimmat uutiset"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://feeds.yle.fi/uutiset/v1/recent.rss?publisherIds=YLE_NOVOSTI"
|
||||||
|
htmlUrl="https://yle.fi/novosti"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="Politics" text="Politics" description="Politics" type="folder">
|
<outline
|
||||||
<outline title="Puolueet" text="Puolueet" description="Puolueet" type="folder">
|
title="Politics"
|
||||||
<outline title="Demokraatti.fi" text="Demokraatti.fi" description="Demokraatti.fi" type="rss" xmlUrl="https://demokraatti.fi/feed/" htmlUrl="https://demokraatti.fi"/>
|
text="Politics"
|
||||||
|
description="Politics"
|
||||||
|
type="folder"
|
||||||
|
>
|
||||||
|
<outline
|
||||||
|
title="Puolueet"
|
||||||
|
text="Puolueet"
|
||||||
|
description="Puolueet"
|
||||||
|
type="folder"
|
||||||
|
>
|
||||||
|
<outline
|
||||||
|
title="Demokraatti.fi"
|
||||||
|
text="Demokraatti.fi"
|
||||||
|
description="Demokraatti.fi"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://demokraatti.fi/feed/"
|
||||||
|
htmlUrl="https://demokraatti.fi"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="Privacy" text="Privacy" description="Privacy" type="folder"/>
|
<outline
|
||||||
<outline title="Software" text="Software" description="Software" type="folder">
|
title="Privacy"
|
||||||
<outline title="Software Releases" text="Software Releases" description="Software Releases" type="folder">
|
text="Privacy"
|
||||||
<outline title="Tags from atheme" text="Tags from atheme" description="Tags from atheme" type="atom" xmlUrl="https://github.com/atheme/atheme/tags.atom" htmlUrl="https://github.com/atheme/atheme/releases"/>
|
description="Privacy"
|
||||||
<outline title="briar tags" text="briar tags" description="briar tags" type="atom" xmlUrl="https://code.briarproject.org/briar/briar/-/tags?format=atom" htmlUrl="https://code.briarproject.org/briar/briar/-/tags"/>
|
type="folder"
|
||||||
<outline title="Conduit tags" text="Conduit tags" description="Conduit tags" type="atom" xmlUrl="https://gitlab.com/famedly/conduit/-/tags?format=atom" htmlUrl="https://gitlab.com/famedly/conduit/-/tags"/>
|
/>
|
||||||
<outline title="Tags from curl" text="Tags from curl" description="Tags from curl" type="atom" xmlUrl="https://github.com/curl/curl/tags.atom" htmlUrl="https://github.com/curl/curl/releases"/>
|
<outline
|
||||||
<outline title="Uusi syöte" text="Uusi syöte" description="Uusi syöte" xmlUrl="https://github.com/element-hq/dendrite/tags.atom" htmlUrl=""/>
|
title="Software"
|
||||||
<outline title="Tags from element-android" text="Tags from element-android" description="Tags from element-android" type="atom" xmlUrl="https://github.com/element-hq/element-android/tags.atom" htmlUrl="https://github.com/element-hq/element-android/releases"/>
|
text="Software"
|
||||||
|
description="Software"
|
||||||
|
type="folder"
|
||||||
|
>
|
||||||
|
<outline
|
||||||
|
title="Software Releases"
|
||||||
|
text="Software Releases"
|
||||||
|
description="Software Releases"
|
||||||
|
type="folder"
|
||||||
|
>
|
||||||
|
<outline
|
||||||
|
title="Tags from atheme"
|
||||||
|
text="Tags from atheme"
|
||||||
|
description="Tags from atheme"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://github.com/atheme/atheme/tags.atom"
|
||||||
|
htmlUrl="https://github.com/atheme/atheme/releases"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="briar tags"
|
||||||
|
text="briar tags"
|
||||||
|
description="briar tags"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://code.briarproject.org/briar/briar/-/tags?format=atom"
|
||||||
|
htmlUrl="https://code.briarproject.org/briar/briar/-/tags"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Conduit tags"
|
||||||
|
text="Conduit tags"
|
||||||
|
description="Conduit tags"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://gitlab.com/famedly/conduit/-/tags?format=atom"
|
||||||
|
htmlUrl="https://gitlab.com/famedly/conduit/-/tags"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Tags from curl"
|
||||||
|
text="Tags from curl"
|
||||||
|
description="Tags from curl"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://github.com/curl/curl/tags.atom"
|
||||||
|
htmlUrl="https://github.com/curl/curl/releases"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Uusi syöte"
|
||||||
|
text="Uusi syöte"
|
||||||
|
description="Uusi syöte"
|
||||||
|
xmlUrl="https://github.com/element-hq/dendrite/tags.atom"
|
||||||
|
htmlUrl=""
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Tags from element-android"
|
||||||
|
text="Tags from element-android"
|
||||||
|
description="Tags from element-android"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://github.com/element-hq/element-android/tags.atom"
|
||||||
|
htmlUrl="https://github.com/element-hq/element-android/releases"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="Blogs" text="Blogs" description="Blogs" type="folder">
|
<outline title="Blogs" text="Blogs" description="Blogs" type="folder">
|
||||||
<outline title="News - Briar" text="News - Briar" description="News - Briar" type="atom" xmlUrl="https://briarproject.org/news/index.xml" htmlUrl="https://briarproject.org/news/"/>
|
<outline
|
||||||
<outline title="Stories by /e/ Developers Blog on Medium" text="Stories by /e/ Developers Blog on Medium" description="Stories by /e/ Developers Blog on Medium" type="rss" xmlUrl="https://edevelopers-blog.medium.com/feed" htmlUrl="https://medium.com/@edevelopers-blog?source=rss-20f5a0d0ca02------2"/>
|
title="News - Briar"
|
||||||
|
text="News - Briar"
|
||||||
|
description="News - Briar"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://briarproject.org/news/index.xml"
|
||||||
|
htmlUrl="https://briarproject.org/news/"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Stories by /e/ Developers Blog on Medium"
|
||||||
|
text="Stories by /e/ Developers Blog on Medium"
|
||||||
|
description="Stories by /e/ Developers Blog on Medium"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://edevelopers-blog.medium.com/feed"
|
||||||
|
htmlUrl="https://medium.com/@edevelopers-blog?source=rss-20f5a0d0ca02------2"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="Microblogs" text="Microblogs" description="Microblogs" type="folder">
|
<outline
|
||||||
<outline title="Debian micronews" text="Debian micronews" description="Debian micronews" type="atom" xmlUrl="https://micronews.debian.org/feeds/atom.xml" htmlUrl="https://micronews.debian.org/"/>
|
title="Microblogs"
|
||||||
|
text="Microblogs"
|
||||||
|
description="Microblogs"
|
||||||
|
type="folder"
|
||||||
|
>
|
||||||
|
<outline
|
||||||
|
title="Debian micronews"
|
||||||
|
text="Debian micronews"
|
||||||
|
description="Debian micronews"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://micronews.debian.org/feeds/atom.xml"
|
||||||
|
htmlUrl="https://micronews.debian.org/"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="Security" text="Security" description="Security" type="folder">
|
<outline
|
||||||
<outline title="Debian Security" text="Debian Security" description="Debian Security" type="rss" xmlUrl="https://www.debian.org/security/dsa" htmlUrl="https://www.debian.org/security/dsa.rdf"/>
|
title="Security"
|
||||||
|
text="Security"
|
||||||
|
description="Security"
|
||||||
|
type="folder"
|
||||||
|
>
|
||||||
|
<outline
|
||||||
|
title="Debian Security"
|
||||||
|
text="Debian Security"
|
||||||
|
description="Debian Security"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://www.debian.org/security/dsa"
|
||||||
|
htmlUrl="https://www.debian.org/security/dsa.rdf"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="Element Blog" text="Element Blog" description="Element Blog" type="rss" xmlUrl="https://element.io/blog/rss/" htmlUrl="https://element.io/blog/"/>
|
<outline
|
||||||
|
title="Element Blog"
|
||||||
|
text="Element Blog"
|
||||||
|
description="Element Blog"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://element.io/blog/rss/"
|
||||||
|
htmlUrl="https://element.io/blog/"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="Valtion yritykset" text="Valtion yritykset" description="Valtion yritykset" type="folder">
|
<outline
|
||||||
<outline title="Fingrid" text="Fingrid" description="Fingrid" type="rss" xmlUrl="https://www.fingrid.fi/api/rss/news?language=fi" htmlUrl="http://www.fingrid.fi/api/rss/news?language=fi"/>
|
title="Valtion yritykset"
|
||||||
<outline title="Fingrid-Lehti" text="Fingrid-Lehti" description="Fingrid-Lehti" type="rss" xmlUrl="https://www.fingridlehti.fi/feed/" htmlUrl="https://www.fingridlehti.fi/"/>
|
text="Valtion yritykset"
|
||||||
<outline title="Motiva -" text="Motiva -" description="Motiva -" type="rss" xmlUrl="https://www.motiva.fi/rss/ajankohtaista/uutiset" htmlUrl="https://www.motiva.fi/"/>
|
description="Valtion yritykset"
|
||||||
|
type="folder"
|
||||||
|
>
|
||||||
|
<outline
|
||||||
|
title="Fingrid"
|
||||||
|
text="Fingrid"
|
||||||
|
description="Fingrid"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://www.fingrid.fi/api/rss/news?language=fi"
|
||||||
|
htmlUrl="http://www.fingrid.fi/api/rss/news?language=fi"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Fingrid-Lehti"
|
||||||
|
text="Fingrid-Lehti"
|
||||||
|
description="Fingrid-Lehti"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://www.fingridlehti.fi/feed/"
|
||||||
|
htmlUrl="https://www.fingridlehti.fi/"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Motiva -"
|
||||||
|
text="Motiva -"
|
||||||
|
description="Motiva -"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://www.motiva.fi/rss/ajankohtaista/uutiset"
|
||||||
|
htmlUrl="https://www.motiva.fi/"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="Viranomaiset" text="Viranomaiset" description="Viranomaiset" type="folder">
|
<outline
|
||||||
<outline title="Hätäkeskuslaitos - Tiedotteet" text="Hätäkeskuslaitos - Tiedotteet" description="Hätäkeskuslaitos - Tiedotteet" type="rss" xmlUrl="https://112.fi/uutishuone/-/asset_publisher/XrYoIl7TpWvq/rss" htmlUrl="https://112.fi/uutishuone/-/asset_publisher/XrYoIl7TpWvq/rss"/>
|
title="Viranomaiset"
|
||||||
<outline title="Energiavirasto - Ajankohtaista" text="Energiavirasto - Ajankohtaista" description="Energiavirasto - Ajankohtaista" type="atom" xmlUrl="https://energiavirasto.fi/etusivu/-/asset_publisher/mip7ZqWho2Ph/rss" htmlUrl="https://energiavirasto.fi/etusivu"/>
|
text="Viranomaiset"
|
||||||
<outline title="Poliisi - Ajankohtaista" text="Poliisi - Ajankohtaista" description="Poliisi - Ajankohtaista" type="rss" xmlUrl="https://poliisi.fi/ajankohtaista/-/asset_publisher/yCqu73OvueAR/rss" htmlUrl="https://poliisi.fi/ajankohtaista/-/asset_publisher/yCqu73OvueAR/rss"/>
|
description="Viranomaiset"
|
||||||
<outline title="TEM uusimmat tiedotteet ja uutiset" text="TEM uusimmat tiedotteet ja uutiset" description="TEM uusimmat tiedotteet ja uutiset" type="atom" xmlUrl="https://tem.fi/etusivu/-/asset_publisher/PuQeVCwBv2KT/rss" htmlUrl="https://tem.fi/etusivu"/>
|
type="folder"
|
||||||
|
>
|
||||||
|
<outline
|
||||||
|
title="Hätäkeskuslaitos - Tiedotteet"
|
||||||
|
text="Hätäkeskuslaitos - Tiedotteet"
|
||||||
|
description="Hätäkeskuslaitos - Tiedotteet"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://112.fi/uutishuone/-/asset_publisher/XrYoIl7TpWvq/rss"
|
||||||
|
htmlUrl="https://112.fi/uutishuone/-/asset_publisher/XrYoIl7TpWvq/rss"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Energiavirasto - Ajankohtaista"
|
||||||
|
text="Energiavirasto - Ajankohtaista"
|
||||||
|
description="Energiavirasto - Ajankohtaista"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://energiavirasto.fi/etusivu/-/asset_publisher/mip7ZqWho2Ph/rss"
|
||||||
|
htmlUrl="https://energiavirasto.fi/etusivu"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Poliisi - Ajankohtaista"
|
||||||
|
text="Poliisi - Ajankohtaista"
|
||||||
|
description="Poliisi - Ajankohtaista"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://poliisi.fi/ajankohtaista/-/asset_publisher/yCqu73OvueAR/rss"
|
||||||
|
htmlUrl="https://poliisi.fi/ajankohtaista/-/asset_publisher/yCqu73OvueAR/rss"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="TEM uusimmat tiedotteet ja uutiset"
|
||||||
|
text="TEM uusimmat tiedotteet ja uutiset"
|
||||||
|
description="TEM uusimmat tiedotteet ja uutiset"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://tem.fi/etusivu/-/asset_publisher/PuQeVCwBv2KT/rss"
|
||||||
|
htmlUrl="https://tem.fi/etusivu"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="Yksityisyys" text="Yksityisyys" description="Yksityisyys" type="folder">
|
<outline
|
||||||
<outline title="Tor Project blog" text="Tor Project blog" description="Tor Project blog" type="atom" xmlUrl="https://blog.torproject.org/feed.xml" htmlUrl="https://blog.torproject.org/"/>
|
title="Yksityisyys"
|
||||||
<outline title="Electronic Frontier Finland – Effi ry" text="Electronic Frontier Finland – Effi ry" description="Electronic Frontier Finland – Effi ry" type="rss" xmlUrl="https://effi.org/feed/" htmlUrl="https://effi.org"/>
|
text="Yksityisyys"
|
||||||
|
description="Yksityisyys"
|
||||||
|
type="folder"
|
||||||
|
>
|
||||||
|
<outline
|
||||||
|
title="Tor Project blog"
|
||||||
|
text="Tor Project blog"
|
||||||
|
description="Tor Project blog"
|
||||||
|
type="atom"
|
||||||
|
xmlUrl="https://blog.torproject.org/feed.xml"
|
||||||
|
htmlUrl="https://blog.torproject.org/"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Electronic Frontier Finland – Effi ry"
|
||||||
|
text="Electronic Frontier Finland – Effi ry"
|
||||||
|
description="Electronic Frontier Finland – Effi ry"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://effi.org/feed/"
|
||||||
|
htmlUrl="https://effi.org"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
<outline title="YLE" text="YLE" description="YLE" type="folder">
|
<outline title="YLE" text="YLE" description="YLE" type="folder">
|
||||||
<outline title="Yle Uutiset | Vaaratiedotteet | Tuoreimmat uutiset" text="Yle Uutiset | Vaaratiedotteet | Tuoreimmat uutiset" description="Yle Uutiset | Vaaratiedotteet | Tuoreimmat uutiset" type="rss" xmlUrl="https://feeds.yle.fi/uutiset/v1/recent.rss?publisherIds=YLE_UUTISET&concepts=18-82214" htmlUrl="https://yle.fi/uutiset"/>
|
<outline
|
||||||
<outline title="Yle News | Tuoreimmat uutiset" text="Yle News | Tuoreimmat uutiset" description="Yle News | Tuoreimmat uutiset" type="rss" xmlUrl="https://feeds.yle.fi/uutiset/v1/recent.rss?publisherIds=YLE_NEWS" htmlUrl="https://yle.fi/news"/>
|
title="Yle Uutiset | Vaaratiedotteet | Tuoreimmat uutiset"
|
||||||
<outline title="Yle Nyheter på lätt svenska" text="Yle Nyheter på lätt svenska" description="Yle Nyheter på lätt svenska" type="rss" xmlUrl="https://feeds.yle.fi/areena/v1/series/1-50362086.rss?language=sv" htmlUrl="https://areena.yle.fi/1-50362086"/>
|
text="Yle Uutiset | Vaaratiedotteet | Tuoreimmat uutiset"
|
||||||
|
description="Yle Uutiset | Vaaratiedotteet | Tuoreimmat uutiset"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://feeds.yle.fi/uutiset/v1/recent.rss?publisherIds=YLE_UUTISET&concepts=18-82214"
|
||||||
|
htmlUrl="https://yle.fi/uutiset"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Yle News | Tuoreimmat uutiset"
|
||||||
|
text="Yle News | Tuoreimmat uutiset"
|
||||||
|
description="Yle News | Tuoreimmat uutiset"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://feeds.yle.fi/uutiset/v1/recent.rss?publisherIds=YLE_NEWS"
|
||||||
|
htmlUrl="https://yle.fi/news"
|
||||||
|
/>
|
||||||
|
<outline
|
||||||
|
title="Yle Nyheter på lätt svenska"
|
||||||
|
text="Yle Nyheter på lätt svenska"
|
||||||
|
description="Yle Nyheter på lätt svenska"
|
||||||
|
type="rss"
|
||||||
|
xmlUrl="https://feeds.yle.fi/areena/v1/series/1-50362086.rss?language=sv"
|
||||||
|
htmlUrl="https://areena.yle.fi/1-50362086"
|
||||||
|
/>
|
||||||
</outline>
|
</outline>
|
||||||
</body>
|
</body>
|
||||||
</opml>
|
</opml>
|
||||||
|
Loading…
Reference in New Issue
Block a user