Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
3answers
65k views

How do I break out of a loop in Perl?

I'm trying to use a break statement in a for loop, but since I'm also using strict subs in my Perl code I'm getting an error saying: Bareword "break" not allowed while "strict subs" in use at ...
24
votes
4answers
3k views

Which (javascript) environments support ECMAscript 5 strict mode? (aka “use strict”)

ECMAScript 5 is in its final draft as I write this; It is due to include a strict mode which will prevent you from assigning to the global object, using eval, and other restrictions. (John Resig's ...
16
votes
4answers
25k views

PHP 5 disable strict standards error

I need to setup my PHP script at the top to disable error reporting for strict standards. Can anybody help ?
13
votes
14answers
736 views

Is it worth the development time to output valid HTML?

Developing websites are time-consuming. To improve productivity, I would code a prototype to show to our clients. I don't worry about making the prototype comform to the standard. Most of the time, ...
12
votes
2answers
115 views

GCC options for strictest C code?

What GCC options should be set to have GCC as strict as possible? (and I do mean as strict as possible) I'm writing in C89 and want my code to be ANSI/ISO compliant.
8
votes
5answers
197 views

Strict ISO C Conformance Test

I am currently working on a C project that needs to be fairly portable among different building environments. The project targets POSIX-compliant systems on a hosted C environment. One way to achieve ...
8
votes
5answers
334 views

php best practices enforcement

I try to ensure that the code I write is of the best quality possible, so I strive to follow accepted sets of best practices. In perl, I try to follow the guidelines in the popular book "Perl Best ...
7
votes
4answers
104 views

VB6: Disable variants

I have a large VB6 projects where a lot of variables don't have an explicitly defined type, so they automaticly default to Variant type. Finding all those by hand is a massive task, so is there any ...
5
votes
2answers
161 views

Standards-compliant equivalent to target=“_blank”

There are instances where I have to open links in a new window/tab. Is there a method of doing so that is valid for strict HTML? Using jQuery to do so would be acceptable, but I'd rather not just ...
5
votes
2answers
199 views

How can I avoid this error produced while using 'strict'?

I have a couple of lines of code that work if use strict; is commented out. However, I don't want to have it disabled for the entire script just because of one small section. I need to either recode ...
5
votes
5answers
461 views

Perl: Why is it slower to declare (my) variables inside a loop?

What's the difference, from the interpreter's POV, between the following the following programs: #!/usr/bin/perl -w use strict; for (1..10000000) { my $jimmy = $_**2; } and #!/usr/bin/perl ...
5
votes
2answers
879 views

In ECMAScript5, what's the scope of “use strict”?

What scope does the strict mode pragma have in ECMAScript5? "use strict"; I'd like to do this (mainly because JSLint doesn't complain about it): "use strict"; (function () { // my stuff here... ...
4
votes
2answers
223 views

ActionScript: Should I always use strict equality (“===”)?

I'm wondering if I should always use "===" (strict equality) when doing equality checks... Is there any example of when it is preferable to use "==" (non-strict equality)? In particular, should: if ...
4
votes
3answers
7k views

Strict Standards: Only variables should be passed by reference

$el = array_shift($instance->find(..)) The above code somehow reports the strict standars warning,but this will not: function get_arr(){ return array(1,2); } $el = array_shift(get_arr()); ...
3
votes
2answers
106 views

Why doesn't “use strict” (JavaScript) detect an undeclared variable?

I'm trying to get the "use strict"; directive to work, and having a bit of trouble. In the following file FireFox 9 will (correctly) detect that someVar hasn't been declared on line 3, but fails to ...
3
votes
1answer
187 views

Why is JSHINT complaining that this is a strict violation?

I think this may be a duplicate of Strict Violation using this keyword and revealing module pattern I have this code: function gotoPage(s){ if(s<=this.d&&s>0){this.g=s; ...
3
votes
2answers
116 views

Perl - Array reference, using strict

I have the following code: my @array = ('a', 'b', 'c'); my $region = \@array; # Returns an array reference my $Value = ${@{$region}}[3]; I am using strict; This code passed smoothly in Perl ...
3
votes
3answers
268 views

Splint warning “Statement has no effect” due to function pointer

I'm trying to check a C program with Splint (in strict mode). I annotated the source code with semantic comments to help Splint understand my program. Everything was fine, but I just can't get rid of ...
3
votes
5answers
219 views

Can 'use strict' warn instead of error

When using use strict perl will generate a runtime error on unsafe constructs. Now I am wondering if it is possible to have it only print a warning instead of causing a runtime error ? Or is use ...
3
votes
2answers
369 views

Disable a built-in function in javascript (alert)

Simple: I want to disable/overwrite alert(). Can I do this? More importantly, is it right to do this? What about strict mode?
3
votes
4answers
619 views

Why does Perl's strict not let me pass a parameter hash?

I hava a perl subroutine where i would like to pass parameters as a hash (the aim is to include a css depending on the parameter 'iconsize'). I am using the call: get_function_bar_begin('iconsize' ...
3
votes
2answers
1k views

Should I worry about “window is not defined” JSLint strict mode error?

This won't pass JSLint in strict mode: "use strict"; (function (w) { w.alert(w); }(window)); The error--from jslint.com--looks like this: Problem at line 4 character 3: 'window' is not defined. ...
3
votes
5answers
258 views

Why does defined sdf return true in this Perl example?

I tried this example in Perl. Can someone explain why is it true? if (defined sdf) { print "true"; } It prints true. sdf could be any name. In addition, if there is sdf function defined and ...
2
votes
4answers
57 views

Set variable within another context

I have the following function "use strict"; function Player { this.width; this.height; this.framesA = 5; this.image = new Image(); this.image.onload = function () { ...
2
votes
1answer
49 views

Function executes faster without STRICT modifier?

I wonder about a slump in performance when a simple SQL function is declared STRICT. I stumbled upon this phenomenon while answering a question here. To demonstrate the effect I create two variants ...
2
votes
1answer
61 views

Problems with eval and use

I wrote this code and it works when POE module is installed in the system. #!/usr/bin/perl use strict; use warnings; use POE; ... But I want to determine if this module exist: #!/usr/bin/perl ...
2
votes
1answer
70 views

Strict variable declaration in Scheme

Does Scheme lisp provide any lib. similar to perl "strict" variable declaration?
2
votes
1answer
383 views

Strict Violation using this keyword and revealing module pattern

Having trouble getting the following to pass jslint/jshint /*jshint strict: true */ var myModule = (function() { "use strict"; var privVar = true, pubVar = false; function ...
2
votes
1answer
155 views

JavaScript: Strict mode and anonymous functions

Nearly all my JS files are wrapped in anonymous functions. If I include "use strict"; outside the anonymous function, is strict mode still applied to the anonymous function? For example, is strict ...
2
votes
3answers
248 views

JavaScript: Can ECMAScript 5's Strict Mode (“use strict”) be enabled using single quotes ('use strict')?

JavaScript doesn't care if your Strings are double-quoted "double" or single-quoted 'single'. Every example of ECMAScript 5's strict mode has it enabled by "use strict" in double-quotes. Can I do the ...
2
votes
6answers
230 views

XHTML Strict is not valid becouse of html tags inside Javascript

Alright, so I'm creating the site using XHTML Strict markup. Inside of html I need to put js script: <script type="text/javascript"> $(document).ready(function () { $('#nav ...
2
votes
1answer
211 views

How to enable ECMAScript “use strict” globally?

I have a project with literally hundreds of JavaScript source files. I am wondering what is the best way to enable the strict mode for the project? I understand the consequences of this action and I ...
2
votes
2answers
216 views

hasOwnProperty and ECMAScript 5 strict mode

I'm curious: anyone knows why the ECMAScript5 specification hasn't tightened more the predefined object prototype's properties in strict mode? For instance, it seems like there's no info regarding the ...
2
votes
2answers
297 views

Why is this illegal in strict mode?

Yeah, yeah, I know, strict mode ain't around yet, but really, I'm planning for the future... So, why is this: $('#'+ $(this).attr('id').replace('control-', 'legend-')).fadeIn(); ... not allowed in ...
2
votes
2answers
332 views

Using Dumper not triggering a failure

when running code like this: use strict; print Dumper "something"; nothing is printed out and no error occurs during compile and runtime. Why does this happen? Why doesn't strict prevent this code ...
2
votes
1answer
331 views

Can the rel= attribute contain any string characters and still validate?

I'm wondering because I want to store something other than pre-defined keywords that are typically assigned to rel... and I just wanted to know if this is valid XHTML Strict or not.
2
votes
4answers
8k views

PHP5: Creating default object from empty value

I'm getting an error in my PHP code Strict Standards: Creating default object from empty value. The code I'm using is: $u = new User(); $user->id = $obj['user_id']; The error is appearing on the ...
2
votes
2answers
1k views

Is there a good *strict* date parser for Java?

Is there a good, strict date parser for Java? I have access to Joda-Time but I have yet to see this option. I found the "Is there a good date parser for Java" question, and while this is related it ...
1
vote
0answers
12 views

Is there any distributed, strict, transactional, read/write L2 cache provider for hibernate in weblogic 10 + java 5?

Is there any distributed, strict, transactional, read/write L2 cache provider for hibernate in weblogic 10 + java 5? Infinispan looks appealing, but you need java 6. Hands are tied with java 5.
1
vote
2answers
94 views

Disable “use the function form of use strict” but keep the “Missing 'use strict' statement” warning

I am using jslint to validate my code. I have "use strict" on all my pages. How can I disable the message "use the function form of 'use strict'" but keep the "Missing 'use strict' statement" warning, ...
1
vote
1answer
36 views

Finding invalid 0000-00-00 dates on mysql database

We are moving our mysql database to strict_all_tables from non-strict mode and would like to find all existing rows with invalid dates (0000-00-00) from all databases and tables on our server. Is ...
1
vote
2answers
196 views

Convert a Lazy ByteString to a strict ByteString

I have a function that takes a lazy ByteString, that I wish to have return lists of strict ByteStrings (the laziness should be transferred to the list type of the output). import qualified ...
1
vote
1answer
54 views

Javascript: besides “use strict”, which other “use” directives are there?

besides "use strict", which other "use" directives are there? apparently my short question doesn't meet stackoverflow's quality standards so I have to add this sentence and more to allow me to post ...
1
vote
2answers
207 views

Would this enable “use strict” globally?

Similar, but not the same as, How to enable ECMAScript "use strict" globally? I have bought JavaScript Patterns and it recommends enabling use strict. Adding it to the two dozen javascript files ...
1
vote
1answer
85 views

Vim syntax file to be stricter about HTML syntax

I just got bit by a bug that was <link rel=stylesheet" type="text/css" href="stylesheet.css" media="all"> rather than <link rel="stylesheet" type="text/css" href="stylesheet.css" ...
1
vote
2answers
117 views

Which tags are can be self closing and which ones must have a closing tag in XHTML 1.0 Strict?

Which tags are can be self closing and which ones must have a closing tag in XHTML 1.0 Strict? Example: <br/> <input /> Are there certain tags that must have a closing tag, can be ...
1
vote
3answers
516 views

Sql Server strict convert from varchar to datetime

I'm converting varchar to datetime in Sql Server 2005. Can I force Sql Server to fail if provided varchar has unexpected format? Example: select convert(datetime, '01-2010-02', 103) Expected ...
1
vote
2answers
5k views

Joomla 1.6 problem

I recently installed Joomla 1.6 on my XAMPP local server and i got this error message: Strict Standards: Declaration of JButtonPopup::fetchId() should be compatible with that of JButton::fetchId() ...
1
vote
3answers
204 views

How to get a NON-standard attribute in IE8 through javascript?

I have an HTML page that has this doctype: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> However, the HTML contains this tag: <applet ...
1
vote
2answers
611 views

Are table cellspacing and cellpadding always 0 (EVEN IF EXPLICTILY SET) if in strict mode?

I have a page I'm converting from quirks mode to strict mode. I added this: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/DTD/strict.dtd"> All of a sudden all ...

1 2