The strict tag has no wiki summary.
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
753 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
284 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 ...
11
votes
1answer
4k 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 ()
{
...
1
vote
1answer
272 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 ...
2
votes
1answer
271 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
...
8
votes
5answers
535 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 ...
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
168 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
722 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 ...
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
2answers
824 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 ...
5
votes
2answers
393 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 ...
1
vote
1answer
167 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" ...
0
votes
2answers
317 views
LVL - A statement for: “if you didn't download from market then finish()”
I need a simple statement with an "if condition" that does this: "if you didn't download from market then finish()".
If I understood well there are two types of control: I need that the control is ...
3
votes
3answers
558 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 ...
5
votes
2answers
553 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 ...
0
votes
1answer
197 views
Reply link, auto addition of text to textarea in XHTML Strict?
I'm trying to add a link next to each comment on my blog, where when you click on the word "Reply", "@Name" automatically adds to the comment form's textarea below (it also jumps to the form by anchor ...
3
votes
5answers
423 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 ...
1
vote
2answers
457 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
5answers
2k views
css background color disappears with doctype
I'm trying to set background colours on a few different elements in an html page, but whenever I apply a doctype declaration the colours get ignored. Other styles seem unaffected. I'm sure I'm being ...
5
votes
3answers
842 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 ...
1
vote
3answers
2k 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 ...
4
votes
2answers
488 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 ...
2
votes
1answer
331 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 ...
3
votes
2answers
2k 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?
0
votes
1answer
2k views
Roundabout jquery in document Strict
I am useing Roundabout jquery at: http://fredhq.com/projects/roundabout/ in document Strict, but it dont woking in IE.
This is my source:
HTML:
<ul class="roundabout">
<li><a ...
1
vote
3answers
450 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 ...
0
votes
0answers
597 views
Prevent URL being stored to browser history
I need to open a popup window to a url with certain parameters. The parameters contain information that I would like to prevent from showing up in the browser history. The url points to a 3rd party ...
9
votes
5answers
308 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 ...
5
votes
5answers
979 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 ...
4
votes
4answers
1k 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' ...
0
votes
1answer
1k views
DataTable C# Empty column type
I am trying build a DataTable one row at a time using the following code.
foreach (var e in Project.ProjectElements[hi.FakeName].Root.Elements()) {
index = 0;
object[] obj=new ...
0
votes
1answer
1k views
Why does my simple strict XHTML file give errors when I include jquery?
I'm trying to make a simple strict HTML file that includes jquery:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
...
2
votes
1answer
573 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.
0
votes
3answers
1k views
IE horizontal scroll problem
When scrolling the div the table cells move, but the cell text stays in the same position relative to the page. The cell text should scroll along with the cell even though it's in a relative div.
The ...
4
votes
2answers
3k 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
2answers
168 views
Why does Javasript's strict comparison act the way it does? [duplicate]
Possible Duplicate:
Is JavaScript’s math broken?
If the main difference between Javascript's "strict comparison" operators and the traditional ones is type coercion, why does
...
4
votes
2answers
3k 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
339 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 ...
9
votes
4answers
27k views
PHP5: Creating default object from empty value [closed]
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 ...
1
vote
4answers
316 views
Help needed with DIV-layout for site
I am trying to build a page with the following in it:
Already have the following:
one div for page to center the whole page with width 809px
inside <div class="page"> is the following:
...
1
vote
1answer
1k views
Summary of ActionScript 3 strict mode
Where can I get a summary of differences between ActionScript 3.0 strict and standard mode? In other words, what are the things I can do in standard mode but not in strict mode?
1
vote
5answers
2k views
How to fix the size of a Java heap
I know Java VM has "-XMx" and "-XMs" for setting the size of the heap. It also has a feature called "ergonomics", that can intelligently adjust the size of the heap. But, I have a problem at hand ...
13
votes
13answers
774 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, ...

