thats correct. thats what its suppose to do. the Panel Hashbox shows that the Nuggets will be INSIDE the panel. Where in the panel depends on weight. Below Panel is OUTSIDE the panel.
I guess i should call it Inside Panel, Outside Panel. that will be more clear. Hashboxes are just guidelines of where approx will the nugget appear.
I see. I'm not quite understanding the weighting, so it's hard to apply "common sense," as you suggested. I do understand that lower numbers are lighter and, so go higher. But you said:
Of course a negative weight or zero weight for "In Comment" pan makes no sense.
I'm not sure why it doesn't make sense. Couldn't the nugget be in varying spots within a comment?
What she is prolly saying is that, how come u cannot have only + weights for the other nuggets, for eg the Panel nugget. +1 means after the First panel item. +2 means after the second panel item.
Schizo, I don't have anywhere I'm "going with this." I just don't understand the statement. Since your text implies that it should be obvious, I'm missing something. Since it isn't obvious to me--just trying to get up to speed here--I'm asking for some input.
I understand that lower numbers are lighter and rise higher, but I don't understand the significance of the negative numbers versus the positive ones. For example, if the weighting went from 1-10, it would seem that 1 would be the highest position and 10 the lowest. With the negative numbers, I'm thinking that there is some significance to the zero point (particularly since ONLY positive numbers "make sense" within some of the nuggets) that I just didn't catch. So I'm wondering if you can help me understand better.
jeffk, I'm also unfamiliar with Drupal (heard of it, but never used it) and since I haven't seen it elsewhere, I don't understand it. As I said, I'm just trying to get up to speed on this stuff, and can't figure the significance of the zero point that moves a nugget outside usability.
So, if someone doesn't mind lowering themselves to the point to explain it, I'd appreciate it. Otherwise, don't worry about it.
ok now that I think about it. there is no significance of using negative weights other than cause its a standard way of doing it. XOOPS does it too i think. Wordpress sidebar widget also uses negative weights.
In Vanilla u have default weights $Configuration['CONTROL_POSITION_BODY_ITEM'] = '400'; So If i want to display something before the Body item. I have to subtract 1 from it. Thats what the documentations say it. I add 1 if i want something after it. Thats why u need negative weights.
Now for Comment Nuggets. I tried to remove the negative/zero weight from the weight field. but it was too much extra code to get ride of them, and add them back in if its not Comments. So I resorted to "Its common sense to not use negative/zero weights. Since I was trying to get ride of them in the first place" I think its because I developed it, and I know that there is no Control that will let u put something in the comment list. So u have to use delegation and track the row number that is being rendered. Since the row numbers are all >= 1. hence a negative weight won't do anything. I shouldn't have assumed, that users know how the Comments Nugget is very different than other nuggets.
Secondly I wanted the negative weights to be random. So -5 means the nugget will display randomly anywhere within the first 5 comments or not display at all. This would help counter Banner Blindness. I implemented it only to find out based on my algo, the probability of the nugget being displayed shrunk quite dramatically. I didn't want to write two separate algo for serial positive weights and random negative weights with high probability.
So long story short. I'll remove the remark from Nugget documentation. ur right its not obvious why negative weights won't work for comment nuggets when they work for everything else. Going to change it to "Negative weight or zero weight for "In Comment" Nugget will not work. You need positive weights"
Schizo, thank you. I get it now, I think. So the default weight of an item is the zero point and the above and below are negative and positive, respectively???
FWIW, I wasn't trying to point out that your documentation was wrong at all. I just figured I knew less about it than everybody else and needed more info. I tried to look it up on Drupal, too, but most of the info on weighting was from others who didn't understand it.
I just wanted to say Nuggets is a real kickass addon. It's pretty well thought and offers many possibilities you can't figure out at first unless you try to alter a bit Vanilla's way of working. I solved tons of problems using it. It's really useful when it comes not only to layout matters but also for inserting pieces of code. It pushes Vanilla to the next level, and allows much more flexibility and potential fonctionalities than any other addon. Thanks for this, I love it
this looks great, i'm going to try it now. maybe i will be able to get rid of my pagemanager tabs and use a role-based panel navigation menu instead.
one other thing; has anyone used this to include wordpress pages? i'm thinking perhaps i could somehow include my wordpress sidebar in the vanilla sidebar.
edit: tried to include wordpress functions in vanilla, as directed on this page, but i just got a string of errors. i feel like i'm really close to achieving what i need, though...
another quick question: i've used nuggets to replace my navigation tabs, so the menu (discussions, search, etc) appears in a list on the left instead of the tabs across the top. the only problem is that on certain plugin pages, such as private messages, my panel nuggets don't show, so i can't give users any way to get back to the menu. i can create a big 'refresh discussions' link, but is there any way around this, before i do?
@MySchizoBuddy
Do I have to download and install the new version? I've about 5 nuggets running, so is there any other fixes other than the line I've already changed?
Thanks.
Comments
Below Panel is OUTSIDE the panel.
I guess i should call it Inside Panel, Outside Panel. that will be more clear. Hashboxes are just guidelines of where approx will the nugget appear.
i can see where ur going with this
And +1 means after the first comment?
I have mine set at +2 and they appear as the third comment, that is, after comment number two.
Brilliant once the concept, simple as it is, is understood.
Posted: Thursday, 10 May 2007 at 10:33AM
I understand that lower numbers are lighter and rise higher, but I don't understand the significance of the negative numbers versus the positive ones. For example, if the weighting went from 1-10, it would seem that 1 would be the highest position and 10 the lowest. With the negative numbers, I'm thinking that there is some significance to the zero point (particularly since ONLY positive numbers "make sense" within some of the nuggets) that I just didn't catch. So I'm wondering if you can help me understand better.
So, if someone doesn't mind lowering themselves to the point to explain it, I'd appreciate it. Otherwise, don't worry about it.
In Vanilla u have default weights $Configuration['CONTROL_POSITION_BODY_ITEM'] = '400';
So If i want to display something before the Body item. I have to subtract 1 from it. Thats what the documentations say it. I add 1 if i want something after it. Thats why u need negative weights.
Now for Comment Nuggets. I tried to remove the negative/zero weight from the weight field. but it was too much extra code to get ride of them, and add them back in if its not Comments. So I resorted to "Its common sense to not use negative/zero weights. Since I was trying to get ride of them in the first place"
I think its because I developed it, and I know that there is no Control that will let u put something in the comment list. So u have to use delegation and track the row number that is being rendered. Since the row numbers are all >= 1. hence a negative weight won't do anything. I shouldn't have assumed, that users know how the Comments Nugget is very different than other nuggets.
Secondly I wanted the negative weights to be random. So -5 means the nugget will display randomly anywhere within the first 5 comments or not display at all. This would help counter Banner Blindness. I implemented it only to find out based on my algo, the probability of the nugget being displayed shrunk quite dramatically. I didn't want to write two separate algo for serial positive weights and random negative weights with high probability.
So long story short. I'll remove the remark from Nugget documentation. ur right its not obvious why negative weights won't work for comment nuggets when they work for everything else. Going to change it to
"Negative weight or zero weight for "In Comment" Nugget will not work. You need positive weights"
FWIW, I wasn't trying to point out that your documentation was wrong at all. I just figured I knew less about it than everybody else and needed more info. I tried to look it up on Drupal, too, but most of the info on weighting was from others who didn't understand it.
Again, thanks for taking the time to explain it.
I just wanted to say Nuggets is a real kickass addon.
It's pretty well thought and offers many possibilities you can't figure out at first unless you try to alter a bit Vanilla's way of working. I solved tons of problems using it. It's really useful when it comes not only to layout matters but also for inserting pieces of code. It pushes Vanilla to the next level, and allows much more flexibility and potential fonctionalities than any other addon. Thanks for this, I love it
Notice: Undefined variable: NuggetForm in /home/ventswap/public_html/extensions/Nugget/default.php on line 85
Any thoughts?
Thanks.
tried to include wordpress functions in vanilla, as directed on this page, but i just got a string of errors. i feel like i'm really close to achieving what i need, though...
i've used nuggets to replace my navigation tabs, so the menu (discussions, search, etc) appears in a list on the left instead of the tabs across the top.
the only problem is that on certain plugin pages, such as private messages, my panel nuggets don't show, so i can't give users any way to get back to the menu.
i can create a big 'refresh discussions' link, but is there any way around this, before i do?
http://www.site.net/forum/extension.php?PostBackAction=PrivateMessages