Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Language IDEs » ServerTools (WTP) » using jstl taglibs
using jstl taglibs [message #148221] Tue, 22 November 2005 12:30 Go to next message
Zohar Amir is currently offline Zohar AmirFriend
Messages: 419
Registered: July 2009
Senior Member
Hi,
I just started working with jsp for the first time. I tried using it with
jstl, but I got some errors. I put the 2 jar files that come with the jstl
in WEB-INF/lib . I then added "<%@taglib
uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%> to my jsp file. When
trying to access this jsp I got:

[Fatal Error] jstl::1:1: Content is not allowed in prolog.
ERROR: 'Content is not allowed in prolog.'
FATAL ERROR: 'Could not compile stylesheet'

Any idea why?
Thanks,
Zohar.
Re: using jstl taglibs [message #148229 is a reply to message #148221] Tue, 22 November 2005 15:49 Go to previous messageGo to next message
Nitin Dahyabhai is currently offline Nitin DahyabhaiFriend
Messages: 4489
Registered: July 2009
Senior Member

Zohar wrote:
> I just started working with jsp for the first time. I tried using it with
> jstl, but I got some errors. I put the 2 jar files that come with the jstl
> in WEB-INF/lib . I then added "<%@taglib
> uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%> to my jsp file. When
> trying to access this jsp I got:
>
> [Fatal Error] jstl::1:1: Content is not allowed in prolog.
> ERROR: 'Content is not allowed in prolog.'
> FATAL ERROR: 'Could not compile stylesheet'
>
> Any idea why?

Where and when was this error reported?

--
- Nitin


_
Nitin Dahyabhai
Eclipse Web Tools Platform
Re: using jstl taglibs [message #148353 is a reply to message #148221] Tue, 22 November 2005 17:18 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: erickson_d.yahoo.removethis.com

I can't say for sure if this is your problem, but there are some
versions of JSTL kicking around that have bad TLDs. I had trouble with
a version that I got from an older JWSDP. But I'm using a version out
of the Apache Tomcat 5.5 distribution that works fine.

Zohar wrote:

> Hi,
> I just started working with jsp for the first time. I tried using it with
> jstl, but I got some errors. I put the 2 jar files that come with the jstl
> in WEB-INF/lib . I then added "<%@taglib
> uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%> to my jsp file. When
> trying to access this jsp I got:
>
> [Fatal Error] jstl::1:1: Content is not allowed in prolog.
> ERROR: 'Content is not allowed in prolog.'
> FATAL ERROR: 'Could not compile stylesheet'
>
> Any idea why?
> Thanks,
> Zohar.
>
>
Re: using jstl taglibs [message #148434 is a reply to message #148229] Wed, 23 November 2005 07:11 Go to previous messageGo to next message
Zohar Amir is currently offline Zohar AmirFriend
Messages: 419
Registered: July 2009
Senior Member
In the console, when I try getting this jsp with a firefox browser. It's
also displayed as the result of the GET action.

"Nitin Dahyabhai" <nitind@us.ibm.com> wrote in message
news:dlvemd$6qs$1@news.eclipse.org...
> Zohar wrote:
>> I just started working with jsp for the first time. I tried using it with
>> jstl, but I got some errors. I put the 2 jar files that come with the
>> jstl in WEB-INF/lib . I then added "<%@taglib
>> uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%> to my jsp file. When
>> trying to access this jsp I got:
>>
>> [Fatal Error] jstl::1:1: Content is not allowed in prolog.
>> ERROR: 'Content is not allowed in prolog.'
>> FATAL ERROR: 'Could not compile stylesheet'
>>
>> Any idea why?
>
> Where and when was this error reported?
>
> --
> - Nitin
Re: using jstl taglibs [message #148441 is a reply to message #148353] Wed, 23 November 2005 07:12 Go to previous messageGo to next message
Zohar Amir is currently offline Zohar AmirFriend
Messages: 419
Registered: July 2009
Senior Member
What do I have to do with those TLD files? Sorry if this sounds stupid...

"Doug Erickson" <erickson_d@yahoo.removethis.com> wrote in message
news:dlvjt1$f8b$1@news.eclipse.org...
>I can't say for sure if this is your problem, but there are some versions
>of JSTL kicking around that have bad TLDs. I had trouble with a version
>that I got from an older JWSDP. But I'm using a version out of the Apache
>Tomcat 5.5 distribution that works fine.
>
> Zohar wrote:
>
>> Hi,
>> I just started working with jsp for the first time. I tried using it with
>> jstl, but I got some errors. I put the 2 jar files that come with the
>> jstl in WEB-INF/lib . I then added "<%@taglib
>> uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%> to my jsp file. When
>> trying to access this jsp I got:
>>
>> [Fatal Error] jstl::1:1: Content is not allowed in prolog.
>> ERROR: 'Content is not allowed in prolog.'
>> FATAL ERROR: 'Could not compile stylesheet'
>>
>> Any idea why?
>> Thanks,
>> Zohar.
Re: using jstl taglibs [message #148501 is a reply to message #148434] Wed, 23 November 2005 14:09 Go to previous messageGo to next message
Andreas Holtz is currently offline Andreas HoltzFriend
Messages: 53
Registered: July 2009
Member
Could you post the first rows of your jsp?
Perhaps your applications server does not compile it and sends it directly
to the browser.

You should not have something like
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd"> in your jsp.

Andreas
Re: using jstl taglibs [message #148527 is a reply to message #148501] Wed, 23 November 2005 15:32 Go to previous messageGo to next message
Zohar Amir is currently offline Zohar AmirFriend
Messages: 419
Registered: July 2009
Senior Member
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>MY PAGE</title>
</head>
<body>
HELLO THERE
</body>
</html>


"Andreas Holtz" <A.Holtz@gmx.net> wrote in message
news:85e544de8f836c9d41631bfc150f9a89$1@www.eclipse.org...
> Could you post the first rows of your jsp?
> Perhaps your applications server does not compile it and sends it directly
> to the browser.
>
> You should not have something like
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
> "http://www.w3.org/TR/html4/strict.dtd"> in your jsp.
>
> Andreas
>
Re: using jstl taglibs [message #148565 is a reply to message #148501] Wed, 23 November 2005 17:11 Go to previous messageGo to next message
Zohar Amir is currently offline Zohar AmirFriend
Messages: 419
Registered: July 2009
Senior Member
it seems that this line is the problematic one:

<%@taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%>

when I take it out the page compiles fine.

"Andreas Holtz" <A.Holtz@gmx.net> wrote in message
news:85e544de8f836c9d41631bfc150f9a89$1@www.eclipse.org...
> Could you post the first rows of your jsp?
> Perhaps your applications server does not compile it and sends it directly
> to the browser.
>
> You should not have something like
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
> "http://www.w3.org/TR/html4/strict.dtd"> in your jsp.
>
> Andreas
>
Re: using jstl taglibs [message #148581 is a reply to message #148565] Wed, 23 November 2005 17:28 Go to previous messageGo to next message
Larry Isaacs is currently offline Larry IsaacsFriend
Messages: 1354
Registered: July 2009
Senior Member
I believe it should be "http://java.sun.com/jstl/xml", without the
"jsp". Assuming there's no relevant taglib declaration in the web.xml,
then the TLD will be read directly from the jar's internal META-INF
directory. If you are unsure what the URI should be, examine the
appropriate TLD within the jar, x.tld in this case. Find the <uri>
element and that will give you what you should specify.

Cheers,
Larry

Zohar wrote:
> it seems that this line is the problematic one:
>
> <%@taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%>
>
> when I take it out the page compiles fine.
>
> "Andreas Holtz" <A.Holtz@gmx.net> wrote in message
> news:85e544de8f836c9d41631bfc150f9a89$1@www.eclipse.org...
>
>>Could you post the first rows of your jsp?
>>Perhaps your applications server does not compile it and sends it directly
>>to the browser.
>>
>>You should not have something like
>><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
>>"http://www.w3.org/TR/html4/strict.dtd"> in your jsp.
>>
>>Andreas
>>
>
>
>
Re: using jstl taglibs [message #148805 is a reply to message #148581] Thu, 24 November 2005 06:42 Go to previous messageGo to next message
Zohar Amir is currently offline Zohar AmirFriend
Messages: 419
Registered: July 2009
Senior Member
I have this in x.tld:

<description>JSTL 1.1 XML library</description>
<display-name>JSTL XML</display-name>
<tlib-version>1.1</tlib-version>
<short-name>x</short-name>
<uri>http://java.sun.com/jsp/jstl/xml</uri>

So it seems like it's http://java.sun.com/jsp/jstl/xml - is that correct?

"Larry Isaacs" <Larry.Isaacs@sas.com> wrote in message
news:dm28r8$ae9$1@news.eclipse.org...
>I believe it should be "http://java.sun.com/jstl/xml", without the "jsp".
>Assuming there's no relevant taglib declaration in the web.xml, then the
>TLD will be read directly from the jar's internal META-INF directory. If
>you are unsure what the URI should be, examine the appropriate TLD within
>the jar, x.tld in this case. Find the <uri> element and that will give you
>what you should specify.
>
> Cheers,
> Larry
>
> Zohar wrote:
>> it seems that this line is the problematic one:
>>
>> <%@taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%>
>>
>> when I take it out the page compiles fine.
>>
>> "Andreas Holtz" <A.Holtz@gmx.net> wrote in message
>> news:85e544de8f836c9d41631bfc150f9a89$1@www.eclipse.org...
>>
>>>Could you post the first rows of your jsp?
>>>Perhaps your applications server does not compile it and sends it
>>>directly to the browser.
>>>
>>>You should not have something like
>>><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
>>>"http://www.w3.org/TR/html4/strict.dtd"> in your jsp.
>>>
>>>Andreas
>>>
>>
>>
Re: using jstl taglibs [message #149058 is a reply to message #148221] Thu, 24 November 2005 22:47 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: thisisnot.mymail.com

Zohar wrote:
> Hi,
> I just started working with jsp for the first time. I tried using it with
> jstl, but I got some errors. I put the 2 jar files that come with the jstl
> in WEB-INF/lib . I then added "<%@taglib
> uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%> to my jsp file. When
> trying to access this jsp I got:
>
> [Fatal Error] jstl::1:1: Content is not allowed in prolog.
> ERROR: 'Content is not allowed in prolog.'
> FATAL ERROR: 'Could not compile stylesheet'
>
> Any idea why?
> Thanks,
> Zohar.
>
>
Do you have xalan in you libs?
Re: using jstl taglibs [message #149425 is a reply to message #149058] Sun, 27 November 2005 07:14 Go to previous messageGo to next message
Zohar Amir is currently offline Zohar AmirFriend
Messages: 419
Registered: July 2009
Senior Member
no, should I?

"Srgjan Srepfler" <thisisnot@mymail.com> wrote in message
news:dm5fuc$90j$1@news.eclipse.org...
> Zohar wrote:
>> Hi,
>> I just started working with jsp for the first time. I tried using it with
>> jstl, but I got some errors. I put the 2 jar files that come with the
>> jstl in WEB-INF/lib . I then added "<%@taglib
>> uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%> to my jsp file. When
>> trying to access this jsp I got:
>>
>> [Fatal Error] jstl::1:1: Content is not allowed in prolog.
>> ERROR: 'Content is not allowed in prolog.'
>> FATAL ERROR: 'Could not compile stylesheet'
>>
>> Any idea why?
>> Thanks,
>> Zohar.
> Do you have xalan in you libs?
Re: using jstl taglibs [message #149433 is a reply to message #148805] Sun, 27 November 2005 21:00 Go to previous messageGo to next message
Larry Isaacs is currently offline Larry IsaacsFriend
Messages: 1354
Registered: July 2009
Senior Member
I think I was looking at a jar from JSTL 1.0.x, so it looks like they
changed the URI going to 1.1. Since your URI was correct, I'm not sure
why the taglib tag was causing problems.

Larry

Zohar wrote:
> I have this in x.tld:
>
> <description>JSTL 1.1 XML library</description>
> <display-name>JSTL XML</display-name>
> <tlib-version>1.1</tlib-version>
> <short-name>x</short-name>
> <uri>http://java.sun.com/jsp/jstl/xml</uri>
>
> So it seems like it's http://java.sun.com/jsp/jstl/xml - is that correct?
>
> "Larry Isaacs" <Larry.Isaacs@sas.com> wrote in message
> news:dm28r8$ae9$1@news.eclipse.org...
>
>>I believe it should be "http://java.sun.com/jstl/xml", without the "jsp".
>>Assuming there's no relevant taglib declaration in the web.xml, then the
>>TLD will be read directly from the jar's internal META-INF directory. If
>>you are unsure what the URI should be, examine the appropriate TLD within
>>the jar, x.tld in this case. Find the <uri> element and that will give you
>>what you should specify.
>>
>>Cheers,
>>Larry
>>
>>Zohar wrote:
>>
>>>it seems that this line is the problematic one:
>>>
>>><%@taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%>
>>>
>>>when I take it out the page compiles fine.
>>>
>>>"Andreas Holtz" <A.Holtz@gmx.net> wrote in message
>>>news:85e544de8f836c9d41631bfc150f9a89$1@www.eclipse.org...
>>>
>>>
>>>>Could you post the first rows of your jsp?
>>>>Perhaps your applications server does not compile it and sends it
>>>>directly to the browser.
>>>>
>>>>You should not have something like
>>>><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
>>>>"http://www.w3.org/TR/html4/strict.dtd"> in your jsp.
>>>>
>>>>Andreas
>>>>
>>>
>>>
>
Re: using jstl taglibs [message #149552 is a reply to message #148527] Mon, 28 November 2005 15:46 Go to previous messageGo to next message
Andreas Holtz is currently offline Andreas HoltzFriend
Messages: 53
Registered: July 2009
Member
Hi,

try to remove
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

good luck

Andreas
Re: using jstl taglibs [message #149668 is a reply to message #149433] Tue, 29 November 2005 13:45 Go to previous messageGo to next message
Zohar Amir is currently offline Zohar AmirFriend
Messages: 419
Registered: July 2009
Senior Member
I've now reduced the jsp to this:
---------------------------8<-------------------------------------------------
<%@taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<x:transform xml="restaurants.xml" xslt="restaurants.xsl" />
---------------------------8<-------------------------------------------------

I still get this when trying to get it:

[Fatal Error] jstl::1:1: Content is not allowed in prolog.
ERROR: 'Content is not allowed in prolog.'
FATAL ERROR: 'Could not compile stylesheet'
Nov 29, 2005 3:39:48 PM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet jsp threw exception
javax.xml.transform.TransformerConfigurationException: Could not compile
stylesheet

If I take out the line
<x:transform xml="restaurants.xml" xslt="restaurants.xsl" />
it works OK (nothing is returned, but no exception is thrown)

"Larry Isaacs" <Larry.Isaacs@sas.com> wrote in message
news:dmd6qb$rho$1@news.eclipse.org...
>I think I was looking at a jar from JSTL 1.0.x, so it looks like they
>changed the URI going to 1.1. Since your URI was correct, I'm not sure why
>the taglib tag was causing problems.
>
> Larry
>
> Zohar wrote:
>> I have this in x.tld:
>>
>> <description>JSTL 1.1 XML library</description>
>> <display-name>JSTL XML</display-name>
>> <tlib-version>1.1</tlib-version>
>> <short-name>x</short-name>
>> <uri>http://java.sun.com/jsp/jstl/xml</uri>
>>
>> So it seems like it's http://java.sun.com/jsp/jstl/xml - is that correct?
>>
>> "Larry Isaacs" <Larry.Isaacs@sas.com> wrote in message
>> news:dm28r8$ae9$1@news.eclipse.org...
>>
>>>I believe it should be "http://java.sun.com/jstl/xml", without the "jsp".
>>>Assuming there's no relevant taglib declaration in the web.xml, then the
>>>TLD will be read directly from the jar's internal META-INF directory. If
>>>you are unsure what the URI should be, examine the appropriate TLD within
>>>the jar, x.tld in this case. Find the <uri> element and that will give
>>>you what you should specify.
>>>
>>>Cheers,
>>>Larry
>>>
>>>Zohar wrote:
>>>
>>>>it seems that this line is the problematic one:
>>>>
>>>><%@taglib uri="http://java.sun.com/jsp/jstl/xml" prefix="x"%>
>>>>
>>>>when I take it out the page compiles fine.
>>>>
>>>>"Andreas Holtz" <A.Holtz@gmx.net> wrote in message
>>>>news:85e544de8f836c9d41631bfc150f9a89$1@www.eclipse.org...
>>>>
>>>>
>>>>>Could you post the first rows of your jsp?
>>>>>Perhaps your applications server does not compile it and sends it
>>>>>directly to the browser.
>>>>>
>>>>>You should not have something like
>>>>><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
>>>>>"http://www.w3.org/TR/html4/strict.dtd"> in your jsp.
>>>>>
>>>>>Andreas
>>>>>
>>>>
>>>>
>>
Re: using jstl taglibs [message #149722 is a reply to message #149668] Tue, 29 November 2005 16:29 Go to previous messageGo to next message
Nitin Dahyabhai is currently offline Nitin DahyabhaiFriend
Messages: 4489
Registered: July 2009
Senior Member

Zohar wrote:
> [Fatal Error] jstl::1:1: Content is not allowed in prolog.
> ERROR: 'Content is not allowed in prolog.'
> FATAL ERROR: 'Could not compile stylesheet'
> Nov 29, 2005 3:39:48 PM org.apache.catalina.core.StandardWrapperValve invoke
> SEVERE: Servlet.service() for servlet jsp threw exception
> javax.xml.transform.TransformerConfigurationException: Could not compile
> stylesheet
>
> If I take out the line
> <x:transform xml="restaurants.xml" xslt="restaurants.xsl" />
> it works OK (nothing is returned, but no exception is thrown)

it looks like restaurants.xml is itself not well-formed. Perhaps
it's missing the XML declaration at the start or the DOCTYPE is invalid?

--
- Nitin


_
Nitin Dahyabhai
Eclipse Web Tools Platform
Re: using jstl taglibs [message #150129 is a reply to message #149722] Thu, 01 December 2005 06:59 Go to previous messageGo to next message
Zohar Amir is currently offline Zohar AmirFriend
Messages: 419
Registered: July 2009
Senior Member
Here it is attached...

"Nitin Dahyabhai" <nitind@us.ibm.com> wrote in message
news:dmhvkt$cll$1@news.eclipse.org...
> Zohar wrote:
>> [Fatal Error] jstl::1:1: Content is not allowed in prolog.
>> ERROR: 'Content is not allowed in prolog.'
>> FATAL ERROR: 'Could not compile stylesheet'
>> Nov 29, 2005 3:39:48 PM org.apache.catalina.core.StandardWrapperValve
>> invoke
>> SEVERE: Servlet.service() for servlet jsp threw exception
>> javax.xml.transform.TransformerConfigurationException: Could not compile
>> stylesheet
>>
>> If I take out the line
>> <x:transform xml="restaurants.xml" xslt="restaurants.xsl" />
>> it works OK (nothing is returned, but no exception is thrown)
>
> it looks like restaurants.xml is itself not well-formed. Perhaps
> it's missing the XML declaration at the start or the DOCTYPE is invalid?
>
> --
> - Nitin


Re: using jstl taglibs [message #150258 is a reply to message #150129] Thu, 01 December 2005 10:05 Go to previous messageGo to next message
Nitin Dahyabhai is currently offline Nitin DahyabhaiFriend
Messages: 4489
Registered: July 2009
Senior Member

Zohar wrote:
>>>[Fatal Error] jstl::1:1: Content is not allowed in prolog.
>>>ERROR: 'Content is not allowed in prolog.'
>>>FATAL ERROR: 'Could not compile stylesheet'
>>>Nov 29, 2005 3:39:48 PM org.apache.catalina.core.StandardWrapperValve
>>>invoke
>>>SEVERE: Servlet.service() for servlet jsp threw exception
>>>javax.xml.transform.TransformerConfigurationException: Could not compile
>>>stylesheet
>>>
>>>If I take out the line
>>><x:transform xml="restaurants.xml" xslt="restaurants.xsl" />
>>>it works OK (nothing is returned, but no exception is thrown)

My bad. It looks like it's complaining about the stylesheet.

--
- Nitin


_
Nitin Dahyabhai
Eclipse Web Tools Platform
Re: using jstl taglibs [message #150340 is a reply to message #150258] Thu, 01 December 2005 12:11 Go to previous messageGo to next message
Zohar Amir is currently offline Zohar AmirFriend
Messages: 419
Registered: July 2009
Senior Member
here it is then...

"Nitin Dahyabhai" <nitind@us.ibm.com> wrote in message
news:dmmht3$jnd$1@news.eclipse.org...
> Zohar wrote:
>>>>[Fatal Error] jstl::1:1: Content is not allowed in prolog.
>>>>ERROR: 'Content is not allowed in prolog.'
>>>>FATAL ERROR: 'Could not compile stylesheet'
>>>>Nov 29, 2005 3:39:48 PM org.apache.catalina.core.StandardWrapperValve
>>>>invoke
>>>>SEVERE: Servlet.service() for servlet jsp threw exception
>>>>javax.xml.transform.TransformerConfigurationException: Could not compile
>>>>stylesheet
>>>>
>>>>If I take out the line
>>>><x:transform xml="restaurants.xml" xslt="restaurants.xsl" />
>>>>it works OK (nothing is returned, but no exception is thrown)
>
> My bad. It looks like it's complaining about the stylesheet.
>
> --
> - Nitin


Re: using jstl taglibs [message #150546 is a reply to message #150340] Sat, 03 December 2005 01:23 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: thisisnot.mymail.com

Did you try putting xalan or xerces?

Zohar wrote:
> here it is then...
>
Re: using jstl taglibs [message #150668 is a reply to message #150546] Sun, 04 December 2005 06:35 Go to previous message
Zohar Amir is currently offline Zohar AmirFriend
Messages: 419
Registered: July 2009
Senior Member
put where?

"Srgjan Srepfler" <thisisnot@mymail.com> wrote in message
news:dmqs36$f8s$1@news.eclipse.org...
> Did you try putting xalan or xerces?
>
> Zohar wrote:
>> here it is then...
>>
Previous Topic:Marking editor dirtly from ServerEditorSection
Next Topic:How to combine Ant into Dynamic Web Project?
Goto Forum:
  


Current Time: Thu Sep 19 04:15:24 GMT 2024

Powered by FUDForum. Page generated in 0.05795 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top