- Added: Aaronsen Group, Ltd. (consulting, North America)
Advises and implements a wide range of internetworking technologies. Uses FreeBSD to engineer solutions. This was submitted on Jan 16 but I somehow overlooked it. - gencommercial.pl sorting order is now case insensitive. Removed sorting "tricks" from software.raw since they are no longer needed. Submitted by: Doug Luce (luce@aaronsen.com) Aaronsen Group entry.
This commit is contained in:
parent
6bb2c82a5b
commit
6a7e62fd66
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=4130
3 changed files with 22 additions and 14 deletions
|
@ -1,3 +1,14 @@
|
|||
<!-- NAME="Aaronsen Group, Ltd" CAT="consulting" SUBCAT="NAMERICA" -->
|
||||
<STRONG><A HREF="http://www.aaronsen.com/freebsd/">Aaronsen Group, Ltd.</A>
|
||||
</STRONG> advises on and implements a wide range of internetworking
|
||||
technologies, including remote access, wide area networks, international
|
||||
telecommunications, Intranetworking, web applications and local area
|
||||
services. Many of our custom web-enabled solutions are engineered using
|
||||
FreeBSD, Apache, mod_perl, and MySQL/Oracle. Please email us at
|
||||
<A HREF="mailto:info@aaronsen.com">info@aaronsen.com</A>. Our web site is
|
||||
at <A HREF="http://www.aaronsen.com">http://www.aaronsen.com</A> and we
|
||||
can be reached via telephone at +1.412.391.6000.
|
||||
|
||||
<!-- NAME="Advance Systems Group" CAT="consulting" SUBCAT="NAMERICA" -->
|
||||
<STRONG><A HREF="http://www.advansys.net/">Advance Systems Group</A>
|
||||
</STRONG> builds, administrates, and maintains Intranet/Internet
|
||||
|
@ -218,3 +229,4 @@ to integrate Microsoft's Windows NT with UNIX operating systems. The team
|
|||
is comprised of individuals with extensive knowledge of both Windows NT
|
||||
and UNIX committed to developing productivity tools for System
|
||||
Administrators and IT management in mixed OS environments.
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
# This program is made available to the general public under
|
||||
# the "BSD-style copyright" terms of agreement.
|
||||
#
|
||||
# $Id: gencommercial.pl,v 1.1 1999-01-22 11:23:45 mbarkah Exp $
|
||||
# $Id: gencommercial.pl,v 1.2 1999-01-27 09:05:05 mbarkah Exp $
|
||||
|
||||
#######################################################################
|
||||
## Configuration Section
|
||||
|
@ -259,7 +259,7 @@ if ($opt_alpha)
|
|||
{
|
||||
if ($first_letter ne substr($entry, 0, 1))
|
||||
{
|
||||
$first_letter = substr($entry, 0, 1);
|
||||
$first_letter = uc(substr($entry, 0, 1)); # Ignore case
|
||||
$list_string = "$list_string$first_letter";
|
||||
}
|
||||
}
|
||||
|
@ -280,11 +280,11 @@ if ($opt_alpha)
|
|||
}
|
||||
print OUTFILE "</CENTER>\n\n<HR WIDTH=\"75%\">\n\n";
|
||||
|
||||
# Output entries in key sort order
|
||||
# Output entries in key sort order, fold case
|
||||
|
||||
print OUTFILE "<UL>\n";
|
||||
$first_letter = "";
|
||||
foreach $entry (sort keys %entries)
|
||||
foreach $entry (sort { uc($a) cmp uc($b); } keys %entries)
|
||||
{
|
||||
print OUTFILE "<LI>";
|
||||
if ($first_letter ne substr($entry, 0, 1))
|
||||
|
@ -326,18 +326,14 @@ if ($opt_cat)
|
|||
print OUTFILE "<!-- WARNING! THIS FILE IS MACHINE GENERATED -->\n";
|
||||
print OUTFILE "<!-- DO NOT EDIT BY HAND! -->\n\n";
|
||||
|
||||
# XXX The sort is on the subcats KEY, not value (description)!!!
|
||||
|
||||
foreach $subcat (sort keys %subcats)
|
||||
# The following sort is by description (VALUE), not KEY
|
||||
foreach $subcat (sort {uc($subcats{$a}) cmp uc($subcats{$b});} keys %subcats)
|
||||
{
|
||||
print OUTFILE "<A NAME=\"CATEGORY_$subcat\"></A>\n";
|
||||
print OUTFILE "<H3>$subcats{$subcat}</H3>\n\n<UL>\n";
|
||||
|
||||
# XXX Here sorting by KEY is what we want anyway, to allow
|
||||
# XXX override of the real entry's sort order (e.g., to fold
|
||||
# XXX lowercase and uppercase together, ignore "The", etc.)
|
||||
|
||||
foreach $entry (sort keys %entries)
|
||||
# Here sorting by KEY is what we want.
|
||||
foreach $entry (sort { uc($a) cmp uc($b); } keys %entries)
|
||||
{
|
||||
$text = $entries {$entry};
|
||||
$text =~ /^\s*(.+)\s*\|(.*)/o;
|
||||
|
|
|
@ -202,7 +202,7 @@ capabilities into just about any system that runs on any Unix we support.
|
|||
Please <A HREF="http://www.hks.net/products.html">visit our web site</A>
|
||||
for more details.
|
||||
|
||||
<!-- NAME="IPass" CAT="software" SUBCAT="SYSADMIN" -->
|
||||
<!-- NAME="iPass" CAT="software" SUBCAT="SYSADMIN" -->
|
||||
<STRONG><A HREF="http://www.ipass.com/">i-Pass Alliance</A></STRONG>
|
||||
is the leading provider of global Internet roaming solutions for
|
||||
Internet service providers. We provide a total solution that enables
|
||||
|
@ -258,7 +258,7 @@ for FreeBSD. Additional information is available at
|
|||
or directly from RIOS at
|
||||
<A HREF="http://iblinux.rios.co.jp/intl/">http://iblinux.rios.co.jp/intl/</A>
|
||||
|
||||
<!-- NAME="Journyx WebTime" CAT="software" SUBCAT="MISC" -->
|
||||
<!-- NAME="journyx WebTime" CAT="software" SUBCAT="MISC" -->
|
||||
<STRONG><A HREF="http://journyx.com/products.html">journyx
|
||||
WebTime</A></STRONG> is a web-based time and attendance tracking
|
||||
product for engineering departments and technical consultancies or
|
||||
|
|
Loading…
Reference in a new issue