[FFmpeg-devel] [Ffmpeg-devel] FFmpeg logo

Michael Niedermayer michaelni
Thu May 3 15:06:03 CEST 2007


Hi

On Thu, May 03, 2007 at 01:58:56PM +0200, Michael Niedermayer wrote:
> Hi
> 
> On Thu, May 03, 2007 at 12:02:24AM +0100, M?ns Rullg?rd wrote:
> > M?ns Rullg?rd <mans at mansr.com> writes:
> > 
> > > Hi,
> > >
> > > Last year we never managed to decide on a logo in time for LinuxTag.
> > > I'm hoping we might be able to do better this year, so I've made a
> > > couple of variants based on one of the ideas I liked best from last
> > > year's discussions.
> > 
> > The deadline for logo submission to LinuxTag is drawing near, and we
> > never decided on a logo earlier.  I'm thinking some logo is better
> > than no logo, and the attached one was generally well received on this
> > list.  How about we use this one this year?
> 
> how about a vote?
> IIRC you already have all the logos on a webpage

http://www1.mplayerhq.hu/~mru/ffmpeg-logo/
to be more precisse


> and http://seehuhn.de/data/debian-vote-0.7.tar.gz could be used as long as
> there are fewer then 9 logos, if there are more then a simple approve/not
> approve vote for each could be used as a prepass or maybe someone knows of
> a less reterded condorcet voting proggy?

there are 36 logos on the page these are too many for the shitty debian-vote
script

patches to fix the script are attached

[...]
-- 
Michael     GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB

When the tyrant has disposed of foreign enemies by conquest or treaty, and
there is nothing more to fear from them, then he is always stirring up
some war or other, in order that the people may require a leader. -- Plato
-------------- next part --------------
commit 7917a4a2732da7cc5c7420db083f4de7f22f52d2
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Thu May 3 14:51:17 2007 +0200

    remove silly "too many options" check

diff --git a/debian-vote b/debian-vote
index b0beff8..33680c4 100755
--- a/debian-vote
+++ b/debian-vote
@@ -85,7 +85,7 @@ def initialise_options(n):
     "Initialise the data structures to store the individual votes."
     global options, preference
     if n<2: raise BallotError("not enough options")
-    if n>9: raise BallotError("too many options")
+#    if n>9: raise BallotError("too many options")
     options=[chr(ord('A')+i) for i in range(0,n-1)]
     options.append('X')
     for o1 in options:

commit e68595193b2a551d83eb67f6e8685e590556f0ff
Author: Michael Niedermayer <michaelni at gmx.at>
Date:   Thu May 3 14:56:32 2007 +0200

    use lower case letters after upper case if there are more options then upper case
    letters

diff --git a/debian-vote b/debian-vote
index 33680c4..d60d07e 100755
--- a/debian-vote
+++ b/debian-vote
@@ -86,7 +86,11 @@ def initialise_options(n):
     global options, preference
     if n<2: raise BallotError("not enough options")
 #    if n>9: raise BallotError("too many options")
-    options=[chr(ord('A')+i) for i in range(0,n-1)]
+    for i in range(0,n-1):
+        if i<26:
+            options.append(chr(ord('A')+i))
+        else:
+            options.append(chr(ord('a')+i-26))
     options.append('X')
     for o1 in options:
         for o2 in options: preference[o1+o2]=0
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 189 bytes
Desc: not available
URL: <http://lists.mplayerhq.hu/pipermail/ffmpeg-devel/attachments/20070503/67469db3/attachment.pgp>



More information about the ffmpeg-devel mailing list