1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414
|
02 May 2001 W. Michael Petullo <mike@flyn.org>
* Fixed error message printing when new_proj execs new.
* Changed exit(1) to exit(EXIT_FAILURE) and exit(0) to
exit(EXIT_SUCCESS).
26 April 2001 W. Michael Petullo <mike@flyn.org>
* Cleaned up new new_proj code.
12 April 2001 W. Michael Petullo <mike@flyn.org>
* Added -y parameter to new; forces file type.
* Added -p parameter to new; sets file permissions.
19 February 2001 W. Michael Petullo <mike@flyn.org>
* No more gzclose after fopen.
07 January 2001 W. Michael Petullo <mike@flyn.org>
* zlib is no longer required. Now --enable-zlib configure
argument is available.
* Began to add/test support for several Linux distributions,
Tru64 UNIX, FreeBSD, and OpenVMS. Thanks, Compaq, for your Test
Drive program.
* Cleaned up some compiler warnings.
01 January 2001 W. Michael Petullo <mike@flyn.org>
* Wrapped Makefile clauses intended for local development in an
automake if then.
18 November 2000 W. Michael Petullo <mike@flyn.org>
* Added remove_underscore modifier.
18 November 2000 W. Michael Petullo <mike@flyn.org>
* New now provides DAY, MONTH, and YEAR instead of DATE.
* Updated templates to use DAY, MONTH, and YEAR.
05 November 2000 W. Michael Petullo <mike@flyn.org>
* Added --set command line argument.
* PAIR_DESTROY IS NOW PASSED TO BISTREE_INIT AND LIST_INIT --
watch for problems!
04 November 2000 W. Michael Petullo <mike@flyn.org>
* Moved much of the .am, .sgml, etc. templates to a separate
project, flyn_templates.
* Replaced a bunch of foo->bar ? foo->bar : baz with foo &&
foo->bar ? foo->bar : baz. One of these was causing a core dump.
* new_proj foo --list works again.
29 October 2000 W. Michael Petullo <mike@flyn.org>
* Took out some || true's from Makefiles.
28 September 2000 W. Michael Petullo <mike@flyn.org>
* Began to add a GNOME applet project.
24 September 2000 W. Michael Petullo <mike@flyn.org>
* Added FIRSTNAME, MIDDLENAME, and LASTNAME to fillers. These are
ripped out of the GECOS field of /etc/passwd.
03 September 2000 W. Michael Petullo <mike@flyn.org>
* Got new_proj to work again.
* Made a new project (wnc). Fixed some template bugs that
came up.
15 August 2000 W. Michael Petullo <mike@flyn.org>
* Cleaned up _handle_fmt_str.
02 August 2000 W. Michael Petullo <mike@flyn.org>
* Added new_proj manpage to dry.
* Fixed problem in new that cause a seg. fault when the file
modifier was used on a non-existant file.
28 July 2000 W. Michael Petullo <mike@flyn.org>
* Began to clean up SGML and use DocBook elements.
* DRY files are not rebuilt when building distribution.
11 July 2000 W. Michael Petullo <mike@flyn.org>
* Fixed docbook2X rpm; man pages now build.
11 July 2000 W. Michael Petullo <mike@flyn.org>
* Fixed bug in parent directory generation which occured when
all the directories in an absolute path existed.
08 July 2000 W. Michael Petullo <mike@flyn.org>
* Added ability to make parent directories for specified files
to new_proj.
* Moved stuff to src, dry, include, etc. subdirectories.
07 July 2000 W. Michael Petullo <mike@flyn.org>
* Man pages now written using Docbook.
24 June 2000 W. Michael Petullo <mike@flyn.org>
* Removed parenthesis from word example in templates.
08 June 2000 W. Michael Petullo <mike@flyn.org>
* Began to use SGML to employ DRY principle.
* Now replaces %%(...) with %(...) in resulting file.
25 May 2000 W. Michael Petullo <mike@flyn.org>
* Added -t command line argument which gives path to template.
* Added comments: %(# This is a comment and will not be included
in the destination file).
20 May 2000 W. Michael Petullo <mike@flyn.org>
* Fixed problem figuring out filetype for files beginning with
a dot. Thanks Jonathan B. Leffert!
* Brought new_proj up to speed.
18 May 2000 W. Michael Petullo <mike@flyn.org>
* Moved army templates to army_tex package.
15 May 2000 W. Michael Petullo <mike@flyn.org>
* Cleaned up fmt_ptrn.c.
* Documented fmt_ptrn.h.
* Added mention of libfmt_ptrn to documentation.
12 May 2000 W. Michael Petullo <mike@flyn.org>
* Moved some code to new_util.c from new.c and new_proj.c.
* Fixed a whole bunch of crap.
12 May 2000 W. Michael Petullo <mike@flyn.org>
* Moved some code from template.c to new.c.
08 May 2000 W. Michael Petullo <mike@flyn.org>
* Moved a few globals into the fmt_ptrn_t datatype.
* Got rid of fmt_ptrn_[(init)|(destroy)]; functionality moved to
fmt_ptrn_[(open)|(close)].
30 April 2000 W. Michael Petullo <mike@flyn.org>
* Changed fmt_ptrn_readline to fmt_ptrn_gets, uses fgets interface.
* Got rid of mallocs in _lookup by making pair used to lookup
values persistent.
23 April 2000 W. Michael Petullo <mike@flyn.org>
* Added template_filled function.
* Cleaned up code; removed a lot of minor FIXMEs.
21 April 2000 W. Michael Petullo <mike@flyn.org>
* Fixed _apply_before.
* Buffers initialized to a sane length to avoid mallocs.
16 April 2000 W. Michael Petullo <mike@flyn.org>
* Stack datatype is now static; should increase speed.
* Added sizes.h, which defines sizes for static structures.
* Implemented file modifier.
* Template.c now uses ``while (readline) write'' approach.
* Updated some templates to use PROJ_NAME.
* Added leading _ to static variable in lib .c template.
12 March 2000 W. Michael Petullo <mike@flyn.org>
* Added Michael Smith's fix to template.c; checks environment
key/val pairs for being NULL before strduping them. Thanks!
09 March 2000 W. Michael Petullo <mike@flyn.org>
* Cleaned up man page.
* Released 1.0.
23 February 2000 W. Michael Petullo <mike@flyn.org>
* Fixed army_memo template; had fullname, email, etc. hardcoded.
* Added resume .tex template.
19 February 2000 W. Michael Petullo <mike@flyn.org>
* Added mpeg_encode template, will be moved to mpeg_encode
project eventually.
* Began using binary search trees for key value maps.
* Added pair_destroy () to clean up memory leak.
* Added EMPTY_STR, a special format pattern.
* Fillers are now a global in the fmt_ptrn library. This allows
the modification and updating of them to be abstracted a little
more.
* Fixed a seg fault cause by forgetting to call pair_init ().
* Tested all options, tested several templates, and fixed
compile warnings.
03 February 2000 W. Michael Petullo <mike@flyn.org>
* Add spec template name to corresponding line in gnu_c project.
* Fixed problem which caused files created by new_proj to
sometimes have garbage at the end.
31 January 2000 W. Michael Petullo <mike@flyn.org>
* Started new_proj man page.
* Ran indent on source.
30 January 2000 W. Michael Petullo <mike@flyn.org>
* new_proj is now beginning to come to life.
* Fixed a bug in list_rem_next. This is what was causing a
core dump in new_proj; the parse error queue would be filled,
emptied, and filled for the next template. Emptying the queue
the second time dumped core because size == 2 but head == NULL.
26 January 2000 W. Michael Petullo <mike@flyn.org>
* Changed method of handling Makefile and other filenames without
extensions. If the filename has no extension, the whole filename
is used when looking for a template directory.
25 January 2000 W. Michael Petullo <mike@flyn.org>
* Got rid of a few memory leaks.
* Cleaned up a bit.
* Got rid of some unneeded dynamic memory use (mallocs, strdups,
etc).
24 January 2000 W. Michael Petullo <mike@flyn.org>
* Began to add line numbers to parse error messages.
20 January 2000 W. Michael Petullo <mike@flyn.org>
* Began to add the concept of detecting and reporting parse
errors.
* Templates now take advantage of new modifiers.
18 January 2000 W. Michael Petullo <mike@flyn.org>
* Added upper, lower, and basename modifiers.
* Added *_delim modifiers.
* Added fn modifier.
* Removed BASENAME key: use basename modifier instead.
* Added the ability to apply multiple modifiers in one format
string.
16 January 2000 W. Michael Petullo <mike@flyn.org>
* Added lib .h and .c templates.
* Split project into a binary executable and shared library.
* Began to add the concept of modifiers.
14 January 2000 W. Michael Petullo <mike@flyn.org>
* Added missing negative sign in at_path () which caused new to
not find some templates.
10 January 2000 W. Michael Petullo <mike@flyn.org>
* Added ``CFLAGS = -Wall'' to .am default template.
* Fixed the problem with realloc.
* Fixed problem with alternates alway being written, whether
there was a value for the given key or not.
* Added a TODO template.
08 January 2000 W. Michael Petullo <mike@flyn.org>
* Fixed writing to output file in new.c. I was writing extra
carriage retunrs.
* Began porting fmt_ptrn to C. Also ported new to C to
demonstrate that fmt_ptrn worked in its new form. I wanted
to be able to easily use fmt_ptrn's functionality in C code,
as opposed to C++.
02 January 2000 W. Michael Petullo <mike@flyn.org>
* Added AUTHORS template type.
* Templates now reference RPM_BUILD_ROOT, WEB_DIR, and RPM_TOP_DIR
rather than hard coded directories.
* Added %(ENV:alternate) syntax (see README).
28 December 1999 W. Michael Petullo <mike@flyn.org>
* Cleaned up new.cpp a bunch.
04 December 1999 W. Michael Petullo <mike@flyn.org>
* Made GLOBAL_TEMPLATE_DIR configured by autoconf.
* Got rid of several global variables.
21 November 1999 W. Michael Petullo <mike@flyn.org>
* Added --list argument to list available templates, given a filename.
* Cleaned up code a bit.
06 November 1999 W. Michael Petullo <mike@flyn.org>
* Cleaned up a few templates.
02 October 1999 W. Michael Petullo <mike@flyn.org>
* Added template for Xinvest files.
29 September 1999 W. Michael Petullo <mike@flyn.org>
* Removed debug statement which printed date.
* Fixed problem in .spec and .in templates.
20 September 1999 W. Michael Petullo <mike@flyn.org>
* Fixed bug causing the year to be dropped for long months
(ie: September). A string was too small.
18 September 1999 W. Michael Petullo <mike@flyn.org>
* Added --force or -f option.
* Templates are now compressed in the build process, templates are
again plain text in the source tree.
* Updated freshmeat to point to http://www.flyn.org/src/new.tar.gz
instead of version specific filename.
16 September 1999 W. Michael Petullo <mike@flyn.org>
* Added ability to read gzip template files.
11 September 1999 W. Michael Petullo <new@flyn.org>
* Checks for existing file before overwriting.
* Added README file.
* Cleaned up templates.
29 August 1999 W. Michael Petullo <new@flyn.org>
* Date format is now 1 January 2000 instead of 1 JAN 2000.
01 AUG 1999 W. Michael Petullo <new@flyn.org>
* Added a letter template for tex documents.
* Removed #include <timeutil.h> from new.cpp.
|