Displaying 20 results from an estimated 10000 matches similar to: "Just to say hello"
2006 Jul 17
3
Where are the balloons ?
Just for information, the Balloons site (http://balloon.hobix.com) raises an Camping error.
I tried to blow a balloon (''blow blow'') and the answer is "balloon not found".
Seems that the MySQL server has crashed !
_why, will you get some time to fix this ( or is it due to temporary maintenance) ?
BTW, Camping would be nice to develop a small ''rescue
2006 Jul 16
1
Hello~!~
Just saying hello and I''m looking forward to seeing all the cool camping stuff
on this list.
I''m just starting out with Ruby and have a long way to go. I hope that I can
learn a lot here.
Adam: sounds really interesting.
_why: My condolences about those bruises. I assume they''re from the pelting
you got on RedHanded a while back. Harsh. If it makes you feel any
2006 Jul 15
6
Hello
Hello, just checking into the amazing world famous 4k web-framework mailing
list esquire!
-El
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/camping-list/attachments/20060715/f1f487ee/attachment.html
2008 May 22
2
Camping-list Digest, Vol 23, Issue 8
Removed 25% of the framework? Gosh, I wish _why wasn''t so darn verbose...
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://rubyforge.org/pipermail/camping-list/attachments/20080522/7612c03e/attachment.html>
2007 Jan 06
1
Camping Podcast
I''m putting together an episode of the Rails podcast that will be dedicated to Camping.
I already have the first interview recorded. I''d like to get 3 or 4 more short interviews (short...maybe 4.096 minutes each).
If you''d like instant fame, send me an email and tell me what camping project you would like to talk about, what your skype username is, and when is a good
2006 Jul 12
1
+ camping 1.4.123
And now:
gem install camping --source code.whytheluckystiff.net
I hope this will be the last development release before 1.5.
* ActiveRecord no longer required or installed.
* If you refer to Models::Base, however, ActiveRecord will be loaded
with autoload. (see lib/camping/db.rb)
* new Camping::FastCGI.serve which will serve a whole directory of apps
(see TheCampingServer[1])
*
2006 Feb 10
1
! camping paid gigs
Oh, boy, this is great. Anyone here want to get paid for doing some
camping work? Because O''Reilly is interested in doing a 20-30 page PDF
on Camping. Please do it, guys. I won''t blab about how much it pays,
but if it took you a couple days, you''d get back a hacka lot of moaney.
Anyway, post your camping paid gigs, people. If we could have one guy
in the world
2006 Oct 05
1
+ camping and mongrel issues
I''ve been having some trouble with certain apps under Camping with Mongrel,
particularly when lots of static files get served. So, I''ve borrowed some ideas
from the RailsHandler and tightened up the Mongrel::Camping classes which come
with Mongrel.
If you''re having any troubles or want to test it out, update from Mongrel SVN
and then `rake install`. It should produce
2006 Jul 25
3
[UHH] any blogs sprung from camping?
Hal Fulton has been e-mailing me about putting together a simple blogging
package for Camping. Perhaps start with the blog in the examples and add a few
things. Does anyone here want to collaborate with him? Or do any of you have
your own works to offer?
He''s mentioned he wants something with its own template syntax, but I think he
could hack that in.
_why
2007 Jan 06
4
? camping apps in gems
So would you like this:
$ wget http://rubyforge.org/gems/junebug-0.0.18.gem
$ camping junebug-0.0.18.gem
Or should it be:
$ gem install junebug
$ touch junebug.gemcamp
$ camping junebug.gemcamp
_why
2006 May 16
0
! camping 1.4.1.96
I''m just about ready to release 1.4.2. Here''s the pre-release:
gem install camping --source code.whytheluckystiff.net
The biggest recent change is that the Camping commandline tool now
allows mounting of several apps. I''ve eliminated examples/serve and am
encouraging use of the camping tool. Instead, use:
camping examples/blog/blog.rb examples/tepee/tepee.rb
2006 May 18
0
+ Camping::FastCGI
Getting Camping to work with FastCGI is a little clunky, since FastCGI
doesn''t really understand mounting apps and sometimes the environment
vars are a little whack. To keep the postambles easy to read, I''ve
moved the handy stuff into lib/camping/fastcgi.rb.
== Mounting a Single App
Assuming: Camping.goes :Blog ... this goes in your postamble ...
require
2006 Jul 06
0
+ camping 1.4.120
Okay, let''s see.
gem install camping --source code.whytheluckystiff.net
A bunch of great stuff.
* Camping::Apps stores constants for all loaded apps.
* bin/camping can be given a directory. [1]
Like: camping examples/
* Console mode -- thank zimbatm.
Use: camping -C yourapp.rb
* Call controllers with Camping.method_missing.
Tepee.get(:Index) #=> (Response)
2006 Aug 13
3
+ migrations in camping
Camping apps are supposed to be little independent apps, often contained in a
single file, which create the database tables and manage them without hassle.
These days it''s common to see in a Camping app:
module Tepee::Models
def self.schema(&block)
@@schema = block if block_given?
@@schema
end
end
Tepee::Models.schema do
create_table :tepee_pages,
2006 Jun 05
0
Camping Troubles
On Sat, Jun 03, 2006 at 10:27:28PM -0400, Axis Sivitz wrote:
> I removed the specified lines of code, as that only dealt with detection
> of non-camping apps anyway, and tried to run it again. The server
> started, but going to localhost:3301/ yields the following error:
In order to use bin/camping these days, you must use Camping.goes.
So make sure:
* Before you do anything else --
2006 May 18
0
! camping 1.4.2
Camping 1.4.2 is out, becoming the encouraged stable version. I''ve
uploaded to Rubyforge, so it should be available in the next thirty
minutes or so.
= 1.4.2
=== 18th May, 2006
* Efficient file uploads for multipart/form-data POSTs.
* Camping tool now uses Mongrel, if available. If not, sticks with WEBrick.
* Multiple apps can be loaded with the camping tool, each mounted
according
2006 Apr 11
0
! camping 1.4
Okay, Camping 1.4 is out.
gem install camping --source code.whytheluckystiff.net
The only recent change is that the request body gets store in the @in
variable as an open stream. It''s also okay to pass an IO object out of
Camping.
Lastly, Camping + Mongrel (SVN) now supports the X-Sendfile header. [1]
Very swift and cool.
_why
[1]
2007 Jan 06
0
! camping 1.5.180
Just a few minor changes released before I add gem support.
* R() now accepts a Hash in its arguments which can be used to build a query
string.
R(Topic, @topic.id, :page => 24) #=> "/topic/14?page=24"
* Base#to_a, discussed here.[1] Can be used to forward requests.
Both the camping and camping-omnibus gems are fresh.
gem install camping-omnibus --source
2006 May 22
0
+ camping 1.4.103 and markaby 0.4.55
Consider this Camping 1.5 pre-release.
gem install camping --source code.whytheluckystiff.net
Look for:
* The new Markaby features.
<http://redhanded.hobix.com/inspect/lessMethod_missingInMarkaby.html>
<http://redhanded.hobix.com/inspect/markabySMagicPermeationBranch.html>
* The Camping::FastCGI class.
* R(C, ...) properly escapes wacky arguments.
_why
2006 Oct 31
0
! camping-omnibus 1.5.176
gem install camping-omnibus --source code.whytheluckystiff.net
Considering the number of optional dependencies now in Camping, I''ve put
together an eigengem which will load all of the recommended libraries that most
devoted campers will want: ActiveRecord, Mongrel, SQLite3, RedCloth and the
acts_as_versioned gem. (Those last two are used in the examples.)
Stuff like mosquito and