- @MrKintaro Im Moment nicht. Brauche Server, wo ich es installieren kann. Doch die sind nicht billig
in reply to MrKintaro # - Creating a custom doctrine form and filter generator for nested sets is not so easy
#symfony #
Monatsarchiv für November 2009
Obviously the sfDoctrineFormGenerator.class extends the sfGenerator.class, but there is actually no way to set a parameter to call a custom form generator and this feature will come in the 2.0 release . So you have to set the parameter by hand in the sfDoctrineFormGenerator.class.php:
public function initialize(sfGeneratorManager $generatorManager)
{
parent::initialize($generatorManager);
$this->getPluginModels();
$this->setGeneratorClass('sfDoctrineForm');
$this->setTheme(sfConfig::get("formgenerator_theme","default"));
}
You have to set the “formgenerator_theme” setting in your ProjectConfiguration.class.php
- Habe gerade den Lehrbuchbestand der RWTH über Mailserver (POP3, IMAP, Spam, Postfix, Cyrus, … ) "lehrgeliehen" #
- Thunderbird 3 irritiert mich. Neues Usability ist etwas gewöhnungsbedürftig. #
- Hypothese: Alle Mailserver schalten ihre Spamfilter ab->Alle Menschen sind vom Spam genervt->Erkennen nun Spam->Spam unwirksam #
- @Viztrah Man muss die Leute so derbe nerven, dass sie keinen Bock auf Spam mehr haben
Aufgrund der Filter kommt zu wenig Spam an. in reply to Viztrah # - @Viztrah Zugegeben, ist eine gewagte These und schwere Zeit. Aber leider muss man manche Menschen erst hauen, damit sie aufwachen
in reply to Viztrah # - Working on a #symfony admin theme with jquery flexigrid for list view #
- @JeremyB_ Thanks for the tip! Nice ui. The filter-lightbox is the best and usefull. in reply to JeremyB_ #
- Na, wer hat da wohl vergessen, die Handbremse anzuziehen? #rwth #parkhaus http://pic.gd/cbdc7e #
- @JeremyB_ Git version now tested. the reset button is practical. i would prefer to be able to edit filter on no results and not to reset in reply to JeremyB_ #
- @JeremyB_ What do you think about to include jquery lib manually? Sometimes it's useful to use the newest version and to be independent in reply to JeremyB_ #
- @JeremyB_ Hups. I should look in the code first and then write ^^ in reply to JeremyB_ #
- @JeremyB_ As developer I don't really need documentation
in reply to JeremyB_ # - ldap server installed, configured and with #dovecot mailserver connected #
- What's the best realization for routing a sluggable nested set? e.g.: slug_l1/slug_l2/slug_l3/… #symfony #
- Missing theme parameter in sfDoctrineFormGenerator
#symfony #
- Playing with #symfony , #yaml css/xhtml framework and forms. Using a special formatter for creating nice forms: http://bit.ly/3QNmmA #
- Why does #doctrine convert a blob with fixed length to a tinyblob if sql is generated? I need fixed length for PK. #symfony #
- @pborreli Originally it was a varbinary(160). But doctrine doesn't know varbinary. At reverse engineering doctr converts varbinary to a blob in reply to pborreli #
- @pborreli I' musing varbinary(160) because my PKs are sha generated keys
in reply to pborreli #
Da es unter 64bit immer noch zu Problemen, unter anderem von grafischen Fehlern, mit eclipse kommt, betreibe ich eclipse immer noch unter 32bit auf dem System. Dazu sind nur wenige Handgriffe nötig:
- Installation einer Java 32 bit Version parallel zur 64 bit Version. Dies ist kein Problem, da man unter OpenSuSE beispielsweise die Sun-Version und eine OpenSource Version parallel installieren kann.
- eclipse 32 bit herunterladen
- Das folgende Startskript im Ordner der eclipse-Installation erzeugen und zum Starten von eclipse jedes Mal aufrufen
#!/bin/sh
JAVA_HOME="/usr/lib/jvm"
export JAVA_HOME
export PATH=$JAVA_HOME/bin:$PATH
exec ./eclipse
Der Pfad sollte natürlich angepasst werden.
What do I need?
- The history plugin of the ajaxy project
- Using tabs and history events for data exchange between tabs and history plugin.
That’s all. Now the hash will be updated if you select a tab and you can call a website with the hash and the tab will be focused automatically after loading.
Tested with
- Firefox
- IE 7, 8, other versions should also function
- Safari
‘Making jQuery UI tabs (aka tabs 3) bookmarkable’ weiterlesen