Welcome to the "trac"-ing site of http-access2!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]

Ticket #7 (closed 1: fixed)

Opened 5 years ago

Last modified 4 years ago

eminem.com

Reported by: sveit@earthlink.net Assigned to: anonymous
Priority: 1 Milestone: 1
Component: 1 Version: 1
Keywords: eminem.com Cc: eminem.com

Description

Below is a patch file that adds two features:

1. Allows redirects from inital "POST" requests. 2. Allows submitting multipart forms.

Please feel free to incorporate into future versions of http-access2. Thanks.

diff -cNr http-access-2_0_5/lib/http-access2/http.rb http-access-2_0_5.patched/lib/http-access2/http.rb
*** http-access-2_0_5/lib/http-access2/http.rb	Thu Dec  9 17:17:41 2004
--- http-access-2_0_5.patched/lib/http-access2/http.rb	Mon Apr  4 07:58:41 2005
***************
*** 5,11 ****
  # You can redistribute it and/or modify it under the same term as Ruby.
  
  require 'uri'
! 
  
  module HTTP
  
--- 5,11 ----
  # You can redistribute it and/or modify it under the same term as Ruby.
  
  require 'uri'
! require 'time'
  
  module HTTP
  
***************
*** 288,296 ****
    class Body
      attr_accessor :type, :charset, :date, :chunk_size
  
!     def initialize(body = nil, date = nil, type = nil, charset = nil)
        @body = nil
!       set_content(body || '')
        @type = type
        @charset = charset
        @date = date
--- 288,297 ----
    class Body
      attr_accessor :type, :charset, :date, :chunk_size
  
!     def initialize(body = nil, date = nil, type = nil, charset = nil, boundary = nil)
        @body = nil
!       @boundary = boundary
!       set_content(body || '', boundary)
        @type = type
        @charset = charset
        @date = date
***************
*** 326,334 ****
        @body
      end
  
!     def set_content(body)
        if body.respond_to?(:read)
  	@body = body
        else
  	@body = Message.create_query_part_str(body)
        end
--- 327,337 ----
        @body
      end
  
!     def set_content(body, boundary = nil)
        if body.respond_to?(:read)
  	@body = body
+       elsif boundary
+ 	@body = Message.create_query_multipart_str(body, boundary)
        else
  	@body = Message.create_query_part_str(body)
        end
***************
*** 358,368 ****
      undef new
    end
  
!   def self.new_request(method, uri, query = nil, body = nil, proxy = nil)
      m = self.__new
      m.header = Headers.new
      m.header.init_request(method, uri, query, proxy)
!     m.body = Body.new(body)
      m
    end
  
--- 361,371 ----
      undef new
    end
  
!   def self.new_request(method, uri, query = nil, body = nil, proxy = nil, boundary = nil)
      m = self.__new
      m.header = Headers.new
      m.header.init_request(method, uri, query, proxy)
!     m.body = Body.new(body, nil, nil, nil, boundary)
      m
    end
  
***************
*** 452,457 ****
--- 455,493 ----
        end
      end
  
+     def mime_type(path)
+       case path
+       when /.(htm|html)$/
+         'text/html'
+       when /.doc$/
+         'application/msword'
+       else
+         'text/plain'
+       end
+     end
+ 
+     def create_query_multipart_str(query, boundary)
+       query.collect { |attr, value|
+         value ||= ''
+         if value.is_a? File
+           params = {
+             'filename' => value.path,
+             # 'creation-date' => value.ctime.rfc822,  # Creation time is not available from File::Stat
+             'modification-date' => value.mtime.rfc822,
+             'read-date' => value.atime.rfc822,
+           }
+           param_str = params.to_a.collect {|k, v| "#{k}=\"#{v}\""}.join("; ")
+           "--#{boundary}\n" +
+             %{Content-Disposition: form-data; name="#{attr.to_s}"; #{param_str}\n} +
+             "Content-Type: #{mime_type(value.path)}\n\n#{value.read}\n"
+         else
+           "--#{boundary}\n" +
+             %{Content-Disposition: form-data; name="#{attr.to_s}"\n} +
+             "\n#{value.to_s}\n"
+         end
+       }.join('') + "--#{boundary}--\n"
+     end
+ 
      def escape_query(query)
        query.collect { |attr, value|
  	escape(attr.to_s) << '=' << escape(value.to_s)
diff -cNr http-access-2_0_5/lib/http-access2.rb http-access-2_0_5.patched/lib/http-access2.rb
*** http-access-2_0_5/lib/http-access2.rb	Thu Dec 16 07:40:24 2004
--- http-access-2_0_5.patched/lib/http-access2.rb	Mon Apr  4 08:07:44 2005
***************
*** 218,224 ****
    end
  
    # SYNOPSIS
!   #   Client#get_content(uri, query = nil, extheader = {}, &block = nil)
    #
    # ARGS
    #   uri	an_URI or a_string of uri to connect.
--- 218,224 ----
    end
  
    # SYNOPSIS
!   #   Client#get_content(uri, query = nil, extheader = {}, method = 'get', &block = nil)
    #
    # ARGS
    #   uri	an_URI or a_string of uri to connect.
***************
*** 227,243 ****
    #   		[["a" => "b"], ["a" => "c"]].
    #   extheader
    #   		a_hash of extra headers like { "SOAPAction" => "urn:foo" }.
    #   &block	Give a block to get chunked message-body of response like
    #   		get_content(uri) { |chunked_body| ... }
    #   		Size of each chunk may not be the same.
    #
    # DESCRIPTION
!   #   Get a_sring of message-body of response.
    #
!   def get_content(uri, query = nil, extheader = {}, &block)
      retry_number = 0
      while retry_number < 10
!       res = get(uri, query, extheader, &block)
        if res.status == HTTP::Status::OK
  	return res.content
        elsif HTTP::Status.redirect?(res.status)
--- 227,248 ----
    #   		[["a" => "b"], ["a" => "c"]].
    #   extheader
    #   		a_hash of extra headers like { "SOAPAction" => "urn:foo" }.
+   #   method
+   #         a_string of the HTTP method to use. e.g. "post".
    #   &block	Give a block to get chunked message-body of response like
    #   		get_content(uri) { |chunked_body| ... }
    #   		Size of each chunk may not be the same.
    #
    # DESCRIPTION
!   #   Get a_sring of message-body of response. This handles up to 10
!   #   redirects. Redirects always use the 'get' HTTP method.
    #
!   def get_content(uri, query = nil, extheader = {}, method = 'get', &block)
      retry_number = 0
+     method = method.downcase.intern
      while retry_number < 10
!       res = send(method, uri, query, extheader, &block)
!       method = :get
        if res.status == HTTP::Status::OK
  	return res.content
        elsif HTTP::Status.redirect?(res.status)
***************
*** 375,381 ****
  	extheader << ['Cookie', cookies]
        end
      end
!     req = HTTP::Message.new_request(method, uri, query, body, proxy)
      extheader.each do |key, value|
        req.header.set(key, value)
      end
--- 380,391 ----
  	extheader << ['Cookie', cookies]
        end
      end
!     boundary = nil
!     contentType = extheader.detect {|key, value| key == 'Content-Type'}
!     if contentType && contentType[1] =~ /boundary=(.+)$/
!       boundary = $1
!     end
!     req = HTTP::Message.new_request(method, uri, query, body, proxy, boundary)
      extheader.each do |key, value|
        req.header.set(key, value)
      end
***************
*** 1335,1341 ****
    end
  
    # Read status block.
!   StatusParseRegexp = %r(\AHTTP/(\d+\.\d+)\s+(\d+)(?:\s+(.*))?#{ RS }\z)
    def read_header
      if @state == :DATA
        get_data {}
--- 1345,1351 ----
    end
  
    # Read status block.
!   StatusParseRegexp = %r(\A\000?HTTP/(\d+\.\d+)\s+(\d+)(?:\s+(.*))?#{ RS }\z)
    def read_header
      if @state == :DATA
        get_data {}

{{{

}}}

Change History

04/15/05 14:51:38 changed by anonymous

  • owner changed from nahi to anonymous.
  • status changed from new to assigned.
  • severity changed from enhancement to normal.
  • milestone changed from undefined to 2.0.6.

04/15/05 14:52:15 changed by anonymous

  • owner changed from anonymous to nahi.
  • status changed from assigned to new.

04/15/05 14:52:28 changed by anonymous

  • owner changed from nahi to anonymous.
  • status changed from new to assigned.

04/16/05 00:18:57 changed by nahi

  • status changed from assigned to closed.
  • resolution set to fixed.

(In [96]) Allows redirects from inital "POST" requests. Allows submitting multipart forms. imported a patch from sveit at earthlink.net. Thanks! closes #7.

05/28/06 22:00:17 changed by kkkkoaaa

  • summary changed from Support "POST" redirects and multipart messages to Support &#34;POST&#34; redirects and multipart messages.

Keep a good job up! http://quick-adult-links.com

06/02/06 22:34:50 changed by voLLenTy

  • priority changed from normal to high.
  • version deleted.
  • type deleted.
  • severity deleted.
  • summary changed from Support &amp;#34;POST&amp;#34; redirects and multipart messages to Support &amp;amp;#34;POST&amp;amp;#34; redirects and multipart messages.

06/14/06 03:44:42 changed by Morfo

  • summary changed from Support &amp;amp;amp;#34;POST&amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;#34; redirects and multipart messages.

06/14/06 22:49:17 changed by HydrolysK

  • summary changed from Support &amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;#34; redirects and multipart messages.

06/15/06 08:40:24 changed by dsfhfg

  • summary changed from Support &amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.

<a href="http://pay.cartoonbox.cba.pl">adult toon</a><br><a href="http://comics.cartoonbox.cba.pl">cartoon porn</a><br><a href="http://sex.cartoonbox.cba.pl">porn comics</a><br><a href="http://adult.cartoonbox.cba.pl">cartoon sex</a><br><a href="http://porn.cartoonbox.cba.pl">sex comics</a><br><a href="http://movies.cartoonbox.cba.pl">sex toon</a><br><a href="http://free.cartoonbox.cba.pl">porn toon</a><br><a href="http://video.cartoonbox.cba.pl">adult comics</a><br><a href="http://comix.cartoonbox.cba.pl">adult cartoon</a>

06/15/06 09:52:44 changed by Slotsy

  • type set to defect.
  • summary changed from Support &amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.

06/16/06 14:15:51 changed by Gonder

  • type deleted.
  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.

06/16/06 20:10:40 changed by fgdfg

  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.

<a href="http://snuffcomix.tripod.com">rape comics</a><br><a href="http://freeadultcomics.tripod.com">rape comixxx</a><br><a href="http://bdsmcomixfree.tripod.com">raped in space comix</a><br><a href="http://incestcomicsfree.tripoda.com">rape xxx books</a><br><a href="http://raunchycomics.tripod.com">raped britney gary roberts</a><br><a href="http://spankingcomics.tripod.com">raped jasmin</a><br><a href="http://garyrobertsbritney.tripod.com">rape torture comics</a><br><a href="http://freetoonrapecomics.tripod.com">rape pictures by hines</a><br><a href="http://extremedrawings.tripod.com">sample sex comics</a><br><a href="http://xxxcomicstrip.tripod.com">raped britney spears</a><br><a href="http://freebondagecartoons.tripod.com">rape forced cartoons</a><br><a href="http://freezoocomics.tripod.com">rape sex drawing</a><br><a href="http://hardcorerapecomics.tripod.com">rape torture xxx drawing</a><br><a href="http://freeextremecomix.tripod.com">rape fantasy comix</a><br><a href="http://animerapecomic.tripod.com">raped girls comics</a><br><a href="http://extremedrawing.tripod.com">gary roberts art</a><br><a href="http://garyrobertsart.tripod.com">rape snuff forced art cartoons</a>

06/17/06 20:14:38 changed by cxxcv

  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.

<a href="http://sicksexdrawings.tripod.com">cruel comics</a><br><a href="http://shockingcomics.tripod.com">comix porn sex</a><br><a href="http://hardcoresexcomics.tripod.com">comic lust</a><br><a href="http://horrorcomicspics.tripod.com">comics beastiality xxx</a><br><a href="http://hardcoreporncomic.tripod.com">comic fetish</a><br><a href="http://hardcoresexcomix.tripod.com">comic rape cartoon</a><br><a href="http://robertscomix.tripod.com">comix hardcore</a><br><a href="http://horrorsexdrawing.tripod.com">comics fetish</a><br><a href="http://sickrapetoons.tripod.com">cruel torture</a><br><a href="http://sicksexcomics.tripod.com">cruel sex comics</a>

06/18/06 04:00:54 changed by cigman@gmail.com

  • type set to defect.
  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.

06/19/06 12:48:08 changed by Blowjobs

  • priority deleted.
  • type deleted.
  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.
  • component deleted.
  • milestone deleted.

<a href="http://free-blowjobs-movie.mpage.jp">Free blowjobs movie</a> http://free-blowjobs-movie.mpage.jp [URL=http://free-blowjobs-movie.mpage.jp]Free blowjobs movie/URL Free blowjobs movie<br><a href="http://gay-oral-sex.mpage.jp">Gay oral sex</a> http://gay-oral-sex.mpage.jp [URL=http://gay-oral-sex.mpage.jp]Gay oral sex/URL Gay oral sex<br><a href="http://sexo-oral.mpage.jp">Sexo oral</a> http://sexo-oral.mpage.jp [URL=http://sexo-oral.mpage.jp]Sexo oral/URL Sexo oral<br><a href="http://street-blowjobs.mpage.jp">Street blowjobs</a> http://street-blowjobs.mpage.jp [URL=http://street-blowjobs.mpage.jp]Street blowjobs/URL Street blowjobs<br><a href="http://oral.mpage.jp">Oral</a> http://oral.mpage.jp [URL=http://oral.mpage.jp]Oral[/URL] Oral<br><a href="http://free-blowjobs-video.mpage.jp">Free blowjobs video</a> http://free-blowjobs-video.mpage.jp [URL=http://free-blowjobs-video.mpage.jp]Free blowjobs video/URL Free blowjobs video<br><a href="http://free-blowjobs.mpage.jp">Free blowjobs</a> http://free-blowjobs.mpage.jp [URL=http://free-blowjobs.mpage.jp]Free blowjobs/URL Free blowjobs<br><a href="http://oral-surgery.mpage.jp">Oral surgery</a> http://oral-surgery.mpage.jp [URL=http://oral-surgery.mpage.jp]Oral surgery/URL Oral surgery<br><a href="http://teen-blowjobs.mpage.jp">Teen blowjobs</a> http://teen-blowjobs.mpage.jp [URL=http://teen-blowjobs.mpage.jp]Teen blowjobs/URL Teen blowjobs<br><a href="http://blowjobs-movie.mpage.jp">Blowjobs movie</a> http://blowjobs-movie.mpage.jp [URL=http://blowjobs-movie.mpage.jp]Blowjobs movie/URL Blowjobs movie<br><a href="http://blowjobs-sex.mpage.jp">Blowjobs</a> http://blowjobs-sex.mpage.jp [URL=http://blowjobs-sex.mpage.jp]Blowjobs[/URL] Blowjobs<br><a href="http://asian-blowjobs.mpage.jp">Asian blowjobs</a> http://asian-blowjobs.mpage.jp [URL=http://asian-blowjobs.mpage.jp]Asian blowjobs/URL Asian blowjobs<br><a href="http://blowjobs-video.mpage.jp">Blowjobs video</a> http://blowjobs-video.mpage.jp [URL=http://blowjobs-video.mpage.jp]Blowjobs video/URL Blowjobs video<br><a href="http://gay-blowjobs.mpage.jp">Gay blowjobs</a> http://gay-blowjobs.mpage.jp [URL=http://gay-blowjobs.mpage.jp]Gay blowjobs/URL Gay blowjobs<br><a href="http://oral-sex.mpage.jp">Oral sex</a> http://oral-sex.mpage.jp [URL=http://oral-sex.mpage.jp]Oral sex/URL Oral sex

06/19/06 17:41:54 changed by Vicodin

  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.

<a href="http://forcedfilms.com/Yeen-rape.html">Yeen rape</a> http://forcedfilms.com/Yeen-rape.html [URL=http://forcedfilms.com/Yeen-rape.html]Yeen rape/URL Yeen rape<br><a href="http://forcedfilms.com/Rape-stories.html">Rape stories</a> http://forcedfilms.com/Rape-stories.html [URL=http://forcedfilms.com/Rape-stories.html]Rape stories/URL Rape stories<br><a href="http://forcedfilms.com/Fantasy-rape-stories.html">Fantasy rape stories</a> http://forcedfilms.com/Fantasy-rape-stories.html [URL=http://forcedfilms.com/Fantasy-rape-stories.html]Fantasy rape stories/URL Fantasy rape stories<br><a href="http://forcedfilms.com/Teeh-rape.html">Teeh rape</a> http://forcedfilms.com/Teeh-rape.html [URL=http://forcedfilms.com/Teeh-rape.html]Teeh rape/URL Teeh rape<br><a href="http://forcedfilms.com/Date-rape-drugs.html">Date rape drugs</a> http://forcedfilms.com/Date-rape-drugs.html [URL=http://forcedfilms.com/Date-rape-drugs.html]Date rape drugs/URL Date rape drugs<br><a href="http://forcedfilms.com/Rapw-gantasy.html">Rapw gantasy</a> http://forcedfilms.com/Rapw-gantasy.html [URL=http://forcedfilms.com/Rapw-gantasy.html]Rapw gantasy/URL Rapw gantasy<br><a href="http://forcedfilms.com/Gang-rzpe.html">Gang rzpe</a> http://forcedfilms.com/Gang-rzpe.html [URL=http://forcedfilms.com/Gang-rzpe.html]Gang rzpe/URL Gang rzpe<br><a href="http://forcedfilms.com/Gang-rape.html">Gang rape</a> http://forcedfilms.com/Gang-rape.html [URL=http://forcedfilms.com/Gang-rape.html]Gang rape/URL Gang rape<br><a href="http://forcedfilms.com/Lesbian-gape.html">Lesbian gape</a> http://forcedfilms.com/Lesbian-gape.html [URL=http://forcedfilms.com/Lesbian-gape.html]Lesbian gape/URL Lesbian gape<br><a href="http://forcedfilms.com/Free-rape.html">Free rape</a> http://forcedfilms.com/Free-rape.html [URL=http://forcedfilms.com/Free-rape.html]Free rape/URL Free rape<br><a href="http://forcedfilms.com/Rqpe-fantasy-storids.html">Rqpe fantasy storids</a> http://forcedfilms.com/Rqpe-fantasy-storids.html [URL=http://forcedfilms.com/Rqpe-fantasy-storids.html]Rqpe fantasy storids/URL Rqpe fantasy storids<br><a href="http://forcedfilms.com/Gay-rape.html">Gay rape</a> http://forcedfilms.com/Gay-rape.html [URL=http://forcedfilms.com/Gay-rape.html]Gay rape/URL Gay rape<br><a href="http://forcedfilms.com/Date-rape-drug.html">Date rape drug</a> http://forcedfilms.com/Date-rape-drug.html [URL=http://forcedfilms.com/Date-rape-drug.html]Date rape drug/URL Date rape drug<br><a href="http://forcedfilms.com/Rape-pics.html">Rape pics</a> http://forcedfilms.com/Rape-pics.html [URL=http://forcedfilms.com/Rape-pics.html]Rape pics/URL Rape pics<br><a href="http://forcedfilms.com/Rape-videos.html">Rape videos</a> http://forcedfilms.com/Rape-videos.html [URL=http://forcedfilms.com/Rape-videos.html]Rape videos/URL Rape videos

06/20/06 06:51:00 changed by Anal sex

  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.

<a href="http://doubleanal.blogspoint.com">Double anal</a> http://doubleanal.blogspoint.com [URL=http://doubleanal.blogspoint.com]Double anal/URL Double anal<br><a href="http://matureanal.blogspoint.com">Mature anal</a> http://matureanal.blogspoint.com [URL=http://matureanal.blogspoint.com]Mature anal/URL Mature anal<br><a href="http://asssex.blogspoint.com">Ass sex</a> http://asssex.blogspoint.com [URL=http://asssex.blogspoint.com]Ass sex/URL Ass sex<br><a href="http://gayanal.blogspoint.com">Gay anal</a> http://gayanal.blogspoint.com [URL=http://gayanal.blogspoint.com]Gay anal/URL Gay anal<br><a href="http://analfucking.blogspoint.com">Anal fucking</a> http://analfucking.blogspoint.com [URL=http://analfucking.blogspoint.com]Anal fucking/URL Anal fucking<br><a href="http://analfisting.blogspoint.com">Anal fisting</a> http://analfisting.blogspoint.com [URL=http://analfisting.blogspoint.com]Anal fisting/URL Anal fisting<br><a href="http://teenanal.blogspoint.com">Teen anal</a> http://teenanal.blogspoint.com [URL=http://teenanal.blogspoint.com]Teen anal/URL Teen anal<br><a href="http://sexoanal.blogspoint.com">Sexo anal</a> http://sexoanal.blogspoint.com [URL=http://sexoanal.blogspoint.com]Sexo anal/URL Sexo anal<br><a href="http://anallesbian.blogspoint.com">Anal lesbian</a> http://anallesbian.blogspoint.com [URL=http://anallesbian.blogspoint.com]Anal lesbian/URL Anal lesbian<br><a href="http://assfucking.blogspoint.com">Ass fucking</a> http://assfucking.blogspoint.com [URL=http://assfucking.blogspoint.com]Ass fucking/URL Ass fucking<br><a href="http://analporn.blogspoint.com">Anal porn</a> http://analporn.blogspoint.com [URL=http://analporn.blogspoint.com]Anal porn/URL Anal porn<br><a href="http://analsex.blogspoint.com">Anal sex</a> http://analsex.blogspoint.com [URL=http://analsex.blogspoint.com]Anal sex/URL Anal sex<br><a href="http://anal.blogspoint.com">Anal</a> http://anal.blogspoint.com [URL=http://anal.blogspoint.com]Anal[/URL] Anal<br><a href="http://assfuck.blogspoint.com">Ass fuck</a> http://assfuck.blogspoint.com [URL=http://assfuck.blogspoint.com]Ass fuck/URL Ass fuck<br><a href="http://asiananal.blogspoint.com">Asian anal</a> http://asiananal.blogspoint.com [URL=http://asiananal.blogspoint.com]Asian anal/URL Asian anal

06/20/06 09:09:33 changed by Vicodin

  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.

<a href="http://18teenraped.com/Rape-video.html">Rape video</a> http://18teenraped.com/Rape-video.html [URL=http://18teenraped.com/Rape-video.html]Rape video/URL Rape video<br><a href="http://18teenraped.com/Rape-videos.html">Rape videos</a> http://18teenraped.com/Rape-videos.html [URL=http://18teenraped.com/Rape-videos.html]Rape videos/URL Rape videos<br><a href="http://18teenraped.com/Fantasy-rape.html">Fantasy rape</a> http://18teenraped.com/Fantasy-rape.html [URL=http://18teenraped.com/Fantasy-rape.html]Fantasy rape/URL Fantasy rape<br><a href="http://18teenraped.com/Free-rape-pics.html">Free rape pics</a> http://18teenraped.com/Free-rape-pics.html [URL=http://18teenraped.com/Free-rape-pics.html]Free rape pics/URL Free rape pics<br><a href="http://18teenraped.com/Forced-sex.html">Forced sex</a> http://18teenraped.com/Forced-sex.html [URL=http://18teenraped.com/Forced-sex.html]Forced sex/URL Forced sex<br><a href="http://18teenraped.com/Fantasy-rape-stories.html">Fantasy rape stories</a> http://18teenraped.com/Fantasy-rape-stories.html [URL=http://18teenraped.com/Fantasy-rape-stories.html]Fantasy rape stories/URL Fantasy rape stories<br><a href="http://18teenraped.com/Rape.html">Rape</a> http://18teenraped.com/Rape.html [URL=http://18teenraped.com/Rape.html]Rape[/URL] Rape<br><a href="http://18teenraped.com/Rape-pics.html">Rape pics</a> http://18teenraped.com/Rape-pics.html [URL=http://18teenraped.com/Rape-pics.html]Rape pics/URL Rape pics<br><a href="http://18teenraped.com/Rape-porn.html">Rape porn</a> http://18teenraped.com/Rape-porn.html [URL=http://18teenraped.com/Rape-porn.html]Rape porn/URL Rape porn<br><a href="http://18teenraped.com/Rape-sex.html">Rape sex</a> http://18teenraped.com/Rape-sex.html [URL=http://18teenraped.com/Rape-sex.html]Rape sex/URL Rape sex<br><a href="http://18teenraped.com/Date-rape-drugs.html">Date rape drugs</a> http://18teenraped.com/Date-rape-drugs.html [URL=http://18teenraped.com/Date-rape-drugs.html]Date rape drugs/URL Date rape drugs<br><a href="http://18teenraped.com/Gay-rape.html">Gay rape</a> http://18teenraped.com/Gay-rape.html [URL=http://18teenraped.com/Gay-rape.html]Gay rape/URL Gay rape<br><a href="http://18teenraped.com/Rape-fantasy-stories.html">Rape fantasy stories</a> http://18teenraped.com/Rape-fantasy-stories.html [URL=http://18teenraped.com/Rape-fantasy-stories.html]Rape fantasy stories/URL Rape fantasy stories<br><a href="http://18teenraped.com/Rape-pictures.html">Rape pictures</a> http://18teenraped.com/Rape-pictures.html [URL=http://18teenraped.com/Rape-pictures.html]Rape pictures/URL Rape pictures<br><a href="http://18teenraped.com/Rape-stories.html">Rape stories</a> http://18teenraped.com/Rape-stories.html [URL=http://18teenraped.com/Rape-stories.html]Rape stories/URL Rape stories<br><a href="http://18teenraped.com/Rape-fantasy.html">Rape fantasy</a> http://18teenraped.com/Rape-fantasy.html [URL=http://18teenraped.com/Rape-fantasy.html]Rape fantasy/URL Rape fantasy<br><a href="http://18teenraped.com/Rape-movies.html">Rape movies</a> http://18teenraped.com/Rape-movies.html [URL=http://18teenraped.com/Rape-movies.html]Rape movies/URL Rape movies<br><a href="http://18teenraped.com/Free-rape.html">Free rape</a> http://18teenraped.com/Free-rape.html [URL=http://18teenraped.com/Free-rape.html]Free rape/URL Free rape<br><a href="http://18teenraped.com/Free-rape-stories.html">Free rape stories</a> http://18teenraped.com/Free-rape-stories.html [URL=http://18teenraped.com/Free-rape-stories.html]Free rape stories/URL Free rape stories<br><a href="http://18teenraped.com/Gang-rape.html">Gang rape</a> http://18teenraped.com/Gang-rape.html [URL=http://18teenraped.com/Gang-rape.html]Gang rape/URL Gang rape

06/21/06 02:12:50 changed by alplofth

  • severity set to critical.
  • cc set to alplofth.
  • component set to core.
  • priority set to highest.
  • version set to 2.0.
  • milestone set to undefined.
  • keywords set to alplofth.
  • type set to enhancement.

<a href="http://glbasiot.com">zizxbbyc</a> gjagtcee http://kraowfer.com wvoeoolb wgblmwzi

06/22/06 02:46:31 changed by beastiality

  • severity deleted.
  • component deleted.
  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.
  • priority deleted.
  • version deleted.
  • milestone deleted.
  • type deleted.

<a href="http://zoonew.truph.com/zoo-sex.html">zoo sex</a> http://zoonew.truph.com/zoo-sex.html [URL=http://zoonew.truph.com/zoo-sex.html]zoo sex/URL zoo sex<br><a href="http://zoonew.truph.com/blowing-a-horse-cock.html">blowing a horse cock</a> http://zoonew.truph.com/blowing-a-horse-cock.html [URL=http://zoonew.truph.com/blowing-a-horse-cock.html]blowing a horse cock/URL blowing a horse cock<br><a href="http://zoonew.truph.com/horse-porn.html">horse porn</a> http://zoonew.truph.com/horse-porn.html [URL=http://zoonew.truph.com/horse-porn.html]horse porn/URL horse porn<br><a href="http://zoonew.truph.com/dog-sex.html">dog sex</a> http://zoonew.truph.com/dog-sex.html [URL=http://zoonew.truph.com/dog-sex.html]dog sex/URL dog sex<br><a href="http://zoonew.truph.com/animal-fuckers.html">animal fuckers</a> http://zoonew.truph.com/animal-fuckers.html [URL=http://zoonew.truph.com/animal-fuckers.html]animal fuckers/URL animal fuckers<br><a href="http://zoonew.truph.com/beastality.html">beastality</a> http://zoonew.truph.com/beastality.html [URL=http://zoonew.truph.com/beastality.html]beastality[/URL] beastality<br><a href="http://zoonew.truph.com/beast-sex.html">beast sex</a> http://zoonew.truph.com/beast-sex.html [URL=http://zoonew.truph.com/beast-sex.html]beast sex/URL beast sex<br><a href="http://zoonew.truph.com/horse-sex.html">horse sex</a> http://zoonew.truph.com/horse-sex.html [URL=http://zoonew.truph.com/horse-sex.html]horse sex/URL horse sex<br><a href="http://zoonew.truph.com/girls-drinking-horse-cum.html">girls drinking horse cum</a> http://zoonew.truph.com/girls-drinking-horse-cum.html [URL=http://zoonew.truph.com/girls-drinking-horse-cum.html]girls drinking horse cum/URL girls drinking horse cum<br><a href="http://zoonew.truph.com/animal-sex.html">animal sex</a> http://zoonew.truph.com/animal-sex.html [URL=http://zoonew.truph.com/animal-sex.html]animal sex/URL animal sex<br><a href="http://zoonew.truph.com/animal-sex-with-human.html">animal sex with human</a> http://zoonew.truph.com/animal-sex-with-human.html [URL=http://zoonew.truph.com/animal-sex-with-human.html]animal sex with human/URL animal sex with human<br><a href="http://zoonew.truph.com/animal-porn.html">animal porn</a> http://zoonew.truph.com/animal-porn.html [URL=http://zoonew.truph.com/animal-porn.html]animal porn/URL animal porn<br><a href="http://zoonew.truph.com/animal-dick-in-pussy.html">animal dick in pussy</a> http://zoonew.truph.com/animal-dick-in-pussy.html [URL=http://zoonew.truph.com/animal-dick-in-pussy.html]animal dick in pussy/URL animal dick in pussy<br><a href="http://zoonew.truph.com/zoophilia.html">zoophilia</a> http://zoonew.truph.com/zoophilia.html [URL=http://zoonew.truph.com/zoophilia.html]zoophilia[/URL] zoophilia<br><a href="http://zoonew.truph.com/horse-sex-women.html">horse sex women</a> http://zoonew.truph.com/horse-sex-women.html [URL=http://zoonew.truph.com/horse-sex-women.html]horse sex women/URL horse sex women<br><a href="http://zoonew.truph.com/beastiality.html">beastiality</a> http://zoonew.truph.com/beastiality.html [URL=http://zoonew.truph.com/beastiality.html]beastiality[/URL] beastiality<br><a href="http://zoonew.truph.com/horse-cum.html">horse cum</a> http://zoonew.truph.com/horse-cum.html [URL=http://zoonew.truph.com/horse-cum.html]horse cum/URL horse cum<br><a href="http://zoonew.truph.com/animalsex.html">animalsex</a> http://zoonew.truph.com/animalsex.html [URL=http://zoonew.truph.com/animalsex.html]animalsex[/URL] animalsex<br><a href="http://zoonew.truph.com/men-having-sex-with-animals.html">men having sex with animals</a> http://zoonew.truph.com/men-having-sex-with-animals.html [URL=http://zoonew.truph.com/men-having-sex-with-animals.html]men having sex with animals/URL men having sex with animals<br><a href="http://zoonew.truph.com/bestiality.html">bestiality</a> http://zoonew.truph.com/bestiality.html [URL=http://zoonew.truph.com/bestiality.html]bestiality[/URL] bestiality

06/22/06 05:35:27 changed by Gay sex

  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.

<a href="http://gayvideo.proboards76.com">Gay video</a> http://gayvideo.proboards76.com [URL=http://gayvideo.proboards76.com]Gay video/URL Gay video<br><a href="http://gaydating.proboards76.com">Gay dating</a> http://gaydating.proboards76.com [URL=http://gaydating.proboards76.com]Gay dating/URL Gay dating<br><a href="http://gaypersonals.proboards76.com">Gay personals</a> http://gaypersonals.proboards76.com [URL=http://gaypersonals.proboards76.com]Gay personals/URL Gay personals<br><a href="http://gayman1z.proboards76.com">Gay man</a> http://gayman1z.proboards76.com [URL=http://gayman1z.proboards76.com]Gay man/URL Gay man<br><a href="http://freegaypic.proboards76.com">Free gay pic</a> http://freegaypic.proboards76.com [URL=http://freegaypic.proboards76.com]Free gay pic/URL Free gay pic<br><a href="http://gaypic.proboards76.com">Gay pic</a> http://gaypic.proboards76.com [URL=http://gaypic.proboards76.com]Gay pic/URL Gay pic<br><a href="http://gayteen1z.proboards76.com">Gay teen</a> http://gayteen1z.proboards76.com [URL=http://gayteen1z.proboards76.com]Gay teen/URL Gay teen<br><a href="http://gay1z.proboards76.com">Gay</a> http://gay1z.proboards76.com [URL=http://gay1z.proboards76.com]Gay[/URL] Gay<br><a href="http://gaylesbian.proboards76.com">Gay lesbian</a> http://gaylesbian.proboards76.com [URL=http://gaylesbian.proboards76.com]Gay lesbian/URL Gay lesbian<br><a href="http://gayboy1z.proboards76.com">Gay boy</a> http://gayboy1z.proboards76.com [URL=http://gayboy1z.proboards76.com]Gay boy/URL Gay boy<br><a href="http://gayporn1z.proboards76.com">Gay porn</a> http://gayporn1z.proboards76.com [URL=http://gayporn1z.proboards76.com]Gay porn/URL Gay porn<br><a href="http://gaysex1z.proboards76.com">Gay sex</a> http://gaysex1z.proboards76.com [URL=http://gaysex1z.proboards76.com]Gay sex/URL Gay sex<br><a href="http://gaysingle.proboards76.com">Gay single</a> http://gaysingle.proboards76.com [URL=http://gaysingle.proboards76.com]Gay single/URL Gay single<br><a href="http://freegayporn.proboards76.com">Free gay porn</a> http://freegayporn.proboards76.com [URL=http://freegayporn.proboards76.com]Free gay porn/URL Free gay porn<br><a href="http://gaychat1z.proboards76.com">Gay chat</a> http://gaychat1z.proboards76.com [URL=http://gaychat1z.proboards76.com]Gay chat/URL Gay chat

06/22/06 09:25:53 changed by Maldoren

  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.

06/22/06 10:56:54 changed by Viagra

  • priority set to highest.
  • type set to enhancement.
  • component set to core.
  • severity set to normal.
  • milestone set to 2.0.5.

06/23/06 03:10:29 changed by Viagra

  • priority changed from highest to normal.
  • type changed from enhancement to defect.

You have a very nice site <a href="http://viagrasale.54.pl/">generic viagra</a> http://viagrasale.54.pl/ [url=http://viagrasale.54.pl/]generic viagra/url

06/23/06 05:29:31 changed by as3rs

  • type deleted.
  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.

06/23/06 08:52:36 changed by Viagra

  • priority changed from normal to low.
  • version set to 1.0.
  • type set to defect.
  • severity changed from normal to minor.
  • milestone deleted.

Your site is very good <a href="http://viagrasale.ryj.pl/">viagra online</a> http://viagrasale.ryj.pl/ [url=http://viagrasale.ryj.pl/]viagra online/url

06/23/06 16:47:06 changed by Alprazolam online

  • severity deleted.
  • component deleted.
  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.
  • priority deleted.
  • version deleted.
  • type deleted.

<a href="http://ambien.tramadol-bx.info/Ambien.html">Ambien</a> http://ambien.tramadol-bx.info/Ambien.html [URL=http://ambien.tramadol-bx.info/Ambien.html]Ambien[/URL] Ambien<br><a href="http://ambien.tramadol-bx.info/Buy_ambien.html">Buy ambien</a> http://ambien.tramadol-bx.info/Buy_ambien.html [URL=http://ambien.tramadol-bx.info/Buy_ambien.html]Buy ambien/URL Buy ambien<br><a href="http://ativan.tramadol-bx.info/Ativan.html">Ativan</a> http://ativan.tramadol-bx.info/Ativan.html [URL=http://ativan.tramadol-bx.info/Ativan.html]Ativan[/URL] Ativan<br><a href="http://ambien.tramadol-bx.info/Ambien_online.html">Ambien online</a> http://ambien.tramadol-bx.info/Ambien_online.html [URL=http://ambien.tramadol-bx.info/Ambien_online.html]Ambien online/URL Ambien online<br><a href="http://alprazolam.tramadol-bx.info/Buy_alprazolam_online.html">Buy alprazolam online</a> http://alprazolam.tramadol-bx.info/Buy_alprazolam_online.html [URL=http://alprazolam.tramadol-bx.info/Buy_alprazolam_online.html]Buy alprazolam online/URL Buy alprazolam online<br><a href="http://ambien.tramadol-bx.info/Buy_ambien_online.html">Buy ambien online</a> http://ambien.tramadol-bx.info/Buy_ambien_online.html [URL=http://ambien.tramadol-bx.info/Buy_ambien_online.html]Buy ambien online/URL Buy ambien online<br><a href="http://alprazolam.tramadol-bx.info/Alprazolam_online.html">Alprazolam online</a> http://alprazolam.tramadol-bx.info/Alprazolam_online.html [URL=http://alprazolam.tramadol-bx.info/Alprazolam_online.html]Alprazolam online/URL Alprazolam online<br><a href="http://ambien.tramadol-bx.info/Ambien_side_effects.html">Ambien side effects</a> http://ambien.tramadol-bx.info/Ambien_side_effects.html [URL=http://ambien.tramadol-bx.info/Ambien_side_effects.html]Ambien side effects/URL Ambien side effects<br><a href="http://bontril.tramadol-bx.info/Bontril.html">Bontril</a> http://bontril.tramadol-bx.info/Bontril.html [URL=http://bontril.tramadol-bx.info/Bontril.html]Bontril[/URL] Bontril<br><a href="http://bontril.tramadol-bx.info/Bontril_buy.html">Bontril buy</a> http://bontril.tramadol-bx.info/Bontril_buy.html [URL=http://bontril.tramadol-bx.info/Bontril_buy.html]Bontril buy/URL Bontril buy<br><a href="http://ambien.tramadol-bx.info/Order_ambien.html">Order ambien</a> http://ambien.tramadol-bx.info/Order_ambien.html [URL=http://ambien.tramadol-bx.info/Order_ambien.html]Order ambien/URL Order ambien<br><a href="http://alprazolam.tramadol-bx.info/Alprazolam.html">Alprazolam</a> http://alprazolam.tramadol-bx.info/Alprazolam.html [URL=http://alprazolam.tramadol-bx.info/Alprazolam.html]Alprazolam[/URL] Alprazolam<br><a href="http://alprazolam.tramadol-bx.info/Buy_alprazolam.html">Buy alprazolam</a> http://alprazolam.tramadol-bx.info/Buy_alprazolam.html [URL=http://alprazolam.tramadol-bx.info/Buy_alprazolam.html]Buy alprazolam/URL Buy alprazolam<br><a href="http://ambien.tramadol-bx.info/Ambien_cr.html">Ambien cr</a> http://ambien.tramadol-bx.info/Ambien_cr.html [URL=http://ambien.tramadol-bx.info/Ambien_cr.html]Ambien cr/URL Ambien cr<br><a href="http://alprazolam.tramadol-bx.info/Alprazolam_xanax.html">Alprazolam xanax</a> http://alprazolam.tramadol-bx.info/Alprazolam_xanax.html [URL=http://alprazolam.tramadol-bx.info/Alprazolam_xanax.html]Alprazolam xanax/URL Alprazolam xanax<br><a href="http://ambien.tramadol-bx.info/Ambien_coupon_cr.html">Ambien coupon cr</a> http://ambien.tramadol-bx.info/Ambien_coupon_cr.html [URL=http://ambien.tramadol-bx.info/Ambien_coupon_cr.html]Ambien coupon cr/URL Ambien coupon cr<br><a href="http://ativan.tramadol-bx.info/Ativan_lorazepam.html">Ativan lorazepam</a> http://ativan.tramadol-bx.info/Ativan_lorazepam.html [URL=http://ativan.tramadol-bx.info/Ativan_lorazepam.html]Ativan lorazepam/URL Ativan lorazepam<br><a href="http://ambien.tramadol-bx.info/Ambien_addiction.html">Ambien addiction</a> http://ambien.tramadol-bx.info/Ambien_addiction.html [URL=http://ambien.tramadol-bx.info/Ambien_addiction.html]Ambien addiction/URL Ambien addiction<br><a href="http://ambien.tramadol-bx.info/Generic_ambien.html">Generic ambien</a> http://ambien.tramadol-bx.info/Generic_ambien.html [URL=http://ambien.tramadol-bx.info/Generic_ambien.html]Generic ambien/URL Generic ambien<br><a href="http://ativan.tramadol-bx.info/Ativan_effects_side.html">Ativan effects side</a> http://ativan.tramadol-bx.info/Ativan_effects_side.html [URL=http://ativan.tramadol-bx.info/Ativan_effects_side.html]Ativan effects side/URL Ativan effects side<br><a href="http://ativan.tramadol-bx.info/Ativan_side_effects.html">Ativan side effects</a> http://ativan.tramadol-bx.info/Ativan_side_effects.html [URL=http://ativan.tramadol-bx.info/Ativan_side_effects.html]Ativan side effects/URL Ativan side effects

06/24/06 03:43:14 changed by fdghfg

  • type set to defect.
  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages.

06/24/06 17:57:12 changed by Buy hydrocodone online

  • priority set to low.
  • type changed from defect to task.
  • version set to 2.0.
  • component set to core.
  • severity set to blocker.

<a href="http://alternative.lv/mp3/buyhydrocodoneonline.htm">Buy hydrocodone online</a> <a href="http://www.azk.pl/reading/ativanlorazepam.htm">ativan lorazepam</a> <a href="http://www.azk.pl/reading/xanaxxr.htm">xanax xr</a> <a href="http://www.azk.pl/reading/cialisprescription.htm">cialis prescription</a>

06/25/06 17:59:48 changed by cheap soma

  • priority changed from low to normal.
  • type changed from task to defect.
  • severity changed from blocker to major.

06/29/06 10:51:44 changed by obtvkjsx

  • priority changed from normal to lowest.
  • version changed from 2.0 to 1.0.
  • type changed from defect to enhancement.
  • severity changed from major to normal.
  • milestone set to undefined.

<a href="http://gxfpgdow.com">rrvyhgzi</a> ltafktln http://avpegklm.com bhpxwvjv eqqfhggu

07/15/06 10:56:56 changed by Zane

  • severity changed from normal to 1.
  • cc changed from alplofth to Zane.
  • component changed from core to 1.
  • summary changed from Support &amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34;POST&amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;amp;#34; redirects and multipart messages to Zane.
  • priority changed from lowest to 1.
  • version changed from 1.0 to 1.
  • milestone changed from undefined to 1.
  • keywords changed from alplofth to Zane.
  • type changed from enhancement to 1.

Nice site! <a href="http://juhiatvv.com/mtcv/xvbi.html">My homepage</a> | <a href="http://fdqimdyt.com/mqya/rxfd.html">Please visit</a>

07/21/06 06:17:29 changed by food indian light

  • cc changed from Zane to eminem.com.
  • keywords changed from Zane to eminem.com.
  • summary changed from Zane to eminem.com.

<a href="http://www.myglobaldir.com/indian/food-indian-light.html">food indian light</a> <br />