active questions tagged elements - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T13:42:50Zhttp://stackoverflow.com/feeds/tag/elementshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/786879/how-can-i-efficiently-extract-repeated-elements-in-a-ruby-array1How can I efficiently extract repeated elements in a Ruby array?MiniQuark2009-04-24T17:39:04Z2009-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)>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-jqueryui0Styling regular form elements with jQueryUIumpirsky2009-12-12T20:32:45Z2009-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-html1Parsing periodic elements in PHP/htmlNathan Adams2009-12-10T15:10:50Z2009-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-exist1c# LINQ to XML Query Expression, checks inside quesry if Element Existasdi2009-12-09T20:37:37Z2009-12-09T20:46:31Z
<pre><code><channel>
<title>Best Web Gallery - Flash + CSS Gallery</title>
<link>http://bestwebgallery.com</link>
<description>Featuring the world best web design</description>
<pubDate>09 Dec 2009</pubDate>
<generator>http://wordpress.org/?v=2.3.2</generator>
<language>en</language>
</channel>
<channel>
<title>Best Web Gallery - Flash + CSS Gallery</title>
<link>http://bestwebgallery.com</link>
<description>Featuring the world best web design</description>
// pubDate missing
<generator>http://wordpress.org/?v=2.3.2</generator>
<language>en</language>
</channel>
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-question0jQuery: hidden elements - general questionFuxi2009-11-27T00:40:03Z2009-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-load0jQuery How to Hide DIVs, they are Showing for a Split Second on page LoadThomas Carter2009-12-06T17:41:06Z2009-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-set0Select an element that doesn't have a background settscully2009-12-03T22:31:23Z2009-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-jquery0return type of input with jquerykris2009-11-30T07:50:35Z2009-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><input type = 'radio' class = 'form_element' value = '1'>
<input type = 'radio' class = 'form_element' value = '1'>
<input type = 'radio' class = 'form_element' value = '1'>
</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-jquery0Is it possible to obtain a list of events bound to an element in jQuery?avastreg2009-11-13T14:58:34Z2009-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-jquery0Getting elements that exceed the maxium value. JAVASCRIPT/JQUERYErik53882009-10-16T05:07:38Z2009-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><ul style="width:auto">
<li>item one</li>
<li>item two</li>
<li>item three</li>
<li>item four</li>
<li>item five</li>
</ul>
</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 <= 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-attributes14Best practices: When should I use elements and when should I use attributes?Rob2008-12-27T22:35:52Z2009-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><sitemap>
<category name="Animals">
<section title="Dogs">
<page url="/pics/greatdane.jpg" title="Great Dane"/>
</section>
</category>
</sitemap>
</code></pre>
<p>2.</p>
<pre><code><sitemap>
<page>
<category>Animals</category>
<section>Dogs</section>
<title>Great Dane</title>
<url>/pics/greatdane.jpg</url>
</page>
</sitemap>
</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-attributes0C# - How to change HTML elements attributesSir Psycho2008-10-09T11:56:36Z2009-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><div id="menu">
<ul id="nav">
<li class="forcePadding"><img src="css/site-style-images/menu_corner_right.jpg" /></li>
<li id="screenshots"><a href="screenshots.aspx" title="Screenshots">Screenshots</a></li>
<li id="future"><a href="future.aspx" title="Future">Future</a></li>
<li id="news"><a href="news.aspx" title="News">News</a></li>
<li id="download"><a href="download.aspx" title="Download">Download</a></li>
<li id="home"><a href="index.aspx" title="Home">Home</a></li>
<li class="forcePadding"><img src="css/site-style-images/menu_corner_left.jpg" /></li>
</ul>
</div>
</code></pre>
http://stackoverflow.com/questions/1451208/access-iframe-elements-in-javascript1Access iframe elements in javascriptarchana roy2009-09-20T14:57:24Z2009-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-items0How to loop through WPF StackPanel static Items?JohnIdol2009-09-14T10:33:22Z2009-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-elements0Do different browsers (Firefox/Safari/IE/Opera) have limits on the form elements name attributes?Bob Herrmann2009-04-20T11:49:26Z2009-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>
<input name='a012345678901234567890123456789012345678901234567890123456789 ...'>
</pre>
http://stackoverflow.com/questions/1245086/only-one-web-part-added-to-the-wp-gallery-when-multiple-webpart-files-specified-i1Only one web part added to the wp gallery when multiple webpart files specified in moduleMichhes2009-08-07T14:35:16Z2009-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><Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<Module Name="WebPartPopulation" Url="_catalogs/wp" Path="WebParts">
<File Url="Test1.webpart" Type="GhostableInLibrary">
<Property Name="Group" Value="MyGroup" />
</File>
<File Url="Test2.webpart" Type="GhostableInLibrary">
<Property Name="Group" Value="Mygroup" />
</File>
</Module>
</Elements>
</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-elements3Are <hr> and <br> inline or block elements?Svish2009-09-02T18:01:36Z2009-09-02T18:38:19Z
<p>My guess is that <code><br></code> might be inline and that <code><hr></code> might be block. But I don't really have a clue...</p>
http://stackoverflow.com/questions/1367431/list-elements-by-activity1list elements by activityCliff2009-09-02T12:34:38Z2009-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-image0Javascript - Visual Representation of Element as an ImageBen Shelock2009-08-31T11:37:36Z2009-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-group2what are the fast algorithms to find duplicate elements in a collection and group them?t.g.2009-08-26T05:33:51Z2009-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<path_type>,list< pair<std::string, paths_type::const_iterater>>
template<class T>
struct consume_list
{
groups_type operator()(list<T>& 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() > 1)
{
T front(l.front());
l.pop_front();
item_predicate<T> ep(front);
list<T>::iterator it = l.begin();
list<T>::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 <class T>
struct item_predicate{};
// specialization for type path_type
template <>
struct item_predicate<path_type>
{
public:
item_predicate(const path_type& base)/*init list*/
{}
public:
bool equals(const path_type& comparee)
{
bool result;
/* time-consuming operations here*/
return result;
}
const path_type& extract_path(const path_type& 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<Type, vector<duplicates>></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: [ '<' = 139, '==' = 23
]</p>
<p>comparisons: [ '<' = 38, '==' = 23 ]</p>
<p>using std::list -> sort() -> shrink
list:</p>
<p>comparisons: [ '<' = 50, '==' = 43 ]</p>
<p>comparisons: [ '<' = 52, '==' = 43 ]</p>
<p>using std::list -> shrink list:</p>
<p>comparisons: [ '<' = 0, '==' = 121 ]</p>
<p>comparisons: [ '<' = 0, '==' = 43 ]</p>
<p>using std::vector -> std::map>:</p>
<p>comparisons: [ '<' = 79, '==' = 0 ]</p>
<p>comparisons: [ '<' = 53, '==' = 0 ]</p>
<p>using std::vector ->
std::multiset ->
adjacent_find():</p>
<p>comparisons: [ '<' = 79, '==' = 7 ]</p>
<p>comparisons: [ '<' = 53, '==' = 7 ]</p>
<h2>Code</h2>
</blockquote>
<pre><code>// compile with VC++10: cl.exe /EHsc
#include <vector>
#include <deque>
#include <list>
#include <map>
#include <set>
#include <algorithm>
#include <iostream>
#include <sstream>
#include <boost/foreach.hpp>
#include <boost/tuple/tuple.hpp>
#include <boost/format.hpp>
using namespace std;
struct Type
{
Type(int i) : m_i(i){}
bool operator<(const Type& t) const
{
++number_less_than_comparison;
return m_i < t.m_i;
}
bool operator==(const Type& t) const
{
++number_equal_comparison;
return m_i == t.m_i;
}
public:
static void log(const string& operation)
{
cout
<< "comparison during " <<operation << ": [ "
<< "'<' = " << number_less_than_comparison
<< ", "
<< "'==' = " << number_equal_comparison
<< " ]\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& operator<<(ostream& os, const Type& t)
{
os << t.to_int();
return os;
}
template< class Container >
struct Test
{
void recursive_run(size_t n)
{
bool reserve_order = false;
for(size_t i = 48; i < n; ++i)
{
run(i);
}
}
void run(size_t i)
{
cout <<
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& when)
{
std::stringstream ss;
ss << when <<" = [ ";
BOOST_FOREACH(const Container::value_type& v, m_container)
{
ss << v << " ";
}
ss << "]\n";
cout << ss.str();
}
void generate_sample(size_t n)
{
m_container.clear();
for(size_t i = 1; i <= 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 < 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<vector<Type> >
{
string Description()
{
return "std::vector<Type> -> sort() -> adjacent_find()";
}
private:
void sort_it()
{
std::sort(m_container.begin(), m_container.end());
}
void locate_duplicates()
{
using std::adjacent_find;
typedef vector<Type>::iterator ITR;
typedef vector<Type>::value_type VALUE;
typedef boost::tuple<VALUE, ITR, ITR> TUPLE;
typedef vector<TUPLE> 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& v1, VALUE& 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<list<Type> >
{
List(bool sorted) : m_sorted(sorted){}
string Description()
{
return m_sorted ? "std::list -> sort() -> shrink list" : "std::list -> 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<Type>::value_type VALUE;
typedef list<Type>::iterator ITR;
typedef vector<VALUE> GROUP;
typedef vector<GROUP> GROUPS;
GROUPS sub_groups;
GROUP one_group;
while(m_container.size() > 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<vector<Type>>
{
string Description()
{
return "std::vector -> std::map<Type, vector<Type>>" ;
}
private:
void sort_it() {}
void locate_duplicates()
{
typedef map<Type, vector<Type> > MAP;
typedef MAP::iterator ITR;
MAP local_map;
BOOST_FOREACH(const vector<Type>::value_type& v, m_container)
{
pair<ITR, bool> mit;
mit = local_map.insert(make_pair(v, vector<Type>(1, v)));
if(!mit.second) (mit.first->second).push_back(v);
}
ITR itr(local_map.begin());
while(itr != local_map.end())
{
if(itr->second.empty()) local_map.erase(itr);
itr++;
}
}
};
struct Multiset : Test<vector<Type>>
{
string Description()
{
return "std::vector -> std::multiset<Type> -> adjacent_find()" ;
}
private:
void sort_it() {}
void locate_duplicates()
{
using std::adjacent_find;
typedef set<Type> SET;
typedef SET::iterator ITR;
typedef SET::value_type VALUE;
typedef boost::tuple<VALUE, ITR, ITR> TUPLE;
typedef vector<TUPLE> V_TUPLE;
V_TUPLE results;
SET local_set;
BOOST_FOREACH(const vector<Type>::value_type& 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& v1, VALUE& 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-centered0Cannot get CSS Elements centeredEric2009-08-28T14:42:52Z2009-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><div id="container>
<!-- Centered Content Goes here-->
</div>
</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><div id="container>
<div id="topHeader></div>
<!-- All other elements go here as well-->
</div>
</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-parent1Use CSS to create multiple elements that take up the entire width of the parent.JerSchneid2009-08-25T22:42:47Z2009-08-25T23:32:03Z
<p>I'm trying to achieve a horizontal CSS menu bar where all of the <code><a></code> elements combined expand to the entire width of the parent. The HTML looks something like this:</p>
<pre><code><div id="parent">
<a href="/">Home</a>
<a href="/learn">Learn More About The Product</a>
<a href="/about">About Us</a>
<a href="/contact">Contact Us</a>
</div>
</code></pre>
<p>The idea is each of the four <code><a></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-code0creating elements in app.config via codeSir Psycho2009-02-15T10:49:58Z2009-08-23T14:11:37Z
<p>Hi,</p>
<p>I have the following section in my app.config</p>
<pre><code><mySettings>
<addins>
<addin fullname="aaaaa"
path="ddddd"
version="ccccc"
enabled="true"
deleteonload="false" />
</addins>
</mySettings>
</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-arrays1count from several multidimensional arrayscupakob2009-08-19T12:51:24Z2009-08-19T15:36:53Z
<p>hi all,</p>
<p>i have foreach, which generate following arrays:</p>
<pre><code>==== array 1 ====
array
0 =>
array
'tag' => string 'daf' (length=3)
1 =>
array
'tag' => string 'daa' (length=3)
2 =>
array
'tag' => string 'daf' (length=3)
3 =>
array
'tag' => string 'daaa' (length=4)
4 =>
array
'tag' => string 'daf' (length=3)
5 =>
array
'tag' => string 'daa' (length=3)
6 =>
array
'tag' => string 'daf' (length=3)
7 =>
array
'tag' => string 'daf' (length=3)
8 =>
array
'tag' => string 'daf' (length=3)
9 =>
array
'tag' => string 'abd' (length=3)
10 =>
array
'tag' => string 'abdaa' (length=5)
11 =>
array
'tag' => string 'abda' (length=4)
==== array 2 ====
array
0 =>
array
'tag' => string 'daf' (length=3)
1 =>
array
'tag' => string 'test1' (length=5)
</code></pre>
<p>As output i want to get something like:</p>
<pre><code>array
'daf' => '7'
'daa' => '2'
'daaa' => '1'
'abd' => '1'
'abdaa' => '1'
'abda' => '1'
'test1' => '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-jquery2Running a function on multiple elements using JqueryNick2009-08-06T21:14:16Z2009-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-needed2BizTalk mapping, nested collections of elements, help neededRichard2009-08-02T12:30:57Z2009-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-opacity1CSS3 Property opacityNeil Hickman2009-07-30T11:17:45Z2009-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-level1jQuery select elements on 1st "level"Robin2009-07-10T23:28:30Z2009-07-10T23:41:06Z
<p>I want to select only the elements on the first "level".</p>
<p>Ex:</p>
<pre><code><div id="BaseElement">
<p>My paragraph 0</p>
<div>
<span>My Span 0</span>
<span>My Span 1</span>
</div>
<span>MySpan 2</span>
<span>MySpan 3</span>
<p>My paragraph 1</p>
</div>
</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-xml5Should I use Elements or Attributes in XML?Ibn Saeed2009-07-08T08:26:15Z2009-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><person sex="female">
<firstname>Anna</firstname>
<lastname>Smith</lastname>
</person>
</code></pre>
</blockquote>
<p><hr /></p>
<blockquote>
<pre><code><person>
<sex>female</sex>
<firstname>Anna</firstname>
<lastname>Smith</lastname>
</person>
</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><messages>
<note id="501">
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
<note id="502">
<to>Jani</to>
<from>Tove</from>
<heading>Re: Reminder</heading>
<body>I will not</body>
</note>
</messages>
</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-h1jQuery nextAll -- Click on h-element toggles all p-elements until next hChristoph2009-07-03T15:54:28Z2009-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><h3>The First Question</h3>
<p>Answer Paragraph</p>
<p>Answer Paragraph</p>
<p>Answer Paragraph</p>
<h3>The Second Question</h3>
<p>Answer Paragraph</p>
<p>Answer Paragraph</p>
</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>