active questions tagged elements - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T13:42:50Z http://stackoverflow.com/feeds/tag/elements http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/786879/how-can-i-efficiently-extract-repeated-elements-in-a-ruby-array 1 How can I efficiently extract repeated elements in a Ruby array? MiniQuark 2009-04-24T17:39:04Z 2009-12-18T06:45:20Z <p>I have an array like [1,1,1,2,4,6,3,3] and I would like to get the list of repeated elements, in this case [1,3]. I wrote this:</p> <pre><code>my_array.select{|obj|my_array.count(obj)&gt;1}.uniq </code></pre> <p>But it is tragically inefficient (o(n²)). Do you have a better idea? If possible concise.</p> <p>Thanks</p> http://stackoverflow.com/questions/1894618/styling-regular-form-elements-with-jqueryui 0 Styling regular form elements with jQueryUI umpirsky 2009-12-12T20:32:45Z 2009-12-13T05:02:58Z <p>Hi.</p> <p>I'm using jQueryUI on my site, as well as <a href="http://www.filamentgroup.com/lab/jquery%5Fui%5Fselectmenu%5Fan%5Faria%5Faccessible%5Fplugin%5Ffor%5Fstyling%5Fa%5Fhtml%5Fselect/" rel="nofollow">http://www.filamentgroup.com/lab/jquery%5Fui%5Fselectmenu%5Fan%5Faria%5Faccessible%5Fplugin%5Ffor%5Fstyling%5Fa%5Fhtml%5Fselect/</a> as replacement for select elements. </p> <p>But I have a problem to style other form elements, text and textarea.</p> <p>Have anybody idea how to do this right way?</p> http://stackoverflow.com/questions/1881613/parsing-periodic-elements-in-php-html 1 Parsing periodic elements in PHP/html Nathan Adams 2009-12-10T15:10:50Z 2009-12-10T16:15:58Z <p>This problem actually hit me recently.</p> <p>So I was tasked with putting people's bios up on the web (asked for opinions in a different question), which I went with XML and just created elements based on what sections was going to be displayed.</p> <p>Some people had formulas in their bio and when I was copying/pasting the formatting didn't copy over.</p> <p>My question is that is there an easy way to parse out the formulas and format accordingly?<br> One idea I had was to just subscript the numbers, but I would have to implement bbcode tags to do this as there are numbers all over the place. Hmm, or I could detect if a number is to the right of a letter and subscript the number.</p> <p>Some of the forumlas are like CoO<sub>3</sub></p> <p>I used PHP to parse the XML.</p> <p>What are your opinions?</p> http://stackoverflow.com/questions/1876717/c-linq-to-xml-query-expression-checks-inside-quesry-if-element-exist 1 c# LINQ to XML Query Expression, checks inside quesry if Element Exist asdi 2009-12-09T20:37:37Z 2009-12-09T20:46:31Z <pre><code>&lt;channel&gt; &lt;title&gt;Best Web Gallery - Flash + CSS Gallery&lt;/title&gt; &lt;link&gt;http://bestwebgallery.com&lt;/link&gt; &lt;description&gt;Featuring the world best web design&lt;/description&gt; &lt;pubDate&gt;09 Dec 2009&lt;/pubDate&gt; &lt;generator&gt;http://wordpress.org/?v=2.3.2&lt;/generator&gt; &lt;language&gt;en&lt;/language&gt; &lt;/channel&gt; &lt;channel&gt; &lt;title&gt;Best Web Gallery - Flash + CSS Gallery&lt;/title&gt; &lt;link&gt;http://bestwebgallery.com&lt;/link&gt; &lt;description&gt;Featuring the world best web design&lt;/description&gt; // pubDate missing &lt;generator&gt;http://wordpress.org/?v=2.3.2&lt;/generator&gt; &lt;language&gt;en&lt;/language&gt; &lt;/channel&gt; XDocument rssFeed = XDocument.Load(url); var feedResources = from details in rssFeed.Descendants("channel") select new feedResource { Title = details.Element("title").Value, Host = details.Element("link").Value, Description = details.Element("description").Value, PublishedOn = DateTime.Parse(details.Element("pubDate").Value), Generator = details.Element("generator").Value, Language = details.Element("language").Value }; </code></pre> <p>How can We check here before trying to get Element "pubDate " or others, because if not checked, throws null reference exception ??</p> http://stackoverflow.com/questions/1806289/jquery-hidden-elements-general-question 0 jQuery: hidden elements - general question Fuxi 2009-11-27T00:40:03Z 2009-12-07T22:25:50Z <p>hi,</p> <p>when elements are hidden, you can't read eg. their dimensions, is this a general javascript problem or is there maybe a workaround in jQuery?</p> <p>i'm having eg. some tabs which contain widgets, initializing them doesn't work properly since they're hidden.</p> <p>thx</p> http://stackoverflow.com/questions/1855998/jquery-how-to-hide-divs-they-are-showing-for-a-split-second-on-page-load 0 jQuery How to Hide DIVs, they are Showing for a Split Second on page Load Thomas Carter 2009-12-06T17:41:06Z 2009-12-06T20:26:44Z <p>Hi,</p> <p>I have made a very quick jquery slideshow, and i'm using this to hide the DIV's which shouldn't be shown until it's their turn obviously:</p> <pre><code>$(document).ready(function() { //Hide All Div's Apart From First $('div#gall2').hide(); $('div#gall3').hide(); $('div#gall4').hide(); </code></pre> <p>But on loading the page you can see DIV's gall2 gall3 and gall4 for a split second before they are hidden.</p> <p>Would it be OK to just add inside my CSS:</p> <pre><code>#gall2, #gall3, #gall4{ display:none;} </code></pre> <p>This would solve the problem of them showing for a split second, just want to know if it's acceptable</p> <p>Thanks.</p> http://stackoverflow.com/questions/1843464/select-an-element-that-doesnt-have-a-background-set 0 Select an element that doesn't have a background set tscully 2009-12-03T22:31:23Z 2009-12-03T22:38:35Z <p>The title pretty much says it all.</p> <p>Using jQuery, I need to select all elements that do not have a background color or image defined, and apply at least a white background to it.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1818382/return-type-of-input-with-jquery 0 return type of input with jquery kris 2009-11-30T07:50:35Z 2009-11-30T08:37:50Z <p>I have a form with dynamically created form elements.</p> <p>I need to get the value of each element, and send an ajax request to make sure the data is ok (the easy part). I can get each elements value easy enough, but the problem comes in with radio buttons. For example:</p> <pre><code>&lt;input type = 'radio' class = 'form_element' value = '1'&gt; &lt;input type = 'radio' class = 'form_element' value = '1'&gt; &lt;input type = 'radio' class = 'form_element' value = '1'&gt; </code></pre> <p>if i do something like...</p> <pre><code>$('.form_element').each(function(){ alert($(this).val()); }); </code></pre> <p>it will print the values of all of the radio buttons, regardless if it is checked or not.</p> <p>I need it to only return the value of the one that is checked.</p> <p>So, is there a way to return the type of an input element from jquery? </p> http://stackoverflow.com/questions/1729732/is-it-possible-to-obtain-a-list-of-events-bound-to-an-element-in-jquery 0 Is it possible to obtain a list of events bound to an element in jQuery? avastreg 2009-11-13T14:58:34Z 2009-11-13T15:02:22Z <p>As the question said, i need the list of events bound to a specific element.</p> <p>I mean events like click, mouseover etc bound to that element at the loading of the dom.</p> <p>(Stupid) example: </p> <pre><code>$("#element").click(function() { //stuff }); $("#element").mouseover(function() { //stuff }); $("#element").focus(function() { //stuff }); </code></pre> <p>Result:</p> <p>click, mouseover, focus</p> http://stackoverflow.com/questions/1576182/getting-elements-that-exceed-the-maxium-value-javascript-jquery 0 Getting elements that exceed the maxium value. JAVASCRIPT/JQUERY Erik5388 2009-10-16T05:07:38Z 2009-10-16T15:57:51Z <p>greetings,</p> <p>I'm new with java script so bear with me! I want to achieve something using <code>JQuery</code> selectors. </p> <p>I have a list menu. It looks like this...</p> <pre><code>&lt;ul style="width:auto"&gt; &lt;li&gt;item one&lt;/li&gt; &lt;li&gt;item two&lt;/li&gt; &lt;li&gt;item three&lt;/li&gt; &lt;li&gt;item four&lt;/li&gt; &lt;li&gt;item five&lt;/li&gt; &lt;/ul&gt; </code></pre> <p>Okay, so currently I'm using the <code>parseInt</code> function to retrieve the integer value of the current width of the <code>ul</code>.</p> <pre><code>var ul = $("ul"); var currentWidth = parseInt(ul.width); var maxWidth = 400; </code></pre> <p>With that giving me the current width I'd like to now create an if statement. This is where it gets really tricky for me.</p> <pre><code>if(currentWidth &lt;= maxWidth){ alert('great job, do nothing'); } else { // WHAT DO I DO?! // I need to take all the elements that makes the ul exceed that maxWidth variable and assign them to a new array called extraItems } </code></pre> <p>So how do I get those items. I fear this is so far beyond the basic!</p> <p>Any help would be so greatly appreciated!</p> <p>Objective example image: <a href="http://img115.imageshack.us/img115/5856/examplef.jpg" rel="nofollow">imageShack link</a></p> http://stackoverflow.com/questions/395527/best-practices-when-should-i-use-elements-and-when-should-i-use-attributes 14 Best practices: When should I use elements and when should I use attributes? Rob 2008-12-27T22:35:52Z 2009-10-06T07:16:10Z <p>Which would be the correct format for this XML data, are they equivalent or are there trade offs between the two?</p> <p>1.</p> <pre><code>&lt;sitemap&gt; &lt;category name="Animals"&gt; &lt;section title="Dogs"&gt; &lt;page url="/pics/greatdane.jpg" title="Great Dane"/&gt; &lt;/section&gt; &lt;/category&gt; &lt;/sitemap&gt; </code></pre> <p>2.</p> <pre><code>&lt;sitemap&gt; &lt;page&gt; &lt;category&gt;Animals&lt;/category&gt; &lt;section&gt;Dogs&lt;/section&gt; &lt;title&gt;Great Dane&lt;/title&gt; &lt;url&gt;/pics/greatdane.jpg&lt;/url&gt; &lt;/page&gt; &lt;/sitemap&gt; </code></pre> <p>I've implemented the first example with my style sheet and it seems to work fine, but I'm unsure what the correct form should be.</p> http://stackoverflow.com/questions/186918/c-how-to-change-html-elements-attributes 0 C# - How to change HTML elements attributes Sir Psycho 2008-10-09T11:56:36Z 2009-10-02T08:16:51Z <p>Hi,</p> <p>My master page contains a list as shown here. What I'd like to do though, is add the "class=active" attribute to the list li thats currently active but I have no idea how to do this. I know that the code goes in the aspx page's page_load event, but no idea how to access the li I need to add the attribute. Please enlighten me. Many thanks.</p> <pre><code>&lt;div id="menu"&gt; &lt;ul id="nav"&gt; &lt;li class="forcePadding"&gt;&lt;img src="css/site-style-images/menu_corner_right.jpg" /&gt;&lt;/li&gt; &lt;li id="screenshots"&gt;&lt;a href="screenshots.aspx" title="Screenshots"&gt;Screenshots&lt;/a&gt;&lt;/li&gt; &lt;li id="future"&gt;&lt;a href="future.aspx" title="Future"&gt;Future&lt;/a&gt;&lt;/li&gt; &lt;li id="news"&gt;&lt;a href="news.aspx" title="News"&gt;News&lt;/a&gt;&lt;/li&gt; &lt;li id="download"&gt;&lt;a href="download.aspx" title="Download"&gt;Download&lt;/a&gt;&lt;/li&gt; &lt;li id="home"&gt;&lt;a href="index.aspx" title="Home"&gt;Home&lt;/a&gt;&lt;/li&gt; &lt;li class="forcePadding"&gt;&lt;img src="css/site-style-images/menu_corner_left.jpg" /&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1451208/access-iframe-elements-in-javascript 1 Access iframe elements in javascript archana roy 2009-09-20T14:57:24Z 2009-09-21T13:47:02Z <p>I have a webpage where there is a texarea within a iframe. I need to read the value of this textarea from its child page javascript. Presently by using window.parent.getelementbyID().value in the javascript, I am able to fetch values of all controls in the parent page except the textarea within the iframe. Can anyone please give me any pointers to resolve this issue? Thanks in Advance, Archana</p> http://stackoverflow.com/questions/1420763/how-to-loop-through-wpf-stackpanel-static-items 0 How to loop through WPF StackPanel static Items? JohnIdol 2009-09-14T10:33:22Z 2009-09-14T10:45:00Z <p>Probably very easy but I am having trouble to figure this out (also Google doesn't seem to help much).</p> <p>How can I loop through the statically declared elements (no databinding - elements are declared in the xaml) of a StackPanel?</p> <p>Any help appreciated!</p> http://stackoverflow.com/questions/767931/do-different-browsers-firefox-safari-ie-opera-have-limits-on-the-form-elements 0 Do different browsers (Firefox/Safari/IE/Opera) have limits on the form elements name attributes? Bob Herrmann 2009-04-20T11:49:26Z 2009-09-13T00:59:58Z <p>Do different browsers (Firefox/Safari/IE/Opera) have different limits on the <strong>length</strong> of the "name" attribute of form elements?</p> <pre> &lt;input name='a012345678901234567890123456789012345678901234567890123456789 ...'> </pre> http://stackoverflow.com/questions/1245086/only-one-web-part-added-to-the-wp-gallery-when-multiple-webpart-files-specified-i 1 Only one web part added to the wp gallery when multiple webpart files specified in module Michhes 2009-08-07T14:35:16Z 2009-09-04T20:00:04Z <p>I'm trying to deploy multiple web parts as part of the same feature. SharePoint itself seems to do this quite happily by specifying multiple File elements in a single Module element (see C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES\SearchWebParts); in my case, only the first web part is added to the Web Parts gallery, albeit to the Miscellaneous group instead of the group specified in the Property element. </p> <pre><code>&lt;Elements xmlns="http://schemas.microsoft.com/sharepoint/"&gt; &lt;Module Name="WebPartPopulation" Url="_catalogs/wp" Path="WebParts"&gt; &lt;File Url="Test1.webpart" Type="GhostableInLibrary"&gt; &lt;Property Name="Group" Value="MyGroup" /&gt; &lt;/File&gt; &lt;File Url="Test2.webpart" Type="GhostableInLibrary"&gt; &lt;Property Name="Group" Value="Mygroup" /&gt; &lt;/File&gt; &lt;/Module&gt; &lt;/Elements&gt; </code></pre> <p>My .webpart files are located in the same directory as the elements file; I tried setting Path="" on the Elements element but nothing gets deployed then. Switching around the two File elements deploys Test2.webpart instead of Test1 and Test1.webpart is not added on feature activation. Adding a single File per Module does work but that means duplicating the Module elements. </p> <p>I'm self-closing the Property elements but that's surely not a sin?? What am I doing wrong?</p> http://stackoverflow.com/questions/1369234/are-hr-and-br-inline-or-block-elements 3 Are <hr> and <br> inline or block elements? Svish 2009-09-02T18:01:36Z 2009-09-02T18:38:19Z <p>My guess is that <code>&lt;br&gt;</code> might be inline and that <code>&lt;hr&gt;</code> might be block. But I don't really have a clue...</p> http://stackoverflow.com/questions/1367431/list-elements-by-activity 1 list elements by activity Cliff 2009-09-02T12:34:38Z 2009-09-02T12:53:04Z <p>Hello, I'm working on automated builds and need to be able to list elements that were worked on under particular activities. I'm new to ClearCase so I apologise for naiivety ...</p> <p>My downstream build process works fine and I now need to populate a 'pre-build' area by identifying the (checked-in) files associated with one or more activities, labels etc (in fact any combination the change/release manager wants) by listing the candidate files for a build and then copying them from the M: drive (Windows). We are using CC 7.1 with a back end on AIX and Win XP Pro desktops. We'll use ccperl to drive the find+copy process.</p> <p>I have battled with 'find' to no avail - can someone lend a hand? All help gratefully received.</p> <p>Cliff.</p> http://stackoverflow.com/questions/1357037/javascript-visual-representation-of-element-as-an-image 0 Javascript - Visual Representation of Element as an Image Ben Shelock 2009-08-31T11:37:36Z 2009-08-31T11:58:46Z <p>This is a long shot but <a href="http://www.bennadel.com/resources/demo/jquery%5Fpuzzle/" rel="nofollow">I've seen things</a> which might make it posssible.</p> <p>I have a div, which is filled with images. Album covers if you must know. And I want to allow users to download this as an image. So they could use it as something like a desktop background.</p> <p>So is this possible? Get this visual representation of an element and display it as an image?</p> http://stackoverflow.com/questions/1332527/what-are-the-fast-algorithms-to-find-duplicate-elements-in-a-collection-and-group 2 what are the fast algorithms to find duplicate elements in a collection and group them? t.g. 2009-08-26T05:33:51Z 2009-08-31T08:57:01Z <p>Say you have a collection of elements, how can you pick out those with duplicates and put them into each group with least amount of comparison? preferably in C++, but algorithm is more important than the language. For Example given {E1,E2,E3,E4,E4,E2,E6,E4,E3}, I wish to extract out {E2,E2}, {E3,E3}, {E4,E4,E4}. what data structure and algorithm you will choose? Please also include the cost of setting up the data structure, say, if it's a pre-sorted one like std::multimap</p> <h2>Updates</h2> <p>To make things clearer as suggested. there's one constraint: <strong>the elements must be compared by themselves</strong> to be certain they are duplicates. </p> <p>So hashes do not apply, because virtually they shift the comparison to from heavy elements(e.g. chunks of data) to light elements(integers), and reduce some comparison, but not do away with them, and in the end, we are back to our original problem, when are inside one collision bucket. </p> <p>Pretend you have a bunch of potentials duplicate files of GBs each, they bear the same hash value by every hash-algorithm human beings know. Now you are going to spot the real duplicates.</p> <p>No, it can't be a real-life problem(even MD5 is enough to generate unique hash for real-life files). But just pretend so that we can <strong>focus on finding the data structure + algorithm that involves least amount of comparison</strong>.</p> <p><hr /></p> <p>What I am doing is to </p> <ol> <li><p>represent into a STL std::list data structure(in that 1) its element-deletion is cheaper than, say, a vector 2) its insertion is cheaper, not requiring sort.)</p></li> <li><p>pop out one element and compare it with the rest, if a duplicate is found, it's pulled out of the list. once the end of the list is reached, one group of duplication is found, if any.</p></li> <li><p>repeat the above 2 steps until the list is empty.</p></li> </ol> <p>It needs N-1 in the best case, but (N-1)! in the worse case.</p> <p>what are the better alternatives?</p> <p><hr /></p> <p>My code using method explained above:</p> <pre><code>// algorithm to consume the std::list container, // supports: list&lt;path_type&gt;,list&lt; pair&lt;std::string, paths_type::const_iterater&gt;&gt; template&lt;class T&gt; struct consume_list { groups_type operator()(list&lt;T&gt;&amp; l) { // remove spurious identicals and group the rest // algorithm: // 1. compare the first element with the remaining elements, // pick out all duplicated files including the first element itself. // 2. start over again with the shrinked list // until the list contains one or zero elements. groups_type sub_groups; group_type one_group; one_group.reserve(1024); while(l.size() &gt; 1) { T front(l.front()); l.pop_front(); item_predicate&lt;T&gt; ep(front); list&lt;T&gt;::iterator it = l.begin(); list&lt;T&gt;::iterator it_end = l.end(); while(it != it_end) { if(ep.equals(*it)) { one_group.push_back(ep.extract_path(*(it))); // single it out it = l.erase(it); } else { it++; } } // save results if(!one_group.empty()) { // save one_group.push_back(ep.extract_path(front)); sub_groups.push_back(one_group); // clear, memory allocation not freed one_group.clear(); } } return sub_groups; } }; // type for item-item comparison within a stl container, e.g. std::list template &lt;class T&gt; struct item_predicate{}; // specialization for type path_type template &lt;&gt; struct item_predicate&lt;path_type&gt; { public: item_predicate(const path_type&amp; base)/*init list*/ {} public: bool equals(const path_type&amp; comparee) { bool result; /* time-consuming operations here*/ return result; } const path_type&amp; extract_path(const path_type&amp; p) { return p; } private: // class members }; }; </code></pre> <p><hr /></p> <p>Thanks for the answer below, however they seem to be misled by my example that it's about integers. In fact <strong>the elements are type agnostic(not necessarily integers, strings or any other PODs)</strong>, and the equal predicates are self-defined, that is <strong>the comparison can be very heavy</strong>. </p> <p><strong>So maybe my question should be: using which data structure + algorithm involves fewer comparisons.</strong></p> <p>Using a pre-sorted container like multiset, multimap is not better according to my test, since </p> <ol> <li>the sorting while inserting already does the comparisons,</li> <li>the following adjacent finding does comparison again, </li> <li>these data structure prefer less-than operations to equal operations, they perform 2 less-than(a </ol> <p>I do not see how it can save comparisons. </p> <p><hr /></p> <p>one more thing that's ignored by some answers below, I need to differentiate the duplicate groups from one another, not just keep them in the container. </p> <p><hr /></p> <h2>Conclusion</h2> <p>After all the discussion, there seem to be 3 ways</p> <ol> <li>my original naive method as explained above</li> <li>Start with a linear container like <code>std::vector</code> , sort it and then locate the equal ranges</li> <li>start with an associated container like <code>std::map&lt;Type, vector&lt;duplicates&gt;&gt;</code>, pick out the duplicates during the setup of associated container as suggested by Charles Bailey.</li> </ol> <p>I've coded a sample to test all the methods as posted below. </p> <p>the number of duplicates and when they are distributed may influence the best choice. </p> <ul> <li>Method 1 is best when they fall heavily at the front, and is worst when at the end. Sort will not change the distribution, but the endian.</li> <li>Method 3 has the most average performance</li> <li>Method 2 is never the best choice</li> </ul> <h2>Thanks for all who participating in the discussion.</h2> <p>one output with 20 sample items from the code below.</p> <blockquote> <p>Test with [ 20 10 6 5 4 3 2 2 2 2 1 1 1 1 1 1 1 1 1 1 ]</p> <p>and [ 1 1 1 1 1 1 1 1 1 1 2 2 2 2 3 4 5 6 10 20 ] respectively</p> <p>using std::vector -> sort() -> adjacent_find():</p> <p>comparisons: [ '&lt;' = 139, '==' = 23 ]</p> <p>comparisons: [ '&lt;' = 38, '==' = 23 ]</p> <p>using std::list -> sort() -> shrink list:</p> <p>comparisons: [ '&lt;' = 50, '==' = 43 ]</p> <p>comparisons: [ '&lt;' = 52, '==' = 43 ]</p> <p>using std::list -> shrink list:</p> <p>comparisons: [ '&lt;' = 0, '==' = 121 ]</p> <p>comparisons: [ '&lt;' = 0, '==' = 43 ]</p> <p>using std::vector -> std::map>:</p> <p>comparisons: [ '&lt;' = 79, '==' = 0 ]</p> <p>comparisons: [ '&lt;' = 53, '==' = 0 ]</p> <p>using std::vector -> std::multiset -> adjacent_find():</p> <p>comparisons: [ '&lt;' = 79, '==' = 7 ]</p> <p>comparisons: [ '&lt;' = 53, '==' = 7 ]</p> <h2>Code</h2> </blockquote> <pre><code>// compile with VC++10: cl.exe /EHsc #include &lt;vector&gt; #include &lt;deque&gt; #include &lt;list&gt; #include &lt;map&gt; #include &lt;set&gt; #include &lt;algorithm&gt; #include &lt;iostream&gt; #include &lt;sstream&gt; #include &lt;boost/foreach.hpp&gt; #include &lt;boost/tuple/tuple.hpp&gt; #include &lt;boost/format.hpp&gt; using namespace std; struct Type { Type(int i) : m_i(i){} bool operator&lt;(const Type&amp; t) const { ++number_less_than_comparison; return m_i &lt; t.m_i; } bool operator==(const Type&amp; t) const { ++number_equal_comparison; return m_i == t.m_i; } public: static void log(const string&amp; operation) { cout &lt;&lt; "comparison during " &lt;&lt;operation &lt;&lt; ": [ " &lt;&lt; "'&lt;' = " &lt;&lt; number_less_than_comparison &lt;&lt; ", " &lt;&lt; "'==' = " &lt;&lt; number_equal_comparison &lt;&lt; " ]\n"; reset(); } int to_int() const { return m_i; } private: static void reset() { number_less_than_comparison = 0; number_equal_comparison = 0; } public: static size_t number_less_than_comparison; static size_t number_equal_comparison; private: int m_i; }; size_t Type::number_less_than_comparison = 0; size_t Type::number_equal_comparison = 0; ostream&amp; operator&lt;&lt;(ostream&amp; os, const Type&amp; t) { os &lt;&lt; t.to_int(); return os; } template&lt; class Container &gt; struct Test { void recursive_run(size_t n) { bool reserve_order = false; for(size_t i = 48; i &lt; n; ++i) { run(i); } } void run(size_t i) { cout &lt;&lt; boost::format("\n\nTest %1% sample elements\nusing method%2%:\n") % i % Description(); generate_sample(i); sort(); locate(); generate_reverse_sample(i); sort(); locate(); } private: void print_me(const string&amp; when) { std::stringstream ss; ss &lt;&lt; when &lt;&lt;" = [ "; BOOST_FOREACH(const Container::value_type&amp; v, m_container) { ss &lt;&lt; v &lt;&lt; " "; } ss &lt;&lt; "]\n"; cout &lt;&lt; ss.str(); } void generate_sample(size_t n) { m_container.clear(); for(size_t i = 1; i &lt;= n; ++i) { m_container.push_back(Type(n/i)); } print_me("init value"); Type::log("setup"); } void generate_reverse_sample(size_t n) { m_container.clear(); for(size_t i = 0; i &lt; n; ++i) { m_container.push_back(Type(n/(n-i))); } print_me("init value(reverse order)"); Type::log("setup"); } void sort() { sort_it(); Type::log("sort"); print_me("after sort"); } void locate() { locate_duplicates(); Type::log("locate duplicate"); } protected: virtual string Description() = 0; virtual void sort_it() = 0; virtual void locate_duplicates() = 0; protected: Container m_container; }; struct Vector : Test&lt;vector&lt;Type&gt; &gt; { string Description() { return "std::vector&lt;Type&gt; -&gt; sort() -&gt; adjacent_find()"; } private: void sort_it() { std::sort(m_container.begin(), m_container.end()); } void locate_duplicates() { using std::adjacent_find; typedef vector&lt;Type&gt;::iterator ITR; typedef vector&lt;Type&gt;::value_type VALUE; typedef boost::tuple&lt;VALUE, ITR, ITR&gt; TUPLE; typedef vector&lt;TUPLE&gt; V_TUPLE; V_TUPLE results; ITR itr_begin(m_container.begin()); ITR itr_end(m_container.end()); ITR itr(m_container.begin()); ITR itr_range_begin(m_container.begin()); while(itr_begin != itr_end) { // find the start of one equal reange itr = adjacent_find( itr_begin, itr_end, [] (VALUE&amp; v1, VALUE&amp; v2) { return v1 == v2; } ); if(itr_end == itr) break; // end of container // find the end of one equal reange VALUE start = *itr; while(itr != itr_end) { if(!(*itr == start)) break; itr++; } results.push_back(TUPLE(start, itr_range_begin, itr)); // prepare for next iteration itr_begin = itr; } } }; struct List : Test&lt;list&lt;Type&gt; &gt; { List(bool sorted) : m_sorted(sorted){} string Description() { return m_sorted ? "std::list -&gt; sort() -&gt; shrink list" : "std::list -&gt; shrink list"; } private: void sort_it() { if(m_sorted) m_container.sort();////std::sort(m_container.begin(), m_container.end()); } void locate_duplicates() { typedef list&lt;Type&gt;::value_type VALUE; typedef list&lt;Type&gt;::iterator ITR; typedef vector&lt;VALUE&gt; GROUP; typedef vector&lt;GROUP&gt; GROUPS; GROUPS sub_groups; GROUP one_group; while(m_container.size() &gt; 1) { VALUE front(m_container.front()); m_container.pop_front(); ITR it = m_container.begin(); ITR it_end = m_container.end(); while(it != it_end) { if(front == (*it)) { one_group.push_back(*it); // single it out it = m_container.erase(it); // shrink list by one } else { it++; } } // save results if(!one_group.empty()) { // save one_group.push_back(front); sub_groups.push_back(one_group); // clear, memory allocation not freed one_group.clear(); } } } private: bool m_sorted; }; struct Map : Test&lt;vector&lt;Type&gt;&gt; { string Description() { return "std::vector -&gt; std::map&lt;Type, vector&lt;Type&gt;&gt;" ; } private: void sort_it() {} void locate_duplicates() { typedef map&lt;Type, vector&lt;Type&gt; &gt; MAP; typedef MAP::iterator ITR; MAP local_map; BOOST_FOREACH(const vector&lt;Type&gt;::value_type&amp; v, m_container) { pair&lt;ITR, bool&gt; mit; mit = local_map.insert(make_pair(v, vector&lt;Type&gt;(1, v))); if(!mit.second) (mit.first-&gt;second).push_back(v); } ITR itr(local_map.begin()); while(itr != local_map.end()) { if(itr-&gt;second.empty()) local_map.erase(itr); itr++; } } }; struct Multiset : Test&lt;vector&lt;Type&gt;&gt; { string Description() { return "std::vector -&gt; std::multiset&lt;Type&gt; -&gt; adjacent_find()" ; } private: void sort_it() {} void locate_duplicates() { using std::adjacent_find; typedef set&lt;Type&gt; SET; typedef SET::iterator ITR; typedef SET::value_type VALUE; typedef boost::tuple&lt;VALUE, ITR, ITR&gt; TUPLE; typedef vector&lt;TUPLE&gt; V_TUPLE; V_TUPLE results; SET local_set; BOOST_FOREACH(const vector&lt;Type&gt;::value_type&amp; v, m_container) { local_set.insert(v); } ITR itr_begin(local_set.begin()); ITR itr_end(local_set.end()); ITR itr(local_set.begin()); ITR itr_range_begin(local_set.begin()); while(itr_begin != itr_end) { // find the start of one equal reange itr = adjacent_find( itr_begin, itr_end, [] (VALUE&amp; v1, VALUE&amp; v2) { return v1 == v2; } ); if(itr_end == itr) break; // end of container // find the end of one equal reange VALUE start = *itr; while(itr != itr_end) { if(!(*itr == start)) break; itr++; } results.push_back(TUPLE(start, itr_range_begin, itr)); // prepare for next iteration itr_begin = itr; } } }; int main() { size_t N = 20; Vector().run(20); List(true).run(20); List(false).run(20); Map().run(20); Multiset().run(20); } </code></pre> http://stackoverflow.com/questions/1347452/cannot-get-css-elements-centered 0 Cannot get CSS Elements centered Eric 2009-08-28T14:42:52Z 2009-08-28T15:13:47Z <p>Hi there, </p> <p>I cannot get my site to be centered for the life of me with CSS. I have tried all the usual methods suggested around the web including:</p> <pre><code>body { text-align: center; } #container { width: 770px; margin: 0 auto; text-align: left; } </code></pre> <p>Then using</p> <pre><code>&lt;div id="container&gt; &lt;!-- Centered Content Goes here--&gt; &lt;/div&gt; </code></pre> <p>But it just wont go to the center. It stays at the left side of the page.</p> <p>An example of the CSS for the element that I want to be centered is this:</p> <pre><code>#topHeader { background:url(images/top_header.jpg); position:absolute; width: 695px; height: 242px; top: 0px; left: 0px; } </code></pre> <p>So, my HTML would look like this:</p> <pre><code>&lt;div id="container&gt; &lt;div id="topHeader&gt;&lt;/div&gt; &lt;!-- All other elements go here as well--&gt; &lt;/div&gt; </code></pre> <p>But as I mentioned before, the element stays put. Thanks! Eric</p> http://stackoverflow.com/questions/1331427/use-css-to-create-multiple-elements-that-take-up-the-entire-width-of-the-parent 1 Use CSS to create multiple elements that take up the entire width of the parent. JerSchneid 2009-08-25T22:42:47Z 2009-08-25T23:32:03Z <p>I'm trying to achieve a horizontal CSS menu bar where all of the <code>&lt;a&gt;</code> elements combined expand to the entire width of the parent. The HTML looks something like this:</p> <pre><code>&lt;div id="parent"&gt; &lt;a href="/"&gt;Home&lt;/a&gt; &lt;a href="/learn"&gt;Learn More About The Product&lt;/a&gt; &lt;a href="/about"&gt;About Us&lt;/a&gt; &lt;a href="/contact"&gt;Contact Us&lt;/a&gt; &lt;/div&gt; </code></pre> <p>The idea is each of the four <code>&lt;a&gt;</code> elements above take up some % of the total width so that the left side of <code>Home</code> and the right side of <code>Contact Us</code> line up with the edges of <code>parent</code>. They can't take up exactly 25% each or else "Learn More About The Product" would look goofy because it is too long. </p> <p>Any ideas?</p> http://stackoverflow.com/questions/550692/creating-elements-in-app-config-via-code 0 creating elements in app.config via code Sir Psycho 2009-02-15T10:49:58Z 2009-08-23T14:11:37Z <p>Hi,</p> <p>I have the following section in my app.config</p> <pre><code>&lt;mySettings&gt; &lt;addins&gt; &lt;addin fullname="aaaaa" path="ddddd" version="ccccc" enabled="true" deleteonload="false" /&gt; &lt;/addins&gt; &lt;/mySettings&gt; </code></pre> <p>And im accessing it using a class that derives from ConfigurationSection class. I have the read operations working well, however, what If I wanted to add another addin node via code? </p> <p>I've managed to figure out how to write values to a config file other than the .exe config which is what i want to do, but every time I call .Save() instead of .SaveAs() I can't see the changes in the exe.config file. HELP!</p> <pre><code>AddInElement aelement = new AddInElement(); aelement.FullName = "asdasdasDASdasdzxv"; Configuration c = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None); MySettings mw = (MySettings)c.Sections["mySettings"]; mw.SectionInformation.ForceSave = true; mw.AddInCollection.Add(aelement); c.SaveAs("yer.config", ConfigurationSaveMode.Full); public class MySettings : ConfigurationSection { public static MyWaveSettings GetConfig() { return ConfigurationManager.GetSection("mySettings") as MySettings; } [ConfigurationProperty("addins", IsDefaultCollection = true)] public AddInElementCollection AddIns { get { return (AddInElementCollection)base["addins"]; } } } public sealed class AddInElementCollection : ConfigurationElementCollection { protected override ConfigurationElement CreateNewElement() { return new AddInElement(); } protected override object GetElementKey(ConfigurationElement element) { return ((AddInElement)element).FullName; } public override ConfigurationElementCollectionType CollectionType { get { return ConfigurationElementCollectionType.BasicMap; } } protected override string ElementName { get { return "addin"; } } public AddInElement this[int index] { get { return (AddInElement)BaseGet(index); } } } public class AddInElement : ConfigurationElement { [ConfigurationProperty("fullname", IsRequired = true)] public String FullName { get { return (String)this["fullname"]; } set { this["fullname"] = value; } } [ConfigurationProperty("path", IsRequired = true)] public String Path { get { return (String)this["path"]; } set { this["path"] = value; } } [ConfigurationProperty("version", IsRequired = true)] public String Version { get { return (String)this["version"]; } set { this["version"] = value; } } [ConfigurationProperty("enabled", IsRequired = true)] public Boolean Enabled { get { return (Boolean)this["enabled"]; } set { this["enabled"] = value; } } [ConfigurationProperty("deleteonload", IsRequired = true)] public Boolean DeleteOnLoad { get { return (Boolean)this["deleteonload"]; } set { this["deleteonload"] = value; } } } </code></pre> http://stackoverflow.com/questions/1299720/count-from-several-multidimensional-arrays 1 count from several multidimensional arrays cupakob 2009-08-19T12:51:24Z 2009-08-19T15:36:53Z <p>hi all,</p> <p>i have foreach, which generate following arrays:</p> <pre><code>==== array 1 ==== array 0 =&gt; array 'tag' =&gt; string 'daf' (length=3) 1 =&gt; array 'tag' =&gt; string 'daa' (length=3) 2 =&gt; array 'tag' =&gt; string 'daf' (length=3) 3 =&gt; array 'tag' =&gt; string 'daaa' (length=4) 4 =&gt; array 'tag' =&gt; string 'daf' (length=3) 5 =&gt; array 'tag' =&gt; string 'daa' (length=3) 6 =&gt; array 'tag' =&gt; string 'daf' (length=3) 7 =&gt; array 'tag' =&gt; string 'daf' (length=3) 8 =&gt; array 'tag' =&gt; string 'daf' (length=3) 9 =&gt; array 'tag' =&gt; string 'abd' (length=3) 10 =&gt; array 'tag' =&gt; string 'abdaa' (length=5) 11 =&gt; array 'tag' =&gt; string 'abda' (length=4) ==== array 2 ==== array 0 =&gt; array 'tag' =&gt; string 'daf' (length=3) 1 =&gt; array 'tag' =&gt; string 'test1' (length=5) </code></pre> <p>As output i want to get something like:</p> <pre><code>array 'daf' =&gt; '7' 'daa' =&gt; '2' 'daaa' =&gt; '1' 'abd' =&gt; '1' 'abdaa' =&gt; '1' 'abda' =&gt; '1' 'test1' =&gt; '1' </code></pre> <p>The value of the new array is the count of the element from all aray generatet from the loop. array_count_values() doesn't work here...any suggestions, how to solve the problem?</p> http://stackoverflow.com/questions/1241509/running-a-function-on-multiple-elements-using-jquery 2 Running a function on multiple elements using Jquery Nick 2009-08-06T21:14:16Z 2009-08-06T21:19:23Z <p>Hey,</p> <p>I've got some code that I'd like to run on every single checkbox on my page within a table, but I'm not sure of the best way to do this? I've tried something like this but it didn't work :(</p> <pre><code>$(document).ready(function() { function whatever (elem) { var $elem = elem; $elem.val('test'); } $('table tr td :checkbox').(function() { whatever($(this)); } }); </code></pre> <p>Any help would be fantastic, at a bit of a loss with this! Thanks :)</p> http://stackoverflow.com/questions/1218817/biztalk-mapping-nested-collections-of-elements-help-needed 2 BizTalk mapping, nested collections of elements, help needed Richard 2009-08-02T12:30:57Z 2009-08-03T10:39:09Z <p>Hi</p> <p>I have a schema that contains the details for an order. Within the schema, I have a collection of line items containing details of each item within the order. Schema is similar to the following structure.</p> <pre><code>Order SaleItems SaleItem OrderID Price Quantity etc. </code></pre> <p>I have a requirement that if the Quantity within SaleItem is more than 1, that another line item should be created and the price be divided between the line items, so for example:</p> <pre><code>Order SaleItems SaleItem OrderID 1234 Price 99 Quantity 3 </code></pre> <p>Should result in the following being created in the output:</p> <pre><code>Order SaleItems SaleItem OrderID 1234 Price 33 Quantity 1 SaleItem OrderID 1234 Price 33 Quantity 1 SaleItem OrderID 1234 Price 33 Quantity 1 </code></pre> <p>Could any of you Biztalk guru's advise one the best way to accomplish this? I don't know if it would be best to do it in a map with some of the functiods and if so what to put in the map, or in an orchestration with some custom to do the IF Quantity > 1 logic. Maybe I'm missing something very simple here, but any help would be gratefully recieved. </p> <p>Richard</p> http://stackoverflow.com/questions/1205957/css3-property-opacity 1 CSS3 Property opacity Neil Hickman 2009-07-30T11:17:45Z 2009-07-30T11:45:20Z <p>How can i only impact the opacity of a parent element and not its children</p> <p>eg,</p> <p>i want signup_backdrop opacity to be set at 0.5 but it's child element signup_box i don't want to have any opacity at all but it will apply the opacity set in signup_backdrop as inherited.</p> http://stackoverflow.com/questions/1112428/jquery-select-elements-on-1st-level 1 jQuery select elements on 1st "level" Robin 2009-07-10T23:28:30Z 2009-07-10T23:41:06Z <p>I want to select only the elements on the first "level".</p> <p>Ex:</p> <pre><code>&lt;div id="BaseElement"&gt; &lt;p&gt;My paragraph 0&lt;/p&gt; &lt;div&gt; &lt;span&gt;My Span 0&lt;/span&gt; &lt;span&gt;My Span 1&lt;/span&gt; &lt;/div&gt; &lt;span&gt;MySpan 2&lt;/span&gt; &lt;span&gt;MySpan 3&lt;/span&gt; &lt;p&gt;My paragraph 1&lt;/p&gt; &lt;/div&gt; </code></pre> <p>Let's say that you got the BaseElement node.</p> <pre><code>var Element = $("div#BaseElement"); </code></pre> <p>How do I fetch nodes from only the base element node?</p> <pre><code>$("div#BaseElement span") </code></pre> <p>should only result in getting MySpan 2 and MySpan 3.</p> http://stackoverflow.com/questions/1096797/should-i-use-elements-or-attributes-in-xml 5 Should I use Elements or Attributes in XML? Ibn Saeed 2009-07-08T08:26:15Z 2009-07-09T02:36:05Z <p>Hello</p> <p>I am learning XML from W3schools.</p> <p>Here: <a href="http://www.w3schools.com/xml/xml%5Fattributes.asp" rel="nofollow">hXXp://www.w3schools.com/xml/xml_attributes.asp</a></p> <p>The author mentions the following:<br /> <strong>XML Elements vs. Attributes</strong> </p> <blockquote> <pre><code>&lt;person sex="female"&gt; &lt;firstname&gt;Anna&lt;/firstname&gt; &lt;lastname&gt;Smith&lt;/lastname&gt; &lt;/person&gt; </code></pre> </blockquote> <p><hr /></p> <blockquote> <pre><code>&lt;person&gt; &lt;sex&gt;female&lt;/sex&gt; &lt;firstname&gt;Anna&lt;/firstname&gt; &lt;lastname&gt;Smith&lt;/lastname&gt; &lt;/person&gt; </code></pre> </blockquote> <p>In the first example sex is an attribute. In the last, sex is an element. Both examples provide the same information.</p> <p>There are no rules about when to use attributes and when to use elements. Attributes are handy in HTML. <strong>In XML my advice is to avoid them. Use elements instead.</strong> </p> <p>Avoid XML Attributes?</p> <p>Some of the problems with using attributes are:</p> <pre><code>* attributes cannot contain multiple values (elements can) * attributes cannot contain tree structures (elements can) * attributes are not easily expandable (for future changes) </code></pre> <p><strong>Attributes are difficult to read and maintain. Use elements for data. Use attributes for information that is not relevant to the data.</strong></p> <p>So is the view of the author a famous one, or is this the best practice in XML ?</p> <p>Should Attributes in XML be avoided ?</p> <p>Update: W3Schools also mentioned the following:<br /> <strong>XML Attributes for Metadata</strong></p> <p>Sometimes ID references are assigned to elements. These IDs can be used to identify XML elements in much the same way as the ID attribute in HTML. This example demonstrates this:</p> <blockquote> <pre><code>&lt;messages&gt; &lt;note id="501"&gt; &lt;to&gt;Tove&lt;/to&gt; &lt;from&gt;Jani&lt;/from&gt; &lt;heading&gt;Reminder&lt;/heading&gt; &lt;body&gt;Don't forget me this weekend!&lt;/body&gt; &lt;/note&gt; &lt;note id="502"&gt; &lt;to&gt;Jani&lt;/to&gt; &lt;from&gt;Tove&lt;/from&gt; &lt;heading&gt;Re: Reminder&lt;/heading&gt; &lt;body&gt;I will not&lt;/body&gt; &lt;/note&gt; &lt;/messages&gt; </code></pre> </blockquote> <p>The ID above is just an identifier, to identify the different notes. It is not a part of the note itself.</p> <p><strong>What I'm trying to say here is that metadata (data about data) should be stored as attributes, and that data itself should be stored as elements.</strong></p> http://stackoverflow.com/questions/1079938/jquery-nextall-click-on-h-element-toggles-all-p-elements-until-next-h 1 jQuery nextAll -- Click on h-element toggles all p-elements until next h Christoph 2009-07-03T15:54:28Z 2009-07-03T21:25:29Z <p>Hi, i'm creating an FAQ page where the answer is toggled by clicking on the question. The question is h3 and the answer is several "p" elements. Like this:</p> <pre><code>&lt;h3&gt;The First Question&lt;/h3&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; &lt;h3&gt;The Second Question&lt;/h3&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; </code></pre> <p>How can I toggle all p elements belonging to a certain question? My JS toggles ALL following p elements on the page:</p> <pre><code>$(document).ready(function(){ $("p").hide(); $("h3").click(function(){ $(this).nextAll("p").toggle(); }); }); </code></pre> <p>(I cannot use div's or classes). Thank you for any help!</p>