Reading only files within a dir

T

Tristan Knowles

I am trying to create two html drop downs in a ruby
script. The first to select a /var/log directory, and
the second to view a specific file within that
directory.

I'm just unsure of how to pass a post variable back
into the ruby script, or whether there is another way
to do this?

My current code is like this:

=3D=3D=3D=3D=3D=3D=3D=3D
# List dir names
puts "<tr><td colspan=3D\"2\"><form action=3D\"\"
name=3D\"select_dir\" id=3D\"select_dir\" method\"post\">"
puts "<select name=3D\"select_dir\">"
Dir.entries(Log_Location).each do |logdir|
puts "<option>#{logdir}</option>"
end
puts "</select>\n<input type=3D\"submit\"
name=3D\"Submit_Dir\" id=3D\"Submit_Dir\" value=3D\"Change
Directory\">"
puts "</form></td></tr>"

# List File names
puts "<tr><td colspan=3D\"2\"><form action=3D\"\"
name=3D\"select_log\" id=3D\"select_log\" method=3D\post\">"
puts "<select name=3D\"select_log\">"
logfiles =3D Dir.foreach(Log_Dir) do |logfile|
puts "<option>#{logfile}</option>"
end
puts "</select>\n<input type=3D\"submit\"
name=3D\"Submit_Log\" id=3D\"Submit_Log\" value=3D\"Select
Log\">"
puts "</form></td></tr>"
=3D=3D=3D=3D=3D=3D=3D=3D

So, i need to pass the post variable from the select
box for the dir to the select box below, and from
there onto my script below to actually view the
contents (already have the last part working, using a
normal variable).

Also, is there any different between Dir.entries and
Dir.foreach? Isn't Dir.foreach the same as
Dir.entries("/dir").each?


Thanks.
Tristan


=09
___________________________________________________________=20
How much free photo storage do you get? Store your holiday=20
snaps for FREE with Yahoo! Photos http://uk.photos.yahoo.com
 
T

Tristan Knowles

Sorry, terrible subject description, I was thinking of
something different and then realised what my main
problem actually was, but forgot to change the subject :p.


=09
=09
=09
___________________________________________________________=20
Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with voic=
email http://uk.messenger.yahoo.com
 
T

Tristan Knowles

Ahh. So this one needs CGI.

I will have a play with cgi then and see how things
go.



=09
=09
=09
___________________________________________________________=20
Yahoo! Messenger - NEW crystal clear PC to PC calling worldwide with voic=
email http://uk.messenger.yahoo.com
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,733
Messages
2,569,440
Members
44,832
Latest member
GlennSmall

Latest Threads

Top