log

age author description
Sat, 09 Jun 2012 22:25:49 -0500 Rob Landley Implement DIRTREE_SYMFOLLOW and ls -cSHL.
Sat, 09 Jun 2012 19:49:37 -0500 Rob Landley Feeding -1 to xdup() isn't an error.
Sat, 09 Jun 2012 19:06:49 -0500 Rob Landley Add ls -kqsunort, and fix -F @symlink.
Sun, 03 Jun 2012 00:32:12 -0500 Rob Landley Update chmod to work with new dirtree, and fix bugs in string_to_mode().
Fri, 01 Jun 2012 20:27:51 -0500 Rob Landley Changed my mind about the design again, now callback is dirtree_opennode() and recursion choice is how caller interprets flags.
Fri, 01 Jun 2012 20:04:39 -0500 Rob Landley Factor out dirtree_comeagain() callback, setting up depth-first search with open filehandle in node->extra.
Fri, 01 Jun 2012 17:59:11 -0500 Rob Landley Convert another realpath use to xrealpath().
Fri, 01 Jun 2012 13:51:22 -0500 Rob Landley Convert mktemp to use xrealpath, and general clean up while there.
Fri, 01 Jun 2012 13:50:41 -0500 Rob Landley Add xrealpath() at suggestion of Ashish Briggers.
Thu, 31 May 2012 21:22:10 -0500 Rob Landley Implement -C and -x for ls.
Thu, 31 May 2012 21:17:11 -0500 Rob Landley cp doesn't really need the optstring + logic. Still needs to be updated for new dirtree, though.
Sun, 27 May 2012 00:56:17 -0500 Rob Landley Update chgrp so -R works, tweaking DIRTREE_COMEAGAIN design along the way.
Wed, 23 May 2012 21:54:16 -0500 Rob Landley Probe available libraries to link --as-needed, avoiding "unknown libarary" errors.
Sun, 20 May 2012 15:00:19 -0500 Rob Landley dirtree logic cleanup: switch DIRTREE_NORECURSE and DIRTREE_NOSAVE to DIRTREE_RECURSE and DIRTREE_SAVE.
Sun, 20 May 2012 14:58:39 -0500 Rob Landley Silence pointless warnings.
Wed, 16 May 2012 21:11:43 -0500 Rob Landley First pass at a complete rewrite of string_to_mode(). (It compiled!)
Wed, 09 May 2012 06:39:01 -0500 Rob Landley Remove strndupa() gnu-ism at Georgi's suggestion, and adjust mdev to compile with new dirtree. (No idea if it works, this command was never finished and needs a lot more work.)
Wed, 09 May 2012 06:11:23 -0500 Rob Landley Whitespace (tabs vs spaces) cleanup.
Tue, 01 May 2012 11:45:45 +0200 Elie De Brauwer Addition of mktemp
Sat, 28 Apr 2012 01:22:50 -0500 Rob Landley Georgi pointed out that some overly-pedantic C libraries require you to include both "string.h" and "strings.h". (Most don't.)
Thu, 26 Apr 2012 19:59:38 -0500 Rob Landley Simplify/unify listfiles recursion: populate directory node (and detect top of tree) at start of function rather than end (and redundantly in main). Move title printing down next to total printing.
Tue, 24 Apr 2012 23:09:27 +0200 Elie De Brauwer Adding initial version of login.c
Tue, 24 Apr 2012 20:44:09 -0500 Rob Landley Make -d work in ls.
Tue, 24 Apr 2012 05:48:03 -0500 Rob Landley Require -R to recurse, but descend into directories listed on command line.
Sun, 22 Apr 2012 23:01:23 -0500 Rob Landley More work on ls. Now ls -lR sort of works-ish.
Sat, 14 Apr 2012 19:55:13 +0200 Elie De Brauwer Adding logname
Sat, 14 Apr 2012 22:34:34 -0500 Rob Landley Refactor uniq.c a bit.
Sat, 14 Apr 2012 22:31:53 -0500 Rob Landley Teach make.sh to create flag macros, but with the wrong names. Dunno how to make a translation macro or #ifdef guard to get the names right so they actually be _used_ yet...
Sat, 14 Apr 2012 22:30:41 -0500 Rob Landley Rewrite dirtree so we don't need readdir, scandir, and fts.h. Rewrite ls (from scratch) to use new dirtree infrastructure. (This breaks everything else that currently uses dirtree.)
Sat, 14 Apr 2012 21:43:24 -0500 Rob Landley Comment and whitespace changes.