Postponed (maintainer needs more info)
Project:
Flatcomments
Version:
6.x-2.0
Component:
Miscellaneous
Priority:
Minor
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
8 Nov 2009 at 23:36 UTC
Updated:
10 Oct 2024 at 17:26 UTC
Jump to comment: Most recent
Comments
Comment #1
dragonwize commentedThis can already by done through the theme layer. The indention of comments is actually created by design, usually CSS. All you have to do is theme all comments under the first layer the same way.
Comment #2
jcisio commentedI think the OP meant differently. CSS changes the indentation, but can't change comment order.
Comment #3
dragonwize commentedThat would be a nice option. Though I am not entirely sure it belongs in this module. I will have to think about that. Feel free to express why you think it should or should not be in the flatcomments module.
Comment #4
jcisio commentedThe purpose is to allow maximum N+1 levels of comments. With this module, N=0. However I don't see other module does that, and there is a need for N > 0.
The principe, when you reply to a comment, it check if the parent comment has a level > N, it will descend to level N and change the parent of the new-submitted comment to that comment. Let's take the example given by the OP, when we add cid7, if N=0 (current), its parent will be set to NULL, if N=1, its parent will be set to cid1, if N>=2, its parent will be kept unchanged (= cid3).
Flatcomments actually set pid=NULL to limit max level = 1, but it can do that in a more general way. Moreover, it requires just a small modification.
Comment #5
dragonwize commentedI understand what you are asking for and agree the feature would be great.
My disagreement is that extra options to for "threaded" comment configuration is not really in the realm of a module that is named "flatcomments" and gives extra options for "flat" comment configuration.
Comment #6
jcisio commentedWhy we should implement this feature in the module?
- There is a real need: for forum-like discussion we need flat comment, ok. But for blog, we might need N-level threaded comment.
- It's easy and just a small add-on to this module
- If flatcomments doesn't support it, there will be another module does it (or clone, frankly). That module does of course all flatcomments does. => duplicate effort.
Comment #7
dragonwize commentedPlease stop changing the status.
Comment #8
jcisio commentedYou need info. I give you you info, thus I'm expected to change the status (because it has changed, indeed). But I'm sorry if it causes a problem for you.
Comment #9
jcisio commentedI need this feature again in another project and release a new module http://drupal.org/project/tlcomment.
Comment #10
liam morlandDrupal core issue about limiting comment depth.