Questions tagged [standards-compliance]

400 questions
0
votes
1 answer

Just-installed Alfresco does not return a latestChangeLogToken: Is it OK in regard to the CMIS protocol?

Here is what I did: Installed+started+stopped Alfresco 5.0.c Enabled CMIS ChangeLog in Alfresco Started Alfresco again Sent a request to http://server/alfresco/api/-default-/public/cmis/versions/1.1/atom/changes PROBLEM: The HTTP response does NOT…
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
0
votes
1 answer

SQL name precedence

just out of curiosity: Is there a precedence on column names in SQL standard? Let's take this query: select * from mytable m1 where col1 = 123 and exists ( select * from mytable m2 where m2.col2 = m1.col2 and m2.col1 = 456 ); In Oracle I can…
Thorsten Kettner
  • 89,309
  • 7
  • 49
  • 73
0
votes
1 answer

Is MinGW exactly the same as GCC as far as standards compliance or features?

As a port, I'd think it'd be hard to keep it completely up to speed with GCC. Is it, or are there any differences with regards to standards compliance or features?
Maulrus
  • 1,787
  • 2
  • 17
  • 27
0
votes
0 answers

Inserting into a table to by pass constraints

maybe I can get some feedback from some folks on this. I created two tables and inserted data into one table and i put a constraint (Foreign key) on the table std_individual_address. I get the following error message when I try to execute the insert…
SRahmani
  • 348
  • 1
  • 5
  • 17
0
votes
2 answers

Adobe Search&Promote non-standard tag

A website I am working on uses Adobe Search&Promote (SP) as it's internal website indexing and searching tool. I need to exclude common parts of each web page from being indexed by SP (such as the header, nav, footer) because they are the same on…
keithwyland
  • 2,998
  • 1
  • 17
  • 22
0
votes
5 answers

Making a DOCTYPE-less HTML page W3C compliant

How do i take a HTML site that currently has no doctype declaration and make it W3C compliant?
Brian
0
votes
1 answer

Data Specification for Geolocation Info

I'm writing a little program (in c++, primarily) that will store optional information about the location of an object. Sort of like this: class loc { private: double lat; double lon; string address; } class foo { private: string…
0
votes
1 answer

Document/Encoded and RPC/Encoded combinations are not WS-I compliant

Can someone of this network explain why the Document/Encoded and RPC/Encoded encoding style combinations are not WS-I compliant into Soap-based web service?
0
votes
1 answer

Is EOF guaranteed to be -1?

When writing code in C, is it good style to use -1 and EOF interchangeably? Does the standard guarantee that EOF is -1? Or is the value implementation defined? For example, if a function returns EOF in certain cases, is it good style to test if the…
David
  • 363
  • 1
  • 4
  • 19
0
votes
1 answer

How can I check at compile-time whether compiler support C++11 override keyword?

How can I check at compile-time whether compiler support C++11 override keyword? Maybe boost or something like this?
FrozenHeart
  • 19,844
  • 33
  • 126
  • 242
0
votes
2 answers

Dart2JS Compiler cannot compile code. Is this bug, feature or limitation?

I use Dart2JS Compiler version 1.0.0_r30798 (STABLE). Sample code (only for introducing problem): The real code here (now corrected for dart2js behavior): https://github.com/mezoni/queries/blob/master/lib/src/queries/lookup.dart This is a part of…
mezoni
  • 10,684
  • 4
  • 32
  • 54
0
votes
1 answer

iOS/Facebook Login error: this class is not key value coding-compliant for the key

I'm just trying to build a Facebook Login page for my iOS app, but it keeps breaking when IBOutlet in my LoginViewController tries to connect to a UIActivityIndicatorView. Here is the error that I get: 2013-12-10 00:29:11.062 uConnect[2254:70b] *…
0
votes
1 answer

Product integrated with CQ5 to check the content standard?

we currently use Active Standard (a website quality testing service that checks pages for spelling, grammar, broken links, poor HTML code, etc). I want to understand how they could use this going forward with our new CQ5 site so that content is…
0
votes
1 answer

Is throwing ArgumentOutOfRangeException the right thing to do?

just seeking some advice here for the sake of best practices. I have a boolean method that checks for a certain condition for each element of an array. The array parameter cannot be null nor contains null values, otherwise it wouldn't make sense to…
Crono
  • 10,211
  • 6
  • 43
  • 75