From judofyr at gmail.com Wed Feb 1 04:09:18 2012 From: judofyr at gmail.com (Magnus Holm) Date: Wed, 1 Feb 2012 10:09:18 +0100 Subject: +1 shorter domain name In-Reply-To: References: <0F440C54DB5C4659827D866D50EFA085@creativepony.com> Message-ID: On Wed, Feb 1, 2012 at 04:18, adam moore wrote: > I've recently been using Arch linux and 90% of the appeal comes from > their awesome user-led wiki.. > Something which we can gradually add to, build on camping of course, > and which hand-holds beginners would be ideal I think > The website will be fully open-source (Markdown files in the camping/camping.git-repo) so people should be able to contribute if they want. From IcePapih at lavabit.com Fri Feb 17 15:48:04 2012 From: IcePapih at lavabit.com (Isak Andersson) Date: Fri, 17 Feb 2012 21:48:04 +0100 Subject: Camping on the edge, multimount Message-ID: Okay so I'm creating my website to host a blog and a bunch of stuff, using a Camping + Riak combo! Of course I'm using the latest and greatest version of Camping that uses Mab and has a public/ dir. I was just wondering if we still have the functionality to mount multiple apps in these new versions. Say I have a project that looks something like this app/ app.rb #The home or something?? blog.rb foo.rb admin.rb public/ something.css acoolpic.png blog/ controller.rb views.rb foo/ controller.rb views.rb admin/ controller.rb views.rb I want those apps to share the public folder to have the same basic look and all that. And of course database. The problem I have here is, how do I specify what is the root of the whole bigger picture. Like what gets mounted at site.com and not site.com/blog for example. And also, how can I add some shared functionality across the apps. For example I want to have Csrf protection (using rack_csrf), right? So instead of overriding the form of each and every smaller app I want it to easily be implemented just once. Is this possible? If so, how? Also, what is the correct command line command to mount every app? Also another concern I have when doing this kind of thing is, how can I make one app link to some part of another app? Like if I want app.rb to link to the blog, or the blog to link to some controller in foo. Cheers! -Isak Andersson From IcePapih at lavabit.com Fri Feb 17 16:13:26 2012 From: IcePapih at lavabit.com (Isak Andersson) Date: Fri, 17 Feb 2012 22:13:26 +0100 Subject: Camping Multimount Message-ID: Hi, sorry if I'm repeating is email or something, Cinnamon crashed as I was sending the mail and the result in the sent folder was completely empty, so I'm just gonna have to write it all over again, wee! Anyways, my question was about new camping and if we still have the ability to mount multiple smaller apps as the bigger app. I'm creating an app to host my blog and a bunch of other stuff using the new Camping version that comes with Mab + Riak. I want to be able to divide each part of the website into it's own app, but I still want them to share some things, like the public/ folder so that they have the same look. I also want them to share Riak node which they will do. Let's say that my project structure looks something like this app/ app.rb blog.rb forum.rb # Not actually having a forum though, probably public/ Style.css Coolpic.png blog/ controllers.rb views.rb forum/ controllers.rb views.rb config/ ripple.yml foo.yml First off, what is the correct command to mount these parts, and how does it work? The Camping site says: camping apps/**/*.rb. I'm not sure what it does though, and if it would still work in the new version. One thing that I would like, would be if all sub-apps for app.rb like blog or forum inherited some of the settings of app.rb. I'm using rack_csrf for csrf protection (obviously) and I find it kind of strange to have to set it up for each and every app instead of just app.rb. Another thing, how do I make app.rb the root of the entire site so it's mounted at foobar.com and not foobar.com/blog like the other ones should be mounted. Also, how do I link between the different apps? Like how do I make app link to the blog or a part of the forum link to a certain part of app? I guess that was all the questions I had about this. I'm starting to feel like this would be the ultimate way to build a larger Camping app :) Cheers! -Isak Andersson From judofyr at gmail.com Sat Feb 18 15:35:39 2012 From: judofyr at gmail.com (Magnus Holm) Date: Sat, 18 Feb 2012 21:35:39 +0100 Subject: Camping Multimount In-Reply-To: References: Message-ID: On Fri, Feb 17, 2012 at 22:13, Isak Andersson wrote: > Hi, sorry if I'm repeating is email or something, Cinnamon crashed as I was > sending the mail and > the result in the sent folder was completely empty, so I'm just gonna have > to write it all over > again, wee! > > Anyways, my question was about new camping and if we still have the ability > to mount multiple smaller > apps as the bigger app. I'm creating an app to host my blog and a bunch of > other stuff using the new > Camping version that comes with Mab + Riak. I want to be able to divide each > part of the website into > it's own app, but I still want them to share some things, like the public/ > folder so that they have the > same look. I also want them to share Riak node which they will do. > > Let's say that my project structure looks something like this > > app/ > ? ? ? ?app.rb > ? ? ? ?blog.rb > ? ? ? ?forum.rb ? ? ? ?# Not actually having a forum though, probably > ? ? ? ?public/ > ? ? ? ? ? ? ? ?Style.css > ? ? ? ? ? ? ? ?Coolpic.png > ? ? ? ?blog/ > ? ? ? ? ? ? ? ?controllers.rb > ? ? ? ? ? ? ? ?views.rb > ? ? ? ?forum/ > ? ? ? ? ? ? ? ?controllers.rb > ? ? ? ? ? ? ? ?views.rb > ? ? ? ?config/ > ? ? ? ? ? ? ? ?ripple.yml > ? ? ? ? ? ? ? ?foo.yml > > First off, what is the correct command to mount these parts, and how does it > work? The Camping site says: > camping apps/**/*.rb. > > I'm not sure what it does though, and if it would still work in the new > version. In the newest (pre-release) version of Camping you solve this by using a config.ru-file: # in config.ru require 'app' require 'blog' require 'forum' map '/' do run App end map '/blog' do run Blog end map '/forum' do run Forum end You can then run `camping config.ru` to start the server. > One thing that I would like, would be if all sub-apps for app.rb like blog > or forum inherited some of the > settings of app.rb. I'm using rack_csrf for csrf protection (obviously) and > I find it kind of strange to have to set > it up for each and every app instead of just app.rb. The simplest solution is to define something like this: def App.setup(app) app.class_eval do set :foo, 123 include Bar use Baz end end And then: module App App.setup(self) end module Blog App.setup(self) end module Forum App.setup(self) end > > Another thing, how do I make app.rb the root of the entire site so it's > mounted at foobar.com and not > foobar.com/blog like the other ones should be mounted. Also, how do I link > between the different apps? > Like how do I make app link to the blog or a part of the forum link to a > certain part of app? Linking is indeed a hard problem. By default, Camping+Mab prepends the mount path to all links. So if you generate "/user/1" inside a Forum-template, the link will actually come out as "/forum/user/1". Of course, this means that linking to "/blog/post/1" does actually link to "/forum/blog/post/1" which probably wasn't what you intended. I'm really not sure what's the best solution is here? > I guess that was all the questions I had about this. I'm starting to feel > like this would be the ultimate > way to build a larger Camping app :) > Have fun :D From IcePapih at lavabit.com Sat Feb 18 16:02:53 2012 From: IcePapih at lavabit.com (Isak Andersson) Date: Sat, 18 Feb 2012 22:02:53 +0100 Subject: Camping Multimount In-Reply-To: References: Message-ID: All very nice solutions I must say. I started using Rails (oh no!) to build the app since it would be easier to handle bigger things since I couldn't figure this out. This is amazing though. Since I'm still not sure how I'd handle the linking I think I'll keep using rails for this particular app From IcePapih at lavabit.com Sat Feb 18 16:11:37 2012 From: IcePapih at lavabit.com (Isak Andersson) Date: Sat, 18 Feb 2012 22:11:37 +0100 Subject: Camping Multimount In-Reply-To: References: Message-ID: Actually no, if we solve this whole little thing about linking I'll just swap it all back to camping for the 12382th time! Because I'm just loving this! On Sat, 18 Feb 2012 21:35:39 +0100, Magnus Holm wrote: > On Fri, Feb 17, 2012 at 22:13, Isak Andersson > wrote: >> Hi, sorry if I'm repeating is email or something, Cinnamon crashed as I >> was >> sending the mail and >> the result in the sent folder was completely empty, so I'm just gonna >> have >> to write it all over >> again, wee! >> >> Anyways, my question was about new camping and if we still have the >> ability >> to mount multiple smaller >> apps as the bigger app. I'm creating an app to host my blog and a bunch >> of >> other stuff using the new >> Camping version that comes with Mab + Riak. I want to be able to divide >> each >> part of the website into >> it's own app, but I still want them to share some things, like the >> public/ >> folder so that they have the >> same look. I also want them to share Riak node which they will do. >> >> Let's say that my project structure looks something like this >> >> app/ >> app.rb >> blog.rb >> forum.rb # Not actually having a forum though, probably >> public/ >> Style.css >> Coolpic.png >> blog/ >> controllers.rb >> views.rb >> forum/ >> controllers.rb >> views.rb >> config/ >> ripple.yml >> foo.yml >> >> First off, what is the correct command to mount these parts, and how >> does it >> work? The Camping site says: >> camping apps/**/*.rb. >> >> I'm not sure what it does though, and if it would still work in the new >> version. > > In the newest (pre-release) version of Camping you solve this by using > a config.ru-file: > > # in config.ru > require 'app' > require 'blog' > require 'forum' > > map '/' do > run App > end > > map '/blog' do > run Blog > end > > map '/forum' do > run Forum > end > > You can then run `camping config.ru` to start the server. > >> One thing that I would like, would be if all sub-apps for app.rb like >> blog >> or forum inherited some of the >> settings of app.rb. I'm using rack_csrf for csrf protection (obviously) >> and >> I find it kind of strange to have to set >> it up for each and every app instead of just app.rb. > > The simplest solution is to define something like this: > > def App.setup(app) > app.class_eval do > set :foo, 123 > include Bar > use Baz > end > end > > And then: > > module App > App.setup(self) > end > > module Blog > App.setup(self) > end > > module Forum > App.setup(self) > end > >> >> Another thing, how do I make app.rb the root of the entire site so it's >> mounted at foobar.com and not >> foobar.com/blog like the other ones should be mounted. Also, how do I >> link >> between the different apps? >> Like how do I make app link to the blog or a part of the forum link to a >> certain part of app? > > Linking is indeed a hard problem. By default, Camping+Mab prepends the > mount path to all links. So if you generate "/user/1" inside a > Forum-template, the link will actually come out as "/forum/user/1". Of > course, this means that linking to "/blog/post/1" does actually link > to "/forum/blog/post/1" which probably wasn't what you intended. > > I'm really not sure what's the best solution is here? > >> I guess that was all the questions I had about this. I'm starting to >> feel >> like this would be the ultimate >> way to build a larger Camping app :) >> > > Have fun :D > _______________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org > http://rubyforge.org/mailman/listinfo/camping-list > ____________________________________________________________________________________ > Delivering best online results. Get better, different Relevant results > fast ! > Searching the best of online online. > http://click.lavabit.com/4ehcpqntnpwdsxdqu4axg6a3o453mwgxeoghwyzarmthtqqeyhwb/ > ____________________________________________________________________________________ -- Using Opera's revolutionary email client: http://www.opera.com/mail/ From IcePapih at lavabit.com Sat Feb 18 16:55:29 2012 From: IcePapih at lavabit.com (Isak Andersson) Date: Sat, 18 Feb 2012 22:55:29 +0100 Subject: Camping Multimount In-Reply-To: References: Message-ID: http://pastebin.com/JuHhW0Ri Not sure what went wrong there :/ The app is over here https://github.com/MilkshakePanda/Penguin I have no idea what that had to do with my config.ru file.. On Sat, 18 Feb 2012 21:35:39 +0100, Magnus Holm wrote: > On Fri, Feb 17, 2012 at 22:13, Isak Andersson > wrote: >> Hi, sorry if I'm repeating is email or something, Cinnamon crashed as I >> was >> sending the mail and >> the result in the sent folder was completely empty, so I'm just gonna >> have >> to write it all over >> again, wee! >> >> Anyways, my question was about new camping and if we still have the >> ability >> to mount multiple smaller >> apps as the bigger app. I'm creating an app to host my blog and a bunch >> of >> other stuff using the new >> Camping version that comes with Mab + Riak. I want to be able to divide >> each >> part of the website into >> it's own app, but I still want them to share some things, like the >> public/ >> folder so that they have the >> same look. I also want them to share Riak node which they will do. >> >> Let's say that my project structure looks something like this >> >> app/ >> app.rb >> blog.rb >> forum.rb # Not actually having a forum though, probably >> public/ >> Style.css >> Coolpic.png >> blog/ >> controllers.rb >> views.rb >> forum/ >> controllers.rb >> views.rb >> config/ >> ripple.yml >> foo.yml >> >> First off, what is the correct command to mount these parts, and how >> does it >> work? The Camping site says: >> camping apps/**/*.rb. >> >> I'm not sure what it does though, and if it would still work in the new >> version. > > In the newest (pre-release) version of Camping you solve this by using > a config.ru-file: > > # in config.ru > require 'app' > require 'blog' > require 'forum' > > map '/' do > run App > end > > map '/blog' do > run Blog > end > > map '/forum' do > run Forum > end > > You can then run `camping config.ru` to start the server. > >> One thing that I would like, would be if all sub-apps for app.rb like >> blog >> or forum inherited some of the >> settings of app.rb. I'm using rack_csrf for csrf protection (obviously) >> and >> I find it kind of strange to have to set >> it up for each and every app instead of just app.rb. > > The simplest solution is to define something like this: > > def App.setup(app) > app.class_eval do > set :foo, 123 > include Bar > use Baz > end > end > > And then: > > module App > App.setup(self) > end > > module Blog > App.setup(self) > end > > module Forum > App.setup(self) > end > >> >> Another thing, how do I make app.rb the root of the entire site so it's >> mounted at foobar.com and not >> foobar.com/blog like the other ones should be mounted. Also, how do I >> link >> between the different apps? >> Like how do I make app link to the blog or a part of the forum link to a >> certain part of app? > > Linking is indeed a hard problem. By default, Camping+Mab prepends the > mount path to all links. So if you generate "/user/1" inside a > Forum-template, the link will actually come out as "/forum/user/1". Of > course, this means that linking to "/blog/post/1" does actually link > to "/forum/blog/post/1" which probably wasn't what you intended. > > I'm really not sure what's the best solution is here? > >> I guess that was all the questions I had about this. I'm starting to >> feel >> like this would be the ultimate >> way to build a larger Camping app :) >> > > Have fun :D > _______________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org > http://rubyforge.org/mailman/listinfo/camping-list > ____________________________________________________________________________________ > Delivering best online results. Get better, different Relevant results > fast ! > Searching the best of online online. > http://click.lavabit.com/4ehcpqntnpwdsxdqu4axg6a3o453mwgxeoghwyzarmthtqqeyhwb/ > ____________________________________________________________________________________ -- Using Opera's revolutionary email client: http://www.opera.com/mail/ From dsusco at gmail.com Sun Feb 19 09:22:43 2012 From: dsusco at gmail.com (David Susco) Date: Sun, 19 Feb 2012 09:22:43 -0500 Subject: Camping Multimount In-Reply-To: References: Message-ID: On the linking thing, could you invoke a method in the main app from a sub-app which takes a sub-app name and a route as variables? The method could then just return R() from the appropriate sub-app. Dave On Sat, Feb 18, 2012 at 4:55 PM, Isak Andersson wrote: > http://pastebin.com/JuHhW0R > > Not sure what went wrong there :/ > > The app is over here https://github.com/MilkshakePanda/Penguin > > I have no idea what that had to do with my config.ru file.. > > > > On Sat, 18 Feb 2012 21:35:39 +0100, Magnus Holm wrote: > >> On Fri, Feb 17, 2012 at 22:13, Isak Andersson >> wrote: >>> >>> Hi, sorry if I'm repeating is email or something, Cinnamon crashed as I >>> was >>> sending the mail and >>> the result in the sent folder was completely empty, so I'm just gonna >>> have >>> to write it all over >>> again, wee! >>> >>> Anyways, my question was about new camping and if we still have the >>> ability >>> to mount multiple smaller >>> apps as the bigger app. I'm creating an app to host my blog and a bunch >>> of >>> other stuff using the new >>> Camping version that comes with Mab + Riak. I want to be able to divide >>> each >>> part of the website into >>> it's own app, but I still want them to share some things, like the >>> public/ >>> folder so that they have the >>> same look. I also want them to share Riak node which they will do. >>> >>> Let's say that my project structure looks something like this >>> >>> app/ >>> ? ? ? app.rb >>> ? ? ? blog.rb >>> ? ? ? forum.rb ? ? ? ?# Not actually having a forum though, probably >>> ? ? ? public/ >>> ? ? ? ? ? ? ? Style.css >>> ? ? ? ? ? ? ? Coolpic.png >>> ? ? ? blog/ >>> ? ? ? ? ? ? ? controllers.rb >>> ? ? ? ? ? ? ? views.rb >>> ? ? ? forum/ >>> ? ? ? ? ? ? ? controllers.rb >>> ? ? ? ? ? ? ? views.rb >>> ? ? ? config/ >>> ? ? ? ? ? ? ? ripple.yml >>> ? ? ? ? ? ? ? foo.yml >>> >>> First off, what is the correct command to mount these parts, and how does >>> it >>> work? The Camping site says: >>> camping apps/**/*.rb. >>> >>> I'm not sure what it does though, and if it would still work in the new >>> version. >> >> >> In the newest (pre-release) version of Camping you solve this by using >> a config.ru-file: >> >> ?# in config.ru >> ?require 'app' >> ?require 'blog' >> ?require 'forum' >> >> ?map '/' do >> ? ?run App >> ?end >> >> ?map '/blog' do >> ? ?run Blog >> ?end >> >> ?map '/forum' do >> ? ?run Forum >> ?end >> >> You can then run `camping config.ru` to start the server. >> >>> One thing that I would like, would be if all sub-apps for app.rb like >>> blog >>> or forum inherited some of the >>> settings of app.rb. I'm using rack_csrf for csrf protection (obviously) >>> and >>> I find it kind of strange to have to set >>> it up for each and every app instead of just app.rb. >> >> >> The simplest solution is to define something like this: >> >> ?def App.setup(app) >> ? ?app.class_eval do >> ? ? ?set :foo, 123 >> ? ? ?include Bar >> ? ? ?use Baz >> ? ?end >> ?end >> >> And then: >> >> ?module App >> ? ?App.setup(self) >> ?end >> >> ?module Blog >> ? ?App.setup(self) >> ?end >> >> ?module Forum >> ? ?App.setup(self) >> ?end >> >>> >>> Another thing, how do I make app.rb the root of the entire site so it's >>> mounted at foobar.com and not >>> foobar.com/blog like the other ones should be mounted. Also, how do I >>> link >>> between the different apps? >>> Like how do I make app link to the blog or a part of the forum link to a >>> certain part of app? >> >> >> Linking is indeed a hard problem. By default, Camping+Mab prepends the >> mount path to all links. So if you generate "/user/1" inside a >> Forum-template, the link will actually come out as "/forum/user/1". Of >> course, this means that linking to "/blog/post/1" does actually link >> to "/forum/blog/post/1" which probably wasn't what you intended. >> >> I'm really not sure what's the best solution is here? >> >>> I guess that was all the questions I had about this. I'm starting to feel >>> like this would be the ultimate >>> way to build a larger Camping app :) >>> >> >> Have fun :D >> _______________________________________________ >> Camping-list mailing list >> Camping-list at rubyforge.org >> http://rubyforge.org/mailman/listinfo/camping-list >> >> ____________________________________________________________________________________ >> Delivering best online results. Get better, different Relevant results >> fast ! >> Searching the best of online online. >> >> http://click.lavabit.com/4ehcpqntnpwdsxdqu4axg6a3o453mwgxeoghwyzarmthtqqeyhwb/ >> >> ____________________________________________________________________________________ > > > > -- > Using Opera's revolutionary email client: http://www.opera.com/mail/ > > _______________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org > http://rubyforge.org/mailman/listinfo/camping-list -- Dave From IcePapih at lavabit.com Sun Feb 19 11:47:35 2012 From: IcePapih at lavabit.com (Isak Andersson) Date: Sun, 19 Feb 2012 17:47:35 +0100 Subject: Camping Multimount In-Reply-To: References: Message-ID: <22c01f8e-0d67-4f87-86b0-0a9d8dd6c5c6@email.android.com> Well, wouldn't you have to be in the main app for that to work? The linking should be global. The ultimate thing would be if R could take another parameter for which app to use R in. It would check with the config.du file and see how it is mounted and generate a link from that. Something like R(Show, 23), :app => :blog. That functionality is hard to add outside of Camping though.. -- Skickat fr?n min Android-telefon med K-9 E-post. Urs?kta min f?ordighet. David Susco skrev: On the linking thing, could you invoke a method in the main app from a sub-app which takes a sub-app name and a route as variables? The method could then just return R() from the appropriate sub-app. Dave On Sat, Feb 18, 2012 at 4:55 PM, Isak Andersson wrote: > http://pastebin.com/JuHhW0R > > Not sure what went wrong there :/ > > The app is over here https://github.com/MilkshakePanda/Penguin > > I have no idea what that had to do with my config.ru file.. > > > > On Sat, 18 Feb 2012 21:35:39 +0100, Magnus Holm wrote: > >> On Fri, Feb 17, 2012 at 22:13, Isak Andersson >> wrote: >>> >>> Hi, sorry if I'm repeating is email or something, Cinnamon crashed as I >>> was >>> sending the mail and >>> the result in the sent folder was completely empty, so I'm just gonna >>> have >>> to write it all over >>> again, wee! >>> >>> Anyways, my question was about new camping and if we still have the >>> ability >>> to mount multiple smaller >>> apps as the bigger app. I'm creating an app to host my blog and a bunch >>> of >>> other stuff using the new >>> Camping version that comes with Mab + Riak. I want to be able to divide >>> each >>> part of the website into >>> it's own app, but I still want them to share some things, like the >>> public/ >>> folder so that they have the >>> same look. I also want them to share Riak node which they will do. >>> >>> Let's say that my project structure looks something like this >>> >>> app/ >>> app.rb >>> blog.rb >>> forum.rb # Not actually having a forum though, probably >>> public/ >>> Style.css >>> Coolpic.png >>> blog/ >>> controllers.rb >>> views.rb >>> forum/ >>> controllers.rb >>> views.rb >>> config/ >>> ripple.yml >>> foo.yml >>> >>> First off, what is the correct command to mount these parts, and how does >>> it >>> work? The Camping site says: >>> camping apps/**/*.rb. >>> >>> I'm not sure what it does though, and if it would still work in the new >>> version. >> >> >> In the newest (pre-release) version of Camping you solve this by using >> a config.ru-file: >> >> # in config.ru >> require 'app' >> require 'blog' >> require 'forum' >> >> map '/' do >> run App >> end >> >> map '/blog' do >> run Blog >> end >> >> map '/forum' do >> run Forum >> end >> >> You can then run `camping config.ru` to start the server. >> >>> One thing that I would like, would be if all sub-apps for app.rb like >>> blog >>> or forum inherited some of the >>> settings of app.rb. I'm using rack_csrf for csrf protection (obviously) >>> and >>> I find it kind of strange to have to set >>> it up for each and every app instead of just app.rb. >> >> >> The simplest solution is to define something like this: >> >> def App.setup(app) >> app.class_eval do >> set :foo, 123 >> include Bar >> use Baz >> end >> end >> >> And then: >> >> module App >> App.setup(self) >> end >> >> module Blog >> App.setup(self) >> end >> >> module Forum >> App.setup(self) >> end >> >>> >>> Another thing, how do I make app.rb the root of the entire site so it's >>> mounted at foobar.com and not >>> foobar.com/blog like the other ones should be mounted. Also, how do I >>> link >>> between the different apps? >>> Like how do I make app link to the blog or a part of the forum link to a >>> certain part of app? >> >> >> Linking is indeed a hard problem. By default, Camping+Mab prepends the >> mount path to all links. So if you generate "/user/1" inside a >> Forum-template, the link will actually come out as "/forum/user/1". Of >> course, this means that linking to "/blog/post/1" does actually link >> to "/forum/blog/post/1" which probably wasn't what you intended. >> >> I'm really not sure what's the best solution is here? >> >>> I guess that was all the questions I had about this. I'm starting to feel >>> like this would be the ultimate >>> way to build a larger Camping app :) >>> >> >> Have fun :D >>_____________________________________________ >> Camping-list mailing list >> Camping-list at rubyforge.org >> http://rubyforge.org/mailman/listinfo/camping-list >> >>_____________________________________________ >> Delivering best online results. Get better, different Relevant results >> fast ! >> Searching the best of online online. >> >> http://click.lavabit.com/4ehcpqntnpwdsxdqu4axg6a3o453mwgxeoghwyzarmthtqqeyhwb/ >> >>_____________________________________________ > > > > -- > Using Opera's revolutionary email client: http://www.opera.com/mail/ > >_____________________________________________ > Camping-list mailing list > Camping-list at rubyforge.org > http://rubyforge.org/mailman/listinfo/camping-list -- Dave _____________________________________________ Camping-list mailing list Camping-list at rubyforge.org http://rubyforge.org/mailman/listinfo/camping-list _____________________________________________ Delivering best marina jobs results. Get better, different Relevant results fast ! Searching the best of marina jobs online. http://click.lavabit.com/fab8qbmqz161en3o5m4djycm7afdab9k87krkjzbeo5nzwcyhiby/ _____________________________________________ -------------- next part -------------- An HTML attachment was scrubbed... URL: