Hey there! I''m in the process of looking through the various bug reports and tickets and fixing script.aculo.us as I go along. As I want a 1.6.2 bugfix release to happen this week, please help me out with: - Looking throught the open bugs list on the trac, testing stuff and giving helpful comments (like "+1") - Identifiying what bugs/patches should be included (answer to this post, please!) - Providing patches and tests where needed Here''s the URL to the bug list: http://dev.rubyonrails.org/query? status=new&component=script.aculo.us&type=defect&order=priority Since 1.6.1, following patches/changes have made it to trunk: * Fix only option in onEmptyHover, fiex #5348 [thx glenn nilsson] * Fix Effect.BlindDown and SwitchOff handling of supplied callbacks, fixes #5089 [thx martinstrom] * Fix a problem with field focus on Ajax.InPlaceEditor and loading external text, fixes #4988, #5244 [thx rob] * Do not attempt to scroll if scrollspeed is 0/0, fixes #5035 [thx tomg] * Fix a problem with Sortable Tree serialization, fixes #4939, #4688, #4767 [thx Sammi Williams] * Fix an endless loop with sliders, fixes #3226, #4051, #4765 [thx jeff] * Make autocompleter work with update DIVs that have scrollbars, fixes #4782 [thx Tommy Skaue] * Corrected options parsing on switchoff effect, fixes #4710 [thx haldini] So, please, please, please with sugar on the top help me, the more people do the faster the next release will be out there! :) Thanks, Thomas
I have one thing that worked in 1.6.0 but not in 1.6.1, so have to use the former one. If you use the attached file with 1.6.0, everything works just fine. But if you instead use 1.6.1 the exciting stuff appears. - case 1, test.html: drag the draggables around and you''ll see a flickering. even when the mouse is still they will jump around. - case 2, test.html with scroll-option removed: the draggables still flicker but only when the mouse is _moving_. not when holding still. - case 3, test.html with both scroll and dropOnEmpty removed: the draggables don''t flicker at all. the trigger for this error is that the droppable-container contains other content at the top, the p-element in this case. remove that and this behaviour disappears. almost. drag a draggable to the topmost margin (1em) of the droppable, and i think the same error occurs. I have, very quick, looked at the code and can just confirm that a lot have happened between 1.6 and 1.6.1, and I''m lost right now =) So I would be glad if the person or persons who remade this could perhaps go over it again... Thanks! /Glenn _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
> the trigger for this error is that the droppable-container contains > other content at the top, the p-element in this case. remove that and > this behaviour disappears. almost. drag a draggable to the topmost > margin (1em) of the droppable, and i think the same error occurs.Just to clearify: The major flickering is when the container has other content at the top. And when I wrote the above, I (again) tested after removing the top content, and saw that a similar error (or maybe the same) occurs when dragging at the top of the container. ~g
I''ve added a test to #5017, which has the additional side effect of demonstrating the behavior described in #5174, #4317, #3860, and #4202 (all variations on the same problem). TAG On Jun 20, 2006, at 4:48 AM, Thomas Fuchs wrote:> Hey there! > > I''m in the process of looking through the various bug reports and > tickets and > fixing script.aculo.us as I go along. > > As I want a 1.6.2 bugfix release to happen this week, please help > me out with: > - Looking throught the open bugs list on the trac, testing stuff > and giving helpful comments (like "+1") > - Identifiying what bugs/patches should be included (answer to this > post, please!) > - Providing patches and tests where needed > > Here''s the URL to the bug list: > http://dev.rubyonrails.org/query? > status=new&component=script.aculo.us&type=defect&order=priority > > Since 1.6.1, following patches/changes have made it to trunk: > > * Fix only option in onEmptyHover, fiex #5348 [thx glenn nilsson] > * Fix Effect.BlindDown and SwitchOff handling of supplied > callbacks, fixes #5089 [thx martinstrom] > * Fix a problem with field focus on Ajax.InPlaceEditor and loading > external text, fixes #4988, #5244 [thx rob] > * Do not attempt to scroll if scrollspeed is 0/0, fixes #5035 [thx > tomg] > * Fix a problem with Sortable Tree serialization, fixes #4939, > #4688, #4767 [thx Sammi Williams] > * Fix an endless loop with sliders, fixes #3226, #4051, #4765 [thx > jeff] > * Make autocompleter work with update DIVs that have scrollbars, > fixes #4782 [thx Tommy Skaue] > * Corrected options parsing on switchoff effect, fixes #4710 [thx > haldini] > > So, please, please, please with sugar on the top help me, the more > people > do the faster the next release will be out there! :) > > Thanks, > Thomas > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
Not so much Scriptaculous, but I posted a fix for prototype.js, which as broken the Element.cleanWhitespace in IE when they added the Element.extend functionality. Here''s the email I sent a while back (this fix has an added benefit of improving performance for Element.cleanWhitespace): Marco and I have been emailing about this and I finally found the fix, so here it is. Feel free to pass it along to Sam, if he even responds to bug reports any more: In prototype.js, change line 998 From: Element.remove(node); To: node.parentNode.removeChild(node); Element.remove calls $(), which calls Element.extend. In Element.extend, when it says element._extended = true;, it dies in IE on text nodes (element.nodeType == 3). Since we don''t really care to extend the node just to remove it, we should not even care about appending all of the extra functions to the node. Another option is to put a conditional in $() that just returns the element if it has a nodeType of 3, but I suppose there might be some weird case where you actually want to add extra functions to text nodes (I can''t think of any at the moment, though). Any chance you can make sure Sam gets this included in Prototype? (maybe he already has?) Greg> -----Original Message----- > From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org[mailto:rails-spinoffs-> bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of Thomas Fuchs > Sent: Tuesday, June 20, 2006 4:48 AM > To: script.aculo.us List > Subject: [Rails-spinoffs] Next script.aculo.us release, help needed > > Hey there! > > I''m in the process of looking through the various bug reports and > tickets and > fixing script.aculo.us as I go along. > > As I want a 1.6.2 bugfix release to happen this week, please help me > out with: > - Looking throught the open bugs list on the trac, testing stuff and > giving helpful comments (like "+1") > - Identifiying what bugs/patches should be included (answer to this > post, please!) > - Providing patches and tests where needed > > Here''s the URL to the bug list: > http://dev.rubyonrails.org/query? > status=new&component=script.aculo.us&type=defect&order=priority > > Since 1.6.1, following patches/changes have made it to trunk: > > * Fix only option in onEmptyHover, fiex #5348 [thx glenn nilsson] > * Fix Effect.BlindDown and SwitchOff handling of supplied callbacks, > fixes #5089 [thx martinstrom] > * Fix a problem with field focus on Ajax.InPlaceEditor and loading > external text, fixes #4988, #5244 [thx rob] > * Do not attempt to scroll if scrollspeed is 0/0, fixes #5035 [thxtomg]> * Fix a problem with Sortable Tree serialization, fixes #4939, #4688, > #4767 [thx Sammi Williams] > * Fix an endless loop with sliders, fixes #3226, #4051, #4765 [thxjeff]> * Make autocompleter work with update DIVs that have scrollbars, > fixes #4782 [thx Tommy Skaue] > * Corrected options parsing on switchoff effect, fixes #4710 [thx > haldini] > > So, please, please, please with sugar on the top help me, the more > people > do the faster the next release will be out there! :) > > Thanks, > Thomas > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
info-F3mW5S/pqWZeoWH0uzbU5w@public.gmane.org
2006-Jun-20 16:39 UTC
Make application like google maps but moooore simple
Hi to all, you can give indications to me on as to create a system that visualizes a maps and allows to insert the images on these to which associating a comment? Which functions I can watch in order to begin to develop the application? Thank you very much
Martinez, Andrew
2006-Jun-20 16:47 UTC
RE: Make application like google maps but mooooresimple
Talk about a loaded question. Why not just ask how to make it? -Andrew Martinez -----Original Message----- From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org] On Behalf Of info-F3mW5S/pqWZeoWH0uzbU5w@public.gmane.org Sent: Tuesday, June 20, 2006 12:39 PM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: [Rails-spinoffs] Make application like google maps but mooooresimple Hi to all, you can give indications to me on as to create a system that visualizes a maps and allows to insert the images on these to which associating a comment? Which functions I can watch in order to begin to develop the application? Thank you very much _______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
You can found some good information about google maps in the book "Pragmatic Ajax" http://www.pragmaticprogrammer.com/titles/ajax/ There is also a partial extract of the book available: http://media.pragprog.com/titles/ajax/ajaxian_maps.pdf On 6/20/06, info-F3mW5S/pqWZeoWH0uzbU5w@public.gmane.org <info-F3mW5S/pqWZeoWH0uzbU5w@public.gmane.org> wrote:> Hi to all, > you can give indications to me on as to create a system that visualizes a > maps and allows to insert the images on these to which associating a > comment? Which functions I can watch in order to begin to develop the > application? > > Thank you very much > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs >
info-F3mW5S/pqWZeoWH0uzbU5w@public.gmane.org
2006-Jun-20 19:34 UTC
Re: Make application like google maps but moooore simple
Hi, thank you for these information. in the previous message I have not given many information. I wanted to ask if in reference to scriptaculous/prototype there is something in order to create a page where to posizionare some the images (drag&drop) and then to add of the descriptions the same ones. These information (position of the images and descriptions) I would save in a database. Thank you> You can found some good information about google maps in the book > "Pragmatic Ajax" > http://www.pragmaticprogrammer.com/titles/ajax/ > > There is also a partial extract of the book available: > http://media.pragprog.com/titles/ajax/ajaxian_maps.pdf > > > On 6/20/06, info-F3mW5S/pqWZeoWH0uzbU5w@public.gmane.org <info-F3mW5S/pqWZeoWH0uzbU5w@public.gmane.org> wrote: >> Hi to all, >> you can give indications to me on as to create a system that visualizes >> a >> maps and allows to insert the images on these to which associating a >> comment? Which functions I can watch in order to begin to develop the >> application? >> >> Thank you very much >> _______________________________________________ >> Rails-spinoffs mailing list >> Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >> http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs >> > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs >
Bauser, Joseph (Joe)
2006-Jun-20 20:01 UTC
RE: Make application like google maps but moooore simple
To answer your first question, I believe the Google Maps API already contains the functionality you are looking for. If I understand correctly you''d like to be able to add and position images on a map, and add comments to the images on the map? You may want to take a deeper look into the Google Maps API before you attempt to reproduce any work that may have already been done by Google for you. Specifically look for info about Map Overlays, Click Handling, Event Handlers, and Info Windows. http://www.google.com/apis/maps/documentation/ To answer your revised question, yes you can use scriptaculous to position images using drag and drop. However making this interact with Google Maps will likely be non-trivial. If you do not want to use Google Maps at all and would like to develop your own Google Maps like interface, then the link provided earlier about Ajaxian Maps is an amazing resource. (Gotta love those Pragmatic Programmers) Cheers. -----Original Message----- From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org]On Behalf Of info-F3mW5S/pqWZeoWH0uzbU5w@public.gmane.org Sent: Tuesday, June 20, 2006 3:34 PM To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails-spinoffs] Make application like google maps but moooore simple Hi, thank you for these information. in the previous message I have not given many information. I wanted to ask if in reference to scriptaculous/prototype there is something in order to create a page where to posizionare some the images (drag&drop) and then to add of the descriptions the same ones. These information (position of the images and descriptions) I would save in a database. Thank you> You can found some good information about google maps in the book > "Pragmatic Ajax" > http://www.pragmaticprogrammer.com/titles/ajax/ > > There is also a partial extract of the book available: > http://media.pragprog.com/titles/ajax/ajaxian_maps.pdf > > > On 6/20/06, info-F3mW5S/pqWZeoWH0uzbU5w@public.gmane.org <info-F3mW5S/pqWZeoWH0uzbU5w@public.gmane.org> wrote: >> Hi to all, >> you can give indications to me on as to create a system that visualizes >> a >> maps and allows to insert the images on these to which associating a >> comment? Which functions I can watch in order to begin to develop the >> application? >> >> Thank you very much >> _______________________________________________ >> Rails-spinoffs mailing list >> Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >> http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs >> > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs >_______________________________________________ Rails-spinoffs mailing list Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs
info-F3mW5S/pqWZeoWH0uzbU5w@public.gmane.org
2006-Jun-21 08:21 UTC
RE: Make application like google maps but moooore simple
Hi, thank you for the information.> To answer your first question, I believe the Google Maps API already > contains the functionality you are looking for. > > If I understand correctly you''d like to be able to add and position images > on a map, and add comments to the images on the map? > > You may want to take a deeper look into the Google Maps API before you > attempt to reproduce any work that may have already been done by Google > for you. Specifically look for info about Map Overlays, Click Handling, > Event Handlers, and Info Windows. > http://www.google.com/apis/maps/documentation/ > > To answer your revised question, yes you can use scriptaculous to position > images using drag and drop. However making this interact with Google Maps > will likely be non-trivial. > > If you do not want to use Google Maps at all and would like to develop > your own Google Maps like interface, then the link provided earlier about > Ajaxian Maps is an amazing resource. > (Gotta love those Pragmatic Programmers)I have seen the link that you have advised to me. Perhaps it is too much complex for what he serves to me. Practically, he would be enough to me to create something of the type http://bassmanthemes.com/modules/globetrotter/ or smoot.sourceforge.net/smoot/ If I would make these with scriptaculous, for to move the image I can use Drag&Drop and for display a tooltip when click on DX mouse button? thank you very much> > Cheers. > > -----Original Message----- > From: rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > [mailto:rails-spinoffs-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org]On Behalf Of > info-F3mW5S/pqWZeoWH0uzbU5w@public.gmane.org > Sent: Tuesday, June 20, 2006 3:34 PM > To: rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > Subject: Re: [Rails-spinoffs] Make application like google maps but > moooore simple > > > Hi, > thank you for these information. > > in the previous message I have not given many information. I wanted to ask > if in reference to scriptaculous/prototype there is something in order to > create a page where to posizionare some the images (drag&drop) and then to > add of the descriptions the same ones. These information (position of the > images and descriptions) I would save in a database. > > Thank you > >> You can found some good information about google maps in the book >> "Pragmatic Ajax" >> http://www.pragmaticprogrammer.com/titles/ajax/ >> >> There is also a partial extract of the book available: >> http://media.pragprog.com/titles/ajax/ajaxian_maps.pdf >> >> >> On 6/20/06, info-F3mW5S/pqWZeoWH0uzbU5w@public.gmane.org <info-F3mW5S/pqWZeoWH0uzbU5w@public.gmane.org> wrote: >>> Hi to all, >>> you can give indications to me on as to create a system that visualizes >>> a >>> maps and allows to insert the images on these to which associating a >>> comment? Which functions I can watch in order to begin to develop the >>> application? >>> >>> Thank you very much >>> _______________________________________________ >>> Rails-spinoffs mailing list >>> Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>> http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs >>> >> _______________________________________________ >> Rails-spinoffs mailing list >> Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >> http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs >> > > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs > _______________________________________________ > Rails-spinoffs mailing list > Rails-spinoffs-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs >