hypercontent-users Mailing List for HyperContent (Page 25)
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...> - 2005-09-13 15:33:30
|
Hi Alex Sorry I've not been on the list for a while after the birth of our little boy I've been very busy. I hope all is going well at Columbia. HyperContent is running very well here at Hull. (Still 1.4) I have a quick question that you will probably be able to answer quickly for me. I need to check where in the site structure a page is and depending on it's location but in a different menu. ( I'm not auto generating them for this site) . So I have seven top level directories each of which will have a different menu which needs to be reflected on all directories and files from that level down. I've tried: <xsl:when test="$sourceItem/@location = '/aboutus/*'"> <xsl:call-template name = "statmenu"/> </xsl:when> But that doesn't work. I can check for a specific file : <xsl:when test="$sourceItem/@location = '/aboutus/index.html'"> and that does work. do you have any idea how I might do it? I don't really want to use seven different templates! Cheers Carl -- ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 ************************************ |
From: Alex V. <av...@co...> - 2005-09-11 14:01:00
|
Hi Masood, Check out the section "Forms of Output" at http://hypercontent.sourceforge.net/docs/manual/develop/xmlcontent.html Cheers, Alex On Sep 11, 2005, at 5:20 AM, Masood Moshref wrote: > hi every one > how can i=A0generate two or more html files from one xml file with one=20= > or more xsl files?? > =A0 > Regards=A0 > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com= |
From: Masood M. <mas...@ya...> - 2005-09-11 09:20:41
|
hi every one how can i generate two or more html files from one xml file with one or more xsl files?? Regards __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com |
From: Mike B <mbe...@gm...> - 2005-09-09 16:16:51
|
Problem solved, thank you! Mike On 9/9/05, Alex Vigdor <av...@co...> wrote: > Hi Mike, > The problem you're running into is that the XSL document function > resolves relative paths against the user directory. When you want to > use the document function to grab stuff out of the repository, just use > the full path of the file: >=20 > document('/design/dept.xml') >=20 > HyperContent has a custom URI resolver that will find that in the > repository for you. You can also grab the metadata for that file, in > the same "rdf:RDF" format as includes, by calling >=20 > document('/design/dept.xml.rdf') >=20 > -Alex >=20 > On Sep 9, 2005, at 11:50 AM, Mike B wrote: >=20 > > Hi all, > > > > I'm having trouble using $baseurl in XSLT again. Here's the problem: > > > > At the root level, '/', $baseurl works fine and evaluates as './' in > > both the HTML and in XSLT functions such as document(). > > > > One level below that, '/council', $baseurl transforms fine in the HTML > > but not in XSLT functions. For example, when I use the document > > function like this: > > > > document(concat($baseurl,'/design/dept.xml')) > > > > it fails saying that it 'could not open /usr/share/design/dept.xml'. I > > can't figure out why $baseurl is evaluating to '/usr/share' instead of > > '../' like it does at the root level. > > > > Any suggestions would be greatly appreciated. Thanks, > > Mike > > > > > > ------------------------------------------------------- > > SF.Net email is Sponsored by the Better Software Conference & EXPO > > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > > Practices > > Agile & Plan-Driven Development * Managing Projects & Teams * Testing > > & QA > > Security * Process Improvement & Measurement * > > http://www.sqe.com/bsce5sf > > _______________________________________________ > > Hypercontent-users mailing list > > Hyp...@li... > > https://lists.sourceforge.net/lists/listinfo/hypercontent-users >=20 > |
From: Alex V. <av...@co...> - 2005-09-09 15:59:54
|
Hi Mike, The problem you're running into is that the XSL document function resolves relative paths against the user directory. When you want to use the document function to grab stuff out of the repository, just use the full path of the file: document('/design/dept.xml') HyperContent has a custom URI resolver that will find that in the repository for you. You can also grab the metadata for that file, in the same "rdf:RDF" format as includes, by calling document('/design/dept.xml.rdf') -Alex On Sep 9, 2005, at 11:50 AM, Mike B wrote: > Hi all, > > I'm having trouble using $baseurl in XSLT again. Here's the problem: > > At the root level, '/', $baseurl works fine and evaluates as './' in > both the HTML and in XSLT functions such as document(). > > One level below that, '/council', $baseurl transforms fine in the HTML > but not in XSLT functions. For example, when I use the document > function like this: > > document(concat($baseurl,'/design/dept.xml')) > > it fails saying that it 'could not open /usr/share/design/dept.xml'. I > can't figure out why $baseurl is evaluating to '/usr/share' instead of > '../' like it does at the root level. > > Any suggestions would be greatly appreciated. Thanks, > Mike > > > ------------------------------------------------------- > SF.Net email is Sponsored by the Better Software Conference & EXPO > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > Practices > Agile & Plan-Driven Development * Managing Projects & Teams * Testing > & QA > Security * Process Improvement & Measurement * > http://www.sqe.com/bsce5sf > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users |
From: Mike B <mbe...@gm...> - 2005-09-09 15:50:28
|
Hi all, I'm having trouble using $baseurl in XSLT again. Here's the problem: At the root level, '/', $baseurl works fine and evaluates as './' in both the HTML and in XSLT functions such as document(). One level below that, '/council', $baseurl transforms fine in the HTML but not in XSLT functions. For example, when I use the document function like this: document(concat($baseurl,'/design/dept.xml')) it fails saying that it 'could not open /usr/share/design/dept.xml'. I can't figure out why $baseurl is evaluating to '/usr/share' instead of '../' like it does at the root level. Any suggestions would be greatly appreciated. Thanks, Mike |
From: Alex V. <av...@co...> - 2005-09-07 17:12:30
|
Hi Robert, The XSL that generates the XML/WYSIWYG editor is largely unchanged since v1.4, though since releasing b4 I've removed the lock icon at the insistence of our users. This XSL file is located in the bootstrap repository at /screens/modal-xml.xsl It may be as simple as removing lines 63-113 (javascript setup for the old editor), adding configuration and references to the javascript files for the new editor (which I suggest you keep in the bootstrap repository as well), and then changing the onloads generated at line 325 to use the new editor to overwrite text areas. You may want to update the file from CVS before you begin, if you are also eager to get rid of the lock icon. I think Pete has his FCK integration notes posted somewhere. We are also looking to replace the WYSIWYG editor as part of a complete redesign of the XML editor GUI. We haven't completely scoped out the work yet, but it's pretty much the first priority for development this fall, and should be in a 2.1 release. It will probably offer a left-hand node tree navigator, so you'll only be presented with a form for the element you're currently editing, and will offer support for browsing to make links, insert images, and to insert inline XML includes. This will be a new feature where fragments of XML that recur in ad-hoc locations throughout the site can be stored in a single file, and inserted into user-specified locations in other documents, and the system will be able to track the dependencies. We find we need this for common disclaimers, instructions, etc. We may also look for a way to incorporate a per-project "link table" XML document that will allow links to stay up-to-date when files are moved (I know you have mentioned this need before). A b5 release should be out this week or next, followed by a final release in the very short term. The reason for a fifth beta is to allow a bit of testing time for some configuration and stability improvements I've made to support photo gallery type applications; you can now generate web pages from images, and output several automatically resized and watermarked versions of the image. I've been testing with a sample site with 300 * 4 megapixel images, output to 3 sizes (for 1024*768, 800*600 and thumbnail) with an embedded copyright watermark, all in a recursive gallery structure. It takes about 12 minutes to build the site on my computer, about 2000 files all told when you add up all the versions of the images and web pages. The main changes to the framework were to make it possible to recover gracefully from out of memory exceptions which invariably arise when you're performing lots of image manipulations in java. Cheers, Alex On Sep 7, 2005, at 12:32 PM, Robert Sherratt wrote: > Hi > > I've just downloaded beta 4 of HC and its looking really good. > However, as the subject line indicates, we are coming under increasing > pressure from our users to move to a different editor. To provide a > seamless transition to 2 from 1.4 I would like, as part of the > upgrade, to also include a new editor in our released version of 2. > > I know Pete Boysen and Juris have looked at integrating FCK (probably > our first choice) with 1.4. Is that experience directly applicable or > are there a new set of steps for 2? Any input on this would be > appreciated, ideally I need to have an answer asap (isn't that always > the way ;-)). > > Thanks > Robert > > Robert Sherratt > Head of Systems Integration > eServices Integration Group > Brynmor Jones Library > University of Hull > HU6 7RX UK > > T. (+44)1482 466834 > > > > ------------------------------------------------------- > SF.Net email is Sponsored by the Better Software Conference & EXPO > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > Practices > Agile & Plan-Driven Development * Managing Projects & Teams * Testing > & QA > Security * Process Improvement & Measurement * > http://www.sqe.com/bsce5sf > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users |
From: Robert S. <r.s...@hu...> - 2005-09-07 16:32:57
|
Hi I've just downloaded beta 4 of HC and its looking really good. However, as the subject line indicates, we are coming under increasing pressure from our users to move to a different editor. To provide a seamless transition to 2 from 1.4 I would like, as part of the upgrade, to also include a new editor in our released version of 2. I know Pete Boysen and Juris have looked at integrating FCK (probably our first choice) with 1.4. Is that experience directly applicable or are there a new set of steps for 2? Any input on this would be appreciated, ideally I need to have an answer asap (isn't that always the way ;-)). Thanks Robert Robert Sherratt Head of Systems Integration eServices Integration Group Brynmor Jones Library University of Hull HU6 7RX UK T. (+44)1482 466834 |
From: Alex V. <av...@co...> - 2005-08-18 21:58:33
|
Hello, This problem was caused in b4 by the migration to AJAX for these menus. While using AJAX allows the menus to be generated only when needed, thereby decreasing overall response times substantially, there are some quirks when adding dynamic content to a document. In this case, "onmouseover" attributes of AJAX loaded elements are automatically parsed into event handlers in Mozilla, whereas IE requires an explicit registration of the copied handler. I have implemented a fix for this problem in the CVS file /repositories/bootstrap/js/common.js I suggest you also update the css file /repositories/bootstrap/css/interactive.css as this contains some fixes so the screen appearance is more consistent between IE 6 and Mozilla. -Alex On Aug 11, 2005, at 7:56 AM, ke...@la... wrote: > Hello! > > It seems, there is is problem with JavaScript of H2 in Internet > Explorer 6. > Third level link (Add->Images->jpeg) doesn't work. When it has more > than one > available file extension to add, link "Images" became a text, not a > link. In > Mozilla everything works perfectly. > > > > ------------------------------------------------------- > SF.Net email is Sponsored by the Better Software Conference & EXPO > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > Practices > Agile & Plan-Driven Development * Managing Projects & Teams * Testing > & QA > Security * Process Improvement & Measurement * > http://www.sqe.com/bsce5sf > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users > |
From: Alex V. <av...@co...> - 2005-08-11 14:21:00
|
Hi Mike, In 2.0 you have both relative and absolute base urls available in these four parameters: rel-project-base abs-project-base rel-server-base abs-server-base Note that the absolute bases point to the HC2 server, and not the url of an external web server the content may be published to. The $baseurl parameter in HC1.4 is equivalent to rel-project-base; it will give you a "." if you're transforming a file in the root directory, ".." one level down, "../.." two levels down, etc. You can always pass an absolute base URL as a parameter to the transform in your project definition. If you're wondering how to accomplish some specific task given these constraints, post more details to the list. -Alex On Aug 10, 2005, at 10:51 AM, Mike B wrote: > Hi all, > > Is there any way to put the true baseurl into the $baseurl variable? I > currently get back only a '.' for $baseurl and it would be helpful if > this reflected the full url. > > Thanks, > Mike > > > ------------------------------------------------------- > SF.Net email is Sponsored by the Better Software Conference & EXPO > September 19-22, 2005 * San Francisco, CA * Development Lifecycle > Practices > Agile & Plan-Driven Development * Managing Projects & Teams * Testing > & QA > Security * Process Improvement & Measurement * > http://www.sqe.com/bsce5sf > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users > |
From: <ke...@la...> - 2005-08-11 12:59:22
|
Hello! It seems, there is is problem with JavaScript of H2 in Internet Explorer = 6. Third level link (Add->Images->jpeg) doesn't work. When it has more than = one available file extension to add, link "Images" became a text, not a link.= In Mozilla everything works perfectly. |
From: Mike B <mbe...@gm...> - 2005-08-10 14:52:01
|
Hi all, Is there any way to put the true baseurl into the $baseurl variable? I currently get back only a '.' for $baseurl and it would be helpful if this reflected the full url. Thanks, Mike |
From: Alex V. <av...@co...> - 2005-07-27 17:35:26
|
Hello all, I have just posted a link to the fourth beta release of HC2 on the HyperContent home page. This release contains a number of bug fixes based on our initial production migrations at Columbia, and adds support for recursive navigation/site-map generation for doctypes with ** patterns. But most importantly, it adds hooks for integration with CAS and uPortal. For CAS, a new class is required that actually goes with the CAS client; it provides a JAAS LoginModule implementation that sits on top of the existing CAS java client. It may be a while before this class shows up in an official CAS client release, but if anyone is interested in getting this enabled, let me know and I can email the source. Andrew Petro has volunteered to post the source on the CAS wiki as well. I will send detailed instructions to the list on how to integrate with CAS to the first person who asks ;-) For uPortal, a simple web-proxyable channel has been added that gives a user a list of their authorized projects; this looks just like the initial screen of HC 1.4, but the links open HC2 in a separate window. This dashboard can be reached at any valid URL on the HC2 server by adding the parameter "mode=dashboard-portlet" (e.g. "https://hypercontent.columbia.edu/index.html?mode=dashboard-portlet"). With CAS and the CASConnectionContext in uPortal, you can achieve single sign-on between the portal, the proxied dashboard channel, and the direct HC2 session, for a seamless user experience. I will be on vacation the first two weeks of August, and while I will make some effort to catch up with email every couple of days, I won't be doing any development work. The only remaining "must-haves" for a final release are search-reindexing and lock-clearing scripts, which are of quite limited scope and should be complete shortly after I return. I expect to have a final 2.0 release by the end of August, but I would stress that we are running the b4 code in production and have already migrated a number of sites, so the system has already endured some trial by fire. Cheers, Alex |
From: Alex V. <av...@co...> - 2005-07-27 16:55:19
|
Hi Chad, OK, well the ThreadDeath is something I haven't seen before, but = I=20 think we can safely ignore it for now, as it appears to be happening=20 during the Shutdown phase. The fact remains that the log error and the=20= behavior you're seeing very much indicate a failure to find the cache=20 directory at startup. Just to clarify, the "hypercontent.properties" file that needs = to be=20 changed is the one under webapps/hyper/WEB-INF/classes/properties;=20 although if you are using the HC2 ant script to compile the classes,=20 you should change the copy under "source" as well, since it gets copied=20= over during a build. The abs-server-base change is fine, as long as that is a real address=20 you can type into a browser to get to the server. One possible way to debug the problem would be to create a little test=20= class you can execute on the server with something like java.io.File root =3D new=20 java.io.File("/opt/jakarta-tomcat-5.0.28/webapps/hyper/cache"); System.out.println(root.isDirectory()); Based on the exception that's being thrown, one would presume this=20 would print false; based on your stated configuration, once would=20 presume this should print true. I think that conflict makes this a=20 good square one. -Alex On Jul 27, 2005, at 11:58 AM, Chad Lauber wrote: > Hi Alex, > > I have been restarting the Tomcat server, not just restarting the > webapp. Reload is set to 'False' on this context. This is the path > to the cache directory: > > /opt/jakarta-tomcat-5.0.28/webapps/hyper/cache > > Permissions are set to 777. > > Here is the hypercontent.properties file: > > I also changed abs-server-base...maybe that is messing it up? > > # The base server URL : should contain host, port and context, but NOT > a trailing slash > abs-server-base =3D http://10.0.0.190:8080/hyper > > # local disk directory where ONLY this instance of HyperContent can > store cache files > cache_dir =3D /opt/jakarta-tomcat-5.0.28/webapps/hyper/cache > > # Compression can knock 50% off the storage space needed for the=20 > cache, but can > # use up to 50% more processing time per each cache put. Cache gets > can benefit from > # the smaller number of bytes to retrieve from disk. It should have a=20= > quite low > # performance impact either way in the grand scheme of things, it just > saves space. > # Value should be true or false > cache_compress =3D false > > # how often should the configurationfactory check the filesystem for > new projects > org.hypercontent.project.ConfigurationFactory.refresh =3D 10000 > > # maximum number of milliseconds to cache file modification dates > # This impacts how quickly changes to repository data will ripple up > through the content server > # and invalidate cached data > last_mod_max_stale_millis =3D 2000 > > #WorkStore implementation > org.hypercontent.workflow.WorkStore =3D > org.hypercontent.workflow.impl.SerializingWorkStore > > #QueueStore implementation > org.hypercontent.workflow.QueueStore =3D > org.hypercontent.workflow.impl.SerializingQueueStore > > #SMTP host for outgoing workflow messages > mail.smtp.host=3Dsmtp.univ.edu > > #Default from address for workflow emails > mail.default.from=3Dw...@un... > > #Message on authentication failure > mesage.login.failure =3D Login attempt unsuccesful > > > > On 7/26/05, Alex Vigdor <av...@co...> wrote: >> Chad, >> The stack trace immediately preceding >> >> INFO 2005-07-26 14:35:27,239 HyperContent initiating startup at Tue >> Jul 26 14:35:27 EDT 2005 on thread main >> >> Indicates that the server was still unable to find the cache=20 >> directory. >> All the thread death errors, from some posts online, may be related >> to tomcat if you're stopping/starting the webapp without >> stopping/starting the whole server, or if you have auto-reloading set >> on the context. >> >> -Alex >> >> >> On Jul 26, 2005, at 2:48 PM, Chad Lauber wrote: >> >>> Oops...only inculed part of the log...please find the most current >>> hypercontent log attached. >>> >>> Chad >>> >>> On 7/25/05, Alex Vigdor <av...@co...> wrote: >>>> Hi Chad, >>>> You need to set the property "cache_dir" in >>>> hypercontent.properties to >>>> a valid directory for HyperContent's disk caching. I'll add a more >>>> informative error message to this extent for the upcoming beta4 >>>> release; I guess that stack trace is a little cryptic! >>>> >>>> -Alex >>>> >>>> On Jul 25, 2005, at 1:38 PM, Chad Lauber wrote: >>>> >>>>> Hi Alex, >>>>> >>>>> Here are the logs along with the server.xml. One thought I had is >>>>> that Tomcat is set up to automatically deploy web applications,=20 >>>>> which >>>>> might be causing the problem. >>>>> >>>>> Thanks, >>>>> >>>>> Chad >>>>> >>>>> On 7/18/05, Alex Vigdor <av...@co...> wrote: >>>>>> HI Chad, >>>>>> Perhaps you could attach a copy of your log, so we can get=20= >>>>>> a >>>>>> better >>>>>> idea of what is happening. >>>>>> >>>>>> -Alex >>>>>> >>>>>> On Jul 18, 2005, at 12:13 PM, Chad Lauber wrote: >>>>>> >>>>>>> Hi, >>>>>>> >>>>>>> For some reason I get a "Page can not be displayed" error when >>>>>>> trying >>>>>>> to access hypercontent from a context with in and existing = Tomcat >>>>>>> 5. >>>>>>> >>>>>>> Here is the Projects.xml file with the path to the bootstrap >>>>>>> directory >>>>>>> edited to reflect the location on this system: >>>>>>> >>>>>>> <?xml version=3D"1.0" encoding=3D"UTF-8"?>^M<filesystem-def >>>>>>> name=3D"HyperContent Projects Repository" type=3D"local">^M = <argument >>>>>>> index=3D"0" >>>>>>> value=3D"/opt/hypercontent2.0b3/hypercontent2/repositories/ >>>>>>> bootstrap"/ >>>>>>>> ^M >>>>>>> <argument index=3D"1" value=3D"autocreate"/>^M <argument >>>>>>> index=3D"2" >>>>>>> value=3D"enable-metadata"/>^M</filesystem-def>^M >>>>>>> >>>>>>> >>>>>>> I changed the permissions on that directory to 777, restarted >>>>>>> Tomcat, >>>>>>> but still nothing. >>>>>>> >>>>>>> Any ideas or insight would be appreciated. >>>>>>> >>>>>>> Thanks, >>>>>>> >>>>>>> Chad >>>>>>> >>>>>>> >>>>>>> ------------------------------------------------------- >>>>>>> SF.Net email is sponsored by: Discover Easy Linux Migration >>>>>>> Strategies >>>>>>> from IBM. Find simple to follow Roadmaps, straightforward=20 >>>>>>> articles, >>>>>>> informative Webcasts and more! Get everything you need to get up=20= >>>>>>> to >>>>>>> speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&op=CCk >>>>>>> _______________________________________________ >>>>>>> Hypercontent-users mailing list >>>>>>> Hyp...@li... >>>>>>> https://lists.sourceforge.net/lists/listinfo/hypercontent-users >>>>>> >>>>>> >>>>>> >>>>>> ------------------------------------------------------- >>>>>> SF.Net email is sponsored by: Discover Easy Linux Migration >>>>>> Strategies >>>>>> from IBM. Find simple to follow Roadmaps, straightforward=20 >>>>>> articles, >>>>>> informative Webcasts and more! Get everything you need to get up=20= >>>>>> to >>>>>> speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&opclick >>>>>> _______________________________________________ >>>>>> Hypercontent-users mailing list >>>>>> Hyp...@li... >>>>>> https://lists.sourceforge.net/lists/listinfo/hypercontent-users >>>>>> >>>>> <hyper_logs.tar> >>>> >>>> >>>> ------------------------------------------------------- >>>> SF.Net email is sponsored by: Discover Easy Linux Migration=20 >>>> Strategies >>>> from IBM. Find simple to follow Roadmaps, straightforward articles, >>>> informative Webcasts and more! Get everything you need to get up to >>>> speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&opclick >>>> _______________________________________________ >>>> Hypercontent-users mailing list >>>> Hyp...@li... >>>> https://lists.sourceforge.net/lists/listinfo/hypercontent-users >>>> >>> <hypercontent.log> >> >> >> ------------------------------------------------------- >> SF.Net email is sponsored by: Discover Easy Linux Migration = Strategies >> from IBM. Find simple to follow Roadmaps, straightforward articles, >> informative Webcasts and more! Get everything you need to get up to >> speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&opclick >> _______________________________________________ >> Hypercontent-users mailing list >> Hyp...@li... >> https://lists.sourceforge.net/lists/listinfo/hypercontent-users >> > > > ------------------------------------------------------- > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies > from IBM. Find simple to follow Roadmaps, straightforward articles, > informative Webcasts and more! Get everything you need to get up to > speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&op=CCk > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users |
From: Chad L. <cwl...@gm...> - 2005-07-27 15:58:19
|
Hi Alex, I have been restarting the Tomcat server, not just restarting the webapp. Reload is set to 'False' on this context. This is the path to the cache directory: /opt/jakarta-tomcat-5.0.28/webapps/hyper/cache Permissions are set to 777. Here is the hypercontent.properties file: I also changed abs-server-base...maybe that is messing it up? # The base server URL : should contain host, port and context, but NOT a trailing slash abs-server-base =3D http://10.0.0.190:8080/hyper # local disk directory where ONLY this instance of HyperContent can store cache files cache_dir =3D /opt/jakarta-tomcat-5.0.28/webapps/hyper/cache # Compression can knock 50% off the storage space needed for the cache, but= can # use up to 50% more processing time per each cache put. Cache gets can benefit from # the smaller number of bytes to retrieve from disk. It should have a quit= e low # performance impact either way in the grand scheme of things, it just saves space. # Value should be true or false cache_compress =3D false # how often should the configurationfactory check the filesystem for new projects org.hypercontent.project.ConfigurationFactory.refresh =3D 10000 # maximum number of milliseconds to cache file modification dates # This impacts how quickly changes to repository data will ripple up through the content server # and invalidate cached data last_mod_max_stale_millis =3D 2000 #WorkStore implementation org.hypercontent.workflow.WorkStore =3D org.hypercontent.workflow.impl.SerializingWorkStore #QueueStore implementation org.hypercontent.workflow.QueueStore =3D org.hypercontent.workflow.impl.SerializingQueueStore #SMTP host for outgoing workflow messages mail.smtp.host=3Dsmtp.univ.edu #Default from address for workflow emails mail.default.from=3Dw...@un... #Message on authentication failure mesage.login.failure =3D Login attempt unsuccesful On 7/26/05, Alex Vigdor <av...@co...> wrote: > Chad, > The stack trace immediately preceding >=20 > INFO 2005-07-26 14:35:27,239 HyperContent initiating startup at Tue > Jul 26 14:35:27 EDT 2005 on thread main >=20 > Indicates that the server was still unable to find the cache directory. > All the thread death errors, from some posts online, may be related > to tomcat if you're stopping/starting the webapp without > stopping/starting the whole server, or if you have auto-reloading set > on the context. >=20 > -Alex >=20 >=20 > On Jul 26, 2005, at 2:48 PM, Chad Lauber wrote: >=20 > > Oops...only inculed part of the log...please find the most current > > hypercontent log attached. > > > > Chad > > > > On 7/25/05, Alex Vigdor <av...@co...> wrote: > >> Hi Chad, > >> You need to set the property "cache_dir" in > >> hypercontent.properties to > >> a valid directory for HyperContent's disk caching. I'll add a more > >> informative error message to this extent for the upcoming beta4 > >> release; I guess that stack trace is a little cryptic! > >> > >> -Alex > >> > >> On Jul 25, 2005, at 1:38 PM, Chad Lauber wrote: > >> > >>> Hi Alex, > >>> > >>> Here are the logs along with the server.xml. One thought I had is > >>> that Tomcat is set up to automatically deploy web applications, which > >>> might be causing the problem. > >>> > >>> Thanks, > >>> > >>> Chad > >>> > >>> On 7/18/05, Alex Vigdor <av...@co...> wrote: > >>>> HI Chad, > >>>> Perhaps you could attach a copy of your log, so we can get a > >>>> better > >>>> idea of what is happening. > >>>> > >>>> -Alex > >>>> > >>>> On Jul 18, 2005, at 12:13 PM, Chad Lauber wrote: > >>>> > >>>>> Hi, > >>>>> > >>>>> For some reason I get a "Page can not be displayed" error when > >>>>> trying > >>>>> to access hypercontent from a context with in and existing Tomcat > >>>>> 5. > >>>>> > >>>>> Here is the Projects.xml file with the path to the bootstrap > >>>>> directory > >>>>> edited to reflect the location on this system: > >>>>> > >>>>> <?xml version=3D"1.0" encoding=3D"UTF-8"?>^M<filesystem-def > >>>>> name=3D"HyperContent Projects Repository" type=3D"local">^M <argume= nt > >>>>> index=3D"0" > >>>>> value=3D"/opt/hypercontent2.0b3/hypercontent2/repositories/ > >>>>> bootstrap"/ > >>>>>> ^M > >>>>> <argument index=3D"1" value=3D"autocreate"/>^M <argument > >>>>> index=3D"2" > >>>>> value=3D"enable-metadata"/>^M</filesystem-def>^M > >>>>> > >>>>> > >>>>> I changed the permissions on that directory to 777, restarted > >>>>> Tomcat, > >>>>> but still nothing. > >>>>> > >>>>> Any ideas or insight would be appreciated. > >>>>> > >>>>> Thanks, > >>>>> > >>>>> Chad > >>>>> > >>>>> > >>>>> ------------------------------------------------------- > >>>>> SF.Net email is sponsored by: Discover Easy Linux Migration > >>>>> Strategies > >>>>> from IBM. Find simple to follow Roadmaps, straightforward articles, > >>>>> informative Webcasts and more! Get everything you need to get up to > >>>>> speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&op=CCk > >>>>> _______________________________________________ > >>>>> Hypercontent-users mailing list > >>>>> Hyp...@li... > >>>>> https://lists.sourceforge.net/lists/listinfo/hypercontent-users > >>>> > >>>> > >>>> > >>>> ------------------------------------------------------- > >>>> SF.Net email is sponsored by: Discover Easy Linux Migration > >>>> Strategies > >>>> from IBM. Find simple to follow Roadmaps, straightforward articles, > >>>> informative Webcasts and more! Get everything you need to get up to > >>>> speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&opclick > >>>> _______________________________________________ > >>>> Hypercontent-users mailing list > >>>> Hyp...@li... > >>>> https://lists.sourceforge.net/lists/listinfo/hypercontent-users > >>>> > >>> <hyper_logs.tar> > >> > >> > >> ------------------------------------------------------- > >> SF.Net email is sponsored by: Discover Easy Linux Migration Strategies > >> from IBM. Find simple to follow Roadmaps, straightforward articles, > >> informative Webcasts and more! Get everything you need to get up to > >> speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&opclick > >> _______________________________________________ > >> Hypercontent-users mailing list > >> Hyp...@li... > >> https://lists.sourceforge.net/lists/listinfo/hypercontent-users > >> > > <hypercontent.log> >=20 >=20 > ------------------------------------------------------- > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies > from IBM. Find simple to follow Roadmaps, straightforward articles, > informative Webcasts and more! Get everything you need to get up to > speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&opclick > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users > |
From: Alex V. <av...@co...> - 2005-07-26 19:10:16
|
Chad, The stack trace immediately preceding INFO 2005-07-26 14:35:27,239 HyperContent initiating startup at Tue =20 Jul 26 14:35:27 EDT 2005 on thread main Indicates that the server was still unable to find the cache directory. =20= All the thread death errors, from some posts online, may be related =20= to tomcat if you're stopping/starting the webapp without =20 stopping/starting the whole server, or if you have auto-reloading set =20= on the context. -Alex On Jul 26, 2005, at 2:48 PM, Chad Lauber wrote: > Oops...only inculed part of the log...please find the most current > hypercontent log attached. > > Chad > > On 7/25/05, Alex Vigdor <av...@co...> wrote: >> Hi Chad, >> You need to set the property "cache_dir" in =20 >> hypercontent.properties to >> a valid directory for HyperContent's disk caching. I'll add a more >> informative error message to this extent for the upcoming beta4 >> release; I guess that stack trace is a little cryptic! >> >> -Alex >> >> On Jul 25, 2005, at 1:38 PM, Chad Lauber wrote: >> >>> Hi Alex, >>> >>> Here are the logs along with the server.xml. One thought I had is >>> that Tomcat is set up to automatically deploy web applications, = which >>> might be causing the problem. >>> >>> Thanks, >>> >>> Chad >>> >>> On 7/18/05, Alex Vigdor <av...@co...> wrote: >>>> HI Chad, >>>> Perhaps you could attach a copy of your log, so we can get a >>>> better >>>> idea of what is happening. >>>> >>>> -Alex >>>> >>>> On Jul 18, 2005, at 12:13 PM, Chad Lauber wrote: >>>> >>>>> Hi, >>>>> >>>>> For some reason I get a "Page can not be displayed" error when =20 >>>>> trying >>>>> to access hypercontent from a context with in and existing Tomcat =20= >>>>> 5. >>>>> >>>>> Here is the Projects.xml file with the path to the bootstrap >>>>> directory >>>>> edited to reflect the location on this system: >>>>> >>>>> <?xml version=3D"1.0" encoding=3D"UTF-8"?>^M<filesystem-def >>>>> name=3D"HyperContent Projects Repository" type=3D"local">^M = <argument >>>>> index=3D"0" >>>>> value=3D"/opt/hypercontent2.0b3/hypercontent2/repositories/=20 >>>>> bootstrap"/ >>>>>> ^M >>>>> <argument index=3D"1" value=3D"autocreate"/>^M <argument =20= >>>>> index=3D"2" >>>>> value=3D"enable-metadata"/>^M</filesystem-def>^M >>>>> >>>>> >>>>> I changed the permissions on that directory to 777, restarted =20 >>>>> Tomcat, >>>>> but still nothing. >>>>> >>>>> Any ideas or insight would be appreciated. >>>>> >>>>> Thanks, >>>>> >>>>> Chad >>>>> >>>>> >>>>> ------------------------------------------------------- >>>>> SF.Net email is sponsored by: Discover Easy Linux Migration >>>>> Strategies >>>>> from IBM. Find simple to follow Roadmaps, straightforward = articles, >>>>> informative Webcasts and more! Get everything you need to get up = to >>>>> speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&op=CCk >>>>> _______________________________________________ >>>>> Hypercontent-users mailing list >>>>> Hyp...@li... >>>>> https://lists.sourceforge.net/lists/listinfo/hypercontent-users >>>> >>>> >>>> >>>> ------------------------------------------------------- >>>> SF.Net email is sponsored by: Discover Easy Linux Migration =20 >>>> Strategies >>>> from IBM. Find simple to follow Roadmaps, straightforward articles, >>>> informative Webcasts and more! Get everything you need to get up to >>>> speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&opclick >>>> _______________________________________________ >>>> Hypercontent-users mailing list >>>> Hyp...@li... >>>> https://lists.sourceforge.net/lists/listinfo/hypercontent-users >>>> >>> <hyper_logs.tar> >> >> >> ------------------------------------------------------- >> SF.Net email is sponsored by: Discover Easy Linux Migration = Strategies >> from IBM. Find simple to follow Roadmaps, straightforward articles, >> informative Webcasts and more! Get everything you need to get up to >> speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&opclick >> _______________________________________________ >> Hypercontent-users mailing list >> Hyp...@li... >> https://lists.sourceforge.net/lists/listinfo/hypercontent-users >> > <hypercontent.log>= |
From: Alex V. <av...@co...> - 2005-07-25 20:50:30
|
Hi Chad, You need to set the property "cache_dir" in = hypercontent.properties to=20 a valid directory for HyperContent's disk caching. I'll add a more=20 informative error message to this extent for the upcoming beta4=20 release; I guess that stack trace is a little cryptic! -Alex On Jul 25, 2005, at 1:38 PM, Chad Lauber wrote: > Hi Alex, > > Here are the logs along with the server.xml. One thought I had is > that Tomcat is set up to automatically deploy web applications, which > might be causing the problem. > > Thanks, > > Chad > > On 7/18/05, Alex Vigdor <av...@co...> wrote: >> HI Chad, >> Perhaps you could attach a copy of your log, so we can get a=20= >> better >> idea of what is happening. >> >> -Alex >> >> On Jul 18, 2005, at 12:13 PM, Chad Lauber wrote: >> >>> Hi, >>> >>> For some reason I get a "Page can not be displayed" error when = trying >>> to access hypercontent from a context with in and existing Tomcat 5. >>> >>> Here is the Projects.xml file with the path to the bootstrap=20 >>> directory >>> edited to reflect the location on this system: >>> >>> <?xml version=3D"1.0" encoding=3D"UTF-8"?>^M<filesystem-def >>> name=3D"HyperContent Projects Repository" type=3D"local">^M = <argument >>> index=3D"0" >>> value=3D"/opt/hypercontent2.0b3/hypercontent2/repositories/bootstrap"/= >>>> ^M >>> <argument index=3D"1" value=3D"autocreate"/>^M <argument = index=3D"2" >>> value=3D"enable-metadata"/>^M</filesystem-def>^M >>> >>> >>> I changed the permissions on that directory to 777, restarted = Tomcat, >>> but still nothing. >>> >>> Any ideas or insight would be appreciated. >>> >>> Thanks, >>> >>> Chad >>> >>> >>> ------------------------------------------------------- >>> SF.Net email is sponsored by: Discover Easy Linux Migration=20 >>> Strategies >>> from IBM. Find simple to follow Roadmaps, straightforward articles, >>> informative Webcasts and more! Get everything you need to get up to >>> speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&op=CCk >>> _______________________________________________ >>> Hypercontent-users mailing list >>> Hyp...@li... >>> https://lists.sourceforge.net/lists/listinfo/hypercontent-users >> >> >> >> ------------------------------------------------------- >> SF.Net email is sponsored by: Discover Easy Linux Migration = Strategies >> from IBM. Find simple to follow Roadmaps, straightforward articles, >> informative Webcasts and more! Get everything you need to get up to >> speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&opclick >> _______________________________________________ >> Hypercontent-users mailing list >> Hyp...@li... >> https://lists.sourceforge.net/lists/listinfo/hypercontent-users >> > <hyper_logs.tar>= |
From: Alex V. <av...@co...> - 2005-07-18 16:51:37
|
HI Chad, Perhaps you could attach a copy of your log, so we can get a = better =20 idea of what is happening. -Alex On Jul 18, 2005, at 12:13 PM, Chad Lauber wrote: > Hi, > > For some reason I get a "Page can not be displayed" error when trying > to access hypercontent from a context with in and existing Tomcat 5. > > Here is the Projects.xml file with the path to the bootstrap directory > edited to reflect the location on this system: > > <?xml version=3D"1.0" encoding=3D"UTF-8"?>^M<filesystem-def > name=3D"HyperContent Projects Repository" type=3D"local">^M <argument > index=3D"0" =20 > value=3D"/opt/hypercontent2.0b3/hypercontent2/repositories/bootstrap"/=20= > >^M > <argument index=3D"1" value=3D"autocreate"/>^M <argument = index=3D"2" > value=3D"enable-metadata"/>^M</filesystem-def>^M > > > I changed the permissions on that directory to 777, restarted Tomcat, > but still nothing. > > Any ideas or insight would be appreciated. > > Thanks, > > Chad > > > ------------------------------------------------------- > SF.Net email is sponsored by: Discover Easy Linux Migration Strategies > from IBM. Find simple to follow Roadmaps, straightforward articles, > informative Webcasts and more! Get everything you need to get up to > speed, fast. http://ads.osdn.com/?ad_idt77&alloc_id=16492&op=CCk > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users |
From: Chad L. <cwl...@gm...> - 2005-07-18 16:14:06
|
Hi, For some reason I get a "Page can not be displayed" error when trying to access hypercontent from a context with in and existing Tomcat 5. Here is the Projects.xml file with the path to the bootstrap directory edited to reflect the location on this system: <?xml version=3D"1.0" encoding=3D"UTF-8"?>^M<filesystem-def name=3D"HyperContent Projects Repository" type=3D"local">^M <argument index=3D"0" value=3D"/opt/hypercontent2.0b3/hypercontent2/repositories/boot= strap"/>^M <argument index=3D"1" value=3D"autocreate"/>^M <argument index=3D"2" value=3D"enable-metadata"/>^M</filesystem-def>^M I changed the permissions on that directory to 777, restarted Tomcat, but still nothing. Any ideas or insight would be appreciated. Thanks, Chad |
From: Carl B. <C.P...@hu...> - 2005-07-14 15:28:50
|
Hi Alex I have taken the latest one from the CVS and it hasn't made a difference. I do have the similar problem when the editor changes <a href="filename.html">link</a> to <a href="/uportal/filename.html">link</a> but I wrote around that in xsl so although the editor still does it, the out put works okay. Cheers Carl > > >> Hi Carl, >> I can't seem to duplicate the problem. I would double check that >> you have an up-to-date copy of >> >> /webpages/htmlarea/htmlarea.js >> >> Cheers, >> Alex >> >> On Jul 14, 2005, at 9:56 AM, Carl Barrow wrote: >> >>> Hi Alex >>> >>> Is there anything in the CVS ( I can't find it ) that can stop the >>> editor changing >>> <a href="#Anchor">link</a> >>> >>> to >>> >>> <a href="/uPortal/ >>> tag.cd847c08705681e.render.userLayoutRootNode.target.n179.uP? >>> edit_cmd=ToggleElementMode&togglePosition=0.0#Anchor">link</a> >>> >>> 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 the 'Do More With Dual!' webinar >>> happening >>> July 14 at 8am PDT/11am EDT. We invite you to explore the latest in >>> dual >>> core and dual graphics technology at this free one hour event >>> hosted by HP, >>> AMD, and NVIDIA. To register visit http://www.hp.com/go/dualwebinar >>> _______________________________________________ >>> Hypercontent-users mailing list >>> Hyp...@li... >>> https://lists.sourceforge.net/lists/listinfo/hypercontent-users >> >> >> >> >> >> ------------------------------------------------------- >> This SF.Net email is sponsored by the 'Do More With Dual!' webinar >> happening >> July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual >> core and dual graphics technology at this free one hour event hosted >> by HP, >> AMD, and NVIDIA. To register visit http://www.hp.com/go/dualwebinar >> _______________________________________________ >> 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: Carl B. <C.P...@hu...> - 2005-07-14 14:59:45
|
Hi Alex Is there anything in the CVS ( I can't find it ) that can stop the editor changing <a href="#Anchor">link</a> to <a href="/uPortal/tag.cd847c08705681e.render.userLayoutRootNode.target.n179.uP?edit_cmd=ToggleElementMode&togglePosition=0.0#Anchor">link</a> Cheers Carl Alex Vigdor wrote: > Hi Carl, > I can't seem to duplicate the problem. I would double check that > you have an up-to-date copy of > > /webpages/htmlarea/htmlarea.js > > Cheers, > Alex > > On Jul 14, 2005, at 9:56 AM, Carl Barrow wrote: > >> Hi Alex >> >> Is there anything in the CVS ( I can't find it ) that can stop the >> editor changing >> <a href="#Anchor">link</a> >> >> to >> >> <a href="/uPortal/ >> tag.cd847c08705681e.render.userLayoutRootNode.target.n179.uP? >> edit_cmd=ToggleElementMode&togglePosition=0.0#Anchor">link</a> >> >> 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 the 'Do More With Dual!' webinar >> happening >> July 14 at 8am PDT/11am EDT. We invite you to explore the latest in >> dual >> core and dual graphics technology at this free one hour event hosted >> by HP, >> AMD, and NVIDIA. To register visit http://www.hp.com/go/dualwebinar >> _______________________________________________ >> Hypercontent-users mailing list >> Hyp...@li... >> https://lists.sourceforge.net/lists/listinfo/hypercontent-users > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by the 'Do More With Dual!' webinar > happening > July 14 at 8am PDT/11am EDT. We invite you to explore the latest in dual > core and dual graphics technology at this free one hour event hosted > by HP, > AMD, and NVIDIA. To register visit http://www.hp.com/go/dualwebinar > _______________________________________________ > 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...> - 2005-07-14 14:31:47
|
Hi Carl, I can't seem to duplicate the problem. I would double check that you have an up-to-date copy of /webpages/htmlarea/htmlarea.js Cheers, Alex On Jul 14, 2005, at 9:56 AM, Carl Barrow wrote: > Hi Alex > > Is there anything in the CVS ( I can't find it ) that can stop the > editor changing > <a href="#Anchor">link</a> > > to > > <a > href="/uPortal/ > tag.cd847c08705681e.render.userLayoutRootNode.target.n179.uP? > edit_cmd=ToggleElementMode&togglePosition=0.0#Anchor">link</a> > > 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 the 'Do More With Dual!' webinar > happening > July 14 at 8am PDT/11am EDT. We invite you to explore the latest in > dual > core and dual graphics technology at this free one hour event hosted > by HP, > AMD, and NVIDIA. To register visit http://www.hp.com/go/dualwebinar > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users |
From: Carl B. <C.P...@hu...> - 2005-07-14 13:48:52
|
Hi Alex Is there anything in the CVS ( I can't find it ) that can stop the editor changing <a href="#Anchor">link</a> to <a href="/uPortal/tag.cd847c08705681e.render.userLayoutRootNode.target.n179.uP?edit_cmd=ToggleElementMode&togglePosition=0.0#Anchor">link</a> Cheers Carl -- ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 ************************************ |
From: Alex V. <av...@co...> - 2005-07-13 17:37:49
|
Hi Carl, I can't think of a good way to do this in 1.4 . . . I think this would be much easier in 2.0, since you can apply permissions to targets based on patterns, e,g, group:users allow / group:users deny /**/ group:my-department allow /my-department/**/ group:my-department allow /my-department/**/*.* -Alex On Jul 13, 2005, at 6:15 AM, Carl Barrow wrote: > Hi Alex > > I'm setting up a site which consists of a directory for each > department, we have a uPortal channel that will pull in the > appropriate content depending on the users dept code. There are a lot > of directories and therefore a lot of privileges that need to be set > up. Is there any way that I can give access to just one directory > without having to give access at root level and then denying access to > everything that I don't want them to see? > 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 the 'Do More With Dual!' webinar > happening > July 14 at 8am PDT/11am EDT. We invite you to explore the latest in > dual > core and dual graphics technology at this free one hour event hosted > by HP, > AMD, and NVIDIA. To register visit http://www.hp.com/go/dualwebinar > _______________________________________________ > Hypercontent-users mailing list > Hyp...@li... > https://lists.sourceforge.net/lists/listinfo/hypercontent-users |
From: Carl B. <C.P...@hu...> - 2005-07-13 10:07:25
|
Hi Alex I'm setting up a site which consists of a directory for each department, we have a uPortal channel that will pull in the appropriate content depending on the users dept code. There are a lot of directories and therefore a lot of privileges that need to be set up. Is there any way that I can give access to just one directory without having to give access at root level and then denying access to everything that I don't want them to see? Cheers Carl -- ************************************ Carl Barrow Systems Integrator e-Services The University of Hull Cottingham Road Hull HU6 7RX Ext. 6838 ************************************ |