Development WG's famous to do list
Moderators: Fons, avij, Phaseolus, dserrano5
Re: Avij's and Nerzhul's famous to do list
Seems that a majority is against the new look. So back to the old one?
- kettenseger
- Euro-Master

- Posts: 1122
- Joined: Sat Mar 01, 2003 1:49 pm
- Location: 41334 Nettetal, Germany
- Contact:
Re: Avij's and Nerzhul's famous to do list
There are >8000 active user the last 30 days on ebt and >5000 users in the forum(not all of them were active).
Only a handful of users have posted that they don't like the new design.
I think the design shouldn't be changed back, because a small group didn't like it.
I guess many of you use google for your daily search.
Google had changed the logo and some other things in their layout.
Do you use bing or yahoo now?
Or have you written to google webmasters to rechange their layout?
Wikipedia have got a new design a few weeks ago, but i guess you use it anyway.
Only a handful of users have posted that they don't like the new design.
I think the design shouldn't be changed back, because a small group didn't like it.
I guess many of you use google for your daily search.
Google had changed the logo and some other things in their layout.
Do you use bing or yahoo now?
Or have you written to google webmasters to rechange their layout?
Wikipedia have got a new design a few weeks ago, but i guess you use it anyway.
-
MDeen
- Euro-Master

- Posts: 2179
- Joined: Mon Jul 15, 2002 11:52 am
- Location: Helden, The Netherlands
- Contact:
Re: Avij's and Nerzhul's famous to do list
Yes, and especially with wikipedia I have the impression that a small group of users call the shots and do not care about the rest.kettenseger wrote:There are >8000 active user the last 30 days on ebt and >5000 users in the forum(not all of them were active).
Only a handful of users have posted that they don't like the new design.
I think the design shouldn't be changed back, because a small group didn't like it.
I guess many of you use google for your daily search.
Google had changed the logo and some other things in their layout.
Do you use bing or yahoo now?
Or have you written to google webmasters to rechange their layout?
Wikipedia have got a new design a few weeks ago, but i guess you use it anyway.
I still do not like the new colors. The saturation and the contrast are both too high. The colorscheme just does not work.
Re: Avij's and Nerzhul's famous to do list
I don't understand why asking about the new color scheme AFTER applying it to the website? 
내가 제일 잘나가
- eddydevries
- Forum Moderator

- Posts: 20030
- Joined: Sat Feb 18, 2006 5:49 am
- Location: Rotterdam (NL)
- Contact:
Re: Avij's and Nerzhul's famous to do list
I think, it's because you can hardly ask: "Do you want to change the colors of the website?".dippu wrote:I don't understand why asking about the new color scheme AFTER applying it to the website?
If people don't know how it would look after the change they'll say : "I like it the way it's now. So don't change it." (most people want changes only if they know (proven) it's an improvement).
Now the colors have changed, people can comment it with reason. Than the management can act on that.
Personally, I think the change is "okay" (for me, it wasn't neccesary, but I'm not against it either).
But there might be more contrast between the backgrounds of the lists (I mean the changing of color after each two notes). At this time there's so little difference, I missed some notes while counting them.
Eddy - Rotterdam - NL
weblog - EBT-stats 24-05-2013 - hits: 1742 +59 triples +1 quadruple = 1802.
Facebook-profile + Geocaching + postcrossing
weblog - EBT-stats 24-05-2013 - hits: 1742 +59 triples +1 quadruple = 1802.
Facebook-profile + Geocaching + postcrossing
- CarlosManta
- Euro-Master

- Posts: 3026
- Joined: Mon Jan 07, 2008 6:11 pm
- Location: Porto, Portugal
- Contact:
Re: Avij's and Nerzhul's famous to do list
I agree 100%eddydevries wrote:Personally, I think the change is "okay" (for me, it wasn't neccesary, but I'm not against it either).
But there might be more contrast between the backgrounds of the lists (I mean the changing of color after each two notes). At this time there's so little difference, I missed some notes while counting them.
Re: Avij's and Nerzhul's famous to do list
-flop- wrote:maarsy wrote:when u enter a serial number in the expert field u can always change the numbers seperatly in the fields below
would it not be possible to do the same with the comment ( like if u see one has a dot or a stamp on it and change it in the comment field )
That's something I would appreciate too!
I don't think a consistent UI can be achieved without giving up many features of the form. That very features are what make it inconsistent! I'm talking about the different behaviour that the form entries "Value", "Short code", "Serial" and "Comment" have. It's nice to have a drop-down for the values, but it's inconsistent with the rest. It's nice to have short code validation before making it the default value, but it's inconsistent with the rest, and so on. Please note that this is not a criticism, just my own personal thoughts.Nerzhul wrote:Sorry, this won't be implemented, at least not by me. But feel free to build something suitable in GreaseMonkey or similar and see if you can come up with an easy, consistent UI concept. If it's good I'll migrate it to the main site
This said, I've made a quick GreaseMonkey script that allows users to modify individual comments and values after having set their default values. It does it by overriding the javascript functions that provide the "default value" functionality with modified versions that don't disable the 25 form fields below.
An obvious drawback of this, is that as soon as the original functions have some new features, they won't be available in these modified versions until locally modified to mimic them.
This is the code:
Edit: I haven't actually submitted any form using this modified javascript. Use at your own risk!
Code: Select all
function setDefaultDenom(a){
var b=a.selectedIndex;
var d=a.options[b].value;
if(d!="-"){
switch(d){
case"5":d=1;break;
case"10":d=2;break;
case"20":d=3;break;
case"50":d=4;break;
case"100":d=5;break;
case"200":d=6;break;
case"500":d=7;break;
}
for(var c=0;c<numRows;c++){
document.notes.elements["my_denomination"+c].selectedIndex=d;
//document.notes.elements["my_denomination"+c].disabled=true;
//document.notes.elements["my_denomination"+c].className="disabled"
}
}else{
for(var c=0;c<numRows;c++){
document.notes.elements["my_denomination"+c].selectedIndex=0;
//document.notes.elements["my_denomination"+c].disabled=false;
//document.notes.elements["my_denomination"+c].className=""
}
}
}
function setDefaultComment(b){
if(b!=""){
for(var a=0;a<numRows;a++){
document.notes.elements["my_comment"+a].value=b;
//document.notes.elements["my_comment"+a].disabled=true;
//document.notes.elements["my_comment"+a].className="disabled"
}
}else{
for(var a=0;a<numRows;a++){
document.notes.elements["my_comment"+a].value="";
//document.notes.elements["my_comment"+a].disabled=false;
//document.notes.elements["my_comment"+a].className=""
}
}
}
function js_override() {
document.body.appendChild(document.createElement('script')).innerHTML=setDefaultDenom.toString();
document.body.appendChild(document.createElement('script')).innerHTML=setDefaultComment.toString();
}
window.addEventListener ('load', js_override, false);Re: Avij's and Nerzhul's famous to do list
Don't worry, the color scheme and design aren't set in stone. I'm open for all suggestions and comments, but please be a little more constructive than "just doesn't work".
As for democracy, there's really no practical way to ask everyone about everything before doing anything. If you asked 10 users you'd get 11 opinions and nothing would ever move forward.
So IMO the better way is to implement new and improve existing features as I see fit and then finetune them with a greater audience. This has worked quite well in the past, and unless a significant number of users suddenly steps in and helps working on the website nothing will change about this modus. (So if you want to participate in the development process and be heard BEFORE changes go live I suggest joining the Web Development working group.
)
As for the design itself, let's discuss this openly. The main motivation behind the recent changes was that the old color scheme wasn't working either:
If you want to help, feel free to post suggestions, samples, templates or ideas...
As for democracy, there's really no practical way to ask everyone about everything before doing anything. If you asked 10 users you'd get 11 opinions and nothing would ever move forward.
So IMO the better way is to implement new and improve existing features as I see fit and then finetune them with a greater audience. This has worked quite well in the past, and unless a significant number of users suddenly steps in and helps working on the website nothing will change about this modus. (So if you want to participate in the development process and be heard BEFORE changes go live I suggest joining the Web Development working group.
As for the design itself, let's discuss this openly. The main motivation behind the recent changes was that the old color scheme wasn't working either:
- low contrast (grey text on grey background)
- dark, dirty and depressing color scheme (dark, blueish greyish theme, little color, little accents)
- tiring to look at, especially in darker environments
If you want to help, feel free to post suggestions, samples, templates or ideas...
EBT Webmaster | Author of the EBT-Tool | Dothunter! | EBT News on Twitter
Re: Avij's and Nerzhul's famous to do list
i would just LOVE some more colors in the lay-out!
but that might be a typical woman's opinion.....
but that might be a typical woman's opinion.....
what doesn't kill you makes you stronger.....
Join the EBT team on What Pulse
My stats: https://dserrano5.es/ebt/ebtst/stats/bren_nmgn/" onclick="window.open(this.href);return false;
feel free to add: facebook
MY PROFILE
Join the EBT team on What Pulse
My stats: https://dserrano5.es/ebt/ebtst/stats/bren_nmgn/" onclick="window.open(this.href);return false;
feel free to add: facebook
MY PROFILE
- eddydevries
- Forum Moderator

- Posts: 20030
- Joined: Sat Feb 18, 2006 5:49 am
- Location: Rotterdam (NL)
- Contact:
Re: Avij's and Nerzhul's famous to do list
I would like to ask another thing.
I don't know if you can change something at the forum (or maybe this only can be done by phpBB), but I would like to ask something about the search function at the forum.
With this function you can search for messages containing some words.
Now I wonder if it's possible to enlarge this search function to the "Personal messages".
Now I can't search for messages I wrote (or got) about (for example) "Meeting Malta".
I don't know if you can change something at the forum (or maybe this only can be done by phpBB), but I would like to ask something about the search function at the forum.
With this function you can search for messages containing some words.
Now I wonder if it's possible to enlarge this search function to the "Personal messages".
Now I can't search for messages I wrote (or got) about (for example) "Meeting Malta".
Eddy - Rotterdam - NL
weblog - EBT-stats 24-05-2013 - hits: 1742 +59 triples +1 quadruple = 1802.
Facebook-profile + Geocaching + postcrossing
weblog - EBT-stats 24-05-2013 - hits: 1742 +59 triples +1 quadruple = 1802.
Facebook-profile + Geocaching + postcrossing
- Jes
- Euro-Master

- Posts: 4933
- Joined: Thu May 24, 2007 9:38 pm
- Location: Away from home (once again)
- Contact:
Re: Avij's and Nerzhul's famous to do list
I like -and preffer- the new version. Brighter makes me feel happy(er) 
Anyway, whatever is chosen at the end, both of them are ok for me.
Anyway, whatever is chosen at the end, both of them are ok for me.
Jes Speaks English, French, Spanish, Tokpisin and Esperanto. (Currently learning Swahili).
Don't fear perfection, you'll never reach it! (by Salvador Dali)
my EBT: http://es.eurobilltracker.com/profile/?user=121292" coins and banknote collector.
Don't fear perfection, you'll never reach it! (by Salvador Dali)
my EBT: http://es.eurobilltracker.com/profile/?user=121292" coins and banknote collector.
- eddydevries
- Forum Moderator

- Posts: 20030
- Joined: Sat Feb 18, 2006 5:49 am
- Location: Rotterdam (NL)
- Contact:
Re: Avij's and Nerzhul's famous to do list
Another new question:
I previously saw something about the translation of the website (some words / sentences were forgotten to translate or to translate them differently). Then I sent a PM to all the Dutch translaters mentioned on this site.
But because there are many Dutch translaters (13), a lot of them reads my PM after the changes has been done. So they're reading this without reason.
For languages with 1 or 2 translators I think it's a good way to reach them, but if there are so many translators it's a bit "overkill".
I wonder, if it's possible to reach the translators at another way (maybe with this page?)?
(and no, I'm not soliciting for translator, because there are already much of them
)
I previously saw something about the translation of the website (some words / sentences were forgotten to translate or to translate them differently). Then I sent a PM to all the Dutch translaters mentioned on this site.
But because there are many Dutch translaters (13), a lot of them reads my PM after the changes has been done. So they're reading this without reason.
For languages with 1 or 2 translators I think it's a good way to reach them, but if there are so many translators it's a bit "overkill".
I wonder, if it's possible to reach the translators at another way (maybe with this page?)?
(and no, I'm not soliciting for translator, because there are already much of them
Eddy - Rotterdam - NL
weblog - EBT-stats 24-05-2013 - hits: 1742 +59 triples +1 quadruple = 1802.
Facebook-profile + Geocaching + postcrossing
weblog - EBT-stats 24-05-2013 - hits: 1742 +59 triples +1 quadruple = 1802.
Facebook-profile + Geocaching + postcrossing
Re: Avij's and Nerzhul's famous to do list
Today's update contains a set of small improvements:
- news items are only shown while they're young and fresh
- exit warning in all note entry forms (you must confirm navigation if there's valid note data, which makes it harder to accidently lose entered note data by accidently clicking a link or closing the browser)
- beginner form now contains some of the Javascript magic of the other forms (autotab, flags, input colors showing valid note data)
EBT Webmaster | Author of the EBT-Tool | Dothunter! | EBT News on Twitter
Re: Avij's and Nerzhul's famous to do list
I also get this warning when I press OK to enter notes.Nerzhul wrote:[*]exit warning in all note entry forms (you must confirm navigation if there's valid note data, which makes it harder to accidently lose entered note data by accidently clicking a link or closing the browser)
Jelle zonder internet. Het was een leuke hobby, maar niet mijn hobby. Een leven zonder internet is mijn ding. Een leven van geld uitgeven in plaats van tracken zeg maar.... hahaha. Ja, er mag gelachen worden.
Inloggen op site lukt niet meer, maakt niet uit. Ik snap toch niets van nieuwe biljetten
Inloggen op site lukt niet meer, maakt niet uit. Ik snap toch niets van nieuwe biljetten
-
MDeen
- Euro-Master

- Posts: 2179
- Joined: Mon Jul 15, 2002 11:52 am
- Location: Helden, The Netherlands
- Contact:
Re: Avij's and Nerzhul's famous to do list
What more than "bland, to bright, tiring, please let us have the old scheme back" do you need?Nerzhul wrote:Don't worry, the color scheme and design aren't set in stone. I'm open for all suggestions and comments, but please be a little more constructive than "just doesn't work".
Personally, I do not recognize any of these objections. As I said before, I think the new scheme has to little contrast, is too bright (to "solarized") and is tiring to look at, and especially in darker environments.As for democracy, there's really no practical way to ask everyone about everything before doing anything. If you asked 10 users you'd get 11 opinions and nothing would ever move forward.
So IMO the better way is to implement new and improve existing features as I see fit and then finetune them with a greater audience. This has worked quite well in the past, and unless a significant number of users suddenly steps in and helps working on the website nothing will change about this modus. (So if you want to participate in the development process and be heard BEFORE changes go live I suggest joining the Web Development working group.)
As for the design itself, let's discuss this openly. The main motivation behind the recent changes was that the old color scheme wasn't working either:
- low contrast (grey text on grey background)
- dark, dirty and depressing color scheme (dark, blueish greyish theme, little color, little accents)
- tiring to look at, especially in darker environments
I don't know how you think that a light scheme will be easier to look at in a dark environment. It usually is not. The eye adapts to the dark, and having to look at something bright is less pleasant than looking at something dark.
I know why no opinions were asked beforehand. Most people do not care and will not say anything. So a question "do you want the colorscheme changed" will most likely result in a "no". Only if the scheme is really horrible and illegible, people will complain.
I have not seen any complaints about the old scheme.
But really, my feeling is that objecting is of no use. Although you say that we can discuss openly, the only answer we get is "the majority does not complain, therefor it is better". To me this is the same as saying "we don't really want to listen to what it is you have to say.".
If that is the case, please tell us. I at least feel that nobody cares about the uservoice and that the opinion is "it's my website, it's my desicision".
I'm not going to dispute that, but please tell us if it is, so I know I don't have to complain anymore.
