@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info


Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5



Comments:

<[Torgo]> anybody using bugzilla?
<furtive> nope, although i hear they came out with a windows desktop client.
<ht311> nope, that is a paid client
<ht311> bugzilla need a some work to make it look nice
<ht311> we use jira now
<furtive> losing interest in the bug tracking in perforce?
<furtive> or for work?
<NeoFu7ure> who the hell ever thought about writing a filesystem and moving files around :/
<ht311> hahhaaa
<ht311> don't tell me you store the binary to the mysql
<ht311> i thought you have store the virtual filesystem, why it is a problem moving it around?
<NeoFu7ure> its not
<NeoFu7ure> its the logistics of getting things right
<NeoFu7ure> um i do store the binary in MySQL
<ht311> i will something to do that and put my frontend on that. even i do that i will just store the meta in the db and rename the file to a guid and store them in os
<NeoFu7ure> nah i need everything in database hence why im doing this
<NeoFu7ure> but its ok
<NeoFu7ure> the problems is making a "recycle bin"
<NeoFu7ure> lol
<NeoFu7ure> nearly got it tho
<vardhan> call it Trash bin
<vardhan> recycle sounds too windows
<ht311> recycle bin will be just a boolean flag
<NeoFu7ure> yeah could do
<NeoFu7ure> but not really that easy
<NeoFu7ure> what if a folder is deleted/renamed and had a file thats now in the recycle bin if you want it back in the same please your buggered
<NeoFu7ure> as soon as you unflag it the file disapears
<vardhan> then surely, the world will come to an end :p
<ht311> just my data sturcture in mind is different from yours
<ht311> :)
<ht311> going to eat
<ht311> later
<furtive> POSSUM!
<Cquence> Greetings ppl!
<furtive> howdy
<Cquence> I've got a text filed (<input> tag) and i was wondering if there is a onLostFocus event.
<Cquence> is there such a thing?
<furtive> onblur
<Cquence> furtive: thanks!
<furtive> or if you want to go the complicated route, ya write something that checks when onfocus is called on other elements. my nobody wants that.
<furtive> np
<furtive> s/my/but
<Cquence> yea i got that dont worry
<Cquence> well that was my primary thoght
<Cquence> what i'm trying to do is comparing p***word field with ReP***word field *if you know what i mean)
<Cquence> then i thogh of the onMouseOut
<furtive> yeah, but mouse might never go into input
<furtive> or can leave before you're done
<furtive> anything that has onfocus has an onblur too
<Cquence> Perfect! thanks!
<furtive> good list of event handlers and details here: http://www.javascript-channel.com/Wiki.jsp?page=EventHandlers
<Cquence> furtive: thanks man, i was looking for a reference!
<furtive> np
<furtive> wow, 3-0 Toronto in first 10 minutes.
<NeoFu7ure> http://www.neofuture.co.uk/bitchunker/browser.php
<furtive> cute
<NeoFu7ure> the recycle bin works too
<NeoFu7ure> (no restore yet tho)
<NeoFu7ure> check out my [browse] button
<NeoFu7ure> lol
<furtive> looks good, putting treeview on left?
<NeoFu7ure> yeah
<Cquence> is there a way i can get users IP with Javascript ? ( get = show on page)
<furtive> no
<furtive> js is client side
<Cquence> only server site support ?
<furtive> you can get it with serverside languages
<furtive> yup
<Cquence> ok
<Cquence> furtive: I have an option field. And i want to get its selection with js. how do i do that? document.getElementId('field_name').[0].checked ???
<furtive> http://www.javascript-channel.com/Wiki.jsp?page=FAQ#select
<Cquence> 10x
<furtive> np
<Cquence> emm...
<Cquence> man i could use some help now if possible...
<NeoFu7ure> anyoen got a str validation 0-9,-.-a-z.A-Z
<NeoFu7ure> no ****e charcters
<furtive> A throaty Charlton Heston whispering "Zaaaaanzibar..." into your ear while you sleep, lusting inaudibly for the beaches of Tanzania.
<Cquence> NeoFu7ure: /s ?
<NeoFu7ure> ok filename validation
<furtive> [a-zA-Z0-9]
<furtive> oh, add a \. in there
<NeoFu7ure> var objRegExp = /(^[a-z_0-9 .A-Z]+$)/;
<NeoFu7ure> i think ill have
<furtive> escape the .
<furtive> i think
<furtive> NeoFu7ure: http://regexplib.com/REDetails.aspx?regexp_id=965
<Cquence> NeoFu7ure: /(^[a-z_0-9\.A-Z]+$)/
<furtive> although that will allow . as a filename, and ..
<Cquence> windows allow .. aswell!
<furtive> does it allow .?
<furtive> (that's a question ;-) )
<Cquence> XP does!
<NeoFu7ure> xp allows ./.././..///././/.// as a filename if you nativly make it
<NeoFu7ure> it wont list in explorer but will excist in fat
<Cquence> explorer is another matter. :)
<Cquence> furtive: I have an option field. And i want to get its selection with js. how do i do that? document.getElementId('field_name')[0].checked ???
<Cquence> oups
<Cquence> document.getElementId('field_name').checked[0]
<Cquence> this is the way?
<NeoFu7ure> .selected
<NeoFu7ure> whats realistc for folders do you think
<NeoFu7ure> a-z_0-9\.A-Z-=+*
<NeoFu7ure> what else
<furtive> you can put spaces and ' in windows folder names
<furtive> i do it all the time
<Cquence> No you cant put " ' " sign in them
<NeoFu7ure> you can
<furtive> i just did
<furtive> and i said i do it all the time
<NeoFu7ure> \/:*?<>"|
<NeoFu7ure> are the NOT allowed list
<NeoFu7ure> (apparently)
<furtive> %?
<Cquence> Yes i'm sorry i was talking about the "
<Cquence> the not allowed are: \/:*?"<>
<Cquence> and | yes
<Cquence> the % is allowed
<Cquence> there is also character limit
<NeoFu7ure> yah i dont care about that (i aitn aloweing any more than 65)
<NeoFu7ure> http://www.neofuture.co.uk/bitchunker/browser.php
<NeoFu7ure> IE only Work in progress
<NeoFu7ure> http://www.neofuture.co.uk/whiteboard/whiteboard.php
<NeoFu7ure> ignore that whoops
<NeoFu7ure> awe crap i can make a file with spaces in it and jack all else
<NeoFu7ure> ok i need to sort that :/
<furtive> http://www.mileskimball.com/images/us/local/products/detail/p62082b.jpg
<Cquence> Can someone pls take a look at this: http://www.nomorepasting.com/paste.php?pasteID=57106 and tell me what am i missing here?
<furtive> is - a legal character in a name?
<NeoFu7ure> http://www.mileskimball.com/images/us/local/products/detail/p62082b.jpg
<NeoFu7ure> coool
<Cquence> furtive: i dont know if JS is catching it but its legal cause i p*** it to a cgi script
<Cquence> let me check it tho
<NeoFu7ure> Internet Explorer Developer Toolbar Beta
<furtive> yeah, - is legal
<NeoFu7ure> oooooooohh
<Cquence> yeah :(
<NeoFu7ure> Explore and modify the document object model (DOM) of a web page.
<Cquence> you are right!
<Cquence> its working now!
<NeoFu7ure> lol
<NeoFu7ure> whoops
<furtive> found it
<furtive> on line you have a . before [aSelect...]
<furtive> sorry, on line 3
<NeoFu7ure> WOW this is cool
<furtive> use the javascript console in mozilla or the debugger NeoFu7ure mentioned
<NeoFu7ure> its awsome
<furtive> NeoFu7ure: is this your setup? (scroll down): http://www.bulletinboardforum.com/m/homemade_web_server.php


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #javascript
or
Go to some related logs:

rar archive tool for ubuntu
#teens
fn_four_point_eight_nine_eight_nine_seven_nine_fou...
#java
wget scan
#chatzone
#AllNiteCafe
apt-cache linux ubuntu
#php
firefox can't cut and paste



Home  |  disclaimer  |  contact  |  submit quotes