active questions tagged standards - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T18:14:06Z http://stackoverflow.com/feeds/tag/standards http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/32315/what-is-web-3-0 9 What is Web 3.0? RedWolves 2008-08-28T13:46:23Z 2009-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-fields 3 What are standards for characters allowed in text fields spydernk 2009-01-19T21:10:23Z 2009-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-log4j 0 Organizing logs with log4j William 2009-11-26T23:21:09Z 2009-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-location 2 Linux Daemon written in Java location William 2009-11-26T16:54:34Z 2009-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-standards 3 Best Practice: Documentation Standards Lukas Šalkauskas 2009-11-22T11:44:00Z 2009-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-code 3 Is this a standard C++ code? AraK 2009-11-24T03:45:51Z 2009-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 &lt;iostream&gt; class myclass { protected: void print() { std::cout &lt;&lt; "myclass::print();"; } }; struct access : private myclass { static void access_print(myclass&amp; object) { // g++ and Comeau reject this line but not VC++ void (myclass::*function) () = &amp;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&amp;)’: 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 &lt;iostream&gt; class myclass { protected: void print() { std::cout &lt;&lt; "myclass::print();"; } }; struct access : private myclass { static void access_print() { myclass object; void (myclass::*function) () = &amp;myclass::print; (object.*function)(); } }; int main() { access::access_print(); } </code></pre> http://stackoverflow.com/questions/1338335/standards-for-web-programming 1 Standards for Web Programming The Sheek Geek 2009-08-27T00:47:15Z 2009-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-standards 0 Proper usage of Floats (For those who love CSS standards)? janoChen 2009-11-21T19:43:55Z 2009-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>&lt;div id="content"&gt; &lt;div id="left-column"&gt; &lt;h2&gt;left-column&lt;/h2&gt; &lt;p&gt; erat, nec semper dui diam ut libero. Donec adipiscing placerat metus. Integer eu eros vel risus ornare consequat. Curabitur sem erat, tempor &lt;/p&gt; &lt;/div&gt; &lt;div id="main-column"&gt; &lt;h2&gt;main-column&lt;/h2&gt; &lt;p&gt; erat, nec semper dui diam ut libero. Donec adipiscing placerat metus. Integer eu eros vel risus ornare consequat. Curabitur sem erat, tempor &lt;/p&gt; &lt;/div&gt; &lt;div id="right-column"&gt; &lt;h2&gt;right-column&lt;/h2&gt; &lt;p&gt; erat, nec semper dui diam ut libero. Donec adipiscing placerat metus. Integer eu eros vel risus ornare consequat. Curabitur sem erat, tempor &lt;/p&gt; &lt;/div&gt; &lt;/div&gt; </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-class 0 Should I keep the package name when extending a class? Zombies 2009-11-19T15:52:21Z 2009-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-logs 0 How shall I format my logs? Andrew 2009-11-19T18:54:50Z 2009-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-call 10 Is it legal to use the increment operator in a C++ function call? Kristo 2009-02-28T15:22:44Z 2009-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&lt;item*&gt;::iterator i = items.begin(); while (i != items.end()) { bool isActive = (*i)-&gt;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-function 0 Why doesnt Regex.Match have a GetEnumerator function? acidzombie24 2009-11-18T20:03:38Z 2009-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-use 1 What standards do you use? [closed] Matt J 2009-11-17T20:48:23Z 2009-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-size 4 [C++] Validity of int * array = new int [size](); Nadir SOUALEM 2009-11-17T20:00:54Z 2009-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-implement 1 Which web service specifications (WS-*) actually make sense to implement? Kaiser Advisor 2008-11-05T18:38:56Z 2009-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-better 0 Drupal page optimization question... which is better? RD 2009-11-17T04:30:13Z 2009-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>..... &lt;body&gt; &lt;?php if (isFront()) { // lots of stuff for the frontpage } else { // lots of stuff for the other pages } ?&gt; &lt;/body&gt; </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-space 1 VB/VBA Variable Declaration Coding Standard - White Space Barry-Jon 2009-11-17T11:18:23Z 2009-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-deprecated 8 Are "<i>" and "<b>" tags actually deprecated? evolve 2009-11-16T17:07:44Z 2009-11-16T17:24:52Z <p>I've read that <code>&lt;i&gt;</code> and <code>&lt;b&gt;</code> tags are advised against in favor of <code>&lt;strong&gt;</code> and <code>&lt;em&gt;</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>&lt;u&gt;</code>, <code>&lt;font&gt;</code>, and <code>&lt;s&gt;</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>&lt;em&gt;</code> and <code>&lt;strong&gt;</code> might not apply?<br> <em>It would appear to me that <code>&lt;em&gt;</code> and <code>&lt;strong&gt;</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>&lt;i&gt;</code> and <code>&lt;b&gt;</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>&lt;i&gt;</code> and <code>&lt;b&gt;</code> might become deprecated in the future?</li> </ol> http://stackoverflow.com/questions/1743113/what-is-the-longest-legal-url 0 What is the longest legal URL? [closed] flybywire 2009-11-16T15:59:46Z 2009-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-programmers 0 Low power compliance specific to programmers [closed] Alphaneo 2009-11-16T05:46:02Z 2009-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-waps 0 Helpful Tips for developing WAPs Frederico 2009-11-14T22:39:38Z 2009-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-possible 0 Colons in URI possible? Emanuil 2009-11-15T13:52:34Z 2009-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-bad 1 Are tables really so bad? [closed] Mark 2009-11-11T21:55:40Z 2009-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-indexes 0 Naming standard for INCLUDE indexes? Rob Garrison 2009-11-11T17:13:59Z 2009-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_&lt;tableName&gt;_&lt;column1&gt;_..._&lt;columnN&gt;_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-elements 1 Block Level Elements inside Inline elements aidan 2009-11-11T09:42:23Z 2009-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-development 4 What are the boundaries or scope definitions of HTML5 development? austin cheney 2009-11-02T04:08:20Z 2009-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-5 0 ISO standards for .NET 3.5 Mark 2009-11-10T19:39:33Z 2009-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-redesign 3 What are the pros and cons of adopting HTML 5 now for a site redesign? Denis Hoctor 2009-08-19T08:57:53Z 2009-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-channel 1 Hex representation of a color with alpha channel? Patrick Klug 2009-09-14T02:28:25Z 2009-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-error 1 Browser behavior on 403 Forbidden error Peter D 2009-11-04T15:46:08Z 2009-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>