Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
4answers
4k views

Reddit-style nested/threaded/indented comments for Rails?

I'm wondering if someone has already built a system for threaded comments (for lack of a better term) in Rails or if I need to build it myself. In case it's not clear, what I'm referring to is a ...
4
votes
6answers
831 views

Need advice on html/css structure for indented, threaded comments

I want to have a comments section in my app that looks like this: response1 response1a response1b response1b1 response2 response2a response2b response2c response2c1 response2c1a ...
3
votes
1answer
555 views

Django threadedcomments and voting

I'm using django-threadedcomments and django-voting in my project to achieve a Reddit-like comments voting system. I've set everything up correctly and I'm able to successfully record votes for each ...
3
votes
2answers
346 views

What is the best practice for fetching a tree of nodes from database for further rendering?

Let's say we have a table with user comments. First-level comments have a reference to an article they are attached to. Deeper-level comments do not have this reference by design but they have a ...
3
votes
3answers
973 views

Most efficient data structure to represent threaded comments in Java?

I want to represent threaded comments in Java. This would look similar to the way comments are threaded on reddit.com hello hello hello hello hello hello hello As in the ...
2
votes
1answer
143 views

Recursive blocks in Scala Play Framework templates

I'm writing a template for a blog post, which has threaded comments. A natural way of writing a template for threaded comments it use a recursive way for constructing the Html. Something like this: ...
1
vote
2answers
267 views

Django threadedcomments - how do I reply to a comment?

I am trying to integrate threadedcommetns to my Django app and having trouble in uderstanding how it works. Here is how my template looks (based on example from tutorial): <h3>Comments on This ...
1
vote
1answer
183 views

Threaded comments on web socket update

I'm using web sockets to update a list of comments. I'm nesting ul and li tags to produce the threaded style (explained here). The problem is that when a new message comes in, I don't want to ...
1
vote
2answers
799 views

Django threaded comments - one level only

I'm looking at implementing django-threadedcomments and am wondering if it is able to restrict threading to replies made by a moderator/owner, similar to how Yelp handles user reviews and business ...
1
vote
3answers
387 views

Threaded / Nested comments

Anyone know how to create a threaded / nested comment system? I would like to learn how to do this for my blog that I am working on. I simply can't find anything useful out there. Some one surely must ...
1
vote
1answer
172 views

Django built-in signals problem: error when using post_save

I'm building an app that notifies user when new ThreadedComments appear. For this I'm using post_save signal. Here's my models.py: from django.db import models from django.contrib.auth.models import ...
1
vote
1answer
231 views

JavaScript code to handle comment folding (similar to Reddit's)?

I really like the way Reddit's comment system works - particulary the ability to smoothly fold/unfold a tree of comments. Is there some standard JavaScript code/library that does this? Or did Reddit ...
1
vote
5answers
906 views

Is there native support in Rails or Ruby for representing threaded comments

I want to have a comments section in my app that looks like this: response1 response1a response1b response1b1 response2 response2a response2b response2c response2c1 response2c1a ...
1
vote
2answers
1k views

How to build an ASP.NET TreeView From Scratch…?

I am trying to build a nested/threaded comment system in ASP.NET. I don't know how the PHP guys do it. Its much harder than first imagined. I am trying my damnedest get Hierarchical data to output ...
1
vote
5answers
1k views

How to build a threaded Comment System in C#? Help

Im building a Threaded Comment System for a website of mine and I ran into a problem... I have a list PULLED FROM A DATABASE that has a ID field and a Parent ID Field. The parent ID field can be ...
0
votes
0answers
46 views

Patterns for presenting Threaded Comments [closed]

I'm looking at the common issue with comment threading and paging: How many items are you showing? Do you stick hard to the items-per-page number? Are children allowed to fall over this number? Do ...
0
votes
1answer
68 views

Javascript issue in Django plugin

I'm going to use django-threadedcomments library at my Django project. https://github.com/HonzaKral/django-threadedcomments The tutorial gives sample code, including Javascript to reply to comments ...
0
votes
0answers
86 views

CakePHP Threaded Pagination Limit

I was wondering if there was a cake way to limit a threaded pagination to include ALL children, so basically limiting the parents only. The following is used to create the threaded pagination, with ...
0
votes
0answers
76 views

django paginate threadedcomments [closed]

Has anyone come up with a way to paginate the comments in the threadedcomments app? I am trying to use django-pagination in the following way: {% load pagination_tags %} {% get_comment_list for ...
0
votes
2answers
106 views

Django - Sorting QuerySet of threaded comments

I am using django-threadedcomments, however the question also applies generally to sorting a QuerySet. The comment objects in the QuerySet have two important fields, tree_path and submit_date. ...
0
votes
1answer
144 views

Trying to get threaded/nested comments in PHP

I have data in a MySQL table, (called info), like this: _______________________ id | text | parent | 1 | a | NULL | 2 | b | 1 | 3 | c | 1 | 4 | d | 2 ...
0
votes
0answers
97 views

Strange behavior with `comment_reply_link()` (WP)

I'm (again) coding a normal wp-theme. However, I can't add the reply-link to comments. I've done this many times before and as far as I can recall, I haven't had this issue yet. I'm placing the ...
0
votes
2answers
150 views

How to preserve order of children to appear after their parents

Expected order by replyid: 55, 57, 58, 59, 60, 56 -- So that the entire 1st parent reply and all its children appear BEFORE the 2nd parent reply The following SQL query returns the wrong order of ...
0
votes
1answer
343 views

Can anyone help me with php threaded comments?

I found a pre-written script of a class to create threaded comments, but after trying to implement it, nothing prints. The array si holding data, and I have confirmed that, but, nothing will print ...
0
votes
1answer
262 views

Can Someone hello explain this class for a php threaded comments system?

I am trying to implement a threaded comment system using php, and i found something already written, but i can not exactly see how to use it, i am not familiar at all with classes, so i was wondering ...
0
votes
3answers
115 views

Wordpress Plugin: Nested and Pagination

I have a blog that gets a number of comments each day. I am looking for a plugin which supports nested comments as well as pagination - the default supplied by wordpress just says "Newer Comments" and ...
0
votes
2answers
360 views

PHP: Quick threaded comments question

I'm basically trying to code a simple threaded comments system where users can comment on other user's comment. It'll allow only one level of comments. The comments table in the database is something ...
0
votes
1answer
573 views

asp.net threaded comments?

I am working on creating a blog in asp.net 4.0 and sql server 2008 and would like to learn how to create a threaded comments system. By threaded I mean each comment would have a reply link and the ...
0
votes
2answers
1k views

Scalable Solution For Threaded Comments

I'm not sure how to create a threaded comments system in PHP and MySQL which can handle hundreds of comments at a time. Something like this is the only thing I can come up with $query = ...
0
votes
2answers
767 views

CakePHP find('threaded') pagination

I'm kind of new to cakePHP and get to the moment where i have to do pagination. The comments table has a parent_id and the threaded query is working correctly so now, I want to paginate the results. ...
0
votes
1answer
135 views

Are there any website comments systems available (like phpbb for forums)?

I'm looking to add comments to my website. I've seen some great frameworks for forums (like phpbb) and for blogs (like wordpress). Is there anything like this for comment systems?
0
votes
3answers
574 views

How to build Threaded comments with a 1 or 2 queries?

Can anyone suggest a creative database structure + fetching algorithm for a threaded comments system, that would output x amount of threads per page (with unlimited replies for each)? I can run a ...
0
votes
2answers
331 views

Modified preorder traversal for comment system

I'm trying to make a comments system for a blog. I have the modified preorder traversal system working (used this guide: http://dev.mysql.com/tech-resources/articles/hierarchical-data.html). I have a ...