... Can it be used to build vim as it currently is? I guess that you use vim as a test bed for a-a-p? ... Do you warn for a trojan horse ;-) ? ... Sounds...
... Probably. I didn't try it though. ... I will. But there are many things to do, and I have to set priorities. ... No, but I did manage to accidentally...
May was a very good month. The first version of the "Recipe Executive" was made available (should find a shorter name!). In just a few weeks it has grown...
... Can the timestamp be used also? I have some files that are changed by several people, and than published on a web site. Can rex help in this? (Is my own...
... Can the timestamp be used also? I have some files that are changed by several people, and than published on a web site. Can rex help in this? (Is my own...
... Can the timestamp be used also? I have some files that are changed by several people, and than published on a web site. Can rex help in this? (Is my own...
[I wonder why I got multiple copies of this message...] ... The MD5 check is the default at the moment. Later a special check for C and C++ files would be the...
... Thanks for the explanation. I have considered the alternatives, and decided to remember the signature for each source-target pair. This does mean that a...
I have implemented a module to detect the type of a file. The mechanism is based on how it works in Vim, since that works quite well and I couldn't find...
In June the recipe executive module was further enhanced. Quite a few tough issues have been dealth with. The choice for mixing Makefile and Python syntax...
On Mon, 1 Jul 2002, Bram Moolenaar wrote: Thanks for this update. ... Isn't the typeless nature of python a problem when you try to build good solid code? I...
... It's true that Python leaves most of the testing to the user. The largest potential problem I see is using a function that wasn't imported and passing a...
... I'd highly recommend implementing a testing discipline in your process up front. On SCons, we have a policy (adopted from and enforced by Aegis) that...
Steven Knight
knight@...
Jul 1, 2002 7:00 pm
15
... Although I agree with doing a lot of testing, A-A-P is still in a phase where the design is more important than correct code. The main goal currently is...
Hello, Is there a possibility to create a CVS store (another is also ok), in order to have an easy update possibility for a-a-p? In a fast changing project...
... Today I have started using the CVS repository at SourceForge. You should be able to checkout the "Exec" module, which is the Recipe Executive. See...
Hi Bram, On Mon, 08 Jul 2002 22:01:06 +0200 ... Sourceforge allows you to upload keys via web interface only. 1. Login ( top/left at http://sf.net ) 2. Choose...
Thorsten Maerz
torte@...
Jul 8, 2002 8:38 pm
19
... This works, thanks. For updating, only cvs update in the Exec directory is needed, when you've already checked out a version. ... cvs commit is not enough?...
Thorsten - ... Thanks for the hint! I didn't know this also worked for the CVS server. -- Why don't cannibals eat clowns? Because they taste funny. /// Bram...
... Yep, that's easy. ... That doesn't add new files or remove old files. The recipe I'm using for creating the .zip archive already contains a list of all...
... Good point, should be easy (cvs add, cvs remove) ... For a SCM system, you don't want to change history. But I do agree, that a little misstake can be...
... It isn't on my system (FreeBSD): "python" is a hard link to either "python1.5" or "python2.2". I have now changed the test script to use "sys.executable"....
In case you didn't notice it yet, the current version of the Recipe Executive can obtain files from a CVS repository (this requires the "cvs" command, Vim...
Most of July was spend on integrating version control with the existing functionality. Adding more functionality has the problem of making the use of A-A-P...
... Always good to keep consistency in mind, in this stage of the project, those changes can be made without breaking anything important. ... Code Manager &...
... How do you create a branch in CVS anyway? It's not obvious. A-A-P attempts to provide a uniform interface to the version control system being used, so...
I ran into this issue and can't find a good solution. I hope someone knows the answer to this one. When executing a shell command with ":system", the exit...
... Check google groups (groups.google.com). All solutions there read something like this: { the-command; } 2>&1 ; echo $? > res.tmp | tee /tmp/@... and then...
dionn@...
Aug 19, 2002 11:05 am
30
... I've only a pointer for you. Hopefully someone will have a better answer, but you should be able to make some creative use of the $? special parameter? ...