PseudoField / Field-level query managers

2009-04-09 Thread Steve
n to arise, and check for one last hurrah among PseudoFields for results, and then returning them. That's the best I got so far. Thoughts? -Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django dev

'str' object has no attribute '_default_manager' fix? (#10405)

2009-09-22 Thread Steve
this, but if there is, I do not know it. I find it unreasonable in all but the simplest (AKA tutorial) project. In a 50~ app suite which 12~ projects pool, I'm really not sure how best to make certain models is loaded before forms in every case. Could I perhaps get some further

Potential bug in select_related() as of Beta

2010-02-17 Thread Steve
e 'questionable' join above, but even removing that entirely creates the same problem. I'll be glad to file a ticket, if the issue is something other than my ignorance. -Steve -- You received this message because you are subscribed to the Google Groups "Django developers"

Want to have unit tests in multiple files

2008-05-06 Thread Steve
Hi, we're just getting started using Django unit tests, and it looks like the documentation says you can only have unit tests in two files: models.py and tests.py. We would prefer to put our unit tests in many different files, with, say, each main-line .py file having a corresponding unit-test fi

App label for NFA

2008-09-10 Thread Steve
Please forgive me if this feature exists and I have overlooked it. Does anyone else think it would be desirable and useful to allow for overriding the default app-labels in NFA? By this I mean the headers which the ModelAdmin's fall under. I've got a situation where I have a 'core' project which

IOError: Client read error (Timeout?)

2006-07-03 Thread Steve
Hi, guys. This is a problem that troubled me for months, but maybe it is very easy to you. I guess it is an problem that has something relation with mod-python or cookie, but I am not sure. Since many corresponding softwares I use, between our production and develope server, are the same except L

Capturing faked migrations in django_migrations table

2015-05-13 Thread steve byerly
was faked vs migration 0003 in another app that was applied. Adding a NullBooleanField to the model would solve the issue, but I'm not positive if this is good practice. Thanks for the input in advance. -Steve -- You received this message because you are subscribed to the Google

Re: Capturing faked migrations in django_migrations table

2015-05-19 Thread steve byerly
ch the existing schema. If Django is >>> > auto-faking migrations that don't match the existing one that would be >>> a >>> > bug, but it's almost too conservative in that aspect. >>> > >>> > Are you manually faking these migrat

Re: Capturing faked migrations in django_migrations table

2015-05-19 Thread steve byerly
Awesome, thank you very much for the detailed answer. -Steve On Tue, May 19, 2015 at 4:16 PM, Shai Berger wrote: > Hi Steve, > > On Wednesday 20 May 2015 01:50:15 steve byerly wrote: > > > > I'm also unclear what the argument against storing in the migrations >

Re: Ideas for migrations squashing improvements

2015-05-22 Thread Steve Jalim
Amen to 3 and 3a - that's been proving one of the fiddliest aspects when there are lots of migrations to squash - trial-end-error checking of how many you can get away with squashing in one go while avoiding dependency issues from other apps On Thursday, May 21, 2015 at 11:08:42 AM UTC+1, Piotr

Re: Ideas for migrations squashing improvements

2015-05-22 Thread Steve Jalim
niu piątek, 22 maja 2015 10:49:11 UTC+2 użytkownik Steve Jalim napisał: >> >> Amen to 3 and 3a - that's been proving one of the fiddliest aspects when >> there are lots of migrations to squash - trial-end-error checking of how >> many you can get away with squashing in

set `object = None` on `SingleObjectMixin`

2015-08-14 Thread steve byerly
In the `SingleObjectMixin` generic view mixin, the `get_context_data` method checks if the object is set by using: `if self.object` I often include this mixin just for the `get_object` functionality and error handing it brings. I end up having to set `object = foo` or `object = None` to suppres

Re: set `object = None` on `SingleObjectMixin`

2015-08-14 Thread steve byerly
m wrote: > > Yes, the proposal isn't new. Here is some related discussion: > * https://code.djangoproject.com/ticket/21801 > * https://github.com/django/django/pull/2260 > * https://github.com/django/django/pull/4595 > * https://github.com/django/django/pull/4526 > &g

Re: Cleaning up broken pipe errors in runserver

2014-11-04 Thread Steve Jalim
Naive / over-obvious suggestion: if there's a genuine stalemate, bundling the changes into a third-party app that supplants core runserver (similar to how django-devserver does it) would avoid the need for individuals to monkey-patch while also making it possible to release versions with more s

Re: [RFC] Test methods filtering on tests run

2016-05-17 Thread Steve Jalim
erRunner to make https://pypi.python.org/pypi/django-juno-testrunner It's not the best code, but it works well for us. Maybe something in this pattern (ie, a flag to generate and consume a rerun log) might be another way? Steve > So the command would always be the same for testA, t

Admin: Allow FilterSpecs to return Q-likes

2016-10-06 Thread steve yeago
doesn't hope to address that comprehensively, I do think that some interesting options come into play when we stop authoring FilterSpecs to chain filters() and instead return Q-like objects which are then applied by the ModelAdmin or AdminSite. -Steve -- You received this message because yo

Idea: Add .checked(/) to QuerySet as alternative to .filter() w/ .first()

2022-06-20 Thread Steve Jorgensen
It is a common idiom to use `.filter(<...>).first()` as a replacement for `.get(<...>)` when `None` is wanted instead of an exception when no match is found. That works, but wouldn't the intention be more clear if that could be written as something like .checked(False).get(<...>) -- You recei

Re: JsonResponse have a DEFAULT_JSON_ENCODER setting

2022-06-23 Thread Steve Jorgensen
I think that seems like a good thing to be able to configure. On Thursday, June 23, 2022 at 7:54:56 AM UTC-7 Fab wrote: > Hey, > > With JsonResponse instead of the encoder defaulting to DjangoJSONEncoder I > was thinking it would be nice to have a setting like DEFAULT_JSON_ENCODER > so I can se

opening up RegexURLResolver

2009-04-16 Thread Steve Howell
But I decided to post here, since I think a lot of what I'm interested in learning about are the internals and dev philosophy behind the current limitation. Cheers, Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goo

Re: opening up RegexURLResolver

2009-04-16 Thread Steve Howell
> From: Ulrich Petri > > Am 16.04.2009 um 21:12 schrieb Steve Howell: > > http://www.djangosnippets.org/snippets/1444/ > > > > In writing this code, it occurs to me that other > advanced users might > > want more control over URL resolution, and it seems

Re: opening up RegexURLResolver

2009-04-18 Thread Steve Howell
I totally agree that returning an object is the way to go. I know a lot of other folks are busy getting the next release out, but after that, I am happy to submit a proposed patch. I think it should be straightforward to preserve the current api while still adding new functionality. On Apr

schema-evolution branch - docs and status?

2006-12-09 Thread Steve Hutton
nches/schema-evolution Thanks, Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to django-developers@googlegroups.com To unsubscribe from t

Re: Schema Evolution branch?

2006-12-28 Thread Steve Hutton
sily collaborate. http://groups-beta.google.com/group/django-users/browse_thread/thread/bd1417a08e37774a/67af32e775dae595 Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers&quo

Re: Should Django be HTML agnostic?

2007-01-13 Thread Steve Hutton
to know Python to create templates in Django. > But they would if they want to manipulate forms or form error feedback. > This should be consistent. I think this point also has significant merit. Steve [1] http://en.wikipedia.org/wiki/Single_responsibility_principle --~--~-~--~~-

Re: Schema Evolution branch?

2007-01-16 Thread Steve Hutton
lose the damned laptop >>> and go to bed...); please feel free to poke me again if I forget! >>> Jacob Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group

Re: please help! need to know python version

2007-07-07 Thread Steve Bergman
On Jul 5, 12:48 pm, anna <[EMAIL PROTECTED]> wrote: > Just in case anyone knows, is it the same with the other frameworks > for Python, like Pylons, Turbogears, etc? I'm thinking yes, based on > your answers here, but just wondering. > As someone coming to Django from TurboGears, I can say tha

Opportunity

2008-03-05 Thread Steve Brumwell
with an attractive salary. Steve Brumwell Sales Director www.iperium-consulting.com (P) +44(0)1564 793701 (M) +44(0)7810 801130 (F) +44(0)1564 795916 Skype id : steve.brumwell __ <http://www.iperium-consulting.

RE: Opportunity

2008-03-05 Thread Steve Brumwell
Sorry I am new to this - what do you mean? Steve Brumwell Sales Director www.iperium-consulting.com (P) +44(0)1564 793701 (M) +44(0)7810 801130 (F) +44(0)1564 795916 Skype id : steve.brumwell

Help with getting drop-downs to work

2008-04-13 Thread steve skelton
Trying to get admin on my system to load values based on related tables on db. I have set the FK on the papers table to tie with the PK of each look-up table and set models like so: class LuPaperContentEra(models.Model): paper_content_era = models.CharField(blank=True, maxlength=150) de

Re: floating point django.VERSION element versus adding another element to the tuple

2008-04-18 Thread Steve Holden
t;> consistent format, and one which is easy to turn into a human-readable >> string like "Django 3.2", "Django 1.4-beta3" or "Django >> 2.18-svn28183". >> >> The only question is whether it meets (1). Thoug Without wishing to turn this int

Re: SVN Milestones

2008-04-19 Thread Steve Holden
So would you prefer to have a beta-quality product whose developers >> lie and call it 1.0? >> > > I wouldn't even call the current svn head a beta-quality product > > Which is probably why it isn't yet a beta release? regards Steve -- Steve Holden

Re: SVN Milestones

2008-04-20 Thread Steve Holden
Kenneth Gonsalves wrote: > On 20-Apr-08, at 12:47 AM, Steve Holden wrote: > >>> I wouldn't even call the current svn head a beta-quality product >>> >>> >> Which is probably why it isn't yet a beta release? >> > > what

Re: API question for model saving

2008-04-28 Thread Steve Holden
yway simply call a modified save with alternative values of the flag (whose names are a little smelly, by the way) is reasonable, I suppose. But it does seem to me that create() and update() are more explicit than save(must_create=True) and/or save(must_update=True). The separate method solu

Re: API question for model saving

2008-04-28 Thread Steve Holden
ing code has to change initially. If you want to support the > must insert vs. must update difference, you can add a parameter (or two, > depending on which approach we take) and it's still backwards > compatible. > How do these parameters get set for the above "

Re: Django port on OpenVMS - Oracle/Rdb backend

2008-05-01 Thread Steve Holden
Jean-François wrote: > Any comment, especially on the transaction model? If you want considered opinions you would do well to wait longer than 51 minutes! regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www.holdenweb.

Re: Django port on OpenVMS - Oracle/Rdb backend

2008-05-01 Thread Steve Holden
Don Spaulding II wrote: > > > Collin Grady wrote: >> Steve Holden said the following: >> >>> If you want considered opinions you would do well to wait longer than 51 >>> minutes! >>> >> >> You should check the date as well a

Re: Lock-In

2008-05-04 Thread Steve Holden
In fact this question would be better addressed to a more general list, such as the comp.lang.python newsgroup (also available as [EMAIL PROTECTED]). See http://mail.python.org/mailman/listinfo/python-list for further information. regards Steve [EMAIL PROTECTED] wrote: > dja

Re: Subversion Access

2008-05-07 Thread Steve Holden
Rahein: Please also note that you are supposed to adjust your path so svn is runnable from anywhere, not run svn in its bin subdirectory. Google for "set path" followed by your operating system name if you don't know how to do this. regards Steve Dan Watson wrote: > Q

Re: range in templates?

2008-05-27 Thread Steve Holden
I missing? > Well, the first thing you are missing is that the django-dev list is to discuss development *of* Django rather than development *with* Django. You want django-users, just down the corridor :-) regards Steve -- Steve Holden+

Re: extra() and values()

2008-06-11 Thread Steve Holden
case you would be better off leaving it unclaimed until you are ready to work on it. Moset people look for unassigned tickets when they have bug fixing time, to avoid repetition of work. regards Steve --~--~-~--~~~---~--~~ You received this message because you

Bug that cannot be reproduced

2008-06-14 Thread Steve Potter
elf due to another bug. I don't know any other way of re- producing it. Do I open a ticket and submit a patch (for which I have no idea how to make a test case)? or Do I just leave it alone as if everything else is working properly, it may never reveal itself again?

Re: Bug that cannot be reproduced

2008-06-15 Thread Steve Potter
On Jun 15, 2:08 am, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Sun, Jun 15, 2008 at 2:43 PM, Steve Potter <[EMAIL PROTECTED]> wrote: > > > I recently ran across a bug in Django and was pointed to ticket #7199 > > that described the sa

Re: Errors in django/tests/regressiontests/views/fixtures/testdata.json?

2008-06-19 Thread Steve Holden
were disabled, so automated checks could be limited to those? Otherwise I'd guess you end up saying "Tough, MySQL is currently broken/less capable". Maybe we could talk to Ted Leung about that? regards Steve --~--~-~--~~~---~--~~ You received

Re: Spam detection

2008-06-26 Thread Steve Holden
to lack of authentication, presumably this is supposed to mislead spammers? Why not begin the message with: "Did you register an account and log in before submitting your issue? Non-registration is the most common cause of this error. Please click here to register an account before submitt

Re: Community representation

2008-07-02 Thread Steve Holden
for a more capable community in the end, and is better from a learning point of view. Besides which, sometimes it's amusing to watch the conversations. We are a long way from the c.l.perl flaming of newbies. People are definitely getting the answers they need, and Magus is a prime

Re: Spam detection

2008-07-02 Thread Steve Holden
here, like I did myself initially. ... and why not have it say "Your post *will* be rejected as spam unless you are registered and logged in"? At the moment it sounds like you *might* get away with an unregistered posting. regards Steve -- Steve Holden+1 571 484 6266 +1 8

Re: Community representation, or, #django user "Magus-" needs to go far away

2008-07-02 Thread Steve Holden
Eric wrote: > Well, you can teach someone to fish without telling them to "get an > f'n fishing pole". > > "Give a man a fish and he will eat for a day. Teach him how to fish and for the rest of his life he will bore you with stories about the one

Re: Declarative syntax for widgets in ModelForm

2008-07-06 Thread Steve Holden
ields and widgets but we cannot declare them separately. > > > ## Proposal > > To fix this I was thinking along the lines of: > > class ArticleForm(ModelForm): > class Meta: > model = Article > fields = ['author', 'text'] >

Re: ~Q broken?

2008-07-16 Thread Steve Holden
ry for each row in the outer query, which can get a little expensive. Then later said: > The problem is that the filter you specified was not returning the > correct answer in 0.96. You're asking that Django returns an incorrect > result to make your code faster. It's possibl

Re: Is URL template tag's syntax going to change?

2008-07-20 Thread Steve Holden
Johannes Dollinger wrote: [...] > Of course that's subjective, everything is. > Really? That's a bit sweeping. "The atomic number of hydrogen is 1" (IMHO?). regards Steve Who just felt like picking this particular nit. Sorry. -- Steve Holden+1 571 484 626

Re: Session expiration times

2008-08-20 Thread Steve Holden
fault behavior for every other web framework I've used. Interaction of any kind with the server should be taken as an indication that the session user wants the session to remain alive. At least it's documented, though ... regards Steve -- Steve Holden+1 571 484 6266 +1 800 494

DjangoCon

2008-09-05 Thread Steve Holden
Well, since I can't make the conference I hope that everyone who *does* get there has a great time! regards Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group. To pos

Re: Mentoring students

2008-09-05 Thread Steve Holden
/sb/queensland/qut/ > Chris: Any project that was involved with the Google Summer of Code might well be interested in mentoring student projects. You might also want to ask on the django-users list (if you haven't already), as there may be applications of Django that meet your requirements.

Re: I want a pony: Django Cheeseshop

2008-09-10 Thread Steve Holden
of fragmenting the infrastructure. That's what it's there for - supporting Python users. regards Steve [PSF chairman] --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django developers" group.

Re: I want a pony: Distributed RCS

2008-09-10 Thread Steve Holden
. Very Scary. Close your eyes. Little girls > are screaming. > Well, speaking as an old fart, and something of a stick-in-the-mud, I am interested in using the best possible version control system, but even more interested in something that's easy to use. When you consider attract

Re: I want a pony: Distributed RCS

2008-09-12 Thread Steve Holden
Jacob Kaplan-Moss wrote: [...] > > So, again, sorry about being a dick! > Well at least you're a dick with a proper sense of proportion and the ability to apologize when necessary. Thanks for setting a good example. regards Steve -- Steve Holden+1 571 484 6266 +

Re: I want a pony: Django Cheeseshop

2008-09-14 Thread Steve Holden
ers have a need to change the code (though I am not sure why they would) that too would be possible. The only proviso to that is that the existing web APIs used by distutils and setuptools need to be retained. If they weren't, of course, it would kind of nullify the point of using PyPi in the

Re: Install over old level produces mutant [solved!]

2008-09-16 Thread Steve Holden
subdirectories) did *not* change the creation time of the .py file. So the answer is to put another step in the build process that touches all files before bundling them up for distribution. Obviously this is best done outside the version control system. regards Steve --~--~-~--~~---

Re: Install over old level produces mutant [solved!]

2008-09-16 Thread Steve Holden
Steve Holden wrote: [...] > I've just done an install of 1.0 on my Python 2.6 alpha2 distribution > and I see, for example, that .../django/views/static.py is dated > 12/17/2007. In this case there wasn't a previous installation, so I > can't verify that the comp

Re: Install over old level produces mutant

2008-09-16 Thread Steve Holden
ks at the timestamp > when deciding whether to recompile a PY file, so if your PYC files for > 0.96.x were created later than the corresponding 1.0 file, Python will > pick up the wrong file). > > is the installer you're referring to here "setup.py", or something e

Re: I want a pony: Django Cheeseshop

2008-09-16 Thread Steve Holden
equired interpreter as a component of your application or framework. There is no reason why your Python program and mine need have any components in common, and increasingly less reason to enforce this requirement to save disk space. Having s

Re: [Fwd: Documentation: Google-foo lost]

2008-09-19 Thread Steve Holden
anisms I am unaware of? I don't know whether the current redirection will eventually cause the web search engines to throw away the old references, but it would be nice to be able to move them forward if possible. regards Steve --~--~-~--~~~---~--~~ You r

Re: [Fwd: Documentation: Google-foo lost]

2008-09-19 Thread Steve Holden
Jacob Kaplan-Moss wrote: > On Fri, Sep 19, 2008 at 2:19 AM, Steve Holden <[EMAIL PROTECTED]> wrote: > >> The question is: is it worth continuing this web-scraping and analysis >> and potentially extending it to other reference mechanisms I am unaware >> of? I

Re: [Fwd: Documentation: Google-foo lost]

2008-09-20 Thread Steve Holden
Jacob Kaplan-Moss wrote: > On Fri, Sep 19, 2008 at 2:19 AM, Steve Holden <[EMAIL PROTECTED]> wrote: > >> The question is: is it worth continuing this web-scraping and analysis >> and potentially extending it to other reference mechanisms I am unaware >> of? I

Re: [Fwd: Documentation: Google-foo lost]

2008-09-20 Thread Steve Holden
Steve Holden wrote: > Jacob Kaplan-Moss wrote: >> On Fri, Sep 19, 2008 at 2:19 AM, Steve Holden <[EMAIL PROTECTED]> wrote: >> >>> The question is: is it worth continuing this web-scraping and analysis >>> and potentially extending it to other reference

Re: Denormalisation, magic, and is it really that useful?

2008-09-23 Thread Steve Holden
tside the scope of the denormalization, and hence no need to recompute the denormalized values. regards Steve Andrew Godwin wrote: > David Cramer wrote: > >> If you're not doing denormalization in your database, most likely >> you're doing something wrong. I reall

Re: Python 2.6 abstract base classes

2008-10-03 Thread Steve Holden
t; and whilst we have some similar code for other backwards compatibility > reasons, the existing cases are requirements. This one is optional, so > I'd much rather avoid it for now. > +1 Trendy might be superficially appealing, but I personally felt 2.6 would have been just as use

Re: GET requests should not alter data?

2008-10-15 Thread Steve Holden
used by openid consumer, from the point of view of scaling. > While I can see the generic desirability of GET requests not making database writes there are always going to be exceptions. Let's not pursue this as a purist goal, but rather for the sound pragmatic reasons that have already

Re: Determining the active urlpattern for navigational templates

2008-10-16 Thread Steve Holden
ads {% for sec in lNavSecs %} {% for p in sec.pages %} {% ifequal path p.pagpath %} {{ p.pagdoctitle }} {% else %} {{ p.pagdoctitle }} {% endifequal %} {% endfor %} {% endfor %} It's usually eas

Re: Proposal: Optional {% default %} clause for the {% for %} template tag

2008-10-29 Thread Steve Holden
king assumptions then simply isn't good for anyone involved. > > +1 for a default, -1 for calling it else > +1 to both the +1 and the -1. It *will* confuse Python programmers who also happen to write templates, and personally I think {% empty %} expresses the meaning much more clearly

Re: Proposal: Optional {% default %} clause for the {% for %} template tag

2008-10-29 Thread Steve Holden
Jacob Kaplan-Moss wrote: > I'm with Steve:: > > {% for %} ... {% default %} .. {% endfor %} > > ... seems best. > > Agreement is great, but my suggestion was actually {% for %} ... {% empty %} ... {% endfor %} I feel this says more than "default"

Re: 1.0.1 release blockers?

2008-10-31 Thread Steve Holden
er than 1.0, and 1.0.1 released in the very near future with n-x > bugs fixed is better than 1.0.1 released at some unknown future data > with those those additional x bugs fixed. > Well right, that'll be 1.0.2 if it's needed. Though with 1.1 on the way it seems less than likely.

Re: contrib.comments: working example must make a boost.

2008-11-07 Thread Steve Holden
running. (Of course, I have some work copy) > > With a positive attitude like that I *really* hope you will be at the PyCon sprints next year! As far as Django's concerned I'm pretty much a user not a developer, but they do have a very knowledgeable and helpful community on both si

Re: contrib.comments: working example must make a boost.

2008-11-07 Thread Steve Holden
, but you could consider applying. Keep your eye on us.pycon.org. > >> As far as Django's concerned I'm pretty much a >> user not a developer, but they do have a very knowledgeable and helpful >> community on both sides of the line. > > OK, Steve, consequences? I have

Re: Proposal: Composite Foreign Keys

2008-11-13 Thread Steve Holden
ect number > of database columns at table creation time. We have perfect information > when we create the table, which is where this differs from any generic > relations. > [...] Does that apply even to recursive (reflexive) relationships, when the related model must be specified by

Re: Proposal: Composite Foreign Keys

2008-11-13 Thread Steve Holden
Malcolm Tredinnick wrote: > On Thu, 2008-11-13 at 23:47 -0500, Steve Holden wrote: > [...] > >>> Maybe be you mean transparently. If so, I think this is a requirement, >>> too, but it's not a problem. We know when the ForeignKey field is >>> spec

Re: Multi-Threaded Dev Server

2008-11-16 Thread Steve Holden
Julian wrote: > [...] I think some people want to use snippets like that [...] Wouldn't you agree that's a pretty feeble use case for something as potentially disruptive as multi-threaded serving? Particularly when the CherryPy alternative is so readily available. regards St

Re: Proposal: Composite Foreign Keys

2008-11-16 Thread Steve Holden
x27;s gotta be some > more pythonic (battery-included, there's only 1 obvious way) way of > dealing with this. > > Well, you've certainly expanded on your frustration. To say that the required changes could be made in less than 24 hours is a breathtaking oversimplification, how

Re: Using a HTML to fire off a data processing script on the server (REST or SOAP)

2008-11-19 Thread Steve Holden
address the django-users list. Thank you. regards Steve Shao wrote: > Dear ALL, > > I am very much interested in using a HTML to fire off a data > processing script to run over the internet. > > I will be very grateful if you can advise me on passing parameters > from an HTML form

Re: order_by with distinct behavior in orm

2008-11-19 Thread Steve Holden
Malcolm Tredinnick wrote: [...] > Hopefully, MySQL will fix their bug one day. That's the way to resolve > this. > Just so long as nobody holds their breath waiting ... regards Steve -- Steve Holden+1 571 484 6266 +1 800 494 3119 Holden Web LLC http://www

Re: Template-04's scope

2008-11-25 Thread Steve Holden
ve a better API on top that > third-party tags can use -- as long as internal tags don't break. > Heretical suggestion: {: :}, {! !}, {$ $} or {[ ]} with a different processor (falling back to the original if necessary), and therefore no need for a fully backwards-compatible approach?