hypercontent-users Mailing List for HyperContent (Page 19)
Brought to you by:
alexvigdor
You can subscribe to this list here.
2004 |
Jan
|
Feb
(4) |
Mar
(6) |
Apr
(4) |
May
(3) |
Jun
(1) |
Jul
(7) |
Aug
(4) |
Sep
(31) |
Oct
(11) |
Nov
(30) |
Dec
(22) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(23) |
Feb
(11) |
Mar
(22) |
Apr
(13) |
May
(31) |
Jun
(27) |
Jul
(32) |
Aug
(4) |
Sep
(25) |
Oct
(21) |
Nov
(31) |
Dec
(28) |
2006 |
Jan
(14) |
Feb
(12) |
Mar
(17) |
Apr
(21) |
May
(6) |
Jun
(4) |
Jul
(26) |
Aug
(24) |
Sep
(19) |
Oct
(24) |
Nov
(34) |
Dec
(17) |
2007 |
Jan
(10) |
Feb
(43) |
Mar
(60) |
Apr
(10) |
May
(20) |
Jun
(2) |
Jul
(17) |
Aug
(38) |
Sep
(45) |
Oct
(5) |
Nov
(4) |
Dec
(5) |
2008 |
Jan
|
Feb
(1) |
Mar
|
Apr
(10) |
May
(2) |
Jun
(2) |
Jul
|
Aug
(4) |
Sep
(1) |
Oct
(5) |
Nov
(1) |
Dec
(1) |
2009 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Carl B. <C.P...@hu...> - 2006-04-24 15:13:33
|
Thanks Alex, Thats working for me now. I've turned the email address into a link easy enough, but I want to turn the persons name into a link to their page. I have only just started looking at it now, do you have any pointers? Cheers Carl Alex Vigdor wrote: > Hi Carl, > What about something like this: > > <xsl:apply-templates select="/cms:wrapper/cms:include/page/bodytext" /> > > <xsl:template match="bodytext"> > <xsl:value-of select="@firstname"/> > <xsl:value-of select="@lastname"/> > <xsl:value-of select="@email"/> > </xsl:template> > > You'll of course need to make sure that your include has the attribute > data="yes". > > Cheers, > Alex > > On Apr 24, 2006, at 8:22 AM, Carl Barrow wrote: > >> Hi Alex, >> >> On one of the sites here in Hull I have a file for each member of >> staff with the following dtd to define it: >> >> <!ELEMENT page (rightbox*,bodytext,leftbox?)> >> <!ELEMENT rightbox (html)> >> <!ELEMENT bodytext >> (photo,qualifications,researchinterests,researchcategories,biography,modulestaught,memberships,publications)> >> >> <!ELEMENT photo (html)> >> <!ELEMENT qualifications (html)> >> <!ELEMENT researchinterests (html)> >> <!ELEMENT researchcategories (html)> >> <!ELEMENT biography (html)> >> <!ELEMENT modulestaught (html)> >> <!ELEMENT memberships (html)> >> <!ELEMENT publications (html)> >> <!ELEMENT leftbox (html)> >> <!ATTLIST rightbox title CDATA #REQUIRED> >> <!ATTLIST leftbox title CDATA #REQUIRED> <!ATTLIST bodytext title >> CDATA #REQUIRED> >> <!ATTLIST bodytext firstname CDATA #REQUIRED> >> <!ATTLIST bodytext lastname CDATA #REQUIRED> >> <!ATTLIST bodytext academictitle CDATA #REQUIRED> >> <!ATTLIST bodytext honorarytitle CDATA #REQUIRED> >> <!ATTLIST bodytext extention CDATA #REQUIRED> >> <!ATTLIST bodytext roomnumber CDATA #REQUIRED> >> <!ATTLIST bodytext email CDATA #REQUIRED> >> <!ATTLIST page navigationtitle CDATA #REQUIRED> >> >> I want to include the firstname, lastname and email for each member >> of staff on an index page. At the moment I only seem to be able to >> include everything on a staff page The code I have is as follows: >> >> >> <xsl:template name="bodytext"> >> <xsl:for-each >> select="/cms:wrapper/cms:include[@pattern='/people/staff/*.xml']"> >> <xsl:apply-templates /> >> </xsl:for-each> >> </xsl:template> >> >> I though I would be able to use: >> <xsl:apply-templates >> select="/cms:wrapper/cms:source/page/bodytext/@firstname" /> >> >> but that isn't working. Can you see what I'm doing wrong at all? >> >> Cheers >> Carl >> >> --************************************ >> >> Carl Barrow >> Systems Integrator >> e-Services >> The University of Hull >> Cottingham Road >> Hull >> HU6 7RX >> Ext. 6838 >> ************************************ >> >> ***************************************************************************************** >> >> To view the terms under which this email is distributed, please go to >> http://www.hull.ac.uk/legal/email_disclaimer.html >> ***************************************************************************************** >> >> >> >> ------------------------------------------------------- >> Using Tomcat but need to do more? Need to support web services, >> security? >> Get stuff done quickly with pre-integrated technology to make your >> job easier >> Download IBM WebSphere Application Server v.1.0.1 based on Apache >> Geronimo >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 >> _______________________________________________ >> Hypercontent-users mailing list >> Hyp...@li... >> https://lists.sourceforge.net/lists/listinfo/hypercontent-users > > > > ------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users -- ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 ************************************ ***************************************************************************************** To view the terms under which this email is distributed, please go to http://www.hull.ac.uk/legal/email_disclaimer.html ***************************************************************************************** |
From: Alex V. <av...@co...> - 2006-04-24 13:39:55
|
Hi Carl, What about something like this: <xsl:apply-templates select="/cms:wrapper/cms:include/page/bodytext" /> <xsl:template match="bodytext"> <xsl:value-of select="@firstname"/> <xsl:value-of select="@lastname"/> <xsl:value-of select="@email"/> </xsl:template> You'll of course need to make sure that your include has the attribute data="yes". Cheers, Alex On Apr 24, 2006, at 8:22 AM, Carl Barrow wrote: > Hi Alex, > > On one of the sites here in Hull I have a file for each member of > staff with the following dtd to define it: > > <!ELEMENT page (rightbox*,bodytext,leftbox?)> > <!ELEMENT rightbox (html)> > <!ELEMENT bodytext > (photo,qualifications,researchinterests,researchcategories,biography,m > odulestaught,memberships,publications)> > <!ELEMENT photo (html)> > <!ELEMENT qualifications (html)> > <!ELEMENT researchinterests (html)> > <!ELEMENT researchcategories (html)> > <!ELEMENT biography (html)> > <!ELEMENT modulestaught (html)> > <!ELEMENT memberships (html)> > <!ELEMENT publications (html)> > <!ELEMENT leftbox (html)> > <!ATTLIST rightbox title CDATA #REQUIRED> > <!ATTLIST leftbox title CDATA #REQUIRED> <!ATTLIST bodytext title > CDATA #REQUIRED> > <!ATTLIST bodytext firstname CDATA #REQUIRED> > <!ATTLIST bodytext lastname CDATA #REQUIRED> > <!ATTLIST bodytext academictitle CDATA #REQUIRED> > <!ATTLIST bodytext honorarytitle CDATA #REQUIRED> > <!ATTLIST bodytext extention CDATA #REQUIRED> > <!ATTLIST bodytext roomnumber CDATA #REQUIRED> > <!ATTLIST bodytext email CDATA #REQUIRED> > <!ATTLIST page navigationtitle CDATA #REQUIRED> > > I want to include the firstname, lastname and email for each member > of staff on an index page. At the moment I only seem to be able > to include everything on a staff page The code I have is as follows: > > > <xsl:template name="bodytext"> > <xsl:for-each select="/cms:wrapper/cms:include[@pattern='/people/ > staff/*.xml']"> > <xsl:apply-templates /> > </xsl:for-each> > </xsl:template> > > I though I would be able to use: > <xsl:apply-templates select="/cms:wrapper/cms:source/page/bodytext/ > @firstname" /> > > but that isn't working. Can you see what I'm doing wrong at all? > > Cheers > Carl > > -- > ************************************ > > Carl Barrow > Systems Integrator > e-Services > The University of Hull > Cottingham Road > Hull > HU6 7RX > Ext. 6838 > ************************************ > > ********************************************************************** > ******************* > To view the terms under which this email is distributed, please go > to http://www.hull.ac.uk/legal/email_disclaimer.html > ********************************************************************** > ******************* > > > ------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, > security? > Get stuff done quickly with pre-integrated technology to make your > job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users |
From: Carl B. <C.P...@hu...> - 2006-04-24 12:22:51
|
Hi Alex, On one of the sites here in Hull I have a file for each member of staff with the following dtd to define it: <!ELEMENT page (rightbox*,bodytext,leftbox?)> <!ELEMENT rightbox (html)> <!ELEMENT bodytext (photo,qualifications,researchinterests,researchcategories,biography,modulestaught,memberships,publications)> <!ELEMENT photo (html)> <!ELEMENT qualifications (html)> <!ELEMENT researchinterests (html)> <!ELEMENT researchcategories (html)> <!ELEMENT biography (html)> <!ELEMENT modulestaught (html)> <!ELEMENT memberships (html)> <!ELEMENT publications (html)> <!ELEMENT leftbox (html)> <!ATTLIST rightbox title CDATA #REQUIRED> <!ATTLIST leftbox title CDATA #REQUIRED> <!ATTLIST bodytext title CDATA #REQUIRED> <!ATTLIST bodytext firstname CDATA #REQUIRED> <!ATTLIST bodytext lastname CDATA #REQUIRED> <!ATTLIST bodytext academictitle CDATA #REQUIRED> <!ATTLIST bodytext honorarytitle CDATA #REQUIRED> <!ATTLIST bodytext extention CDATA #REQUIRED> <!ATTLIST bodytext roomnumber CDATA #REQUIRED> <!ATTLIST bodytext email CDATA #REQUIRED> <!ATTLIST page navigationtitle CDATA #REQUIRED> I want to include the firstname, lastname and email for each member of staff on an index page. At the moment I only seem to be able to include everything on a staff page The code I have is as follows: <xsl:template name="bodytext"> <xsl:for-each select="/cms:wrapper/cms:include[@pattern='/people/staff/*.xml']"> <xsl:apply-templates /> </xsl:for-each> </xsl:template> I though I would be able to use: <xsl:apply-templates select="/cms:wrapper/cms:source/page/bodytext/@firstname" /> but that isn't working. Can you see what I'm doing wrong at all? Cheers Carl -- ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 ************************************ ***************************************************************************************** To view the terms under which this email is distributed, please go to http://www.hull.ac.uk/legal/email_disclaimer.html ***************************************************************************************** |
From: Alex V. <av...@co...> - 2006-04-06 19:21:43
|
Hi Carl, I don't really have anything to add here . . . I would also answer "no" if my users asked me. It is possible that another open source WYSIWYG might have color-coded source view, but I have not personally seen it. Cheers, Alex On Apr 6, 2006, at 9:54 AM, Carl Barrow wrote: > Hi Alex, > > This one I don't think will be possible. > I've looked though the TinyMCE Forum and not found anything. Do > you think it might be possible to color code the HTML Source view? > This is something that I was asked, my answer was 'no, not at this > time' But I thought I'd ask your opinion. > > Cheers > Carl > > -- > ************************************ > > Carl Barrow > Systems Integrator > e-Services > The University of Hull > Cottingham Road > Hull > HU6 7RX > Ext. 6838 > ************************************ > > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the > live webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users |
From: Carl B. <C.P...@hu...> - 2006-04-06 13:55:17
|
Hi Alex, This one I don't think will be possible. I've looked though the TinyMCE Forum and not found anything. Do you think it might be possible to color code the HTML Source view? This is something that I was asked, my answer was 'no, not at this time' But I thought I'd ask your opinion. Cheers Carl -- ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 ************************************ |
From: Carl B. <C.P...@hu...> - 2006-04-06 08:36:55
|
Hi Alex, The apply_source_formatting option did the trick. It may be useful to have this option in the code as default, but I'd probably set it to false as default. It's easy enough to turn on if it's required. Cheers Carl Alex Vigdor wrote: > Hi Carl, > OK, I understand what you're after now! There are a couple things > that will help here. First, in the pipeline definition for the XML > editor (mode=xml-edit), take out the final "TrimStage" if it is still > there; this gobbles up whitespace and can adversely affect structure > in the html source. There's also a TinyMCE setting which by default > strips line breaks; you'll want to make sure it's turned off in > /screens/modal-xml-tiny-mce.xsl with this bit in the config block: > > remove_linebreaks : false > > There's another TinyMCE config option I haven't tried that might also > help: > > apply_source_formatting : true > > I'm happy to make all the above settings default; I was planning > already on doing so with the trimming and line breaks, and if you > think the formatting is helpful I can put that in the default as well. > > Cheers, > Alex > > On Apr 5, 2006, at 9:08 AM, Carl Barrow wrote: > >> Hi Alex, >> >> Yes, I have tested on Firefox. I've been suggesting that my users >> use Firefox for some time since it's far better, even though the Uni >> won't support it! Perhaps I should test with IE a bit more. >> >> What I was asking was when editing a piece of content using tinyMCE >> and clicking on the 'edit HTML Source' Icon, could the HTML code be >> more structured, with tabs, linebreaks etc so it makes it easier to >> read. >> >> Cheers, >> Carl >> >> Alex Vigdor wrote: >>> Hi Carl, >>> I'm glad the testing has gone well. You must be Firefox users, >>> because I still seem to have a couple of unresolved issues with the >>> new file browser in IE, but I think they're pretty close to worked >>> out. I'm not sure I get what you're after with the structured view; >>> could you describe what you're looking for in more detail? >>> >>> Cheers, >>> Alex >>> >>> On Apr 5, 2006, at 7:22 AM, Carl Barrow wrote: >>> >>>> Hi Alex, >>>> >>>> I have got on very well with configuring HyperContent 2.0 here in >>>> Hull and the users I have tested it with are very happy with the >>>> way things now work, especially the links and images. One comment I >>>> had yesterday which came from the two web designers who look after >>>> our public site was that they would like a structured view of the >>>> HTML content rather than just a wrapped view. Is this something >>>> that might be configurable? >>>> >>>> Cheers >>>> Carl >>>> >>>> --************************************ >>>> >>>> Carl Barrow >>>> Systems Integrator >>>> e-Services >>>> The University of Hull >>>> Cottingham Road >>>> Hull >>>> HU6 7RX >>>> Ext. 6838 >>>> ************************************ >>>> >>>> -- >>>> >>>> ------------------------------------------------------- >>>> This SF.Net email is sponsored by xPML, a groundbreaking scripting >>>> language >>>> that extends applications into web and mobile media. Attend the >>>> live webcast >>>> and join the prime developer group breaking into this new coding >>>> territory! >>>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 >>>> >>>> _______________________________________________ >>>> Hypercontent-users mailing list >>>> Hyp...@li... >>>> https://lists.sourceforge.net/lists/listinfo/hypercontent-users >>> >>> >>> >>> ------------------------------------------------------- >>> This SF.Net email is sponsored by xPML, a groundbreaking scripting >>> language >>> that extends applications into web and mobile media. Attend the live >>> webcast >>> and join the prime developer group breaking into this new coding >>> territory! >>> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 >>> >>> _______________________________________________ >>> Hypercontent-users mailing list >>> Hyp...@li... >>> https://lists.sourceforge.net/lists/listinfo/hypercontent-users >> >> --************************************ >> >> Carl Barrow >> Systems Integrator >> e-Services >> The University of Hull >> Cottingham Road >> Hull >> HU6 7RX >> Ext. 6838 >> ************************************ >> >> -- >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by xPML, a groundbreaking scripting >> language >> that extends applications into web and mobile media. Attend the live >> webcast >> and join the prime developer group breaking into this new coding >> territory! >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 >> _______________________________________________ >> Hypercontent-users mailing list >> Hyp...@li... >> https://lists.sourceforge.net/lists/listinfo/hypercontent-users > > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the live > webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users -- ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 ************************************ -- |
From: Alex V. <av...@co...> - 2006-04-05 14:38:39
|
Hi Carl, OK, I understand what you're after now! There are a couple things that will help here. First, in the pipeline definition for the XML editor (mode=xml-edit), take out the final "TrimStage" if it is still there; this gobbles up whitespace and can adversely affect structure in the html source. There's also a TinyMCE setting which by default strips line breaks; you'll want to make sure it's turned off in / screens/modal-xml-tiny-mce.xsl with this bit in the config block: remove_linebreaks : false There's another TinyMCE config option I haven't tried that might also help: apply_source_formatting : true I'm happy to make all the above settings default; I was planning already on doing so with the trimming and line breaks, and if you think the formatting is helpful I can put that in the default as well. Cheers, Alex On Apr 5, 2006, at 9:08 AM, Carl Barrow wrote: > Hi Alex, > > Yes, I have tested on Firefox. I've been suggesting that my users > use Firefox for some time since it's far better, even though the > Uni won't support it! Perhaps I should test with IE a bit more. > > What I was asking was when editing a piece of content using tinyMCE > and clicking on the 'edit HTML Source' Icon, could the HTML code be > more structured, with tabs, linebreaks etc so it makes it easier to > read. > > Cheers, > Carl > > Alex Vigdor wrote: >> Hi Carl, >> I'm glad the testing has gone well. You must be Firefox >> users, because I still seem to have a couple of unresolved issues >> with the new file browser in IE, but I think they're pretty close >> to worked out. I'm not sure I get what you're after with the >> structured view; could you describe what you're looking for in >> more detail? >> >> Cheers, >> Alex >> >> On Apr 5, 2006, at 7:22 AM, Carl Barrow wrote: >> >>> Hi Alex, >>> >>> I have got on very well with configuring HyperContent 2.0 here in >>> Hull and the users I have tested it with are very happy with the >>> way things now work, especially the links and images. One comment >>> I had yesterday which came from the two web designers who look >>> after our public site was that they would like a structured view >>> of the HTML content rather than just a wrapped view. Is this >>> something that might be configurable? >>> >>> Cheers >>> Carl >>> >>> --************************************ >>> >>> Carl Barrow >>> Systems Integrator >>> e-Services >>> The University of Hull >>> Cottingham Road >>> Hull >>> HU6 7RX >>> Ext. 6838 >>> ************************************ >>> >>> -- >>> >>> >>> ------------------------------------------------------- >>> This SF.Net email is sponsored by xPML, a groundbreaking >>> scripting language >>> that extends applications into web and mobile media. Attend the >>> live webcast >>> and join the prime developer group breaking into this new coding >>> territory! >>> http://sel.as-us.falkag.net/sel? >>> cmd=lnk&kid=110944&bid=241720&dat=121642 >>> _______________________________________________ >>> Hypercontent-users mailing list >>> Hyp...@li... >>> https://lists.sourceforge.net/lists/listinfo/hypercontent-users >> >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by xPML, a groundbreaking scripting >> language >> that extends applications into web and mobile media. Attend the >> live webcast >> and join the prime developer group breaking into this new coding >> territory! >> http://sel.as-us.falkag.net/sel? >> cmd=lnk&kid=110944&bid=241720&dat=121642 >> _______________________________________________ >> Hypercontent-users mailing list >> Hyp...@li... >> https://lists.sourceforge.net/lists/listinfo/hypercontent-users > > -- > ************************************ > > Carl Barrow > Systems Integrator > e-Services > The University of Hull > Cottingham Road > Hull > HU6 7RX > Ext. 6838 > ************************************ > > -- > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the > live webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users |
From: Carl B. <C.P...@hu...> - 2006-04-05 13:08:26
|
Hi Alex, Yes, I have tested on Firefox. I've been suggesting that my users use Firefox for some time since it's far better, even though the Uni won't support it! Perhaps I should test with IE a bit more. What I was asking was when editing a piece of content using tinyMCE and clicking on the 'edit HTML Source' Icon, could the HTML code be more structured, with tabs, linebreaks etc so it makes it easier to read. Cheers, Carl Alex Vigdor wrote: > Hi Carl, > I'm glad the testing has gone well. You must be Firefox users, > because I still seem to have a couple of unresolved issues with the > new file browser in IE, but I think they're pretty close to worked > out. I'm not sure I get what you're after with the structured view; > could you describe what you're looking for in more detail? > > Cheers, > Alex > > On Apr 5, 2006, at 7:22 AM, Carl Barrow wrote: > >> Hi Alex, >> >> I have got on very well with configuring HyperContent 2.0 here in >> Hull and the users I have tested it with are very happy with the way >> things now work, especially the links and images. One comment I had >> yesterday which came from the two web designers who look after our >> public site was that they would like a structured view of the HTML >> content rather than just a wrapped view. Is this something that >> might be configurable? >> >> Cheers >> Carl >> >> --************************************ >> >> Carl Barrow >> Systems Integrator >> e-Services >> The University of Hull >> Cottingham Road >> Hull >> HU6 7RX >> Ext. 6838 >> ************************************ >> >> -- >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by xPML, a groundbreaking scripting >> language >> that extends applications into web and mobile media. Attend the live >> webcast >> and join the prime developer group breaking into this new coding >> territory! >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 >> _______________________________________________ >> Hypercontent-users mailing list >> Hyp...@li... >> https://lists.sourceforge.net/lists/listinfo/hypercontent-users > > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the live > webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users -- ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 ************************************ -- |
From: Alex V. <av...@co...> - 2006-04-05 12:58:46
|
Hi Carl, I'm glad the testing has gone well. You must be Firefox users, because I still seem to have a couple of unresolved issues with the new file browser in IE, but I think they're pretty close to worked out. I'm not sure I get what you're after with the structured view; could you describe what you're looking for in more detail? Cheers, Alex On Apr 5, 2006, at 7:22 AM, Carl Barrow wrote: > Hi Alex, > > I have got on very well with configuring HyperContent 2.0 here in > Hull and the users I have tested it with are very happy with the > way things now work, especially the links and images. One comment I > had yesterday which came from the two web designers who look after > our public site was that they would like a structured view of the > HTML content rather than just a wrapped view. Is this something > that might be configurable? > > Cheers > Carl > > -- > ************************************ > > Carl Barrow > Systems Integrator > e-Services > The University of Hull > Cottingham Road > Hull > HU6 7RX > Ext. 6838 > ************************************ > > -- > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the > live webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users |
From: Carl B. <C.P...@hu...> - 2006-04-05 11:22:44
|
Hi Alex, I have got on very well with configuring HyperContent 2.0 here in Hull and the users I have tested it with are very happy with the way things now work, especially the links and images. One comment I had yesterday which came from the two web designers who look after our public site was that they would like a structured view of the HTML content rather than just a wrapped view. Is this something that might be configurable? Cheers Carl -- ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 ************************************ -- |
From: Carl B. <C.P...@hu...> - 2006-04-04 12:38:15
|
I picked up the URL in an email sent though to the JA-SIG list and thought it might be useful for anyone creating templates for HyperContent. http://www.dpawson.co.uk/xsl/sect2/sect21.html Many Thanks Carl -- ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 ************************************ |
From: Alex V. <av...@co...> - 2006-04-03 17:44:56
|
Hi Vangel, I have embedded my responses below, and I am copying the =20 hypercontent-users list as I think your questions may be relevant to =20 others. On Apr 2, 2006, at 5:07 PM, Vangel V. Ajanovski wrote: > Hello Alex, > > I found your email in a presentation from JASIG conference about =20 > Hypercontent 2.0 > > I need some info about two things in Hypercontent that I'm not able =20= > to achieve because of lack of examples in the documentation I was =20 > able to find. Could you help we some explanations? > > Your presentation on JA-SIG Winter Conference Dec. 05 states that =20 > it's possible to use network mounted drives and that it can be used =20= > to feed XHTML documents for uPortal. > > So I have two problems with those two things. > > 1. I don't really understand how should I configure a filesystem =20 > for publishing to a network mount in Windows 2003. > > The web server is on another computer that is also running Windows =20 > 2003 and I want the content to be published to that computer. I =20 > already tried by installing cygwin and openssh daemon on the other =20 > server and I'm using SFTP to transfer the files, but I don't like =20 > it. I would like to use some native windows mechanism and the user =20 > that is publishing the changes of the files to be able to input his =20= > login and password for the network share to which the files will be =20= > transfered. Is it possible and how? There are currently only two filesystem implementations that can take =20= a username & password at runtime: FTP and SFTP. If you would like to =20= tie in a native Windows server protocol like SMB, there will need to =20 be some existing Java client library (e.g. JCIFS) which you can use =20 as the provider; you would write a thin wrapper around this client =20 that subclasses RemoteFileSystemImpl, like both the FTP and SFTP =20 implementations. Subclassing RemoteFileSystemImpl simplifies the =20 filesystem API and takes care of caching directory listings and some =20 synchronization issues, though you'll see some further =20 synchronization in both the FTP and SFTP code. Ultimately the goal =20 is to provide an implementation of IFileSystemManager which can be =20 mapped to a key in /source/properties/FileSystemConfig.xml. You can =20 then use this key to populate the "type" attribute of the "filesystem-=20= def" element under a "build", "publish" or "mount" tag in a project =20 definition, or under the "repository" tag in a project declaration =20 file (/projects/*/filesystem.xml). All the Filesystem code is under the package "/org/hypercontent/=20 filesystem" and its subpackage "impl". Our normal pattern of using file servers gives the HyperContent =20 application complete read/write access to relevant areas on an NFS or =20= SMB server which is already mounted, and restricts access within =20 those areas using HyperContent's own authorization mechanisms. This =20 way the user does not have to log in again once they are logged into =20 HyperContent, and HyperContent doesn't have to know anything about =20 the file server technology: it just gets to the files through the =20 normal Java IO APIs. > 2. I have trouble with XHTML document editing. > > I am managing a simple web site that merely provides XHTML files =20 > for WebProxy channels in uPortal. I imported this site as a ZIP =20 > file into hypercontent and I want to edit the files. If when I =20 > click edit the file is opened as plain text everything will be ok. =20 > But, if for example I open it in WYSIWYG editor, all x/html header =20 > tags will be removed. > > So the document that was for example: > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> > "http://www.w3.org/1999/xhtml"> > OPEN DAY !!!! =D0=9E=D0=A2=D0=92=D0=9E=D0=A0=D0=95=D0=9D =D0=94=D0=95= =D0=9D !!!! OPEN DAY !!!! =20 > =D0=9E=D0=A2=D0=92=D0=9E=D0=A0=D0=95=D0=9D =D0=94=D0=95=D0=9D > > > will become > OPEN DAY !!!! =D0=9E=D0=A2=D0=92=D0=9E=D0=A0=D0=95=D0=9D =D0=94=D0= =95=D0=9D !!!! OPEN DAY !!!! =20 > =D0=9E=D0=A2=D0=92=D0=9E=D0=A0=D0=95=D0=9D =D0=94=D0=95=D0=9D > > > This is very strange behaviour. Obviously TinyMCE doesn't recognize =20= > my XHTML files. > Do you have any idea what should I do? You can adjust the TinyMCE settings for .html documents in the file /=20 screens/modal-html.vm in the bootstrap repository. For example, you =20 might try adding plugins:"fullpage" to the config. The full TinyMCE =20 configuration reference is available at http://tinymce.moxiecode.com/tinymce/docs/reference_configuration.html Another option is to edit the files in XML and run them through a =20 simple XSL transformation that adds the doctype. Cheers, Alex= |
From: Alex V. <av...@co...> - 2006-03-27 13:24:07
|
Hi Carl, There's a special modal output that presents the user-specific list of projects: http://localhost:8080/index.xml?mode=dashboard-portlet You can publish this as a CWebProxy channel in uPortal; if you are using CAS you can enable single sign-on by setting the appropriate LocalConnectionContext and adding the Login command to the portlet URL http://localhost:8080/index.xml?mode=dashboard-portlet&command=Login This will appear very similar to the list users had in 1.4. Cheers, Alex On Mar 27, 2006, at 4:56 AM, Carl Barrow wrote: > Hi Alex > > In our live version on HyperContent (1.4) we present a list sites > that users are responsible for within our uPortal layout for > staff. Since HyperContent 2.0 doesn't run within uPortal how do > you present a list of sites to your users at Columbia and allow > them to only see the sites they are responsible for? > > Cheers > Carl > > -- > ************************************ > > Carl Barrow > Systems Integrator > e-Services > The University of Hull > Cottingham Road > Hull > HU6 7RX > Ext. 6838 > ************************************ > > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the > live webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users |
From: Carl B. <C.P...@hu...> - 2006-03-27 09:57:02
|
Hi Alex In our live version on HyperContent (1.4) we present a list sites that users are responsible for within our uPortal layout for staff. Since HyperContent 2.0 doesn't run within uPortal how do you present a list of sites to your users at Columbia and allow them to only see the sites they are responsible for? Cheers Carl -- ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 ************************************ |
From: Carl B. <C.P...@hu...> - 2006-03-24 16:13:57
|
Thanks Alex, That did the trick :) Have a good weekend... Carl Alex Vigdor wrote: > Hi Carl, > I've seen this before when running on a server with no physical > display attached; you may need to specify the JVM option > > -Djava.awt.headless=true > > If you're starting up from the ant script, you could add it around > line 45 > > <jvmarg value="-Djava.awt.headless=true"/> > > Cheers, > Alex > > On Mar 24, 2006, at 4:18 AM, Carl Barrow wrote: > >> Hi Alex, >> >> I though I would have a look at the sample photo project that you >> included with the HyperContent2 release. None of the images show up >> and I get the error ' The image >> “http://****.****.hull.ac.uk:8080/photos/cars/29_30_49_web.jpg” >> cannot be displayed, because it contains errors.' I tryed adding a >> new image but get the same error. Is this something that I could is >> easily to fix? >> >> Cheers >> Carl >> >> --************************************ >> >> Carl Barrow >> Systems Integrator >> e-Services >> The University of Hull >> Cottingham Road >> Hull >> HU6 7RX >> Ext. 6838 >> ************************************ >> >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by xPML, a groundbreaking scripting >> language >> that extends applications into web and mobile media. Attend the live >> webcast >> and join the prime developer group breaking into this new coding >> territory! >> http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 >> _______________________________________________ >> Hypercontent-users mailing list >> Hyp...@li... >> https://lists.sourceforge.net/lists/listinfo/hypercontent-users > > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the live > webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel?cmd=k&kid0944&bid$1720&dat1642 > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users -- ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 ************************************ |
From: Alex V. <av...@co...> - 2006-03-24 15:27:30
|
Hi Carl, I've seen this before when running on a server with no physical =20= display attached; you may need to specify the JVM option -Djava.awt.headless=3Dtrue If you're starting up from the ant script, you could add it around =20 line 45 <jvmarg value=3D"-Djava.awt.headless=3Dtrue"/> Cheers, Alex On Mar 24, 2006, at 4:18 AM, Carl Barrow wrote: > Hi Alex, > > I though I would have a look at the sample photo project that you =20 > included with the HyperContent2 release. None of the images show up =20= > and I get the error ' The image =93http://****.****.hull.ac.uk:8080/=20= > photos/cars/29_30_49_web.jpg=94 cannot be displayed, because it =20 > contains errors.' I tryed adding a new image but get the same =20 > error. Is this something that I could is easily to fix? > > Cheers > Carl > > --=20 > ************************************ > > Carl Barrow > Systems Integrator > e-Services > The University of Hull > Cottingham Road > Hull > HU6 7RX > Ext. 6838 > ************************************ > > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting =20 > language > that extends applications into web and mobile media. Attend the =20 > live webcast > and join the prime developer group breaking into this new coding =20 > territory! > http://sel.as-us.falkag.net/sel?=20 > cmd=3Dlnk&kid=3D110944&bid=3D241720&dat=3D121642 > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users |
From: Alex V. <av...@co...> - 2006-03-24 15:23:34
|
Hi Ray, The pattern /**/* (which implies /**/*.*) is currently reserved = by =20 the system; to enable resources that can go anywhere, I suggest you =20 approach it like this: <resource-directory label=3D"JPG" path=3D"/**/*.jpg" publish=3D"true"> <content type=3D"image/jpeg" /> </resource-directory> <resource-directory label=3D"GIF" path=3D"/**/*.gif" publish=3D"true"> <content type=3D"image/gif" /> </resource-directory> <resource-directory label=3D"PDF" path=3D"/**/*.pdf" publish=3D"true"> <content type=3D"application/pdf" /> </resource-directory> Cheers, Alex On Mar 24, 2006, at 12:18 AM, Ray Sun wrote: > Hi,Alex! > > I defined resource-directory in HC2 like this: > > <resource-directory label=3D"resources " path=3D"/**/*" =20 > publish=3D"true"> > > <content type=3D"image/jpeg"/> > > <content type=3D"image/gif"/> > > <content type=3D"application/pdf"/> > > <content type=3D"application/msword"/> > > <content type=3D"application/vnd.ms-powerpoint"/> > > <content type=3D"application/vnd.ms-excel"/> > > <content type=3D"application/zip"/> > > </resource-directory> > > > > Creating , uploading and saving these files are well done but HC =20 > won=92t build them. 100% finished ,no error no modification no delete =20= > infomation in workflow details . > > > > > > > > > > |
From: Ray S. <ls...@sc...> - 2006-03-24 09:54:16
|
I can't meet this problem in this photo project. But sometimes the = gallery navigation (the previous and the next thumb pics' url) is not correct = after I upload a zip file including several jpg files.I have to delete some pictures and recreate them to solve this issue. -----=D3=CA=BC=FE=D4=AD=BC=FE----- =B7=A2=BC=FE=C8=CB: hyp...@li... [mailto:hyp...@li...] =B4=FA=B1=ED = Carl Barrow =B7=A2=CB=CD=CA=B1=BC=E4: 2006=C4=EA3=D4=C224=C8=D5 17:19 =CA=D5=BC=FE=C8=CB: 'Hypercontent-users' =D6=F7=CC=E2: [Hypercontent-users] sample photos project Hi Alex, I though I would have a look at the sample photo project that you=20 included with the HyperContent2 release. None of the images show up and=20 I get the error ' The image=20 =A1=B0http://****.****.hull.ac.uk:8080/photos/cars/29_30_49_web.jpg=A1=B1= cannot=20 be displayed, because it contains errors.' I tryed adding a new image=20 but get the same error. Is this something that I could is easily to fix? Cheers Carl --=20 ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 =20 ************************************ ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting = language that extends applications into web and mobile media. Attend the live = webcast and join the prime developer group breaking into this new coding = territory! http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D241720&dat=3D= 121642 _______________________________________________ Hypercontent-users mailing list Hyp...@li... https://lists.sourceforge.net/lists/listinfo/hypercontent-users |
From: Carl B. <C.P...@hu...> - 2006-03-24 09:18:51
|
Hi Alex, I though I would have a look at the sample photo project that you included with the HyperContent2 release. None of the images show up and I get the error ' The image “http://****.****.hull.ac.uk:8080/photos/cars/29_30_49_web.jpg” cannot be displayed, because it contains errors.' I tryed adding a new image but get the same error. Is this something that I could is easily to fix? Cheers Carl -- ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 ************************************ |
From: Ray S. <ls...@sc...> - 2006-03-24 06:32:54
|
Hi,Alex! I defined resource-directory in HC2 like this: <resource-directory label="resources " path="/**/*" publish="true"> <content type="image/jpeg"/> <content type="image/gif"/> <content type="application/pdf"/> <content type="application/msword"/> <content type="application/vnd.ms-powerpoint"/> <content type="application/vnd.ms-excel"/> <content type="application/zip"/> </resource-directory> Creating , uploading and saving these files are well done but HC won't build them. 100% finished ,no error no modification no delete infomation in workflow details . |
From: Alex V. <av...@co...> - 2006-03-22 23:05:51
|
Hi Ray, Try substituting this for the logout pipeline in /config/pipelines.xml: <pipeline name="logout" mode="logout" basedir="/" content-type="text/ html" binding="all"> <exec stage="org.hypercontent.project.engine.stage.SessionAttributeStage"> <with-param name="name" value="service"/> <with-param name="value" value="${abs-project-base}${request-path}% 3f${request-parms-encoded}%26command%3DLogout"/> </exec> <exec stage="org.hypercontent.project.engine.stage.RedirectStage"> <with-param name="location" value="https://localhost:9090/cas/ logout?service=${service}"/> </exec> </pipeline> This will log you out of CAS and tell CAS to redirect to the HyperContent logout command. After this the user should be redirected to the CAS login screen if the page is not world readable. Cheers, Alex On Mar 21, 2006, at 10:20 PM, Ray Sun wrote: > Thanks for your help, Carl and Alex! > I get CAS work with HC2 now.But logout is not woking well. > Obviously the browser doesn't logout CAS so when I click "Logout" > on any > position inside a project ,my browser is redirected to CAS and > automatically > logs in again. This won't happen on the project list page > (/index.xml?mode=interactive&screen=view) .I wonder if we can > redirect the > browser to this home page instead of where we were when we logout > or if > there is a way to logout HC and CAS on the meanwhile. > If we solve this problem another will come. That is: > When trying to directly access a file or dir inside a project (eg. > /photo/myalbum/2006/index.xml) we would be redirected to the home > page . > Then we would have to click the photo project on this page and > login through > CAS and now we get /photo but not /photo/myalbum/2006/index.xml. > Maybe we can modify the parameter in pipeline.xml in bootstrap adding > "&renew=true" to CAS login url: > <exec stage="org.hypercontent.project.engine.stage.RedirectStage"> > <with-param name="location" > value="https://security.scut.edu.cn/cas/login?service=${service} > &renew=t > rue" > /> > </exec> > But now we lose SSO . :) > Any idea? > Thanks. > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a groundbreaking scripting > language > that extends applications into web and mobile media. Attend the > live webcast > and join the prime developer group breaking into this new coding > territory! > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users |
From: Ray S. <ls...@sc...> - 2006-03-22 03:21:03
|
Thanks for your help, Carl and Alex! I get CAS work with HC2 now.But logout is not woking well. Obviously the browser doesn't logout CAS so when I click "Logout" on any position inside a project ,my browser is redirected to CAS and automatically logs in again. This won't happen on the project list page (/index.xml?mode=interactive&screen=view) .I wonder if we can redirect the browser to this home page instead of where we were when we logout or if there is a way to logout HC and CAS on the meanwhile. If we solve this problem another will come. That is: When trying to directly access a file or dir inside a project (eg. /photo/myalbum/2006/index.xml) we would be redirected to the home page . Then we would have to click the photo project on this page and login through CAS and now we get /photo but not /photo/myalbum/2006/index.xml. Maybe we can modify the parameter in pipeline.xml in bootstrap adding "&renew=true" to CAS login url: <exec stage="org.hypercontent.project.engine.stage.RedirectStage"> <with-param name="location" value="https://security.scut.edu.cn/cas/login?service=${service}&renew=t rue" /> </exec> But now we lose SSO . :) Any idea? Thanks. |
From: Ray S. <ls...@sc...> - 2006-03-22 02:42:05
|
Thanks for your help, Carl and Alex! I get CAS work with HC2 now.But logout is not woking well. Obviously the browser doesn=A1=AFt logout CAS so when I click = =A1=B0Logout=A1=B1 on any position inside a project ,my browser is redirected to CAS and = automatically logs in again. This won=A1=AFt happen on the project list page (/index.xml?mode=3Dinteractive&screen=3Dview) .I wonder if we can = redirect the browser to this home page instead of where we were when we logout or = if there is a way to logout HC and CAS on the meanwhile. =20 If we solve this problem another will come. That is: When trying to directly access a file or dir inside a project (eg. /photo/myalbum/2006/index.xml) we would be redirected to the home page = . Then we would have to click the photo project on this page and login = through CAS and now we get /photo but not /photo/myalbum/2006/index.xml. =20 Maybe we can modify the param in pipeline.xml in bootstrap adding =A1=B0 &renew=3Dtrue=A1=B1 to cas login url: <exec stage=3D"org.hypercontent.project.engine.stage.RedirectStage"> <with-param name=3D"location" = value=3D"https://security. scut.edu.cn/cas/login?service=3D${service}&renew=3Dtrue" /> </exec> But now we lose SSO . :) =20 Any idea? =20 Thanks. _____ =20 =B7=A2=BC=FE=C8=CB: hyp...@li... [mailto:hyp...@li...] =B4=FA=B1=ED = Alex Vigdor =B7=A2=CB=CD=CA=B1=BC=E4: 2006=C4=EA3=D4=C222=C8=D5 5:48 =CA=D5=BC=FE=C8=CB: 'Hypercontent-users' =D6=F7=CC=E2: Re: [Hypercontent-users] sample project for department =20 Hi Ray, Sorry the documentation has been so slow in coming. Developing a browser for inserting images and links is my current project, which = we'll begin beta testing at Columbia starting later this week. In the = meantime, you'll find instructions for CAS integration in the file /cas-support/CAS_READ_ME in the 2.0 distribution and the LDAP = configuration is made in the file "/source/properties/xml/LDAPtoVCARD.xml"; LDAP attributes are mapped into the vcard XML with references like {cn}, = which you'll see. =20 Cheers, Alex =20 On Mar 16, 2006, at 2:34 AM, Ray Sun wrote: Hi Alex Would you please send us a sample HC2.0 project package for a department website in your college ? We hope this would help us to setup department websites by using HC2.0 = in our campus. More details about authentication with LDAP , CAS are expected to be finished on the HC home site . Thx. Ray =20 |
From: Alex V. <av...@co...> - 2006-03-21 21:48:19
|
Hi Ray, Sorry the documentation has been so slow in coming. Developing a browser for inserting images and links is my current project, which we'll begin beta testing at Columbia starting later this week. In the meantime, you'll find instructions for CAS integration in the file /cas-support/CAS_READ_ME in the 2.0 distribution and the LDAP configuration is made in the file "/source/properties/xml/ LDAPtoVCARD.xml"; LDAP attributes are mapped into the vcard XML with references like {cn}, which you'll see. Cheers, Alex On Mar 16, 2006, at 2:34 AM, Ray Sun wrote: > Hi Alex > > > > Would you please send us a sample HC2.0 project package for a > department website in your college ? > > We hope this would help us to setup department websites by using > HC2.0 in our campus. > > More details about authentication with LDAP , CAS are expected to > be finished on the HC home site . > > Thx. > > Ray > > |
From: Carl B. <C.P...@hu...> - 2006-03-16 13:35:15
|
Hi Ray I have put a project package in the HyperContent Wiki that we user here in Hull as a basis for our departmental sites. We allow our users to be very flexible so navigation is dynamically created from the file structure as they build it. You might file it useful. Many Thanks Carl Ray Sun wrote: > > Hi Alex > > > > Would you please send us a sample HC2.0 project package for a > department website in your college ? > > We hope this would help us to setup department websites by using HC2.0 > in our campus. > > More details about authentication with LDAP , CAS are expected to be > finished on the HC home site . > > Thx. > > Ray > -- ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 ************************************ |