aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2018-12-06 07:10:35 -0600
committerluxagraf <sng@luxagraf.net>2018-12-06 07:10:35 -0600
commit16f99c994f6b772506dc0a8871cd1f7e53b9a58f (patch)
tree883d9b6e8e7788b776fb86db7e5dfb3ff376608c
parentb02ccfba4a99284a6c31e4cd36fd598f86e58d50 (diff)
Added forum app and templates
-rw-r--r--apps/forum/__init__.py0
-rw-r--r--apps/forum/admin.py18
-rw-r--r--apps/forum/migrations/0001_initial.py109
-rw-r--r--apps/forum/migrations/__init__.py0
-rw-r--r--apps/forum/models.py145
-rw-r--r--apps/forum/urls.py12
-rw-r--r--apps/forum/views.py19
-rw-r--r--design/templates/forum/topic_list.html1247
8 files changed, 1550 insertions, 0 deletions
diff --git a/apps/forum/__init__.py b/apps/forum/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/apps/forum/__init__.py
diff --git a/apps/forum/admin.py b/apps/forum/admin.py
new file mode 100644
index 0000000..9fddd4e
--- /dev/null
+++ b/apps/forum/admin.py
@@ -0,0 +1,18 @@
+from django.contrib import admin
+
+from .models import Topic, Category, Post
+
+
+@admin.register(Topic)
+class TopicAdmin(admin.ModelAdmin):
+ pass
+
+
+@admin.register(Category)
+class CategoryAdmin(admin.ModelAdmin):
+ pass
+
+
+@admin.register(Post)
+class PostAdmin(admin.ModelAdmin):
+ pass
diff --git a/apps/forum/migrations/0001_initial.py b/apps/forum/migrations/0001_initial.py
new file mode 100644
index 0000000..0785014
--- /dev/null
+++ b/apps/forum/migrations/0001_initial.py
@@ -0,0 +1,109 @@
+# Generated by Django 2.1.2 on 2018-12-02 16:38
+
+from django.conf import settings
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ initial = True
+
+ dependencies = [
+ migrations.swappable_dependency(settings.AUTH_USER_MODEL),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='Category',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=120)),
+ ('slug', models.SlugField()),
+ ('date_created', models.DateTimeField(auto_now_add=True)),
+ ('date_updated', models.DateTimeField(auto_now=True)),
+ ('topic_count', models.PositiveIntegerField(default=0)),
+ ('topics_year', models.PositiveIntegerField(default=0)),
+ ('topics_month', models.PositiveIntegerField(default=0)),
+ ('topics_week', models.PositiveIntegerField(default=0)),
+ ],
+ options={
+ 'verbose_name_plural': 'Categories',
+ },
+ ),
+ migrations.CreateModel(
+ name='Post',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('post_type', models.CharField(choices=[('post', 'post'), ('reply', 'reply')], max_length=60)),
+ ('post_body_text', models.TextField(blank=True)),
+ ('post_body_html', models.TextField(blank=True, null=True)),
+ ('post_body_json', models.TextField(blank=True, null=True)),
+ ('date_created', models.DateTimeField(auto_now_add=True)),
+ ('date_updated', models.DateTimeField(auto_now=True)),
+ ('date_delete', models.DateTimeField(blank=True, null=True)),
+ ('reply_count', models.PositiveIntegerField(default=0)),
+ ('quote_count', models.PositiveIntegerField(default=0)),
+ ('like_count', models.PositiveIntegerField(default=0)),
+ ('bookmark_count', models.PositiveIntegerField(default=0)),
+ ('spam_count', models.PositiveIntegerField(default=0)),
+ ('reads', models.PositiveIntegerField(default=0)),
+ ('inappropriate_count', models.PositiveIntegerField(default=0)),
+ ('score', models.IntegerField(default=0)),
+ ('vote_count', models.IntegerField(default=0)),
+ ('last_editor', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='post_last_editor', to=settings.AUTH_USER_MODEL)),
+ ('reply_below_post', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='post_reply_below', to='forum.Post')),
+ ('reply_to_post', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='post_reply_to', to='forum.Post')),
+ ('reply_to_user', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='post_reply_to_user', to=settings.AUTH_USER_MODEL)),
+ ],
+ options={
+ 'verbose_name_plural': 'Posts',
+ },
+ ),
+ migrations.CreateModel(
+ name='Topic',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('title', models.CharField(max_length=255)),
+ ('slug', models.SlugField()),
+ ('date_last_posted', models.DateTimeField(auto_now=True)),
+ ('date_created', models.DateTimeField(auto_now_add=True)),
+ ('date_updated', models.DateTimeField(auto_now=True)),
+ ('date_deleted', models.DateTimeField(blank=True, null=True)),
+ ('date_bumped', models.DateTimeField(blank=True, null=True)),
+ ('views', models.PositiveIntegerField(default=0)),
+ ('posts_count', models.PositiveIntegerField(default=0)),
+ ('reply_count', models.PositiveIntegerField(default=0)),
+ ('like_count', models.PositiveIntegerField(default=0)),
+ ('bookmark_count', models.PositiveIntegerField(default=0)),
+ ('star_count', models.PositiveIntegerField(default=0)),
+ ('moderator_posts_count', models.PositiveIntegerField(default=0)),
+ ('vote_count', models.PositiveIntegerField(default=0)),
+ ('spam_count', models.PositiveIntegerField(default=0)),
+ ('illegal_count', models.PositiveIntegerField(default=0)),
+ ('inappropriate_count', models.PositiveIntegerField(default=0)),
+ ('visible', models.BooleanField(default=True)),
+ ('closed', models.BooleanField(default=False)),
+ ('pinned', models.BooleanField(default=False)),
+ ('archived', models.BooleanField(default=False)),
+ ('has_best_of', models.BooleanField(default=False)),
+ ('category', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='forum.Category')),
+ ('highest_post', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='topic_highest_post', to='forum.Post')),
+ ('last_post_userj', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='topic_last_post_user', to=settings.AUTH_USER_MODEL)),
+ ('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='topic_user', to=settings.AUTH_USER_MODEL)),
+ ],
+ options={
+ 'verbose_name_plural': 'Topics',
+ },
+ ),
+ migrations.AddField(
+ model_name='post',
+ name='topic',
+ field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='forum.Topic'),
+ ),
+ migrations.AddField(
+ model_name='post',
+ name='user',
+ field=models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='post_user', to=settings.AUTH_USER_MODEL),
+ ),
+ ]
diff --git a/apps/forum/migrations/__init__.py b/apps/forum/migrations/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/apps/forum/migrations/__init__.py
diff --git a/apps/forum/models.py b/apps/forum/models.py
new file mode 100644
index 0000000..d0f6b6f
--- /dev/null
+++ b/apps/forum/models.py
@@ -0,0 +1,145 @@
+from django.db import models
+from django.contrib import auth
+from django.urls import reverse
+from django.conf import settings
+
+
+class CategoryManager(models.Manager):
+
+ # create category
+ def create_category(self, title, slug=''):
+
+ if slug == '':
+ slug = title.lower().replace(' ', '-')
+
+ category = self.create(title=title, slug=slug)
+
+ return category
+
+ # get or create
+ def get_or_create(self, title):
+ try:
+ category = Category.objects.get(title=title)
+ except Category.DoesNotExist:
+ return (self.create_category(title), True)
+
+ return (category, False)
+
+
+class Category(models.Model):
+
+ title = models.CharField(max_length=120)
+ slug = models.SlugField()
+
+ date_created = models.DateTimeField(auto_now=False, auto_now_add=True)
+ date_updated = models.DateTimeField(auto_now=True, auto_now_add=False)
+
+ topic_count = models.PositiveIntegerField(default=0)
+ topics_year = models.PositiveIntegerField(default=0)
+ topics_month = models.PositiveIntegerField(default=0)
+ topics_week = models.PositiveIntegerField(default=0)
+
+ class Meta:
+ verbose_name_plural = "Categories"
+
+ objects = CategoryManager()
+
+ def __unicode__(self):
+ return self.title
+
+
+class TopicManager(models.Manager):
+
+ # create category
+ def create_topic(self, title, category, user, slug=''):
+
+ if slug == '':
+ slug = title.lower().replace(' ', '-')
+
+ topic = self.create(title=title, slug=slug, category=category, user=user)
+
+ return topic
+
+
+class Topic(models.Model):
+
+ category = models.ForeignKey(Category, on_delete=models.CASCADE)
+ user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE, related_name='topic_user')
+ last_post_userj= models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE, related_name='topic_last_post_user', blank=True, null=True)
+ highest_post = models.ForeignKey('Post', on_delete=models.CASCADE, related_name='topic_highest_post', blank=True, null=True)
+
+ title = models.CharField(max_length=255)
+ slug = models.SlugField()
+
+ date_last_posted = models.DateTimeField(auto_now=True, auto_now_add=False, blank=True)
+ date_created = models.DateTimeField(auto_now=False, auto_now_add=True, blank=True)
+ date_updated = models.DateTimeField(auto_now=True, auto_now_add=False, blank=True)
+ date_deleted = models.DateTimeField(blank=True, null=True)
+ date_bumped = models.DateTimeField(blank=True, null=True)
+
+ views = models.PositiveIntegerField(default=0)
+ posts_count = models.PositiveIntegerField(default=0)
+ reply_count = models.PositiveIntegerField(default=0)
+ like_count = models.PositiveIntegerField(default=0)
+ bookmark_count = models.PositiveIntegerField(default=0)
+ star_count = models.PositiveIntegerField(default=0)
+ moderator_posts_count = models.PositiveIntegerField(default=0)
+ vote_count = models.PositiveIntegerField(default=0)
+ spam_count = models.PositiveIntegerField(default=0)
+ illegal_count = models.PositiveIntegerField(default=0)
+ inappropriate_count = models.PositiveIntegerField(default=0)
+
+ visible = models.BooleanField(default=True)
+ closed = models.BooleanField(default=False)
+ pinned = models.BooleanField(default=False)
+ archived = models.BooleanField(default=False)
+ has_best_of = models.BooleanField(default=False)
+
+ objects = TopicManager()
+
+ class Meta:
+ verbose_name_plural = "Topics"
+
+ def __str__(self):
+ return self.title
+
+ def get_absolute_url(self):
+ return reverse('forum:topic-detail', kwargs={"slug": self.slug, "pk": self.pk})
+
+
+class Post(models.Model):
+ topic = models.ForeignKey(Topic, on_delete=models.CASCADE)
+ user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE, related_name='post_user')
+ reply_to_post = models.ForeignKey('self', on_delete=models.CASCADE, related_name='post_reply_to', blank=True, null=True)
+ reply_to_user = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE, related_name='post_reply_to_user', blank=True, null=True)
+ reply_below_post = models.ForeignKey('self', on_delete=models.CASCADE, related_name='post_reply_below', blank=True, null=True)
+ last_editor = models.ForeignKey(settings.AUTH_USER_MODEL, on_delete=models.CASCADE, related_name='post_last_editor', blank=True, null=True)
+ POST_TYPE_CHOICES = (
+ ('post', 'post'),
+ ('reply', 'reply'),
+ )
+ post_type = models.CharField(max_length=60, choices=POST_TYPE_CHOICES)
+ post_body_text = models.TextField(blank=True, null=False)
+ post_body_html = models.TextField(blank=True, null=True)
+ post_body_json = models.TextField(blank=True, null=True)
+
+ date_created = models.DateTimeField(auto_now=False, auto_now_add=True, blank=True)
+ date_updated = models.DateTimeField(auto_now=True, auto_now_add=False, blank=True)
+ date_delete = models.DateTimeField(blank=True, null=True)
+
+ reply_count = models.PositiveIntegerField(default=0)
+ quote_count = models.PositiveIntegerField(default=0)
+ like_count = models.PositiveIntegerField(default=0)
+ bookmark_count = models.PositiveIntegerField(default=0)
+ spam_count = models.PositiveIntegerField(default=0)
+ reads = models.PositiveIntegerField(default=0)
+ inappropriate_count = models.PositiveIntegerField(default=0)
+
+ score = models.IntegerField(default=0)
+ vote_count = models.IntegerField(default=0)
+
+ class Meta:
+ verbose_name_plural = "Posts"
+
+ def __str__(self):
+ return '%s - %s' % (self.raw, self.topic.title)
diff --git a/apps/forum/urls.py b/apps/forum/urls.py
new file mode 100644
index 0000000..79e2e0d
--- /dev/null
+++ b/apps/forum/urls.py
@@ -0,0 +1,12 @@
+from django.urls import path
+
+from .views import (
+ TopicListView,
+)
+
+app_name = "forum"
+
+urlpatterns = [
+ path(r't/', TopicListView.as_view(), name='topic-list',),
+ path(r'', TopicListView.as_view(), name='topic-redirect',),
+]
diff --git a/apps/forum/views.py b/apps/forum/views.py
new file mode 100644
index 0000000..bc7cc74
--- /dev/null
+++ b/apps/forum/views.py
@@ -0,0 +1,19 @@
+from django.views.generic import CreateView, ListView, UpdateView, DeleteView
+from django.views.generic.detail import DetailView
+from django.views.generic.base import View, RedirectView
+from django.shortcuts import get_object_or_404, render, redirect
+from django.urls import reverse, reverse_lazy
+
+from rest_framework import viewsets
+from rest_framework.response import Response
+from rest_framework.decorators import list_route
+from rest_framework import permissions
+
+#from .serializers import NoteSerializer, NotebookSerializer
+from .models import Topic, Category, Post
+#from .forms import NoteForm, NotebookForm
+from utils.views import LoggedInViewWithUser
+
+
+class TopicListView(LoggedInViewWithUser, ListView):
+ model = Topic
diff --git a/design/templates/forum/topic_list.html b/design/templates/forum/topic_list.html
new file mode 100644
index 0000000..89a165e
--- /dev/null
+++ b/design/templates/forum/topic_list.html
@@ -0,0 +1,1247 @@
+{% extends 'base.html' %}
+{% block content %}
+<main class="wide">
+ <div class="single-col">
+ <h1>Forum</h1>
+ <span class="small">
+ <p>Welcome to the Note forums. Ask questions, show others your workflow, post tips and tricks. There's even a Lounge where you can post on anything you want (nearly, be sure to read the Note forum guidelines).</p>
+ <p>The goal is for users of all levels to learn and share with each other, please treat this discussion forum with the same respect you would a public park. Remember to be kind, courteous and forgiving.</p>
+ </span>
+ </div>
+<table id="" class="topic-list">
+ <thead>
+ <tr>
+ <th data-sort-order="default" class="default">Topic</th>
+ <th data-sort-order="category" class="category sortable">Category</th>
+ <th data-sort-order="posters" class="posters">Users</th>
+ <th data-sort-order="posts" class="posts sortable num">Replies</th>
+ <th data-sort-order="views" class="views sortable num">Views</th>
+ <th data-sort-order="activity" class="activity sortable num">Activity</th>
+ </tr>
+ </thead>
+<tbody>
+ {% for object in object_list %}
+ <tr data-topic-id="" id="ember1226" class="topic-list-item category-meta has-excerpt pinned ember-view">
+ <td class="main-link clearfix" colspan="1">
+ <span class="link-top-line">
+ <div class="topic-statuses">
+ <a href="" title="This topic is pinned for you; it will display at the top of its category" class="topic-status"><svg class="fa d-icon d-icon-thumbtack svg-icon pinned svg-string" xmlns="http://www.w3.org/2000/svg"><use xlink:href="#thumbtack"></use></svg></a>
+ </div>
+ <a href="/t/lets-use-math-my-nerds/10030" class="title raw-link raw-topic-link" data-topic-id="10030">Let’s use math my nerds</a>
+ <span class="topic-post-badges"></span>
+ </span>
+ <div class="topic-excerpt">For a while we had either to render math outside of the forum or using some kind of ascii art for them. But this is over now. We added the offical math plugin to our instance. And yes asciimath is enabled too.
+$$
+E=mc…
+ <a href="/t/lets-use-math-my-nerds/10030">read more</a>
+ </div>
+ </td>
+ </tr>
+ {% endfor %}
+</table>
+</main>
+{% endblock %}
+
+
+<table id="" class="topic-list">
+ <thead>
+ <tr>
+ <th data-sort-order="default" class="default">Topic</th>
+ <th data-sort-order="category" class="category sortable">Category</th>
+ <th data-sort-order="posters" class="posters">Users</th>
+ <th data-sort-order="posts" class="posts sortable num">Replies</th>
+ <th data-sort-order="views" class="views sortable num">Views</th>
+ <th data-sort-order="activity" class="activity sortable num">Activity</th>
+ </tr>
+ </thead>
+<tbody>
+ <tr data-topic-id="" id="ember1226" class="topic-list-item category-meta has-excerpt pinned ember-view">
+ <td class="main-link clearfix" colspan="1">
+ <span class="link-top-line">
+ <div class="topic-statuses">
+ <a href="" title="This topic is pinned for you; it will display at the top of its category" class="topic-status"><svg class="fa d-icon d-icon-thumbtack svg-icon pinned svg-string" xmlns="http://www.w3.org/2000/svg"><use xlink:href="#thumbtack"></use></svg></a>
+ </div>
+ <a href="/t/lets-use-math-my-nerds/10030" class="title raw-link raw-topic-link" data-topic-id="10030">Let’s use math my nerds</a>
+ <span class="topic-post-badges"></span>
+ </span>
+ <div class="topic-excerpt">For a while we had either to render math outside of the forum or using some kind of ascii art for them. But this is over now. We added the offical math plugin to our instance. And yes asciimath is enabled too.
+$$
+E=mc…
+ <a href="/t/lets-use-math-my-nerds/10030">read more</a>
+ </div>
+ </td>
+ <td class="category"><a class="badge-wrapper bullet" href="/c/meta"><span class="badge-category-bg" style="background-color: #EEEEEE;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Discussions related to the website or this forum itself.
+Particularly around any issues, enhancements, suggestions, etc…"><span class="category-name">Meta</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/darix" data-user-card="darix" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/darix/25/14887_1.png" class="avatar" title="darix - Original Poster"></a>
+<a href="/u/ldj" data-user-card="ldj" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/ldj/25/15291_1.png" class="avatar" title="Lowell Johnson - Frequent Poster"></a>
+<a href="/u/paperdigits" data-user-card="paperdigits" class=" group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/paperdigits/25/16617_1.png" class="avatar" title="Mica - Frequent Poster"></a>
+<a href="/u/afre" data-user-card="afre" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/afre/25/7845_1.png" class="avatar" title="afre - Frequent Poster"></a>
+<a href="/u/garagecoder" data-user-card="garagecoder" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/garagecoder/25/16676_1.png" class="avatar latest" title="garagecoder - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-med" title="This topic has 22 replies with a very high like to post ratio">
+ <a href="" class="posts-map badge-posts heatmap-med">
+
+ <span class="number">22</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 374 times">374</span></td>
+
+<td class="num age activity" title="First post: Nov 26, 2018 1:47 pm
+Posted: Dec 1, 2018 4:05 am"><a class="post-activity" href="/t/lets-use-math-my-nerds/10030/23"><span class="relative-date" data-time="1543658750764" data-format="tiny">1d</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="8" id="ember1228" class="topic-list-item category-meta has-excerpt pinned ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><div class="topic-statuses">
+<a href="" title="This topic is pinned for you; it will display at the top of its category" class="topic-status"><svg class="fa d-icon d-icon-thumbtack svg-icon pinned svg-string" xmlns="http://www.w3.org/2000/svg"><use xlink:href="#thumbtack"></use></svg></a></div>
+<a href="/t/welcome-to-pixls-us-discussion/8" class="title raw-link raw-topic-link" data-topic-id="8">Welcome to PIXLS.US Discussion</a><span class="topic-post-badges"></span>
+ </span>
+
+
+ <div class="topic-excerpt">
+ Welcome to the PIXLS.US discussion!
+This is a community for discussing posts from the website as well as a place for photography (and free software) enthusiasts of all levels to learn and share with each other.
+The mis…
+ <a href="/t/welcome-to-pixls-us-discussion/8">read more</a>
+ </div>
+
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/meta"><span class="badge-category-bg" style="background-color: #EEEEEE;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Discussions related to the website or this forum itself.
+Particularly around any issues, enhancements, suggestions, etc…"><span class="category-name">Meta</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/patdavid" data-user-card="patdavid" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/patdavid/25/10471_1.png" class="avatar" title="Pat David - Original Poster"></a>
+<a href="/u/andabata" data-user-card="andabata" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/andabata/25/6553_1.png" class="avatar" title="Kees Guequierre - Frequent Poster"></a>
+<a href="/u/paperdigits" data-user-card="paperdigits" class=" group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/paperdigits/25/16617_1.png" class="avatar" title="Mica - Frequent Poster"></a>
+<a href="/u/ronaldlees" data-user-card="Ronaldlees" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/ronaldlees/25/12819_1.png" class="avatar latest" title="ron - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 5 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">5</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views heatmap-high"><span class="number" title="this topic has been viewed 6,205 times">6.2k</span></td>
+
+<td class="num age coldmap-high activity" title="First post: Apr 2, 2015 2:18 pm
+Posted: May 31, 2018 12:05 pm"><a class="post-activity" href="/t/welcome-to-pixls-us-discussion/8/6"><span class="relative-date" data-time="1527786319703" data-format="tiny">May 31</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10105" id="ember1230" class="topic-list-item category-processing unseen-topic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/playraw-backlighted-pelican/10105" class="title raw-link raw-topic-link" data-topic-id="10105">[PLAYRAW] backlighted pelican</a><span class="topic-post-badges">&nbsp;<a href="/t/playraw-backlighted-pelican/10105" class="badge badge-notification new-topic" title="new topic"></a></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/play_raw" data-tag-name="play_raw" class="discourse-tag simple">play_raw</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/processing"><span class="badge-category-bg" style="background-color: #F7941D;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Processing and managing images after they've been captured, using various free software from RAW processing to panorama stitching and much, much more."><span class="category-name">Processing</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/pittendrigh" data-user-card="pittendrigh" class=""><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/p/47e85d/25.png" class="avatar" title="Colin Pittendrigh - Original Poster"></a>
+<a href="/u/adlatus" data-user-card="Adlatus" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/adlatus/25/7092_1.png" class="avatar" title="Adlatus - Frequent Poster"></a>
+<a href="/u/thomas_do" data-user-card="Thomas_Do" class=" group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/thomas_do/25/6717_1.png" class="avatar" title="Thomas - Frequent Poster"></a>
+<a href="/u/ajohn" data-user-card="Ajohn" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/ajohn/25/7524_1.png" class="avatar" title="John - Frequent Poster"></a>
+<a href="/u/shreedhar" data-user-card="shreedhar" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/shreedhar/25/6008_1.png" class="avatar latest" title="Shreedhar Inamdar - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-med" title="This topic has 12 replies with a very high like to post ratio">
+ <a href="" class="posts-map badge-posts heatmap-med">
+
+ <span class="number">12</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 104 times">104</span></td>
+
+<td class="num age activity" title="First post: Dec 1, 2018 5:35 pm
+Posted: Dec 2, 2018 11:35 am"><a class="post-activity" href="/t/playraw-backlighted-pelican/10105/13"><span class="relative-date" data-time="1543772128280" data-format="tiny">1m</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10098" id="ember1231" class="topic-list-item category-software unseen-topic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/how-can-i-use-gutenprint-in-darktable-libreoffice-c-solved/10098" class="title raw-link raw-topic-link" data-topic-id="10098">How can I use Gutenprint in darktable, LibreOffice, &amp;c? [solved]</a><span class="topic-post-badges">&nbsp;<a href="/t/how-can-i-use-gutenprint-in-darktable-libreoffice-c-solved/10098" class="badge badge-notification new-topic" title="new topic"></a></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/printing" data-tag-name="printing" class="discourse-tag simple">printing</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software"><span class="badge-category-bg" style="background-color: #ED207B;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Discussions about software in general, not necessarily tied to a process or workflow that would fit better in the Processing category."><span class="category-name">Software</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/claes" data-user-card="Claes" class=" group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/claes/25/1645_1.png" class="avatar" title="Claes - Original Poster"></a>
+<a href="/u/paperdigits" data-user-card="paperdigits" class="latest group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/paperdigits/25/16617_1.png" class="avatar latest" title="Mica - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 4 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">4</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 71 times">71</span></td>
+
+<td class="num age activity" title="First post: Dec 1, 2018 10:50 am
+Posted: Dec 2, 2018 10:37 am"><a class="post-activity" href="/t/how-can-i-use-gutenprint-in-darktable-libreoffice-c-solved/10098/5"><span class="relative-date" data-time="1543768663511" data-format="tiny">1h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="9195" id="ember1233" class="topic-list-item category-processing ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/play-raw-forth-bridge-at-sunset/9195" class="title raw-link raw-topic-link" data-topic-id="9195">[Play Raw] Forth Bridge at Sunset</a><span class="topic-post-badges"></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/play_raw" data-tag-name="play_raw" class="discourse-tag simple">play_raw</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/processing"><span class="badge-category-bg" style="background-color: #F7941D;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Processing and managing images after they've been captured, using various free software from RAW processing to panorama stitching and much, much more."><span class="category-name">Processing</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/brian_innes" data-user-card="Brian_Innes" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/brian_innes/25/4964_1.png" class="avatar" title="Brian Innes - Original Poster"></a>
+<a href="/u/age" data-user-card="age" class=""><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/a/ecb155/25.png" class="avatar" title="age - Frequent Poster"></a>
+<a href="/u/hiram" data-user-card="HIRAM" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/hiram/25/12914_1.png" class="avatar" title="HIRAM - Frequent Poster"></a>
+<a href="/u/saknopper" data-user-card="saknopper" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/saknopper/25/8691_1.png" class="avatar" title="Sander Knopper - Frequent Poster"></a>
+<a href="/u/ajohn" data-user-card="Ajohn" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/ajohn/25/7524_1.png" class="avatar latest" title="John - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-med" title="This topic has 17 replies with a very high like to post ratio">
+ <a href="" class="posts-map badge-posts heatmap-med">
+
+ <span class="number">17</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 428 times">428</span></td>
+
+<td class="num age coldmap-low activity" title="First post: Sep 27, 2018 4:01 am
+Posted: Dec 2, 2018 10:22 am"><a class="post-activity" href="/t/play-raw-forth-bridge-at-sunset/9195/18"><span class="relative-date" data-time="1543767720015" data-format="tiny">1h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10103" id="ember1234" class="topic-list-item category-processing unseen-topic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/play-raw-nightscape-from-orange-free-state/10103" class="title raw-link raw-topic-link" data-topic-id="10103">[Play Raw] Nightscape from Orange Free State</a><span class="topic-post-badges">&nbsp;<a href="/t/play-raw-nightscape-from-orange-free-state/10103" class="badge badge-notification new-topic" title="new topic"></a></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/play_raw" data-tag-name="play_raw" class="discourse-tag simple">play_raw</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/processing"><span class="badge-category-bg" style="background-color: #F7941D;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Processing and managing images after they've been captured, using various free software from RAW processing to panorama stitching and much, much more."><span class="category-name">Processing</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/fbulovic" data-user-card="FBulovic" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/fbulovic/25/18287_1.png" class="avatar latest" title="Filip - Original Poster, Most Recent Poster"></a>
+<a href="/u/thanatomanic" data-user-card="Thanatomanic" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/thanatomanic/25/16722_1.png" class="avatar" title="Roel - Frequent Poster"></a>
+<a href="/u/hiram" data-user-card="HIRAM" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/hiram/25/12914_1.png" class="avatar" title="HIRAM - Frequent Poster"></a>
+<a href="/u/thomas_do" data-user-card="Thomas_Do" class=" group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/thomas_do/25/6717_1.png" class="avatar" title="Thomas - Frequent Poster"></a>
+<a href="/u/karl" data-user-card="Karl" class=""><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/k/34f0e0/25.png" class="avatar" title="Karl - Frequent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-med" title="This topic has 12 replies with a very high like to post ratio">
+ <a href="" class="posts-map badge-posts heatmap-med">
+
+ <span class="number">12</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 103 times">103</span></td>
+
+<td class="num age activity" title="First post: Dec 1, 2018 4:46 pm
+Posted: Dec 2, 2018 9:57 am"><a class="post-activity" href="/t/play-raw-nightscape-from-orange-free-state/10103/13"><span class="relative-date" data-time="1543766236296" data-format="tiny">2h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10050" id="ember1236" class="topic-list-item category-processing ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/playraw-another-view-from-the-mountaintop/10050" class="title raw-link raw-topic-link" data-topic-id="10050">[PlayRaw] Another view from the mountaintop</a><span class="topic-post-badges"></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/play_raw" data-tag-name="play_raw" class="discourse-tag simple">play_raw</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/processing"><span class="badge-category-bg" style="background-color: #F7941D;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Processing and managing images after they've been captured, using various free software from RAW processing to panorama stitching and much, much more."><span class="category-name">Processing</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/fbulovic" data-user-card="FBulovic" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/fbulovic/25/18287_1.png" class="avatar latest" title="Filip - Original Poster, Most Recent Poster"></a>
+<a href="/u/ggbutcher" data-user-card="ggbutcher" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/ggbutcher/25/7402_1.png" class="avatar" title="Glenn Butcher - Frequent Poster"></a>
+<a href="/u/afre" data-user-card="afre" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/afre/25/7845_1.png" class="avatar" title="afre - Frequent Poster"></a>
+<a href="/u/joan_rake1" data-user-card="Joan_Rake1" class=""><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/j/8c91f0/25.png" class="avatar" title="dumb - Frequent Poster"></a>
+<a href="/u/heckflosse" data-user-card="heckflosse" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/heckflosse/25/518_1.png" class="avatar" title="Ingo Weyrich - Frequent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-med" title="This topic has 35 replies with a very high like to post ratio">
+ <a href="" class="posts-map badge-posts heatmap-med">
+
+ <span class="number">35</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 442 times">442</span></td>
+
+<td class="num age activity" title="First post: Nov 27, 2018 3:26 pm
+Posted: Dec 2, 2018 9:35 am"><a class="post-activity" href="/t/playraw-another-view-from-the-mountaintop/10050/36"><span class="relative-date" data-time="1543764935043" data-format="tiny">2h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10009" id="ember1238" class="topic-list-item category-software-gmic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/style-transfer-soon-in-gmic/10009" class="title raw-link raw-topic-link" data-topic-id="10009">Style transfer soon in G’MIC</a><span class="topic-post-badges"></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/filters" data-tag-name="filters" class="discourse-tag simple">filters</a> <a href="/tags/style-transfer" data-tag-name="style-transfer" class="discourse-tag simple">style-transfer</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software/gmic"><span class="badge-category-parent-bg" style="background-color: #ED207B;"></span><span class="badge-category-bg" style="background-color: #92278F;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Welcome to the G'MIC category! This category is for the GIMP plug-in and stand-alone command-line program, G'MIC - GREYC's Magic for Image Computing"><span class="category-name">G'MIC</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/david_tschumperle" data-user-card="David_Tschumperle" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/david_tschumperle/25/639_1.png" class="avatar latest" title="G'MIC staff - Original Poster, Most Recent Poster"></a>
+<a href="/u/bazza" data-user-card="bazza" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/bazza/25/14979_1.png" class="avatar" title="http://4232.cf - Frequent Poster"></a>
+<a href="/u/afre" data-user-card="afre" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/afre/25/7845_1.png" class="avatar" title="afre - Frequent Poster"></a>
+<a href="/u/lylejk" data-user-card="lylejk" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/lylejk/25/392_1.png" class="avatar" title="Lyle Kroll - Frequent Poster"></a>
+<a href="/u/reptorian" data-user-card="Reptorian" class=""><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/r/c0e974/25.png" class="avatar" title="Reptorian - Frequent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-med" title="This topic has 30 replies with a very high like to post ratio">
+ <a href="" class="posts-map badge-posts heatmap-med">
+
+ <span class="number">30</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 635 times">635</span></td>
+
+<td class="num age activity" title="First post: Nov 25, 2018 2:55 pm
+Posted: Dec 2, 2018 8:34 am"><a class="post-activity" href="/t/style-transfer-soon-in-gmic/10009/31"><span class="relative-date" data-time="1543761266847" data-format="tiny">3h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10088" id="ember1240" class="topic-list-item category-software-rawtherapee ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/rt-5-4-problem-druing-saving-cr2-file-eos-77d/10088" class="title raw-link raw-topic-link" data-topic-id="10088">RT 5.4 problem druing saving cr2 file (EOS 77D)</a><span class="topic-post-badges"></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/rawtherapee" data-tag-name="rawtherapee" class="discourse-tag simple">rawtherapee</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software/rawtherapee"><span class="badge-category-parent-bg" style="background-color: #ED207B;"></span><span class="badge-category-bg" style="background-color: #231F20;"></span><span data-drop-close="true" class="badge-category clear-badge" title="RawTherapee is a powerful, cross-platform program for developing digital photos in raw formats. Please read this short notice before posting. Found a bug? Learn how to write useful bug reports. Please do not file bug reports or feature requests here."><span class="category-name">RawTherapee</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/foksiu" data-user-card="Foksiu" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/foksiu/25/18701_1.png" class="avatar latest" title="Foksiu - Original Poster, Most Recent Poster"></a>
+<a href="/u/morgan_hardwood" data-user-card="Morgan_Hardwood" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/morgan_hardwood/25/16623_1.png" class="avatar" title="Morgan Hardwood - Frequent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 2 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">2</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 97 times">97</span></td>
+
+<td class="num age activity" title="First post: Nov 30, 2018 11:32 am
+Posted: Dec 2, 2018 6:21 am"><a class="post-activity" href="/t/rt-5-4-problem-druing-saving-cr2-file-eos-77d/10088/3"><span class="relative-date" data-time="1543753291166" data-format="tiny">5h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="8676" id="ember1242" class="topic-list-item category-processing ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/play-raw-unusual-low-contrast-at-this-corner-of-the-world/8676" class="title raw-link raw-topic-link" data-topic-id="8676">[Play Raw] unusual low contrast (at this corner of the world)</a><span class="topic-post-badges"></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/play_raw" data-tag-name="play_raw" class="discourse-tag simple">play_raw</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/processing"><span class="badge-category-bg" style="background-color: #F7941D;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Processing and managing images after they've been captured, using various free software from RAW processing to panorama stitching and much, much more."><span class="category-name">Processing</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/gadolf" data-user-card="gadolf" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/gadolf/25/14515_1.png" class="avatar" title="Gustavo Adolfo - Original Poster"></a>
+<a href="/u/heckflosse" data-user-card="heckflosse" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/heckflosse/25/518_1.png" class="avatar" title="Ingo Weyrich - Frequent Poster"></a>
+<a href="/u/afre" data-user-card="afre" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/afre/25/7845_1.png" class="avatar" title="afre - Frequent Poster"></a>
+<a href="/u/chroma_ghost" data-user-card="chroma_ghost" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/chroma_ghost/25/4955_1.png" class="avatar" title="chroma_ghost - Frequent Poster"></a>
+<a href="/u/ajohn" data-user-card="Ajohn" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/ajohn/25/7524_1.png" class="avatar latest" title="John - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-med" title="This topic has 19 replies with a very high like to post ratio">
+ <a href="" class="posts-map badge-posts heatmap-med">
+
+ <span class="number">19</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 698 times">698</span></td>
+
+<td class="num age coldmap-med activity" title="First post: Aug 19, 2018 11:37 am
+Posted: Dec 2, 2018 6:19 am"><a class="post-activity" href="/t/play-raw-unusual-low-contrast-at-this-corner-of-the-world/8676/20"><span class="relative-date" data-time="1543753195586" data-format="tiny">5h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="9755" id="ember1244" class="topic-list-item category-processing ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/playraw-extreme-telephoto-landscape/9755" class="title raw-link raw-topic-link" data-topic-id="9755">[PlayRaw] Extreme telephoto landscape</a><span class="topic-post-badges"></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/play_raw" data-tag-name="play_raw" class="discourse-tag simple">play_raw</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/processing"><span class="badge-category-bg" style="background-color: #F7941D;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Processing and managing images after they've been captured, using various free software from RAW processing to panorama stitching and much, much more."><span class="category-name">Processing</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/waveluke" data-user-card="Waveluke" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/waveluke/25/17912_1.png" class="avatar" title="Pat Cunn - Original Poster"></a>
+<a href="/u/sls141" data-user-card="sls141" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/sls141/25/10048_1.png" class="avatar" title="St.Stephen - Frequent Poster"></a>
+<a href="/u/chroma_ghost" data-user-card="chroma_ghost" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/chroma_ghost/25/4955_1.png" class="avatar" title="chroma_ghost - Frequent Poster"></a>
+<a href="/u/afre" data-user-card="afre" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/afre/25/7845_1.png" class="avatar" title="afre - Frequent Poster"></a>
+<a href="/u/ajohn" data-user-card="Ajohn" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/ajohn/25/7524_1.png" class="avatar latest" title="John - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-low" title="This topic has 33 replies with a high like to post ratio">
+ <a href="" class="posts-map badge-posts heatmap-low">
+
+ <span class="number">33</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 597 times">597</span></td>
+
+<td class="num age coldmap-low activity" title="First post: Nov 9, 2018 7:41 pm
+Posted: Dec 2, 2018 4:59 am"><a class="post-activity" href="/t/playraw-extreme-telephoto-landscape/9755/34"><span class="relative-date" data-time="1543748392220" data-format="tiny">7h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="9730" id="ember1246" class="topic-list-item category-processing ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/playraw-departing-storm/9730" class="title raw-link raw-topic-link" data-topic-id="9730">[PlayRaw] Departing Storm</a><span class="topic-post-badges"></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/play_raw" data-tag-name="play_raw" class="discourse-tag simple">play_raw</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/processing"><span class="badge-category-bg" style="background-color: #F7941D;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Processing and managing images after they've been captured, using various free software from RAW processing to panorama stitching and much, much more."><span class="category-name">Processing</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/elle" data-user-card="Elle" class=""><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/e/ccd318/25.png" class="avatar" title="Elle Stone - Original Poster"></a>
+<a href="/u/thomas_do" data-user-card="Thomas_Do" class=" group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/thomas_do/25/6717_1.png" class="avatar" title="Thomas - Frequent Poster"></a>
+<a href="/u/rawconvert" data-user-card="RawConvert" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/rawconvert/25/1558_1.png" class="avatar" title="Andrew - Frequent Poster"></a>
+<a href="/u/afre" data-user-card="afre" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/afre/25/7845_1.png" class="avatar" title="afre - Frequent Poster"></a>
+<a href="/u/thanatomanic" data-user-card="Thanatomanic" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/thanatomanic/25/16722_1.png" class="avatar latest" title="Roel - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-low" title="This topic has 40 replies with a high like to post ratio">
+ <a href="" class="posts-map badge-posts heatmap-low">
+
+ <span class="number">40</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 789 times">789</span></td>
+
+<td class="num age coldmap-low activity" title="First post: Nov 7, 2018 8:54 am
+Posted: Dec 2, 2018 4:56 am"><a class="post-activity" href="/t/playraw-departing-storm/9730/41"><span class="relative-date" data-time="1543748207210" data-format="tiny">7h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10104" id="ember1248" class="topic-list-item category-software-rawtherapee unseen-topic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/clipped-shadows-bug-dodgy-profile-user-error-help/10104" class="title raw-link raw-topic-link" data-topic-id="10104">Clipped shadows, bug?, dodgy profile?, user error?… help!</a><span class="topic-post-badges">&nbsp;<a href="/t/clipped-shadows-bug-dodgy-profile-user-error-help/10104" class="badge badge-notification new-topic" title="new topic"></a></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/printer-profile" data-tag-name="printer-profile" class="discourse-tag simple">printer-profile</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software/rawtherapee"><span class="badge-category-parent-bg" style="background-color: #ED207B;"></span><span class="badge-category-bg" style="background-color: #231F20;"></span><span data-drop-close="true" class="badge-category clear-badge" title="RawTherapee is a powerful, cross-platform program for developing digital photos in raw formats. Please read this short notice before posting. Found a bug? Learn how to write useful bug reports. Please do not file bug reports or feature requests here."><span class="category-name">RawTherapee</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/rawconvert" data-user-card="RawConvert" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/rawconvert/25/1558_1.png" class="avatar" title="Andrew - Original Poster"></a>
+<a href="/u/claes" data-user-card="Claes" class="latest group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/claes/25/1645_1.png" class="avatar latest" title="Claes - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 1 reply">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">1</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 81 times">81</span></td>
+
+<td class="num age activity" title="First post: Dec 1, 2018 4:53 pm
+Posted: Dec 2, 2018 4:50 am"><a class="post-activity" href="/t/clipped-shadows-bug-dodgy-profile-user-error-help/10104/2"><span class="relative-date" data-time="1543747835119" data-format="tiny">7h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="8444" id="ember1250" class="topic-list-item category-software-rapid-photo-downloader ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/error-after-installation/8444" class="title raw-link raw-topic-link" data-topic-id="8444">Error after installation</a><span class="topic-post-badges"></span>
+ </span>
+
+
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software/rapid-photo-downloader"><span class="badge-category-parent-bg" style="background-color: #ED207B;"></span><span class="badge-category-bg" style="background-color: #AB9364;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Rapid Photo Downloader for Linux is written by a photographer for professional and amateur photographers. Its goal is to be the best photo and video downloader for the Linux Desktop. It is free software, released under the GNU GPL license."><span class="category-name">Rapid Photo Downloader</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/ghayne" data-user-card="ghayne" class=""><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/g/49beb7/25.png" class="avatar" title="Garry Hayne - Original Poster"></a>
+<a href="/u/jafix" data-user-card="jafix" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/jafix/25/15152_1.png" class="avatar" title="Jan - Frequent Poster"></a>
+<a href="/u/billznn" data-user-card="billznn" class=" group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/billznn/25/13634_1.png" class="avatar" title="Massimo Bill - Frequent Poster"></a>
+<a href="/u/paperdigits" data-user-card="paperdigits" class=" group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/paperdigits/25/16617_1.png" class="avatar" title="Mica - Frequent Poster"></a>
+<a href="/u/jodoe" data-user-card="JoDoe" class="latest"><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/j/919ad9/25.png" class="avatar latest" title="Jens - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 25 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">25</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 474 times">474</span></td>
+
+<td class="num age coldmap-med activity" title="First post: Jul 28, 2018 7:46 am
+Posted: Dec 2, 2018 1:37 am"><a class="post-activity" href="/t/error-after-installation/8444/26"><span class="relative-date" data-time="1543736274824" data-format="tiny">10h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="9812" id="ember1252" class="topic-list-item category-processing ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/playraw-processing-junocam-images-of-jupiter/9812" class="title raw-link raw-topic-link" data-topic-id="9812">[PlayRaw] Processing Junocam images of Jupiter</a><span class="topic-post-badges"></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/play_raw" data-tag-name="play_raw" class="discourse-tag simple">play_raw</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/processing"><span class="badge-category-bg" style="background-color: #F7941D;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Processing and managing images after they've been captured, using various free software from RAW processing to panorama stitching and much, much more."><span class="category-name">Processing</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/jimplaxco" data-user-card="JimPlaxco" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/jimplaxco/25/17843_1.png" class="avatar" title="jimplaxco.com and artsnova.com - Original Poster"></a>
+<a href="/u/age" data-user-card="age" class=""><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/a/ecb155/25.png" class="avatar" title="age - Frequent Poster"></a>
+<a href="/u/thomas_do" data-user-card="Thomas_Do" class=" group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/thomas_do/25/6717_1.png" class="avatar" title="Thomas - Frequent Poster"></a>
+<a href="/u/tobias" data-user-card="Tobias" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/tobias/25/7347_1.png" class="avatar" title="Tobias - Frequent Poster"></a>
+<a href="/u/afre" data-user-card="afre" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/afre/25/7845_1.png" class="avatar latest" title="afre - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-med" title="This topic has 17 replies with a very high like to post ratio">
+ <a href="" class="posts-map badge-posts heatmap-med">
+
+ <span class="number">17</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 362 times">362</span></td>
+
+<td class="num age coldmap-low activity" title="First post: Nov 13, 2018 4:31 pm
+Posted: Dec 2, 2018 12:28 am"><a class="post-activity" href="/t/playraw-processing-junocam-images-of-jupiter/9812/18"><span class="relative-date" data-time="1543732080901" data-format="tiny">11h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10080" id="ember1254" class="topic-list-item category-software-rapid-photo-downloader ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/importing-existing-directory-structure/10080" class="title raw-link raw-topic-link" data-topic-id="10080">“importing” existing directory structure</a><span class="topic-post-badges"></span>
+ </span>
+
+
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software/rapid-photo-downloader"><span class="badge-category-parent-bg" style="background-color: #ED207B;"></span><span class="badge-category-bg" style="background-color: #AB9364;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Rapid Photo Downloader for Linux is written by a photographer for professional and amateur photographers. Its goal is to be the best photo and video downloader for the Linux Desktop. It is free software, released under the GNU GPL license."><span class="category-name">Rapid Photo Downloader</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/darix" data-user-card="darix" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/darix/25/14887_1.png" class="avatar" title="darix - Original Poster"></a>
+<a href="/u/nosle" data-user-card="nosle" class=""><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/n/bbe5ce/25.png" class="avatar" title="nosle - Frequent Poster"></a>
+<a href="/u/damonlynch" data-user-card="damonlynch" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/damonlynch/25/14925_1.png" class="avatar latest" title="Damon Lynch - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 4 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">4</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 91 times">91</span></td>
+
+<td class="num age activity" title="First post: Nov 29, 2018 5:28 pm
+Posted: Dec 1, 2018 7:52 pm"><a class="post-activity" href="/t/importing-existing-directory-structure/10080/5"><span class="relative-date" data-time="1543715522458" data-format="tiny">16h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10082" id="ember1256" class="topic-list-item category-software-gmic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/gmic-and-scale-dcci2x-output-to-tif-issue/10082" class="title raw-link raw-topic-link" data-topic-id="10082">G’Mic and scale_dcci2x output to TIF issue</a><span class="topic-post-badges"></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/tif" data-tag-name="tif" class="discourse-tag simple">tif</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software/gmic"><span class="badge-category-parent-bg" style="background-color: #ED207B;"></span><span class="badge-category-bg" style="background-color: #92278F;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Welcome to the G'MIC category! This category is for the GIMP plug-in and stand-alone command-line program, G'MIC - GREYC's Magic for Image Computing"><span class="category-name">G'MIC</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/jimplaxco" data-user-card="JimPlaxco" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/jimplaxco/25/17843_1.png" class="avatar" title="jimplaxco.com and artsnova.com - Original Poster"></a>
+<a href="/u/afre" data-user-card="afre" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/afre/25/7845_1.png" class="avatar" title="afre - Frequent Poster"></a>
+<a href="/u/david_tschumperle" data-user-card="David_Tschumperle" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/david_tschumperle/25/639_1.png" class="avatar" title="G'MIC staff - Frequent Poster"></a>
+<a href="/u/ggbutcher" data-user-card="ggbutcher" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/ggbutcher/25/7402_1.png" class="avatar latest" title="Glenn Butcher - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 11 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">11</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 121 times">121</span></td>
+
+<td class="num age activity" title="First post: Nov 29, 2018 9:28 pm
+Posted: Dec 1, 2018 7:25 pm"><a class="post-activity" href="/t/gmic-and-scale-dcci2x-output-to-tif-issue/10082/12"><span class="relative-date" data-time="1543713929868" data-format="tiny">16h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10095" id="ember1258" class="topic-list-item category-software-rawtherapee unseen-topic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/bug-exporting-tif-floating-point-makes-artifacts/10095" class="title raw-link raw-topic-link" data-topic-id="10095">[bug] Exporting tif floating point makes artifacts</a><span class="topic-post-badges">&nbsp;<a href="/t/bug-exporting-tif-floating-point-makes-artifacts/10095" class="badge badge-notification new-topic" title="new topic"></a></span>
+ </span>
+
+
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software/rawtherapee"><span class="badge-category-parent-bg" style="background-color: #ED207B;"></span><span class="badge-category-bg" style="background-color: #231F20;"></span><span data-drop-close="true" class="badge-category clear-badge" title="RawTherapee is a powerful, cross-platform program for developing digital photos in raw formats. Please read this short notice before posting. Found a bug? Learn how to write useful bug reports. Please do not file bug reports or feature requests here."><span class="category-name">RawTherapee</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/age" data-user-card="age" class="latest"><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/a/ecb155/25.png" class="avatar latest" title="age - Original Poster, Most Recent Poster"></a>
+<a href="/u/morgan_hardwood" data-user-card="Morgan_Hardwood" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/morgan_hardwood/25/16623_1.png" class="avatar" title="Morgan Hardwood - Frequent Poster"></a>
+<a href="/u/paperdigits" data-user-card="paperdigits" class=" group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/paperdigits/25/16617_1.png" class="avatar" title="Mica - Frequent Poster"></a>
+<a href="/u/agriggio" data-user-card="agriggio" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/agriggio/25/7810_1.png" class="avatar" title="Alberto - Frequent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 7 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">7</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 119 times">119</span></td>
+
+<td class="num age activity" title="First post: Dec 1, 2018 8:46 am
+Posted: Dec 1, 2018 7:21 pm"><a class="post-activity" href="/t/bug-exporting-tif-floating-point-makes-artifacts/10095/8"><span class="relative-date" data-time="1543713663608" data-format="tiny">16h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10089" id="ember1260" class="topic-list-item category-software-gmic unseen-topic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/gmic-commandline/10089" class="title raw-link raw-topic-link" data-topic-id="10089">g’mic commandline</a><span class="topic-post-badges">&nbsp;<a href="/t/gmic-commandline/10089" class="badge badge-notification new-topic" title="new topic"></a></span>
+ </span>
+
+
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software/gmic"><span class="badge-category-parent-bg" style="background-color: #ED207B;"></span><span class="badge-category-bg" style="background-color: #92278F;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Welcome to the G'MIC category! This category is for the GIMP plug-in and stand-alone command-line program, G'MIC - GREYC's Magic for Image Computing"><span class="category-name">G'MIC</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/bazza" data-user-card="bazza" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/bazza/25/14979_1.png" class="avatar latest" title="http://4232.cf - Original Poster, Most Recent Poster"></a>
+<a href="/u/david_tschumperle" data-user-card="David_Tschumperle" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/david_tschumperle/25/639_1.png" class="avatar" title="G'MIC staff - Frequent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 3 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">3</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 87 times">87</span></td>
+
+<td class="num age activity" title="First post: Nov 30, 2018 11:54 am
+Posted: Dec 1, 2018 6:49 pm"><a class="post-activity" href="/t/gmic-commandline/10089/4"><span class="relative-date" data-time="1543711763679" data-format="tiny">17h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10102" id="ember1261" class="topic-list-item category-software unseen-topic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/how-do-rts-wavelet-sharpening-algorithms-work/10102" class="title raw-link raw-topic-link" data-topic-id="10102">How do RT’s wavelet sharpening algorithms work?</a><span class="topic-post-badges">&nbsp;<a href="/t/how-do-rts-wavelet-sharpening-algorithms-work/10102" class="badge badge-notification new-topic" title="new topic"></a></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/rawtherapee" data-tag-name="rawtherapee" class="discourse-tag simple">rawtherapee</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software"><span class="badge-category-bg" style="background-color: #ED207B;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Discussions about software in general, not necessarily tied to a process or workflow that would fit better in the Processing category."><span class="category-name">Software</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/nik" data-user-card="nik" class=""><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/n/6de8d8/25.png" class="avatar" title="nik - Original Poster"></a>
+<a href="/u/rawconvert" data-user-card="RawConvert" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/rawconvert/25/1558_1.png" class="avatar" title="Andrew - Frequent Poster"></a>
+<a href="/u/afre" data-user-card="afre" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/afre/25/7845_1.png" class="avatar latest" title="afre - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 2 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">2</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 67 times">67</span></td>
+
+<td class="num age activity" title="First post: Dec 1, 2018 3:44 pm
+Posted: Dec 1, 2018 5:29 pm"><a class="post-activity" href="/t/how-do-rts-wavelet-sharpening-algorithms-work/10102/3"><span class="relative-date" data-time="1543706961131" data-format="tiny">18h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10086" id="ember1263" class="topic-list-item category-processing ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/how-best-to-use-a-wavelet-decomposition-to-sharpen/10086" class="title raw-link raw-topic-link" data-topic-id="10086">How best to use a wavelet decomposition to sharpen?</a><span class="topic-post-badges"></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/krita" data-tag-name="krita" class="discourse-tag simple">krita</a> <a href="/tags/gimp" data-tag-name="gimp" class="discourse-tag simple">gimp</a> <a href="/tags/rawtherapee" data-tag-name="rawtherapee" class="discourse-tag simple">rawtherapee</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/processing"><span class="badge-category-bg" style="background-color: #F7941D;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Processing and managing images after they've been captured, using various free software from RAW processing to panorama stitching and much, much more."><span class="category-name">Processing</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/nik" data-user-card="nik" class="latest"><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/n/6de8d8/25.png" class="avatar latest" title="nik - Original Poster, Most Recent Poster"></a>
+<a href="/u/ggbutcher" data-user-card="ggbutcher" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/ggbutcher/25/7402_1.png" class="avatar" title="Glenn Butcher - Frequent Poster"></a>
+<a href="/u/paperdigits" data-user-card="paperdigits" class=" group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/paperdigits/25/16617_1.png" class="avatar" title="Mica - Frequent Poster"></a>
+<a href="/u/afre" data-user-card="afre" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/afre/25/7845_1.png" class="avatar" title="afre - Frequent Poster"></a>
+<a href="/u/claes" data-user-card="Claes" class=" group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/claes/25/1645_1.png" class="avatar" title="Claes - Frequent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 14 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">14</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 188 times">188</span></td>
+
+<td class="num age activity" title="First post: Nov 30, 2018 5:20 am
+Posted: Dec 1, 2018 3:34 pm"><a class="post-activity" href="/t/how-best-to-use-a-wavelet-decomposition-to-sharpen/10086/15"><span class="relative-date" data-time="1543700044203" data-format="tiny">20h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10101" id="ember1264" class="topic-list-item category-software unseen-topic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/imgur-experimental-plugin-for-phototeleport-testers-needed/10101" class="title raw-link raw-topic-link" data-topic-id="10101">Imgur: experimental plugin for PhotoTeleport - testers needed <img src="/images/emoji/apple/slight_smile.png?v=6" title="slight_smile" alt="slight_smile" class="emoji"></a><span class="topic-post-badges">&nbsp;<a href="/t/imgur-experimental-plugin-for-phototeleport-testers-needed/10101" class="badge badge-notification new-topic" title="new topic"></a></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/linux" data-tag-name="linux" class="discourse-tag simple">linux</a> <a href="/tags/phototeleport" data-tag-name="phototeleport" class="discourse-tag simple">phototeleport</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software"><span class="badge-category-bg" style="background-color: #ED207B;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Discussions about software in general, not necessarily tied to a process or workflow that would fit better in the Processing category."><span class="category-name">Software</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/mardy" data-user-card="mardy" class="latest single"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/mardy/25/14450_1.png" class="avatar latest single" title="Alberto Mardegan - Original Poster, Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 0 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">0</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 31 times">31</span></td>
+
+<td class="num age activity" title="First post: Dec 1, 2018 2:57 pm
+Posted: Dec 1, 2018 2:57 pm"><a class="post-activity" href="/t/imgur-experimental-plugin-for-phototeleport-testers-needed/10101/1"><span class="relative-date" data-time="1543697821724" data-format="tiny">21h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10100" id="ember1266" class="topic-list-item category-processing unseen-topic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/experiments-with-local-contrast-enhancement/10100" class="title raw-link raw-topic-link" data-topic-id="10100">Experiments with local contrast enhancement</a><span class="topic-post-badges">&nbsp;<a href="/t/experiments-with-local-contrast-enhancement/10100" class="badge badge-notification new-topic" title="new topic"></a></span>
+ </span>
+
+
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/processing"><span class="badge-category-bg" style="background-color: #F7941D;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Processing and managing images after they've been captured, using various free software from RAW processing to panorama stitching and much, much more."><span class="category-name">Processing</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/carmelo_drraw" data-user-card="Carmelo_DrRaw" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/carmelo_drraw/25/177_1.png" class="avatar" title="Carmelo Dr Raw - Original Poster"></a>
+<a href="/u/claes" data-user-card="Claes" class=" group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/claes/25/1645_1.png" class="avatar" title="Claes - Frequent Poster"></a>
+<a href="/u/age" data-user-card="age" class=""><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/a/ecb155/25.png" class="avatar" title="age - Frequent Poster"></a>
+<a href="/u/garagecoder" data-user-card="garagecoder" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/garagecoder/25/16676_1.png" class="avatar" title="garagecoder - Frequent Poster"></a>
+<a href="/u/afre" data-user-card="afre" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/afre/25/7845_1.png" class="avatar latest" title="afre - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 8 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">8</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 99 times">99</span></td>
+
+<td class="num age activity" title="First post: Dec 1, 2018 12:03 pm
+Posted: Dec 1, 2018 2:09 pm"><a class="post-activity" href="/t/experiments-with-local-contrast-enhancement/10100/9"><span class="relative-date" data-time="1543694977437" data-format="tiny">21h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="9982" id="ember1268" class="topic-list-item category-software-gmic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/using-gmic-with-limited-resources/9982" class="title raw-link raw-topic-link" data-topic-id="9982">Using G’MIC with limited resources</a><span class="topic-post-badges"></span>
+ </span>
+
+
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software/gmic"><span class="badge-category-parent-bg" style="background-color: #ED207B;"></span><span class="badge-category-bg" style="background-color: #92278F;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Welcome to the G'MIC category! This category is for the GIMP plug-in and stand-alone command-line program, G'MIC - GREYC's Magic for Image Computing"><span class="category-name">G'MIC</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/afre" data-user-card="afre" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/afre/25/7845_1.png" class="avatar latest" title="afre - Original Poster, Most Recent Poster"></a>
+<a href="/u/david_tschumperle" data-user-card="David_Tschumperle" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/david_tschumperle/25/639_1.png" class="avatar" title="G'MIC staff - Frequent Poster"></a>
+<a href="/u/garagecoder" data-user-card="garagecoder" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/garagecoder/25/16676_1.png" class="avatar" title="garagecoder - Frequent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 9 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">9</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 180 times">180</span></td>
+
+<td class="num age activity" title="First post: Nov 23, 2018 2:59 pm
+Posted: Dec 1, 2018 1:13 pm"><a class="post-activity" href="/t/using-gmic-with-limited-resources/9982/10"><span class="relative-date" data-time="1543691620786" data-format="tiny">22h</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10099" id="ember1270" class="topic-list-item category-software-natron unseen-topic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/natron-tutorial-using-stmap-for-fake-reflection-using-blender-cycle-uv-pass/10099" class="title raw-link raw-topic-link" data-topic-id="10099">Natron Tutorial Using STmap For Fake Reflection Using Blender Cycle UV pass</a><span class="topic-post-badges">&nbsp;<a href="/t/natron-tutorial-using-stmap-for-fake-reflection-using-blender-cycle-uv-pass/10099" class="badge badge-notification new-topic" title="new topic"></a></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/tutorial" data-tag-name="tutorial" class="discourse-tag simple">tutorial</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software/natron"><span class="badge-category-parent-bg" style="background-color: #ED207B;"></span><span class="badge-category-bg" style="background-color: #B148FF;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Natron - The cross-platform open-source compositing software.
+Natron offers robust and efficient tools for compositors to get their job done fast with high quality results."><span class="category-name">Natron</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/cgvirus" data-user-card="cgvirus" class="latest single"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/cgvirus/25/13545_1.png" class="avatar latest single" title="cgvirus - Original Poster, Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 0 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">0</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 27 times">27</span></td>
+
+<td class="num age activity" title="First post: Dec 1, 2018 11:56 am
+Posted: Dec 1, 2018 11:56 am"><a class="post-activity" href="/t/natron-tutorial-using-stmap-for-fake-reflection-using-blender-cycle-uv-pass/10099/1"><span class="relative-date" data-time="1543686963764" data-format="tiny">1d</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="9992" id="ember1272" class="topic-list-item category-software-rawtherapee ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/when-is-the-crop-tool-going-to-get-fixed/9992" class="title raw-link raw-topic-link" data-topic-id="9992">When is the crop tool going to get fixed?</a><span class="topic-post-badges"></span>
+ </span>
+
+
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software/rawtherapee"><span class="badge-category-parent-bg" style="background-color: #ED207B;"></span><span class="badge-category-bg" style="background-color: #231F20;"></span><span data-drop-close="true" class="badge-category clear-badge" title="RawTherapee is a powerful, cross-platform program for developing digital photos in raw formats. Please read this short notice before posting. Found a bug? Learn how to write useful bug reports. Please do not file bug reports or feature requests here."><span class="category-name">RawTherapee</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/ajax" data-user-card="ajax" class="latest"><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/a/a87d85/25.png" class="avatar latest" title="David ... - Original Poster, Most Recent Poster"></a>
+<a href="/u/gaaned92" data-user-card="gaaned92" class=""><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/g/57b2e6/25.png" class="avatar" title="gaaned92 - Frequent Poster"></a>
+<a href="/u/rick" data-user-card="Rick" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/rick/25/17716_1.png" class="avatar" title="Rick Scheibner - Frequent Poster"></a>
+<a href="/u/morgan_hardwood" data-user-card="Morgan_Hardwood" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/morgan_hardwood/25/16623_1.png" class="avatar" title="Morgan Hardwood - Frequent Poster"></a>
+<a href="/u/agriggio" data-user-card="agriggio" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/agriggio/25/7810_1.png" class="avatar" title="Alberto - Frequent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 35 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">35</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 783 times">783</span></td>
+
+<td class="num age activity" title="First post: Nov 24, 2018 4:28 pm
+Posted: Dec 1, 2018 9:20 am"><a class="post-activity" href="/t/when-is-the-crop-tool-going-to-get-fixed/9992/36"><span class="relative-date" data-time="1543677656195" data-format="tiny">1d</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="9912" id="ember1274" class="topic-list-item category-software-natron ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/crowdfunding-natron-3d-workspace/9912" class="title raw-link raw-topic-link" data-topic-id="9912">Crowdfunding Natron 3d Workspace</a><span class="topic-post-badges"></span>
+ </span>
+
+
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software/natron"><span class="badge-category-parent-bg" style="background-color: #ED207B;"></span><span class="badge-category-bg" style="background-color: #B148FF;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Natron - The cross-platform open-source compositing software.
+Natron offers robust and efficient tools for compositors to get their job done fast with high quality results."><span class="category-name">Natron</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/magdesign" data-user-card="magdesign" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/magdesign/25/18334_1.png" class="avatar latest" title="magdesign - Original Poster, Most Recent Poster"></a>
+<a href="/u/joelh_nl" data-user-card="JoelH_nl" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/joelh_nl/25/18475_1.png" class="avatar" title="JoelH_nl - Frequent Poster"></a>
+<a href="/u/paperdigits" data-user-card="paperdigits" class=" group-Supporter"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/paperdigits/25/16617_1.png" class="avatar" title="Mica - Frequent Poster"></a>
+<a href="/u/devernay" data-user-card="devernay" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/devernay/25/15296_1.png" class="avatar" title="Frédéric Devernay - Frequent Poster"></a>
+<a href="/u/hover" data-user-card="hover" class=""><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/h/ecc23a/25.png" class="avatar" title="hover - Frequent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-low" title="This topic has 33 replies with a high like to post ratio">
+ <a href="" class="posts-map badge-posts heatmap-low">
+
+ <span class="number">33</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views heatmap-med"><span class="number" title="this topic has been viewed 2,064 times">2.1k</span></td>
+
+<td class="num age activity" title="First post: Nov 19, 2018 10:30 am
+Posted: Dec 1, 2018 9:18 am"><a class="post-activity" href="/t/crowdfunding-natron-3d-workspace/9912/34"><span class="relative-date" data-time="1543677507166" data-format="tiny">1d</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10096" id="ember1276" class="topic-list-item category-software-darktable unseen-topic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/how-the-auto-exposure-works/10096" class="title raw-link raw-topic-link" data-topic-id="10096">How the auto exposure works?</a><span class="topic-post-badges">&nbsp;<a href="/t/how-the-auto-exposure-works/10096" class="badge badge-notification new-topic" title="new topic"></a></span>
+ </span>
+
+
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software/darktable"><span class="badge-category-parent-bg" style="background-color: #ED207B;"></span><span class="badge-category-bg" style="background-color: #0E76BD;"></span><span data-drop-close="true" class="badge-category clear-badge" title="darktable is an open source photography workflow application and raw developer. A virtual lighttable and darkroom for photographers. It manages your digital negatives in a database, lets you view them through a zoomable lighttable and enables you to develop raw images and enhance them."><span class="category-name">darktable</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/nongrata23" data-user-card="nongrata23" class="latest single"><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/n/ccd318/25.png" class="avatar latest single" title="Sebastian M - Original Poster, Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 0 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">0</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 76 times">76</span></td>
+
+<td class="num age activity" title="First post: Dec 1, 2018 9:10 am
+Posted: Dec 1, 2018 9:10 am"><a class="post-activity" href="/t/how-the-auto-exposure-works/10096/1"><span class="relative-date" data-time="1543677043609" data-format="tiny">1d</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="10092" id="ember1278" class="topic-list-item category-software-natron unseen-topic ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/png-imports-but-renders-with-a-solid-white-outline/10092" class="title raw-link raw-topic-link" data-topic-id="10092">PNG Imports but Renders with a Solid White Outline???</a><span class="topic-post-badges">&nbsp;<a href="/t/png-imports-but-renders-with-a-solid-white-outline/10092" class="badge badge-notification new-topic" title="new topic"></a></span>
+ </span>
+
+
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software/natron"><span class="badge-category-parent-bg" style="background-color: #ED207B;"></span><span class="badge-category-bg" style="background-color: #B148FF;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Natron - The cross-platform open-source compositing software.
+Natron offers robust and efficient tools for compositors to get their job done fast with high quality results."><span class="category-name">Natron</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/jrewick" data-user-card="JREwick" class=""><img alt="" width="25" height="25" src="/letter_avatar_proxy/v2/letter/j/a88e4f/25.png" class="avatar" title="James Elswick - Original Poster"></a>
+<a href="/u/magdesign" data-user-card="magdesign" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/magdesign/25/18334_1.png" class="avatar latest" title="magdesign - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 2 replies">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">2</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 48 times">48</span></td>
+
+<td class="num age activity" title="First post: Nov 30, 2018 3:03 pm
+Posted: Dec 1, 2018 6:56 am"><a class="post-activity" href="/t/png-imports-but-renders-with-a-solid-white-outline/10092/3"><span class="relative-date" data-time="1543668985494" data-format="tiny">1d</span></a></td>
+
+</tr>
+
+ <tr data-topic-id="6767" id="ember1280" class="topic-list-item category-software ember-view">
+<td class="main-link clearfix" colspan="1">
+ <span class="link-top-line"><a href="/t/hugin-2018-0-0-released/6767" class="title raw-link raw-topic-link" data-topic-id="6767">Hugin-2018.0.0 released</a><span class="topic-post-badges"></span>
+ </span>
+
+ <div class="discourse-tags"><a href="/tags/hugin" data-tag-name="hugin" class="discourse-tag simple">hugin</a> </div>
+
+</td>
+
+ <td class="category"><a class="badge-wrapper bullet" href="/c/software"><span class="badge-category-bg" style="background-color: #ED207B;"></span><span data-drop-close="true" class="badge-category clear-badge" title="Discussions about software in general, not necessarily tied to a process or workflow that would fit better in the Processing category."><span class="category-name">Software</span></span></a></td>
+
+
+ <td class="posters">
+<a href="/u/tobias" data-user-card="Tobias" class=""><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/tobias/25/7347_1.png" class="avatar" title="Tobias - Original Poster"></a>
+<a href="/u/guyru" data-user-card="guyru" class="latest"><img alt="" width="25" height="25" src="/user_avatar/discuss.pixls.us/guyru/25/17447_1.png" class="avatar latest" title="guyru - Most Recent Poster"></a>
+</td>
+
+
+<td class="num posts-map posts heatmap-" title="This topic has 1 reply">
+ <a href="" class="posts-map badge-posts heatmap-">
+
+ <span class="number">1</span>
+ </a>
+</td>
+
+
+
+
+
+<td class="num views "><span class="number" title="this topic has been viewed 409 times">409</span></td>
+
+<td class="num age coldmap-high activity" title="First post: Feb 19, 2018 6:25 am
+Posted: Dec 1, 2018 5:27 am"><a class="post-activity" href="/t/hugin-2018-0-0-released/6767/2"><span class="relative-date" data-time="1543663679116" data-format="tiny">1d</span></a></td>
+
+</tr>
+
+</tbody>
+</table>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{% block extra %}
+{% if login_form %}
+<div class="overlay-content" id="js-overlay-content" style="display: none;">
+ {% include 'lib/login.html' with form=login_form %}
+</div>
+{% endif %}
+{%endblock%}
+{% block jsdomready %}
+{% if login_form %}
+ // Select your overlay trigger
+ var trigger = document.querySelector('#overlay-trigger');
+ trigger.addEventListener('click', function(e){
+ e.preventDefault();
+ novicell.overlay.create({
+ 'selector': trigger.getAttribute('data-element'),
+ 'class': 'selector-overlay',
+ });
+ });
+{% endif %}
+{%endblock%}