abtlinux-svn Mailing List for ABout Time Linux (AbTLinux) (Page 17)
Status: Alpha
Brought to you by:
eschabell
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
(12) |
Apr
(4) |
May
(61) |
Jun
(5) |
Jul
(12) |
Aug
(1) |
Sep
|
Oct
(29) |
Nov
(89) |
Dec
(37) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
(4) |
Feb
(33) |
Mar
(12) |
Apr
|
May
(2) |
Jun
(13) |
Jul
(76) |
Aug
(7) |
Sep
(21) |
Oct
|
Nov
|
Dec
(33) |
2008 |
Jan
(32) |
Feb
(24) |
Mar
(17) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(10) |
From: <esc...@us...> - 2006-11-14 16:00:07
|
Revision: 168 http://svn.sourceforge.net/abtlinux/?rev=168&view=rev Author: eschabell Date: 2006-11-14 08:00:02 -0800 (Tue, 14 Nov 2006) Log Message: ----------- Now have dynamic loading of package class file by evaluating the requested class. Modified Paths: -------------- src/trunk/abt.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-11-14 15:01:50 UTC (rev 167) +++ src/trunk/abt.rb 2006-11-14 16:00:02 UTC (rev 168) @@ -105,8 +105,8 @@ if ( ARGV.length == 2 && File.exist?( $PACKAGE_PATH + ARGV[1] + ".rb" ) ) options['package'] = ARGV[1] - require options['package'] # pickup the package data. - package = Fortune.new # TODO: change this to dynamic naming. + require options['package'] # pickup called package class. + package = eval( options['package'].capitalize + '.new' ) # evaluates package.new methode dynamically. details = package.details puts "**************************************" @@ -212,7 +212,7 @@ if ( !File.directory?( $SOURCES_REPOSITORY ) ) FileUtils.mkdir_p $SOURCES_REPOSITORY # initialize directory. end - manager = AbtDownloadManager.new() + manager = AbtDownloadManager.new if ( manager.retrievePackageSource( options['package'] ) ) puts "\nDownloading of package " + options['package'] + " sources completed, see " + $SOURCES_REPOSITORY else This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-11-14 15:02:02
|
Revision: 167 http://svn.sourceforge.net/abtlinux/?rev=167&view=rev Author: eschabell Date: 2006-11-14 07:01:50 -0800 (Tue, 14 Nov 2006) Log Message: ----------- Split out usage stuff into own class file. Also adjusted show-details to make use of hash returned from method called, this cleared up the 'nil' we were getting in the output. Modified Paths: -------------- src/trunk/abt.rb Added Paths: ----------- src/trunk/AbtUsage.rb Added: src/trunk/AbtUsage.rb =================================================================== --- src/trunk/AbtUsage.rb (rev 0) +++ src/trunk/AbtUsage.rb 2006-11-14 15:01:50 UTC (rev 167) @@ -0,0 +1,120 @@ +#!/usr/bin/ruby -I./packages + +## +# AbtUsage.rb +# +# The usage reporting class for AbTLinux. +# +# Created by Eric D. Schabell <er...@ab...> +# Copyright November 2006, GPL. +# +# This file is part of AbTLinux. +# +# AbTLinux is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# AbTLinux is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# AbTLinux; if not, write to the Free Software Foundation, Inc., 51 Franklin +# St, Fifth Floor, Boston, MA 02110-1301 USA +## +class AbtUsage + + def usage( section ) + puts "Usage: abt.rb [options]\n\n" + + case section + + when "packages" + usagePackages + + when "queries" + usageQueries + + when "generation" + usageGeneration + + when "downloads" + usageDownloads + + when "fix" + usageFix + + when "maintenance" + usageMaintenance + + else + usagePackages + usageQueries + usageGeneration + usageDownloads + usageFix + usageMaintenance + end + end + + def usagePackages + puts "\npackages:" + puts " -i, install [package]\t\tInstall given package." + puts " -ri, reinstall [package]\t\tReinstall given package." + puts " -r, remove [package]\t\tRemove given package." + puts " -dg, downgrade [version] [package]\tDowngrade given package to given version." + puts " -f, freeze [package]\t\tHolds given package at current version, prevents upgrades.\n" + end + + def usageQueries + puts "\nqueries:" + puts " -s, search [string | regexp ]\tSearch package descriptions for given input." + puts " show-details [package]\t\tShow give package details." + puts " show-build [package]\t\tShow build log of given package." + puts " show-depends [package]\t\tShow the dependency tree of given package." + puts " show-files [package]\t\tShow all installed files from given package." + puts " show-owner [file]\t\tShow the package owning given file." + puts " show-installed\t\t\tShow list of all installed packages." + puts " show-frozen\t\t\t\tShow list of all frozen packages." + puts " show-untracked\t\t\tShow all files on system not tracked by AbTLinux." + puts " show-journal\t\t\t\tShow the system journal." + puts " show-iqueue\t\t\t\tShow the contents of the install queue." + puts " show-patches\t\t\t\tShow the current available patches for installed package tree.\n" + end + + def usageGeneration + puts "\ngeneration:" + puts " show-updates\t\tShow a package listing with available update versions." + puts " html\t\t\tGenerate HTML page from installed packages:" + puts " \t\t\t\t(package name with hyperlink to package website and version installed)\n" + end + + def usageDownloads + puts "\ndownloads:" + puts " -d, download [package]\t\tRetrieve given package sources." + puts " -u, update [package]|[tree]\tUpdate given package or tree from AbTLinux repository." + puts " -n, news\t\t\t\tDisplays newsfeed from AbTLinux website.\n" + end + + def usageFix + puts "\nfix:" + puts " purge-src\t\t\t\tRemove source caches for packages no longer installed." + puts " purge-logs\t\t\t\tRemove log files for packages no longer installed." + puts " verify-files [package]\t\tInstalled files are verified for given package." + puts " verify-symlinks [package]\t\tSymlinks verified for given package." + puts " verify-deps [package]\t\tDependency tree is verified for given package." + puts " verify-integrity [package]\t\tVerify integrity of installed files for given package." + puts " fix [package]\t\tGiven package is verified and fixed if needed.\n" + end + + def usageMaintenance + puts "\nmaintenance:" + puts " build-location [host]\t\tSets global location (default: localhost) for retrieving cached package builds." + puts " package-repo [add|remove|list] [URI]" + puts " add - add package repository to list." + puts " remove - remove a package repository from list." + puts " list - display current repository list.\n" + end +end Property changes on: src/trunk/AbtUsage.rb ___________________________________________________________________ Name: svn:executable + * Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-11-14 15:00:32 UTC (rev 166) +++ src/trunk/abt.rb 2006-11-14 15:01:50 UTC (rev 167) @@ -1,4 +1,4 @@ -#!/usr/bin/ruby -I/home/erics/workspace/abtapi/packages +#!/usr/bin/ruby -I./packages ## # abt.rb @@ -27,105 +27,13 @@ require 'AbtPackageManager' require 'AbtLogManager' require 'AbtReportManager' +require 'AbtDownloadManager' +require 'AbtUsage' require 'optparse' -class AbtUsage +$PACKAGE_PATH = "./packages/" +$SOURCES_REPOSITORY = "/var/spool/abt/sources" - $PACKAGE_PATH = "./packages/" - - def usage( section ) - puts "Usage: abt.rb [options]\n\n" - - case section - - when "packages" - usagePackages - - when "queries" - usageQueries - - when "generation" - usageGeneration - - when "downloads" - usageDownloads - - when "fix" - usageFix - - when "maintenance" - usageMaintenance - - else - usagePackages - usageQueries - usageGeneration - usageDownloads - usageFix - usageMaintenance - end - end - - def usagePackages - puts "\npackages:" - puts " -i, install [package]\t\tInstall given package." - puts " -ri, reinstall [package]\t\tReinstall given package." - puts " -r, remove [package]\t\tRemove given package." - puts " -dg, downgrade [version] [package]\tDowngrade given package to given version." - puts " -f, freeze [package]\t\tHolds given package at current version, prevents upgrades.\n" - end - - def usageQueries - puts "\nqueries:" - puts " -s, search [string | regexp ]\tSearch package descriptions for given input." - puts " show-details [package]\t\tShow give package details." - puts " show-build [package]\t\tShow build log of given package." - puts " show-depends [package]\t\tShow the dependency tree of given package." - puts " show-files [package]\t\tShow all installed files from given package." - puts " show-owner [file]\t\tShow the package owning given file." - puts " show-installed\t\t\tShow list of all installed packages." - puts " show-frozen\t\t\t\tShow list of all frozen packages." - puts " show-untracked\t\t\tShow all files on system not tracked by AbTLinux." - puts " show-journal\t\t\t\tShow the system journal." - puts " show-iqueue\t\t\t\tShow the contents of the install queue." - puts " show-patches\t\t\t\tShow the current available patches for installed package tree.\n" - end - - def usageGeneration - puts "\ngeneration:" - puts " show-updates\t\tShow a package listing with available update versions." - puts " html\t\t\tGenerate HTML page from installed packages:" - puts " \t\t\t\t(package name with hyperlink to package website and version installed)\n" - end - - def usageDownloads - puts "\ndownloads:" - puts " -d, download [package]\t\tRetrieve given package sources." - puts " -u, update [package]|[tree]\tUpdate given package or tree from AbTLinux repository." - puts " -n, news\t\t\t\tDisplays newsfeed from AbTLinux website.\n" - end - - def usageFix - puts "\nfix:" - puts " purge-src\t\t\t\tRemove source caches for packages no longer installed." - puts " purge-logs\t\t\t\tRemove log files for packages no longer installed." - puts " verify-files [package]\t\tInstalled files are verified for given package." - puts " verify-symlinks [package]\t\tSymlinks verified for given package." - puts " verify-deps [package]\t\tDependency tree is verified for given package." - puts " verify-integrity [package]\t\tVerify integrity of installed files for given package." - puts " fix [package]\t\tGiven package is verified and fixed if needed.\n" - end - - def usageMaintenance - puts "\nmaintenance:" - puts " build-location [host]\t\tSets global location (default: localhost) for retrieving cached package builds." - puts " package-repo [add|remove|list] [URI]" - puts " add - add package repository to list." - puts " remove - remove a package repository from list." - puts " list - display current repository list.\n" - end -end - ## # Parsing our options. ## @@ -194,15 +102,33 @@ end when "show-details" - if ( ARGV.length == 2 && FileTest.exist?( $PACKAGE_PATH + ARGV[1] + ".rb" ) ) + if ( ARGV.length == 2 && File.exist?( $PACKAGE_PATH + ARGV[1] + ".rb" ) ) options['package'] = ARGV[1] + + require options['package'] # pickup the package data. + package = Fortune.new # TODO: change this to dynamic naming. + details = package.details - require options['package'] - package = Fortune.new - puts package.details + puts "**************************************" + puts "Package name : " + details['name'] + puts "Executable : " + details['execName'] + puts "Version : " + details['version'] + puts "Source directory : " + details['srcDir'] + puts "Homepage : " + details['homepage'] + puts "Source location : " + details['srcUrl'] + puts "Depends On : " + details['dependsOn'] + puts "Relies On : " + details['reliesOn'] + puts "Optional DO : " + details['optionalDO'] + puts "Optional RO : " + details['optionalRO'] + puts "Security hash : " + details['hashCheck'] + puts "Patches : " + details['patches'] + puts "Patches hash : " + details['patchesHashCheck'] + puts "Mirror : " + details['mirrorPath'] + puts "License : " + details['license'] + puts "Description : " + details['description'] + puts "**************************************" else show.usage( "queries" ) - exit end when "show-build" @@ -280,9 +206,18 @@ show.usage( "downloads" ) when "download", "-d" - if ( ARGV.length == 2 ) + if ( ARGV.length == 2 && File.exist?( $PACKAGE_PATH + ARGV[1] + ".rb" ) ) options['package'] = ARGV[1] puts "Retrieve sources for package : " + options['package'] + if ( !File.directory?( $SOURCES_REPOSITORY ) ) + FileUtils.mkdir_p $SOURCES_REPOSITORY # initialize directory. + end + manager = AbtDownloadManager.new() + if ( manager.retrievePackageSource( options['package'] ) ) + puts "\nDownloading of package " + options['package'] + " sources completed, see " + $SOURCES_REPOSITORY + else + puts "\nDOWNLOADING - failed to download source for " + options['package'] + end else show.usage( "downloads" ) exit This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-11-14 15:00:36
|
Revision: 166 http://svn.sourceforge.net/abtlinux/?rev=166&view=rev Author: eschabell Date: 2006-11-14 07:00:32 -0800 (Tue, 14 Nov 2006) Log Message: ----------- Some code beautification. Modified Paths: -------------- src/trunk/packages/fortune.rb Modified: src/trunk/packages/fortune.rb =================================================================== --- src/trunk/packages/fortune.rb 2006-11-14 14:59:15 UTC (rev 165) +++ src/trunk/packages/fortune.rb 2006-11-14 15:00:32 UTC (rev 166) @@ -33,27 +33,26 @@ private - $name = "Fortune" - $version = "mod-9708" - $srcDir = "#{$name.downcase}-#{$version}" - - $packageData = { - 'name' => $name, - 'execName' => $name.downcase, - 'version' => $version, - 'srcDir' => $srcDir, - 'homepage' => "http://www.ibiblio.org/pub/Linux/games/amusements/#{$name.downcase}/", - 'srcUrl' => "http://www.ibiblio.org/pub/Linux/games/amusements/#{$srcDir}.tar.gz", - 'dependsOn' => "", - 'reliesOn' => "", - 'optionalDO' => "", - 'optionalRO' => "", - 'hashCheck' => "sha512:80c5b71d84eeb3092b2dfe483f0dad8ed42e2efeaa1f8791c2", - 'patches' => "http://patches.abtlinux.org/#{$srcDir}-patches-1.tar.gz", - 'patchesHashCheck' => "", - 'mirrorPath' => "http://mirror.abtlinux.org/#{$srcDir}.tar.gz", - 'license' => "GPL", - 'description' => "Prints a random, hopefully interesting, adage." + $name = "Fortune" + $version = "mod-9708" + $srcDir = "#{$name.downcase}-#{$version}" + $packageData = { + 'name' => $name, + 'execName' => $name.downcase, + 'version' => $version, + 'srcDir' => $srcDir, + 'homepage' => "http://www.ibiblio.org/pub/Linux/games/amusements/#{$name.downcase}/", + 'srcUrl' => "http://www.ibiblio.org/pub/Linux/games/amusements/#{$srcDir}.tar.gz", + 'dependsOn' => "", + 'reliesOn' => "", + 'optionalDO' => "", + 'optionalRO' => "", + 'hashCheck' => "sha512:80c5b71d84eeb3092b2dfe483f0dad8ed42e2efeaa1f8791c2", + 'patches' => "http://patches.abtlinux.org/#{$srcDir}-patches-1.tar.gz", + 'patchesHashCheck' => "", + 'mirrorPath' => "http://mirror.abtlinux.org/#{$srcDir}.tar.gz", + 'license' => "GPL", + 'description' => "Prints a random, hopefully interesting, adage." } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-11-14 14:59:23
|
Revision: 165 http://svn.sourceforge.net/abtlinux/?rev=165&view=rev Author: eschabell Date: 2006-11-14 06:59:15 -0800 (Tue, 14 Nov 2006) Log Message: ----------- Changed the details method to return a hash as promised. Modified Paths: -------------- src/trunk/AbtPackage.rb Modified: src/trunk/AbtPackage.rb =================================================================== --- src/trunk/AbtPackage.rb 2006-11-14 12:48:23 UTC (rev 164) +++ src/trunk/AbtPackage.rb 2006-11-14 14:59:15 UTC (rev 165) @@ -91,7 +91,6 @@ # ## def initialize( data ) - @name = data['name'] @execName = data['execName'] @version = data['version'] @@ -108,7 +107,6 @@ @mirrorPath = data['mirrorPath'] @license = data['license'] @description = data['description'] - end ## @@ -117,24 +115,24 @@ # <b>RETURNS:</b> <i>hash</i> - Contains all AbtPackage attributes (constants). ## def details - puts "**************************************" - puts "Package name : " + @name - puts "Executable : " + @execName - puts "Version : " + @version - puts "Source directory : " + @srcDir - puts "Homepage : " + @homepage - puts "Source location : " + @srcUrl - puts "Depends On : " + @dependsOn - puts "Relies On : " + @reliesOn - puts "Optional DO : " + @optionalDO - puts "Optional RO : " + @optionalRO - puts "Security hash : " + @hashCheck - puts "Patches : " + @patches - puts "Patches hash : " + @patchesHashCheck - puts "Mirror : " + @mirrorPath - puts "License : " + @license - puts "Description : " + @description - puts "**************************************" + return { + "name" => @name, + "execName" => @execName, + "version" => @version, + "srcDir" => @srcDir, + "homepage" => @homepage, + "srcUrl" => @srcUrl, + "dependsOn" => @dependsOn, + "reliesOn" => @reliesOn, + "optionalDO" => @optionalDO, + "optionalRO" => @optionalRO, + "hashCheck" => @hashCheck, + "patches" => @patches, + "patchesHashCheck" => @patchesHashCheck, + "mirrorPath" => @mirrorPath, + "license" => @license, + "description" => @description + } end ## @@ -190,5 +188,4 @@ ## def post end - end This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-11-14 12:48:25
|
Revision: 164 http://svn.sourceforge.net/abtlinux/?rev=164&view=rev Author: eschabell Date: 2006-11-14 04:48:23 -0800 (Tue, 14 Nov 2006) Log Message: ----------- Added symlink to abt.rb for ease of use, just for initial development. Added Paths: ----------- src/trunk/abt Added: src/trunk/abt =================================================================== --- src/trunk/abt (rev 0) +++ src/trunk/abt 2006-11-14 12:48:23 UTC (rev 164) @@ -0,0 +1 @@ +link abt.rb \ No newline at end of file Property changes on: src/trunk/abt ___________________________________________________________________ Name: svn:special + * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-11-13 22:55:06
|
Revision: 160 http://svn.sourceforge.net/abtlinux/?rev=160&view=rev Author: eschabell Date: 2006-11-12 12:26:08 -0800 (Sun, 12 Nov 2006) Log Message: ----------- Started to work out show-details. Modified Paths: -------------- src/trunk/abt.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-11-12 17:32:49 UTC (rev 159) +++ src/trunk/abt.rb 2006-11-12 20:26:08 UTC (rev 160) @@ -153,6 +153,12 @@ if ( ARGV.length == 2 ) options['package'] = ARGV[1] puts "Display details for package : " + options['package'] + + # TODO: make this work! + #require "AbtFortune" + #package = AbtFortune.new + #puts package.details + #exit else show.usage exit This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-11-13 22:55:06
|
Revision: 159 http://svn.sourceforge.net/abtlinux/?rev=159&view=rev Author: eschabell Date: 2006-11-12 09:32:49 -0800 (Sun, 12 Nov 2006) Log Message: ----------- Cleanup and beautification of the code layout. Modified Paths: -------------- src/trunk/abt.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-10-18 10:07:28 UTC (rev 158) +++ src/trunk/abt.rb 2006-11-12 17:32:49 UTC (rev 159) @@ -31,10 +31,9 @@ class AbtUsage - def usage - puts "Usage: abt.rb [options]\n\n" - - puts "packages:" + def usage + puts "Usage: abt.rb [options]\n\n" + puts "packages:" puts " -i, install [package]\t\tInstall given package." puts " -ri, reinstall [package]\t\tReinstall given package." puts " -r, remove [package]\t\tRemove given package." @@ -48,7 +47,7 @@ puts " show-depends [package]\t\tShow the dependency tree of given package." puts " show-files [package]\t\tShow all installed files from given package." puts " show-owner [file]\t\tShow the package owning given file." - puts " show-installed\t\t\tShow list of all installed packages." + puts " show-installed\t\t\tShow list of all installed packages." puts " show-frozen\t\t\t\tShow list of all frozen packages." puts " show-untracked\t\t\tShow all files on system not tracked by AbTLinux." puts " show-journal\t\t\t\tShow the system journal." @@ -58,28 +57,28 @@ puts "generation:" puts " show-updates\t\tShow a package listing with available update versions." puts " html\t\t\tGenerate HTML page from installed packages:" - puts " \t\t\t\t(package name with hyperlink to package website and version installed)" - puts - puts "downloads:" - puts " -d, download [package]\t\tRetrieve given package sources." - puts " -u, update [package]|[tree]\tUpdate given package or tree from AbTLinux repository." - puts " -n, news\t\t\t\tDisplays newsfeed from AbTLinux website." - puts - puts "fix:" - puts " purge-src\t\t\t\tRemove source caches for packages no longer installed." - puts " purge-logs\t\t\t\tRemove log files for packages no longer installed." - puts " verify-files [package]\t\tInstalled files are verified for given package." - puts " verify-symlinks [package]\t\tSymlinks verified for given package." - puts " verify-deps [package]\t\tDependency tree is verified for given package." - puts " verify-integrity [package]\t\tVerify integrity of installed files for given package." - puts " fix [package]\t\tGiven package is verified and fixed if needed." - puts - puts "maintenance:" - puts " build-location [host]\t\tSets global location (default: localhost) for retrieving cached package builds." - puts " package-repo [add|remove|list] [URI]" - puts " add - add package repository to list." - puts " remove - remove a package repository from list." - puts " list - display current repository list." + puts " \t\t\t\t(package name with hyperlink to package website and version installed)" + puts + puts "downloads:" + puts " -d, download [package]\t\tRetrieve given package sources." + puts " -u, update [package]|[tree]\tUpdate given package or tree from AbTLinux repository." + puts " -n, news\t\t\t\tDisplays newsfeed from AbTLinux website." + puts + puts "fix:" + puts " purge-src\t\t\t\tRemove source caches for packages no longer installed." + puts " purge-logs\t\t\t\tRemove log files for packages no longer installed." + puts " verify-files [package]\t\tInstalled files are verified for given package." + puts " verify-symlinks [package]\t\tSymlinks verified for given package." + puts " verify-deps [package]\t\tDependency tree is verified for given package." + puts " verify-integrity [package]\t\tVerify integrity of installed files for given package." + puts " fix [package]\t\tGiven package is verified and fixed if needed." + puts + puts "maintenance:" + puts " build-location [host]\t\tSets global location (default: localhost) for retrieving cached package builds." + puts " package-repo [add|remove|list] [URI]" + puts " add - add package repository to list." + puts " remove - remove a package repository from list." + puts " list - display current repository list." end end @@ -94,253 +93,251 @@ end case ARGV[0] + + when "install", "-i" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Installing package : " + options['package'] + else + show.usage + exit + end -when "install", "-i" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Installing package : " + options['package'] - else - show.usage - exit - end + when "reinstall", "-ri" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Reinstalling package : " + options['package'] + else + show.usage + exit + end + when "remove", "-r" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Removing package : " + options['package'] + else + show.usage + exit + end -when "reinstall", "-ri" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Reinstalling package : " + options['package'] - else - show.usage - exit - end + when "downgrade", "-dg" + if ( ARGV.length == 3 ) + options['version'] = ARGV[1] + options['package'] = ARGV[2] + puts "Downgradinging package : " + options['package'] + " to version : " + options['version'] + else + show.usage + exit + end -when "remove", "-r" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Removing package : " + options['package'] - else - show.usage - exit - end - -when "downgrade", "-dg" - if ( ARGV.length == 3 ) - options['version'] = ARGV[1] - options['package'] = ARGV[2] - puts "Downgradinging package : " + options['package'] + " to version : " + options['version'] - else - show.usage - exit - end - -when "freeze", "-f" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Holdinging package : " + options['package'] + " at the current version." - else - show.usage - exit - end - -when "search", "-s" - if ( ARGV.length == 2 ) - options['searchString'] = ARGV[1] - puts "Searching package descriptions for : " + options['searchString'] + when "freeze", "-f" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Holdinging package : " + options['package'] + " at the current version." else show.usage exit end - - when "show-details" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Display details for package : " + options['package'] + + when "search", "-s" + if ( ARGV.length == 2 ) + options['searchString'] = ARGV[1] + puts "Searching package descriptions for : " + options['searchString'] else show.usage exit end - - when "show-build" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Display build log for package : " + options['package'] + + when "show-details" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Display details for package : " + options['package'] else show.usage exit end + + when "show-build" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Display build log for package : " + options['package'] + else + show.usage + exit + end - when "show-depends" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Display dependency tree for package : " + options['package'] + when "show-depends" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Display dependency tree for package : " + options['package'] else show.usage exit end - - when "show-files" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Display installed files from package : " + options['package'] + + when "show-files" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Display installed files from package : " + options['package'] else show.usage exit end - when "show-owner" - if ( ARGV.length == 2 ) - options['fileName'] = ARGV[1] - puts "Display owning package for file : " + options['fileName'] + when "show-owner" + if ( ARGV.length == 2 ) + options['fileName'] = ARGV[1] + puts "Display owning package for file : " + options['fileName'] else show.usage exit end + + when "show-installed" + puts "Display all installed packages." + + when "show-frozen" + puts "Display all packages frozen at current version." + + when "show-untracked" + puts "Display all files on system not tracked by AbTLinux." - when "show-installed" - puts "Display all installed packages." - - when "show-frozen" - puts "Display all packages frozen at current version." - - when "show-untracked" - puts "Display all files on system not tracked by AbTLinux." - - when "show-journal" - puts "Display system log with AbTLinux activity." - - when "show-iqueue" - puts "Display contents of install queue." - - when "show-patches" - puts "Display currently available patches for installed package tree." - - when "show-updates" - puts "Display package listing with available update versions." - - when "html" - puts "Generate HTML page from installed packages:" - puts " (package name with hyperlink to package website and version installed)" - - when "news", "-n" - puts "Display AbTLinux website newsfeed." - -when "download", "-d" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Retrieve sources for package : " + options['package'] - else - show.usage - exit - end + when "show-journal" + puts "Display system log with AbTLinux activity." -when "update", "-u" - if ( ARGV.length == 2 ) - options['updateItem'] = ARGV[1] - puts "Updating this item (either package or a package tree : " + options['updateItem'] + when "show-iqueue" + puts "Display contents of install queue." + + when "show-patches" + puts "Display currently available patches for installed package tree." + + when "show-updates" + puts "Display package listing with available update versions." + + when "html" + puts "Generate HTML page from installed packages:" + puts " (package name with hyperlink to package website and version installed)" + + when "news", "-n" + puts "Display AbTLinux website newsfeed." + + when "download", "-d" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Retrieve sources for package : " + options['package'] else show.usage exit end - - when "purge-src" - puts "Remove source caches for packages no longer installed." - - when "purge-logs" - puts "Remove log files for packages no longer installed." - - when "verify-files" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Installed files verified for package : " + options['package'] + + when "update", "-u" + if ( ARGV.length == 2 ) + options['updateItem'] = ARGV[1] + puts "Updating this item (either package or a package tree : " + options['updateItem'] else show.usage exit end - when "verify-symlinks" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Symlinks verified for package : " + options['package'] + when "purge-src" + puts "Remove source caches for packages no longer installed." + + when "purge-logs" + puts "Remove log files for packages no longer installed." + + when "verify-files" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Installed files verified for package : " + options['package'] else show.usage exit end - - when "verify-deps" - if ( ARGV.length == 2 ) + + when "verify-symlinks" + if ( ARGV.length == 2 ) options['package'] = ARGV[1] puts "Symlinks verified for package : " + options['package'] else show.usage exit end - -when "verify-integrity" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Verifiy the integrity of installed files for package : " + options['package'] + + when "verify-deps" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Symlinks verified for package : " + options['package'] else show.usage exit end - - when "fix" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Package : " + options['package'] + " is verified and checked if needed." + + when "verify-integrity" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Verifiy the integrity of installed files for package : " + options['package'] else show.usage exit end - when "build-location" - if ( ARGV.length == 2 ) - options['buildHost'] = ARGV[1] - puts "Sets global location for retrieving cached build packages to : " + options['buildHost'] + when "fix" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Package : " + options['package'] + " is verified and checked if needed." else show.usage exit end + + when "build-location" + if ( ARGV.length == 2 ) + options['buildHost'] = ARGV[1] + puts "Sets global location for retrieving cached build packages to : " + options['buildHost'] + else + show.usage + exit + end - when "package-repo" - - # sort out that we have enough args. - case ARGV.length - - # add or remove called. - when 3 - options['repoAction'] = ARGV[1] - options['repoUri'] = ARGV[2] - - # list called. - when 2 - if ( ARGV[1] == "list" ) - options['repoAction'] = ARGV[1] - else - show.usage - exit - end - - else - show.usage - exit - end + when "package-repo" + # sort out that we have enough args. + case ARGV.length - # hook location based on action. - case options['repoAction'] + # add or remove called. + when 3 + options['repoAction'] = ARGV[1] + options['repoUri'] = ARGV[2] + + # list called. + when 2 + if ( ARGV[1] == "list" ) + options['repoAction'] = ARGV[1] + else + show.usage + exit + end + + else + show.usage + exit + end # case ARGV.length. - when "add" - puts "Adding package repository : " + options['repoUri'] + # hook location based on action. + case options['repoAction'] + + when "add" + puts "Adding package repository : " + options['repoUri'] + + when "remove" + puts "Remove package repository : " + options['repoUri'] - when "remove" - puts "Remove package repository : " + options['repoUri'] - - when "list" - puts "Display listing of package repositories." + when "list" + puts "Display listing of package repositories." - else - show.usage - exit - end -end # case \ No newline at end of file + else + show.usage + exit + end # case repoAction. +end # case ARGV[0]. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-11-13 22:38:16
|
Revision: 161 http://svn.sourceforge.net/abtlinux/?rev=161&view=rev Author: eschabell Date: 2006-11-12 23:59:57 -0800 (Sun, 12 Nov 2006) Log Message: ----------- Renamed package to fortune as it is really named. Sorted out adding a class search path to get the requires working and put in the month to the creation information. Modified Paths: -------------- src/trunk/abt.rb Added Paths: ----------- src/trunk/packages/fortune.rb Removed Paths: ------------- src/trunk/packages/AbtFortune.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-11-12 20:26:08 UTC (rev 160) +++ src/trunk/abt.rb 2006-11-13 07:59:57 UTC (rev 161) @@ -1,4 +1,4 @@ -#!/usr/bin/ruby -w +#!/usr/bin/ruby -wI/home/erics/workspace/abtapi/packages ## # abt.rb @@ -6,7 +6,7 @@ # The central package manager script to run all ABout Time Linux tasks. # # Created by Eric D. Schabell <er...@ab...> -# Copyright 2006, GPL. +# Copyright July 2006, GPL. # # This file is part of AbTLinux. # @@ -155,8 +155,8 @@ puts "Display details for package : " + options['package'] # TODO: make this work! - #require "AbtFortune" - #package = AbtFortune.new + #require options['package'] + #package = Fortune.new #puts package.details #exit else Deleted: src/trunk/packages/AbtFortune.rb =================================================================== --- src/trunk/packages/AbtFortune.rb 2006-11-12 20:26:08 UTC (rev 160) +++ src/trunk/packages/AbtFortune.rb 2006-11-13 07:59:57 UTC (rev 161) @@ -1,72 +0,0 @@ -#!/usr/bin/ruby -w - -## -# AbtFortune.rb -# -# AbtFortune package. -# -# Created by Eric D. Schabell <er...@ab...> -# Copyright 2006, GPL. -# -# This file is part of AbTLinux. -# -# AbTLinux is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# AbTLinux is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# AbTLinux; if not, write to the Free Software Foundation, Inc., 51 Franklin -# St, Fifth Floor, Boston, MA 02110-1301 USA -## - -class AbtFortune < AbtPackage - -protected - -private - - @name = "Fortune" - @version = "mod-9708" - @srcDir = "#{@name.downcase}-#{@version}" - - @packageData = { - 'name' => @name, - 'execName' => @name.downcase, - 'version' => @version, - 'srcDir' => @srcDir, - 'homepage' => "http://www.ibiblio.org/pub/Linux/games/amusements/#{@name.downcase}/", - 'srcUrl' => "http://www.ibiblio.org/pub/Linux/games/amusements/#{@srcDir}.tar.gz", - 'dependsOn' => "", - 'reliesOn' => "", - 'optionalDO' => "", - 'optionalRO' => "", - 'hashCheck' => "sha512:80c5b71d84eeb3092b2dfe483f0dad8ed42e2efeaa1f8791c26fb2ae80fbd7775777ac5252b1d8270e2e176ad14ce98940bee6d8e71fdbb9ac3323dc7188c4d0", - 'patches' => "http://patches.abtlinux.org/#{@srcDir}-patches-1.tar.gz", - 'patcheshashCheck' => "", - 'mirrorPath' => "http://mirror.abtlinux.org/#{@srcDir}.tar.gz", - 'license' => "GPL", - 'description' => "Prints a random, hopefully interesting, adage." - } - - -public - - ## - # Constructor for an AbtPackage, requires all the packge details. - # - # <b>PARAM</b> <i>Hash</i> - hash containing all pacakge data. - # - ## - def initialize() - - super( @packageData ) - - end - -end Copied: src/trunk/packages/fortune.rb (from rev 160, src/trunk/packages/AbtFortune.rb) =================================================================== --- src/trunk/packages/fortune.rb (rev 0) +++ src/trunk/packages/fortune.rb 2006-11-13 07:59:57 UTC (rev 161) @@ -0,0 +1,73 @@ +#!/usr/bin/ruby -w + +require "AbtPackage" +## +# fortune.rb +# +# AbtFortune package. +# +# Created by Eric D. Schabell <er...@ab...> +# Copyright 2006, GPL. +# +# This file is part of AbTLinux. +# +# AbTLinux is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# AbTLinux is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# AbTLinux; if not, write to the Free Software Foundation, Inc., 51 Franklin +# St, Fifth Floor, Boston, MA 02110-1301 USA +## + +class Fortune < AbtPackage + +protected + +private + + @name = "Fortune" + @version = "mod-9708" + @srcDir = "#{@name.downcase}-#{@version}" + + @packageData = { + 'name' => @name, + 'execName' => @name.downcase, + 'version' => @version, + 'srcDir' => @srcDir, + 'homepage' => "http://www.ibiblio.org/pub/Linux/games/amusements/#{@name.downcase}/", + 'srcUrl' => "http://www.ibiblio.org/pub/Linux/games/amusements/#{@srcDir}.tar.gz", + 'dependsOn' => "", + 'reliesOn' => "", + 'optionalDO' => "", + 'optionalRO' => "", + 'hashCheck' => "sha512:80c5b71d84eeb3092b2dfe483f0dad8ed42e2efeaa1f8791c26fb2ae80fbd7775777ac5252b1d8270e2e176ad14ce98940bee6d8e71fdbb9ac3323dc7188c4d0", + 'patches' => "http://patches.abtlinux.org/#{@srcDir}-patches-1.tar.gz", + 'patcheshashCheck' => "", + 'mirrorPath' => "http://mirror.abtlinux.org/#{@srcDir}.tar.gz", + 'license' => "GPL", + 'description' => "Prints a random, hopefully interesting, adage." + } + + +public + + ## + # Constructor for an AbtPackage, requires all the packge details. + # + # <b>PARAM</b> <i>Hash</i> - hash containing all pacakge data. + # + ## + def initialize() + + super( @packageData ) + + end + +end This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-11-13 21:48:48
|
Revision: 162 http://svn.sourceforge.net/abtlinux/?rev=162&view=rev Author: eschabell Date: 2006-11-13 00:31:15 -0800 (Mon, 13 Nov 2006) Log Message: ----------- Implemented show-details for our test package fortune. I am getting a trailing 'nil' in the output, not sure why yet but it works. Modified Paths: -------------- src/trunk/AbtPackage.rb src/trunk/abt.rb src/trunk/packages/fortune.rb Modified: src/trunk/AbtPackage.rb =================================================================== --- src/trunk/AbtPackage.rb 2006-11-13 07:59:57 UTC (rev 161) +++ src/trunk/AbtPackage.rb 2006-11-13 08:31:15 UTC (rev 162) @@ -117,26 +117,24 @@ # <b>RETURNS:</b> <i>hash</i> - Contains all AbtPackage attributes (constants). ## def details - - return { - 'name' => @name, - 'execName' => @execName, - 'version' => @version, - 'srcDir' => @srcDir, - 'homepage' => @homepage, - 'srcUrl' => @srcUrl, - 'dependsOn' => @dependsOn, - 'reliesOn' => @reliesOn, - 'optionalDO' => @optionalDO, - 'optionalRO' => @optionalRO, - 'hashCheck' => @hashCheck, - 'patches' => @patches, - 'patchesHashCheck' => @patchesHashCheck, - 'mirrorPath' => @mirrorPath, - 'license' => @license, - 'description' => @description - } - + puts "**************************************" + puts "Package name : " + @name + puts "Executable : " + @execName + puts "Version : " + @version + puts "Source directory : " + @srcDir + puts "Homepage : " + @homepage + puts "Source location : " + @srcUrl + puts "Depends On : " + @dependsOn + puts "Relies On : " + @reliesOn + puts "Optional DO : " + @optionalDO + puts "Optional RO : " + @optionalRO + puts "Security hash : " + @hashCheck + puts "Patches : " + @patches + puts "Patches hash : " + @patchesHashCheck + puts "Mirror : " + @mirrorPath + puts "License : " + @license + puts "Description : " + @description + puts "**************************************" end ## @@ -193,4 +191,4 @@ def post end -end \ No newline at end of file +end Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-11-13 07:59:57 UTC (rev 161) +++ src/trunk/abt.rb 2006-11-13 08:31:15 UTC (rev 162) @@ -1,4 +1,4 @@ -#!/usr/bin/ruby -wI/home/erics/workspace/abtapi/packages +#!/usr/bin/ruby -I/home/erics/workspace/abtapi/packages ## # abt.rb @@ -152,13 +152,10 @@ when "show-details" if ( ARGV.length == 2 ) options['package'] = ARGV[1] - puts "Display details for package : " + options['package'] - # TODO: make this work! - #require options['package'] - #package = Fortune.new - #puts package.details - #exit + require options['package'] + package = Fortune.new + puts package.details else show.usage exit Modified: src/trunk/packages/fortune.rb =================================================================== --- src/trunk/packages/fortune.rb 2006-11-13 07:59:57 UTC (rev 161) +++ src/trunk/packages/fortune.rb 2006-11-13 08:31:15 UTC (rev 162) @@ -1,6 +1,7 @@ #!/usr/bin/ruby -w require "AbtPackage" + ## # fortune.rb # @@ -32,25 +33,25 @@ private - @name = "Fortune" - @version = "mod-9708" - @srcDir = "#{@name.downcase}-#{@version}" + $name = "Fortune" + $version = "mod-9708" + $srcDir = "#{$name.downcase}-#{$version}" - @packageData = { - 'name' => @name, - 'execName' => @name.downcase, - 'version' => @version, - 'srcDir' => @srcDir, - 'homepage' => "http://www.ibiblio.org/pub/Linux/games/amusements/#{@name.downcase}/", - 'srcUrl' => "http://www.ibiblio.org/pub/Linux/games/amusements/#{@srcDir}.tar.gz", + $packageData = { + 'name' => $name, + 'execName' => $name.downcase, + 'version' => $version, + 'srcDir' => $srcDir, + 'homepage' => "http://www.ibiblio.org/pub/Linux/games/amusements/#{$name.downcase}/", + 'srcUrl' => "http://www.ibiblio.org/pub/Linux/games/amusements/#{$srcDir}.tar.gz", 'dependsOn' => "", 'reliesOn' => "", 'optionalDO' => "", 'optionalRO' => "", - 'hashCheck' => "sha512:80c5b71d84eeb3092b2dfe483f0dad8ed42e2efeaa1f8791c26fb2ae80fbd7775777ac5252b1d8270e2e176ad14ce98940bee6d8e71fdbb9ac3323dc7188c4d0", - 'patches' => "http://patches.abtlinux.org/#{@srcDir}-patches-1.tar.gz", - 'patcheshashCheck' => "", - 'mirrorPath' => "http://mirror.abtlinux.org/#{@srcDir}.tar.gz", + 'hashCheck' => "sha512:80c5b71d84eeb3092b2dfe483f0dad8ed42e2efeaa1f8791c2", + 'patches' => "http://patches.abtlinux.org/#{$srcDir}-patches-1.tar.gz", + 'patchesHashCheck' => "", + 'mirrorPath' => "http://mirror.abtlinux.org/#{$srcDir}.tar.gz", 'license' => "GPL", 'description' => "Prints a random, hopefully interesting, adage." } @@ -65,9 +66,6 @@ # ## def initialize() - - super( @packageData ) - + super( $packageData ) end - end This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-11-13 21:46:37
|
Revision: 163 http://svn.sourceforge.net/abtlinux/?rev=163&view=rev Author: eschabell Date: 2006-11-13 13:46:06 -0800 (Mon, 13 Nov 2006) Log Message: ----------- Now checking for valid package (FileTest.exists?) name for better error handling. Adjusted usage to be more dynamic (only report for section being used) to shorten usage message where possible. Modified Paths: -------------- src/trunk/abt.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-11-13 08:31:15 UTC (rev 162) +++ src/trunk/abt.rb 2006-11-13 21:46:06 UTC (rev 163) @@ -31,16 +31,52 @@ class AbtUsage - def usage + $PACKAGE_PATH = "./packages/" + + def usage( section ) puts "Usage: abt.rb [options]\n\n" - puts "packages:" + + case section + + when "packages" + usagePackages + + when "queries" + usageQueries + + when "generation" + usageGeneration + + when "downloads" + usageDownloads + + when "fix" + usageFix + + when "maintenance" + usageMaintenance + + else + usagePackages + usageQueries + usageGeneration + usageDownloads + usageFix + usageMaintenance + end + end + + def usagePackages + puts "\npackages:" puts " -i, install [package]\t\tInstall given package." puts " -ri, reinstall [package]\t\tReinstall given package." puts " -r, remove [package]\t\tRemove given package." puts " -dg, downgrade [version] [package]\tDowngrade given package to given version." - puts " -f, freeze [package]\t\tHolds given package at current version, prevents upgrades." - puts - puts "queries:" + puts " -f, freeze [package]\t\tHolds given package at current version, prevents upgrades.\n" + end + + def usageQueries + puts "\nqueries:" puts " -s, search [string | regexp ]\tSearch package descriptions for given input." puts " show-details [package]\t\tShow give package details." puts " show-build [package]\t\tShow build log of given package." @@ -52,33 +88,41 @@ puts " show-untracked\t\t\tShow all files on system not tracked by AbTLinux." puts " show-journal\t\t\t\tShow the system journal." puts " show-iqueue\t\t\t\tShow the contents of the install queue." - puts " show-patches\t\t\t\tShow the current available patches for installed package tree." - puts - puts "generation:" + puts " show-patches\t\t\t\tShow the current available patches for installed package tree.\n" + end + + def usageGeneration + puts "\ngeneration:" puts " show-updates\t\tShow a package listing with available update versions." puts " html\t\t\tGenerate HTML page from installed packages:" - puts " \t\t\t\t(package name with hyperlink to package website and version installed)" - puts - puts "downloads:" + puts " \t\t\t\t(package name with hyperlink to package website and version installed)\n" + end + + def usageDownloads + puts "\ndownloads:" puts " -d, download [package]\t\tRetrieve given package sources." puts " -u, update [package]|[tree]\tUpdate given package or tree from AbTLinux repository." - puts " -n, news\t\t\t\tDisplays newsfeed from AbTLinux website." - puts - puts "fix:" + puts " -n, news\t\t\t\tDisplays newsfeed from AbTLinux website.\n" + end + + def usageFix + puts "\nfix:" puts " purge-src\t\t\t\tRemove source caches for packages no longer installed." puts " purge-logs\t\t\t\tRemove log files for packages no longer installed." puts " verify-files [package]\t\tInstalled files are verified for given package." puts " verify-symlinks [package]\t\tSymlinks verified for given package." puts " verify-deps [package]\t\tDependency tree is verified for given package." puts " verify-integrity [package]\t\tVerify integrity of installed files for given package." - puts " fix [package]\t\tGiven package is verified and fixed if needed." - puts - puts "maintenance:" + puts " fix [package]\t\tGiven package is verified and fixed if needed.\n" + end + + def usageMaintenance + puts "\nmaintenance:" puts " build-location [host]\t\tSets global location (default: localhost) for retrieving cached package builds." puts " package-repo [add|remove|list] [URI]" puts " add - add package repository to list." puts " remove - remove a package repository from list." - puts " list - display current repository list." + puts " list - display current repository list.\n" end end @@ -89,7 +133,7 @@ show = AbtUsage.new(); if ( ARGV.length == 0 ) - show.usage + show.usage( "all" ) end case ARGV[0] @@ -99,7 +143,7 @@ options['package'] = ARGV[1] puts "Installing package : " + options['package'] else - show.usage + show.usage( "packages" ) exit end @@ -108,7 +152,7 @@ options['package'] = ARGV[1] puts "Reinstalling package : " + options['package'] else - show.usage + show.usage( "packages" ) exit end @@ -117,7 +161,7 @@ options['package'] = ARGV[1] puts "Removing package : " + options['package'] else - show.usage + show.usage( "packages" ) exit end @@ -127,7 +171,7 @@ options['package'] = ARGV[2] puts "Downgradinging package : " + options['package'] + " to version : " + options['version'] else - show.usage + show.usage( "packages" ) exit end @@ -136,7 +180,7 @@ options['package'] = ARGV[1] puts "Holdinging package : " + options['package'] + " at the current version." else - show.usage + show.usage( "packages" ) exit end @@ -145,19 +189,19 @@ options['searchString'] = ARGV[1] puts "Searching package descriptions for : " + options['searchString'] else - show.usage + show.usage( "queries" ) exit end when "show-details" - if ( ARGV.length == 2 ) + if ( ARGV.length == 2 && FileTest.exist?( $PACKAGE_PATH + ARGV[1] + ".rb" ) ) options['package'] = ARGV[1] require options['package'] package = Fortune.new puts package.details else - show.usage + show.usage( "queries" ) exit end @@ -166,7 +210,7 @@ options['package'] = ARGV[1] puts "Display build log for package : " + options['package'] else - show.usage + show.usage( "queries" ) exit end @@ -176,7 +220,7 @@ options['package'] = ARGV[1] puts "Display dependency tree for package : " + options['package'] else - show.usage + show.usage( "queries" ) exit end @@ -185,7 +229,7 @@ options['package'] = ARGV[1] puts "Display installed files from package : " + options['package'] else - show.usage + show.usage( "queries" ) exit end @@ -194,44 +238,53 @@ options['fileName'] = ARGV[1] puts "Display owning package for file : " + options['fileName'] else - show.usage + show.usage( "queries" ) exit end when "show-installed" puts "Display all installed packages." + show.usage( "queries" ) when "show-frozen" puts "Display all packages frozen at current version." + show.usage( "queries" ) when "show-untracked" puts "Display all files on system not tracked by AbTLinux." + show.usage( "queries" ) when "show-journal" puts "Display system log with AbTLinux activity." + show.usage( "queries" ) when "show-iqueue" puts "Display contents of install queue." + show.usage( "queries" ) when "show-patches" puts "Display currently available patches for installed package tree." + show.usage( "queries" ) when "show-updates" puts "Display package listing with available update versions." + show.usage( "generation" ) when "html" puts "Generate HTML page from installed packages:" puts " (package name with hyperlink to package website and version installed)" + show.usage( "generation" ) when "news", "-n" puts "Display AbTLinux website newsfeed." + show.usage( "downloads" ) when "download", "-d" if ( ARGV.length == 2 ) options['package'] = ARGV[1] puts "Retrieve sources for package : " + options['package'] else - show.usage + show.usage( "downloads" ) exit end @@ -240,22 +293,24 @@ options['updateItem'] = ARGV[1] puts "Updating this item (either package or a package tree : " + options['updateItem'] else - show.usage + show.usage( "downloads" ) exit end when "purge-src" puts "Remove source caches for packages no longer installed." + show.usage( "fix" ) when "purge-logs" puts "Remove log files for packages no longer installed." + show.usage( "fix" ) when "verify-files" if ( ARGV.length == 2 ) options['package'] = ARGV[1] puts "Installed files verified for package : " + options['package'] else - show.usage + show.usage( "fix" ) exit end @@ -264,7 +319,7 @@ options['package'] = ARGV[1] puts "Symlinks verified for package : " + options['package'] else - show.usage + show.usage( "fix" ) exit end @@ -273,7 +328,7 @@ options['package'] = ARGV[1] puts "Symlinks verified for package : " + options['package'] else - show.usage + show.usage( "fix" ) exit end @@ -282,7 +337,7 @@ options['package'] = ARGV[1] puts "Verifiy the integrity of installed files for package : " + options['package'] else - show.usage + show.usage( "fix" ) exit end @@ -291,7 +346,7 @@ options['package'] = ARGV[1] puts "Package : " + options['package'] + " is verified and checked if needed." else - show.usage + show.usage( "fix" ) exit end @@ -300,7 +355,7 @@ options['buildHost'] = ARGV[1] puts "Sets global location for retrieving cached build packages to : " + options['buildHost'] else - show.usage + show.usage( "maintenance" ) exit end @@ -318,12 +373,12 @@ if ( ARGV[1] == "list" ) options['repoAction'] = ARGV[1] else - show.usage + show.usage( "maintenance" ) exit end else - show.usage + show.usage( "maintenance" ) exit end # case ARGV.length. @@ -340,7 +395,7 @@ puts "Display listing of package repositories." else - show.usage + show.usage( "maintenance" ) exit end # case repoAction. end # case ARGV[0]. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-18 10:07:33
|
Revision: 158 http://svn.sourceforge.net/abtlinux/?rev=158&view=rev Author: eschabell Date: 2006-10-18 03:07:28 -0700 (Wed, 18 Oct 2006) Log Message: ----------- Placeholder for this group. Added Paths: ----------- docs/configManager/trunk/requirements/RuDev-group/README.txt Added: docs/configManager/trunk/requirements/RuDev-group/README.txt =================================================================== --- docs/configManager/trunk/requirements/RuDev-group/README.txt (rev 0) +++ docs/configManager/trunk/requirements/RuDev-group/README.txt 2006-10-18 10:07:28 UTC (rev 158) @@ -0,0 +1 @@ +Remove this with 'svn remove' after checkout. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-18 10:06:09
|
Revision: 157 http://svn.sourceforge.net/abtlinux/?rev=157&view=rev Author: eschabell Date: 2006-10-18 03:06:04 -0700 (Wed, 18 Oct 2006) Log Message: ----------- Added requirements directory with first group requesting svn space for their project. Added Paths: ----------- docs/configManager/trunk/requirements/ docs/configManager/trunk/requirements/RuDev-group/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-15 12:02:33
|
Revision: 156 http://svn.sourceforge.net/abtlinux/?rev=156&view=rev Author: eschabell Date: 2006-10-15 05:02:27 -0700 (Sun, 15 Oct 2006) Log Message: ----------- Added the last scenarios options. Overview of available options: Usage: abt.rb [options] packages: -i, install [package] Install given package. -ri, reinstall [package] Reinstall given package. -r, remove [package] Remove given package. -dg, downgrade [version] [package] Downgrade given package to given version. -f, freeze [package] Holds given package at current version, prevents upgrades. queries: -s, search [string | regexp ] Search package descriptions for given input. show-details [package] Show give package details. show-build [package] Show build log of given package. show-depends [package] Show the dependency tree of given package. show-files [package] Show all installed files from given package. show-owner [file] Show the package owning given file. show-installed Show list of all installed packages. show-frozen Show list of all frozen packages. show-untracked Show all files on system not tracked by AbTLinux. show-journal Show the system journal. show-iqueue Show the contents of the install queue. show-patches Show the current available patches for installed package tree. generation: show-updates Show a package listing with available update versions. html Generate HTML page from installed packages: (package name with hyperlink to package website and version installed) downloads: -d, download [package] Retrieve given package sources. -u, update [package]|[tree] Update given package or tree from AbTLinux repository. -n, news Displays newsfeed from AbTLinux website. fix: purge-src Remove source caches for packages no longer installed. purge-logs Remove log files for packages no longer installed. verify-files [package] Installed files are verified for given package. verify-symlinks [package] Symlinks verified for given package. verify-deps [package] Dependency tree is verified for given package. verify-integrity [package] Verify integrity of installed files for given package. fix [package] Given package is verified and fixed if needed. maintenance: build-location [host] Sets global location (default: localhost) for retrieving cached package builds. package-repo [add|remove|list] [URI] add - add package repository to list. remove - remove a package repository from list. list - display current repository list. Modified Paths: -------------- src/trunk/abt.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-10-14 17:50:31 UTC (rev 155) +++ src/trunk/abt.rb 2006-10-15 12:02:27 UTC (rev 156) @@ -73,90 +73,97 @@ puts " verify-deps [package]\t\tDependency tree is verified for given package." puts " verify-integrity [package]\t\tVerify integrity of installed files for given package." puts " fix [package]\t\tGiven package is verified and fixed if needed." + puts + puts "maintenance:" + puts " build-location [host]\t\tSets global location (default: localhost) for retrieving cached package builds." + puts " package-repo [add|remove|list] [URI]" + puts " add - add package repository to list." + puts " remove - remove a package repository from list." + puts " list - display current repository list." end end - ## - # Parsing our options. - ## - options = Hash.new() - show = AbtUsage.new(); +## +# Parsing our options. +## +options = Hash.new() +show = AbtUsage.new(); + +if ( ARGV.length == 0 ) + show.usage +end + +case ARGV[0] - if ( ARGV.length == 0 ) +when "install", "-i" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Installing package : " + options['package'] + else show.usage + exit end - case ARGV[0] - - when "install", "-i" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Installing package : " + options['package'] + +when "reinstall", "-ri" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Reinstalling package : " + options['package'] + else + show.usage + exit + end + +when "remove", "-r" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Removing package : " + options['package'] + else + show.usage + exit + end + +when "downgrade", "-dg" + if ( ARGV.length == 3 ) + options['version'] = ARGV[1] + options['package'] = ARGV[2] + puts "Downgradinging package : " + options['package'] + " to version : " + options['version'] + else + show.usage + exit + end + +when "freeze", "-f" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Holdinging package : " + options['package'] + " at the current version." + else + show.usage + exit + end + +when "search", "-s" + if ( ARGV.length == 2 ) + options['searchString'] = ARGV[1] + puts "Searching package descriptions for : " + options['searchString'] else show.usage exit end - - - when "reinstall", "-ri" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Reinstalling package : " + options['package'] - else - show.usage - exit - end - - when "remove", "-r" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Removing package : " + options['package'] - else - show.usage - exit - end - - when "downgrade", "-dg" - if ( ARGV.length == 3 ) - options['version'] = ARGV[1] - options['package'] = ARGV[2] - puts "Downgradinging package : " + options['package'] + " to version : " + options['version'] - else - show.usage - exit - end - - when "freeze", "-f" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Holdinging package : " + options['package'] + " at the current version." - else - show.usage - exit - end - - when "search", "-s" - if ( ARGV.length == 2 ) - options['searchString'] = ARGV[1] - puts "Searching package descriptions for : " + options['searchString'] - else - show.usage - exit - end when "show-details" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Display details for package : " + options['package'] + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Display details for package : " + options['package'] else show.usage exit end when "show-build" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Display build log for package : " + options['package'] + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Display build log for package : " + options['package'] else show.usage exit @@ -164,134 +171,176 @@ when "show-depends" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Display dependency tree for package : " + options['package'] + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Display dependency tree for package : " + options['package'] else show.usage exit end when "show-files" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Display installed files from package : " + options['package'] + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Display installed files from package : " + options['package'] else show.usage exit end when "show-owner" - if ( ARGV.length == 2 ) - options['fileName'] = ARGV[1] - puts "Display owning package for file : " + options['fileName'] + if ( ARGV.length == 2 ) + options['fileName'] = ARGV[1] + puts "Display owning package for file : " + options['fileName'] else show.usage exit end when "show-installed" - puts "Display all installed packages." + puts "Display all installed packages." when "show-frozen" - puts "Display all packages frozen at current version." + puts "Display all packages frozen at current version." when "show-untracked" - puts "Display all files on system not tracked by AbTLinux." + puts "Display all files on system not tracked by AbTLinux." when "show-journal" - puts "Display system log with AbTLinux activity." + puts "Display system log with AbTLinux activity." when "show-iqueue" - puts "Display contents of install queue." + puts "Display contents of install queue." when "show-patches" - puts "Display currently available patches for installed package tree." + puts "Display currently available patches for installed package tree." when "show-updates" - puts "Display package listing with available update versions." + puts "Display package listing with available update versions." when "html" - puts "Generate HTML page from installed packages:" - puts " (package name with hyperlink to package website and version installed)" + puts "Generate HTML page from installed packages:" + puts " (package name with hyperlink to package website and version installed)" when "news", "-n" - puts "Display AbTLinux website newsfeed." - - when "download", "-d" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Retrieve sources for package : " + options['package'] + puts "Display AbTLinux website newsfeed." + +when "download", "-d" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Retrieve sources for package : " + options['package'] + else + show.usage + exit + end + +when "update", "-u" + if ( ARGV.length == 2 ) + options['updateItem'] = ARGV[1] + puts "Updating this item (either package or a package tree : " + options['updateItem'] else show.usage exit end - - when "update", "-u" - if ( ARGV.length == 2 ) - options['updateItem'] = ARGV[1] - puts "Updating this item (either package or a package tree : " + options['updateItem'] - else - show.usage - exit - end when "purge-src" - puts "Remove source caches for packages no longer installed." + puts "Remove source caches for packages no longer installed." when "purge-logs" - puts "Remove log files for packages no longer installed." + puts "Remove log files for packages no longer installed." when "verify-files" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Installed files verified for package : " + options['package'] + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Installed files verified for package : " + options['package'] else show.usage exit end when "verify-symlinks" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Symlinks verified for package : " + options['package'] + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Symlinks verified for package : " + options['package'] else show.usage exit end when "verify-deps" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Symlinks verified for package : " + options['package'] + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Symlinks verified for package : " + options['package'] + else + show.usage + exit + end + +when "verify-integrity" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Verifiy the integrity of installed files for package : " + options['package'] else show.usage exit end - - when "verify-integrity" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Verifiy the integrity of installed files for package : " + options['package'] + + when "fix" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Package : " + options['package'] + " is verified and checked if needed." else show.usage exit end - when "fix" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - puts "Package : " + options['package'] + " is verified and checked if needed." + when "build-location" + if ( ARGV.length == 2 ) + options['buildHost'] = ARGV[1] + puts "Sets global location for retrieving cached build packages to : " + options['buildHost'] else show.usage exit end - end # case + + when "package-repo" + + # sort out that we have enough args. + case ARGV.length + + # add or remove called. + when 3 + options['repoAction'] = ARGV[1] + options['repoUri'] = ARGV[2] + + # list called. + when 2 + if ( ARGV[1] == "list" ) + options['repoAction'] = ARGV[1] + else + show.usage + exit + end + + else + show.usage + exit + end - #puts 'DEBUG: options are -' - #puts 'package => ' + options['package'] - #puts 'DEBUG: argv is -' - #puts ARGV[0] - #puts ARGV[1] - #puts 'DEBUG: number of args are -' - #puts ARGV.length \ No newline at end of file + # hook location based on action. + case options['repoAction'] + + when "add" + puts "Adding package repository : " + options['repoUri'] + + when "remove" + puts "Remove package repository : " + options['repoUri'] + + when "list" + puts "Display listing of package repositories." + + else + show.usage + exit + end +end # case \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-14 17:50:37
|
Revision: 155 http://svn.sourceforge.net/abtlinux/?rev=155&view=rev Author: eschabell Date: 2006-10-14 10:50:31 -0700 (Sat, 14 Oct 2006) Log Message: ----------- Added the scenarios from section 3.6 options. Overview of available options: Usage: abt.rb [options] packages: -i, install [package] Install given package. -ri, reinstall [package] Reinstall given package. -r, remove [package] Remove given package. -dg, downgrade [version] [package] Downgrade given package to given version. -f, freeze [package] Holds given package at current version, prevents upgrades. queries: -s, search [string | regexp ] Search package descriptions for given input. show-details [package] Show give package details. show-build [package] Show build log of given package. show-depends [package] Show the dependency tree of given package. show-files [package] Show all installed files from given package. show-owner [file] Show the package owning given file. show-installed Show list of all installed packages. show-frozen Show list of all frozen packages. show-untracked Show all files on system not tracked by AbTLinux. show-journal Show the system journal. show-iqueue Show the contents of the install queue. show-patches Show the current available patches for installed package tree. generation: show-updates Show a package listing with available update versions. html Generate HTML page from installed packages: (package name with hyperlink to package website and version installed) downloads: -d, download [package] Retrieve given package sources. -u, update [package]|[tree] Update given package or tree from AbTLinux repository. -n, news Displays newsfeed from AbTLinux website. fix: purge-src Remove source caches for packages no longer installed. purge-logs Remove log files for packages no longer installed. verify-files [package] Installed files are verified for given package. verify-symlinks [package] Symlinks verified for given package. verify-deps [package] Dependency tree is verified for given package. verify-integrity [package] Verify integrity of installed files for given package. fix [package] Given package is verified and fixed if needed. Modified Paths: -------------- src/trunk/abt.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-10-14 17:30:41 UTC (rev 154) +++ src/trunk/abt.rb 2006-10-14 17:50:31 UTC (rev 155) @@ -63,7 +63,16 @@ puts "downloads:" puts " -d, download [package]\t\tRetrieve given package sources." puts " -u, update [package]|[tree]\tUpdate given package or tree from AbTLinux repository." - puts " news\t\t\t\t\tDisplays newsfeed from AbTLinux website." + puts " -n, news\t\t\t\tDisplays newsfeed from AbTLinux website." + puts + puts "fix:" + puts " purge-src\t\t\t\tRemove source caches for packages no longer installed." + puts " purge-logs\t\t\t\tRemove log files for packages no longer installed." + puts " verify-files [package]\t\tInstalled files are verified for given package." + puts " verify-symlinks [package]\t\tSymlinks verified for given package." + puts " verify-deps [package]\t\tDependency tree is verified for given package." + puts " verify-integrity [package]\t\tVerify integrity of installed files for given package." + puts " fix [package]\t\tGiven package is verified and fixed if needed." end end @@ -202,13 +211,13 @@ when "show-updates" puts "Display package listing with available update versions." - when "news" - puts "Display AbTLinux website newsfeed." - when "html" puts "Generate HTML page from installed packages:" puts " (package name with hyperlink to package website and version installed)" - + + when "news", "-n" + puts "Display AbTLinux website newsfeed." + when "download", "-d" if ( ARGV.length == 2 ) options['package'] = ARGV[1] @@ -226,6 +235,57 @@ show.usage exit end + + when "purge-src" + puts "Remove source caches for packages no longer installed." + + when "purge-logs" + puts "Remove log files for packages no longer installed." + + when "verify-files" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Installed files verified for package : " + options['package'] + else + show.usage + exit + end + + when "verify-symlinks" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Symlinks verified for package : " + options['package'] + else + show.usage + exit + end + + when "verify-deps" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Symlinks verified for package : " + options['package'] + else + show.usage + exit + end + + when "verify-integrity" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Verifiy the integrity of installed files for package : " + options['package'] + else + show.usage + exit + end + + when "fix" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Package : " + options['package'] + " is verified and checked if needed." + else + show.usage + exit + end end # case #puts 'DEBUG: options are -' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-14 17:30:47
|
Revision: 154 http://svn.sourceforge.net/abtlinux/?rev=154&view=rev Author: eschabell Date: 2006-10-14 10:30:41 -0700 (Sat, 14 Oct 2006) Log Message: ----------- Added the scenarios from section 3.4 options. Overview of available options: Usage: abt.rb [options] packages: -i, install [package] Install given package. -ri, reinstall [package] Reinstall given package. -r, remove [package] Remove given package. -dg, downgrade [version] [package] Downgrade given package to given version. -f, freeze [package] Holds given package at current version, prevents upgrades. queries: -s, search [string | regexp ] Search package descriptions for given input. show-details [package] Show give package details. show-build [package] Show build log of given package. show-depends [package] Show the dependency tree of given package. show-files [package] Show all installed files from given package. show-owner [file] Show the package owning given file. show-installed Show list of all installed packages. show-frozen Show list of all frozen packages. show-untracked Show all files on system not tracked by AbTLinux. show-journal Show the system journal. show-iqueue Show the contents of the install queue. show-patches Show the current available patches for installed package tree. generation: show-updates Show a package listing with available update versions. html Generate HTML page from installed packages: (package name with hyperlink to package website and version installed) downloads: -d, download [package] Retrieve given package sources. -u, update [package]|[tree] Update given package or tree from AbTLinux repository. news Displays newsfeed from AbTLinux website. Modified Paths: -------------- src/trunk/abt.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-10-14 13:26:15 UTC (rev 153) +++ src/trunk/abt.rb 2006-10-14 17:30:41 UTC (rev 154) @@ -59,7 +59,11 @@ puts " show-updates\t\tShow a package listing with available update versions." puts " html\t\t\tGenerate HTML page from installed packages:" puts " \t\t\t\t(package name with hyperlink to package website and version installed)" - + puts + puts "downloads:" + puts " -d, download [package]\t\tRetrieve given package sources." + puts " -u, update [package]|[tree]\tUpdate given package or tree from AbTLinux repository." + puts " news\t\t\t\t\tDisplays newsfeed from AbTLinux website." end end @@ -198,9 +202,30 @@ when "show-updates" puts "Display package listing with available update versions." + when "news" + puts "Display AbTLinux website newsfeed." + when "html" puts "Generate HTML page from installed packages:" puts " (package name with hyperlink to package website and version installed)" + + when "download", "-d" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Retrieve sources for package : " + options['package'] + else + show.usage + exit + end + + when "update", "-u" + if ( ARGV.length == 2 ) + options['updateItem'] = ARGV[1] + puts "Updating this item (either package or a package tree : " + options['updateItem'] + else + show.usage + exit + end end # case #puts 'DEBUG: options are -' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-14 13:26:18
|
Revision: 153 http://svn.sourceforge.net/abtlinux/?rev=153&view=rev Author: eschabell Date: 2006-10-14 06:26:15 -0700 (Sat, 14 Oct 2006) Log Message: ----------- Added the scenarios from section 3.3 options. Overview of available options: Usage: abt.rb [options] packages: -i, install [package] Install given package. -ri, reinstall [package] Reinstall given package. -r, remove [package] Remove given package. -dg, downgrade [version] [package] Downgrade given package to given version. -f, freeze [package] Holds given package at current version, prevents upgrades. queries: -s, search [string | regexp ] Search package descriptions for given input. show-details [package] Show give package details. show-build [package] Show build log of given package. show-depends [package] Show the dependency tree of given package. show-files [package] Show all installed files from given package. show-owner [file] Show the package owning given file. show-installed Show list of all installed packages. show-frozen Show list of all frozen packages. show-untracked Show all files on system not tracked by AbTLinux. show-journal Show the system journal. show-iqueue Show the contents of the install queue. show-patches Show the current available patches for installed package tree. generation: show-updates Show a package listing with available update versions. html Generate HTML page from installed packages: (package name with hyperlink to package website and version installed) Modified Paths: -------------- src/trunk/abt.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-10-14 13:12:40 UTC (rev 152) +++ src/trunk/abt.rb 2006-10-14 13:26:15 UTC (rev 153) @@ -33,25 +33,33 @@ def usage puts "Usage: abt.rb [options]\n\n" + + puts "packages:" puts " -i, install [package]\t\tInstall given package." puts " -ri, reinstall [package]\t\tReinstall given package." puts " -r, remove [package]\t\tRemove given package." puts " -dg, downgrade [version] [package]\tDowngrade given package to given version." puts " -f, freeze [package]\t\tHolds given package at current version, prevents upgrades." + puts + puts "queries:" puts " -s, search [string | regexp ]\tSearch package descriptions for given input." - puts puts " show-details [package]\t\tShow give package details." puts " show-build [package]\t\tShow build log of given package." puts " show-depends [package]\t\tShow the dependency tree of given package." puts " show-files [package]\t\tShow all installed files from given package." puts " show-owner [file]\t\tShow the package owning given file." - puts puts " show-installed\t\t\tShow list of all installed packages." puts " show-frozen\t\t\t\tShow list of all frozen packages." puts " show-untracked\t\t\tShow all files on system not tracked by AbTLinux." puts " show-journal\t\t\t\tShow the system journal." puts " show-iqueue\t\t\t\tShow the contents of the install queue." puts " show-patches\t\t\t\tShow the current available patches for installed package tree." + puts + puts "generation:" + puts " show-updates\t\tShow a package listing with available update versions." + puts " html\t\t\tGenerate HTML page from installed packages:" + puts " \t\t\t\t(package name with hyperlink to package website and version installed)" + end end @@ -187,6 +195,12 @@ when "show-patches" puts "Display currently available patches for installed package tree." + when "show-updates" + puts "Display package listing with available update versions." + + when "html" + puts "Generate HTML page from installed packages:" + puts " (package name with hyperlink to package website and version installed)" end # case #puts 'DEBUG: options are -' This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-14 13:12:46
|
Revision: 152 http://svn.sourceforge.net/abtlinux/?rev=152&view=rev Author: eschabell Date: 2006-10-14 06:12:40 -0700 (Sat, 14 Oct 2006) Log Message: ----------- Added the scenarios from section 3.2 options. Overview of available options: Usage: abt.rb [options] -i, install [package] Install given package. -ri, reinstall [package] Reinstall given package. -r, remove [package] Remove given package. -dg, downgrade [version] [package] Downgrade given package to given version. -f, freeze [package] Holds given package at current version, prevents upgrades. -s, search [string | regexp ] Search package descriptions for given input. show-details [package] Show give package details. show-build [package] Show build log of given package. show-depends [package] Show the dependency tree of given package. show-files [package] Show all installed files from given package. show-owner [file] Show the package owning given file. show-installed Show list of all installed packages. show-frozen Show list of all frozen packages. show-untracked Show all files on system not tracked by AbTLinux. show-journal Show the system journal. show-iqueue Show the contents of the install queue. show-patches Show the current available patches for installed package tree. Modified Paths: -------------- src/trunk/abt.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-10-14 12:26:26 UTC (rev 151) +++ src/trunk/abt.rb 2006-10-14 13:12:40 UTC (rev 152) @@ -38,6 +38,20 @@ puts " -r, remove [package]\t\tRemove given package." puts " -dg, downgrade [version] [package]\tDowngrade given package to given version." puts " -f, freeze [package]\t\tHolds given package at current version, prevents upgrades." + puts " -s, search [string | regexp ]\tSearch package descriptions for given input." + puts + puts " show-details [package]\t\tShow give package details." + puts " show-build [package]\t\tShow build log of given package." + puts " show-depends [package]\t\tShow the dependency tree of given package." + puts " show-files [package]\t\tShow all installed files from given package." + puts " show-owner [file]\t\tShow the package owning given file." + puts + puts " show-installed\t\t\tShow list of all installed packages." + puts " show-frozen\t\t\t\tShow list of all frozen packages." + puts " show-untracked\t\t\tShow all files on system not tracked by AbTLinux." + puts " show-journal\t\t\t\tShow the system journal." + puts " show-iqueue\t\t\t\tShow the contents of the install queue." + puts " show-patches\t\t\t\tShow the current available patches for installed package tree." end end @@ -99,7 +113,81 @@ show.usage exit end - end + + when "search", "-s" + if ( ARGV.length == 2 ) + options['searchString'] = ARGV[1] + puts "Searching package descriptions for : " + options['searchString'] + else + show.usage + exit + end + + when "show-details" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Display details for package : " + options['package'] + else + show.usage + exit + end + + when "show-build" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Display build log for package : " + options['package'] + else + show.usage + exit + end + + + when "show-depends" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Display dependency tree for package : " + options['package'] + else + show.usage + exit + end + + when "show-files" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Display installed files from package : " + options['package'] + else + show.usage + exit + end + + when "show-owner" + if ( ARGV.length == 2 ) + options['fileName'] = ARGV[1] + puts "Display owning package for file : " + options['fileName'] + else + show.usage + exit + end + + when "show-installed" + puts "Display all installed packages." + + when "show-frozen" + puts "Display all packages frozen at current version." + + when "show-untracked" + puts "Display all files on system not tracked by AbTLinux." + + when "show-journal" + puts "Display system log with AbTLinux activity." + + when "show-iqueue" + puts "Display contents of install queue." + + when "show-patches" + puts "Display currently available patches for installed package tree." + + end # case #puts 'DEBUG: options are -' #puts 'package => ' + options['package'] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-14 12:26:32
|
Revision: 151 http://svn.sourceforge.net/abtlinux/?rev=151&view=rev Author: eschabell Date: 2006-10-14 05:26:26 -0700 (Sat, 14 Oct 2006) Log Message: ----------- Added fake message as placeholder for executing each command. Modified Paths: -------------- src/trunk/abt.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-10-13 20:19:11 UTC (rev 150) +++ src/trunk/abt.rb 2006-10-14 12:26:26 UTC (rev 151) @@ -30,74 +30,81 @@ require 'optparse' class AbtUsage - def usage - puts "Usage: abt.rb [options]\n\n" - puts " -i, install [package]\t\tInstall given package." - puts " -ri, reinstall [package]\t\tReinstall given package." - puts " -r, remove [package]\t\tRemove given package." - puts " -dg, downgrade [version] [package]\tDowngrade given package to given version." - puts " -f, freeze [package]\t\tHolds given package at current version, prevents upgrades." - end -end -## -# Parsing our options. -## -options = Hash.new() -show = AbtUsage.new(); - -if ( ARGV.length == 0 ) - show.usage + def usage + puts "Usage: abt.rb [options]\n\n" + puts " -i, install [package]\t\tInstall given package." + puts " -ri, reinstall [package]\t\tReinstall given package." + puts " -r, remove [package]\t\tRemove given package." + puts " -dg, downgrade [version] [package]\tDowngrade given package to given version." + puts " -f, freeze [package]\t\tHolds given package at current version, prevents upgrades." + end end -case ARGV[0] - - when "install", "-i" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - else - show.usage - exit - end - - - when "reinstall", "-ri" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - else - show.usage - exit - end - - when "remove", "-r" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - else - show.usage - exit - end - - when "downgrade", "-dg" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - else - show.usage - exit - end - - when "freeze", "-f" - if ( ARGV.length == 2 ) - options['package'] = ARGV[1] - else - show.usage - exit - end -end - -#puts 'DEBUG: options are -' -#puts 'package => ' + options['package'] -#puts 'DEBUG: argv is -' -#puts ARGV[0] -#puts ARGV[1] -#puts 'DEBUG: number of args are -' -#puts ARGV.length \ No newline at end of file + ## + # Parsing our options. + ## + options = Hash.new() + show = AbtUsage.new(); + + if ( ARGV.length == 0 ) + show.usage + end + + case ARGV[0] + + when "install", "-i" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Installing package : " + options['package'] + else + show.usage + exit + end + + + when "reinstall", "-ri" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Reinstalling package : " + options['package'] + else + show.usage + exit + end + + when "remove", "-r" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Removing package : " + options['package'] + else + show.usage + exit + end + + when "downgrade", "-dg" + if ( ARGV.length == 3 ) + options['version'] = ARGV[1] + options['package'] = ARGV[2] + puts "Downgradinging package : " + options['package'] + " to version : " + options['version'] + else + show.usage + exit + end + + when "freeze", "-f" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + puts "Holdinging package : " + options['package'] + " at the current version." + else + show.usage + exit + end + end + + #puts 'DEBUG: options are -' + #puts 'package => ' + options['package'] + #puts 'DEBUG: argv is -' + #puts ARGV[0] + #puts ARGV[1] + #puts 'DEBUG: number of args are -' + #puts ARGV.length \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-13 20:19:17
|
Revision: 150 http://svn.sourceforge.net/abtlinux/?rev=150&view=rev Author: eschabell Date: 2006-10-13 13:19:11 -0700 (Fri, 13 Oct 2006) Log Message: ----------- Given up on the optparse library, just doing it myself. The library cost more time to learn than writing it myself. Created class for showing usage of the abt.rb. Added the scenarios from section 3.1 options and have the options setting the 'package' elements in the hash with passed value. Modified Paths: -------------- src/trunk/abt.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-10-12 20:15:23 UTC (rev 149) +++ src/trunk/abt.rb 2006-10-13 20:19:11 UTC (rev 150) @@ -29,30 +29,75 @@ require 'AbtReportManager' require 'optparse' +class AbtUsage + def usage + puts "Usage: abt.rb [options]\n\n" + puts " -i, install [package]\t\tInstall given package." + puts " -ri, reinstall [package]\t\tReinstall given package." + puts " -r, remove [package]\t\tRemove given package." + puts " -dg, downgrade [version] [package]\tDowngrade given package to given version." + puts " -f, freeze [package]\t\tHolds given package at current version, prevents upgrades." + end +end + ## # Parsing our options. ## -options = {} -OptionParser.new do |opts| - opts.banner = "AbTLinux Package Mangaer Usage: abt.rb [options]\n\n" +options = Hash.new() +show = AbtUsage.new(); - opts.on_tail('-h', '--help', 'Print this help information'){puts opts; exit} - opts.on('-v', '--verbose', 'Run verbosely') { |v| puts 'Option to be verbose passed' } - opts.on('-q', '--quiet', 'Be very quiet') do - puts 'Be very, very quiet!' - end - - opts.parse - - if ARGV.length == 0 - puts opts - end - +if ( ARGV.length == 0 ) + show.usage end +case ARGV[0] + + when "install", "-i" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + else + show.usage + exit + end + + + when "reinstall", "-ri" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + else + show.usage + exit + end + + when "remove", "-r" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + else + show.usage + exit + end + + when "downgrade", "-dg" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + else + show.usage + exit + end + + when "freeze", "-f" + if ( ARGV.length == 2 ) + options['package'] = ARGV[1] + else + show.usage + exit + end +end -#puts options -#puts 'DEBUG: ' -#puts ARGV -#puts 'Number of args:' +#puts 'DEBUG: options are -' +#puts 'package => ' + options['package'] +#puts 'DEBUG: argv is -' +#puts ARGV[0] +#puts ARGV[1] +#puts 'DEBUG: number of args are -' #puts ARGV.length \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-12 20:15:27
|
Revision: 149 http://svn.sourceforge.net/abtlinux/?rev=149&view=rev Author: eschabell Date: 2006-10-12 13:15:23 -0700 (Thu, 12 Oct 2006) Log Message: ----------- Played a bit more with how this optparse lib works. Small cosmetic changes made, nothing exciting. Modified Paths: -------------- src/trunk/abt.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-10-12 19:03:02 UTC (rev 148) +++ src/trunk/abt.rb 2006-10-12 20:15:23 UTC (rev 149) @@ -24,21 +24,35 @@ # AbTLinux; if not, write to the Free Software Foundation, Inc., 51 Franklin # St, Fifth Floor, Boston, MA 02110-1301 USA ## -require "AbtPackageManager" -require "AbtLogManager" -require "AbtReportManager" +require 'AbtPackageManager' +require 'AbtLogManager' +require 'AbtReportManager' require 'optparse' ## # Parsing our options. ## options = {} -ARGV.options do |options| - options.on_tail('-h', '--help', 'Print this help information'){puts options; exit} - options.on('-q', '--quiet', 'be verry quiet') do - puts "OK, I'm being very, very, very quiet... can't you tell?" +OptionParser.new do |opts| + opts.banner = "AbTLinux Package Mangaer Usage: abt.rb [options]\n\n" + + opts.on_tail('-h', '--help', 'Print this help information'){puts opts; exit} + opts.on('-v', '--verbose', 'Run verbosely') { |v| puts 'Option to be verbose passed' } + opts.on('-q', '--quiet', 'Be very quiet') do + puts 'Be very, very quiet!' end - options.on('-v', '--verbose', 'Run verbosely'){|v| puts "Option to be verbose passed"} - - options.parse! -end \ No newline at end of file + + opts.parse + + if ARGV.length == 0 + puts opts + end + +end + + +#puts options +#puts 'DEBUG: ' +#puts ARGV +#puts 'Number of args:' +#puts ARGV.length \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-12 19:03:15
|
Revision: 148 http://svn.sourceforge.net/abtlinux/?rev=148&view=rev Author: eschabell Date: 2006-10-12 12:03:02 -0700 (Thu, 12 Oct 2006) Log Message: ----------- Moved back to rb file, keeps the editors happy and working with ruby. Added Paths: ----------- src/trunk/abt.rb Removed Paths: ------------- src/trunk/abt Deleted: src/trunk/abt =================================================================== --- src/trunk/abt 2006-10-08 12:32:19 UTC (rev 147) +++ src/trunk/abt 2006-10-12 19:03:02 UTC (rev 148) @@ -1,44 +0,0 @@ -#!/usr/bin/ruby -w - -## -# abt.rb -# -# The central package manager script to run all ABout Time Linux tasks. -# -# Created by Eric D. Schabell <er...@ab...> -# Copyright 2006, GPL. -# -# This file is part of AbTLinux. -# -# AbTLinux is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# AbTLinux is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# AbTLinux; if not, write to the Free Software Foundation, Inc., 51 Franklin -# St, Fifth Floor, Boston, MA 02110-1301 USA -## -require "AbtPackageManager" -require "AbtLogManager" -require "AbtReportManager" -require 'optparse' - -## -# Parsing our options. -## -options = {} -ARGV.options do |options| - options.on_tail('-h', '--help', 'Print this help information'){puts options; exit} - options.on('-q', '--quiet', 'be verry quiet') do - puts "OK, I'm being very, very, very quiet... can't you tell?" - end - options.on('-v', '--verbose', 'Run verbosely'){|v| puts "Option to be verbose passed"} - - options.parse! -end \ No newline at end of file Copied: src/trunk/abt.rb (from rev 147, src/trunk/abt) =================================================================== --- src/trunk/abt.rb (rev 0) +++ src/trunk/abt.rb 2006-10-12 19:03:02 UTC (rev 148) @@ -0,0 +1,44 @@ +#!/usr/bin/ruby -w + +## +# abt.rb +# +# The central package manager script to run all ABout Time Linux tasks. +# +# Created by Eric D. Schabell <er...@ab...> +# Copyright 2006, GPL. +# +# This file is part of AbTLinux. +# +# AbTLinux is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# AbTLinux is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# AbTLinux; if not, write to the Free Software Foundation, Inc., 51 Franklin +# St, Fifth Floor, Boston, MA 02110-1301 USA +## +require "AbtPackageManager" +require "AbtLogManager" +require "AbtReportManager" +require 'optparse' + +## +# Parsing our options. +## +options = {} +ARGV.options do |options| + options.on_tail('-h', '--help', 'Print this help information'){puts options; exit} + options.on('-q', '--quiet', 'be verry quiet') do + puts "OK, I'm being very, very, very quiet... can't you tell?" + end + options.on('-v', '--verbose', 'Run verbosely'){|v| puts "Option to be verbose passed"} + + options.parse! +end \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-08 12:33:19
|
Revision: 147 http://svn.sourceforge.net/abtlinux/?rev=147&view=rev Author: eschabell Date: 2006-10-08 05:32:19 -0700 (Sun, 08 Oct 2006) Log Message: ----------- Regenerated docs. Modified Paths: -------------- src/trunk/doc/classes/AbtDepEngine.html src/trunk/doc/classes/AbtDownloadManager.html src/trunk/doc/classes/AbtLogManager.html src/trunk/doc/classes/AbtPackage.html src/trunk/doc/classes/AbtPackageManager.html src/trunk/doc/classes/AbtQueueManager.html src/trunk/doc/classes/AbtReportManager.html src/trunk/doc/classes/AbtSystemManager.html src/trunk/doc/classes/TestAbtDepEngine.html src/trunk/doc/classes/TestAbtDownloadManager.html src/trunk/doc/classes/TestAbtLogManager.html src/trunk/doc/classes/TestAbtPackage.html src/trunk/doc/classes/TestAbtPackageManager.html src/trunk/doc/classes/TestAbtQueueManager.html src/trunk/doc/classes/TestAbtReportManager.html src/trunk/doc/classes/TestAbtSystemManager.html src/trunk/doc/created.rid src/trunk/doc/dot/f_0.dot src/trunk/doc/dot/f_0.png src/trunk/doc/dot/f_1.dot src/trunk/doc/dot/f_1.png src/trunk/doc/dot/f_10.dot src/trunk/doc/dot/f_10.png src/trunk/doc/dot/f_11.dot src/trunk/doc/dot/f_11.png src/trunk/doc/dot/f_12.dot src/trunk/doc/dot/f_12.png src/trunk/doc/dot/f_13.dot src/trunk/doc/dot/f_13.png src/trunk/doc/dot/f_14.dot src/trunk/doc/dot/f_14.png src/trunk/doc/dot/f_15.dot src/trunk/doc/dot/f_15.png src/trunk/doc/dot/f_2.dot src/trunk/doc/dot/f_2.png src/trunk/doc/dot/f_3.dot src/trunk/doc/dot/f_3.png src/trunk/doc/dot/f_4.dot src/trunk/doc/dot/f_4.png src/trunk/doc/dot/f_5.dot src/trunk/doc/dot/f_5.png src/trunk/doc/dot/f_6.dot src/trunk/doc/dot/f_6.png src/trunk/doc/dot/f_7.dot src/trunk/doc/dot/f_7.png src/trunk/doc/dot/f_8.dot src/trunk/doc/dot/f_8.png src/trunk/doc/dot/f_9.dot src/trunk/doc/dot/f_9.png src/trunk/doc/files/AbtDepEngine_rb.html src/trunk/doc/files/AbtDownloadManager_rb.html src/trunk/doc/files/AbtLogManager_rb.html src/trunk/doc/files/AbtPackageManager_rb.html src/trunk/doc/files/AbtPackage_rb.html src/trunk/doc/files/AbtQueueManager_rb.html src/trunk/doc/files/AbtReportManager_rb.html src/trunk/doc/files/AbtSystemManager_rb.html src/trunk/doc/files/TestAbtDepEngine_rb.html src/trunk/doc/files/TestAbtDownloadManager_rb.html src/trunk/doc/files/TestAbtLogManager_rb.html src/trunk/doc/files/TestAbtPackageManager_rb.html src/trunk/doc/files/TestAbtPackage_rb.html src/trunk/doc/files/TestAbtQueueManager_rb.html src/trunk/doc/files/TestAbtReportManager_rb.html src/trunk/doc/files/TestAbtSystemManager_rb.html src/trunk/doc/fr_file_index.html Removed Paths: ------------- src/trunk/doc/dot/f_16.dot src/trunk/doc/dot/f_16.png src/trunk/doc/files/abt_rb.html Modified: src/trunk/doc/classes/AbtDepEngine.html =================================================================== --- src/trunk/doc/classes/AbtDepEngine.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/AbtDepEngine.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,127,100" href="AbtDepEngine.html" alt="AbtDepEngine"> </map> -<img src="../dot/f_1.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_0.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/AbtDownloadManager.html =================================================================== --- src/trunk/doc/classes/AbtDownloadManager.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/AbtDownloadManager.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,162,100" href="AbtDownloadManager.html" alt="AbtDownloadManager"> </map> -<img src="../dot/f_2.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_1.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/AbtLogManager.html =================================================================== --- src/trunk/doc/classes/AbtLogManager.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/AbtLogManager.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,133,100" href="AbtLogManager.html" alt="AbtLogManager"> </map> -<img src="../dot/f_3.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_2.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/AbtPackage.html =================================================================== --- src/trunk/doc/classes/AbtPackage.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/AbtPackage.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,117,100" href="AbtPackage.html" alt="AbtPackage"> </map> -<img src="../dot/f_4.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_3.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/AbtPackageManager.html =================================================================== --- src/trunk/doc/classes/AbtPackageManager.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/AbtPackageManager.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,157,100" href="AbtPackageManager.html" alt="AbtPackageManager"> </map> -<img src="../dot/f_5.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_4.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/AbtQueueManager.html =================================================================== --- src/trunk/doc/classes/AbtQueueManager.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/AbtQueueManager.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,146,100" href="AbtQueueManager.html" alt="AbtQueueManager"> </map> -<img src="../dot/f_6.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_5.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/AbtReportManager.html =================================================================== --- src/trunk/doc/classes/AbtReportManager.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/AbtReportManager.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,146,100" href="AbtReportManager.html" alt="AbtReportManager"> </map> -<img src="../dot/f_7.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_6.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/AbtSystemManager.html =================================================================== --- src/trunk/doc/classes/AbtSystemManager.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/AbtSystemManager.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,151,100" href="AbtSystemManager.html" alt="AbtSystemManager"> </map> -<img src="../dot/f_8.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_7.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/TestAbtDepEngine.html =================================================================== --- src/trunk/doc/classes/TestAbtDepEngine.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/TestAbtDepEngine.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,146,152" href="TestAbtDepEngine.html" alt="TestAbtDepEngine"> <area shape="RECT" coords="25,8,150,56" href="Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_9.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_8.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/TestAbtDownloadManager.html =================================================================== --- src/trunk/doc/classes/TestAbtDownloadManager.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/TestAbtDownloadManager.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,181,152" href="TestAbtDownloadManager.html" alt="TestAbtDownloadManager"> <area shape="RECT" coords="42,8,167,56" href="Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_10.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_9.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/TestAbtLogManager.html =================================================================== --- src/trunk/doc/classes/TestAbtLogManager.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/TestAbtLogManager.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,151,152" href="TestAbtLogManager.html" alt="TestAbtLogManager"> <area shape="RECT" coords="27,8,153,56" href="Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_11.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_10.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/TestAbtPackage.html =================================================================== --- src/trunk/doc/classes/TestAbtPackage.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/TestAbtPackage.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,135,152" href="TestAbtPackage.html" alt="TestAbtPackage"> <area shape="RECT" coords="19,8,145,56" href="Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_12.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_11.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/TestAbtPackageManager.html =================================================================== --- src/trunk/doc/classes/TestAbtPackageManager.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/TestAbtPackageManager.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,175,152" href="TestAbtPackageManager.html" alt="TestAbtPackageManager"> <area shape="RECT" coords="39,8,165,56" href="Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_13.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_12.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/TestAbtQueueManager.html =================================================================== --- src/trunk/doc/classes/TestAbtQueueManager.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/TestAbtQueueManager.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,167,152" href="TestAbtQueueManager.html" alt="TestAbtQueueManager"> <area shape="RECT" coords="35,8,161,56" href="Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_14.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_13.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/TestAbtReportManager.html =================================================================== --- src/trunk/doc/classes/TestAbtReportManager.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/TestAbtReportManager.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,167,152" href="TestAbtReportManager.html" alt="TestAbtReportManager"> <area shape="RECT" coords="35,8,161,56" href="Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_15.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_14.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/classes/TestAbtSystemManager.html =================================================================== --- src/trunk/doc/classes/TestAbtSystemManager.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/classes/TestAbtSystemManager.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,170,152" href="TestAbtSystemManager.html" alt="TestAbtSystemManager"> <area shape="RECT" coords="37,8,162,56" href="Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_16.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_15.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/created.rid =================================================================== --- src/trunk/doc/created.rid 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/created.rid 2006-10-08 12:32:19 UTC (rev 147) @@ -1 +1 @@ -Sun Oct 08 13:29:10 CEST 2006 +Sun Oct 08 14:18:45 CEST 2006 Modified: src/trunk/doc/dot/f_0.dot =================================================================== --- src/trunk/doc/dot/f_0.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_0.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,12 +3,27 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "abt.rb" + label = "AbtDepEngine.rb" node [ fontname = Arial, fontsize = 8, color = black ] + subgraph cluster_1 { + fontname = Arial + color = red + label = "AbtDepEngine.rb" + AbtDepEngine [ + fontcolor = black, + URL = "classes/AbtDepEngine.html", + shape = ellipse, + color = palegoldenrod, + style = filled, + label = "AbtDepEngine" + ] + + } + } Modified: src/trunk/doc/dot/f_0.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_1.dot =================================================================== --- src/trunk/doc/dot/f_1.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_1.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,24 +3,24 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "AbtDepEngine.rb" + label = "AbtDownloadManager.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_1 { + subgraph cluster_2 { fontname = Arial color = red - label = "AbtDepEngine.rb" - AbtDepEngine [ + label = "AbtDownloadManager.rb" + AbtDownloadManager [ fontcolor = black, - URL = "classes/AbtDepEngine.html", + URL = "classes/AbtDownloadManager.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "AbtDepEngine" + label = "AbtDownloadManager" ] } Modified: src/trunk/doc/dot/f_1.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_10.dot =================================================================== --- src/trunk/doc/dot/f_10.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_10.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,24 +3,24 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "TestAbtDownloadManager.rb" + label = "TestAbtLogManager.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_10 { + subgraph cluster_11 { fontname = Arial color = red - label = "TestAbtDownloadManager.rb" - TestAbtDownloadManager [ + label = "TestAbtLogManager.rb" + TestAbtLogManager [ fontcolor = black, - URL = "classes/TestAbtDownloadManager.html", + URL = "classes/TestAbtLogManager.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "TestAbtDownloadManager" + label = "TestAbtLogManager" ] } @@ -30,7 +30,7 @@ label = "Test::Unit::TestCase" ] - Test__Unit__TestCase -> TestAbtDownloadManager [ + Test__Unit__TestCase -> TestAbtLogManager [ ] Modified: src/trunk/doc/dot/f_10.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_11.dot =================================================================== --- src/trunk/doc/dot/f_11.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_11.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,24 +3,24 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "TestAbtLogManager.rb" + label = "TestAbtPackage.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_11 { + subgraph cluster_12 { fontname = Arial color = red - label = "TestAbtLogManager.rb" - TestAbtLogManager [ + label = "TestAbtPackage.rb" + TestAbtPackage [ fontcolor = black, - URL = "classes/TestAbtLogManager.html", + URL = "classes/TestAbtPackage.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "TestAbtLogManager" + label = "TestAbtPackage" ] } @@ -30,7 +30,7 @@ label = "Test::Unit::TestCase" ] - Test__Unit__TestCase -> TestAbtLogManager [ + Test__Unit__TestCase -> TestAbtPackage [ ] Modified: src/trunk/doc/dot/f_11.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_12.dot =================================================================== --- src/trunk/doc/dot/f_12.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_12.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,24 +3,24 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "TestAbtPackage.rb" + label = "TestAbtPackageManager.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_12 { + subgraph cluster_13 { fontname = Arial color = red - label = "TestAbtPackage.rb" - TestAbtPackage [ + label = "TestAbtPackageManager.rb" + TestAbtPackageManager [ fontcolor = black, - URL = "classes/TestAbtPackage.html", + URL = "classes/TestAbtPackageManager.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "TestAbtPackage" + label = "TestAbtPackageManager" ] } @@ -30,7 +30,7 @@ label = "Test::Unit::TestCase" ] - Test__Unit__TestCase -> TestAbtPackage [ + Test__Unit__TestCase -> TestAbtPackageManager [ ] Modified: src/trunk/doc/dot/f_12.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_13.dot =================================================================== --- src/trunk/doc/dot/f_13.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_13.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,24 +3,24 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "TestAbtPackageManager.rb" + label = "TestAbtQueueManager.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_13 { + subgraph cluster_14 { fontname = Arial color = red - label = "TestAbtPackageManager.rb" - TestAbtPackageManager [ + label = "TestAbtQueueManager.rb" + TestAbtQueueManager [ fontcolor = black, - URL = "classes/TestAbtPackageManager.html", + URL = "classes/TestAbtQueueManager.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "TestAbtPackageManager" + label = "TestAbtQueueManager" ] } @@ -30,7 +30,7 @@ label = "Test::Unit::TestCase" ] - Test__Unit__TestCase -> TestAbtPackageManager [ + Test__Unit__TestCase -> TestAbtQueueManager [ ] Modified: src/trunk/doc/dot/f_13.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_14.dot =================================================================== --- src/trunk/doc/dot/f_14.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_14.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,24 +3,24 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "TestAbtQueueManager.rb" + label = "TestAbtReportManager.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_14 { + subgraph cluster_15 { fontname = Arial color = red - label = "TestAbtQueueManager.rb" - TestAbtQueueManager [ + label = "TestAbtReportManager.rb" + TestAbtReportManager [ fontcolor = black, - URL = "classes/TestAbtQueueManager.html", + URL = "classes/TestAbtReportManager.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "TestAbtQueueManager" + label = "TestAbtReportManager" ] } @@ -30,7 +30,7 @@ label = "Test::Unit::TestCase" ] - Test__Unit__TestCase -> TestAbtQueueManager [ + Test__Unit__TestCase -> TestAbtReportManager [ ] Modified: src/trunk/doc/dot/f_14.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_15.dot =================================================================== --- src/trunk/doc/dot/f_15.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_15.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,24 +3,24 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "TestAbtReportManager.rb" + label = "TestAbtSystemManager.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_15 { + subgraph cluster_16 { fontname = Arial color = red - label = "TestAbtReportManager.rb" - TestAbtReportManager [ + label = "TestAbtSystemManager.rb" + TestAbtSystemManager [ fontcolor = black, - URL = "classes/TestAbtReportManager.html", + URL = "classes/TestAbtSystemManager.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "TestAbtReportManager" + label = "TestAbtSystemManager" ] } @@ -30,7 +30,7 @@ label = "Test::Unit::TestCase" ] - Test__Unit__TestCase -> TestAbtReportManager [ + Test__Unit__TestCase -> TestAbtSystemManager [ ] Modified: src/trunk/doc/dot/f_15.png =================================================================== (Binary files differ) Deleted: src/trunk/doc/dot/f_16.dot =================================================================== --- src/trunk/doc/dot/f_16.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_16.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -1,38 +0,0 @@ -digraph TopLevel { - compound = true - bgcolor = lightcyan1 - fontname = Arial - fontsize = 8 - label = "TestAbtSystemManager.rb" - node [ - fontname = Arial, - fontsize = 8, - color = black - ] - - subgraph cluster_16 { - fontname = Arial - color = red - label = "TestAbtSystemManager.rb" - TestAbtSystemManager [ - fontcolor = black, - URL = "classes/TestAbtSystemManager.html", - shape = ellipse, - color = palegoldenrod, - style = filled, - label = "TestAbtSystemManager" - ] - - } - - Test__Unit__TestCase [ - URL = "classes/Test/Unit/TestCase.html", - label = "Test::Unit::TestCase" - ] - - Test__Unit__TestCase -> TestAbtSystemManager [ - - ] - -} - Deleted: src/trunk/doc/dot/f_16.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_2.dot =================================================================== --- src/trunk/doc/dot/f_2.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_2.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,24 +3,24 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "AbtDownloadManager.rb" + label = "AbtLogManager.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_2 { + subgraph cluster_3 { fontname = Arial color = red - label = "AbtDownloadManager.rb" - AbtDownloadManager [ + label = "AbtLogManager.rb" + AbtLogManager [ fontcolor = black, - URL = "classes/AbtDownloadManager.html", + URL = "classes/AbtLogManager.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "AbtDownloadManager" + label = "AbtLogManager" ] } Modified: src/trunk/doc/dot/f_2.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_3.dot =================================================================== --- src/trunk/doc/dot/f_3.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_3.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,24 +3,24 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "AbtLogManager.rb" + label = "AbtPackage.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_3 { + subgraph cluster_4 { fontname = Arial color = red - label = "AbtLogManager.rb" - AbtLogManager [ + label = "AbtPackage.rb" + AbtPackage [ fontcolor = black, - URL = "classes/AbtLogManager.html", + URL = "classes/AbtPackage.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "AbtLogManager" + label = "AbtPackage" ] } Modified: src/trunk/doc/dot/f_3.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_4.dot =================================================================== --- src/trunk/doc/dot/f_4.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_4.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,24 +3,24 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "AbtPackage.rb" + label = "AbtPackageManager.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_4 { + subgraph cluster_5 { fontname = Arial color = red - label = "AbtPackage.rb" - AbtPackage [ + label = "AbtPackageManager.rb" + AbtPackageManager [ fontcolor = black, - URL = "classes/AbtPackage.html", + URL = "classes/AbtPackageManager.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "AbtPackage" + label = "AbtPackageManager" ] } Modified: src/trunk/doc/dot/f_4.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_5.dot =================================================================== --- src/trunk/doc/dot/f_5.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_5.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,24 +3,24 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "AbtPackageManager.rb" + label = "AbtQueueManager.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_5 { + subgraph cluster_6 { fontname = Arial color = red - label = "AbtPackageManager.rb" - AbtPackageManager [ + label = "AbtQueueManager.rb" + AbtQueueManager [ fontcolor = black, - URL = "classes/AbtPackageManager.html", + URL = "classes/AbtQueueManager.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "AbtPackageManager" + label = "AbtQueueManager" ] } Modified: src/trunk/doc/dot/f_5.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_6.dot =================================================================== --- src/trunk/doc/dot/f_6.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_6.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,24 +3,24 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "AbtQueueManager.rb" + label = "AbtReportManager.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_6 { + subgraph cluster_7 { fontname = Arial color = red - label = "AbtQueueManager.rb" - AbtQueueManager [ + label = "AbtReportManager.rb" + AbtReportManager [ fontcolor = black, - URL = "classes/AbtQueueManager.html", + URL = "classes/AbtReportManager.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "AbtQueueManager" + label = "AbtReportManager" ] } Modified: src/trunk/doc/dot/f_6.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_7.dot =================================================================== --- src/trunk/doc/dot/f_7.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_7.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,24 +3,24 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "AbtReportManager.rb" + label = "AbtSystemManager.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_7 { + subgraph cluster_8 { fontname = Arial color = red - label = "AbtReportManager.rb" - AbtReportManager [ + label = "AbtSystemManager.rb" + AbtSystemManager [ fontcolor = black, - URL = "classes/AbtReportManager.html", + URL = "classes/AbtSystemManager.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "AbtReportManager" + label = "AbtSystemManager" ] } Modified: src/trunk/doc/dot/f_7.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_8.dot =================================================================== --- src/trunk/doc/dot/f_8.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_8.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,27 +3,36 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "AbtSystemManager.rb" + label = "TestAbtDepEngine.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_8 { + subgraph cluster_9 { fontname = Arial color = red - label = "AbtSystemManager.rb" - AbtSystemManager [ + label = "TestAbtDepEngine.rb" + TestAbtDepEngine [ fontcolor = black, - URL = "classes/AbtSystemManager.html", + URL = "classes/TestAbtDepEngine.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "AbtSystemManager" + label = "TestAbtDepEngine" ] } + Test__Unit__TestCase [ + URL = "classes/Test/Unit/TestCase.html", + label = "Test::Unit::TestCase" + ] + + Test__Unit__TestCase -> TestAbtDepEngine [ + + ] + } Modified: src/trunk/doc/dot/f_8.png =================================================================== (Binary files differ) Modified: src/trunk/doc/dot/f_9.dot =================================================================== --- src/trunk/doc/dot/f_9.dot 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/dot/f_9.dot 2006-10-08 12:32:19 UTC (rev 147) @@ -3,24 +3,24 @@ bgcolor = lightcyan1 fontname = Arial fontsize = 8 - label = "TestAbtDepEngine.rb" + label = "TestAbtDownloadManager.rb" node [ fontname = Arial, fontsize = 8, color = black ] - subgraph cluster_9 { + subgraph cluster_10 { fontname = Arial color = red - label = "TestAbtDepEngine.rb" - TestAbtDepEngine [ + label = "TestAbtDownloadManager.rb" + TestAbtDownloadManager [ fontcolor = black, - URL = "classes/TestAbtDepEngine.html", + URL = "classes/TestAbtDownloadManager.html", shape = ellipse, color = palegoldenrod, style = filled, - label = "TestAbtDepEngine" + label = "TestAbtDownloadManager" ] } @@ -30,7 +30,7 @@ label = "Test::Unit::TestCase" ] - Test__Unit__TestCase -> TestAbtDepEngine [ + Test__Unit__TestCase -> TestAbtDownloadManager [ ] Modified: src/trunk/doc/dot/f_9.png =================================================================== (Binary files differ) Modified: src/trunk/doc/files/AbtDepEngine_rb.html =================================================================== --- src/trunk/doc/files/AbtDepEngine_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/AbtDepEngine_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,127,100" href="../classes/AbtDepEngine.html" alt="AbtDepEngine"> </map> -<img src="../dot/f_1.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_0.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/files/AbtDownloadManager_rb.html =================================================================== --- src/trunk/doc/files/AbtDownloadManager_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/AbtDownloadManager_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,162,100" href="../classes/AbtDownloadManager.html" alt="AbtDownloadManager"> </map> -<img src="../dot/f_2.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_1.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/files/AbtLogManager_rb.html =================================================================== --- src/trunk/doc/files/AbtLogManager_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/AbtLogManager_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,133,100" href="../classes/AbtLogManager.html" alt="AbtLogManager"> </map> -<img src="../dot/f_3.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_2.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/files/AbtPackageManager_rb.html =================================================================== --- src/trunk/doc/files/AbtPackageManager_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/AbtPackageManager_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,157,100" href="../classes/AbtPackageManager.html" alt="AbtPackageManager"> </map> -<img src="../dot/f_5.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_4.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/files/AbtPackage_rb.html =================================================================== --- src/trunk/doc/files/AbtPackage_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/AbtPackage_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,117,100" href="../classes/AbtPackage.html" alt="AbtPackage"> </map> -<img src="../dot/f_4.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_3.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/files/AbtQueueManager_rb.html =================================================================== --- src/trunk/doc/files/AbtQueueManager_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/AbtQueueManager_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,146,100" href="../classes/AbtQueueManager.html" alt="AbtQueueManager"> </map> -<img src="../dot/f_6.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_5.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/files/AbtReportManager_rb.html =================================================================== --- src/trunk/doc/files/AbtReportManager_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/AbtReportManager_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,146,100" href="../classes/AbtReportManager.html" alt="AbtReportManager"> </map> -<img src="../dot/f_7.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_6.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/files/AbtSystemManager_rb.html =================================================================== --- src/trunk/doc/files/AbtSystemManager_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/AbtSystemManager_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -78,7 +78,7 @@ <map id="map" name="map"> <area shape="RECT" coords="29,52,151,100" href="../classes/AbtSystemManager.html" alt="AbtSystemManager"> </map> -<img src="../dot/f_8.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_7.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> <div class="description"><p> Modified: src/trunk/doc/files/TestAbtDepEngine_rb.html =================================================================== --- src/trunk/doc/files/TestAbtDepEngine_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/TestAbtDepEngine_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,146,152" href="../classes/TestAbtDepEngine.html" alt="TestAbtDepEngine"> <area shape="RECT" coords="25,8,150,56" href="../classes/Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_9.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_8.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> Modified: src/trunk/doc/files/TestAbtDownloadManager_rb.html =================================================================== --- src/trunk/doc/files/TestAbtDownloadManager_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/TestAbtDownloadManager_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,181,152" href="../classes/TestAbtDownloadManager.html" alt="TestAbtDownloadManager"> <area shape="RECT" coords="42,8,167,56" href="../classes/Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_10.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_9.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> Modified: src/trunk/doc/files/TestAbtLogManager_rb.html =================================================================== --- src/trunk/doc/files/TestAbtLogManager_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/TestAbtLogManager_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,151,152" href="../classes/TestAbtLogManager.html" alt="TestAbtLogManager"> <area shape="RECT" coords="27,8,153,56" href="../classes/Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_11.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_10.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> Modified: src/trunk/doc/files/TestAbtPackageManager_rb.html =================================================================== --- src/trunk/doc/files/TestAbtPackageManager_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/TestAbtPackageManager_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,175,152" href="../classes/TestAbtPackageManager.html" alt="TestAbtPackageManager"> <area shape="RECT" coords="39,8,165,56" href="../classes/Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_13.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_12.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> Modified: src/trunk/doc/files/TestAbtPackage_rb.html =================================================================== --- src/trunk/doc/files/TestAbtPackage_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/TestAbtPackage_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,135,152" href="../classes/TestAbtPackage.html" alt="TestAbtPackage"> <area shape="RECT" coords="19,8,145,56" href="../classes/Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_12.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_11.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> Modified: src/trunk/doc/files/TestAbtQueueManager_rb.html =================================================================== --- src/trunk/doc/files/TestAbtQueueManager_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/TestAbtQueueManager_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,167,152" href="../classes/TestAbtQueueManager.html" alt="TestAbtQueueManager"> <area shape="RECT" coords="35,8,161,56" href="../classes/Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_14.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_13.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> Modified: src/trunk/doc/files/TestAbtReportManager_rb.html =================================================================== --- src/trunk/doc/files/TestAbtReportManager_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/TestAbtReportManager_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,167,152" href="../classes/TestAbtReportManager.html" alt="TestAbtReportManager"> <area shape="RECT" coords="35,8,161,56" href="../classes/Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_15.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_14.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> Modified: src/trunk/doc/files/TestAbtSystemManager_rb.html =================================================================== --- src/trunk/doc/files/TestAbtSystemManager_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/TestAbtSystemManager_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -79,7 +79,7 @@ <area shape="RECT" coords="29,104,170,152" href="../classes/TestAbtSystemManager.html" alt="TestAbtSystemManager"> <area shape="RECT" coords="37,8,162,56" href="../classes/Test/Unit/TestCase.html" alt="Test::Unit::TestCase"> </map> -<img src="../dot/f_16.png" usemap="#map" border=0 alt="TopLevel"> +<img src="../dot/f_15.png" usemap="#map" border=0 alt="TopLevel"> </td></tr></table> Deleted: src/trunk/doc/files/abt_rb.html =================================================================== --- src/trunk/doc/files/abt_rb.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/files/abt_rb.html 2006-10-08 12:32:19 UTC (rev 147) @@ -1,133 +0,0 @@ -<?xml version="1.0" encoding="iso-8859-1"?> -<!DOCTYPE html - PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html> - <head> - <title>File: abt.rb</title> - <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> - <link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" /> - - <script language="JavaScript" type="text/javascript"> - // <![CDATA[ - - function toggleSource( id ) - { - var elem - var link - - if( document.getElementById ) - { - elem = document.getElementById( id ) - link = document.getElementById( "l_" + id ) - } - else if ( document.all ) - { - elem = eval( "document.all." + id ) - link = eval( "document.all.l_" + id ) - } - else - return false; - - if( elem.style.display == "block" ) - { - elem.style.display = "none" - link.innerHTML = "show source" - } - else - { - elem.style.display = "block" - link.innerHTML = "hide source" - } - } - - function openCode( url ) - { - window.open( url, "SOURCE_CODE", "width=400,height=400,scrollbars=yes" ) - } - // ]]> - </script> - </head> - - <body> - <table border='0' cellpadding='0' cellspacing='0' width="100%" class='banner'> - <tr><td> - <table width="100%" border='0' cellpadding='0' cellspacing='0'><tr> - <td class="file-title" colspan="2"><span class="file-title-prefix">File</span><br />abt.rb</td> - <td align="right"> - <table border='0' cellspacing="0" cellpadding="2"> - <tr> - <td>Path:</td> - <td>abt.rb - </td> - </tr> - <tr> - <td>Modified:</td> - <td>Sun Oct 08 13:28:10 CEST 2006</td> - </tr> - </table> - </td></tr> - </table> - </td></tr> -</table><br> - <!-- banner header --> - - <div id="bodyContent"> - <div id="content"> - <table cellpadding='0' cellspacing='0' border='0' width="100%"><tr><td align="center"> - <map id="map" name="map"> -</map> -<img src="../dot/f_0.png" usemap="#map" border=0 alt="TopLevel"> - </td></tr></table> - - <div class="description"><p> -abt.rb -</p> -<p> -The central package manager script to run all ABout Time Linux tasks. -</p> -<p> -Created by Eric D. Schabell <er...@ab...> Copyright 2006, GPL. -</p> -<p> -This file is part of AbTLinux. -</p> -<p> -AbTLinux is free software; you can redistribute it and/or modify it under -the terms of the GNU General Public License as published by the Free -Software Foundation; either version 2 of the License, or (at your option) -any later version. -</p> -<p> -AbTLinux is distributed in the hope that it will be useful, but WITHOUT ANY -WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -details. -</p> -<p> -You should have received a copy of the GNU General Public License along -with AbTLinux; if not, write to the Free Software Foundation, Inc., 51 -Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -</p> -</div> - - <div class="sectiontitle">Required Files</div> - <ul> - <li><a href="../classes/AbtPackageManager.html">AbtPackageManager</a></li> - <li><a href="../classes/AbtLogManager.html">AbtLogManager</a></li> - <li><a href="../classes/AbtReportManager.html">AbtReportManager</a></li> - </ul> - - - - - - - - -</div> - - </div> - - </body> -</html> \ No newline at end of file Modified: src/trunk/doc/fr_file_index.html =================================================================== --- src/trunk/doc/fr_file_index.html 2006-10-08 12:28:49 UTC (rev 146) +++ src/trunk/doc/fr_file_index.html 2006-10-08 12:32:19 UTC (rev 147) @@ -57,6 +57,5 @@ <a href="files/TestAbtQueueManager_rb.html">TestAbtQueueManager.rb</a><br> <a href="files/TestAbtReportManager_rb.html">TestAbtReportManager.rb</a><br> <a href="files/TestAbtSystemManager_rb.html">TestAbtSystemManager.rb</a><br> -<a href="files/abt_rb.html">abt.rb</a><br> </div> </body></html> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-08 12:28:56
|
Revision: 146 http://svn.sourceforge.net/abtlinux/?rev=146&view=rev Author: eschabell Date: 2006-10-08 05:28:49 -0700 (Sun, 08 Oct 2006) Log Message: ----------- Not processing abt, this file is not part of API, but a user of the API. Modified Paths: -------------- src/trunk/docGen.sh Modified: src/trunk/docGen.sh =================================================================== --- src/trunk/docGen.sh 2006-10-08 12:27:49 UTC (rev 145) +++ src/trunk/docGen.sh 2006-10-08 12:28:49 UTC (rev 146) @@ -16,8 +16,7 @@ #=============================================================================== TEMPLATE="./abtTemplate.rb"; -FILES="abt.rb - AbtDepEngine.rb +FILES="AbtDepEngine.rb AbtDownloadManager.rb AbtLogManager.rb AbtPackage.rb This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-08 12:27:57
|
Revision: 145 http://svn.sourceforge.net/abtlinux/?rev=145&view=rev Author: eschabell Date: 2006-10-08 05:27:49 -0700 (Sun, 08 Oct 2006) Log Message: ----------- Removed the .rb from abt, should be just abt. Added Paths: ----------- src/trunk/abt Removed Paths: ------------- src/trunk/abt.rb Copied: src/trunk/abt (from rev 144, src/trunk/abt.rb) =================================================================== --- src/trunk/abt (rev 0) +++ src/trunk/abt 2006-10-08 12:27:49 UTC (rev 145) @@ -0,0 +1,44 @@ +#!/usr/bin/ruby -w + +## +# abt.rb +# +# The central package manager script to run all ABout Time Linux tasks. +# +# Created by Eric D. Schabell <er...@ab...> +# Copyright 2006, GPL. +# +# This file is part of AbTLinux. +# +# AbTLinux is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2 of the License, or +# (at your option) any later version. +# +# AbTLinux is distributed in the hope that it will be useful, but WITHOUT ANY +# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS +# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more +# details. +# +# You should have received a copy of the GNU General Public License along with +# AbTLinux; if not, write to the Free Software Foundation, Inc., 51 Franklin +# St, Fifth Floor, Boston, MA 02110-1301 USA +## +require "AbtPackageManager" +require "AbtLogManager" +require "AbtReportManager" +require 'optparse' + +## +# Parsing our options. +## +options = {} +ARGV.options do |options| + options.on_tail('-h', '--help', 'Print this help information'){puts options; exit} + options.on('-q', '--quiet', 'be verry quiet') do + puts "OK, I'm being very, very, very quiet... can't you tell?" + end + options.on('-v', '--verbose', 'Run verbosely'){|v| puts "Option to be verbose passed"} + + options.parse! +end \ No newline at end of file Deleted: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-10-08 12:27:25 UTC (rev 144) +++ src/trunk/abt.rb 2006-10-08 12:27:49 UTC (rev 145) @@ -1,44 +0,0 @@ -#!/usr/bin/ruby -w - -## -# abt.rb -# -# The central package manager script to run all ABout Time Linux tasks. -# -# Created by Eric D. Schabell <er...@ab...> -# Copyright 2006, GPL. -# -# This file is part of AbTLinux. -# -# AbTLinux is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2 of the License, or -# (at your option) any later version. -# -# AbTLinux is distributed in the hope that it will be useful, but WITHOUT ANY -# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more -# details. -# -# You should have received a copy of the GNU General Public License along with -# AbTLinux; if not, write to the Free Software Foundation, Inc., 51 Franklin -# St, Fifth Floor, Boston, MA 02110-1301 USA -## -require "AbtPackageManager" -require "AbtLogManager" -require "AbtReportManager" -require 'optparse' - -## -# Parsing our options. -## -options = {} -ARGV.options do |options| - options.on_tail('-h', '--help', 'Print this help information'){puts options; exit} - options.on('-q', '--quiet', 'be verry quiet') do - puts "OK, I'm being very, very, very quiet... can't you tell?" - end - options.on('-v', '--verbose', 'Run verbosely'){|v| puts "Option to be verbose passed"} - - options.parse! -end \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <esc...@us...> - 2006-10-08 12:27:31
|
Revision: 144 http://svn.sourceforge.net/abtlinux/?rev=144&view=rev Author: eschabell Date: 2006-10-08 05:27:25 -0700 (Sun, 08 Oct 2006) Log Message: ----------- Have started adding option processing code for abt script. Modified Paths: -------------- src/trunk/abt.rb Modified: src/trunk/abt.rb =================================================================== --- src/trunk/abt.rb 2006-10-08 11:49:50 UTC (rev 143) +++ src/trunk/abt.rb 2006-10-08 12:27:25 UTC (rev 144) @@ -27,4 +27,18 @@ require "AbtPackageManager" require "AbtLogManager" require "AbtReportManager" +require 'optparse' +## +# Parsing our options. +## +options = {} +ARGV.options do |options| + options.on_tail('-h', '--help', 'Print this help information'){puts options; exit} + options.on('-q', '--quiet', 'be verry quiet') do + puts "OK, I'm being very, very, very quiet... can't you tell?" + end + options.on('-v', '--verbose', 'Run verbosely'){|v| puts "Option to be verbose passed"} + + options.parse! +end \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |