We have a documentation library with a directory structure on Server A
We have an intranet site on Server B
Can anyone recommend software that will take the directory and Word documents on Server A and create web pages with the same directory structure creating links with file names to post on the intranet site on Server B
Or even better create the same directory structure and convert the docs to webpages and host them from the intranet site on Server B?
TIA
Is there software that?
Re: Is there software that?
Well, assuming that Server B is connecting via network share to Server A, it should take about 2 php functions to make a listing, format it into html, make links (including nesting subdirs), and output it. I don't recall all the syntax but search your favorite php site for "directory listing" and it should be fairly easy to figure out.
Trying to convert them automagically would probably turn into a disaster.
Trying to convert them automagically would probably turn into a disaster.
Re: Is there software that?
That's tough work. I know Open Office contains an open source component which can do that. The CMS that the company I work for has developed uses that for document conversions.Giraffe }{unter wrote:Or even better create the same directory structure and convert the docs to webpages and host them from the intranet site on Server B?
Last edited by Eraser on Fri Feb 01, 2008 7:45 am, edited 2 times in total.
Re: Is there software that?
If you run a copy function to take the docs across to the web server, register the file type so it's handled properly in whatever HTTP server package you're using, then make the folder web-accessible... the HTTP server should generate the folder listings for you automatically.
As for conversion, I think you'd need to look at one of those PDF/document conversion gateways.
As for conversion, I think you'd need to look at one of those PDF/document conversion gateways.
-
- Posts: 4022
- Joined: Sat Mar 12, 2005 6:24 pm
Re: Is there software that?
Convert* or save** the Word document to DocBook and use DocBook XSL*** to transform it into HTML.
* http://wiki.docbook.org/topic/ConvertOt ... sToDocBook
** http://www.yawcpro.com/
*** http://wiki.docbook.org/topic/DocBookXslStylesheets
* http://wiki.docbook.org/topic/ConvertOt ... sToDocBook
** http://www.yawcpro.com/
*** http://wiki.docbook.org/topic/DocBookXslStylesheets
Last edited by ^misantropia^ on Fri Feb 01, 2008 7:50 am, edited 1 time in total.
-
- Posts: 883
- Joined: Wed Jun 08, 1983 7:00 am
Re: Is there software that?
mass converting doc to html usually ends up in funky formatting in my experience...
personally i'd take creeps option of making a network share, then a virtual folder on the web service and then link the virtual folder to the share... make the whole thing browsable and readable and job done?
personally i'd take creeps option of making a network share, then a virtual folder on the web service and then link the virtual folder to the share... make the whole thing browsable and readable and job done?
-
- Posts: 2941
- Joined: Fri Mar 17, 2000 8:00 am
Re: Is there software that?
Yes, I plan on checking that and Docbok out to see what they are all about. Looks like the php would be less work and build the directory structure on the fly 
