Monatsarchiv für November 2009

Wöchentliche Twitter Updates für 2009-11-30

  • @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 #

symfony: Creating a custom form generator by making sfDoctrineFormGenerator.class themable

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

Wöchentliche Twitter Updates für 2009-11-23

  • 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 #

Wöchentliche Twitter Updates für 2009-11-16

eclipse auf 64bit linux

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.

Wöchentliche Twitter Updates für 2009-11-09

  • #jquery ui tabs aka tabs 3 without bookmarking / hash functions? argh :-( #
  • Testing KDE 4.3.3 on OpenSuSE 11.1 #
  • Making #jquery #ui 1.7.2 tabs bookmarkable: http://bit.ly/iraUW #

Making jQuery UI tabs (aka tabs 3) bookmarkable

What do I need?

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