Displaying 20 results from an estimated 7000 matches similar to: "how to work with a designer"
2006 Dec 11
2
Does mongrel look at the Rails page cache?
Hi all. I''m trying to skip the Rails page cache if the user is logged
in:
---
# Rewrite index to check for static
RewriteCond %{HTTP_COOKIE} !^.*logged_in=yes.*$
RewriteRule ^/$ /index.html [QSA]
# Rewrite to check for Rails cached page
RewriteCond %{HTTP_COOKIE} !^.*logged_in=yes.*$
RewriteRule ^([^.]+)$ $1.html [QSA]
# Redirect all non-static requests to cluster
RewriteCond
2006 Jul 12
3
Most efficient way to "increment" a string?
I have members with usernames. In the event that a new member requests
an already-existing username, I''d like to automatically "increment" a
next-best string:
johnny
johnny1
johnny2
Knowing RoR, my gut tells me there''s some elegant, concise way to do
this, but I can''t think of it. Any advice?
--
Posted via http://www.ruby-forum.com/.
2006 Jan 05
1
ActionMailer in production vs development environments?
I''m using ActionMailer to write an email message; for the time being I''m
creating an email object, but rendering it in the browser instead of
sending it. I have code like this:
email = PasswordMailer.deliver_confirm(@member)
render(:text => "<pre>" + email.encoded + "</pre>")
This works great in the development environment but throws a Rails
2005 Dec 29
8
First module gives "unknown action"
Hi, I''m using "Agile Web Dev. w/Rails", which is great but has a minimum
on grouping controllers into modules. I''ve successfully generated a
module scaffold, so I have:
app/controllers/admin_controller.rb
app/controllers/admin/things_controller.rb
(And the rest of the scaffold output, which seems normal.) However,
browsing to http://localhost:3000/admin/things/
2006 Mar 28
6
RHTML designer
Hi
I have just started playing with ROR and I think its very good. My only
problem is that I am new to web development and know much abount html. I
was wondering if there is any tool/plugin I could use to design rhtml
pages.
Regards
Sandeep
--
Posted via http://www.ruby-forum.com/.
2016 Aug 29
10
[Bug 97537] New: nvc0 occasionally crashes in glDrawArrays in a multi-threaded app
https://bugs.freedesktop.org/show_bug.cgi?id=97537
Bug ID: 97537
Summary: nvc0 occasionally crashes in glDrawArrays in a
multi-threaded app
Product: Mesa
Version: unspecified
Hardware: Other
OS: All
Status: NEW
Severity: normal
Priority: medium
Component:
2006 Mar 27
4
widgets on rails?
Here''s my crazy question of the day.
Has anybody played around with using Rails to create Mac OS X Dashboard Widgets?
Or is that just sick and wrong?
Giles
2006 Feb 24
18
I need more bling!
Hello everyone,
I just showed a friend a prototype of a site offering a service I''m
trying to sell (sorry, not on the Internet yet - he saw it at my
house).
His comment: "Looks like it does everything, but also looks pretty
ugly. You''re not going to wow anybody with that". Sitting back and
thinking about it, he''s dead right - it needs some bling to make it
2006 Mar 03
4
Must one be a web page designer to make use of RoR?
Hey guys,
I''m new to the world of web site development. Although I''m in the
process of learning RoR, I''m not a graphics artist nor a web developer
or web site designer. With that being said, does anyone have any
suggestions for tools to use to create the actual interface for a web
app based on a RoR framework? Obviously the default output of RoR is
fine for
2006 Aug 16
15
OT: finding a designer (bit of a rant)
I''ve written my app already. It outputs valid xhtml and I need a stylesheet
to drop over the top. How hard is it for people to understand that?
It''s a small project, they''d have to do the main design/layout, and then a
little custom styling for some specific elements which don''t appear on every
page. That''s the point of CSS right? write once, use
2006 Mar 23
5
Dirt simple .rcss templates
There was some discussion on this list recently about doing .rcss
templates in Rails using a custom template handler. I''ve come up
with a very simple way to support rcss without a handler. Turns out
all it takes is a route and an action that calls render(:file...). I
put a full write-up on my blog earlier today:
2006 Jun 27
3
User websites with templates.
Hi, I''m very new to Rails and have a general question.
What technique would you use to allow users who have a uniform set of
data to create very un-uniform websites from that data?
One set of data, many different website/output possibilities.
It would have to go beyond CSS. I''m assuming there will potentially be
some level of scripting involved for each template. The goal is
2006 Jan 30
14
RoR admin system
I''m preety new at RoR (and programming), I tried a few tutorials, and
really like the RoR simplicity, but my knowledge of the framework still
isn''t very good (to be true, i understand the basics, but not everything
that''s in the tutorials).
But still I''d like to create a website which has:
- front end interface (with no edit functions)
- admin interface
2006 May 09
25
[OT] How do guys create round corner boxes? Which Graphic tool?
Hello,
Yes, I know it''s off-topic and nuby question, but I really don''t know
anything about graphic, I''m all a coder who lives in his text editor, so
sorry at first!
I need to create round corner box for my web app, I know how to form a box
using CSS, I just dunno how to create those rounded corners.
Is there an easy to use tool for creating them, out there?
Thank you
2005 Mar 03
19
Better tools for authoring the view
I''m hand editing my .css and .rhtml files using SciTE and hitting
refresh in my browser to see the results - its slow going.
What tools are people using to author their .css and .rhtml files?
Thanks,
Neville
_______________________________________________
Rails mailing list
Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
2006 Dec 09
1
Jabber Client
Hello,
I would like to connect jabber client (Exodus) to Asterisk 1.4.
Asterisk 1.4 already supported jabber (client/component), didn't it?
Can I connect Exodus to Asterisk directly?
And if yes, please tell me how to connect?
Kawamoto
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Apr 30
13
Programming with designers in mind
Gents,
We''re hard at work on a new Rails app. We''re a small group of
developers...not a web designer in the bunch. We know CSS enough to be
dangerous, but we shy away from the "softer" skills (all the while
envious of those with that capability).
We intend to grow our application in terms of functionality, but I need
to make sure we keep an eye towards
2006 Jan 17
5
Noob Question concerning code in Agile Web Development with Rails
Hi,
I''m currently learning Ruby on Rails using "Agile Web Development with
Rails." I am using RadRails as my development environment. Everything has
been going along well, until the end of chapter 7. Just before the end of
the chapter, we set up our store pages so that they can be styled with the
depot.css stylesheet. This is where I run into my problem. The stylesheet
2006 Mar 24
6
Chinese characters in the title
Dear experts,
In my application,
Chinese characters work great in the body of the page. However, in the title, they appear as boxes instead of something like " ???????? ".
I also noticed CNET having the same issue:
http://www.cnetnews.com.cn/news/net/story/0,3800050307,39438403,00.htm
So my question to experts here is that is it possible to show Chinese
2006 Apr 08
3
Dreamweaver with Rails
Hi all, I am working with a graphic designer who uses Dreamweaver for
HTML. When he views the .rhtml files in Dreamweaver, he currently has
to rename the .rhtml suffix to .html in order to work with it. Does
anyone know if there is a setting for Dreamweaver to properly view the
.rhtml files without having to rename them?
Thanks,
Jerome
--
Posted via http://www.ruby-forum.com/.