bugs

IE 8 input type text/password bug

<tr> <td>Password:</td> <td><input type="password" name="j_password" id="j_password"/></td> </tr> The code above increases the CSS offset of the input element 6 pixels right. If the type is changed to 'text' as opposed to 'password' the CSS offset is not increased. I would file this as a bug with MS but I don't have the time nor e...

Weird click event behavior in IE8 with prototypejs 1.7_rc2

I have some javascript click handlers that don't do what I want in IE8. What I want to do is call a handler on the first click and then call another handler on all subsequent clicks. The way I do that is put the original handler in the onclick attribute and then use that handler to erase the onclick attribute and use Event#observe to set...

Reversing words in a sentence

I'm currently going through K.N. King's C Programming: A Modern Approach. I've made it past the text for the 8th chapter (Arrays), and I'm eager to move on to chapter 9, but I've yet to solve the so-called "programming projects" at the end of each chapter. Unfortunately, the 14th... bugs me. Write a program that reverses the words in...

Delphi 2007 and Windows 7: Debugger fails to stop host application.

I'm running Delphi 2007 with Windows 7 Ultimate. The code I'm working on compiles to a DLL file. To use Delphi's debugger I launch a standard EXE application via Delphis' Run command. The application loads the DLL file and the debugger is automatically attached to the correct process. The problem occurs when resetting the host applica...

WMD Markdown appears broken in IE8

I've already found this question on SO (which is exactly the same problem I'm having), but the OP's solution a) doesn't work for me, and b) isn't feasable in my site. On the Google Code project for WMD, it says IE8 support is on its way. My question is, does anyone know how to make WMD Markdown work in IE8 right now? Or does anyo...

Is this a Bug in the Array.fill method in Ruby?

Should this be the case i.e. I am misunderstanding, or is it a bug? a = Array.new(3, Array.new(3)) a[1].fill('g') => [["g", "g", "g"], ["g", "g", "g"], ["g", "g", "g"]] should it not result in => [[nil, nil, nil], ["g", "g", "g"], [nil, nil, nil]] Any advice would be most helpful! Regards, ...

Common Bugs Book

I am looking for a book (or some other resource) where the most common bugs are explained and shown the proper fix. I am particularly interested in vulnerable bugs that trigger a CVE ...

flex display issue , adding a simple graphic to display weirdness

For some reason same function called from another class acts differently, if function called from ini() then it adds the button to the display and we can see it. If we call the same function externally then it adds the button just that we cant see it....what do I need to do to fix this ?? <fx:Script> <![CDATA[ imp...

HTMLPurifier dies when the following code is run through it.

Using the latest release of HTMLPurifier with default configs. The following code will cause the oh-so-lovely blank white page in PHP. Am I missing something? Even if I set HTML.TidyLevel to light or none it still breaks. Here is a partial log of the errors thrown when trying to purify the code below: http://pastie.org/private/13f0htscq...

Term for legacy bug replication?

Out of idle curiosity, does anybody know of a term for replicating bugs in a new implementation of an old system so as to maintain backwards compatibility with old clients that rely on the buggy functionality? I'd be particularly interested if it included a connotation of having to reverse engineer the incorrect behavior so as to proper...

CSS problem - firefox 1px shift

Hi, I have little problem with Firefox here http://bit.ly/a0Je6X There is 1px shift on the bar under the horizontal menu in Mozzila Firefox. Do you have any idea why? Thanks a lot. ...

Disabled WPF Datagrid

I've recently started to use Visual Studio 2010 and its new version of the WPF Datagrid control. I've noticed something weird with it and was wondering whether it was my code, by design or a bug in the control? I've created a simple datagrid and bound it to a dataview. If I set its IsEnabled attribute to false, I would expect not to b...

IE mousemove bug

Hi, I have a tooltip script which uses the mousemove jquery function. Everything works fine expect for IE. Take a look here: http://omarabid.com/deploy/ The rectangles are "li" elements. When you move the mouse over, a tag appear. In IE, the tag does appear, but only if you move the mouse over a empty region (in the right). When you move...

Drupal 6.17 just showing admin blocks

Hi ! I am using Drupal version 6.17 with RootCandy Dark 6.x-1.8 as the administration theme what happens is that Drupal shows the rootcandy regions on the blocks page even if I click on the site's theme. If I disable the administration theme everything works. I already tried to clear all the caches and nothing changes. Any ideas ? Tha...

Eclipse Android Unicode Folder Names causing bad build

In my Android project, I put several folders with unicode names in the assets folder. Eg "Ελληνικά" and "中文(繁體)" When I do so, I can not built the app. I get this error. However, when I rename the folders to simple ASCII it works. [2010-07-21 21:12:58 - Ridvan Library] ------------------------------ [2010-07-21 21:12:58 - Ridvan Librar...

Weird whitespace appearing on Joomla

While polishing my site I noticed there was some unwanted space between 2 elements, so I decided to remove it. But looking at the source, I found this: Please check it by yourself, there's no trace of this server-side. Live page here: http://www.playersonline.com.ar/guias Any help would be appreciated. ...

IronPython returns wrong type when using class in classy library

Can someone recommend a workaround for this ironpython bug? I have a class contained within an external class library. I consume this class inside an embedded ironpython instance. When the class is retrieved from the scope by my c# app, the classes don't seem to match up! My python script: import sys import clr from ExternalAssembly i...

Magento 1.4 paypal bug

hi folks! i try to get the paypal payment run in my magento 1.4 but there is a serious problem with the workflow. after i select paypal and get routed to the paypal account to send the money you normally come back automatically into the magento shop to finish the order, but in my case magento tells you there is aproblem with the adress ...

How to handle minor bugs that represent design flaws?

I'm working on a project where I have a few related bugs that are fairly minor in terms of loss of functionality. They are basically minor but annoying aesthetic problems, and based on loss of functionality should be fixed eventually, but not as a top priority. However, these bugs are caused by a fundamental, baked-in design flaw that ...

Visual Studio .NET unit test problem

When I run the Release build of my (VS 2008 .NET) unit tests, I get the following exception: System.IO.FileLoadException: Could not load file or assembly 'arcVegaORM, Version=1.0.3856.24327, Culture=neutral, PublicKeyToken=0dd85ae1d99ddbee' or one of its dependencies. The located assembly's manifest definition does not match the assemb...