![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
This is a Wagtail extension adding RSS aggregator feature and Twitter aggregator
Now full support Fever API ! Please configure your account in Feed account
New in 0.2 twitter aggregator and now on pypi just install snotra-rss with pip
# in snotra rss directory, type :
docker build -t snotra .
# run image with
docker run -p 8000:8000 --rm snotra
add the following line to your requirements.txt file :
snotra-rss
after that add snotra_rss to INSTALLED_APPS section of your wagtail settings: please also add taggit if not already done
INSTALLED_APPS = [
'taggit',
'snotra_rss',
'corbeille',
'search',
'wagtail.contrib.forms',
'wagtail.contrib.redirects',
'wagtail.embeds',
'wagtail.sites',
'wagtail.users',
'wagtail.snippets',
'wagtail.documents',
'wagtail.images',
'wagtail.search',
'wagtail.contrib.modeladmin',
'wagtail.contrib.table_block', # ajout support des tableaux
'wagtail.core',
'wagtail.admin',
'modelcluster',
'wagtail.contrib.styleguide',
'wagtail.contrib.postgres_search',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles'
]
after that add urls of snotra_rss to your urls section of your wagtail apps
from snotra_rss import urls as snotra_urls
urlpatterns = [
url(r'^django-admin/', admin.site.urls),
url(r'^admin/', include(wagtailadmin_urls)),
url(r'^documents/', include(wagtaildocs_urls)),
url(r'^search/$', search_views.search, name='search'),
# For anything not caught by a more specific rule above, hand over to
# Wagtail's page serving mechanism. This should be the last pattern in
# the list:
url(r'', include(wagtail_urls)),
url(r'', include(snotra_urls))
# Alternatively, if you want Wagtail pages to be served from a subpath
# of your site, rather than the site root:
# url(r'^pages/', include(wagtail_urls)),
]
good usage
0.2.5.5
0.2.5.4
0.2.5.3
0.2.5.1
0.2.5.0
0.2.4.0
0.2.3.9
0.2.3.8
0.2.3.7
0.2.3.6
0.2.3.5
0.2.3.4
0.2.3.3
0.2.3.2
0.2.3.1
0.2.2 and 0.2.3
0.2.1
FAQs
Wagtail app - with rss aggregator and tweeter aggregator feature
We found that snotra-rss demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.