Mercurial > pidgin.yaz
view plugins/crazychat/dog_lids.c @ 13834:378bba5011e7
[gaim-migrate @ 16283]
SF Patch #1500688 from Brian Chu (roast)
He already committed this to his soc-2006-file-loggers branch.
Here's the patch description:
In util.c, gaim_markup_html_to_xhtml() doesn't trim
spaces of parsed background colors, parsed font names,
or the end result for styles (which inserted spaces for
the purpose of many span.style attributes).
For example, things like this get written to the log:
<span style='font-size: small; '>
Things like the following this _can_ written to the log
given a tag like this:
<font face=" Comic Sans MS ">
<span style='font-family: Comic Sans MS
; '>
Same for: <body bgcolor=" Red ">
<span style='background: Red ;'>
committer: Tailor Script <tailor@pidgin.im>
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Mon, 19 Jun 2006 05:57:11 +0000 |
parents | ed017b9c532d |
children |
line wrap: on
line source
#include #include "lid1.h" #include "lid2.h" #include "lid3.h" #include "lid4.h" #include "lid5.h" #include "lid6.h" #include "lid8.h" #include "lid9.h" #include "lid10.h" #define NUM_LIDS 9 GLint lidLists[NUM_LIDS]; void initLids(){ GLint test; int i; GLint[0]=Gen3DObjectListLid1(); GLint[1]=Gen3DObjectListLid2(); GLint[2]=Gen3DObjectListLid3(); GLint[3]=Gen3DObjectListLid4(); GLint[4]=Gen3DObjectListLid5(); GLint[5]=Gen3DObjectListLid6(); GLint[6]=Gen3DObjectListLid8(); GLint[7]=Gen3DObjectListLid9(); GLint[8]=Gen3DObjectListLid10(); }; void drawLids(int left, right) { //draw left GLfloat offset = .5; glPushMatrix(); glTranslatef(offset, 0, 0); glCallList(lidLists[left]); glPopMatrix(); //draw right glPushMatrix(); glTranslatef(-offset, 0, 0); glScalef(-1, 1, 1); glCallList(lidLists[right]); glPopMatrix(); }