473,396 Members | 1,599 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

image gallery - it should be easier than this


All I want to do is to read a list of the image files in my folder and
display them on a page. That way I don't have to re-write the page, I
can just upload extra images.

I don't need fancy bells or whistles or slide shows or sliders or
anything.

The smallest google search I come up with offers a million pages, most
of them bells and whistle types and I can't find the wood for the trees.

Can anybody help please?

Richard
--

Aug 6 '06 #1
11 1401
Richard said the following on 8/6/2006 4:46 AM:
>
All I want to do is to read a list of the image files in my folder and
display them on a page.
Unless you have server side scripting available then you won't be able
to as javascript has no way to access the server file system.
That way I don't have to re-write the page, I can just upload extra images.
I don't need fancy bells or whistles or slide shows or sliders or anything.
What you could possibly do is upload your images, get an FTP listing,
copy it to a text file, create an array from the names, then upload that
file as a .js file and include it in the page.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Aug 6 '06 #2
In message <DZ******************************@comcast.com>, Randy Webb
<Hi************@aol.comwrites
>Richard said the following on 8/6/2006 4:46 AM:
> All I want to do is to read a list of the image files in my folder
and display them on a page.

Unless you have server side scripting available then you won't be able
to as javascript has no way to access the server file system.
>That way I don't have to re-write the page, I can just upload extra images.
I don't need fancy bells or whistles or slide shows or sliders or anything.

What you could possibly do is upload your images, get an FTP listing,
copy it to a text file, create an array from the names, then upload
that file as a .js file and include it in the page.
Hmm... this is where our definitions of "simple" differ. ;-)

That is beyond my skills at the moment.

I've found a program that does a neat version here on my own PC and
generates the html page, as in:-

http://www.topshareware.com/Actual-W...load-13520.htm

Which can be set up to produce this:-

http://www.squeaky.demon.co.uk/Freec...y/gallery.html
So far it's the best way I've found.
<sigh>

Thanks for your reply ;-)

Richard

--

Aug 6 '06 #3
Randy Webb wrote:
Richard said the following on 8/6/2006 4:46 AM:
>>
All I want to do is to read a list of the image files in my folder and
display them on a page.

Unless you have server side scripting available then you won't be able
to as javascript has no way to access the server file system.
>That way I don't have to re-write the page, I can just upload extra
images.
I don't need fancy bells or whistles or slide shows or sliders or
anything.

What you could possibly do is upload your images, get an FTP listing,
copy it to a text file, create an array from the names, then upload that
file as a .js file and include it in the page.
I also have a CMS/images-display question.. is is at all possible,
either with JS or server-side (which in my case would be either Java or
PHP) to detect DIMENSIONS of the images? I do not want a system which
sizes images for you.. I want images to display at exactly same
dimension they are.. I was reading this the other day..

http://www.alistapart.com/articles/magazinelayout/

but he seems to be implying only way to to do this is by letting system
determine dimensions of images.. is there another way?

thanks..
Aug 6 '06 #4


OK...

I can have a page with two frames and into frame2 I could load

www.sompage.com.foldername/

Which, with no index file present, will give me a listing of all the
files in that folder.

Given that these are image files, can I read and parse the text present
in frame2 and parse it and hand it to javascript in frame 1 as a
variable so that I can then load the image into a table cell?

Richard, feeling brain damaged.

--

Aug 6 '06 #5
maya said the following on 8/6/2006 10:36 AM:
Randy Webb wrote:
>Richard said the following on 8/6/2006 4:46 AM:
>>>
All I want to do is to read a list of the image files in my folder
and display them on a page.

Unless you have server side scripting available then you won't be able
to as javascript has no way to access the server file system.
>>That way I don't have to re-write the page, I can just upload extra
images.
I don't need fancy bells or whistles or slide shows or sliders or
anything.

What you could possibly do is upload your images, get an FTP listing,
copy it to a text file, create an array from the names, then upload
that file as a .js file and include it in the page.

I also have a CMS/images-display question.. is is at all possible,
either with JS or server-side (which in my case would be either Java or
PHP) to detect DIMENSIONS of the images?
PHP can read image dimensions on the server:

<URL: http://us2.php.net/manual/en/function.getimagesize.php >

Then, PHP can tell your script what it needs to know.

I do not want a system which sizes images for you.. I want images
to display at exactly same dimension they are.. I was reading this
the other day..
http://www.alistapart.com/articles/magazinelayout/
Now I remember why I don't read alistapart anymore.
but he seems to be implying only way to to do this is by letting system
determine dimensions of images.. is there another way?
That's not the implication I got from the article but there is another
way, see above.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Aug 6 '06 #6
Richard said the following on 8/6/2006 11:19 AM:
>
OK...

I can have a page with two frames and into frame2 I could load

www.sompage.com.foldername/

Which, with no index file present, will give me a listing of all the
files in that folder.
That is what I was talking about doing. Open that page in your browser,
copy the image names, and then strip out the text you don't want, wrap
each name in "<imageName>" and make it an entry in an array. Save the
file as a .js file and then include that file in the real page.
Given that these are image files, can I read and parse the text present
in frame2 and parse it and hand it to javascript in frame 1 as a
variable so that I can then load the image into a table cell?
Maybe, depending on the browser and what kind of file/listing the server
gives.

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Aug 6 '06 #7
In message <hY******************************@comcast.com>, Randy Webb
<Hi************@aol.comwrites
>Richard said the following on 8/6/2006 11:19 AM:
> OK...
I can have a page with two frames and into frame2 I could load
www.sompage.com.foldername/
Which, with no index file present, will give me a listing of all the
files in that folder.

That is what I was talking about doing. Open that page in your browser,
copy the image names, and then strip out the text you don't want, wrap
each name in "<imageName>" and make it an entry in an array. Save the
file as a .js file and then include that file in the real page.
Now THIS is the bit that's currently beyond me. I'm self taught so I
have a good few gaps. I don't mind learning and bashing code about
until it begs for mercy - I take it you DO mean that I can do all that
with javascript?
>
>Given that these are image files, can I read and parse the text present
in frame2 and parse it and hand it to javascript in frame 1 as a
variable so that I can then load the image into a table cell?

Maybe, depending on the browser and what kind of file/listing the
server gives.
Hm...
Richard
--

Aug 6 '06 #8
Randy Webb wrote:
maya said the following on 8/6/2006 10:36 AM:
>Randy Webb wrote:
>>Richard said the following on 8/6/2006 4:46 AM:

All I want to do is to read a list of the image files in my folder
and display them on a page.

Unless you have server side scripting available then you won't be
able to as javascript has no way to access the server file system.

That way I don't have to re-write the page, I can just upload extra
images.
I don't need fancy bells or whistles or slide shows or sliders or
anything.

What you could possibly do is upload your images, get an FTP listing,
copy it to a text file, create an array from the names, then upload
that file as a .js file and include it in the page.

I also have a CMS/images-display question.. is is at all possible,
either with JS or server-side (which in my case would be either Java
or PHP) to detect DIMENSIONS of the images?

PHP can read image dimensions on the server:

<URL: http://us2.php.net/manual/en/function.getimagesize.php >
really? that's great!! :) thank you...
Aug 6 '06 #9
Richard said the following on 8/6/2006 5:03 PM:
In message <hY******************************@comcast.com>, Randy Webb
<Hi************@aol.comwrites
>Richard said the following on 8/6/2006 11:19 AM:
>> OK...
I can have a page with two frames and into frame2 I could load
www.sompage.com.foldername/
Which, with no index file present, will give me a listing of all the
files in that folder.

That is what I was talking about doing. Open that page in your
browser, copy the image names, and then strip out the text you don't
want, wrap each name in "<imageName>" and make it an entry in an
array. Save the file as a .js file and then include that file in the
real page.

Now THIS is the bit that's currently beyond me. I'm self taught so I
have a good few gaps. I don't mind learning and bashing code about
until it begs for mercy - I take it you DO mean that I can do all that
with javascript?
You could write a script that would read the list from a web page,
maybe, and then try to parse out the filenames. But it's a lot simpler
to do it manually.

var images = new Array()
var num = 0;
images[num++] = "name of first image";
images[num++] = "name of second image";
images[num++] = "name of third image";

It is quite simple to do that with a text editor with a good
Find/Replace in it. Remove all the text except image names, then
Find/Replace.

Find: ^P
Replace with: ";^Pimages[num++]="

--
Randy
comp.lang.javascript FAQ - http://jibbering.com/faq & newsgroup weekly
Javascript Best Practices - http://www.JavascriptToolbox.com/bestpractices/
Aug 7 '06 #10
In message <nu******************************@comcast.com>, Randy Webb
<Hi************@aol.comwrites
>Richard said the following on 8/6/2006 5:03 PM:
>In message <hY******************************@comcast.com>, Randy Webb
<Hi************@aol.comwrites
>>Richard said the following on 8/6/2006 11:19 AM:
OK...
I can have a page with two frames and into frame2 I could load
www.sompage.com.foldername/
Which, with no index file present, will give me a listing of all the
files in that folder.

That is what I was talking about doing. Open that page in your
browser, copy the image names, and then strip out the text you don't
want, wrap each name in "<imageName>" and make it an entry in an
array. Save the file as a .js file and then include that file in the
Now THIS is the bit that's currently beyond me. I'm self taught so
I have a good few gaps. I don't mind learning and bashing code about
until it begs for mercy - I take it you DO mean that I can do all that
javascript?

You could write a script that would read the list from a web page,
maybe, and then try to parse out the filenames. But it's a lot simpler
to do it manually.
Yes boss, I know boss. Honest boss ;-) But the whole point is that I'd
like to have a situation where I'm free to simply upload new images into
the folder as often as I like, remove old ones etc. - and I DON'T have
to re-write the gallery page every time I do it.

I'm lazy that way. Quite apart from teaching myself a whole bunch of
stuff as I go along I reckon I'll do less work over all now if I can do
this than I would over the years to come re-writing the page to meet
every new update.
>
var images = new Array()
var num = 0;
images[num++] = "name of first image";
images[num++] = "name of second image";
images[num++] = "name of third image";

It is quite simple to do that with a text editor with a good
Find/Replace in it. Remove all the text except image names, then
Find/Replace.

Find: ^P
Replace with: ";^Pimages[num++]="
I think we're just about there.

Gawd knows if I can find it again but I saw a HTML parse script that
worked quickly and easily with "start" and "end" strings.

I think it was inclusive, But even so if I hand it "<a img src" and
"</a>" to work with... I'd be home and dry. More or less ;-)

All I've got to do now is find that one page again out of all the
hundreds I've waded through over the weekend.

Thanks.
--

Aug 7 '06 #11
JRS: In article <q7**************@squeaky.demon.co.uk>, dated Sun, 6
Aug 2006 09:46:51 remote, seen in news:comp.lang.javascript, Richard
<Ri*****@squeaky.demon.co.ukposted :
>
All I want to do is to read a list of the image files in my folder and
display them on a page. That way I don't have to re-write the page, I
can just upload extra images.
I assume you have a Demon TAM account or similar, in which case you have
a directory structure on Demon's server (which one might hope Web page
javascript can access; but it cannot) and you should have a matching
directory structure on your own computer, assumed to be a PC, which Web
page javascript cannot possibly access, but which, if you are
fenestrated, can be accessed by J[ava]script running under WSH, for
which a better place to ask is the microsoft.public.scripting.*
hierarchy.
Your best move, ISTM, is to have a program or script which runs on your
PC and generates a Web page listing the image files as links.

This command line, run at a MS-DOS prompt and using COLS via sig line 3,
does the basics if run in a directory containing Web pages :-
dir *.* /b | COLS { 'a * 'href= q 1- q } 1- { '/a } { 'br }
generating lines like :-
<a href="estr-tbl.txt">estr-tbl.txt</a><br>
and this for images :-
dir *.* /b | COLS { 'p } 1- { 'br } { 'img * 'src= q 1- q }
generating lines like :-
<p>13.gif<br><img src="13.gif">
In each case redirect to a file and use the copy command to join a
respectable top and tail - the whole can be put in a batch file.
On my site there are various programs & scripts for helping prepare the
Web site; bit none do what you ask for.

>Richard
--
The Sig should follow the SigSep.
--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk DOS 3.3, 6.20; Win98. ©
Web <URL:http://www.merlyn.demon.co.uk/- FAQqish topics, acronyms & links.
PAS EXE TXT ZIP via <URL:http://www.merlyn.demon.co.uk/programs/00index.htm>
My DOS <URL:http://www.merlyn.demon.co.uk/batfiles.htm- also batprogs.htm.
Aug 7 '06 #12

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
by: DaRemedy | last post by:
Hiya, Can anyone kindly help me to get started in creating a PHP/MySQL image gallery, it doesn't have to be anything fancy, just something that automatically reads the images in the folder and...
0
by: Perttu Pulkkinen | last post by:
Does anybody know a php-based image gallery, where final looks of the actual site would not be determined by the application? I mean that there would only be a php-library of objects/functions that...
2
by: robert | last post by:
I've made a gallery site for an artist and it works well -- the gallery page has a central large image which is swapped when thumbnail images are clicked. I'm using Dreamweaver's "SwapImage"...
8
by: Chris Dewin | last post by:
Hi. I run a website for my band, and the other guys want an image gallery. I'm thinking it would be nice and easy, if we could just upload a jpg into a dir called "gallery/". When the client...
0
by: numbnutz | last post by:
Hi, I am currently working on an XML Gallery for my girlfriend's brother who is a photographer. I have created a flash front end template and am using an XML database to load the images and...
5
by: dabhand | last post by:
Hi This page http://www.dabhand.co.nz/ayupdev/gallery-riders.html works great in IE but not in Firefox... any help would be appreciated. It refers to an external javascript file which I have...
10
by: cjparis | last post by:
Hello everyone. If anyone can give me a hand I would be gratefull Am doing a site which requires a moving element and have used DHTML to do it. Have a simple Browser detect script to sort IE...
25
by: Gilles Ganault | last post by:
Hello I've been googling for a couple of hours, but still haven't found what I need: - really simple PHP-based image gallery software. Ideally, just a single file that I just drop into a...
4
by: saunders1989 | last post by:
Hi, my goal is to create a website with an image gallery. i have about 6 buttons at the bottom of the page whcih when clicked will take you to a different album of photos. i have created the...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.