I am in the process of generating a photo viewer (online/networked) that our artists can update a directory with sub directories creating a dynamic viewer, allowing others to view it. Currently we are using a SVN system but there are some machines that do not have the repo so it's not an option to use it.
What I am doing: recursively checking a given directory and populating a page (of sorts) with images and a "link" structure Each Directory will create a tab and inside that tab the .png files will populate a window, each artist will have access to this directory and can add and remove anything, the code will generate the window
Some ideas I have on allowing artists to view these images:
- I created a C# HtmlTextWriter mockup viewer, the disadvantage to this is I have to pack the images with the HTML index.
- I have access to google websites API (wiki) but looking it over it's not the best way of creating what I need. And I need to release a tool to update the wiki, when there are changes, does anyone know if there is a FTP system for google websites that can act as a generator for these images?
- I have access to a secure shared network folder, I could create a HTML src pointing to the shared.
- I might be able to get a company DB but it's a lot of work for a little viewer.
Is there anything that you could suggest? Or am I missing some other suggestion, Just looking for some good ideas or tools.
Thanks in advance!
I created a web server on a VM installed PHP and generated a page for each folder and populated them with the content (If there was images) while using a HTTP GET method to traverse the folder structure.