template

Thanks to Dror A. for bringing this issue up.

 

from MSDN:

Even though Singleton is a comparatively simple pattern, there are various tradeoffs and options, depending upon the implementation. The following is a series of implementation strategies with a discussion of their strengths and weaknesses.

 

Simple Singleton:

using System;

public class Singleton
{
   private static Singleton instance;

   private Singleton() {}

   public static Singleton Instance
   {
      get 
      {
         if (instance == null)
         {
            instance = new Singleton();
         }
         return instance;
      }
   }
}

 

ofir 23/08/2011 - 21:01

Hi,

I wonder if one of you can help me.

Issue #1: Result - Success

================

Lately I was successful in directly modifying file create.html.tmpl in /var/www/bugzilla/template/en/default/bug/create so that the bug description text box contains by default the paragraphs headline that should be included.

 

This is how I (somewhat primitively) did it:

 

...

dekel.granit 19/01/2010 - 16:15
Syndicate content