active questions tagged standards - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T18:14:06Zhttp://stackoverflow.com/feeds/tag/standardshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/32315/what-is-web-3-09What is Web 3.0?RedWolves2008-08-28T13:46:23Z2009-11-30T11:21:53Z
<p>My boss asked me this yesterday just to gauge my response. Apparently, some of our clients are asking for "Web 3.0"</p>
<p>I told him I really didn't know.</p>
<p>He said when he's asked around the consensus is that it's microformats, etc. Frankly no one really knew either. (probably get a varied response now to "what is web 2.0?" still)</p>
<p>I watched a demo video of <a href="http://www.43folders.com/2008/08/27/ubiquity" rel="nofollow">Mozilla's Ubiquity</a> this morning and thought to myself "wow this could possibly be what Web 3.0 is all about"</p>
<p>What does Web 3.0 mean to you? How should we as developers prepare for the Web 3.0 world?</p>
http://stackoverflow.com/questions/459175/what-are-standards-for-characters-allowed-in-text-fields3What are standards for characters allowed in text fieldsspydernk2009-01-19T21:10:23Z2009-11-30T04:35:16Z
<p>What are the typical characters allowed in text fields in a new user sign-up? Are there www standards? Especially interested in Username and Password character types allowed.</p>
http://stackoverflow.com/questions/1806094/organizing-logs-with-log4j0Organizing logs with log4jWilliam2009-11-26T23:21:09Z2009-11-27T21:09:32Z
<p>Hey all,</p>
<p>I'm currently working on a Linux daemon written in Java. What is the common naming scheme for logs?</p>
<p>Right now I'm thinking of doing something like:</p>
<p><strong>DEBUG</strong> = <i>/var/log/myapp.debug</i><br />
<strong>INFO</strong> = <i>/var/log/myapp.info</i><br />
<strong>WARN</strong> = <i>/var/log/myapp.warn</i><br />
<strong>ERROR</strong> = <i>/var/log/myapp.err</i><br />
<strong>FATAL</strong> = <i>/var/log/myapp.err</i><br /></p>
<p>Does anyone have any opinions / suggestions on the naming scheme? I will accept the answer that I end up going with.</p>
<p>Hopefully this question doesn't get closed since there are other topics similar that are opinion related (like what IDE do you prefer, etc)</p>
http://stackoverflow.com/questions/1804760/linux-daemon-written-in-java-location2Linux Daemon written in Java locationWilliam2009-11-26T16:54:34Z2009-11-26T22:36:07Z
<p>I'm currently writing a Java daemon. I'm writing a script that will have the standard daemon commands (start, stop, restart, status) and I'm trying to decide on where things should go when installing the daemon.</p>
<p>My current idea is:<br />
<strong>PID File:</strong> <i>/var/run/myapp.pid</i><br />
<strong>Daemon Script:</strong> <i>/etc/init.d/myapp</i><br />
<strong>Java App (.jar):</strong> <i>/usr/bin/myapp</i><br />
<strong>Logs:</strong> <i>/var/log/myapp.err</i>, <i>/var/log/myapp.log</i>, <i>/var/log/myapp.info</i> (you get the idea)<br />
<strong>Configs:</strong> <i>/etc/myapp.conf</i> (or <i>/etc/myapp/configs-go-here</i> if I have more than one in the future)</p>
<p>I'm still new to the Linux directory structure so if I'm doing something wrong let me know. Whats confusing me the most is that my Java app is a .jar file (archive) and not a binary. So does that mean that <i>/usr/bin/</i> isn't the "right" place for it?</p>
http://stackoverflow.com/questions/1778493/best-practice-documentation-standards3Best Practice: Documentation StandardsLukas Šalkauskas2009-11-22T11:44:00Z2009-11-24T20:13:57Z
<p>Hello there, </p>
<p>Here is the issue, I need to find/think of documentation standards for our team. We have several needs, we need documentation standards for <strong><em>Requirements Documentation</em></strong>, <strong><em>Technical Documentation</em></strong> - <strong>for projects</strong> and <strong>Code Style Documentation</strong> - <strong>for developers</strong> which would cover how developers should name, and organize the project's code (should he use regions? How should naming look? etc.), I know it can vary from project to project, but maybe there are some kind of standards for that. Currently each developer writes it as he imagines, and that is not so good, because it is inconsistent, and with different styles etc.</p>
<p>I'm curious how you/your company does that. And maybe there is some kind of standards for that.</p>
<p>How it should look? What content should it include? etc..</p>
<p>BTW we use .NET Technologies. </p>
http://stackoverflow.com/questions/1787643/is-this-a-standard-c-code3Is this a standard C++ code?AraK2009-11-24T03:45:51Z2009-11-24T04:23:56Z
<p>Hi,</p>
<p>The following simple piece of code, compiles with VC2008 but g++ rejects the code:</p>
<pre><code>#include <iostream>
class myclass
{
protected:
void print() { std::cout << "myclass::print();"; }
};
struct access : private myclass
{
static void access_print(myclass& object)
{
// g++ and Comeau reject this line but not VC++
void (myclass::*function) () = &myclass::print;
(object.*function)();
}
};
int main()
{
myclass object;
access::access_print(object);
}
</code></pre>
<p><code>(/W4)</code> is turned on in VC, but it doesn't give any warning.</p>
<p>g++ 4.4.1 gives me an error:</p>
<pre><code>correct.cpp: In static member function ‘static void access::access_print(myclass&)’:
correct.cpp:6: error: ‘void myclass::print()’ is protected
</code></pre>
<p>If g++ is correct, how do I access a protected member of a class? is there another way?</p>
<p><hr></p>
<p>@Suroot Do you mean that I shouldn't pass an object of type <code>myclass</code>? It doesn't matter actually, g++ gives the same error but VC compiles the code without any warning.</p>
<pre><code>#include <iostream>
class myclass
{
protected:
void print() { std::cout << "myclass::print();"; }
};
struct access : private myclass
{
static void access_print()
{
myclass object;
void (myclass::*function) () = &myclass::print;
(object.*function)();
}
};
int main()
{
access::access_print();
}
</code></pre>
http://stackoverflow.com/questions/1338335/standards-for-web-programming1Standards for Web ProgrammingThe Sheek Geek2009-08-27T00:47:15Z2009-11-23T21:36:34Z
<p>This is strictly an opinion/experience question for research purposes. </p>
<p>I was wondering what coding standards companies have in place now for Web Developers? (Document formats, coding standards, file structures, etc.)</p>
<p>Obviously they all can't be listed, but some major ones would give me an idea.</p>
http://stackoverflow.com/questions/1776534/proper-usage-of-floats-for-those-who-love-css-standards0Proper usage of Floats (For those who love CSS standards)?janoChen2009-11-21T19:43:55Z2009-11-21T19:52:09Z
<p>I would like to know if I'm using floats in the right way (efficiently) in this code bellow.</p>
<p>There are basically 3 columns (with float left, left and right assigned respectively). Am I using too many floats? Will this cause me problems if I add or delete columns?</p>
<p>This is my <strong>index.html</strong>:</p>
<pre><code><div id="content">
<div id="left-column">
<h2>left-column</h2>
<p>
erat, nec semper dui diam ut libero. Donec adipiscing placerat metus.
Integer eu eros vel risus ornare consequat. Curabitur sem erat, tempor
</p>
</div>
<div id="main-column">
<h2>main-column</h2>
<p>
erat, nec semper dui diam ut libero. Donec adipiscing placerat metus.
Integer eu eros vel risus ornare consequat. Curabitur sem erat, tempor
</p>
</div>
<div id="right-column">
<h2>right-column</h2>
<p>
erat, nec semper dui diam ut libero. Donec adipiscing placerat metus.
Integer eu eros vel risus ornare consequat. Curabitur sem erat, tempor
</p>
</div>
</div>
</code></pre>
<p>This is my <strong>style.css:</strong></p>
<pre><code>#navigation {
font-family: Trebuchet MS;
font-weight: bold;
color: #FFF;
width: 900px;
background-color: #000;
overflow: hidden;
}
#left-column {
margin: 10px 10px 0 0;
width: 150px;
padding: 10px;
float: left;
color: #FFF;
background-color: #A53030;
}
#main-column {
width:410px;
padding: 10px;
float: left;
}
#right-column {
width: 260px;
padding: 10px;
float: right;
}
#footer {
margin-top: 10px;
padding: 5px;
width: 900px;
border-color: #262626;
border-top-style: solid;
border-width: medium;
clear: both;
}
</code></pre>
<p>I added clear: both in the footer because I've seen this in many webpages but I'm not sure why is there because nothing happens if I delete it.</p>
http://stackoverflow.com/questions/1764290/should-i-keep-the-package-name-when-extending-a-class0Should I keep the package name when extending a class?Zombies2009-11-19T15:52:21Z2009-11-21T10:25:38Z
<p>I plan to extend a JSF renderer. The package name is oracle.adfinternal.view.faces.renderkit.rich</p>
<p>Should the extended class be in the same package structure:
oracle.adfinternal.view.faces.renderkit.rich
or even oracle.adfinternal.view.faces.renderkit.rich.[subpackage]</p>
<p>or can/should I put it into my own package? com.company.renderkits.</p>
<p>I suppose package-private variables might be interfered with if I put this into my own package name?</p>
<p>Any thoughts?</p>
http://stackoverflow.com/questions/1765689/how-shall-i-format-my-logs0How shall I format my logs?Andrew2009-11-19T18:54:50Z2009-11-19T19:34:00Z
<p>I'm writing a piece of honeypot software that will have extensive logging of interactions with it, I plan to log in plaintext .log files.</p>
<p>I have two questions, from someone who isn't too familiar with how servers log, firstly how shall I break up my log files, I'm assuming after running this for a month I don't want one big .log file, do I do this by day,month,year? Is there some standard for it?</p>
<p>The format of each line, do I have one standard deliminiter that is whater, *, -, +, anything? Is there a standard anywhere (my googling hasn't brought up much).</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/598148/is-it-legal-to-use-the-increment-operator-in-a-c-function-call10Is it legal to use the increment operator in a C++ function call?Kristo2009-02-28T15:22:44Z2009-11-19T16:38:40Z
<p>There's been some debate going on in <a href="http://stackoverflow.com/questions/596162/can-you-remove-elements-from-a-stdlist-while-iterating-through-it/596180#596180">this question</a> about whether the following code is legal C++:</p>
<pre><code>std::list<item*>::iterator i = items.begin();
while (i != items.end())
{
bool isActive = (*i)->update();
if (!isActive)
{
items.erase(i++); // *** Is this undefined behavior? ***
}
else
{
other_code_involving(*i);
++i;
}
}
</code></pre>
<p>The problem here is that <code>erase()</code> will invalidate the iterator in question. If that happens before <code>i++</code> is evaluated, then incrementing <code>i</code> like that is technically undefined behavior, even if it appears to work with a particular compiler. One side of the debate says that all function arguments are fully evaluated before the function is called. The other side says, "the only guarantees are that i++ will happen before the next statement and after i++ is used. Whether that is before erase(i++) is invoked or afterwards is compiler dependent."</p>
<p>I opened this question to hopefully settle that debate.</p>
http://stackoverflow.com/questions/1758685/why-doesnt-regex-match-have-a-getenumerator-function0Why doesnt Regex.Match have a GetEnumerator function?acidzombie242009-11-18T20:03:38Z2009-11-18T20:13:28Z
<p>Regex.Match has a .Success and .NextMatch why doesnt it have a GetEnumerator function? </p>
<p>With my logic it seems easy enough to implement. But it isnt in 3.5 so can anyone tell me why not?</p>
<pre><code>foreach (var m in Regex.Match("dummy text", "mm")) error CS1579: foreach statement cannot operate on variables of type 'System.Text.RegularExpressions.Match' because 'System.Text.RegularExpressions.Match' does not contain a public definition for 'GetEnumerator'
</code></pre>
http://stackoverflow.com/questions/1751662/what-standards-do-you-use1What standards do you use? [closed]Matt J2009-11-17T20:48:23Z2009-11-18T02:31:57Z
<p>This question recently came up in work, posed by directors and filtered down the chain</p>
<p><strong>"What standards do you use on a daily basis?"</strong>
(This was actually posed to all engineers not just software guys)</p>
<p>Part of this came about due to UI issues regarding the use of colour as the primary means of data display on a industrial plc mimics and web screens (intranet), rather than being used for emphasis. (It is good practice to develop screens like this in monochrome then move on to colour.)</p>
<p>*see: <a href="http://www.usabilitynet.org/tools/r%5Finternational.htm#14598" rel="nofollow">ISO 9241: Ergonomic requirements for office work with visual display terminals</a></p>
<p>Many other "standards" exist such as coding standards, testing standards etc. Some tie in with disability and discrimiation laws. Departments might have there own in-house standards for source control, naming conventions and so on...</p>
<p>But I must admit, during my daily grind of writing code, specs and dealing with day to day firefighting, I never seem to give much thought to standards and how Im adhering to them. (I guess some of them become habit and you don't notice)</p>
<p>What standards do you use?</p>
<p>Do other people feel that there are too many standards to keep up with? </p>
<p>How do you deal with standards? </p>
http://stackoverflow.com/questions/1751378/c-validity-of-int-array-new-int-size4[C++] Validity of int * array = new int [size]();Nadir SOUALEM2009-11-17T20:00:54Z2009-11-17T20:41:31Z
<pre><code>int * array = new int [size]();
</code></pre>
<p>The operator () allow to set all values of array to 0 (all bits to 0). it's called value-initialization. </p>
<p>Since which version of g++ is it valid ? </p>
<p>What about other compilers ?</p>
<p>Where can i find it in standard ?</p>
<p>Thank you for your future anwsers.</p>
http://stackoverflow.com/questions/266172/which-web-service-specifications-ws-actually-make-sense-to-implement1Which web service specifications (WS-*) actually make sense to implement?Kaiser Advisor2008-11-05T18:38:56Z2009-11-17T16:22:37Z
<p>Hi,</p>
<p>I'm implementing an SOA at a large company, and I'm not sure which web service specifications (WS-*) actually make sense to implement. At a minimum, I'm looking at WS-Addressing, WS-Security, WS-Eventing, and WS-ReliableMessaging. However, there are <a href="http://www-128.ibm.com/developerworks/webservices/standards/" rel="nofollow">several other standards</a> that look interesting, but I don't know which ones are widely adapted. I don't want to implement a standard (and force all the developers to follow them) if they're not mature or necessary.</p>
<p>EDIT:</p>
<p>I'm asking this question not about a specific situation, but in general. There are quite a few WS-* standards that don't seem to have a lot of practical use (at least to me), so I'm really curious about which ones are widely used.</p>
<p>Thanks for your help!</p>
<p>KA</p>
http://stackoverflow.com/questions/1746592/drupal-page-optimization-question-which-is-better0Drupal page optimization question... which is better?RD2009-11-17T04:30:13Z2009-11-17T16:01:55Z
<p>In terms of:</p>
<ol>
<li>Speed</li>
<li>Required processing (which will influence speed)</li>
<li>Following standards</li>
</ol>
<p>Which of the following two methods will be better?</p>
<p>I want to create a general page layout, however, the frontpage will look different from the normal look and feel.</p>
<p><strong>Method 1</strong></p>
<p>Creating a normal page.tpl.php file but with the following code in it:</p>
<pre><code>.....
<body>
<?php if (isFront()) {
// lots of stuff for the frontpage
}
else
{
// lots of stuff for the other pages
}
?>
</body>
</code></pre>
<p><strong>Method 2</strong></p>
<p>Creat two distinct pages, namely page.tpl.php and front.tpl.php. Code will be duplicated, but the frontpage and other pages will each have their own dedicated file.</p>
http://stackoverflow.com/questions/1748180/vb-vba-variable-declaration-coding-standard-white-space1VB/VBA Variable Declaration Coding Standard - White SpaceBarry-Jon2009-11-17T11:18:23Z2009-11-17T11:23:58Z
<p>What is the significance of declaring variables in VB/VBA like so:</p>
<pre><code>Private m_sName As String
Private m_lAge As Long
</code></pre>
<p>As opposed to;</p>
<pre><code>Private m_sName As String
Private m_lAge As Long
</code></pre>
<p>I am working on a project which up to now uses the latter, and has done since long before I joined the project. Two new developers have joined the team and have begun to use the former. I have seen such pagination previously and wondered; what is its heritage and what advantages/disadvantages does it have? My own preference has always been the latter and remains so, as much for consistency as anything else.</p>
http://stackoverflow.com/questions/1743497/are-i-and-b-tags-actually-deprecated8Are "<i>" and "<b>" tags actually deprecated?evolve2009-11-16T17:07:44Z2009-11-16T17:24:52Z
<p>I've read that <code><i></code> and <code><b></code> tags are advised against in favor of <code><strong></code> and <code><em></code> respectively. However I'm curious though, are these tags actually deprecated or is it simply good practice not to use them? I know that tags such as <code><u></code>, <code><font></code>, and <code><s></code> are actually deprecated by <a href="http://www.w3.org/" rel="nofollow">w3</a>, however haven't seen any documentation about these two tags being deprecated.</p>
<p>If the tags are actually deprecated, could someone provide a link to the documentation which they are deprecated within?</p>
<p>If they are not deprecated:</p>
<ol>
<li>Why should they not be used in certain situations where <code><em></code> and <code><strong></code> might not apply?<br>
<em>It would appear to me that <code><em></code> and <code><strong></code> are more suited for bodies of text which actually need to be treated different when interacted with by devices (such as screen readers), whereas <code><i></code> and <code><b></code> might be suited for use where you don't actually want the text to be treated different, simply appear different.</em></li>
<li>Do you think that <code><i></code> and <code><b></code> might become deprecated in the future?</li>
</ol>
http://stackoverflow.com/questions/1743113/what-is-the-longest-legal-url0What is the longest legal URL? [closed]flybywire2009-11-16T15:59:46Z2009-11-16T16:04:48Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/417142/what-is-the-maximum-length-of-an-url">What is the maximum length of an url?</a> </p>
</blockquote>
<p>What is the maximum length allowed for an URL?</p>
<p>I know that if I am the site's creator I should strive to keep their length reasonable (notwithstanding URL shorteners).</p>
<p>But if I write a system that interacts with arbitrary sites (spiders, scrappers, etc), What width should I reserve for URLs in my system?</p>
http://stackoverflow.com/questions/1740291/low-power-compliance-specific-to-programmers0Low power compliance specific to programmers [closed]Alphaneo2009-11-16T05:46:02Z2009-11-16T05:46:02Z
<p>For a long time, I know that Energy Star program has been around as a compliance program for electronic gadgets. Mostly related to IT.</p>
<p>If possible, Can we enumerate all such compliance programs available.</p>
http://stackoverflow.com/questions/1735861/helpful-tips-for-developing-waps0Helpful Tips for developing WAPsFrederico2009-11-14T22:39:38Z2009-11-15T20:25:30Z
<p>I'm starting to develop WAP (websites for mobile devices) websites, however I'm finding there are such a wide range of mobile devices that stretch from the advanced iPhone to older blackberries. Are there any helpful sites that discuss best techniques and good practices so that I'm not ignoring any of the major issues?</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1737575/colons-in-uri-possible0Colons in URI possible?Emanuil2009-11-15T13:52:34Z2009-11-15T14:09:01Z
<p>I thought using colons in URIs was "illegal". Then I saw that vimeo.com is using URIs like <code>http://www.vimeo.com/tag:sample.</code> </p>
<ol>
<li>What do you feel about the usage of colons in URIs?</li>
<li>How do I make my Apache server work with the "colon" syntax because now it's throwing the "Access forbidden!" error when there is a colon in the first segment of the URI?</li>
</ol>
http://stackoverflow.com/questions/1718341/are-tables-really-so-bad1Are tables really so bad? [closed]Mark2009-11-11T21:55:40Z2009-11-11T23:08:25Z
<blockquote>
<p><strong>Possible Duplicates:</strong><br>
<a href="http://stackoverflow.com/questions/83073/why-not-use-tables-for-layout-in-html">Why not use tables for layout in HTML?</a><br>
<a href="http://stackoverflow.com/questions/30251/tables-instead-of-divs">Tables instead of DIVs</a> </p>
</blockquote>
<p>I'm not talking about for site layout, I'm too accustomed to table-less design now to even give it a second thought, but what about for things like forms? To keep all the text-fields and labels aligned? Sure you <em>can</em> do it with CSS, but it's a big hassle and requires a lot of cross-browser testing to make sure everything stays put where it's supposed to be. And a fair bit of CSS. Meanwhile I can make a table-based form in a tenth of the time and effort, it doesn't require a style sheet, and it's cross-browser. What's so terrible about that?</p>
<p><hr></p>
<p>This question wasn't supposed to be about the virtues of semantic markup. Most of us aware of that by now. It's about whether or not sometimes we should break those rules to ease development and maintenance <em>significantly</em>.</p>
http://stackoverflow.com/questions/1716678/naming-standard-for-include-indexes0Naming standard for INCLUDE indexes?Rob Garrison2009-11-11T17:13:59Z2009-11-11T17:23:52Z
<p>We use a fairly straightforward naming standard for indexes that I can validate programmatically, but I am struggling with naming indexes with INCLUDE columns. If I do it based on a simple formula, it's too easy to build names that are too long. Then my programmatic validation fails, and I end up with truncated names.</p>
<p>For those of you using INCLUDE columns, have you come up with a naming standard that you're happy with? If so, please share.</p>
<p>My current standard that I'm not happy with:</p>
<p><code>IX_<tableName>_<column1>_..._<columnN>_wIncl</code> (<code>wIncl</code> translates as "with include")</p>
<p>The problem is that there is no indication of what columns are included.</p>
http://stackoverflow.com/questions/1714121/block-level-elements-inside-inline-elements1Block Level Elements inside Inline elementsaidan2009-11-11T09:42:23Z2009-11-11T12:48:49Z
<p>The W3C Validator tells me I can't put block-level elements inside inline elements. Makes sense...</p>
<p>but what if I'm using CSS to change that block-level element into an inline element?</p>
<p>And what if I'm using CSS to convert an inline element into a block-level element (when inside another inline element)?</p>
<p>The Validator doesn't pick up on this obviously, but is it wrong?</p>
<p>(I'm not actually doing this, I'm just wondering about best-practice)</p>
http://stackoverflow.com/questions/1659386/what-are-the-boundaries-or-scope-definitions-of-html5-development4What are the boundaries or scope definitions of HTML5 development?austin cheney2009-11-02T04:08:20Z2009-11-11T00:37:05Z
<p>From reading the mailing lists and looking at the specification I cannot tell what the limits of HTML5 are as a software or programmatic technology. I have seen where they have attempted to standardize video and audio formats in HTML5 and it seems they may be writing the definitions for XHTML5 into the HTML5 specification. It also appears the specification is extremely lengthy and covers topics far outside the mere definitions and minimally required processing instructions of a markup language.</p>
<p>With version 5 is HTML now an application interface opposed to just a markup language? If so then what are the boundaries and defined limits of the technology? If not, then why are so many topics irrelevant to the processing of markup taking such a spotlight in the development process of the technology? When do the boundaries of a markup language end and the application preferences of a user-agent application begin? With HTML5 that separation does not appear very clear, but as an industry standard it should be crystal clear, right?</p>
http://stackoverflow.com/questions/1710626/iso-standards-for-net-3-50ISO standards for .NET 3.5Mark2009-11-10T19:39:33Z2009-11-10T19:47:02Z
<p>Does anyone know the ISO standard that covers .NET 3.5? I found ISO/IEC 23270:2006, but I am not sure if this is the right/latest one. I need to put this in my SRS document.</p>
http://stackoverflow.com/questions/1298610/what-are-the-pros-and-cons-of-adopting-html-5-now-for-a-site-redesign3What are the pros and cons of adopting HTML 5 now for a site redesign?Denis Hoctor2009-08-19T08:57:53Z2009-11-09T20:55:47Z
<p>Hi all,</p>
<p>I'm working on a large ites re-write that has now come to included a redesign. I have been reading up on HTML 5 and wanted to know what cons are out there to have me avoid adopting it for this design implmentation? The design needs to work in A-grade browsers (yes including IE6 :( ), so I'm wondering how / etc will be rendered (inline/block etc.).</p>
<p>I'd also like to know the pros so that I can sell it to any conservatives within the business?</p>
<p>Thanks
Denis</p>
http://stackoverflow.com/questions/1419448/hex-representation-of-a-color-with-alpha-channel1Hex representation of a color with alpha channel?Patrick Klug2009-09-14T02:28:25Z2009-11-06T06:56:15Z
<p>Is there a W3C or any other noteworthy standard on how to represent a color (including alpha channel) in hex format?</p>
<p>Is it #RGBA or #ARGB ?</p>
http://stackoverflow.com/questions/1674659/browser-behavior-on-403-forbidden-error1Browser behavior on 403 Forbidden errorPeter D2009-11-04T15:46:08Z2009-11-04T21:46:52Z
<p>My server returns a 403 forbidden error when a user tries to access a resource that they do not have access to. Along with the header the server also writes a small message describing the error.</p>
<p>In Firefox the error message gets displayed nicely and the user knows what's going on.</p>
<p>In Internet Explorer the message is hidden and replaced with the 403 Forbidden standard error page.</p>
<p>Are there any specific rules that allow me to display an error message across all browsers while still setting the status to 403 Forbidden?</p>
<p>Here is the RFC info on this status:</p>
<blockquote>
<p>The server understood the request, but
is refusing to fulfill it.
Authorization will not help and the
request SHOULD NOT be repeated. If the
request method was not HEAD and the
server wishes to make public why the
request has not been fulfilled, it
SHOULD describe the reason for the
refusal in the entity. If the server
does not wish to make this information
available to the client, the status
code 404 (Not Found) can be used
instead.</p>
</blockquote>
<p>It seems like I should be setting a message but IE just won't display it.</p>