package votorola::s::Glossary; # Copyright 2009, 2011, Michael Allan. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Votorola Software"), to deal in the Votorola Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicence, and/or sell copies of the Votorola Software, and to permit persons to whom the Votorola Software is furnished to do so, subject to the following conditions: The preceding copyright notice and this permission notice shall be included in all copies or substantial portions of the Votorola Software. THE VOTOROLA SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE VOTOROLA SOFTWARE OR THE USE OR OTHER DEALINGS IN THE VOTOROLA SOFTWARE. use strict; use warnings; =pod =head1 DESCRIPTION Glossary definitions. Changing? Run votorola/b/auto-edit to regenerate glossaries in source files. =head1 EXPORTS =over 4 =cut BEGIN { use Exporter (); our @ISA; @ISA = qw( Exporter ); our @EXPORT_OK; @EXPORT_OK = qw( %manual ); } our @EXPORT_OK; =pod =item %B The glossary for manual.xht. =cut our %manual = ( 'count' => { 'ref' => '{basepath}/s/manual.xht#count', 'def' => [ q|see vote count|, ] }, 'vote-server' => { 'ref' => '{basepath}/s/manual.xht#vote-server', 'def' => [ q|a server that provides polls and other voter services|, ] }, 'vote-server name' => { 'ref' => '{basepath}/s/manual.xht#vote-server-name', 'def' => [ q|the login name of the account on the local host computer, under which the vote-server's data is stored and its processes are run|, # ' ] }, 'primary trust edge' => { 'ref' => '{basepath}/s/manual.xht#primary-trust-edge', 'def' => [ q|an edge that extends directly from the root of the trust network, which is the registrar|, ] }, 'registry' => { 'ref' => '{basepath}/s/manual.xht#voter-register', 'def' => [ q|see voter registry|, ] }, 'snap/readyCount record' => { 'ref' => '{basepath}/s/manual.xht#snap-readyCount-record', 'def' => [ q|an archival snapshot of voter input and administrative data, located on the vote-server path ~/votorola/out/vocount/snap-YYYY-MD-S/readyCount-S, from which a particular vote count is generated and verified|, ] }, 'snap/readyList record' => { 'ref' => '{basepath}/s/manual.xht#snap-readyList-record', 'def' => [ q|an archival snapshot of voter input and administrative data, located on the vote-server path ~/votorola/out/volist/snap-YYYY-MD-S/readyList-S, from which a particular voter list is compiled and verified|, ] }, 'snap/readyTrace record' => { 'ref' => '{basepath}/s/manual.xht#snap-readyTrace-record', 'def' => [ q|an archival snapshot of voter input and administrative data, located on the vote-server path ~/votorola/out/votrace/snap-YYYY-MD-S/readyTrace-S, from which a particular residential trust network is traced and verified|, ] }, 'trust network' => { 'ref' => '{basepath}/s/manual.xht#Trust', 'def' => [ q|a directed graph of user-to-user trust edges that are extended by the users for the purpose of cross-authenticating the voter registry|, ] }, 'vote count' => { 'ref' => '{basepath}/s/manual.xht#count', 'def' => [ q|a snapshot copy of the results of a poll in which the flow of votes is traced, and the total received by each candidate is recorded|, ] }, 'voter list' => { 'ref' => '{basepath}/s/manual.xht#voter-list', 'def' => [ q|a snapshot copy of the voter register in which the network of trust edges is traced, and each voter's registration is evaluated at a particular level of trust|, #' ] }, 'voter registry' => { 'ref' => '{basepath}/s/manual.xht#voter-register', 'def' => [ q|a public repository of voter-specific attributes and inter-voter trust edges, from which a voter list is compiled|, ] }, ); =pod =back =cut 1;