From: Chris Koeritz Date: Thu, 16 Feb 2012 00:20:23 +0000 (-0500) Subject: some branding changes, moved code copyright headers down into their own X-Git-Tag: 2.140.90~1601 X-Git-Url: https://feistymeow.org/gitweb/?a=commitdiff_plain;h=e5f4d647d5b8d83155fc4b142626fc204cc2c15b;p=feisty_meow.git some branding changes, moved code copyright headers down into their own directory. --- diff --git a/doc/bash_tools.html b/doc/bash_tools.html index 8a0dc853..655b028c 100644 --- a/doc/bash_tools.html +++ b/doc/bash_tools.html @@ -9,8 +9,8 @@ - YETIcode Bash Scripts + content="reusable, open source, perl, shell, script, recursive, diff, snarf, yeti, free, source code, example, filename, snarfer"> + Feisty Meow Concerns Bash Scripts
-

YETIcode Open Source Bash -Scripts

+

Feisty Meow ConcernsOpen Source Bash Scripts

GPL-Licensed Bash Code

@@ -65,25 +64,6 @@ below: scripts. In fact, this file is still in its very first few iterations and is pretty limited so far...
- -

cvs_importer.sh

-
This script eliminates the need to use the cvs -import command to pull in a whole new sub-hierarchy.  Given a -sub-folder under an existing hierarchy, it will add all the -subdirectories and all of the files in those subdirectories.  The -script avoids adding any files found in the internally used CVS -directories.
-For example, suppose you have a folder called "hoople" that's a -top-level project in CVS.  You want to add a new folder under the -existing hierarchy "hoople/source/lib_src" called "pasta".  The -"pasta" hierarchy has hundreds of subdirectories and thousands of -files.  Assuming that you've already moved the new pasta source -folder into place, the command would be:
-    cvs_importer hoople/source/pasta
-If you don't have the Yeti aliases set up, then you may need to type -this instead:
-    bash ~/yeti/scripts/cvs_importer.sh -hoople/source/pasta

movie_seeker.sh diff --git a/doc/binaries_note.txt b/doc/binaries_note.txt index e4191f65..a4b7849d 100644 --- a/doc/binaries_note.txt +++ b/doc/binaries_note.txt @@ -1,22 +1,27 @@ -There are a few pre-built binaries included with hoople. +There are a few pre-built binaries included with this code distribution. They originate from a few different sources. Feel free to not trust them. -These apps are external to the HOOPLE build... +These apps are external to the feisty meow build... -build/msys hierarchy: +production/msys hierarchy: This is copied directly from the msys project of MingW. - It has had zip.exe, unzip.exe and short_path.exe added to it. + It has had zip.exe, unzip.exe and short_path.exe added to it: unzip.exe & zip.exe: The zip and unzip tools are from the info-zip project. They are somewhat - antiquated but still work great on the various 32-bit windows platforms. - These utilities are self-identified as: "Zip 2.3 (November 29th 1999)" - To get a more recent version of the zip utilities or build them yourself, - they can be found at the site: http://www.info-zip.org/ + antiquated but still work great on the various 32-bit windows platforms. + These utilities are self-identified as: "Zip 2.3 (November 29th 1999)" + To get a more recent version of the zip utilities or build them yourself, + they can be found at the site: http://www.info-zip.org/ short_path.exe: - Built by the hoople bootstrapping process, but unfortunately this tool - is desperately needed for windows builds to work nicely with clam and - bash. It can be replaced by any newer working version from the bootstrap. + This tool is built by the code bootstrapping process (that is, by + scripts/generator/bootstrap_build.sh), but unfortunately it is + desperately needed for windows builds to work nicely with clam and + bash. If you don't have it, and your visual studio installation path + has spaces in it, then you may have trouble bootstrapping. You can + manually change your VC root variable to a short path version, as + reported by dir /x). This tool can be replaced by any newer working + version created by a bootstrap build. diff --git a/doc/fmc_header.java b/doc/fmc_header.java deleted file mode 100644 index df8f7801..00000000 --- a/doc/fmc_header.java +++ /dev/null @@ -1,12 +0,0 @@ - -////////////// -// Name : {class name} -// Author : {your name} -// Rights : Copyright (c) 2012-$now By Feisty Meow Concerns, Ltd. -////////////// -// This script is free software; you can modify/redistribute it under the terms -// of the GNU General Public License. [ http://www.gnu.org/licenses/gpl.html ] -// Feel free to send updates to: [ fred@feistymeow.org ] -////////////// - - diff --git a/doc/gnu_header.h b/doc/gnu_header.h deleted file mode 100644 index 4c3eb2e1..00000000 --- a/doc/gnu_header.h +++ /dev/null @@ -1,26 +0,0 @@ -#ifndef {NAME}_CLASS -#define {NAME}_CLASS - -////////////// -// Name : {class name} -// Author : {your name} -// Rights : Copyright (c) 2012-$now By Author -////////////// -// This file is free software; you can modify/redistribute it under the terms -// of the GNU General Public License. [ http://www.gnu.org/licenses/gpl.html ] -// Feel free to send updates to: [ fred@gruntose.com ] -////////////// - -//! brief description goes here. -/*! - detailed description goes here. -*/ - -////////////// - -// class definition goes here....... - -////////////// - -#endif - diff --git a/doc/headers/fmc_header.java b/doc/headers/fmc_header.java new file mode 100644 index 00000000..df8f7801 --- /dev/null +++ b/doc/headers/fmc_header.java @@ -0,0 +1,12 @@ + +////////////// +// Name : {class name} +// Author : {your name} +// Rights : Copyright (c) 2012-$now By Feisty Meow Concerns, Ltd. +////////////// +// This script is free software; you can modify/redistribute it under the terms +// of the GNU General Public License. [ http://www.gnu.org/licenses/gpl.html ] +// Feel free to send updates to: [ fred@feistymeow.org ] +////////////// + + diff --git a/doc/headers/gnu_header.h b/doc/headers/gnu_header.h new file mode 100644 index 00000000..4c3eb2e1 --- /dev/null +++ b/doc/headers/gnu_header.h @@ -0,0 +1,26 @@ +#ifndef {NAME}_CLASS +#define {NAME}_CLASS + +////////////// +// Name : {class name} +// Author : {your name} +// Rights : Copyright (c) 2012-$now By Author +////////////// +// This file is free software; you can modify/redistribute it under the terms +// of the GNU General Public License. [ http://www.gnu.org/licenses/gpl.html ] +// Feel free to send updates to: [ fred@gruntose.com ] +////////////// + +//! brief description goes here. +/*! + detailed description goes here. +*/ + +////////////// + +// class definition goes here....... + +////////////// + +#endif + diff --git a/doc/headers/shell_header.txt b/doc/headers/shell_header.txt new file mode 100644 index 00000000..739bb0b9 --- /dev/null +++ b/doc/headers/shell_header.txt @@ -0,0 +1,13 @@ +#!/bin/bash +#!/usr/bin/perl +#!/usr/bin/python +############## +# Name : {script name} +# Author : {your name} +# Rights : Copyright (C) 2012-$now by Feisty Meow Concerns, Ltd. +############## +# This script is free software; you can modify/redistribute it under the terms +# of the GNU General Public License. [ http://www.gnu.org/licenses/gpl.html ] +# Feel free to send updates to: [ fred@gruntose.com ] +############## + diff --git a/doc/headers/uva_header.java b/doc/headers/uva_header.java new file mode 100644 index 00000000..54b70eb7 --- /dev/null +++ b/doc/headers/uva_header.java @@ -0,0 +1,12 @@ + +////////////// +// Name : {class name} +// Author : {your name} +// Rights : Copyright (c) 2012-$now By University of Virginia +////////////// +// This file is free software; you can modify/redistribute it under the terms +// of the Apache License v2.0: http://www.apache.org/licenses/LICENSE-2.0 +// Feel free to send updates to: [ koeritz@virginia.edu ] +////////////// + + diff --git a/doc/perl_tools.html b/doc/perl_tools.html index 5c2c932e..eda77f29 100644 --- a/doc/perl_tools.html +++ b/doc/perl_tools.html @@ -9,8 +9,8 @@ - YETIcode Perl Scripts + content="reusable, open source, perl, shell, script, recursive, diff, snarf, yeti, free, source code, example, filename, snarfer"> + Feisty Meow Concerns Perl Scripts
-

YETIcode Open Source Perl +

Feisty Meow Concerns Codebase Open Source Perl Scripts

Some Hopefully Useful GPL-Licensed Perl Code

@@ -45,9 +45,9 @@ will have sympathy, but that's about it.
  • Some of these shell scripts depend on environment variables.  The most frequent case of this is FEISTY_MEOW_DIR, which should point to the top-level -directory where the YETIcode scripts are stored on your +directory where the Feisty Meow scripts are stored on your machine.   This variable is set by default when the scripts are in -the ~/yeti folder.  Consult your operating +the ~/feisty_meow folder.  Consult your operating system documentation if you are unfamiliar with the concept or management of environment variables.
  • These files are provided as possibly useful shell scripts @@ -209,7 +209,7 @@ destination of the comparison). passed on the command line into one gigundo stream which is passed to standard output. The output can be piped into another file as desired.

    generate_aliases.pl

    -
    Performs some useful activities for the YETI shell +
    Performs some useful activities for the shell environment.  Using the environment variable for FEISTY_MEOW_SCRIPTS (which is set in the appropriate startup files to be the shell scripts directory, where all this stuff lives), generate_aliases will create @@ -238,11 +238,9 @@ standard login, but with an extra fortune.
    Generates a signature file from the nechung database using the 'nechung' application.  See the HOOPLE library for the nechung + href="http://feistymeow.org/">Feisty Meow Concerns Codebase for the nechung application. - The database for nechung resides in the whole -YETI -package in "yeti/database".
    + The database for nechung resides in the whole Feisty Meow Concerns code package in "feisty_meow/database".

    renlower.pl

    Renames all of the files passed on the command line @@ -304,9 +302,7 @@ source code hierarchy is snarfed.  Note that one should edit the hierarchy location to make it appropriate for your local source code.
    -

    -

    snarf_yeti.pl

    -
    A snarfer for the YETI shell scripts and databases.
    +

    summing_dir.pl

    Offers a directory listing along with total file sizes diff --git a/doc/shell_header.txt b/doc/shell_header.txt deleted file mode 100644 index 739bb0b9..00000000 --- a/doc/shell_header.txt +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash -#!/usr/bin/perl -#!/usr/bin/python -############## -# Name : {script name} -# Author : {your name} -# Rights : Copyright (C) 2012-$now by Feisty Meow Concerns, Ltd. -############## -# This script is free software; you can modify/redistribute it under the terms -# of the GNU General Public License. [ http://www.gnu.org/licenses/gpl.html ] -# Feel free to send updates to: [ fred@gruntose.com ] -############## - diff --git a/doc/uva_header.java b/doc/uva_header.java deleted file mode 100644 index 54b70eb7..00000000 --- a/doc/uva_header.java +++ /dev/null @@ -1,12 +0,0 @@ - -////////////// -// Name : {class name} -// Author : {your name} -// Rights : Copyright (c) 2012-$now By University of Virginia -////////////// -// This file is free software; you can modify/redistribute it under the terms -// of the Apache License v2.0: http://www.apache.org/licenses/LICENSE-2.0 -// Feel free to send updates to: [ koeritz@virginia.edu ] -////////////// - -