473,503 Members | 2,352 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

need different view option for *.html file

I am in the process of developing material that to be used for
technical software training. The material would be *.html based.
Ideally, I want web software to create two different options for
presenting the material.

One option would be to present the material in a slide format like
power point. This would be ideal for presenting the material in a
classroom setting to multiple attendees. The material would be in
point form only. The instructor would fill in the details.

The other option would present the material in a detailed, wordy
online format suitable for self paced training. What the instructor
would normally say during the class would be explicitly written out.
This format could even present more information than would be covered
in the class.

Do you know of any software that can do this?

Either there could be a switch while viewing or alternatively, a web
design software is used to generate two *.html files. One would be the
slide version and the other the detailed version.

Thanks!!
Oct 11 '08 #1
8 1270
jeanluc wrote:
I am in the process of developing material that to be used for
technical software training. The material would be *.html based.
Ideally, I want web software to create two different options for
presenting the material.

One option would be to present the material in a slide format like
power point. This would be ideal for presenting the material in a
classroom setting to multiple attendees. The material would be in
point form only. The instructor would fill in the details.

The other option would present the material in a detailed, wordy
online format suitable for self paced training. What the instructor
would normally say during the class would be explicitly written out.
This format could even present more information than would be covered
in the class.

Do you know of any software that can do this?
A text editor.
Oct 12 '08 #2
In article
<ef**********************************@j22g2000hsf. googlegroups.com>,
jeanluc <je***************@hotmail.comwrote:
I am in the process of developing material that to be used for
technical software training. The material would be *.html based.
Ideally, I want web software to create two different options for
presenting the material.
There is no software that creates options like this beyond the normal
ways to make webpages that gives the user options. One of the ways to
create a webpage is to open a plain text editor and write up the page in
HTML.

One option would be to present the material in a slide format like
power point. This would be ideal for presenting the material in a
classroom setting to multiple attendees. The material would be in
point form only. The instructor would fill in the details.
This is easy enough. Make this version in PP or in PDF format and offer
it as as an option in the web page. You do this by simply

<a href="pageByPage.pdf">In summary point form</a>

The user of the website, for example, the teacher will download the file
and will be able to project it to the class

The other option would present the material in a detailed, wordy
online format suitable for self paced training. What the instructor
would normally say during the class would be explicitly written out.
This format could even present more information than would be covered
in the class.

Do you know of any software that can do this?
Either there could be a switch while viewing or alternatively, a web
design software is used to generate two *.html files. One would be the
slide version and the other the detailed version.
This is the other way to go, you simply provide a set of html pages that
are suitable for teachers in class. In the website, you have a link to
this set of pages. This set of pages wiould simply be simpler and in
point form (ULs and OLs would predominate)

--
dorayme
Oct 12 '08 #3
In article <OK******************************@comcast.com>,
Scott Bryce <sb****@scottbryce.comwrote:
Do you know of any software that can do this?

A text editor.
My God, some people have the gift of simplicity. It took me paragraphs
to say the same thing. Where can I learn such brevity?

I have my favourite course studies booklet right here, all from the Dale
Carnegie Schools and this is not one of the options...

<g>

--
dorayme
Oct 12 '08 #4
On 10/11/08 04:42 pm, jeanluc wrote:
I am in the process of developing material that to be used for
technical software training. The material would be *.html based.
Ideally, I want web software to create two different options for
presenting the material.
One of the promises of XML is the possibility of transforming a base
document into various other formats by application of XSLT. In your case
it would transform the XML doc into an XHTML document, or a Powerpoint
presentation, or a PDF, etc.
I cannot say if such software yet exists. Maybe OpenOffice?

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Oct 12 '08 #5
On 2008-10-11, jeanluc <je***************@hotmail.comwrote:
I am in the process of developing material that to be used for
technical software training. The material would be *.html based.
Ideally, I want web software to create two different options for
presenting the material.

One option would be to present the material in a slide format like
power point. This would be ideal for presenting the material in a
classroom setting to multiple attendees. The material would be in
point form only. The instructor would fill in the details.

The other option would present the material in a detailed, wordy
online format suitable for self paced training. What the instructor
would normally say during the class would be explicitly written out.
This format could even present more information than would be covered
in the class.

Do you know of any software that can do this?

Either there could be a switch while viewing or alternatively, a web
design software is used to generate two *.html files. One would be the
slide version and the other the detailed version.
You could have a look at http://meyerweb.com/eric/tools/s5/

Then you could use the same markup with one stylesheet for "presentation
mode" and a different one for looking at it on the web.

You can hide details with e.g. div.wordyDetails { display: none } in the
presentation stylesheet.
Oct 12 '08 #6
jeanluc escribió:
I am in the process of developing material that to be used for
technical software training. The material would be *.html based.
Ideally, I want web software to create two different options for
presenting the material.

One option would be to present the material in a slide format like
power point. This would be ideal for presenting the material in a
classroom setting to multiple attendees. The material would be in
point form only. The instructor would fill in the details.

The other option would present the material in a detailed, wordy
online format suitable for self paced training. What the instructor
would normally say during the class would be explicitly written out.
This format could even present more information than would be covered
in the class.

Do you know of any software that can do this?

Either there could be a switch while viewing or alternatively, a web
design software is used to generate two *.html files. One would be the
slide version and the other the detailed version.
Web pages can be asociated with alternate stylesheets. A modern browser can
allow the user to select the desired one in the client side. Al least
Firefox suport this. See:

http://www.w3.org/TR/html401/present....html#h-14.3.2

A stylesheet can filter out specific parts of the contents by specifying
display: none for them.
--
Manuel Collado - http://lml.ls.fi.upm.es/~mcollado
Oct 12 '08 #7
Manel Collado wrote:
A stylesheet can filter out specific parts of the contents by
specifying display: none for them.
That is true, but then wouldn't you be using the style sheet to
determine content?

If the OP wants a PowerPoint presentation for some users, and a detailed
series of web pages for others, he can just create both and provide
links to both. The only problem I can see is that with the same(ish)
content in both places, he may have to do some extra work if the content
changes.
Oct 12 '08 #8
jeanluc wrote:
I am in the process of developing material that to be used for
technical software training. The material would be *.html based.
Ideally, I want web software to create two different options for
presenting the material.

One option would be to present the material in a slide format like
power point. This would be ideal for presenting the material in a
classroom setting to multiple attendees. The material would be in
point form only. The instructor would fill in the details.

The other option would present the material in a detailed, wordy
online format suitable for self paced training. What the instructor
would normally say during the class would be explicitly written out.
This format could even present more information than would be covered
in the class.

Do you know of any software that can do this?

Either there could be a switch while viewing or alternatively, a web
design software is used to generate two *.html files. One would be the
slide version and the other the detailed version.

Thanks!!
"Konverter" sells a tool that will convert a web page (html) into
some other pure graphic image: khtml2xxx.exe

Those graphic images can easily be turned into a slide show.

Oct 16 '08 #9

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

Similar topics

1
2289
by: Arun Nair | last post by:
Hi, I have the following jsp page. I am able to view only a part of it(until the occurence of the first City text box). If i remove the first few fields from the page, I am able to see a few...
7
1650
by: Keyed4U | last post by:
I have a drop down list system (works to some extent) for a date range search that I need to do a little more. The following is a small sample from the script: function modify_mo_list(mo_model)...
9
2912
by: sk | last post by:
I have an applicaton in which I collect data for different parameters for a set of devices. The data are entered into a single table, each set of name, value pairs time-stamped and associated with...
2
2910
by: Mike Button | last post by:
Hello all, I am really really desperate on what I should do, and I am asking for help from anyone in this newsgroup, here's the situation: I am creating a form that is being run on a server...
4
2293
by: Marquisha | last post by:
If this is off-topic, please forgive me. But I thought this might be the perfect spot to get some advice about how to proceed with a project. Working on a Web site design for a nonprofit...
6
1740
by: daveyand | last post by:
Hey Guys, I've stumped. I created a function that does various things to select boxes. Namely Get All selected indexes, populate array with these values
6
2139
by: tshad | last post by:
Is there a way to set one item in a dropdown list to a different color? I have a case where I might have 15 items and one is a default and would like to set the default as green where all the...
20
4222
by: mike | last post by:
I help manage a large web site, one that has over 600 html pages... It's a reference site for ham radio folks and as an example, one page indexes over 1.8 gb of on-line PDF documents. The site...
1
3189
by: deepaks85 | last post by:
Dear All, I want to send some data through a form with Multiple attachment in an HTML Format. I have tried it but it is not working for me. I am able to send data without attachment but with the...
0
7207
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
7093
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
7291
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
7357
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7012
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
7468
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
4690
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
3171
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
402
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.