| Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 30 .. 30 :: one page |
| Author |
Thread Statistics | Show CCP posts - 26 post(s) |

Jin So
Gallente Red Mercury Industries Legiones Astartes
|
Posted - 2007.03.15 06:07:00 -
[811]
Ok, this maybe a n00b question by now but, I seem not to be able to find the info on it after searching the forums and other sites.
What i am wanting to do is make it where if your in my corp you have access to certain items, wehil people that are not in your corp are directed to a Sorry page.
Any help would be apperciated. :)
-Jin
|

Tonto Auri
Center for Advanced Studies
|
Posted - 2007.03.15 12:03:00 -
[812]
When You try to use IGB functionality in security purposes (i.e. for authorisation), You make a great mistake. IGB functions can be easily substituted by anyone.
So, You must use IGB functions in security-related tasks only AFTER proper authorisation (f.e. by login/password) or in parallel with it. -- . |

Mirida
Cataclysm Enterprises Dusk and Dawn
|
Posted - 2007.03.15 16:30:00 -
[813]
Edited by: Mirida on 15/03/2007 16:26:17
Originally by: Tonto Auri When You try to use IGB functionality in security purposes (i.e. for authorisation), You make a great mistake. IGB functions can be easily substituted by anyone.
I cannot emphase this enough, don't trust the IGB headers, i fake them in 2 minutes (Actually i got a script which does this within 1s but it can't send form data). ___________________
EVE Development Network <Lead Developer> |

Joshua'Raven
The Descent
|
Posted - 2007.03.17 12:54:00 -
[814]
HERE it says that a lot of the CSS1 and CSS2 properties are supported. However, when trying to create a very simple page the IGB seems to disregard the CSS?
Quote:
<html> <head> <title>EVE IGB test</title> </head> <body> <div style="background-image:url(http://localhost/EVE/new/images/top-background.png)"> test test test test test test test test test test test test test test test test test test test test <br /> test<br /> test<br /> test<br /> test </div> </body> </html>
This is a very stripped down test, I used to have a lot more stuff in it, like content-type, the css in a .css file, doctype (html 4.01) and other things. I also tried to use '../images/top-background.png' but that doesn't do the trick either.
When I use the img tag it does show the img, just not when I want it to be a background...
|
|

Traveler

|
Posted - 2007.03.19 19:44:00 -
[815]
Please write a bug report about the div background bug. I checked the code and the background image parsing is simply missing. Setting the background color should work though.
Traveler UI programmer |
|

Joshua'Raven
The Descent
|
Posted - 2007.03.20 11:00:00 -
[816]
Originally by: Traveler Please write a bug report about the div background bug. I checked the code and the background image parsing is simply missing. Setting the background color should work though.
I'll report the bug. Does the missing div background-image parsing also apply to other elements that can have backgrounds when using the HTML tags instead of CSS?
|

Padaxes
Minmatar Masuat'aa Matari Ushra'Khan
|
Posted - 2007.03.20 21:39:00 -
[817]
Hi,
Im generating an image using php and it wont display igb, works fine out of game. Can anyone with orking php generated jpg images please let me know how ?
I have a file called drawimage.php
which contains
imagejpeg($image);
i call this from another file with this
echo("<img src='drawimage.php'>");
Any ideas why it doesnt work igb ?
thanks
|

Padaxes
Minmatar Masuat'aa Matari Ushra'Khan
|
Posted - 2007.03.20 22:20:00 -
[818]
Ok fixed it by ditching the call and using the image page url directly and using a variable variable for the image itself.
|

Padaxes
Minmatar Masuat'aa Matari Ushra'Khan
|
Posted - 2007.03.20 22:45:00 -
[819]
Edited by: Padaxes on 20/03/2007 22:43:22 .
|

Tonto Auri
Center for Advanced Studies
|
Posted - 2007.03.21 03:22:00 -
[820]
Originally by: Padaxes Hi,
Im generating an image using php and it wont display igb, works fine out of game. Can anyone with orking php generated jpg images please let me know how ?
I have a file called drawimage.php
which contains
imagejpeg($image);
Are You sure You send proper headers with that image? -- . |

Padaxes
Minmatar Masuat'aa Matari Ushra'Khan
|
Posted - 2007.03.22 10:41:00 -
[821]
Yeah ive got the image working now. Im interested in how to get dynamic images refreshing correctly. I seem to have to right click then refresh image THEN refresh page. And even then its sporadic.
|

Tonto Auri
Center for Advanced Studies
|
Posted - 2007.03.22 20:17:00 -
[822]
Originally by: Padaxes Yeah ive got the image working now. Im interested in how to get dynamic images refreshing correctly. I seem to have to right click then refresh image THEN refresh page. And even then its sporadic.
Add somewant randseed to script which generates dynamic image.
Like
Quote: <?php
list($usec, $sec) = explode(' ', microtime()); printf('<img src="dynimg.php?r=%f"/>', $usec);
?>
-- . |

Tonto Auri
Center for Advanced Studies
|
Posted - 2007.03.24 10:23:00 -
[823]
Originally by: Kitty Kupcake Is there a way to make inline div's that resemble a table. An explanation of what I am referring to is as follows.
Ok so I have a list of portraits and info after them. There are two requirements I would like. 1- Do not use TD per portrait, if possible do not use tables at all 2- The portraits have to wrap around within a confined space
The following is an OOGB example of how I would like it to look IGB.
http://www.evolon-project.com/projects/lists.html
When viewed in game, the portraits do not float next to each other. Instead each div creates a new line. Am I coding it wrong, or is there another way I can do what I am requiring?
Please do not refer me to the commands page or the Test case page. I have been to both throughly. The section on the Test case page relating to Inline divs, gives me a "Not Found" when clicked. So if you can post back an example that would be AWESOME!
Thanks
I think, there is a bug in rendering. And not only one.
Originally by: CSS rules left: The element generates a block box that is floated to the left. Content flows on the right side of the box, starting at the top (subject to the 'clear' property). The 'display' is ignored, unless it has the value 'none'.
Example
Bugs summary: div { margin-top: 10px; } - no effect <br/> - no effect, but <br /> works float - property works incorrect text-align: center; - no effect inside floating <div> -- . |

Lake
The Praxis Initiative FREGE Alliance
|
Posted - 2007.03.29 20:16:00 -
[824]
I'll submit a BR if it isn't just me doing something odd (I stopped paying much attention to web development before CSS came into vogue):
I'm trying to make a textarea conform to the width of the browser window, but the textarea element has no HTML attribute for width=95%, only cols=#. Sticking a style="width:95%" works in other browsers but the IGB throws an exception. It doesn't appear to have trouble with this for other elements that I've tried, only textarea.
Anyone have a workaround?
---The Exception (excerpt)--- Thrown at: //lib/bluepy.py(23) in __call__ //ui/shared/browser.py(429) in goto //ui/control/bastard/edit.py(557) in _goto //ui/control/bastard/edit.py(568) in handleexception Exception: NameError: global name 'log' is not defined --- ---
-- Lake, Founder of The Praxis Initiative |

Tonto Auri
Center for Advanced Studies
|
Posted - 2007.03.29 23:06:00 -
[825]
Can You PLEASE provide test page to illustrate Your issue? -- . |

Lake
The Praxis Initiative FREGE Alliance
|
Posted - 2007.03.29 23:13:00 -
[826]
Sure. Posted edited with: Example Page
-- Lake, Founder of The Praxis Initiative |

Dickins Cider
|
Posted - 2007.03.30 23:08:00 -
[827]
Greetings,
I, like many others, have been working on some IGB pages and other eve tools. I seem to spend much of this development time on the train commuting back and forth to work. It would be great if I had a way to test IGB pages out-of-game (I know, sounds silly). I don't always have the luxury of an Internet connection to run the EVE client. Is there any way I can test IGB pages out-of-game?
Thank you, DC
|

Morphed Override
Brotherhood in Light
|
Posted - 2007.04.01 13:37:00 -
[828]
Edited by: Morphed Override on 01/04/2007 13:34:54 Edited by: Morphed Override on 01/04/2007 13:34:04 Hi,
working on a website and noticed that when it asked to be trusted, if i clicked, "Do Not Ask Me Again For This Site Again" and then clicked YES, it would save it has Not Trusted.
Ok perhaps its something wrong with my code. Tried with the bughunters page ( http://bughunters.addix.net/igbtest/ingametest.php ) and same thing happened :/
any ideas?
BTW just clicking yes and not selecting the Do Not Ask Again.... option works fine.
btw. clicking yes with out selecting the Do not ask again.... option works fine still :S
|

Tonto Auri
Center for Advanced Studies
|
Posted - 2007.04.01 17:35:00 -
[829]
Originally by: Morphed Override working on a website and noticed that when it asked to be trusted, if i clicked, "Do Not Ask Me Again For This Site Again" and then clicked YES, it would save it has Not Trusted.
Ok perhaps its something wrong with my code. Tried with the bughunters page ( http://bughunters.addix.net/igbtest/ingametest.php ) and same thing happened :/
any ideas?
BTW just clicking yes and not selecting the Do Not Ask Again.... option works fine.
Looks like bug. I was got same problem but not check it and forgot to report.
Originally by: ****ins Cider Greetings,
I, like many others, have been working on some IGB pages and other eve tools. I seem to spend much of this development time on the train commuting back and forth to work. It would be great if I had a way to test IGB pages out-of-game (I know, sounds silly). I don't always have the luxury of an Internet connection to run the EVE client. Is there any way I can test IGB pages out-of-game?
Thank you, DC
Try to check it against XHTML STRICT and not use too much tables. It'll work ok with good chances. -- . |

Jazerian
|
Posted - 2007.04.06 19:55:00 -
[830]
Originally by: Tonto Auri Add somewant randseed to script which generates dynamic image.
Like
Quote: <?php
list($usec, $sec) = explode(' ', microtime()); printf('<img src="dynimg.php?r=%f"/>', $usec);
?>
Provided the below quote isn't bugged/unavailable, it's a lot neater (and neat is gooood).
Quote: Dynamic images are recognized. Use Pragma: no-cache in the image header to make sure the image is not cached.
Quote: header("Pragma: no-cache");
|

Pwett
Minmatar QUANT Corp. Southern Connection
|
Posted - 2007.05.11 04:03:00 -
[831]
So, I thought I'd bump this up.
I've made myself a little php function that converts html <table>-style tables to something that is readable by <pre> tags.
So, I'd just to add my weight to the request for a fixed-width font.
you can kind of flub it using the nestable <tt> flag which is nestable and has no use in and of itself and using letter-spacing: 0 for digits, 1 for lowercase letters and 2 for uppercase. But, as you can imagine, the source gets very very busy. _______________ Pwett CEO and Founder [QTC]QUANT Corp.
|

Adalante
|
Posted - 2007.06.11 17:35:00 -
[832]
I would also like it , if there was a fixed-width font. With this and the <pre> tags it would be possible to nearly replace tables.
And i think the most people using the igb would be happy about a possibility to show structured data, without making the page to load for 30 seconds.
Or is there any other possibility to replace the slow tables? I made a page that needs sorted strucuted data, but with more than 30 rows it needs at least 15seconds to load, thats a long time, if you just want to view some data.
Please, give us anything to replace the tables, or make them fast as they work in ogb
|

Eddie Knight
Empirius Enigmus Navy Dark Matter Coalition
|
Posted - 2007.07.09 16:50:00 -
[833]
The image map support seems to be broken. I have the following:
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <title> New Document </title>
<meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8" /> <meta name="Generator" content="Notepad" /> <meta name="Author" content="Eddie Knight" />
<map name="test"> <area shape="rect" href="showinfo:3//10000032" coords="5,5,100,200"> </map> </head>
<body> <img usemap="#test" src="bgr.png" /><br /> </body> </html>
The area shows on the page in the IGB but it won't link to anything and instead of the normal hand cursor, I see an arrow with a checkmark in the lower right corner of the cursor.
Aditionally, this is missing.
Note: placing the <map>...</map> in the body has the same effect. _____________
 |

Marie deMedici
|
Posted - 2007.07.11 22:08:00 -
[834]
I have a problem with IGB , it doesnt work. =)
All pages load forever, nothing is shown. Tcpdump shows that the page is requested and returned ok. Firewalling should not be a problem.
Local pages (local harddrive) are returned as unsupported , even though they are examples picked from working pages or handwritten to contain minimal tags.
Local pages which dont exist are correctly returned as 404
|

Tonto Auri
Vhero' Multipurpose Corp
|
Posted - 2007.07.11 22:14:00 -
[835]
If You using some sort of adware blocker, like built in many firewalls, it may be an issue. -- . |

Marie deMedici
|
Posted - 2007.07.11 22:23:00 -
[836]
firewalling shouldnt be a problem, all outbound connections should be allowed and my linux firewall is showing quite normal tcp traffic ie. the page is fetched and returned ok, i see the whole content coming back through the linux box. (and it worked before, no settings have changed)
|

Marie deMedici
|
Posted - 2007.07.12 23:21:00 -
[837]
addition: a single png loaded ok, when referenced directly. eve.hubau.be after this didnt. so it is not a firewall issue.
|

Jay Willams
|
Posted - 2007.07.13 00:40:00 -
[838]
Several bugs to report with forms on the Tranquility browser:
1) Inputs are not always tabbed correctly. For example: I have 1 input type=text, followed by a textarea, then a submit button. The textarea is 'selected' first, and when I tab it goes to Subject, then it goes out of the IGB window. Could you possibly add support for the tabindex or sort the tabs by order in which they appear? Here is an example: Example1
2) Textarea with HTML input are not functioning properly. 2a) Converting html tags to & gt ; and & lt ;(no spaces) does not work either... they dont appear as < or >. (HTML for 2 and 2a: Example2 Screenshot of 2 and 2a: SS E2
EDIT: 2a is wrong... i mixed up lt and gt... it now appears as a link, and in the proper place, but i cannot see the HTML of it. Will there be future support for HTML editing in textareas?
|

Gentzen
|
Posted - 2007.07.24 14:05:00 -
[839]
since Revelations 2.1 and Python 2.5, In-Game-Browser sends "Python-urllib/2.5" as User-Agent instead of "EVE-minibrowser".
Is this change intended ?
I have to decide whether I should modify my wiki, which sends different HTML depending on client-user-agent, or wait until the behavior of IGB become normal again. ----- [tool]Turret Calculator, admin of evewiki.info |

Tonto Auri
|
Posted - 2007.07.25 17:53:00 -
[840]
Bump - all stil there.
Broken examples.
Quote: HTTP/1.1 200 OK Date: Sun, 18 Feb 2007 22:09:04 GMT Server: Apache/2.0.52 (Win32) PHP/4.3.1 Accept-Ranges: bytes X-Powered-By: PHP/4.3.1 Transfer-Encoding: chunked Content-Type: text/html; charset=utf-8
Not affects anything, but EVE herself uses UTF-8 as internal encoding.. So strange for me...
<head> <base href="http://somesite/somepath/"/> Same as above - no effect.
<a name="name"/> Looks great... Must not be seen at all. Anyway I recommend to make IGB compatible with XHTML strict standard. This may helps You so much in development because You always can check player's pages outside of IGB and tell to him that their page not conform to standard. And You may save great amount of time by using one of standard parsers or write Your own - much simple in case of strict standard.
<a href="shellexec:mailto:[email protected]?...."> URL not supported.. Are "shellexec:http://" hardcoded?? Why??
All examples at http://project.dyndns.org/EVE/evec.php
Originally by: CSS rules left: The element generates a block box that is floated to the left. Content flows on the right side of the box, starting at the top (subject to the 'clear' property). The 'display' is ignored, unless it has the value 'none'.
Example
Bugs summary: div { margin-top: 10px; } - no effect <br/> - no effect, but <br /> works float - property works incorrect text-align: center; - no effect inside floating <div> -- Thanks CCP for cu<end of sig> |
| |
|
| Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 30 .. 30 :: one page |
| First page | Previous page | Next page | Last page |