Re: [pgAdmin4] [Patch]: Extension Module

From: Dave Page <dpage(at)pgadmin(dot)org>
To: Surinder Kumar <surinder(dot)kumar(at)enterprisedb(dot)com>
Cc: Neel Patel <neel(dot)patel(at)enterprisedb(dot)com>, pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: Re: [pgAdmin4] [Patch]: Extension Module
Date: 2016-02-15 11:07:26
Message-ID: CA+OCxowvwaqPNzn317d4CEa3HC2j8RfFNPH2SNNuJ+QpaAt=0A@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Hi

On Mon, Feb 15, 2016 at 9:55 AM, Surinder Kumar <
surinder(dot)kumar(at)enterprisedb(dot)com> wrote:

> Hi,
>
> PFA patch with following changes:
>
> 1. Added "Create Extension" menu item in context menu of Database node.
> 2. Added a new method "node_node" in ExtensionModule class. If a node
> has child, returns True, otherwise False.
> 3. Fixed an issue in which icon won't display in create extension link
> in context menu.
> 4. Added Docstring for the class and methods in python file and proper
> commenting in js file.
> 5. Followed PEP-08 coding conventions.
>
>
I haven't tested this, but a few initial comments:

- The commenting of the JS code is better than I've seen in other patches
\o/, but the commenting style is inconsistent. We should use /* */ for
multi-line comments, and // for single line.
- The JS code could use some carefully introduced blank lines to help make
it more readable.
- s/}else{/} else {/
- Dependency/depends display is missing (see previous email to Akshay).
This is essential for this node!
- There's no pydoc comment introducing __init__.py
- Shouldn't "data='-- Modified SQL --'," be "data=gettext('-- Modified SQL
--'),"?

--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

In response to

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Akshay Joshi 2016-02-15 13:02:04 [pgAdmin4] Numeric Control for Backform
Previous Message Dave Page 2016-02-15 10:48:45 Re: patch for cast module