February 10, 200521 yr double quotes in config.js cause a problemis there any other work-around than editing it line by line?
February 11, 200521 yr Author in the original config.js that was in the package of wpi, double quotes were usedif double quotes were opened then single quotes were opened, the jscript will run normallyhowever i am not sure whether it will work the other way round, if we open single wuotes first then double quotes
February 18, 200521 yr There's some rule with quotes:rule 1: Opened quotes must be closed. (eg 'helo friendly name' )rule 2: ' is different from " (eg. WRONG: 'helo friendly name" )rule 3: if you use a ' for opening a string, you can use " inside the string and vice versa. (eg. 'helo "friendly" name' ) rule 4: if you have to use the same type of quote inside a string you'd have to escape it (eg 'helo \'friendly\' name' )Any one knows more ?
Create an account or sign in to comment