The strict tag has no wiki summary.
2
votes
1answer
349 views
Inconsistent behaviour of “this” in JavaScript strict mode
Update
For clarity: @FelixKing: Yes, I expected this to still be undefined when calling window.foo(), and here's why: since, in JavaScript:
function foo()
{
console.log('I am a function');
}
...
2
votes
3answers
86 views
PHP: Is there any benefit to writing strict code?
When I set error_reporting(E_ALL | E_STRICT);, my code produces Undefined variable errors. I can solve them, but I am wondering whether there is any difference in speed or memory usage between writing ...
0
votes
1answer
73 views
Restrict interface to specific classes or restrict a property/declare to specific class+interface
I have an Interface IDataControl:
public interface IDataControl
{
...
}
Then, I have a class with a variable of List<IDataControl>.
List<IDataControl> items;
The problem is when ...
2
votes
1answer
236 views
Dealing with E_STRICT in Joomla
The line
$db =& JFactory::getDBO();
gives me this with E_STRICT
Strict Standards: Only variables should be assigned by reference
What exactly does this mean? I'm using JFactory just like ...
0
votes
2answers
1k views
Strict Standards: Only variables should be passed by reference - php error
$file_name = $_FILES['profile_image']['name'];
$file_ext = end(explode('.', $file_name)); //line 10
$file_ext = strtolower($file_ext);
$file_temp = ...
2
votes
4answers
164 views
jQuery callback - strict violation
I get the basic idea about this not being in a method when in strict mode outlined here, but it gets a bit erudite, to be honest. So, in more prosaic terms:
I have a handler like so:
...
0
votes
2answers
180 views
Using undefined in self-executing anonymous function
I'm trying to implement namespacing using the self-executing anonymous functions in CoffeeScript:
Javascript Namespace Declaration
...
0
votes
1answer
75 views
stricter XmlSerializer which does not allow unused nodes
I generated C# classes based on XSD using the xsd.exe tool from the SDK. Then I can use that class to [de]serialize objects using XmlSerializer... However the serializer seems to be very forgiving.
...
2
votes
2answers
93 views
Apply face color basing on the colomn number
There are so-called strict formats, like pdb - where the meaning of the symbol is defined by the colomn number of the symbol. For example here is a specification of the above mentioned pdb format.
Is ...
0
votes
1answer
831 views
Can i force IE9 to Internet Explorer 9 standard mode
When i browse one site my IE9 is set in Quirks Mode:
I put in my header's site http-equiv="X-UA-Compatible" content="IE=edge,chrome=1 but nothing change.
My doctype is "Strict".
Help me please :(
0
votes
4answers
874 views
MAMP php5 strict standards
I am trying to set error_reporting to E_ALL & ~E_STRICT in php.ini of mamp.
But this is not getting affected at all. I confirmed that I am editing right file by setting different error_reporting ...
0
votes
0answers
69 views
Schemas of Recoverable,Cascading Rollback and Strictness
What are these entities means that in databases can anyone explain me ? I need some examples because of i cannot understand meanings with only reading some articles
0
votes
2answers
229 views
How is JavaScript's strict mode implemented
Update:
Perhaps the way the function is called is to blame, so here's to it:
2 JS files Main.js: self invoking (non-strict) function that adds an event listener for the '(on)load' ...
19
votes
2answers
331 views
the seq function and strictness
I have been wondering about this a lot, but I haven't been able to find anything about it.
When using the seq function, how does it then really work? Everywhere, it is just explained saying that seq ...
0
votes
1answer
154 views
Can't create object properties in strict mode
If I use strict mode the following code does not work. It fails on the this.bar = 'foobar'; line. Why is this so? How can I make an object property in strict mode?
<html>
<body>
...
9
votes
3answers
362 views
Ensuring files are closed promptly
I am writing a daemon that reads something from a small file, modifies it, and writes it back to the same file. I need to make sure that each file is closed promptly after reading before I try to ...
2
votes
1answer
224 views
using “use strict” and variable scope
I've started using "use strict" for my scripts recently. One of the behaviors I noticed is that this.[name of variable] doesn't work for an object. For example:
(function(){
"use strict";
...
0
votes
1answer
433 views
custom mysqli class has an error with php 5.4?
I just had my web-server upgrade to php 5.4 and am getting errors on my sites that use my database class which extends from the built in mysqli. the error is on the last line of my class and despite ...
0
votes
2answers
79 views
Why does strict complain about variables from a required other script?
This is usex.pl:
#use strict;
require 'x.pl';
print $x;
Here is x.pl:
#use strict;
our $x = 99;
1;
It runs fine as shown. If I uncomment the line to use strict in usesx.pl, I get
Global ...
3
votes
2answers
878 views
Replicating arguments.callee in strict mode
I'm working in strict mode for the first time and, what-d'ya-know, it's also the first time in ages being able to use a non strict mode property would be useful. My question here outlines the exact ...
3
votes
1answer
180 views
Making a haskell program run in (roughly) a constant amount memory
I'm trying to take in a CSV file, error check it and then print error messages.
mapM_ (appendFile filePath) (errorCheck function that returns a [string])
This works but when i run it but on very ...
0
votes
1answer
112 views
JavaScript behavior explanation regarding a var declaration
I have the following code:
"use strict";
function isDefined(variable)
{
return (typeof (window[variable]) === "undefined") ? false : true;
}
try
{
isDefined(isTrue);
}
catch (ex)
{
var ...
1
vote
1answer
578 views
What is a strict schedule?
Say n transactions follow a strict serializable schedule i.e. serialize themselves using strict2PL or the like. Now say a (n+1)th transaction comes in to run concurrently with the others and does not ...
10
votes
5answers
462 views
Time cost of Haskell `seq` operator
This FAQ says that
The seq operator is
seq :: a -> b -> b
x seq y will evaluate x, enough to check that it is not bottom, then
discard the result and evaluate y. This might not seem ...
0
votes
2answers
347 views
CSS - line-height:0 ignored in XHTML strict in Firefox
I'm using :first-line { line-height:0px; } to hide the empty first line in a block statement
curiously if I define doctype in XHTML strict Firefox ignores this statement and prints the empty line ...
3
votes
1answer
718 views
How do I average column values from a tab-separated data file, ignoring a header row and the left column?
First and foremost I apologise if this, or a similar query, has been posted before but I did follow the steps and looked here and beyond and that is why I'm resorting to asking a question, something I ...
0
votes
1answer
618 views
XSLT Refuses to write DOCTYPE declaration
I can't figure out what I'm missing here. I have a Java web app that outputs XML with the option to transform the output to XHTML. My stylesheet works fine, but for the life of me, I cannot get the ...
1
vote
1answer
959 views
Dokeos warning: Strict Standards
When installing dokeos 2.1 into htdocs, it shows warnings like these:
Strict Standards: Declaration of SortableTableFromArray::get_table_data() should be compatible with that of ...
1
vote
0answers
613 views
Strict Weak Ordering and std::sort()
I've tried for some time to make the following code run properly. The problem is in the comparison function of sort(comp). It compares 2 doubles but in some cases it causes the program to crash with ...
1
vote
0answers
262 views
When using Ivy strict conflict manager a package conflicts with self
I am using Ivy 2.2 for my dependencies management. With strict conflict manager I get the following error message:
:: problems summary ::
:::: ERRORS
myorg#myteam.PackOne;1.1.0.308 (needed by ...
0
votes
3answers
143 views
Strict Comparison in PHP
I need to write a Player class in php that works with a function that I am not allowed to change. I have to write this class in a way that this function will return the maximum value. I can only use ...
1
vote
2answers
346 views
Strict standards: Declaration ::postDispatch()
I want to configure Doctrine 2.2 with zf 1.11. Everything is done, but I dont know what this error is about:
Strict standards: Declaration of Sc\Resource\EntityManagerFront::postDispatch() should ...
2
votes
0answers
77 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.
6
votes
2answers
3k 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, ...
14
votes
2answers
760 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.
7
votes
4answers
287 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 ...
12
votes
1answer
5k views
JSHint strict mode and JQuery: '$' is not defined
The following JS:
(function() {
"use strict";
$("#target").click(function(){
console.log("clicked");
});
}());
Yields:
test.js: line 5, col 3, '$' is not defined.
When executed via ...
2
votes
4answers
347 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 ()
{
...
0
votes
0answers
196 views
AJAX back button fix without iframes in IE <= 7
Is it possible to have a back button fix for AJAX links in IE <= 7 which doesn't use iframes? Iframes aren't allowed in (X)HTML strict, and I want to know if there was another solution which is ...
1
vote
1answer
273 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 ...
0
votes
1answer
171 views
Is there a functional representation for strict evaluation?
I want to implement the strict folding functions myself, from within Haskell: Is this possible? I've read that Lisp macros can be used to redefine the language to a massive extent, giving you the ...
4
votes
2answers
2k 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
128 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
274 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
...
7
votes
4answers
2k 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 ...
0
votes
1answer
205 views
Validating example code snippets in a textarea using strict XHTML
I am currently trying to post some code snippets inside of a textarea, within a strict XHTML document. I cannot for the life of me get these snippets to pass validation. I have a perfect xhtml strict ...
2
votes
1answer
104 views
Strict variable declaration in Scheme
Does Scheme lisp provide any lib. similar to perl "strict" variable declaration?
12
votes
1answer
3k 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; ...
0
votes
1answer
172 views
Markup Validation Service problems
i have some problems in order to validate my webpage. here I list them if you can please help me.
element X undefined
You have used the element named above in your document, but the document type ...
4
votes
2answers
728 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 ...