So, I went a little crazy this weekend and did a whole bunch of things: * camping.io now renders properly in Chrome (yay! why didn''t anyone tell me this was broken? evolving web standards are annoying!) * I tidied up some issues and commented on heaps of things on https://github.com/camping/camping/issues * I patched a readme to not talk about features we removed from The Camping Server * I created extensive documentation for chill - my couchdb abstraction. <http://creativepony.com/chill/rdoc/ChillDB.html> * I added bulk commit and delete support to chill - which should improve performance quite a bit * I added ruby views support to chill - but I haven''t tested this yet. All these things seem vaguely related to camping (at least to me). Lets talk about the website! ? Jenna -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/camping-list/attachments/20120429/c243560b/attachment.html>
camping.io is still badly broken for me on Opera 11.62, Windows XP. Screenshot: http://i.imgur.com/7YZQf.png (These weird light-yellow bits aren''t there, something went wrong with my screen capture tool, I guess.) -- Matma Rex
Yeah I''m not even going to attempt that one. Opera is way out of my league. If you know how to fix it, I''d love the help, otherwise I''m all for opera''s plan to pretend to be webkit. Maybe there''s some way we can detect it and show opera a simpler website? ? Jenna On Sunday, 29 April 2012 at 9:04 PM, Bartosz Dziewo?ski wrote:> camping.io (http://camping.io) is still badly broken for me on Opera 11.62, Windows XP. > > Screenshot: http://i.imgur.com/7YZQf.png (These weird light-yellow > bits aren''t there, something went wrong with my screen capture tool, I > guess.) > > -- Matma Rex > _______________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org (mailto:Camping-list at rubyforge.org) > http://rubyforge.org/mailman/listinfo/camping-list > >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/camping-list/attachments/20120429/3f802f76/attachment.html>
Well, the background doesn''t display because the path to the background image (paper.png) is given incorrectly... -webkit-border-image: url("paper.png") 75 30 50 30 stretch stretch; -moz-border-image: url("paper.png") 75 30 50 30 stretch stretch; -o-border-image: url("http://whywentcamping.com/img/paper.png") 75 30 50 30 stretch stretch; You should also ensure that the text is at least readable without the background - a rule like "#subwrap>*{background-color:beige}" will do the trick (although will hide the fine texture of paper.png - to avoid this, create another small image to set as background to #subwrap>* containing just the texture). I don''t know why the fonts don''t display, but I''ll try looking into it. -- Matma Rex 2012/4/29 Jenna Fox <a at creativepony.com>:> Yeah I''m not even going to attempt that one. Opera is way out of my league. > If you know how to fix it, I''d love the help, otherwise I''m all for opera''s > plan to pretend to be webkit. Maybe there''s some way we can detect it and > show opera a simpler website? > > ? > Jenna > > On Sunday, 29 April 2012 at 9:04 PM, Bartosz Dziewo?ski wrote: > > camping.io is still badly broken for me on Opera 11.62, Windows XP. > > Screenshot: http://i.imgur.com/7YZQf.png (These weird light-yellow > bits aren''t there, something went wrong with my screen capture tool, I > guess.) > > -- Matma Rex > _______________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org > http://rubyforge.org/mailman/listinfo/camping-list > > > > _______________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org > http://rubyforge.org/mailman/listinfo/camping-list
The fonts don''t display because Opera sucks balls when it comes to text-transform. I have ran into problems with it before (when dynamically changing .style.textTransform of an <input> field, the text displayed is not updated - testcase: http://dl.dropbox.com/u/10983006/textransformbug.html) and reported them, and that was almost a year ago now, and is still not fixed. Opera is pretty cool, but really sucks when it comes to handling bug reports, eh. You can work around this with a simple bit of JavaScript: if(window.opera) // if you''re feeling like it, you could maybe somehow detect that the text is not shown correctly and check for this, instead of just detecting Opera { var lst = document.querySelectorAll(''h1,h2,h3,h4,h5,h6'') for(var i=0; i<lst.length; i++) lst[i].firstChild.nodeValue lst[i].firstChild.nodeValue.toUpperCase() } (Or you could change the HTML source to use uppercase text, but I guess you don''t want to do that.) (Or you could change the font files to use the same glyphs for upper- and lower-case characters, but I guess that would require some work.) -- Matma Rex
Fixed url for Opera. As for text rendering, so long as it''s readable, I don''t mind if it''s ugly. Happy to let the Opera team fix Opera''s bugs. ? Jenna On Sunday, 29 April 2012 at 10:22 PM, Bartosz Dziewo?ski wrote:> Well, the background doesn''t display because the path to the > background image (paper.png) is given incorrectly... > > -webkit-border-image: url("paper.png") 75 30 50 30 stretch stretch; > -moz-border-image: url("paper.png") 75 30 50 30 stretch stretch; > -o-border-image: url("http://whywentcamping.com/img/paper.png") 75 > 30 50 30 stretch stretch; > > You should also ensure that the text is at least readable without the > background - a rule like "#subwrap>*{background-color:beige}" will do > the trick (although will hide the fine texture of paper.png - to avoid > this, create another small image to set as background to #subwrap>* > containing just the texture). > > I don''t know why the fonts don''t display, but I''ll try looking into it. > > -- Matma Rex > > > 2012/4/29 Jenna Fox <a at creativepony.com (mailto:a at creativepony.com)>: > > Yeah I''m not even going to attempt that one. Opera is way out of my league. > > If you know how to fix it, I''d love the help, otherwise I''m all for opera''s > > plan to pretend to be webkit. Maybe there''s some way we can detect it and > > show opera a simpler website? > > > > ? > > Jenna > > > > On Sunday, 29 April 2012 at 9:04 PM, Bartosz Dziewo?ski wrote: > > > > camping.io (http://camping.io) is still badly broken for me on Opera 11.62, Windows XP. > > > > Screenshot: http://i.imgur.com/7YZQf.png (These weird light-yellow > > bits aren''t there, something went wrong with my screen capture tool, I > > guess.) > > > > -- Matma Rex > > _______________________________________________ > > Camping-list mailing list > > Camping-list at rubyforge.org (mailto:Camping-list at rubyforge.org) > > http://rubyforge.org/mailman/listinfo/camping-list > > > > > > > > _______________________________________________ > > Camping-list mailing list > > Camping-list at rubyforge.org (mailto:Camping-list at rubyforge.org) > > http://rubyforge.org/mailman/listinfo/camping-list > > > > _______________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org (mailto:Camping-list at rubyforge.org) > http://rubyforge.org/mailman/listinfo/camping-list > >-------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/camping-list/attachments/20120429/cf291c51/attachment.html>