From: Manfred S. <cre...@tr...> - 2003-02-14 14:47:25
|
sven: >> what i want to make: (see screenshot!) >> 1. statusbar for each download (not graphically, html table) >> [functions.inc] > > > I thought about it, too. What do the others think about Manfred's > way!? Would it be possible to put the bar behind the Text. I think so > (td with background-image, using css: edit the width and put a > "no-repeat"). Would save space on the gui ;-) thats right, ehm.. good idea...:) *thoughtful* i'll try it... or an other has it coded before? (ehm, can i use "coded" or what should i use?) >> 2. make the user be able to change the font settings (not header and >> footer: download list, server list and so on) by himself ("<font >> ".$conf->font.">) > > I'm a html purist, font things should be in the css or (at least) in > style=... > Maybe an extra config called personalDesign.inc or so? A seperation of > technical and design paramters...? oh yes, i forgot the css, i'm sorry... an extra inc for personal design is a good way... >> 3. then two little things: for myself i had make the changes, which u >> can see under the downloadlist table... > > looks good, don't forget the localizer ;-) well, now i think of it! :) > I'm living in Mahlow and work in Berlin (born in Wiesbaden) i'm work in berlin too...ähm: ausbildung zum fachinformatiker please translate this anyone?:) roman: >Hi Manfred, nice to have you in the team > > thanks, i hope i will be a support.. >>1. statusbar for each download (not graphically, html table) >>[functions.inc] >> >> >I haven't seen the code of your table yet, but isn't that a "dirty" hack >of html? I suggest to add a single pixel to the themes which can be >stretched (i think it's <img src="image.png" >width="$percent(/,*)$divisor"> where percent is the status of the >download and divisor is just a value that the bar can be scaled (e.g. if >divisor is "*2" it is 200 pixels large, if it's "/2", it's 50 pixels) > > dirty hack? no... $tdwidth = floor($value[prozent]); echo "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\n"; echo "<tr>\n"; echo "<td width=\"".$tdwidth."%\" bgcolor=\"#C7F8B8\"><font size=\"-3\"> </font></td>"; $tdwidth = 100 - $tdwidth; echo "<td width=\"".$tdwidth."%\" bgcolor=\"\"><font size=\"-3\"> </font></td>"; echo "</tr>\n"; echo "</table>\n"; simple! :) i think it's the best way to stay platform independent...(?) u're way would be running too but every load of an image is needed more time i know, its a very small image... my thoughts... >Isn't the font something which should be handled by themes? I suggest we >better do this in the css and put only "important" options in the >config.inc > > right, its better... see my answer to sven... probably we can code a setup.php?! so that the gui becomes more customizable... *!?* one idea... :) >Well... i think i didn't told you where i come from yet, so here it >comes: >I'm from germany, too. But not also from Berlin but from the South... >about 30 kilometers from Stuttgart > > *g* cool... germany has more developer! *g* >Another thing: Now, that phpEselGui is definitively an international >project, shouldn't the standard-setting in the config.inc be english? > a must! and.. delete the localizer.. no, just a joke.. but more languages will needed...:) greetz manfred p.s.: sven, can u change my email adress for the mailinglist into: "man...@gm..." ? i have some problems with this account.... |