[opencms-dev] Re: opencms-dev Digest, Vol 101, Issue 4 (Out of the Office)

Mike Jones Mike.Jones at lottery.state.tx.us
Thu Jul 13 12:00:42 CEST 2006


I am out of the office till July 24. If you require immediate assistance, please contact Joan Kotal @ 344-5315.  

Please send all Web Site requests to "WebSiteSupport" and all Intranet requests to "Intranet Support".

Thank you,

Michael

>>> opencms-dev 07/13/06 04:56 >>>

Send opencms-dev mailing list submissions to
	opencms-dev at opencms.org

To subscribe or unsubscribe via the World Wide Web, visit
	http://lists.opencms.org/mailman/listinfo/opencms-dev
or, via email, send a message with subject or body 'help' to
	opencms-dev-request at opencms.org

You can reach the person managing the list at
	opencms-dev-owner at opencms.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of opencms-dev digest..."


Today's Topics:

   1. error 500 on site root request, help! (Jon Mayes)
   2. howto customize OpenCMS GUI (Roberto Hervella Mac?a)
   3. Re: error 500 on site root request, help! (Joe Desbonnet)
   4. RE: error 500 on site root request, help![Scanned] (Jon Mayes)
   5. Resource ID (Martin Bedn??)
   6. RE: error 500 on site root request, help![Scanned]
      (Jonathan Woods)
   7. RE: error 500 on site root request, help![Scanned] (Jon Mayes)
   8. OpenCMS Authentication SOLVED (Bill Edwards)
   9. Accessing content from outside JSP? (Jan.Hegewald at sdm.de)
  10. Someone have VFS mapped to the html startup page?
      (maria.freixes_graells at alcatel.es)
  11. AA Use Pluto instead of Tomcat and you can also	deliver
      JSR168 Portlets from your server (nickm at absa.co.za)
  12. Re: uploaded files storage: fs or vfs? (Christian Steinert)
  13. Re: Folder Inconsistency between Online and Offline	project.
      (Christian Steinert)
  14. Re: AA Use Pluto instead of Tomcat and you can also	deliver
      JSR168 Portlets from your server (Joachim Arrasz)
  15. Re: howto customize OpenCMS GUI (Christian Steinert)
  16. Re: Resource ID (Christian Steinert)
  17. OT: mvnForum, anyone using it? (Christoph P. Kukulies)
  18. Re: Resource ID (Shi Yusen)
  19. Sebastian Moog ist au?er Haus. (Sebastian Moog)


----------------------------------------------------------------------

Message: 1
Date: Wed, 12 Jul 2006 11:07:42 +0100
From: "Jon Mayes" <jon.mayes at pegasus-homes.co.uk>
Subject: [opencms-dev] error 500 on site root request, help!
To: "The OpenCms mailing list" <opencms-dev at opencms.org>
Message-ID:
	<E44B5A1B339D6145B4B5C9DCCE4E62612269F5 at pegasus04.pegasus-homes.co.uk>
Content-Type: text/plain; charset="us-ascii"

Dear list,

 

I have a sporadic problem which I can't track down!! Our OpenCms site
works fine, apart from when you access the site root with no page
specified, which results in an error 500.

 

For example, I access http://site-name/index.html fine, but if I do
http://site-name <http://site-name/>  or http://site-name/ I get an
OpenCms error 500 box. What's confusing is that the index page name
(title attribute) is still shown in the title bar even though an error
page is shown, plus if you access http://site-name/index.html first and
THEN access http://site-name <http://site-name/>  the problem goes
away..

 

Every time I try to access the site root these 3 lines appear in the
apache access.log:

 

10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET / HTTP/1.1" 200 1282

10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET
/export/system/handler/template/style.css HTTP/1.1" 304 -

10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET
/export/system/handler/template/warning.png HTTP/1.1" 304 -

 

It doesn't seem right to me that the page code is 200...

 

My OpenCms configuration uses Sebastian Himberger's multisite setup, and
we have the OCEE extensions installed. There are two sites running on
the server - an intranet & an extranet. I was thinking I could add a
rewrite rule to append /index.html to blank requests, but it didn't seem
to like that either :/

 

Here are the lines from apache httpd.conf:

 

<VirtualHost *:80>

ServerAdmin xxxxxxxxxxxxxxx

ServerName pegasus-web

ErrorLog logs/site_error.log

#CustomLog logs/site_custom.log

 

# If the requested URI is located in the resources folder, do not
forward the request

SetEnvIfNoCase Request_URI ^/opencms/resources/.*$ no-jk

 

# If the requested URI is static content do not forward the request

SetEnvIfNoCase Request_URI ^/export/.*$ no-jk

 

RewriteEngine on

 

# If the requested URI is NOT located in the resources folder.

# Prepend an /${WEBAPP_NAME}/opencms to everything that does not already
starts with it

# and force the result to be handled by the next URI-handler ([PT])
(JkMount in this case)

 

RewriteCond %{REQUEST_URI} !^/opencms/resources/.*$

RewriteCond %{REQUEST_URI} !^/export/.*

RewriteRule !^/opencms/opencms/(.*)$ /opencms/opencms%{REQUEST_URI} [PT]

 

# These are the settings for static export. If the requested resource is
not already

# statically exported create a new request to the opencms404 handler.
This has to be

# a new request, because the current would net get through mod_jk
because of the "no-jk" var.

 

RewriteCond %{REQUEST_URI} ^/export/.*$

RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}" !-f

RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}/index_export.html" !-f

RewriteRule .*
/opencms/opencms/handle404?exporturi=%{REQUEST_URI}&%{QUERY_STRING} [P]

 

# If the request starts with /${WEBAPP_NAME}/resources, delete the
/${WEBAPP_NAME} prefix

RewriteCond %{REQUEST_URI} ^/opencms/resources/.*$

RewriteRule ^/opencms/(.*)$ /$1

 

DocumentRoot "D:/Tomcat/webapps/opencms/"

JkMount /* ocms

 

</VirtualHost>

 

Any help greatly appreciated,

 

Jon

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.opencms.org/pipermail/opencms-dev/attachments/20060712/9f5a837f/attachment-0001.html

------------------------------

Message: 2
Date: Wed, 12 Jul 2006 12:23:36 +0200
From: Roberto Hervella Mac?a <rhervella at ahorro.com>
Subject: [opencms-dev] howto customize OpenCMS GUI
To: "The OpenCms mailing list" <opencms-dev at opencms.org>
Message-ID: <00c101c6a59d$3c5a7ed0$3d100280 at ACRHERVELLA>
Content-Type: text/plain; charset="iso-8859-1"

Hi everybody,

I have implemented a new Lucene index to search contents in a folder of news. I know it is possible to search inside the Administrtion view, but I want to offer our users the possibility of searching contents in the news (in the Explorer view).
I don't know exactly which is the best solution to offer this functionality to our users. One possibility I'd thought of was the customization of OpenCMS GUI to add a search buttom for our users.

Has anybody done anything similar?
Is there any other better solution to get our goal?

Thanks in advance,

    Roberto
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.opencms.org/pipermail/opencms-dev/attachments/20060712/b7059ba8/attachment-0001.html

------------------------------

Message: 3
Date: Wed, 12 Jul 2006 11:42:24 +0100
From: "Joe Desbonnet" <jdesbonnet at gmail.com>
Subject: Re: [opencms-dev] error 500 on site root request, help!
To: "The OpenCms mailing list" <opencms-dev at opencms.org>
Message-ID:
	<1cef3e950607120342xde1761du7f45c0fbca5021c4 at mail.gmail.com>
Content-Type: text/plain; charset=WINDOWS-1252; format=flowed

If you are getting a 500 there is problably an error in WEB-INF/logs/opencms.log

Take a look there and see if you can find an exception + stacktrace
and post that if it does not make sense to you.

Yes, it is most unsatisfactory that OpenCms emits status code 200 for
errors.  I understand this bug (Bug #1138 in Bugzilla) is fixed in the
6.2.x releases.

I've been able to hack my 6.0.4 installation to fix that bug. I can
post the details if you want.

Joe.



On 7/12/06, Jon Mayes <jon.mayes at pegasus-homes.co.uk> wrote:
>
>
>
>
> Dear list,
>
>
>
> I have a sporadic problem which I can't track down!! Our OpenCms site works
> fine, apart from when you access the site root with no page specified, which
> results in an error 500.
>
>
>
> For example, I access http://site-name/index.html fine, but if I do
> http://site-name or http://site-name/ I get an OpenCms error 500 box. What's
> confusing is that the index page name (title attribute) is still shown in
> the title bar even though an error page is shown, plus if you access
> http://site-name/index.html first and THEN access http://site-name the
> problem goes away..
>
>
>
> Every time I try to access the site root these 3 lines appear in the apache
> access.log:
>
>
>
> 10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET / HTTP/1.1" 200 1282
>
> 10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET
> /export/system/handler/template/style.css HTTP/1.1" 304 -
>
> 10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET
> /export/system/handler/template/warning.png HTTP/1.1" 304 *
>
>
>
> It doesn't seem right to me that the page code is 200*
>
>
>
> My OpenCms configuration uses Sebastian Himberger's multisite setup, and we
> have the OCEE extensions installed. There are two sites running on the
> server * an intranet & an extranet. I was thinking I could add a rewrite
> rule to append /index.html to blank requests, but it didn't seem to like
> that either :/
>
>
>
> Here are the lines from apache httpd.conf:
>
>
>
> <VirtualHost *:80>
>
> ServerAdmin xxxxxxxxxxxxxxx
>
> ServerName pegasus-web
>
> ErrorLog logs/site_error.log
>
> #CustomLog logs/site_custom.log
>
>
>
> # If the requested URI is located in the resources folder, do not forward
> the request
>
> SetEnvIfNoCase Request_URI ^/opencms/resources/.*$ no-jk
>
>
>
> # If the requested URI is static content do not forward the request
>
> SetEnvIfNoCase Request_URI ^/export/.*$ no-jk
>
>
>
> RewriteEngine on
>
>
>
> # If the requested URI is NOT located in the resources folder.
>
> # Prepend an /${WEBAPP_NAME}/opencms to everything that does not already
> starts with it
>
> # and force the result to be handled by the next URI-handler ([PT]) (JkMount
> in this case)
>
>
>
> RewriteCond %{REQUEST_URI} !^/opencms/resources/.*$
>
> RewriteCond %{REQUEST_URI} !^/export/.*
>
> RewriteRule !^/opencms/opencms/(.*)$ /opencms/opencms%{REQUEST_URI} [PT]
>
>
>
> # These are the settings for static export. If the requested resource is not
> already
>
> # statically exported create a new request to the opencms404 handler. This
> has to be
>
> # a new request, because the current would net get through mod_jk because of
> the "no-jk" var.
>
>
>
> RewriteCond %{REQUEST_URI} ^/export/.*$
>
> RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}" !-f
>
> RewriteCond
> "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}/index_export.html" !-f
>
> RewriteRule .*
> /opencms/opencms/handle404?exporturi=%{REQUEST_URI}&%{QUERY_STRING}
> [P]
>
>
>
> # If the request starts with /${WEBAPP_NAME}/resources, delete the
> /${WEBAPP_NAME} prefix
>
> RewriteCond %{REQUEST_URI} ^/opencms/resources/.*$
>
> RewriteRule ^/opencms/(.*)$ /$1
>
>
>
> DocumentRoot "D:/Tomcat/webapps/opencms/"
>
> JkMount /* ocms
>
>
>
> </VirtualHost>
>
>
>
> Any help greatly appreciated,
>
>
>
> Jon
>
> _______________________________________________
> This mail is sent to you from the opencms-dev mailing list
> To change your list options, or to unsubscribe from the list, please visit
> http://lists.opencms.org/mailman/listinfo/opencms-dev
>
>

------------------------------

Message: 4
Date: Wed, 12 Jul 2006 12:23:57 +0100
From: "Jon Mayes" <jon.mayes at pegasus-homes.co.uk>
Subject: RE: [opencms-dev] error 500 on site root request,
	help![Scanned]
To: <joe at galway.net>,	"The OpenCms mailing list"
	<opencms-dev at opencms.org>
Message-ID:
	<E44B5A1B339D6145B4B5C9DCCE4E6261226A01 at pegasus04.pegasus-homes.co.uk>
Content-Type: text/plain;	charset="us-ascii"

Joe,

I've tried checking all the logs but can't find anything that gives much
clue about what's happening. The only thing that looks out of place in
the opencms.log is this line, which vaguely corresponds to the frequency
and timing of the errors:

12 Jul 2006 12:08:32,051 ERROR [nd.templateone.CmsTemplateBean: 679]
Error reading microsite start folder

I DO have two microsite folders under the /sites/ folder (for each
respective website), but it doesn't make sense that all the pages under
the site root work ok and only the root doesn't. The problem is the same
for both intranet & extranet though, which would suggest the problem
could be related to this error message.. I don't see where/how the
existing configuration could be incorrect though.

Jon

-----Original Message-----
From: opencms-dev-bounces at opencms.org
[mailto:opencms-dev-bounces at opencms.org] On Behalf Of Joe Desbonnet
Sent: 12 July 2006 11:42
To: The OpenCms mailing list
Subject: Re: [opencms-dev] error 500 on site root request,
help![Scanned]

If you are getting a 500 there is problably an error in
WEB-INF/logs/opencms.log

Take a look there and see if you can find an exception + stacktrace
and post that if it does not make sense to you.

Yes, it is most unsatisfactory that OpenCms emits status code 200 for
errors.  I understand this bug (Bug #1138 in Bugzilla) is fixed in the
6.2.x releases.

I've been able to hack my 6.0.4 installation to fix that bug. I can
post the details if you want.

Joe.



On 7/12/06, Jon Mayes <jon.mayes at pegasus-homes.co.uk> wrote:
>
>
>
>
> Dear list,
>
>
>
> I have a sporadic problem which I can't track down!! Our OpenCms site
works
> fine, apart from when you access the site root with no page specified,
which
> results in an error 500.
>
>
>
> For example, I access http://site-name/index.html fine, but if I do
> http://site-name or http://site-name/ I get an OpenCms error 500 box.
What's
> confusing is that the index page name (title attribute) is still shown
in
> the title bar even though an error page is shown, plus if you access
> http://site-name/index.html first and THEN access http://site-name the
> problem goes away..
>
>
>
> Every time I try to access the site root these 3 lines appear in the
apache
> access.log:
>
>
>
> 10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET / HTTP/1.1" 200 1282
>
> 10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET
> /export/system/handler/template/style.css HTTP/1.1" 304 -
>
> 10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET
> /export/system/handler/template/warning.png HTTP/1.1" 304 -
>
>
>
> It doesn't seem right to me that the page code is 200...
>
>
>
> My OpenCms configuration uses Sebastian Himberger's multisite setup,
and we
> have the OCEE extensions installed. There are two sites running on the
> server - an intranet & an extranet. I was thinking I could add a
rewrite
> rule to append /index.html to blank requests, but it didn't seem to
like
> that either :/
>
>
>
> Here are the lines from apache httpd.conf:
>
>
>
> <VirtualHost *:80>
>
> ServerAdmin xxxxxxxxxxxxxxx
>
> ServerName pegasus-web
>
> ErrorLog logs/site_error.log
>
> #CustomLog logs/site_custom.log
>
>
>
> # If the requested URI is located in the resources folder, do not
forward
> the request
>
> SetEnvIfNoCase Request_URI ^/opencms/resources/.*$ no-jk
>
>
>
> # If the requested URI is static content do not forward the request
>
> SetEnvIfNoCase Request_URI ^/export/.*$ no-jk
>
>
>
> RewriteEngine on
>
>
>
> # If the requested URI is NOT located in the resources folder.
>
> # Prepend an /${WEBAPP_NAME}/opencms to everything that does not
already
> starts with it
>
> # and force the result to be handled by the next URI-handler ([PT])
(JkMount
> in this case)
>
>
>
> RewriteCond %{REQUEST_URI} !^/opencms/resources/.*$
>
> RewriteCond %{REQUEST_URI} !^/export/.*
>
> RewriteRule !^/opencms/opencms/(.*)$ /opencms/opencms%{REQUEST_URI}
[PT]
>
>
>
> # These are the settings for static export. If the requested resource
is not
> already
>
> # statically exported create a new request to the opencms404 handler.
This
> has to be
>
> # a new request, because the current would net get through mod_jk
because of
> the "no-jk" var.
>
>
>
> RewriteCond %{REQUEST_URI} ^/export/.*$
>
> RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}" !-f
>
> RewriteCond
> "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}/index_export.html" !-f
>
> RewriteRule .*
> /opencms/opencms/handle404?exporturi=%{REQUEST_URI}&%{QUERY_STRING}
> [P]
>
>
>
> # If the request starts with /${WEBAPP_NAME}/resources, delete the
> /${WEBAPP_NAME} prefix
>
> RewriteCond %{REQUEST_URI} ^/opencms/resources/.*$
>
> RewriteRule ^/opencms/(.*)$ /$1
>
>
>
> DocumentRoot "D:/Tomcat/webapps/opencms/"
>
> JkMount /* ocms
>
>
>
> </VirtualHost>
>
>
>
> Any help greatly appreciated,
>
>
>
> Jon
>
> _______________________________________________
> This mail is sent to you from the opencms-dev mailing list
> To change your list options, or to unsubscribe from the list, please
visit
> http://lists.opencms.org/mailman/listinfo/opencms-dev
>
>

_______________________________________________
This mail is sent to you from the opencms-dev mailing list
To change your list options, or to unsubscribe from the list, please
visit
http://lists.opencms.org/mailman/listinfo/opencms-dev

------------------------------

Message: 5
Date: Wed, 12 Jul 2006 14:07:18 +0200
From: Martin Bedn?? <bednar at triax.cz>
Subject: [opencms-dev] Resource ID
To: The OpenCms mailing list <opencms-dev at opencms.org>
Message-ID: <44B4E5F6.7080806 at triax.cz>
Content-Type: text/plain; charset=ISO-8859-2; format=flowed

Are there some resource ID that indetifies resource all the time 
accessible from JSP tag or scriplet  ?
I need some ID for Articles for binding to JForum and automatic Forum 
creation.

Tnx Martin

------------------------------

Message: 6
Date: Wed, 12 Jul 2006 13:46:36 +0100
From: "Jonathan Woods" <jonathan.woods at scintillance.com>
Subject: RE: [opencms-dev] error 500 on site root request,
	help![Scanned]
To: "'The OpenCms mailing list'" <opencms-dev at opencms.org>
Message-ID: <002e01c6a5b1$38e1e2c0$0500a8c0 at COMPUTER2>
Content-Type: text/plain;	charset="us-ascii"

Jon -

You can always increase the log verbosity by editing <opencms
home>/WEB-INF/log4j.properties and setting log levels for org.opencms to
DEBUG - that often results in useful stuff being output to the log.

Jon 

-----Original Message-----
From: opencms-dev-bounces at opencms.org
[mailto:opencms-dev-bounces at opencms.org] On Behalf Of Jon Mayes
Sent: 12 July 2006 12:24
To: joe at galway.net; The OpenCms mailing list
Subject: RE: [opencms-dev] error 500 on site root request, help![Scanned]

Joe,

I've tried checking all the logs but can't find anything that gives much
clue about what's happening. The only thing that looks out of place in the
opencms.log is this line, which vaguely corresponds to the frequency and
timing of the errors:

12 Jul 2006 12:08:32,051 ERROR [nd.templateone.CmsTemplateBean: 679] Error
reading microsite start folder

I DO have two microsite folders under the /sites/ folder (for each
respective website), but it doesn't make sense that all the pages under the
site root work ok and only the root doesn't. The problem is the same for
both intranet & extranet though, which would suggest the problem could be
related to this error message.. I don't see where/how the existing
configuration could be incorrect though.

Jon

-----Original Message-----
From: opencms-dev-bounces at opencms.org
[mailto:opencms-dev-bounces at opencms.org] On Behalf Of Joe Desbonnet
Sent: 12 July 2006 11:42
To: The OpenCms mailing list
Subject: Re: [opencms-dev] error 500 on site root request, help![Scanned]

If you are getting a 500 there is problably an error in
WEB-INF/logs/opencms.log

Take a look there and see if you can find an exception + stacktrace and post
that if it does not make sense to you.

Yes, it is most unsatisfactory that OpenCms emits status code 200 for
errors.  I understand this bug (Bug #1138 in Bugzilla) is fixed in the 6.2.x
releases.

I've been able to hack my 6.0.4 installation to fix that bug. I can post the
details if you want.

Joe.



On 7/12/06, Jon Mayes <jon.mayes at pegasus-homes.co.uk> wrote:
>
>
>
>
> Dear list,
>
>
>
> I have a sporadic problem which I can't track down!! Our OpenCms site
works
> fine, apart from when you access the site root with no page specified,
which
> results in an error 500.
>
>
>
> For example, I access http://site-name/index.html fine, but if I do 
> http://site-name or http://site-name/ I get an OpenCms error 500 box.
What's
> confusing is that the index page name (title attribute) is still shown
in
> the title bar even though an error page is shown, plus if you access 
> http://site-name/index.html first and THEN access http://site-name the 
> problem goes away..
>
>
>
> Every time I try to access the site root these 3 lines appear in the
apache
> access.log:
>
>
>
> 10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET / HTTP/1.1" 200 1282
>
> 10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET 
> /export/system/handler/template/style.css HTTP/1.1" 304 -
>
> 10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET 
> /export/system/handler/template/warning.png HTTP/1.1" 304 -
>
>
>
> It doesn't seem right to me that the page code is 200...
>
>
>
> My OpenCms configuration uses Sebastian Himberger's multisite setup,
and we
> have the OCEE extensions installed. There are two sites running on the 
> server - an intranet & an extranet. I was thinking I could add a
rewrite
> rule to append /index.html to blank requests, but it didn't seem to
like
> that either :/
>
>
>
> Here are the lines from apache httpd.conf:
>
>
>
> <VirtualHost *:80>
>
> ServerAdmin xxxxxxxxxxxxxxx
>
> ServerName pegasus-web
>
> ErrorLog logs/site_error.log
>
> #CustomLog logs/site_custom.log
>
>
>
> # If the requested URI is located in the resources folder, do not
forward
> the request
>
> SetEnvIfNoCase Request_URI ^/opencms/resources/.*$ no-jk
>
>
>
> # If the requested URI is static content do not forward the request
>
> SetEnvIfNoCase Request_URI ^/export/.*$ no-jk
>
>
>
> RewriteEngine on
>
>
>
> # If the requested URI is NOT located in the resources folder.
>
> # Prepend an /${WEBAPP_NAME}/opencms to everything that does not
already
> starts with it
>
> # and force the result to be handled by the next URI-handler ([PT])
(JkMount
> in this case)
>
>
>
> RewriteCond %{REQUEST_URI} !^/opencms/resources/.*$
>
> RewriteCond %{REQUEST_URI} !^/export/.*
>
> RewriteRule !^/opencms/opencms/(.*)$ /opencms/opencms%{REQUEST_URI}
[PT]
>
>
>
> # These are the settings for static export. If the requested resource
is not
> already
>
> # statically exported create a new request to the opencms404 handler.
This
> has to be
>
> # a new request, because the current would net get through mod_jk
because of
> the "no-jk" var.
>
>
>
> RewriteCond %{REQUEST_URI} ^/export/.*$
>
> RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}" !-f
>
> RewriteCond
> "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}/index_export.html" !-f
>
> RewriteRule .*
> /opencms/opencms/handle404?exporturi=%{REQUEST_URI}&%{QUERY_STRING}
> [P]
>
>
>
> # If the request starts with /${WEBAPP_NAME}/resources, delete the 
> /${WEBAPP_NAME} prefix
>
> RewriteCond %{REQUEST_URI} ^/opencms/resources/.*$
>
> RewriteRule ^/opencms/(.*)$ /$1
>
>
>
> DocumentRoot "D:/Tomcat/webapps/opencms/"
>
> JkMount /* ocms
>
>
>
> </VirtualHost>
>
>
>
> Any help greatly appreciated,
>
>
>
> Jon
>
> _______________________________________________
> This mail is sent to you from the opencms-dev mailing list To change 
> your list options, or to unsubscribe from the list, please
visit
> http://lists.opencms.org/mailman/listinfo/opencms-dev
>
>

_______________________________________________
This mail is sent to you from the opencms-dev mailing list To change your
list options, or to unsubscribe from the list, please visit
http://lists.opencms.org/mailman/listinfo/opencms-dev

_______________________________________________
This mail is sent to you from the opencms-dev mailing list To change your
list options, or to unsubscribe from the list, please visit
http://lists.opencms.org/mailman/listinfo/opencms-dev



------------------------------

Message: 7
Date: Wed, 12 Jul 2006 14:12:16 +0100
From: "Jon Mayes" <jon.mayes at pegasus-homes.co.uk>
Subject: RE: [opencms-dev] error 500 on site root request,
	help![Scanned]
To: "The OpenCms mailing list" <opencms-dev at opencms.org>
Message-ID:
	<E44B5A1B339D6145B4B5C9DCCE4E6261226A0B at pegasus04.pegasus-homes.co.uk>
Content-Type: text/plain;	charset="us-ascii"

Hi Jon,

I've tried that but it doesn't give any [more] info about the error
unfortunately.

<scratches head>

Jon

-----Original Message-----
From: opencms-dev-bounces at opencms.org
[mailto:opencms-dev-bounces at opencms.org] On Behalf Of Jonathan Woods
Sent: 12 July 2006 13:47
To: 'The OpenCms mailing list'
Subject: RE: [opencms-dev] error 500 on site root request,
help![Scanned]

Jon -

You can always increase the log verbosity by editing <opencms
home>/WEB-INF/log4j.properties and setting log levels for org.opencms to
DEBUG - that often results in useful stuff being output to the log.

Jon 

-----Original Message-----
From: opencms-dev-bounces at opencms.org
[mailto:opencms-dev-bounces at opencms.org] On Behalf Of Jon Mayes
Sent: 12 July 2006 12:24
To: joe at galway.net; The OpenCms mailing list
Subject: RE: [opencms-dev] error 500 on site root request,
help![Scanned]

Joe,

I've tried checking all the logs but can't find anything that gives much
clue about what's happening. The only thing that looks out of place in
the
opencms.log is this line, which vaguely corresponds to the frequency and
timing of the errors:

12 Jul 2006 12:08:32,051 ERROR [nd.templateone.CmsTemplateBean: 679]
Error
reading microsite start folder

I DO have two microsite folders under the /sites/ folder (for each
respective website), but it doesn't make sense that all the pages under
the
site root work ok and only the root doesn't. The problem is the same for
both intranet & extranet though, which would suggest the problem could
be
related to this error message.. I don't see where/how the existing
configuration could be incorrect though.

Jon

-----Original Message-----
From: opencms-dev-bounces at opencms.org
[mailto:opencms-dev-bounces at opencms.org] On Behalf Of Joe Desbonnet
Sent: 12 July 2006 11:42
To: The OpenCms mailing list
Subject: Re: [opencms-dev] error 500 on site root request,
help![Scanned]

If you are getting a 500 there is problably an error in
WEB-INF/logs/opencms.log

Take a look there and see if you can find an exception + stacktrace and
post
that if it does not make sense to you.

Yes, it is most unsatisfactory that OpenCms emits status code 200 for
errors.  I understand this bug (Bug #1138 in Bugzilla) is fixed in the
6.2.x
releases.

I've been able to hack my 6.0.4 installation to fix that bug. I can post
the
details if you want.

Joe.



On 7/12/06, Jon Mayes <jon.mayes at pegasus-homes.co.uk> wrote:
>
>
>
>
> Dear list,
>
>
>
> I have a sporadic problem which I can't track down!! Our OpenCms site
works
> fine, apart from when you access the site root with no page specified,
which
> results in an error 500.
>
>
>
> For example, I access http://site-name/index.html fine, but if I do 
> http://site-name or http://site-name/ I get an OpenCms error 500 box.
What's
> confusing is that the index page name (title attribute) is still shown
in
> the title bar even though an error page is shown, plus if you access 
> http://site-name/index.html first and THEN access http://site-name the

> problem goes away..
>
>
>
> Every time I try to access the site root these 3 lines appear in the
apache
> access.log:
>
>
>
> 10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET / HTTP/1.1" 200 1282
>
> 10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET 
> /export/system/handler/template/style.css HTTP/1.1" 304 -
>
> 10.0.200.20 - - [12/Jul/2006:10:52:43 +0100] "GET 
> /export/system/handler/template/warning.png HTTP/1.1" 304 -
>
>
>
> It doesn't seem right to me that the page code is 200...
>
>
>
> My OpenCms configuration uses Sebastian Himberger's multisite setup,
and we
> have the OCEE extensions installed. There are two sites running on the

> server - an intranet & an extranet. I was thinking I could add a
rewrite
> rule to append /index.html to blank requests, but it didn't seem to
like
> that either :/
>
>
>
> Here are the lines from apache httpd.conf:
>
>
>
> <VirtualHost *:80>
>
> ServerAdmin xxxxxxxxxxxxxxx
>
> ServerName pegasus-web
>
> ErrorLog logs/site_error.log
>
> #CustomLog logs/site_custom.log
>
>
>
> # If the requested URI is located in the resources folder, do not
forward
> the request
>
> SetEnvIfNoCase Request_URI ^/opencms/resources/.*$ no-jk
>
>
>
> # If the requested URI is static content do not forward the request
>
> SetEnvIfNoCase Request_URI ^/export/.*$ no-jk
>
>
>
> RewriteEngine on
>
>
>
> # If the requested URI is NOT located in the resources folder.
>
> # Prepend an /${WEBAPP_NAME}/opencms to everything that does not
already
> starts with it
>
> # and force the result to be handled by the next URI-handler ([PT])
(JkMount
> in this case)
>
>
>
> RewriteCond %{REQUEST_URI} !^/opencms/resources/.*$
>
> RewriteCond %{REQUEST_URI} !^/export/.*
>
> RewriteRule !^/opencms/opencms/(.*)$ /opencms/opencms%{REQUEST_URI}
[PT]
>
>
>
> # These are the settings for static export. If the requested resource
is not
> already
>
> # statically exported create a new request to the opencms404 handler.
This
> has to be
>
> # a new request, because the current would net get through mod_jk
because of
> the "no-jk" var.
>
>
>
> RewriteCond %{REQUEST_URI} ^/export/.*$
>
> RewriteCond "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}" !-f
>
> RewriteCond
> "%{DOCUMENT_ROOT}%{REQUEST_FILENAME}/index_export.html" !-f
>
> RewriteRule .*
> /opencms/opencms/handle404?exporturi=%{REQUEST_URI}&%{QUERY_STRING}
> [P]
>
>
>
> # If the request starts with /${WEBAPP_NAME}/resources, delete the 
> /${WEBAPP_NAME} prefix
>
> RewriteCond %{REQUEST_URI} ^/opencms/resources/.*$
>
> RewriteRule ^/opencms/(.*)$ /$1
>
>
>
> DocumentRoot "D:/Tomcat/webapps/opencms/"
>
> JkMount /* ocms
>
>
>
> </VirtualHost>
>
>
>
> Any help greatly appreciated,
>
>
>
> Jon
>
> _______________________________________________
> This mail is sent to you from the opencms-dev mailing list To change 
> your list options, or to unsubscribe from the list, please
visit
> http://lists.opencms.org/mailman/listinfo/opencms-dev
>
>

_______________________________________________
This mail is sent to you from the opencms-dev mailing list To change
your
list options, or to unsubscribe from the list, please visit
http://lists.opencms.org/mailman/listinfo/opencms-dev

_______________________________________________
This mail is sent to you from the opencms-dev mailing list To change
your
list options, or to unsubscribe from the list, please visit
http://lists.opencms.org/mailman/listinfo/opencms-dev



_______________________________________________
This mail is sent to you from the opencms-dev mailing list
To change your list options, or to unsubscribe from the list, please
visit
http://lists.opencms.org/mailman/listinfo/opencms-dev

------------------------------

Message: 8
Date: Wed, 12 Jul 2006 11:45:44 -0400
From: Bill Edwards <wse at jimmy.harvard.edu>
Subject: [opencms-dev] OpenCMS Authentication SOLVED
To: opencms-dev at opencms.org
Cc: Seth Lenzi <lenzi at jimmy.harvard.edu>
Message-ID: <6A7789AD-C468-4C0E-B1AE-7A28EC59F819 at jimmy.harvard.edu>
Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed

(With help from a coworker--thanks, Seth!).  I have set up an  
automatic login to OpenCMS from my portal app as follows:

1.  I store the username and password that I want to pass in a cookie  
(when I do this for real, I will encrypt the password)
2.  I forward to an OpenCMS JSP that I provide that:
A.  Reads the username and password from the cookie
B.  Instantiates a CmsLogin object and logs the user in
C.  Redirects the OpenCMS login page.

Thanks again to all who responded!  Gruesse aus Boston! -- Bill Edwards

------------------------------

Message: 9
Date: Wed, 12 Jul 2006 19:10:18 +0200
From: <Jan.Hegewald at sdm.de>
Subject: [opencms-dev] Accessing content from outside JSP?
To: <opencms-dev at opencms.org>
Message-ID: <FB6FEF2F50E4EA449741BE56A5CE4100283C50 at blnmail1.sdm.de>
Content-Type: text/plain; charset="us-ascii"

Dear list,

I've got a rather simple question, but I constantly fail to find the answer.

I want to access the content of a specific document from within a Java
class. 
The idea behind is, that I created a resource type which shall contain some
configuration as the files in /_configuration with templateone. In a Java
class first of all I fetch the file with the following code:

public Configuration(CmsObject cms)
	{
		this.cms = cms;
		try
		{
			configdoc = cms.readResource(CONFIG_FILE);
		} catch (CmsException e)
		{
			logger.error("Unable to read config file '" +
CONFIG_FILE + "' from VFS.", e);
		}
	}

But how can I access the fields of it? I may read properties with
cms.readPropertyObject(configdoc, key, false); but I don't want to read the
properties but the content fields themselves!?

Any help would be greatly appreciated.

Greetings,
Jan
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 6597 bytes
Desc: not available
Url : http://lists.opencms.org/pipermail/opencms-dev/attachments/20060712/8aa02a3e/smime-0001.bin

------------------------------

Message: 10
Date: Wed, 12 Jul 2006 19:22:37 +0200
From: maria.freixes_graells at alcatel.es
Subject: [opencms-dev] Someone have VFS mapped to the html startup
	page?
To: opencms-dev at opencms.org
Message-ID: <44B52FDD.8000408 at alcatel.es>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed

Hello to all!!!

I would be very gratefully if someone could help me to obtain the 
appropiate code to view the file structure of online project, the VFS 
mapped in the html start page of my new module.
What do I need to implement?

Thanks very much if you could guide to me.

With the best wishes,

Maria

------------------------------

Message: 11
Date: Thu, 13 Jul 2006 08:01:06 +0200
From: <nickm at absa.co.za>
Subject: [opencms-dev] AA Use Pluto instead of Tomcat and you can also
	deliver JSR168 Portlets from your server
To: "The OpenCms mailing list" <opencms-dev at opencms.org>
Message-ID:
	<798CD08943607843BA76B37E6745170C1752A5 at V058EMLFFF001.ds1.ad.absa.co.za>
	
Content-Type: text/plain;	charset="us-ascii"

Hi there 

I replaced Tomcat with Pluto (yes Apache Pluto)
Pluto is a modified version of Tomcat that supports a JSR168 Portal
server
So now I have OpenCms and JSR168 Portlets being delivered from the same
server

Has anyone looked at Pluto yet ?

With kind regards

Nico

___________________________________________________________

Important Notice: 
Authorised Financial Services Provider

Important restrictions, qualifications and disclaimers 
("the Disclaimer") apply to this email. To read this click on the 
following address or copy into your Internet browser: 

http://www.absa.co.za/disclaimer

The Disclaimer forms part of the content of this email in terms of 
section 11 of the Electronic Communications and Transactions 
Act, 25 of 2002. 

If you are unable to access the Disclaimer, send a blank e-mail 
to disclaimer at absa.co.za and we will send you a copy of the 
Disclaimer.

------------------------------

Message: 12
Date: Thu, 13 Jul 2006 08:12:33 +0200
From: Christian Steinert <christian_steinert at web.de>
Subject: Re: [opencms-dev] uploaded files storage: fs or vfs?
To: The OpenCms mailing list <opencms-dev at opencms.org>
Message-ID: <44B5E451.9020207 at web.de>
Content-Type: text/plain; charset="iso-8859-1"

Another Con about VFS is that you will have the file twice in your
database - once as online version and once as offline version.

If you happen to use static export, you might in the end even end up to
use three times as much space

regards,
Christian
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3269 bytes
Desc: S/MIME Cryptographic Signature
Url : http://lists.opencms.org/pipermail/opencms-dev/attachments/20060713/5f1a32fc/smime-0001.bin

------------------------------

Message: 13
Date: Thu, 13 Jul 2006 08:19:10 +0200
From: Christian Steinert <christian_steinert at web.de>
Subject: Re: [opencms-dev] Folder Inconsistency between Online and
	Offline	project.
To: The OpenCms mailing list <opencms-dev at opencms.org>
Message-ID: <44B5E5DE.7030508 at web.de>
Content-Type: text/plain; charset="iso-8859-1"

Tane Potaka schrieb:
> Hi,
> 
> We have a folder that exists in our offline project. This folder has a
> duplicate in the online project that doesn't show up in the offline
> project.  This is causing our site to show the same folder twice in the
> published online project such that it looks like this:
> 
> OFFLINE PROJECT:
> 
> foldername      Folder Title      Type     
> DateLastModified....................
> 
> ONLINE PROJECT:
> 
> foldername      Folder Title      Type     
> DateLastModified....................
> foldermane      Folder Title      Type     
> DateLastModified....................
> 
> 
> I need to delete the folder in the online project. How can I do that
> since the duplicate doesn't appear in the offline project making it
> impossible to delete.
> 
> 

- do a backup of your database
- try to use the synchronization feature (under Admin view; Workplace
tools) and sync your content out to the real filesystem
- edit the metadata file and remove references to whatever seems to be
corrupt
- use synchronization again to import your changed metadata

hope that helps
Christian
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3269 bytes
Desc: S/MIME Cryptographic Signature
Url : http://lists.opencms.org/pipermail/opencms-dev/attachments/20060713/c2aeff92/smime-0001.bin

------------------------------

Message: 14
Date: Thu, 13 Jul 2006 08:22:07 +0200
From: Joachim Arrasz <info at arrasz.de>
Subject: Re: [opencms-dev] AA Use Pluto instead of Tomcat and you can
	also	deliver JSR168 Portlets from your server
To: The OpenCms mailing list <opencms-dev at opencms.org>
Message-ID: <44B5E68F.9000403 at arrasz.de>
Content-Type: text/plain; charset=us-ascii; format=flowed

Hi,

>I replaced Tomcat with Pluto (yes Apache Pluto)
>Pluto is a modified version of Tomcat that supports a JSR168 Portal
>server
>So now I have OpenCms and JSR168 Portlets being delivered from the same
>server
>  
>
well, hehe, the pluto container itself is nothing more than a 
specialized servlet .. which works like a wrapper for portlets.
And the current distribution is just a tomcat with an installed Pluto 
webapp ... nothing more, nothiing left.
You can now run portlets and OpenCms together, but OpenCms itself is not 
JSR168 compatible ... so there is no overvalue at all ..

just my 2 cents

Regards

Achim



------------------------------

Message: 15
Date: Thu, 13 Jul 2006 08:28:29 +0200
From: Christian Steinert <christian_steinert at web.de>
Subject: Re: [opencms-dev] howto customize OpenCMS GUI
To: The OpenCms mailing list <opencms-dev at opencms.org>
Message-ID: <44B5E80D.2060508 at web.de>
Content-Type: text/plain; charset="iso-8859-1"

Roberto Hervella Mac*a schrieb:
> Hi everybody,
> 
> I have implemented a new Lucene index to search contents in a folder of news. I know it is possible to search inside the Administrtion view, but I want to offer our users the possibility of searching contents in the news (in the Explorer view).
> I don't know exactly which is the best solution to offer this functionality to our users. One possibility I'd thought of was the customization of OpenCMS GUI to add a search buttom for our users.
> 
> Has anybody done anything similar?
> Is there any other better solution to get our goal?
> 
> Thanks in advance,
> 
>     Roberto
> 

Hi Roberto,


I don't think that there's an elegant way to do this - so I think all
you can do is to dig out the file you want to change and - well - change
it, plus add a very big comment that encloses all your changes. Then you
add the changed file to the additional resources of a module and export
it, so that you can re-import the change together with your module,
after you have done an update.

Of course any update might break this or at least you might introduce
old code back into the system, but afaik there is no extension mechanism
or anything to overcome this. I have the same problem because I need to
do some slight modifications to the opencms explorer listings.

regards
Christian
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3269 bytes
Desc: S/MIME Cryptographic Signature
Url : http://lists.opencms.org/pipermail/opencms-dev/attachments/20060713/b5b0d626/smime-0001.bin

------------------------------

Message: 16
Date: Thu, 13 Jul 2006 08:35:15 +0200
From: Christian Steinert <christian_steinert at web.de>
Subject: Re: [opencms-dev] Resource ID
To: The OpenCms mailing list <opencms-dev at opencms.org>
Message-ID: <44B5E9A3.3090803 at web.de>
Content-Type: text/plain; charset="iso-8859-2"

Martin Bedn** schrieb:
> Are there some resource ID that indetifies resource all the time
> accessible from JSP tag or scriplet  ?
> I need some ID for Articles for binding to JForum and automatic Forum
> creation.
> 
> Tnx Martin
> 
I don't know how Jforum works, but each resource has a GUID. Each GUID
is uniquely identifying one content block, but there might be more than
one sibling that points to the same content block.

I don't know any way to translate a GUID to a resource, though and
technically a GUID could only translate to the set of all siblings that
commonly point to the same content block, not necessarily to just one
single file name.

You should be able to dig out files you want and access them with
classes CmsJspActionElement, CmsJspNavBuilder, CmsObject and CmsResource.

Check out org.opencms.file.CmsResource.getResourceId() in particular.

hth
christian
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 3269 bytes
Desc: S/MIME Cryptographic Signature
Url : http://lists.opencms.org/pipermail/opencms-dev/attachments/20060713/979f8433/smime-0001.bin

------------------------------

Message: 17
Date: Thu, 13 Jul 2006 09:02:30 +0200
From: "Christoph P. Kukulies" <kuku at physik.rwth-aachen.de>
Subject: [opencms-dev] OT: mvnForum, anyone using it?
To: opencms-dev at opencms.org
Message-ID: <20060713070230.GA6948 at physik.rwth-aachen.de>
Content-Type: text/plain; charset=us-ascii

I have some questions anout the installation of Arash's MVNForum
plugin for OpenCms. Is there a mailing list or forum for it?
Will try on pomegranate.de right now, but until then, if there's
anyone on this list using it, a short question:

Can the mvnForum plugin be made to run under OpenCms when it runs
as ROOT app? For me the installation failed because suddenly, after 
restarting tomcat the first time after installation, an opencms folder
appeared under $(CATALINA_HOME)/webapps which then messed the opencms 
installation.

--
Chris Christoph P. U. Kukulies kukulies (at) rwth-aachen.de

------------------------------

Message: 18
Date: Thu, 13 Jul 2006 15:46:50 +0800
From: "Shi Yusen" <shiys at langhua.cn>
Subject: Re: [opencms-dev] Resource ID
To: "'The OpenCms mailing list'" <opencms-dev at opencms.org>
Message-ID: <1152776821$34549$13521363 at shiys@langhua.cn>
Content-Type: text/plain;	charset="UTF-8"

Hi Martin,

In OpenCms, one ResourceID could point to one or more StructureIDs. If more, it means there are siblings.

You can get a resource path from its StructureID by adding methods in the following files:
org.opencms.file.CmsObject:
    public String getResourcePath(CmsUUID structureID) throws CmsException {
        return (m_securityManager.getResourcePath(m_context, structureID));
    }

org.opencms.db.CmsDriverManager.java:
    public String getResourcePath(CmsDbContext dbc, CmsUUID structureID) throws CmsException{
        return m_vfsDriver.getResourcePath(dbc, dbc.currentProject().getId(), structureID);
    }

/org/opencms/db/generic/CmsVfsDriver.java:
    public String getResourcePath(CmsDbContext dbc, int projectId, CmsUUID structureId) throws CmsDataAccessException {
        Connection conn = null;
        PreparedStatement stmt = null;
        ResultSet res = null;
        String resourcePath = null;
        String C_SELECT_ID = "select * from CMS_OFFLINE_STRUCTURE where " + "STRUCTURE_ID = ?";

        try {
            conn = m_sqlManager.getConnection(dbc, projectId); 
            stmt = conn.prepareStatement(C_SELECT_ID);
            stmt.setString(1, resourceId.toString());
            
            res = stmt.executeQuery();
            if (res.next())
             resourcePath = res.getString(4);
        } catch (SQLException e) {
            throw new CmsDbSqlException(Messages.get().container(
                    Messages.ERR_GENERIC_SQL_1,
                    CmsDbSqlException.getErrorQuery(stmt)), e);
        } finally {
            m_sqlManager.closeAll(dbc, conn, stmt, res);
        }

        return resourcePath;
    }

Regards,

Shi Yusen/Beijing Langhua Ltd.
--------------------------------------------------------------
Tel: 86-10-88514088, 88514099
Fax: 86-10-88514099
Email: shiys at langhua.cn
Website: http://www.langhua.cn/
--------------------------------------------------------------
 
-----************-----
*********: opencms-dev-bounces at opencms.org [mailto:opencms-dev-bounces at opencms.org] ****** Christian Steinert
************: 2006***7***13*** 14:35
*********: The OpenCms mailing list
******: Re: [opencms-dev] Resource ID

Martin Bedn**** schrieb:
> Are there some resource ID that indetifies resource all the time
> accessible from JSP tag or scriplet  ?
> I need some ID for Articles for binding to JForum and automatic Forum
> creation.
> 
> Tnx Martin
> 
I don't know how Jforum works, but each resource has a GUID. Each GUID
is uniquely identifying one content block, but there might be more than
one sibling that points to the same content block.

I don't know any way to translate a GUID to a resource, though and
technically a GUID could only translate to the set of all siblings that
commonly point to the same content block, not necessarily to just one
single file name.

You should be able to dig out files you want and access them with
classes CmsJspActionElement, CmsJspNavBuilder, CmsObject and CmsResource.

Check out org.opencms.file.CmsResource.getResourceId() in particular.

hth
christian


------------------------------

Message: 19
Date: Thu, 13 Jul 2006 10:02:25 +0200
From: Sebastian Moog <sebastian.moog at prosystemsit.de>
Subject: [opencms-dev] Sebastian Moog ist au?er Haus.
To: opencms-dev at opencms.org
Message-ID:
	<OF3B6E3305.46BC4C72-ONC12571AA.002C2AFD-C12571AA.002C2AFD at ksk-koeln.de>
	
Content-Type: text/plain; charset=ISO-8859-1


Ich werde ab  13.07.2006 nicht im B*ro sein. Ich kehre zur*ck am
17.07.2006.

Ich werde Ihre Nachricht nach meiner R*ckkehr beantworten.
_____________________________________________________________________
prosystems IT GmbH
Anwendungsentwicklung
Postfach 31 51
53021 Bonn (Germany)

Tel: 0228 / 3366 - 3350, Fax: 0228 / 3366 - 73350
mailto:Sebastian.Moog at prosystemsIT.de http://www.prosystemsIT.de
Amtsgericht Bonn - HR B 13189



------------------------------

_______________________________________________
This mail is send to you from the opencms-dev mailing list
To change your list options, or to unsubscribe from the list, please visit
http://mail.opencms.org/mailman/listinfo/opencms-dev

End of opencms-dev Digest, Vol 101, Issue 4
*******************************************




More information about the opencms-dev mailing list