This page, or parts of it, are still untranslated. Please translate it to the appropriate language (español).
DiscusionesFeed agrega una vista plana similar a Special:RecentChanges de publicaciones recientes en wikis con discusiones habilitadas. Crea una página especial a la que se puede acceder en Special:DiscussionsFeed. Las entradas proporcionan enlaces a sus publicaciones correspondientes en el módulo de discusiones, así como enlaces a los perfiles de usuario y bloqueos rápidos si el espectador tiene derechos de bloqueo. La lista se actualiza cada dos minutos.
Installation
Theme (optional)
Installing the theme is optional, by default the special page will use the theme as defined on the host wiki. Adding a theme will make the special page a bit easier to read.
It is not recommended to apply one of themes to your global CSS as you will encounter wikis with both light and dark skins. To install this theme on your wiki just add the following @import line to your wiki's MediaWiki:Common.css (Note that all imports go at the very top of the page). The themes will only enhance the theme of the host wiki, it will not override it. This means that installing the light theme on a dark wiki or vice versa will result in a page that is very hard to read.
Styling
Each entry has its own paragraph you can style. Text elements inside this paragraph all have their own classes for styling:
df-entryA line in the feed.df-dateThe time-stamp of the post.df-contentThe plain text content of the post.df-userThe user that posted the message.df-categoryThe category the post is in.df-blockA link to the Special:Block (only visible to viewers with blocking-rights).
CSS example for a wiki with dark theme:
/* Theme for Special:DiscussionsFeed */
.df-content {
color: LightGrey;
font-weight: bold;
}
.df-user {
color: LightSkyBlue;
}
.df-date {
color: LightGrey;
}
.df-entry:hover {
background-color: rgba(255,255,255,0.1);
}
.df-category {
font-style: italic;
}
.df-block {
color: firebrick;
}
.df-content:link, df-content:visited, .df-user:link, df-link:visited, .df-block:link, df-block:visited {
text-decoration: none;
}
Registro de cambios
| Date | Notes | Updated by |
|---|---|---|
| October 10th, 2016 | Created | Flightmare |
| October 13th, 2016 | Improved error throwing | Flightmare |
| November 28th, 2016 | Added auto refreshing | Flightmare |