[symfony-devs] Re: Plugin features - sfDatagridPlugin

2009-06-11 Thread Ian P. Christian
2009/6/11 Steve the Canuck steve.san...@gmail.com: Thanks.  I imagine he probably gets a lot of emails.  I am just here to help. Actually , I confused sfDatagrid with sfGrid, and I dno't know the author ;) I'd like to think he isn't ignoring you though! -- Blog: http://pookey.co.uk/blog

[symfony-devs] Re: Plugin features - sfDatagridPlugin

2009-06-10 Thread Ian P. Christian
2009/6/10 Steve Sanyal steve.san...@gmail.com: I emailed the author of the plugin, but I haven't heard back yet.  I am wondering what's the best way to contribute, whether the work is used or not. I'm sorry that's the case - I know the guy and I imagine he's just a little busy at the moment.

[symfony-devs] Security issue fixed in sf1.2 and sf1.3

2009-04-24 Thread Ian P. Christian
A few hours ago, Romain Dorgueil (hartym) fixed a security problem he found in the admin generator (1.2, 1.3) which could cause data loss, or data injection if user did not remove necessary fields in the form class, but did choose some fields for display in generator.yml. The patch is made by

[symfony-devs] Re: Race Condition with sfFileCache and sfConfigCache

2009-01-29 Thread Ian P. Christian
2009/1/29 Greg greg.bryant...@googlemail.com: Has anyone else had this issue, and come up with any solutions. I'm seeing it in Symfony 1.0, but looking at the 1.2 code base it would have the same issue. I've seen issues with corrupt cache before in symfony too.

[symfony-devs] Re: Race Condition with sfFileCache and sfConfigCache

2009-01-29 Thread Ian P. Christian
Does your fix stop this from happening? I'm not entirly sure it's the same issue as I reported in that mail I linked to, but it certainly looks like a bug. If you're fix works, I suggest creating a ticket with the patch. Good work :) On 29/01/2009, Greg greg.bryant...@googlemail.com wrote:

[symfony-devs] Re: Admin 1.2 Routing Bug

2009-01-05 Thread Ian P. Christian
I've just hit this problem too - bug #5457 reports it. Did you have any luck solving this Ken? 2008/11/20 Ken Marfilla marfillas...@gmail.com: I think I found a bug. On dev environment the form tag of the edit form outputs the action properly however switching to prod or to other

[symfony-devs] Re: SF newbie desperatily seeking help on developing Symfony plugins

2008-07-14 Thread Ian P. Christian
Bit Byter wrote: 1). I have a very rich user model, which comprises of user related data stored accross several tables. also my user table has many fields that are not in the user table provided by the sfAuthGuard plugin. I would like to use the Authentation mechanism provided by the

[symfony-devs] Re: Alias for routing rules

2008-07-14 Thread Ian P. Christian
ibolmo wrote: I had a similar idea today, but pookey made a good point: search engines discern this practice. I think if the alias, wraps the url to a permanent 303 then it would be fine. I'm very torn about this idea Duplicate content is bad, we (should) all know that. So, maybe

[symfony-devs] Re: Community maintained plugin: sfFormtasticPlugin

2008-07-11 Thread Ian P. Christian
Kris Wallsmith wrote: Hi all, I'm happy to announce the development of a new plugin, sfFormtasticPlugin. Anyone with commit access to /plugins is welcome to pitch in here and extend the new sfForm classes **to be more developer friendly.** One item on the roadmap is the YAML adapter layer

[symfony-devs] Re: RFC - securing _dev files

2008-06-07 Thread Ian P. Christian
Fabian Lange wrote: Hello, I put a proposed patch to http://trac.symfony-project.com/attachment/ticket/2352/secure_dev.patch but there are some issues that remain: a) Do we change this in 1.0 (proposal: no) Agreed. b) Do we update the controllers on upgrade (proposal: no) Agreed. c) Where

[symfony-devs] Re: install symfony with wamp!?

2008-06-07 Thread Ian P. Christian
[EMAIL PROTECTED] wrote: everything is OK, but whe, I tried to generat schema.yml from my db, it says mysql extension not loaded, anyone have an idea? Not a dev issue - please repost on the user list. Thanks! (hint: you need to modify your PHP isntall so that the MySQL extension is

[symfony-devs] Re: RFC - securing _dev files

2008-05-30 Thread Ian P. Christian
Ian P. Christian wrote: I want to hear from you all as to what you think the best method for securing the default _dev files - I will not suggset anythign now, as I want to present a blank slate. I think we've all agreed that this needs implementing, and will be done by modifying

[symfony-devs] Re: RFC - securing _dev files

2008-05-22 Thread Ian P. Christian
[EMAIL PROTECTED] wrote: Well, I'll give a more detailed advice... Oh and it's a -1 : I'm afraid that wanting a controller secured out of the box is an error. With a check based on IP you have the feeling of security, but this is a mistake as the IP is easy to change and fake. If you

[symfony-devs] Re: RFC - securing _dev files

2008-05-22 Thread Ian P. Christian
colnector (colnect.com) wrote: How about using .htaccess or other server methods to rewrite *_dev.php to either 404 or some security checking script? Please read the whole thread!! :P your solution is apache specific. --~--~-~--~~~---~--~~ You received

[symfony-devs] Re: RFC - securing _dev files

2008-05-20 Thread Ian P. Christian
Bert-Jan wrote: I've implemented it in an easier way (very much easier if you run a lot of symfony-based websites on a server): Simply deny access to your *_dev.php files in the configuration of apache. It does it the same way for .ht* files. With deny from all, allow fromyour ip you can

[symfony-devs] Re: RFC - securing _dev files

2008-05-20 Thread Ian P. Christian
Tristan Rivoallan wrote: On Tue, May 20, 2008 at 10:14 AM, Ian P. Christian[EMAIL PROTECTED] wrote: Having said that What are peoples thoughts on having IP restricted / htpasswd restricted stuff in the default .htaccess, but commented out. yes that could go nicely along

[symfony-devs] RFC - securing _dev files

2008-05-16 Thread Ian P. Christian
I want to hear from you all as to what you think the best method for securing the default _dev files - I will not suggset anythign now, as I want to present a blank slate. I will implement the solution we finally agree on. Thoes that want to help please let me know.

[symfony-devs] Re: RFC - securing _dev files

2008-05-16 Thread Ian P. Christian
Tristan Rivoallan wrote: hi, i usually secure this file use apache capabilities. This doens't provide any 'out of the box' security - which I feel is important. This also doens't cover users using other web servers of course. --~--~-~--~~~---~--~~ You

[symfony-devs] Re: RFC - securing _dev files

2008-05-16 Thread Ian P. Christian
Andreas Hucks wrote: That might be possible to spoof... I actually intended it the other way around - the system checks if the server running the script is a development machine, not if the client issuing the request is. Spoofing IP's (over TCP) over the internet is really really not

[symfony-devs] Re: RFC - securing _dev files

2008-05-16 Thread Ian P. Christian
Fabian Lange wrote: To follow my proposal, and make it really simple: Add to all non production controllers: ?php //This prevents accidental access to non production frontends if (!in_array($_SERVER['REMOTE_ADDR'], array('127.0.0.1'))) { echo('Your IP '.$_SERVER['REMOTE_ADDR'].' is

[symfony-devs] Re: RFC - securing _dev files

2008-05-16 Thread Ian P. Christian
Fabian Lange wrote: Hi *, Interesting that there are so many replies. Ill reply to the initial posting, cause I feel that I can't agree on any other. In that case... before we see a whole load of +1's for this thread - anyone have a -1 with any reason?

[symfony-devs] Re: spyc and sf1.1

2008-05-14 Thread Ian P. Christian
Fabien POTENCIER wrote: Ian P. Christian wrote: It might just be my local setup - but I don't have time to test/experiment with this. Do you mean syck, the C extension? Yes, sorry - I do mean that. If no one else picks this up in the next month, I'll do my best to look

[symfony-devs] the handling of security issues

2008-05-14 Thread Ian P. Christian
Recently, some idiot has blogged in a negative way about how the symfony team handles security issues [1]. If the poster spent more time developing, and less time talking nonsense on IRC, maybe there wuold be less to complain about Anyway, the correct place to to discuss this kind of

[symfony-devs] Re: Proper way to build an sfForm?

2008-05-14 Thread Ian P. Christian
Jordi wrote: Why? On 12 mei, 13:43, Ian[EMAIL PROTECTED] wrote: From what I remember, its not the best idea to overload the bind method. top posting and not trimming your posts? naughty ;) If you do somethign like this: 6 public function configure() 7 { 8

[symfony-devs] Re: Permissions

2008-05-09 Thread Ian P. Christian
Krzysztof Kotlenga wrote: Hi. Are you aware of fact that you make people miserable by forcing on them silly permissions like 666 or 777 when they're happily running php through suexec (or something like that) and they don't need any additional security holes like that? I agree - maybe

[symfony-devs] Re: Permissions

2008-05-09 Thread Ian P. Christian
Krzysztof Kotlenga wrote: And to make things more interesting: Assumptions: - shared hosting - User1's directories have 755 permission (quite common) This isn't symfony realated really - this is just the issue with shared hosting. I exect anyone with a site that matters already knows

[symfony-devs] Re: reopen ticket privilege

2008-05-08 Thread Ian P. Christian
Jack Bates wrote: I would like to reopen ticket #2608 because there is still no way in 1.1 to increase Phing's verbosity from the symfony CLI - however I do not have TICKET_APPEND privilege. Was re-opening tickets really this abused we needed to restrict this? I'm not sure I see much

[symfony-devs] Re: Mirrorring subversion repository

2008-05-04 Thread Ian P. Christian
naholyr wrote: All this leads me to a simple thought : I wonder if it wouldn't be smart to make a campaign for official SVN mirrors. The Sensio hosting seems really temperamental - it goes down quite a lot usually at weekends when no one notices. For this reason I setup a mirror, which can

[symfony-devs] Re: Adding custom widgets (1.1)

2008-04-27 Thread Ian P. Christian
Nicolas Perriault wrote: This can sound like a silly suggestion but did you clear your cache? This is the most common fix for what seems to be like autoloading problems ;) just so you know, you don't need to do this in sf1.1. SF1.1 sets 2 autoloaders, the 2nd is 'autoloadAgain' or

[symfony-devs] Re: sfDatabaseManager's dependency on sfApplicationConfiguration

2008-04-23 Thread Ian P. Christian
Carl Vondrick wrote: Is there a reason why sfDatabaseManager must depend on sfApplicationConfiguration? Can't it depend on sfProjectConfiguration instead? Bump - I'm interested in this too! --~--~-~--~~~---~--~~ You received this message because you are

[symfony-devs] Re: A week of symfony #68

2008-04-22 Thread Ian P. Christian
below. Robert Young wrote: Sure, it's http://code.google.com/p/forage Feel free to email me if you have any questions or comments. Cheers Rob On Tue, Apr 22, 2008 at 4:36 PM, Ian P. Christian [EMAIL PROTECTED] wrote: My memory tells me someone here is working on some kinda

[symfony-devs] Re: phpfreechat Integration in symfony

2008-04-21 Thread Ian P. Christian
ganesh wrote: I want to integrate phpfreechat in symfony. Is anybody have this eperience? Please repost to the symfony-users list. Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony developers

[symfony-devs] Re: Trying to follow the directions

2008-04-10 Thread Ian P. Christian
Joe Kelsey wrote: I want to be a USER of the materials. I do not want to be a DEVELOPER. However, you seem to not want USERS. Perhaps this is the mistake. You're posting to the developer list. Please subscribe to and use the symfony-users list.

[symfony-devs] Re: Ticket 3210 needs work!

2008-04-07 Thread Ian P. Christian
Joe Kelsey wrote: I seem to be experiencing a very bad communication problem. I think it's caused by your bad attitude. I'm not sure if it's intentional, or maybe a language barrier - but to me at least you come across as very rude. The whole thing is pretty simple. If you think something

[symfony-devs] trac error

2008-04-02 Thread Ian P. Christian
Someone's written/added a nice module to trac, however... . it errors when there's no readme :) http://trac.symfony-project.com/wiki/sfErrorLoggerPlugin Error: Macro Include(source:plugins/sfErrorLoggerPlugin/README, text/x-trac-wiki;charset=iso-8859-1) failed No node

[symfony-devs] Re: remarks on r8201 and escaping

2008-04-02 Thread Ian P. Christian
Fabien POTENCIER wrote: But, were it moved back there, then a plugin author could do what he wanted couldn't he? No, if the developer want to enable output escaping, I don't want a plugin to disable it in my back... That's a good point :) Oh, and by the way, if output escaping

[symfony-devs] r8179... and general error message/exception stuff

2008-04-01 Thread Ian P. Christian
Happy April Fools day! What do you guys thing about this kinda thing: 333 if (false === @mkdir(dirname($cache), 0777, true)) 334 { 335 $err = error_get_last(); 336 throw new sfCacheException(sprintf('Failed to make cache directory %s while generating cache for

[symfony-devs] Re: autoload problem with sfDoctrinePlugin 1.1 and symfony 1.1 in prod environment

2008-03-27 Thread Ian P. Christian
Matthias N. wrote: Oops.. did you fix this in the sfDoctrinePlugin? If yes, could you point me to the changeset? Actually I'm working with a local fork of the sfDoctrinePlugin 1.1 as I needed to integrate some support for class based schemas and I'm about to add support for the new form

[symfony-devs] Re: Updating Prototype and Scriptaculous in 1.1

2008-03-27 Thread Ian P. Christian
vyaron wrote: Hi Fabian, I have a problem with sending AJAX containing Hebrew language as my response from server to client. im my action I use: Please repost to the symfony-users list! Thanks, Ian --~--~-~--~~~---~--~~ You received this message

[symfony-devs] Re: secure svn server for symfony-project.com

2008-02-23 Thread Ian P. Christian
isleshocky77 wrote: Thanks Fabien, this will allow to commit to plugins easier and more often. Out of interest what firewall is it that's stopping you doing this? I'll not be surprised if you say MS ISA ;) --~--~-~--~~~---~--~~ You received this

[symfony-devs] Re: secure svn server for symfony-project.com

2008-02-22 Thread Ian P. Christian
isleshocky77 wrote: I guess no one ever runs into this problem while trying to commit to the repository? no, I've not heard of any issues related to non-ssl HTTP user (remember, SVN over HTTP is simply HTTP with different verbs, nothing special) I think it's just you and your odd firewall ;)

[symfony-devs] Re: secure svn server for symfony-project.com

2008-02-22 Thread Ian P. Christian
isleshocky77 wrote: I'm not crazy, but I'm still looking for the documentation I read about this a long time ago. But here is comment on the same type thing from another site. http://www.assembla.com/flows/show/cIJoj6RQ8r3lVNabIlDkbG If it's checkout access o need, i'll be more hten happy

[symfony-devs] sfValidatorEmail

2008-02-07 Thread Ian P. Christian
, I'll port them over and improve the test cases for it -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony developers group. To post to this group, send email

[symfony-devs] Re: symfony 1.1 : I really need everybody's opinion

2008-02-06 Thread Ian P. Christian
early on Hi Fabien, Do you have any plans to make these changes soon? I'm quite in need of them for an existing project :) Thanks, -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[symfony-devs] Re: design bug with per-action classes

2008-02-06 Thread Ian P. Christian
from potentially hitting this issue. but I think the change should be moved. The largest downside of enforcing this is that you will not simply be able to rename a module that uses this kind of naming convention Anyway thoughts? -- Ian P. Christian ~ http://pookey.co.uk

[symfony-devs] design bug with per-action classes

2008-02-04 Thread Ian P. Christian
problems when you do something like this: $this-forward('moo', 'index') from the index action of cow! The names of per-action classes should probably be 'fully-qualified'. indexMooAction, and indexCowAction perhaps? I suggest this change for sf1.1 Thoughts? -- Ian P. Christian ~ http

[symfony-devs] Re: Removing style sheets

2008-02-04 Thread Ian P. Christian
Christian Schaefer wrote: hi frank, this is from the top of my head and might not work right away but the general answer is: Also Please take this kind of chat to the symfony-users list. Thanks! :D -- Ian P. Christian ~ http://pookey.co.uk

[symfony-devs] Re: design bug with per-action classes

2008-02-04 Thread Ian P. Christian
into their own 'overlay' directory. This allows them to provide their own implementation of actions, override config settings , override templates etc. The per-action classes make this far easier for us. -- Ian P. Christian ~ http://pookey.co.uk

[symfony-devs] RFC: overlaypatch

2008-01-29 Thread Ian P. Christian
. '/data'; $sf_overlay_dir = '/etc/ramp'; # ls /etc/ramp/ apps config settings.yml -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony developers group. To post

[symfony-devs] Re: sfDoctrinePlugin broken svn

2008-01-28 Thread Ian P. Christian
gimler wrote: hello, i change in http://trac.symfony-project.com/changeset/7202 the template path. The Symfony mirror is currently down for maintenance - it will be back up again in about an hour. (I needed to resync it, as it apparently broke!) -- Ian P. Christian ~ http

[symfony-devs] Re: sfDoctrinePlugin broken svn

2008-01-28 Thread Ian P. Christian
Ian P. Christian wrote: gimler wrote: hello, i change in http://trac.symfony-project.com/changeset/7202 the template path. The Symfony mirror is currently down for maintenance - it will be back up again in about an hour. It's back up now! -- Ian P. Christian ~ http://pookey.co.uk

[symfony-devs] Re: sf1.1 sessions suggestion

2008-01-25 Thread Ian P. Christian
Matthias N. wrote: A better approach could be to check if the session belongs to the current application in sfUser (or in the session storage driver) and if not it should open a new one. how would it know which app the cookie named 'symfony' is for? -- Ian P. Christian ~ http

[symfony-devs] exception in sfUser

2008-01-25 Thread Ian P. Christian
sfException(sprintf('Call to undefined method sfUser::%s.', $method)); + throw new sfException(sprintf('Call to undefined method %s::%s.', get_class($this), $method)); } return $event-getReturnValue(); -- Ian P. Christian ~ http://pookey.co.uk

[symfony-devs] Re: Symfony security enhancement?

2008-01-23 Thread Ian P. Christian
Fabian Lange wrote: Hi, as I am still running across symfony pages that have their dev env in production I want to bring this up to dev-list notice. Any thoughts of integrating a combination of Ant's and my idea? I really think that enabling _dev on production should be a conscious step.

[symfony-devs] A big thank you, and congratulations to FF

2008-01-22 Thread Ian P. Christian
Hi guys, With the help of a few others, I have been collecting donations to get Fabien and Francois a gift. I was hoping to collect enough to get a little present for them both to thank them for their hard work in providing us with the symfony framework, and the documentation that goes with

[symfony-devs] Re: [symfony-users] A big thank you, and congratulations to FF

2008-01-22 Thread Ian P. Christian
Ian P. Christian wrote: I put a closing date of the 31th of Janurary. As requested off list, this has been increased to the 7th Feb, so allow for a end of month/beginning of month pay checks! -- Ian P. Christian ~ http://pookey.co.uk

[symfony-devs] sfAdminGenerator.

2008-01-22 Thread Ian P. Christian
').'/images/default_icon.png'; It defaults to using a blank icon. I vote for the removal of this feature. I would rather just have the 'name' param used as a textual link. Thoughts? -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received

[symfony-devs] Re: sfForm::setDefaults()

2008-01-21 Thread Ian P. Christian
Fabien POTENCIER wrote: fixed in r7124. sorry - it was on my todo list, hadn't been forgotten - I'm so busy with work at the moment :/ Thanks for your fix though :) -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message

[symfony-devs] Re: Forms and output escaping in 1.1

2008-01-20 Thread Ian P. Christian
Carl Vondrick wrote: And the other idea: What about a mix of solution 1 and 2 by a magic prefix marking a var as safe, for example: $this-foo = 'escaped'; $this-_bar = 'not escaped'; +1 -1, far too magical. --~--~-~--~~~---~--~~ You received

[symfony-devs] Re: Changing the ID of an object

2008-01-16 Thread Ian P. Christian
Anderson Mesquita wrote: Hello everybody, The symfony-dev list is for development discussion of symfony, and not it's usage. Please re-post this on teh symfony-users mailing list. Good luck solving your problem, Regards -- Ian P. Christian ~ http://pookey.co.uk

[symfony-devs] Re: Using criteria to join composite Primary Keys

2008-01-08 Thread Ian P. Christian
NekoKun wrote: Hi, Im posting this to know if this 'issue' has been fixed or not. Hi, Please repost this to the symfony-users list. Many thanks, -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you

[symfony-devs] Re: Moving towards 1.1 - Migrating Plugins

2008-01-08 Thread Ian P. Christian
Dustin Whittle wrote: Fabien, +1 from me too.. Do you want to setup the svn structure and migrate plugins to experimental? Once we are finalized here, I will migrate the plugins I maintain. Where does symfony-forge fit in if we are migrating to an '/experimental' directory? I would

[symfony-devs] Re: Moving towards 1.1 - Migrating Plugins

2008-01-07 Thread Ian P. Christian
Nicolas Perriault wrote: So I'm in for two pseudo-namespaces, one for the official plugins and another one for unofficial ones (eg. sf and usf, or whatever.) +1 But we should act a decision before applying changes to the repos, I guess... Indeed - already people have started to rename

[symfony-devs] content still sent when sfView::NONE is returned.

2008-01-02 Thread Ian P. Christian
consider expected behaviour by doing this: $this-getController()-setRenderMode(sfView::RENDER_NONE); return sfView::NONE; -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[symfony-devs] Re: content still sent when sfView::NONE is returned.

2008-01-02 Thread Ian P. Christian
Fabian Lange wrote: Hi pookey, I recently found this behaviour being good. It does not load the view sfView::NONE says this. However your HTTP response HAS to be sent. The browser is eagerly waiting for something. I see you might say that you just want to return Headers. This is what I

[symfony-devs] Re: symfony 1.1 : I really need everybody's opinion

2007-12-28 Thread Ian P. Christian
Fabien POTENCIER wrote: Hi all, The symfony 1.1 release comes along nicely but I still have 2 major/blocking problems which need to be fixed before 1.1-beta1 and I have no simple solution: * Plugins are unable to register routes (#2408) * It's not possible to connect listeners

[symfony-devs] Re: output escaping and the admin generator

2007-12-28 Thread Ian P. Christian
Fabien POTENCIER wrote: The symfony core is optimized for the 2 following escaping strategy: both and bc. If you use one of those 2 strategies, $pager will be escaped. Understood - so what do we want to do here? 1) Ignore it, and just say it's not supported (which I might sound negative

[symfony-devs] Trac, and the SVN mailing list

2007-12-20 Thread Ian P. Christian
Hi all, As some of you will already know, symfony has a SVN mailing list hosted on google ([EMAIL PROTECTED]) - this is preferable to following commits over the RSS provided by trac for some people - such as myself. I personally think that it would be really useful to also have Trac email

[symfony-devs] Re: sfForm:;getValue()

2007-12-19 Thread Ian P. Christian
Ian P. Christian wrote: Any objections to adding a getValue() call into sfForm? There's currently a getValues() which returns all values, but not a call to get a single value from the form. I had to write this for my own needs really -so I commited it - should we not want it feel free

[symfony-devs] Re: sfForm:;getValue()

2007-12-19 Thread Ian P. Christian
Fabien POTENCIER wrote: You can't just add a feature in trunk just because you have a need for it: * All new features must come with unit tests. The new form/validator/widget framework has 100% code coverage. * As we now have a 1.1 branch, changes must go to the 1.1 branch and then

[symfony-devs] Re: table widget

2007-12-18 Thread Ian P. Christian
, but.. there's be a surprising lack of input :) -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony developers group. To post to this group, send email to symfony-devs

[symfony-devs] Re: table widget

2007-12-17 Thread Ian P. Christian
as suggested initially) would be far too heavy I imagine, with 100's of objects being created just to show a table. If anyone's interested in discussing the topic, you can of course find me on IRC :) -- Ian P. Christian ~ http://pookey.co.uk

[symfony-devs] Re: Multiple Apps one project how to route?

2007-12-14 Thread Ian P. Christian
James wrote: Hey there, I've been programming with Symfony for a couple weeks now. I almost have my first project finished. Please direct questions about the usage of symfony to the users list. Thanks! --~--~-~--~~~---~--~~ You received this message

[symfony-devs] API docs suggestion

2007-12-14 Thread Ian P. Christian
http://www.symfony-project.org/api/1_0/sfComponent How many other people have failed to see the 'more' think there in the past? I think by default that should show, as it's the most useful part of that page IMO! Opinions? -- Ian P. Christian ~ http://pookey.co.uk

[symfony-devs] Re: duplicate plugin code

2007-12-13 Thread Ian P. Christian
. -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony developers group. To post to this group, send email to symfony-devs@googlegroups.com To unsubscribe from this group, send

[symfony-devs] Re: i18n - the new form widgets - and labels!

2007-12-13 Thread Ian P. Christian
Hi again all, For those interested, here's a really really simple demo of the new forms in action. http://www2.pookey.co.uk/frontend_dev.php/ This page is going to change over time - in the short term is will slowly grow with more interesting form examples whilst I play - in the long term,

[symfony-devs] Re: i18n - the new form widgets - and labels!

2007-12-12 Thread Ian P. Christian
Ian P. Christian wrote: class LoginForm extends sfForm { public function bind($vars) { $request = sfContext::getInstance()-getRequest(); if ($request-hasParameter(self::$CSRFFieldName)) { $vars[self::$CSRFFieldName] = $request

[symfony-devs] i18n - the new form widgets - and labels!

2007-12-12 Thread Ian P. Christian
. Not sure if this is a bug, a feature I'm missing, or somethign the form widgets just simply shouldn't be doing. -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony

[symfony-devs] Re: i18n - the new form widgets - and labels!

2007-12-12 Thread Ian P. Christian
somewhere. :) -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony developers group. To post to this group, send email to symfony-devs@googlegroups.com To unsubscribe from

[symfony-devs] Re: i18n - the new form widgets - and labels!

2007-12-12 Thread Ian P. Christian
to maintain HTML templates for my forms at the moment though -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony developers group. To post to this group, send email to symfony

[symfony-devs] Re: i18n - the new form widgets - and labels!

2007-12-12 Thread Ian P. Christian
Ian P. Christian wrote: Maybe you can already- but the way a form element is output should be modifiable pragmatically, not just by using a manual method in the template. For example, if you want errors to appear below a input, rather then above, and you want to use table-less form layers

[symfony-devs] Re: i18n - the new form widgets - and labels!

2007-12-12 Thread Ian P. Christian
RTFS to find out of this is already possible ;) Thanks, -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony developers group. To post to this group, send email

[symfony-devs] Re: Symfony and bad coding habits

2007-12-11 Thread Ian P. Christian
, and they probably appreciated the work you did. As for the google analytic code, I've also pondered over the use of this as a plugin before - as I always just put code at the bottom of my layout.php. But I've not looked at this plugin, maybe it does more then just that. -- Ian P. Christian ~ http

[symfony-devs] Re: problems with adding routes in config.php and symfony 1.1

2007-12-11 Thread Ian P. Christian
Matthias N. wrote: Hi, were there any bigger changes in the routing implementation of sf 1.1? I just tried to add default routes in a plugin but it seems they get loaded too late so the matching is over and the added routes don't get taken into account.. Problem with sf1.1 - I already

[symfony-devs] Re: problems with adding routes in config.php and symfony 1.1

2007-12-11 Thread Ian P. Christian
Ian P. Christian wrote: Either way, if it is your problem , I believe you'll see your route being maching BEFORE you see your routes being connected in the debug toolbar/logs. For example, here: http://www2.pookey.co.uk/frontend_dev.php/cms/home?edit=true notice in the debug tool bar

[symfony-devs] Re: Symfony and bad coding habits

2007-12-10 Thread Ian P. Christian
mozey wrote: give it the Symfony stamp of approval Good idea in principle - doubt many people will have time to do this though. Perhaps the rating system needs to have different ratings, for example... ease of use: features: quality of code: extensibility: -- Ian P. Christian ~ http

[symfony-devs] Re: Re : [symfony-devs] Re: Re : [symfony-devs] Re: Re : [symfony-devs] Re: Symfony and bad coding habits

2007-12-09 Thread Ian P. Christian
Loïc Vernet wrote a message which failed to add the correct headers in to thread properly! your MUA is failing to thread messages properly, any way you can fix it? There's no In-Reply-To or References header - I guess you need to report this to Yahoo...

[symfony-devs] Re: Symfony and bad coding habits

2007-12-07 Thread Ian P. Christian
. That's a fantastic idea, I 'm not sure why someone hasn't thought about this before. *cough* http://www.symfony-forge.org/ *cough* ;) -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed

[symfony-devs] Re: Re : [symfony-devs] Re: Symfony and bad coding habits

2007-12-07 Thread Ian P. Christian
input please :) -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony developers group. To post to this group, send email to symfony-devs@googlegroups.com To unsubscribe from

[symfony-devs] Re: Symfony should support PDO_sqlite: Fedora incompatibility

2007-12-05 Thread Ian P. Christian
Gunnar Lium wrote: I suggest not spending too much time on it. I agree entirely. Perhaps a warning box in the manual is all that's needed. -- Ian P. Christian ~ http://pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed

[symfony-devs] spam on the user list

2007-12-05 Thread Ian P. Christian
Can someone with list manager rights check that the lists are set such that only members can post to them? I'm getting more spam to the symfony-users list then i'm getting in all my other lists, and inbox combined! --~--~-~--~~~---~--~~ You received this message

[symfony-devs] Re: Symfony should support PDO_sqlite: Fedora incompatibility

2007-12-03 Thread Ian P. Christian
[EMAIL PROTECTED] wrote: On Fedora, PHP is compiled without the built-in SQLite-Support. Instead the default installation loads the PDO and PDO_sqlite extensions. The problem here is that Symfony's DB layer requires direct SQLite Support via sqlite.so, not PDO_sqlite. This is no a bug in

[symfony-devs] Re: How to contribute to sfDoctrinePlugin

2007-11-27 Thread Ian P. Christian
that need committing, we're happy to help, and give SVN access to those deserving of it. Many thanks, Ian [1] I say plural, almost all of this sfDoctrinePlugin work is done by jonwage - feel free to send him a Christmas present ;) -- Ian P. Christian ~ http://pookey.co.uk

[symfony-devs] Re: observe_field to update several fields

2007-11-22 Thread Ian P. Christian
Jorge Laranjo wrote: I've got 3 fields select_tag What I want is to be able to update using AJAX one fields when this values change (of the 3 other fields). Basically I want to sum all the 3 fields and update the 4th field. Please do not cross post between mailing lists for things like this.

[symfony-devs] Re: [sfDoctrine] schema documentation

2007-11-19 Thread Ian P. Christian
Christian Schaefer wrote: hi there, I am really excited about the current developments in doctrine and its symfony plugin. but when working on a schema.yml I always end up with errors and the feeling that I have surely missed something. Did you look in the doctrine manual?

[symfony-devs] Re: [sfDoctrine] schema documentation

2007-11-19 Thread Ian P. Christian
, sign up on trac - and email me, or catch me on IRC (pookey), and I'll give commit access. -- Ian P. Christian ~ pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony developers group. To post

[symfony-devs] Widgets!

2007-11-12 Thread Ian P. Christian
The first lot of form widgets were checked in to trunk. No official announcment yet, although there were mentioned briefly in the latest 'A week of Symfony' Anyone had a look yet? I've not had time, will be interesting to know anyones experience in them -- Ian P. Christian ~ pookey.co.uk

[symfony-devs] Re: Widgets!

2007-11-12 Thread Ian P. Christian
unfortunately... Exciting times :) -- Ian P. Christian ~ pookey.co.uk --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups symfony developers group. To post to this group, send email to symfony-devs@googlegroups.com

[symfony-devs] Re: spellchecker tinyMCE

2007-11-09 Thread Ian P. Christian
ved wrote: Hi Guys, I have been trying to implement the spellchecker plugin of tinyMCE for use in one of my projects, but I keep getting this error please use the user list for this kind of question. Thanks, an --~--~-~--~~~---~--~~ You received this

[symfony-devs] Re: migrations

2007-11-04 Thread Ian P. Christian
Kiril Angov wrote: http://trac.symfony-project.com/wiki/sfPropelMigrationsLightPlugin This does the job pretty well, you have to do still some work but it is much better than having to remember what needs to be updated to production when you push the code. Doctrine also has support for

  1   2   >