Displaying 20 results from an estimated 48 matches for "awd".
Did you mean:
and
2006 Jun 24
1
@version_control_book not available while testing - AWD book 1 page 148
In the page 148 of the AWD book it''s mentioned that the while testing
@products and @version_control_book are automatically made available.
That''s not the case with me. In my test environment I don''t get those two
variables.
I was wondering if anything has changed in Rails 1.1 because in the ne...
1999 Nov 03
1
Samba 2.0.6pre3 snapshots available.
As Andrew is a little busy right now I've made a Samba 2.0.6pre3
snapshot available at :
Source code
-----------
ftp.samba.org:/pub/samba/alpha/samba-2.0.6pre3.tar.gz
RedHat 6.1 Intel RPM
--------------------
ftp.samba.org:/pub/samba/alpha/samba-2.0.6pre3-19991102.i386.rpm
RedHat 6.1 Source RPM
---------------------
ftp.samba.org:/pub/samba/alpha/samba-2.0.6pre3-19991102.src.rpm
Please
2007 Apr 10
1
AWD page 624-626 Understanding how Apache, Mongrel and Rais work together?
I''m trying to understand the ''Big Picture'' of how Ruby on Rails
applications are deployed and operate in distributed environment (one
deployment server, many remote servers).
I follow AWD by Dave Thomas'' explanation from pages 624-626. From
reading these pages I have these questions;
1. How does the RonR instance on the ''remote'' server gain access to
the program logic to process the HTTP request?
2. Is Mongrel the actual program running that receives the...
2006 Feb 19
3
Rails urls & the AWD book
Greetings!
I''m having a hard time understanding the way Rails handles urls. I''m specifically having real trouble with the image_urls in the Depot app in the Agile Web Development book.
If I enter "\image\file.png" in the Add Product page, the image is displayed in the other views and Properties shows http://localhost:3000/images/file.png
If I leave off the leading
2006 Apr 03
3
AJAX Insertion.Before
Can anyone point me to an example of how to use the Insertion.Before technique? I''ve just begun trying to use AJAX and worked through Curt''s "Ajax on Rails". The description in AWD of what this does is just what I need, there''s no example of how to use it, and I''m getting no joy using Google. Any help is tremendously appreciated.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/atta...
2005 Mar 09
20
WebGUI Scripts announcement
...s
* multi-language ready (english/italian)
* IE/Firefox compatible
Hosting system prerequisites (besides Shorewall specifics)
* sudo utility (usually part of all distro, anyhow available at
http://www.courtesan.com/sudo/)
Curious enough?
URL: http://62.110.196.251
User: awdwall
Password: gogetit
Any comments, critics, suggestions, opinions are more than welcome.
Support
Please don''t even think I''ll be able to react to your requests/bug reports
as ''someone'' ;-) else does (altough I''ll try to do the best my competence...
2006 Apr 15
3
Dumb newbie question - text formatting?
I have a MySQL "text" element that I''m trying to display, but it''s not
formatting (i.e. it''s all one big paragraph). In the AWD depot example
it doesn''t look like they do anything special, but they get formatted
text. I''ve tried it with both:
<%= show.description %> - puts text, and formats according to any HTML
tags I typed in.
and
<%= h(show.description) %> - puts text and HTML tags, no...
2006 Mar 14
3
specifying table type
I''ve been creating my tables using the command line approach Dave advocates in AWD. I just noticed that they''re being created as MyISAM-type tables. I remember reading (but not where) that I should be creating these as InnoDB-type tables. So, two questions...
1) Is the table type important? (a "why" component to the answer would be nice too ;-) )
2) If s...
2011 Oct 28
3
Is active record 3.1.1 supposed to be threadsafe?
...to accessing the cache while another thread cleared
the same cache.
Assuming active record 3.1.1 is supposed to be threadsafe, then the
culprit for the issue would be
ActiveRecord::ConnectionAdapters::QueryCache, which doesn''t synchronize
access to its @query_cache. See
https://github.com/awd-switzerland/rails/commit/22aeda0f0553fdcabca156012b67f2aa2add293c
for a possible way to resolve that. However, I''m not sure in which layer
the rails team wants to handle synchronization.
Also notice that the patch is naive in that it simply assumes thread
support in ruby to be enabled.
Be...
2006 Apr 27
7
HTML Title
Hi there,
If I have an application.rhtml template what''s the best way to set
the contents of title element in the html -> head area of the
template to something set in the view for action in a controller. I
want to just have one template which renders the basic layout for all
pages and I''ve been scratching my head over this one for a couple of
hours now.
Any help
2005 Apr 11
2
Xen, Se Linux
...and Moneyextra.
Chase de Vere Financial Solutions plc is an independent financial adviser and is authorised and regulated by the Financial Services Authority.
Registered Office: 1 King Street, Manchester M2 6AW. Registered in England No: 1723284 VAT No: 503 374571
A wholly owned subsidiary of AWD Group plc. AWD Group plc is a member of AWD Holding AG, Europe''s premier independent financial services group.
***************************************************************************
This message is intended for the named recipient only and is confidential
and no other person can pl...
2006 Mar 02
9
FastCGI vs. Simple CGI
I''ve seen several postings where FastCGI is being used with RoR
projects, yet, most of the material I''ve read (Dave Thomas'' book, online
articles, etc) recommend not using FastCGI anymore because it is a
dormant project and hasn''t been updated since 2003 (I think???).
So, I went out and got Simple CGI instead. It had to be compiled and
installed from
2006 Apr 15
8
Inheritance in Rails - I need some help
...o is set it up so that I can search Category and
Subcategory with one .find call. So:
Category.find(:all, <etc)
will find categories and subcategories.
Now, I believe this can be done by making Subcategory a subclass of
Category. Am I right? Unfortunately, there''s almost nothing in AWD about
subclasses and has_many relationships, so I''m lost. I tried to just
change Subcategory to extend Category in the model, but that led to
errors (no such field: "categories.category_id"). What else do I need to
change to allow Subcategory to extend Category and also belon...
2007 Jan 31
1
help with extensions
...od look at
attributes of the object on which the finder method is ultimately being
executed (here, user) to determine the conditions.
class User
has_many :reading
has_many :articles, :through => :readings do
def rated_at_or_above(rating) # this is the finder
method in AWD -- works fine
find :all, :conditions => [''rating >= ?'', rating]
end
def rated_at_or_above_threshold # but can I do something
like this? (doesn''t work)
find :all, :conditions => [''rating >= ?'', user.thresh...
2006 Jun 12
3
standard way of downloading & using rails standard plugins
Hi,
I am a newbie to ruby & rails.
Can anybody give me some inputs as to how to download & use standard rails
plugins.
Any help regarding this will be greatly appreciated.
--
If not you then who.....
If not now then when......
-----------------------------------------------------
With Best Regards,
Medha.
-------------- next part --------------
An HTML attachment was scrubbed...
2016 Sep 08
1
[PATCH] virt-v2v: Support for ova exported from AWS [v2]
1. AWS the name tag is not mandatory - using default as a name
2. AWD doesn't prefix 'ovf:' as prefix to disk path
There is an open bug for oVirt:
https://bugzilla.redhat.com/show_bug.cgi?id=1371843
Signed-off-by: Shahar Havivi <shaharh@redhat.com>
---
v2v/input_ova.ml | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/v2v...
2016 Sep 06
2
[PATCH] virt-v2v: Support for ova exported from AWS
1. AWS the name tag is not mandatory - using default as a name
2. AWD doesn't prefix 'ovf:' as prefix to disk path
There is an open bug for oVirt:
https://bugzilla.redhat.com/show_bug.cgi?id=1371843
Signed-off-by: Shahar Havivi <shaharh@redhat.com>
---
v2v/input_ova.ml | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/v2...
2006 Mar 15
3
[login_generator] implementing login limits
...g this would be done by setting a time
limit on the session. Researching
ActionController::Base#process_cgi (which apparently is just
an alias for Ruby''s CGI::Session) turns up the :session_expires
option which seems to be what I''m looking for. However, I see
the following in the AWD book, pg.306:
":session_expires
The absolute time of the expiry of this session. Like
:new_session, this option should probably not be used
under Rails."
Hmmm. Any suggestions?
--
Posted via http://www.ruby-forum.com/.
2005 Nov 14
6
ActionMailer - Sent but no mail?
Hi,
I am attempting to use ActionMailer to send out an email (SMTP) and am having an issue. The log files show that the email is sent, but the email is not making it to my inbox.
I have followed the documentation both on the Wiki and in the AWD book. I''m not sure which setting I have incorrect and need some pointers.
:authentication - should this be set to true, or :login, :plain, etc..??? I''m finding conflicting documentation.
:domain - Not quite sure what to put here. I have tried cox.net, www.cox.net,...
2006 Feb 26
5
Plugins? Components?
Hi,
Newbie here :)
Can someone help explain the difference between "plugins" (put in the
/vendor/plugins directory) and "components" (put into the /components
directory)?
Is it just that "plugins" have an init.rb file that is automatically loaded?
Also, how can I dynamically find out which files/controllers are
available in the /components directory?
Thanks,