<?xml version="1.0"?>
<rss version="2.0">
    <channel>
        <title>Gossamer Forum</title>
        <link>http://www.gossamer-threads.com/forum/</link>
        <language>en-us</language>
        <managingEditor>gforum@gossamer-threads.com</managingEditor>
        <pubDate>Tue, 21 May 2013 09:53:41 GMT</pubDate>
        <generator>Gossamer Forum by Gossamer Threads, Inc.</generator>
        <docs>http://www.rssboard.org/rss-specification</docs>
        <image>
            <url>http://static.gossamer-threads.com/forum/images/gforum-logo.png</url>
            <title>Gossamer Forum</title>
            <link>http://www.gossamer-threads.com/forum/</link>
            <width>50</width>
            <height>50</height>
        </image>
        <item>
            <title>Re: [Syte] DB Man Sql V1.02</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Re%3A_%5BSyte%5D_DB_Man_Sql_V1.02_P314000/?page=unread#314000</link>
            <description>Hi,

Wrong forum ;) I&#039;ve moved it for you. I&#039;m afraid I don&#039;t use DBMan SQL very often, so don&#039;t know that much about it. Sorry I can&#039;t be more help.

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>366c2251f2de56cccac799f01d756676</guid>
            <pubDate>Mar 12, 2012, 4:41 AM</pubDate>
        </item>
        <item>
            <title>DB Man Sql V1.02</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/DB_Man_Sql_V1.02_P313998/?page=unread#313998</link>
            <description>HI anyone have the read me file for this version.

I am having a few problems getting it up and running.

Thanks for any time

Norvin</description>
            <guid>3619d651c93c351a68992bf45cb7ba0c</guid>
            <pubDate>Mar 11, 2012, 10:59 AM</pubDate>
        </item>
        <item>
            <title>Starting a new DBMan SQL session from another application - without Authenication</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Starting_a_new_DBMan_SQL_session_from_another_application_-_without_Authenication_P311088/?page=unread#311088</link>
            <description>Here is what I need help with.

I have an authenicated user is another non DBMan SQL ( App1) web application/website with the same username as in DBMan SQL application (App2). That is the user already exists in the DBMan SQL user tables with all the details. What it really means that the user has the same username and password in both applications --- or the user tables are sync-ed.

What I need that a user who is using App1 (Non DBMan SQL app) is authenticated &amp;amp; from there I want to invoke DBMan SQL App2.

I need help with Perl code to start the App2 session without asking the user to login by giving Username and Password ---- a single signon.

So in Perl lets say $username variable contains the username of the user, which exist in the user table of App2. I think if you look at db.cgi and home.pm files, what I am trying to do should be possible. This kind of feature might be required by many &amp;amp; may lead to many interesting possibilities like logging in already logged in Facebook users etc.

The main subs in home.pm that we need is the sub called login(). I think login() can be leveraged to create a session and start the DBMan SQL app2 or some code from it can be taken &amp;amp; modified to achieve it.

If you tell me - how to make a call to login() to start this session it will great help. What all information is required besides $username to create the session? if any other user details like passowrd is required it can bepulled from the user table.

Here is the sub login() from home.pm. I know we need to call this login sub, but I can not figure out what information is being passed to it, that is required for starting the session.

Another big question is --- do we need to do any other steps in preparation to setup any configuration details etc before calling login().

If anyone can help me with how to call this sub, and what all to pass. Any ideas or help in making this work will be greatly appreciated.

If you want any further info or clarification, let me know.


sub login {
#---------------------------------------------------------------------------
# Login users, if login failure display login_failure else display home page
#
my $self = shift;

if ( !$self-&amp;gt;{cgi}-&amp;gt;{Username} or !$self-&amp;gt;{cgi}-&amp;gt;{Password} ) {
return $self-&amp;gt;login_form($self-&amp;gt;_language(&#039;AUTH_FAILURE&#039;));
}
# Check that the user exists, and that the password is valid.
$self-&amp;gt;{user} = $self-&amp;gt;_authenticate();
if ( !$self-&amp;gt;{user} ) {
$self-&amp;gt;auth_logging (&amp;quot;$self-&amp;gt;{cgi}-&amp;gt;{Username} failed to logon&amp;quot;) if ($self-&amp;gt;{cfg}-&amp;gt;{log_file});
return $self-&amp;gt;login_form($self-&amp;gt;_language(&#039;AUTH_FAILURE&#039;));
}

return $self-&amp;gt;login_form($self-&amp;gt;_language(&#039;AUTH_FAIL_VAL&#039;)) if ($self-&amp;gt;{user}-&amp;gt;{Status} eq &#039;Not Validated&#039;);
my $msg = ($self-&amp;gt;_check_pers())? $self-&amp;gt;_language(&#039;MSG_LOGGED&#039;,$self-&amp;gt;{cgi}-&amp;gt;{db}): $self-&amp;gt;_language(&#039;PER_FAILURE&#039;,$self-&amp;gt;{cgi}-&amp;gt;{db});
# Create session
my $results = Dbsql::Authenticate::auth(&#039;create_session&#039;, {Table =&amp;gt; $self-&amp;gt;{cfg}-&amp;gt;{&#039;user_table_use&#039;}, Username =&amp;gt; $self-&amp;gt;{user}-&amp;gt;{Username}}) or return $self-&amp;gt;error(&amp;quot;Unable to create session!&amp;quot;);
$self-&amp;gt;{cgi}-&amp;gt;{use_cookie} = $results-&amp;gt;{use_cookie};
$self-&amp;gt;{cgi}-&amp;gt;{session_id} = $results-&amp;gt;{session_id};
$self-&amp;gt;auth_logging(&#039;log on &#039;) if ( $self-&amp;gt;{cfg}-&amp;gt;{log_file} );
return (&#039;home.html&#039;, {
header =&amp;gt; $self-&amp;gt;_language(&#039;HEA_HOME&#039;),
msg =&amp;gt; $msg
});
}
END_OF_SUB


Thanks</description>
            <guid>8018acf8376c146ea2c73bb9586ba18c</guid>
            <pubDate>Oct 20, 2011, 1:52 PM</pubDate>
        </item>
        <item>
            <title>Re: [delicia] what is column &quot;pos&quot;?</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Re%3A_%5Bdelicia%5D_what_is_column_%22pos%22%3F_P310699/?page=unread#310699</link>
            <description>If its the same as GLinks/GForum, then its the &amp;quot;position&amp;quot; of the field. For example, pos = 1 would show up before pos = 2 in the admin forms (where they are auto generated)

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>356f8f0bd38a283a97f90832dc124936</guid>
            <pubDate>Jul 12, 2011, 10:23 AM</pubDate>
        </item>
        <item>
            <title>options for display</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/options_for_display_P310689/?page=unread#310689</link>
            <description>how do you use the following? in templates?

# Options for display forms/views:
# hide_timestamp =&amp;gt; 1 # Do not display timestamp fields.
# search_opts =&amp;gt; 1 # Add search options boxes.
# multiple =&amp;gt; 1 # Prepend $multiple- to column names.
# defaults =&amp;gt; 1 # Use .def defaults.
# values =&amp;gt; {} # hash ref of values to use (overrides input)
# table =&amp;gt; &#039;string&#039; # table properties, defaults to 0 border.
# tr =&amp;gt; &#039;string&#039; # table row properties, defaults to none.
# td =&amp;gt; &#039;string&#039; # table cell properties, defaults to just aligns.
# extra_table =&amp;gt; 0 # disable wrap form in extra table for looks.
# col_font =&amp;gt; &#039;string&#039; # font to use for columns, defaults to $FONT.
# val_font =&amp;gt; &#039;string&#039; # font to use for values, defaults to $FONT.
# hide =&amp;gt; [] # display fields as hidden tags.
# view =&amp;gt; [] # display fields as html with hidden tags as well.
# skip =&amp;gt; [] # don&#039;t display array of column names.</description>
            <guid>888074cc4968e322be6b2dcdc7d376dc</guid>
            <pubDate>Jun 30, 2011, 3:05 PM</pubDate>
        </item>
        <item>
            <title>what is column &quot;pos&quot;?</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/what_is_column_%22pos%22%3F_P310688/?page=unread#310688</link>
            <description>in the routine that displays records, it refers to ordered_columns. i found the code that sorts the columns by the &amp;quot;pos&amp;quot; which i think i found in the .def file. can the pos in the def files be changed without affecting the data?



Code:
sub ordered_columns {
# -----------------------------------------------------------
# $obj-&amp;gt;ordered_columns;
# ----------------------
# Returns the current table columns ordered
# in function of the &amp;quot;pos&amp;quot; type of a given
# column.
#
# The columns having no specified pos are
# appended in lexicographical order at the
# end of the result array.
#
my $self = shift;
my @cols = ();
my @append = ();
my $cols = $self-&amp;gt;{schema}-&amp;gt;{cols};
foreach my $col (sort {
$cols-&amp;gt;{$a}-&amp;gt;{pos} &amp;amp;&amp;amp; $cols-&amp;gt;{$b}-&amp;gt;{pos} ? $cols-&amp;gt;{$a}-&amp;gt;{pos} &amp;lt;=&amp;gt; $cols-&amp;gt;{$b}-&amp;gt;{pos} :
$cols-&amp;gt;{$a}-&amp;gt;{pos} &amp;amp;&amp;amp; !$cols-&amp;gt;{$b}-&amp;gt;{pos} ? -1 :
$cols-&amp;gt;{$b}-&amp;gt;{pos} &amp;amp;&amp;amp; !$cols-&amp;gt;{$a}-&amp;gt;{pos} ? 1 :
($a cmp $b)
} keys %{$cols}) {
push @cols, $col;
}

return @cols;
}</description>
            <guid>92384f054eefc4337990056c9d4baf2a</guid>
            <pubDate>Jun 30, 2011, 2:28 PM</pubDate>
        </item>
        <item>
            <title>Mysqlman support ft8 db manipulating ? </title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Mysqlman_support_ft8_db_manipulating_%3F__P310212/?page=unread#310212</link>
            <description>  i wonder if DBMan SQL support tf8 coding? and would it be possible to view tf8 database directly through DBMan &#039;s manipulating interface?

how about linksql embeded MySQLMan ?


Both DBMan SQL and MySQLMan support mysql 5x and mysql 6?

Thanks</description>
            <guid>91ce9d67cef7cf458379053fb26cc1bd</guid>
            <pubDate>Jan 16, 2011, 6:48 PM</pubDate>
        </item>
        <item>
            <title>Re: [Denise_] Adding new tables</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Re%3A_%5BDenise_%5D_Adding_new_tables_P310011/?page=unread#310011</link>
            <description>i believe as long as you have all the templates for deaths in a template directory for deaths, like templates_death, you don&#039;t need to change anything in the templates at all. and if you don&#039;t need a customized appearance, you don&#039;t even need a separate template directory. the program should already know the name of the db (table) and it will pull the template directory from your setup file.</description>
            <guid>0e03d191a966d8d1c1eade69bf3b9372</guid>
            <pubDate>Nov 19, 2010, 11:37 AM</pubDate>
        </item>
        <item>
            <title>Re: [Denise_] Adding new tables</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Re%3A_%5BDenise_%5D_Adding_new_tables_P310003/?page=unread#310003</link>
            <description>If I can just add a postscript to my post above:

No one except me actually has access to add, amend, delete the data. People can come to site (www.manxbmd.com) and search for records - don&#039;t know if that makes a difference!</description>
            <guid>616b671fe51f52ed76c08aba6a791a8e</guid>
            <pubDate>Nov 18, 2010, 6:16 PM</pubDate>
        </item>
        <item>
            <title>Adding new tables</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Adding_new_tables_P310002/?page=unread#310002</link>
            <description>Hello

I have a three databases of births, marriages and death records. The births records are in a table uploaded onto my site, in use and working well. However I now have death records data I want to put up. I have created a table called deaths, assigned the template set and added some sample data. I thought that creating a copy of the search_form.html and search_results.html used for births and renaming them for use with deaths with these two lines changed from births to deaths would work:

&amp;lt;input type=hidden name=&amp;quot;db&amp;quot; value=&amp;quot;births&amp;quot;&amp;gt; is now &amp;lt;input type=hidden name=&amp;quot;db&amp;quot; value=&amp;quot;deaths&amp;quot;&amp;gt;
&amp;lt;input type=hidden name=&amp;quot;do&amp;quot; value=&amp;quot;search_results&amp;quot;&amp;gt; is now &amp;lt;input type=hidden name=&amp;quot;do&amp;quot; value=&amp;quot;deaths_search_results&amp;quot;&amp;gt;

but it hasn&#039;t - when I go to the /cgi-bin/db.cgi?do=deaths_search_form it comes back with a standard GT template saying there is an error on births: invalid action.

Looking at Setup - Paths &amp;amp; URLs - the default table is births, but if I change this then I&#039;m not going to be able to use the births data am I?

I&#039;ve had a look at the help supplied and it implies that you can have more than one table.

I&#039;m not sure where I&#039;ve gone wrong - can someone give me a clue?

regards

Denise</description>
            <guid>6499094eb6d64c3bbc79699e72300dd1</guid>
            <pubDate>Nov 18, 2010, 6:13 PM</pubDate>
        </item>
        <item>
            <title>Re: [delicia] mail question</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Re%3A_%5Bdelicia%5D_mail_question_P309846/?page=unread#309846</link>
            <description>Ah ok - yeah, they are pretty busy atm - took a while to get back to my email a little while back.

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>a6ae233afe889838160b5522a3e36e28</guid>
            <pubDate>Oct 1, 2010, 6:37 AM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] mail question</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Re%3A_%5BAndy%5D_mail_question_P309845/?page=unread#309845</link>
            <description>yes, i emailed them sept 23 and haven&#039;t heard anything. only been a week though...</description>
            <guid>9c52b1ddcd62294c96fc87610c800b2a</guid>
            <pubDate>Oct 1, 2010, 6:32 AM</pubDate>
        </item>
        <item>
            <title>Re: [delicia] mail question</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Re%3A_%5Bdelicia%5D_mail_question_P309844/?page=unread#309844</link>
            <description>Mmm, may be worth emailing GT about that - maybe they can shed a bit more light on the matter.

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>631baf71d94f64934256b25803c03232</guid>
            <pubDate>Oct 1, 2010, 1:36 AM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] mail question</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Re%3A_%5BAndy%5D_mail_question_P309843/?page=unread#309843</link>
            <description>that makes sense. now do you know if anything in GT mail functions would require unique address? the only site i have that GT mail works (in dbman sql) is the one with secure certificate. all the others produce an error message although the emails are sent - in fact, the emails are sent twice.</description>
            <guid>892685c4883303b3e9bd606c0a3cfc6f</guid>
            <pubDate>Sep 30, 2010, 1:45 PM</pubDate>
        </item>
        <item>
            <title>Re: [delicia] mail question</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Re%3A_%5Bdelicia%5D_mail_question_P309839/?page=unread#309839</link>
            <description>I think what they mean is the site is setup on a unique IP address (i.e that IP address is ONLY assigned to that domain)

ALL sites have to have a static IP address (but you can share an IP with as many domains as you want, assuming they dont have a SSL certificate that needs a unique one), otherwise the nameservers around the world would never know where to find them

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>cbab8891404f44511ca075747e551514</guid>
            <pubDate>Sep 30, 2010, 12:11 AM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] mail question</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Re%3A_%5BAndy%5D_mail_question_P309833/?page=unread#309833</link>
            <description>well, i hadn&#039;t heard that term for hosting either, but my web host says one of my sites is on a static ip address because it has secure certificate. my other sites do not have secure certificates and have dynamic ip addresses. don&#039;t know if she was using incorrect terminology because i associate static/dynamic with dsl etc.</description>
            <guid>847ddece80112ebea943191455f8982f</guid>
            <pubDate>Sep 29, 2010, 12:16 PM</pubDate>
        </item>
        <item>
            <title>Re: [delicia] mail question</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Re%3A_%5Bdelicia%5D_mail_question_P309832/?page=unread#309832</link>
            <description>Quote:
requires static address instead of dynamic address of domain?

What do you mean by &amp;quot;static&amp;quot; addresses?

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>58b7185f8cee8aa0ba073916f902846e</guid>
            <pubDate>Sep 29, 2010, 7:43 AM</pubDate>
        </item>
        <item>
            <title>Re: [Andy] mail question</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Re%3A_%5BAndy%5D_mail_question_P309831/?page=unread#309831</link>
            <description>thank you. i keep getting error every time i test the email portion of dbman sql and cannot track it down. do you know if the email part of this script (or any other GT script) requires static address instead of dynamic address of domain?</description>
            <guid>fe1547cf2daceb913e4f2249ca2e3ecb</guid>
            <pubDate>Sep 29, 2010, 5:53 AM</pubDate>
        </item>
        <item>
            <title>Re: [delicia] mail question</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/Re%3A_%5Bdelicia%5D_mail_question_P309830/?page=unread#309830</link>
            <description>I *think* it just tells people mail clients how the email was sent (i.e GT::Mail) ... some servers wont accept emails unless that paramater is passed in (the URL simply lets people goto GT&#039;s site, to check up on the software that emailed them - to make sure its not malicious :))

Cheers

Andy (mod)
andy@ultranerds.co.uk
----------------------------------------------------------------------
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total &amp;quot;value&amp;quot; $3,325 &amp;amp; rising, for just $350)| GLinks ULTRA Package PRO (plugins total &amp;quot;value&amp;quot; $5,625 &amp;amp; rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates</description>
            <guid>78ad262aacc8f49fb9b73e032c02bcc7</guid>
            <pubDate>Sep 29, 2010, 3:21 AM</pubDate>
        </item>
        <item>
            <title>mail question</title>
            <link>http://www.gossamer-threads.com/forum/Products_C9/DBMan_SQL_C11/Discussion_F15/mail_question_P309812/?page=unread#309812</link>
            <description>found this code in Mail.pm:


Code:
$self-&amp;gt;{&#039;X-Mailer&#039;} = exists($opt-&amp;gt;{&#039;X-Mailer&#039;}) ? delete ($opt-&amp;gt;{&#039;X-Mailer&#039;}) : &amp;quot;GT::Mail $VERSION (Site: http://www.gossamer-threads.com; OS: $^O)&amp;quot;;
what is it? why would code installed on my site contain reference to gossamer-threads.com ?</description>
            <guid>e398ec002d5c7b3f74aba461136b5387</guid>
            <pubDate>Sep 23, 2010, 2:52 PM</pubDate>
        </item>
    </channel>
</rss>
