Difference between revisions of "Development"

From ISFDB
Jump to navigation Jump to search
(→‎Outstanding changes: r2013-105 installed)
(→‎Outstanding changes: +Clone Pub changes for FR 442)
Line 65: Line 65:
 
!Patch
 
!Patch
  
 +
|-
 +
| [http://sourceforge.net/p/isfdb/feature-requests/442/ FR 442]
 +
| Improve the Sourcing of data - Clone Pub
 +
|
 +
*edit/clonepub.py 1.22
 +
*edit/editpub.py 1.21
 +
*edit/isfdblib.py 1.33
 +
*edit/isfdblib_print.py 1.6
 +
*edit/newpub.py 1.20
 +
*edit/submitclone.py 1.11
 +
*mod/ca_new.py 1.13
 +
*mod/cv_new.py 1.13
 +
| Ahasuerus
 +
| Ahasuerus
 +
|
 +
|
  
 
|}
 
|}

Revision as of 23:06, 8 August 2013

This page serves as the hub for discussing ISFDB-related software development. Related resources include:

Developers and Testers

  • MartyD — developer
  • BLongley — developer
  • Kpulliam — developer (of meager ability) / Tester
  • Roglo — developer (inactive since mid-2009)
  • Ahasuerus — developer, tester and installer/administrator
  • Alvonruff — currently unavailable, but has full development and administrative access
  • Marc Kupper — has full administrative access and a partial development setup
  • JesseW — developer
  • Uzume — developer, tester, etc.

The following editors are currently in the process of setting up a local copy of the application:

Software Development Process

At this time the development process works as follows:

  • A Bug or Feature Request ("FR") is created in SourceForge. Anyone can do it, even "anonymous".
  • In theory, the bug/FR is assigned to a developer based on discussions on the Development page. However, the number of active developers has been low since late 2009, so this step is typically skipped and developers just grab bugs/FRs when they have some time to work on them.
  • The developer identifies the scripts that are affected and lists the Bug/FR (along with the scripts) on the Development page under "Outstanding Changes".
  • The developer makes his changes locally, tests them, checks them into SourceForge and posts the new version numbers on the Development page.
  • The administrator (Ahasuerus in 2009–2013) downloads the changes to his local development server and tests them. In some cases the administrator asks another developer to test the changes.
  • If everything works fine, the administrator uses the CVS "tag" command to tag the script(s) that will go into the next build, e.g., "cvs tag r2010-80 script.py". Usually a build includes one or two changes, although occasionally the number is higher. Builds follow the 2010-NN naming convention.
  • The administrator signs on to the live server and uses the CVS "export" command to download all scripts for the latest build/tag to a new directory, e.g., "cvs export -r r2010-80 -d r2010-80 isfdb2"
  • The administrator tar's the directory up, e.g., "tar -cvf r2010-80.tar *", copies the tarball to /home/avonruff/isfdb2/, untars it and types "make install" (or "make -B install" if the build added new scripts or otherwise requires a complete rebuild.)
  • The administrator gzips the tarball and moves it to an archive.
  • The administrator marks the Bug(s)/FR(s) as "Fixed/Completed" in SourceForge.
  • The administrator moves the completed change(s) from the list of Outstanding Changes on the Development page to the "Recent Patches" sub-page. "Recent Changes" covers all builds for the current year, so it's a useful page for developers to review.

Changes and Patches

Recent Patches

Patch Archive for previous years

See Development/Recent Patches for the list of changes implemented in 2013.

Outstanding changes

Bug or Feature Description Modules and versions Developer Tester Date Passed Patch
FR 442 Improve the Sourcing of data - Clone Pub
  • edit/clonepub.py 1.22
  • edit/editpub.py 1.21
  • edit/isfdblib.py 1.33
  • edit/isfdblib_print.py 1.6
  • edit/newpub.py 1.20
  • edit/submitclone.py 1.11
  • mod/ca_new.py 1.13
  • mod/cv_new.py 1.13
Ahasuerus Ahasuerus

Planned changes

Bug or Feature Description Modules and versions Developer Tester Date Passed Patch
Bug 3183863 Static and dynamic content cannot be "rehomed" correctly
  • TBD
Uzume

Current Activity

JesseW

Rename the three PrintNavBar's to distinguish them

See FR 3115118. It'd be very easy, but I want some feedback before I do it. JesseW 05:58, 22 November 2010 (UTC)

Clarify the license

See Bug 3115153; it's not good that the actual files make no mention of the license the code is released under. JesseW 07:09, 22 November 2010 (UTC)

Kevin

Change Clone and Edit 'Submit' Buttons

Change the text in the Clone Submit and the Edit Submit button to be clear to the editor which is being submitted. Discuss at ISFDB:Proposed Interface Changes#Change Clone and Edit 'Submit' Buttons

MartyD

Concentrating on bugs, clean-up/consolidation, and small features. If anything ever comes of the tagging discussion at ISFDB:Community Portal#Title type tags in bibliography display, I will revisit the tagging used, too.

Tips and Tricks

Avoid being too "Pythonic"

Among the developers, there is a wide variety of backgrounds and levels of Python experience. Due to this, it's important to take care to keep the code understandable without a high level of Python-specific knowledge. Using basic structured programming constructs (i.e., def, if, while, etc.) rather than heavy object-orientation or more esoteric functional programming tricks is recommended.

Where is db defined?

Whenever SQLparsing.py is imported, a database connection is created, and assigned to the variable db. SQLparsing.py is copied by the makefiles from common/ into all the other directories, and imported by more or less everything, often multiple times. This is may be suboptimal.

Code Format

  • The code appears to use 'TAB' instead of 'SPACE SPACE SPACE SPACE' to indent the code. (Some online python tutorials indicate a preference for one or the other.) You should use TABS for this project to indent because Python uses the indent level to define code blocks and sub steps. Mixing tabs and spaces in a File/project can cause the compiler to misunderstand where the functions and loops start and stop.
  • In other ways the code should probably adhere to PEP 8: Style Guide for Python Code

Duplicate Functions and Duplicate Filenames

WARNING — There are duplicate file names and duplicate functions. The function PrintNavBar for instance, appears in /biblio/common.py (with 5 arguments) and in /edit/isfdblib.py (with 2 arguments) and again in /mod/isfdblib.py (with no arguments). Be sure to watch your directory of the file you are editing, and you cannot count on a function in one directory behaving the same when working in another directory.

Indeed. When looking for "SQLwikiLinkExists" it turns out we have five of them, and rather too many "SQLparsing.py" files. We could do with some comparisons and centralisation, although this obviously has possibly far-ranging effects and would need lots of regression testing. BLongley
Files living in common are master files and are copied to the other parts of the tree during the build process. The good news is, CVS won't let you commit the others, as they don't actually exist in those directories in CVS. TortoiseCVS distinguishes them as local files with a different icon.... —MartyD 20:48, 14 June 2009 (UTC)
This isn't a case of common files. This is duplicate file and function naming. Kevin 03:25, 15 June 2009 (UTC)
I have begun the first step in the journey to fixing the PrintNavBar duplication problem. I've created a new common/navbar.py and made all of the other directories share it. We can slowly move NavBar things into it. —MartyD 21:14, 5 July 2009 (UTC)

Related Projects