Displaying 15 results from an estimated 15 matches for "jonesieboy".
2006 Feb 13
4
FreeMIS 1.0 Released
...source code might be useful for learners looking for ideas?
If anyone would be interested in helping to develop FreeMIS, please get in
touch.
Details here:
http://sourceforge.net/forum/forum.php?forum_id=539444
Source code here:
http://www.freemis.net/svn/freemis/trunk
--
Robert Jones
jonesieboy[at]google''s-mail-thing[dot]com
2007 Feb 04
2
Can BackgrounDrb help me?
...in the worker and send back a
text variable. I got erb rendering working thanks to the tips from Jacob
Robbins, but none of the ActionView helpers like "image_tag" are
recognised. Can anyone tell me how to make that happen?
Any suggestions gratefully received.
Robert Jones
http://www.jonesieboy.co.uk/blog
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/backgroundrb-devel/attachments/20070204/0d70ec5e/attachment-0001.html
2005 Oct 16
6
FreeMIS Open Source Project - packaging advice needed
Hi. FreeMIS is about ready for a first release as a Ruby-on-Rails based
application.
I''m beginning to realise that there''s a lot of stuff to be installed before
you can get even a WEBrick served version up and running:
MySql, Ruby, ruby-mysql bindings, rubygems, rails, and a couple more gems -
raspell (which needs aspell) and tzinfo.
I''m trying to figure out the
2007 Mar 05
1
FeedTools/FeedUpdater and Rails1.2 Problem
...b:495:in
`require''
from
/usr/lib/ruby/gems/1.8/gems/activesupport-1.4.1/lib/active_support/dependencies.rb:342:in
`new_constants_in''
from
/usr/lib/ruby/gems/1.8/gems/activesupport-1.4.1/lib/active_support/dependencies.rb:495:in
`require''
from /home/jonesieboy/scotedublog/seb/lib/custom_updater.rb:2
from
/usr/lib/ruby/gems/1.8/gems/activesupport-1.4.1/lib/active_support/dependencies.rb:488:in
`load''
from
/usr/lib/ruby/gems/1.8/gems/activesupport-1.4.1/lib/active_support/dependencies.rb:342:in
`new_constants_in''
f...
2006 Feb 11
5
[OT] How to prepend copyright notices to each source file
Sorry for the off-topic post, but I guess someone else may hit the same
issue....
Having developed a rails application, I now need to put GPL text and a
copyright notice at the start of each source file. For the .rb files, this
will look like:
# Copyright 2006 Robert Jones...........
and for the .rhtml files it will look like:
<!-- Copyright 2006 Robert Jones.........
Can anyone think of
2006 Mar 31
5
Best Linux distibution for ruby on rails developement?
Hi,
I am on Kanotix linux since the first distribution was released by Kano.
However I am tired of the "if it can go wrong it will go wrong on
Kanotix" pattern.
Please recommend a distribution that by your experience is best for ruby
on rails development and need no hour-long tweacks for even "simple"
tasks.
Thanks,
Jan Martin
--
Posted via http://www.ruby-forum.com/.
2006 Jul 03
13
Eager loading ActiveRecord objects
I have a complex graph of ActiveRecord entities that I want to load with
one big honkin'' join query to avoid ripple loading. It''s for a report.
However :include doesn''t get me all the way there because I want to load
parents of parents (or children of children). I don''t mind doing the
SQL by hand but I''m not quite sure what to do to get the result
2006 May 09
0
managed server options
Hi - I''m looking for a managed server (preferably UK based) that will host a
Ruby on Rails app via lighttpd or Apache and FastCGI.
I need a managed solution as I don''t have qualifications to maintain
security of a server. Shared hosting is not an option, for security
reasons.
Any ideas?
Cheers,
Robert
2006 May 13
1
Rake clone bug?
Hi. I''m having a problem with my testing. The following table in my
development database (MySQL 4.1.12, InnoDB):
+-----------------------+------------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default |
Extra |
+-----------------------+------------------------+------+-----+---------+----------------+
|
2006 May 14
0
Escapebox Advice/Opinions Please
Hi.
I''m thinking getting a virtual server account at Escapebox. It looks like
its exactly what I need, but it runs FreeBSD, I would have to install Rails
myself, and I''m more of a Linux man (comfortable on the command line).
If someone who has set up a production Rails environment at Escapebox could
offer me some reassurance that the process is reasonably painless, it would
be
2006 May 29
0
Shibboleth Anyone?
Has anyone worked on making a Rails app play nicely with Shibboleth? It
doesn''t look difficult - just wondered if there''s anyone out there I could
ask for help when the time comes.
--
Robert Jones
2006 Feb 24
2
Problem Referencing Fixture Objects
In my tests, I use fixtures, eg pupils.yml might be:
jimmy:
id: 100003
known_as: Jimmy
surname: Page
academic_year_id: 1
gender: m
In the test, @jimmy (the referencing style referred to in Agile Web Dev....)
is nil, whereas pupil(:jimmy) returns the expected Pupil object.
What gives?
Robert
2005 Oct 12
0
Salted Login Generator and https protocol
The redirects in salted login generator are throwing away the "https"s in my
URLs and replacing them with "http"s. I''ve tried playing with :protocol
option, but had no luck, nor could I find anything online to help.
Anyone got any ideas?
--Robert
2006 Jul 05
5
''m having trouble with BackgrounDrb
Hi. I thought that BackgrounDrb was the perfect solution for my long
running report production tasks.
But I can''t seem to get anything useful back out of it.
I set up a simple test worker that just does
class TestWorker < BackgrounDRb::Rails
attr_reader :pupil
def do_work(args)
@progress=0
@pupil=Pupil.find(3)
sleep rand*10
@progress=100
end
when I try to
2006 Jul 01
8
Seeking Advice on Pattern for Multi-Organization Application
I am the developer of FreeMIS - an Open Source management information
system for schools. It currently holds the data for one school - so
different schools host different instances of FreeMIS.
I would like to expand the domain of a single instance of FreeMIS, so
that it covers all the schools in an education authority. THis will
enable me to implement authority-wide functionality.
Is there