Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtp (Exim 4.84_2) (envelope-from ) id 1bmgfC-0004G8-CK for pgadmin-hackers@arkaria.postgresql.org; Wed, 21 Sep 2016 12:30:10 +0000 Received: from localhost ([127.0.0.1] helo=postgresql.org) by malur.postgresql.org with smtp (Exim 4.84_2) (envelope-from ) id 1bmgfB-0007cx-Va for pgadmin-hackers@arkaria.postgresql.org; Wed, 21 Sep 2016 12:30:10 +0000 Received: from makus.postgresql.org ([2001:4800:1501:1::229]) by malur.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1bmgfB-0007cC-Gr for pgadmin-hackers@postgresql.org; Wed, 21 Sep 2016 12:30:09 +0000 Received: from mail-it0-x234.google.com ([2607:f8b0:4001:c0b::234]) by makus.postgresql.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.84_2) (envelope-from ) id 1bmgf4-00009d-D8 for pgadmin-hackers@postgresql.org; Wed, 21 Sep 2016 12:30:08 +0000 Received: by mail-it0-x234.google.com with SMTP id o3so125860504ita.1 for ; Wed, 21 Sep 2016 05:30:01 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pgadmin-org.20150623.gappssmtp.com; s=20150623; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=qpjENM8vTG5OfeuHrsAbSxUIaj5QpcGAF+Kdh17PBbc=; b=xQ3LIwVJC2uEzlmDBv1Pzzh+QoStbE5wOdpEJLwOIPTsCyuYjLi3qkNSULA+hrNx+9 uigrC6vhH/fFCkX1NxcwINg6MH0kbqJxApsHsYhuuu9c3kixFBstzpvSZ0e8HRYKawTX nEvOkdFBXeaZGtcu/pZk6VPwsZVgYntBCrX2aVIeXk5cK3yULSx4as4yIHOVKGnqE0A+ QxwV+8ujRkngRySwRb7PL13hJoTRcs7mLBKwovOmUcw4Pv9ZhXbYDFjJ22MxO66RMyEg aKOWVwU2+834eT+KfUKE3sZRlO1uMybdbHWwdmCsFJFiN31dUuDmfIo9ZEwFW34SuVJq ovrQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=qpjENM8vTG5OfeuHrsAbSxUIaj5QpcGAF+Kdh17PBbc=; b=Z8pLNRGAckRJftWzHXaoXA+U2s6dPHFLIVrThSdpXTCdlTxZ5g4wLzLHoh/NuvjP9L HxSRovS2Y/9/IlwuUVyFMAvS2wbTlHUM9pztU49kmKO4vYea1iBlG8di6jzmoMpegtKO QdV3kevLxG4XhN1PYqrGa/gsNwxraAvFEKjyo82dUL0uRBSiJiu/mIKwBW6870BnZZri KCAUUhGRKXmOEZiQPuoxW1yp2UvxxbMl/6oFeIlcqPfoCgFql3+BRK7iFJxBwO7IXKzM 433b5KVSMmgsdrLgWdpbzK2w+IVSAjSHcNJ1SJsWzDNl6UgZPF+IaOgQxbFBtWx5nAJD CIig== X-Gm-Message-State: AE9vXwOhgU09NEumIhTcgqNjOpNLWgeApts+XMWG6d2kGWRy5h7Cy/5+nW2+MUNx3Nmg6oFJglEPlcUMJx7Xow== X-Received: by 10.36.249.129 with SMTP id l123mr3552502ith.103.1474461001155; Wed, 21 Sep 2016 05:30:01 -0700 (PDT) MIME-Version: 1.0 Received: by 10.64.1.203 with HTTP; Wed, 21 Sep 2016 05:29:59 -0700 (PDT) In-Reply-To: References: From: Dave Page Date: Wed, 21 Sep 2016 13:29:59 +0100 Message-ID: Subject: Re: [pgAdmin4][Patch]: RM1171 - Fix IE caching issue To: Surinder Kumar Cc: pgadmin-hackers Content-Type: text/plain; charset=UTF-8 X-Pg-Spam-Score: -2.6 (--) List-Archive: List-Help: List-ID: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: X-Mailing-List: pgadmin-hackers Precedence: bulk Sender: pgadmin-hackers-owner@postgresql.org Can you rebase please? piranha:web dpage$ git apply ~/Downloads/RM1171_v1.patch error: patch failed: web/pgadmin/utils/ajax.py:29 error: web/pgadmin/utils/ajax.py: patch does not apply On Tue, Sep 20, 2016 at 2:58 PM, Surinder Kumar wrote: > Missed method closing parenthesis while calling > > Please find updated patch > > On Tue, Sep 20, 2016 at 7:25 PM, Surinder Kumar > wrote: >> >> This patch has some issue in chrome while loading nodes. I will send >> updated patch. >> >> On Tue, Sep 20, 2016 at 7:16 PM, Surinder Kumar >> wrote: >>> >>> Hi >>> >>> Issue: >>> IE always caching the response data returned from the server and when >>> same request is made for next time, it doesn't bring new data, instead it >>> use cached data. >>> >>> Solution: >>> Set cache to 'no-cache' in response headers while sending from the server >>> side. This prevents browser from caching data every time an http request is >>> made. >>> >>> Thanks to Harshal & Murtaza for discussing issue and solution. >>> >>> Please find attached patch and review. >>> >>> >>> Thanks, >>> Surinder Kumar >> >> > > > > -- > Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) > To make changes to your subscription: > http://www.postgresql.org/mailpref/pgadmin-hackers > -- Dave Page Blog: http://pgsnake.blogspot.com Twitter: @pgsnake EnterpriseDB UK: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgadmin-hackers