Skip to content

Commit

Permalink
latest aa_macro
Browse files Browse the repository at this point in the history
  • Loading branch information
fyngyrz committed Jan 29, 2017
1 parent bf28652 commit 8095f0c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
10 changes: 7 additions & 3 deletions aa_macro.py
Expand Up @@ -29,8 +29,8 @@ class macro(object):
you written your congresscritter about patent and
copyright reform yet?
Incep Date: June 17th, 2015 (for Project)
LastRev: January 24th, 2017 (for Class)
LastDocRev: January 24th, 2017 (for Class)
LastRev: January 29th, 2017 (for Class)
LastDocRev: January 29th, 2017 (for Class)
Tab spacing: 4 (set your editor to this for sane formatting while reading)
Dev Env: OS X 10.6.8, Python 2.6.1
Status: BETA
Expand Down Expand Up @@ -63,7 +63,7 @@ class macro() is for authoring by you, the person who ISN'T trying to
someone who wants to do you wrong. Having said that, see the sanitize()
utility function within this class.
1st-Rel: 1.0.0
Version: 1.0.84 Beta
Version: 1.0.85 Beta
History: (for Class)
See changelog.md
Expand Down Expand Up @@ -1533,14 +1533,18 @@ def tcase_fn(self,tag,data):
o = ''
data = data.lower()
wlist = data.split(' ')
wc = 0
for w in wlist:
wc += 1
if o != '':
o += ' '
cap = True
for ncw in self.notcase:
if ncw == w:
cap = False
break
if wc == 1:
cap = True
if cap == True:
w = w.capitalize()
o += w
Expand Down
1 change: 1 addition & 0 deletions todo.md
@@ -1,3 +1,4 @@
# To-Do

* "Seed" operation that builds a project and the various page boilerplates
* staged backup capability. By day, by hour... N backups, etc.

0 comments on commit 8095f0c

Please sign in to comment.