Skip to main content



      Home
Home » Eclipse Projects » Platform - User Assistance (UA) » infocenter search database
infocenter search database [message #475229] Fri, 06 March 2009 16:58 Go to next message
Eclipse UserFriend
I have a small problem that I don't fully understand. I have an
infocenter which is working except that the meta keywords are not being
included in the search database.

The keywords 'ooga' and 'booga' in the following text is not put into
the search database.

<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD
XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en-us" xml:lang="en-us">
<head>
<meta content="ooga, booga" name="keywords" />
</head>
<body>
</body>
</html>

If I remove the DOCTYPE information then the keywords are placed in the
search database.

<?xml version="1.0" encoding="UTF-8"?>
<html lang="en-us" xml:lang="en-us">
<head>
<meta content="ooga, booga" name="keywords" />
</head>
<body>
</body>
</html>

Are 'keywords' not supported with xhtml?

Thanks,
David
Re: infocenter search database [message #475235 is a reply to message #475229] Tue, 10 March 2009 12:53 Go to previous messageGo to next message
Eclipse UserFriend
The keywords meta tag is ignored for html and xhtml files. It may be
that for xml files the entire content of the file is added to the search
index. We have considered adding them to the search index.

David Kyle wrote:
> I have a small problem that I don't fully understand. I have an
> infocenter which is working except that the meta keywords are not being
> included in the search database.
>
> The keywords 'ooga' and 'booga' in the following text is not put into
> the search database.
>
> <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD
> XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <html lang="en-us" xml:lang="en-us">
> <head>
> <meta content="ooga, booga" name="keywords" />
> </head>
> <body>
> </body>
> </html>
>
> If I remove the DOCTYPE information then the keywords are placed in the
> search database.
>
> <?xml version="1.0" encoding="UTF-8"?>
> <html lang="en-us" xml:lang="en-us">
> <head>
> <meta content="ooga, booga" name="keywords" />
> </head>
> <body>
> </body>
> </html>
>
> Are 'keywords' not supported with xhtml?
>
> Thanks,
> David
Re: infocenter search database [message #475242 is a reply to message #475235] Tue, 10 March 2009 15:14 Go to previous messageGo to next message
Eclipse UserFriend
Hi Chris,

I'm not sure what this statement implies:
> The keywords meta tag is ignored for html and xhtml files.

Isn't usage of the keywords meta tag in HTML files covered under this
Bugzilla (marked Fixed):
https://bugs.eclipse.org/bugs/show_bug.cgi?id=223860

Is that meta tag only being ignored for XHTML files (vs HTML files)?

Thanks in advance,
Lee Anne


Chris Goldthorpe wrote:
> The keywords meta tag is ignored for html and xhtml files. It may be
> that for xml files the entire content of the file is added to the search
> index. We have considered adding them to the search index.
>
> David Kyle wrote:
>> I have a small problem that I don't fully understand. I have an
>> infocenter which is working except that the meta keywords are not
>> being included in the search database.
>>
>> The keywords 'ooga' and 'booga' in the following text is not put into
>> the search database.
>>
>> <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC
>> "-//W3C//DTD XHTML 1.0 Transitional//EN"
>> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>> <html lang="en-us" xml:lang="en-us">
>> <head>
>> <meta content="ooga, booga" name="keywords" />
>> </head>
>> <body>
>> </body>
>> </html>
>>
>> If I remove the DOCTYPE information then the keywords are placed in
>> the search database.
>>
>> <?xml version="1.0" encoding="UTF-8"?>
>> <html lang="en-us" xml:lang="en-us">
>> <head>
>> <meta content="ooga, booga" name="keywords" />
>> </head>
>> <body>
>> </body>
>> </html>
>>
>> Are 'keywords' not supported with xhtml?
>>
>> Thanks,
>> David
Re: infocenter search database [message #475250 is a reply to message #475242] Thu, 12 March 2009 18:58 Go to previous messageGo to next message
Eclipse UserFriend
I misspoke. I had forgotten that I had implemented this a while ago but
it looks as though it is not implemented for xhtml files or files with a
doctype of xhtml. That was an oversight. David can you file a bug report
for this?

Chris

Lee Anne Kowalski wrote:
> Hi Chris,
>
> I'm not sure what this statement implies:
> > The keywords meta tag is ignored for html and xhtml files.
>
> Isn't usage of the keywords meta tag in HTML files covered under this
> Bugzilla (marked Fixed):
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=223860
>
> Is that meta tag only being ignored for XHTML files (vs HTML files)?
>
> Thanks in advance,
> Lee Anne
>
>
> Chris Goldthorpe wrote:
>> The keywords meta tag is ignored for html and xhtml files. It may be
>> that for xml files the entire content of the file is added to the
>> search index. We have considered adding them to the search index.
>>
>> David Kyle wrote:
>>> I have a small problem that I don't fully understand. I have an
>>> infocenter which is working except that the meta keywords are not
>>> being included in the search database.
>>>
>>> The keywords 'ooga' and 'booga' in the following text is not put into
>>> the search database.
>>>
>>> <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC
>>> "-//W3C//DTD XHTML 1.0 Transitional//EN"
>>> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>>> <html lang="en-us" xml:lang="en-us">
>>> <head>
>>> <meta content="ooga, booga" name="keywords" />
>>> </head>
>>> <body>
>>> </body>
>>> </html>
>>>
>>> If I remove the DOCTYPE information then the keywords are placed in
>>> the search database.
>>>
>>> <?xml version="1.0" encoding="UTF-8"?>
>>> <html lang="en-us" xml:lang="en-us">
>>> <head>
>>> <meta content="ooga, booga" name="keywords" />
>>> </head>
>>> <body>
>>> </body>
>>> </html>
>>>
>>> Are 'keywords' not supported with xhtml?
>>>
>>> Thanks,
>>> David
Re: infocenter search database [message #475253 is a reply to message #475250] Fri, 13 March 2009 19:06 Go to previous messageGo to next message
Eclipse UserFriend
Chris,

I've entered it as https://bugs.eclipse.org/bugs/show_bug.cgi?id=268623.

Thanks,
David

"Chris Goldthorpe" <cgold@us.ibm.com> wrote in message
news:gpc43e$nej$1@build.eclipse.org...
>I misspoke. I had forgotten that I had implemented this a while ago but it
>looks as though it is not implemented for xhtml files or files with a
>doctype of xhtml. That was an oversight. David can you file a bug report
>for this?
>
> Chris
>
> Lee Anne Kowalski wrote:
>> Hi Chris,
>>
>> I'm not sure what this statement implies:
>> > The keywords meta tag is ignored for html and xhtml files.
>>
>> Isn't usage of the keywords meta tag in HTML files covered under this
>> Bugzilla (marked Fixed):
>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=223860
>>
>> Is that meta tag only being ignored for XHTML files (vs HTML files)?
>>
>> Thanks in advance,
>> Lee Anne
>>
>>
>> Chris Goldthorpe wrote:
>>> The keywords meta tag is ignored for html and xhtml files. It may be
>>> that for xml files the entire content of the file is added to the search
>>> index. We have considered adding them to the search index.
>>>
>>> David Kyle wrote:
>>>> I have a small problem that I don't fully understand. I have an
>>>> infocenter which is working except that the meta keywords are not being
>>>> included in the search database.
>>>>
>>>> The keywords 'ooga' and 'booga' in the following text is not put into
>>>> the search database.
>>>>
>>>> <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC
>>>> "-//W3C//DTD XHTML 1.0 Transitional//EN"
>>>> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>>>> <html lang="en-us" xml:lang="en-us">
>>>> <head>
>>>> <meta content="ooga, booga" name="keywords" />
>>>> </head>
>>>> <body>
>>>> </body>
>>>> </html>
>>>>
>>>> If I remove the DOCTYPE information then the keywords are placed in the
>>>> search database.
>>>>
>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>> <html lang="en-us" xml:lang="en-us">
>>>> <head>
>>>> <meta content="ooga, booga" name="keywords" />
>>>> </head>
>>>> <body>
>>>> </body>
>>>> </html>
>>>>
>>>> Are 'keywords' not supported with xhtml?
>>>>
>>>> Thanks,
>>>> David
Re: infocenter search database [message #475255 is a reply to message #475253] Mon, 16 March 2009 15:41 Go to previous messageGo to next message
Eclipse UserFriend
Only 41 minutes after reporting the bug, the problem is fixed and targeted
for 3.5 M7 (May 1st, 2009). Thanks Chris!

David

"David Kyle" <davidk@kelman.com> wrote in message
news:gpeosd$4pb$1@build.eclipse.org...
> Chris,
>
> I've entered it as https://bugs.eclipse.org/bugs/show_bug.cgi?id=268623.
>
> Thanks,
> David
>
> "Chris Goldthorpe" <cgold@us.ibm.com> wrote in message
> news:gpc43e$nej$1@build.eclipse.org...
>>I misspoke. I had forgotten that I had implemented this a while ago but it
>>looks as though it is not implemented for xhtml files or files with a
>>doctype of xhtml. That was an oversight. David can you file a bug report
>>for this?
>>
>> Chris
>>
>> Lee Anne Kowalski wrote:
>>> Hi Chris,
>>>
>>> I'm not sure what this statement implies:
>>> > The keywords meta tag is ignored for html and xhtml files.
>>>
>>> Isn't usage of the keywords meta tag in HTML files covered under this
>>> Bugzilla (marked Fixed):
>>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=223860
>>>
>>> Is that meta tag only being ignored for XHTML files (vs HTML files)?
>>>
>>> Thanks in advance,
>>> Lee Anne
>>>
>>>
>>> Chris Goldthorpe wrote:
>>>> The keywords meta tag is ignored for html and xhtml files. It may be
>>>> that for xml files the entire content of the file is added to the
>>>> search index. We have considered adding them to the search index.
>>>>
>>>> David Kyle wrote:
>>>>> I have a small problem that I don't fully understand. I have an
>>>>> infocenter which is working except that the meta keywords are not
>>>>> being included in the search database.
>>>>>
>>>>> The keywords 'ooga' and 'booga' in the following text is not put into
>>>>> the search database.
>>>>>
>>>>> <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC
>>>>> "-//W3C//DTD XHTML 1.0 Transitional//EN"
>>>>> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>>>>> <html lang="en-us" xml:lang="en-us">
>>>>> <head>
>>>>> <meta content="ooga, booga" name="keywords" />
>>>>> </head>
>>>>> <body>
>>>>> </body>
>>>>> </html>
>>>>>
>>>>> If I remove the DOCTYPE information then the keywords are placed in
>>>>> the search database.
>>>>>
>>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>>> <html lang="en-us" xml:lang="en-us">
>>>>> <head>
>>>>> <meta content="ooga, booga" name="keywords" />
>>>>> </head>
>>>>> <body>
>>>>> </body>
>>>>> </html>
>>>>>
>>>>> Are 'keywords' not supported with xhtml?
>>>>>
>>>>> Thanks,
>>>>> David
>
>
Re: infocenter search database [message #475256 is a reply to message #475255] Tue, 17 March 2009 12:14 Go to previous message
Eclipse UserFriend
I wish all bugs were that easy to fix!

David Kyle wrote:
> Only 41 minutes after reporting the bug, the problem is fixed and targeted
> for 3.5 M7 (May 1st, 2009). Thanks Chris!
>
> David
>
> "David Kyle" <davidk@kelman.com> wrote in message
> news:gpeosd$4pb$1@build.eclipse.org...
>> Chris,
>>
>> I've entered it as https://bugs.eclipse.org/bugs/show_bug.cgi?id=268623.
>>
>> Thanks,
>> David
>>
Re: infocenter search database [message #623242 is a reply to message #475229] Tue, 10 March 2009 12:53 Go to previous message
Eclipse UserFriend
The keywords meta tag is ignored for html and xhtml files. It may be
that for xml files the entire content of the file is added to the search
index. We have considered adding them to the search index.

David Kyle wrote:
> I have a small problem that I don't fully understand. I have an
> infocenter which is working except that the meta keywords are not being
> included in the search database.
>
> The keywords 'ooga' and 'booga' in the following text is not put into
> the search database.
>
> <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD
> XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <html lang="en-us" xml:lang="en-us">
> <head>
> <meta content="ooga, booga" name="keywords" />
> </head>
> <body>
> </body>
> </html>
>
> If I remove the DOCTYPE information then the keywords are placed in the
> search database.
>
> <?xml version="1.0" encoding="UTF-8"?>
> <html lang="en-us" xml:lang="en-us">
> <head>
> <meta content="ooga, booga" name="keywords" />
> </head>
> <body>
> </body>
> </html>
>
> Are 'keywords' not supported with xhtml?
>
> Thanks,
> David
Re: infocenter search database [message #623246 is a reply to message #475235] Tue, 10 March 2009 15:14 Go to previous message
Eclipse UserFriend
Hi Chris,

I'm not sure what this statement implies:
> The keywords meta tag is ignored for html and xhtml files.

Isn't usage of the keywords meta tag in HTML files covered under this
Bugzilla (marked Fixed):
https://bugs.eclipse.org/bugs/show_bug.cgi?id=223860

Is that meta tag only being ignored for XHTML files (vs HTML files)?

Thanks in advance,
Lee Anne


Chris Goldthorpe wrote:
> The keywords meta tag is ignored for html and xhtml files. It may be
> that for xml files the entire content of the file is added to the search
> index. We have considered adding them to the search index.
>
> David Kyle wrote:
>> I have a small problem that I don't fully understand. I have an
>> infocenter which is working except that the meta keywords are not
>> being included in the search database.
>>
>> The keywords 'ooga' and 'booga' in the following text is not put into
>> the search database.
>>
>> <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC
>> "-//W3C//DTD XHTML 1.0 Transitional//EN"
>> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>> <html lang="en-us" xml:lang="en-us">
>> <head>
>> <meta content="ooga, booga" name="keywords" />
>> </head>
>> <body>
>> </body>
>> </html>
>>
>> If I remove the DOCTYPE information then the keywords are placed in
>> the search database.
>>
>> <?xml version="1.0" encoding="UTF-8"?>
>> <html lang="en-us" xml:lang="en-us">
>> <head>
>> <meta content="ooga, booga" name="keywords" />
>> </head>
>> <body>
>> </body>
>> </html>
>>
>> Are 'keywords' not supported with xhtml?
>>
>> Thanks,
>> David
Re: infocenter search database [message #623249 is a reply to message #475242] Thu, 12 March 2009 18:58 Go to previous message
Eclipse UserFriend
I misspoke. I had forgotten that I had implemented this a while ago but
it looks as though it is not implemented for xhtml files or files with a
doctype of xhtml. That was an oversight. David can you file a bug report
for this?

Chris

Lee Anne Kowalski wrote:
> Hi Chris,
>
> I'm not sure what this statement implies:
> > The keywords meta tag is ignored for html and xhtml files.
>
> Isn't usage of the keywords meta tag in HTML files covered under this
> Bugzilla (marked Fixed):
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=223860
>
> Is that meta tag only being ignored for XHTML files (vs HTML files)?
>
> Thanks in advance,
> Lee Anne
>
>
> Chris Goldthorpe wrote:
>> The keywords meta tag is ignored for html and xhtml files. It may be
>> that for xml files the entire content of the file is added to the
>> search index. We have considered adding them to the search index.
>>
>> David Kyle wrote:
>>> I have a small problem that I don't fully understand. I have an
>>> infocenter which is working except that the meta keywords are not
>>> being included in the search database.
>>>
>>> The keywords 'ooga' and 'booga' in the following text is not put into
>>> the search database.
>>>
>>> <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC
>>> "-//W3C//DTD XHTML 1.0 Transitional//EN"
>>> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>>> <html lang="en-us" xml:lang="en-us">
>>> <head>
>>> <meta content="ooga, booga" name="keywords" />
>>> </head>
>>> <body>
>>> </body>
>>> </html>
>>>
>>> If I remove the DOCTYPE information then the keywords are placed in
>>> the search database.
>>>
>>> <?xml version="1.0" encoding="UTF-8"?>
>>> <html lang="en-us" xml:lang="en-us">
>>> <head>
>>> <meta content="ooga, booga" name="keywords" />
>>> </head>
>>> <body>
>>> </body>
>>> </html>
>>>
>>> Are 'keywords' not supported with xhtml?
>>>
>>> Thanks,
>>> David
Re: infocenter search database [message #623251 is a reply to message #475250] Fri, 13 March 2009 19:06 Go to previous message
Eclipse UserFriend
Chris,

I've entered it as https://bugs.eclipse.org/bugs/show_bug.cgi?id=268623

Thanks,
David

"Chris Goldthorpe" <cgold@us.ibm.com> wrote in message
news:gpc43e$nej$1@build.eclipse.org...
>I misspoke. I had forgotten that I had implemented this a while ago but it
>looks as though it is not implemented for xhtml files or files with a
>doctype of xhtml. That was an oversight. David can you file a bug report
>for this?
>
> Chris
>
> Lee Anne Kowalski wrote:
>> Hi Chris,
>>
>> I'm not sure what this statement implies:
>> > The keywords meta tag is ignored for html and xhtml files.
>>
>> Isn't usage of the keywords meta tag in HTML files covered under this
>> Bugzilla (marked Fixed):
>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=223860
>>
>> Is that meta tag only being ignored for XHTML files (vs HTML files)?
>>
>> Thanks in advance,
>> Lee Anne
>>
>>
>> Chris Goldthorpe wrote:
>>> The keywords meta tag is ignored for html and xhtml files. It may be
>>> that for xml files the entire content of the file is added to the search
>>> index. We have considered adding them to the search index.
>>>
>>> David Kyle wrote:
>>>> I have a small problem that I don't fully understand. I have an
>>>> infocenter which is working except that the meta keywords are not being
>>>> included in the search database.
>>>>
>>>> The keywords 'ooga' and 'booga' in the following text is not put into
>>>> the search database.
>>>>
>>>> <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC
>>>> "-//W3C//DTD XHTML 1.0 Transitional//EN"
>>>> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>>>> <html lang="en-us" xml:lang="en-us">
>>>> <head>
>>>> <meta content="ooga, booga" name="keywords" />
>>>> </head>
>>>> <body>
>>>> </body>
>>>> </html>
>>>>
>>>> If I remove the DOCTYPE information then the keywords are placed in the
>>>> search database.
>>>>
>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>> <html lang="en-us" xml:lang="en-us">
>>>> <head>
>>>> <meta content="ooga, booga" name="keywords" />
>>>> </head>
>>>> <body>
>>>> </body>
>>>> </html>
>>>>
>>>> Are 'keywords' not supported with xhtml?
>>>>
>>>> Thanks,
>>>> David
Re: infocenter search database [message #623252 is a reply to message #475253] Mon, 16 March 2009 15:41 Go to previous message
Eclipse UserFriend
Only 41 minutes after reporting the bug, the problem is fixed and targeted
for 3.5 M7 (May 1st, 2009). Thanks Chris!

David

"David Kyle" <davidk@kelman.com> wrote in message
news:gpeosd$4pb$1@build.eclipse.org...
> Chris,
>
> I've entered it as https://bugs.eclipse.org/bugs/show_bug.cgi?id=268623
>
> Thanks,
> David
>
> "Chris Goldthorpe" <cgold@us.ibm.com> wrote in message
> news:gpc43e$nej$1@build.eclipse.org...
>>I misspoke. I had forgotten that I had implemented this a while ago but it
>>looks as though it is not implemented for xhtml files or files with a
>>doctype of xhtml. That was an oversight. David can you file a bug report
>>for this?
>>
>> Chris
>>
>> Lee Anne Kowalski wrote:
>>> Hi Chris,
>>>
>>> I'm not sure what this statement implies:
>>> > The keywords meta tag is ignored for html and xhtml files.
>>>
>>> Isn't usage of the keywords meta tag in HTML files covered under this
>>> Bugzilla (marked Fixed):
>>> https://bugs.eclipse.org/bugs/show_bug.cgi?id=223860
>>>
>>> Is that meta tag only being ignored for XHTML files (vs HTML files)?
>>>
>>> Thanks in advance,
>>> Lee Anne
>>>
>>>
>>> Chris Goldthorpe wrote:
>>>> The keywords meta tag is ignored for html and xhtml files. It may be
>>>> that for xml files the entire content of the file is added to the
>>>> search index. We have considered adding them to the search index.
>>>>
>>>> David Kyle wrote:
>>>>> I have a small problem that I don't fully understand. I have an
>>>>> infocenter which is working except that the meta keywords are not
>>>>> being included in the search database.
>>>>>
>>>>> The keywords 'ooga' and 'booga' in the following text is not put into
>>>>> the search database.
>>>>>
>>>>> <?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC
>>>>> "-//W3C//DTD XHTML 1.0 Transitional//EN"
>>>>> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
>>>>> <html lang="en-us" xml:lang="en-us">
>>>>> <head>
>>>>> <meta content="ooga, booga" name="keywords" />
>>>>> </head>
>>>>> <body>
>>>>> </body>
>>>>> </html>
>>>>>
>>>>> If I remove the DOCTYPE information then the keywords are placed in
>>>>> the search database.
>>>>>
>>>>> <?xml version="1.0" encoding="UTF-8"?>
>>>>> <html lang="en-us" xml:lang="en-us">
>>>>> <head>
>>>>> <meta content="ooga, booga" name="keywords" />
>>>>> </head>
>>>>> <body>
>>>>> </body>
>>>>> </html>
>>>>>
>>>>> Are 'keywords' not supported with xhtml?
>>>>>
>>>>> Thanks,
>>>>> David
>
>
Re: infocenter search database [message #623253 is a reply to message #475255] Tue, 17 March 2009 12:14 Go to previous message
Eclipse UserFriend
I wish all bugs were that easy to fix!

David Kyle wrote:
> Only 41 minutes after reporting the bug, the problem is fixed and targeted
> for 3.5 M7 (May 1st, 2009). Thanks Chris!
>
> David
>
> "David Kyle" <davidk@kelman.com> wrote in message
> news:gpeosd$4pb$1@build.eclipse.org...
>> Chris,
>>
>> I've entered it as https://bugs.eclipse.org/bugs/show_bug.cgi?id=268623
>>
>> Thanks,
>> David
>>
Previous Topic:context help showing wrong content
Next Topic:Huge memory consumption of Eclipse Infocenter
Goto Forum:
  


Current Time: Sun May 18 15:26:11 EDT 2025

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

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

Back to the top