view doc/glossary.txt @ 7042:031cdb92fa1d

Replace hardcoded python version with ARG variable The Dockerfile had a hardcoded Python version in install paths and COPY command in the second stage build. Replace that with a hardcoded ARG pythonversion. Add RUN command to verify pythonversion against the actual version installed in the docker image. If they do not match generate an appropriate --build-arg for the docker build command that will match the docker image version. Document the use of the variable and why it's needed in installation.txt. Also fix typos referencing --build-args and bad values for the arguments.
author John Rouillard <rouilj@ieee.org>
date Mon, 07 Nov 2022 00:45:53 -0500
parents 9ca128103a3a
children 648d5916c248
line wrap: on
line source

.. meta::
    :description:
        Definitions of terms used in the Roundup Issue Tracker
	documentation.

================
Roundup Glossary
================


class
   a definition of the properties and behaviour of a set of items
classname
   the name of a class. It must start with a letter, end with a letter
   or "_", and only have alphanumerics and "_" in the middle.
db (or hyperdb)
   a collection of items
designator
   a combined class + itemid reference to any item in the
   hyperdb. E.g. issue26. Note that form values can include
   something that looks like a designator composed of a classname, a
   dash '-', and a number. E.g. file-1. These
   are used to create new instances of a class via the web interface.
itemid
   a numeric reference to a particular item of one class
item
   a collection of data that forms one entry in the hyperdb.
property
   one element of data that makes up an item. In Roundup, the set 
   of item properties may be changed as needed - even after the 
   tracker has been initialised and used in production.
schema
   the definition of all the classes that make up an tracker
tracker
   the schema and hyperdb that forms one issue tracker
tracker home
   the physical location on disk of a tracker


-----------------

Back to `Table of Contents`_

.. _`Table of Contents`: ../docs.html


Roundup Issue Tracker: http://roundup-tracker.org/