Displaying 5 results from an estimated 5 matches for "hnilica".
2006 Feb 15
6
Problem creating appdoc documentation
...bers --inline-source -c iso-8859-2''
rdoc.rdoc_files.include(''doc/README_FOR_APP'')
rdoc.rdoc_files.include(''app/**/*.rb'')
rdoc.rdoc_files.include(''doc/*.rd'')
rdoc.rdoc_files.include(''*.rd'')
}
--
Radek Hnilica <Radek at Hnilica dot CZ> http://www.hnilica.cz
==============================================================
No matter how far down the wrong road you''ve gone, turn back.
Turkish proverb
... so turn back ... Now!
2002 Aug 06
8
converting MASQ from ipchains
...ASQ -s source_addr -d destination_addr 443 -p tcp
to shorewall. I know that I can write
eth0 source_addr
to /etc/shorewall/masq file
but I can''t found where I can specify the destination address.
The reason for this is to allow one user (computer) access only to the
one site.
--
Radek Hnilica <Radek at Hnilica dot CZ>
when I''m mobile, use <Radek.Hnilica@atlas.cz>
=======================================
No matter how far down the wrong road you''ve gone, turn back.
Turkish proverb
2005 Dec 30
2
I have problem and/or not fully underestand rails --svn
...create components
28 A /tmp/pokus/rev1/components
29 create db
30 A /tmp/pokus/rev1/db
31 create doc
But as you can see, the rails --svn added few files to svn.
What I''m doing wrong. What is --svn option for.
The actual version is on http://www.hnilica.cz/book/ruby/rails.svn.create-project.html
--
Radek Hnilica <Radek at Hnilica dot CZ> http://www.hnilica.cz
==============================================================
No matter how far down the wrong road you''ve gone, turn back.
Turkish proverb
... so turn back ... Now!
2005 Dec 26
16
How to create application with single table with primary key
...lt;label for="employee_first_name">First name</label><br/>
8: <%= text_field ''employee'', ''first_name'' %></p>
Can anyone point me to simple example how to create controller and
view for editing simple keyed table?
--
Radek Hnilica <Radek at Hnilica dot CZ> http://www.hnilica.cz
==============================================================
No matter how far down the wrong road you''ve gone, turn back.
Turkish proverb
... so turn back ... Now!
2005 Dec 28
2
How write input form (layout/controller) so I can enter Id
I reformulate my needs. How I can write (layout/controller) so I can
read value of Id from the new form when creating new record.
With following structure:
CREATE TABLE words (
id INTEGER PRIMARY KEY,
word VARCHAR(40)
);
I want enter new records like:
id=47812, word=''pes''
id=1382, word=''krough''
id=67145, word=''brum''
--