active questions tagged clone - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T07:34:20Zhttp://stackoverflow.com/feeds/tag/clonehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1803503/why-are-java-enums-not-clonable1Why are Java enums not clonable?Christian Strempfer2009-11-26T12:49:06Z2009-11-26T14:24:58Z
<p>Is there any reason why enums in Java cannot be cloned?</p>
<p>The manual states that </p>
<blockquote>
<p>This guarantees that enums are never cloned, which is necessary to preserve their "singleton" status. </p>
</blockquote>
<p>But returning the instance itself would also preserve its status, and I would be able to handle associated enums the same way as other clonable objects.</p>
<p>One may argue that </p>
<blockquote>
<p>The general intent [of clone()] is that, for any object x, the expression:
<code>x.clone() != x</code> will be true, [...]</p>
</blockquote>
<p>But for singletons on the contrary I want <code>x.clone() == x</code> to be true.</p>
<p>So is there any real reason why enums cannot be cloned or did they forget to think about singletons, when <code>clone()</code> was specified?</p>
<p>P.S.:
I ask this question because I am developing within a model-driven environment at which huge parts of the application are generated. And now I have to introduce on more unnecessary case differentiation (as for primitives).</p>
<p><strong>Edit</strong> To add one more argument: If the instance itself would be returned, then the singleton pattern would be transparent to referencing objects.</p>
http://stackoverflow.com/questions/1735389/joomla-or-drupal-4JOOMLA or DRUPAL?foxi2009-11-14T19:49:08Z2009-11-26T08:25:54Z
<p>I need website clone, am i need to choose joomla ro drupal?
<a href="http://www.freelancetraffic.com/listing/listing.php?id=212" rel="nofollow">Here is my project!</a></p>
http://stackoverflow.com/questions/867469/jquery-draggable-clone3Jquery: draggable cloneCudos2009-05-15T07:56:32Z2009-11-26T05:05:24Z
<p>Hello.</p>
<p>When I make a draggable clone and drop it in a droppable I cannot drag it again. How do I do that. Secondly I can only figure out how to us .append to add the clone to the droppable. But then it snap to the top most left corner after any exsisting element and not the drop position.</p>
<pre><code>$(document).ready(function() {
$("#container").droppable({
drop: function(event, ui) {
$(this).append($(ui.draggable).clone());
}
});
$(".product").draggable({
helper: 'clone'
});
});
</script>
<div id="container">
</div>
<div id="products">
<img id="productid_1" src="images/pic1.jpg" class="product" alt="" title="" />
<img id="productid_2" src="images/pic2.jpg" class="product" alt="" title="" />
<img id="productid_3" src="images/pic3.jpg" class="product" alt="" title="" />
</div>
</code></pre>
http://stackoverflow.com/questions/623703/jquery-clone-on-drag1jquery clone on dragmark2009-03-08T15:04:40Z2009-11-26T04:31:07Z
<p>i want to be able to create a copy of the element that i want to drag. im using the standard ui draggable and droppable. i know about the helper clone option. but that does not create a copy. the dragged item gets reverted back to the original position.</p>
http://stackoverflow.com/questions/1795214/git-svn-clone-errors-using-git-1-5-1-and-1-6-5-and-subversion-1-4-20git-svn clone Errors using git 1.5.1 and 1.6.5 and Subversion 1.4.2jkndrkn2009-11-24T18:07:03Z2009-11-25T07:26:39Z
<p>Hello, I am trying to integrate git into my workflow. I'm starting it by using it to manage working copies of code cloned off of a Subversion repository. </p>
<p>I've tried using both git 1.5.1 and 1.6.5. Both of these were built from source. I am using an official Debian package for Subversion. Using both versions of git yields the same error as seen below.</p>
<pre><code>$ svn --version
svn, version 1.4.2 (r22196)
compiled Aug 6 2009, 16:45:47
Copyright (C) 2000-2006 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).
The following repository access (RA) modules are available:
* ra_dav : Module for accessing a repository via WebDAV (DeltaV) protocol.
- handles 'http' scheme
- handles 'https' scheme
* ra_svn : Module for accessing a repository using the svn network protocol.
- handles 'svn' scheme
* ra_local : Module for accessing a repository on local disk.
- handles 'file' scheme
$ git --version
git version 1.6.5
$ git-svn clone -s file://localhost/home/foo/bar/ .
perl: /tmp/buildd/subversion-1.4.2dfsg1/subversion/libsvn_subr/path.c:114: svn_path_join: Assertion `is_canonical(base, blen)' failed.
Aborted
</code></pre>
<p>Has anyone here experienced this or similar issues? I've googled this assertion error before and I do come up with results, but they don't seem to be related to git-svn specifically. Could this error be perhaps the result of trying to use <code>git-svn clone</code> on a path of the form <code>file://...</code> rather than <code>http://...</code>?</p>
http://stackoverflow.com/questions/1770006/jquery-clone-for-showing-single-image0jQuery Clone for showing single imageSri2009-11-20T11:50:51Z2009-11-23T10:53:04Z
<p>If we select multiple images, how can we show only single image when we are dragging?
when I tried to drag, it was showing all the three selected images appended to it.
As I'm showing the total count on drag images.</p>
<p>My benchmark is Picasa Web Albums.</p>
http://stackoverflow.com/questions/1776999/deeply-cloned-panel-controls-dont-redraw0Deeply cloned Panel; controls don't redrawmnn2009-11-21T22:27:55Z2009-11-22T10:04:14Z
<p>Hello. I have problems with redrawing child controls of cloned panel.</p>
<p>First, <strong>I'm not using IClonable</strong>. I'm using <strong>reflection</strong>.</p>
<p>My code:</p>
<pre><code>public static Panel ClonePanel(Panel panel)
{
Panel newPanel = (Panel) CloneControl(panel);
foreach (Control ctl in panel.Controls)
{
Control newCtl = CloneControl(ctl);
newCtl.Visible = true;
newPanel.Controls.Add(newCtl);
}
newPanel.Visible = true;
return newPanel;
}
public static Control CloneControl(Control o)
{
Type type = o.GetType();
PropertyInfo[] properties = type.GetProperties();
Control retObject = (Control) type.InvokeMember("", System.Reflection.BindingFlags.CreateInstance, null, o, null);
foreach (PropertyInfo propertyInfo in properties)
{
if (propertyInfo.CanWrite)
{
propertyInfo.SetValue(retObject, propertyInfo.GetValue(o, null), null);
}
}
return retObject;
}
</code></pre>
http://stackoverflow.com/questions/1774733/mercurial-clone-issue1Mercurial clone issueBrian Liang2009-11-21T06:36:09Z2009-11-21T10:45:39Z
<p>I'm using Mercurial and I've cloned a repo locally and upon <code>hg push</code>, I'm getting this:</p>
<pre><code>abort: cannot lock static-http repository
</code></pre>
<p>What does this mean? Why can't it lock the static-http repository? Permission issue on the folder?</p>
http://stackoverflow.com/questions/1248535/how-can-i-git-clone-git-foo-git-again2how can i git clone git://foo.git AGAIN?shitsu2009-08-08T10:37:36Z2009-11-19T12:28:33Z
<p>I did
git clone git://foo.git
cd foo
...edit files..
</p>
<p>now I want to start fresh. I don't care about any changes I already made,
but I don't want to clone the whole giant foo.git again, just lose all my changes.
how can i git clone git://foo.git a second time, without getting
<code>
fatal: destination path 'foo' already exists and is not an empty directory.
</code>
what is the proper command?</p>
http://stackoverflow.com/questions/1759536/how-to-copy-large-set-of-data-in-sqlserver-db2How to copy large set of data in SQLServer dbScott2009-11-18T22:16:07Z2009-11-19T07:46:25Z
<p>I have a requirement to take a "snapshot" of a current database and clone it into the same database, with new Primary Keys.</p>
<p>The schema in question consists of about 10 tables, but a few of the tables will potentially contain hundreds of thousands to 1 million records that need to be duplicated.</p>
<p>What are my options here?</p>
<p>I'm afraid that writing a SPROC will require a locking of the database rows in question (for concurrency) for the entire duration of the operation, which is quite annoying to other users. How long would such an operation take, assuming that we can optimize it to the full extent sqlserver allows? Is it going to be 30 seconds to 1 minute to perform this many inserts? I'm not able to lock the whole table(s) and do a bulk insert, because there are other users under other accounts that are using the same tables independently.</p>
<p>Depending on performance expectations, an alternative would be to dump the current db into an xml file and then asynchronously clone the db from this xml file at leisure in the background. The obvious advantage of this is that the db is only locked for the time it takes to do the xml dump, and the inserts can run in the background.</p>
<p>If a good DBA can get the "clone" operation to execute start to finish in under 10 seconds, then it's probably not worth the complexity of the xmldump/webservice solution. But if it's a lost cause, and inserting potentially millions of rows is likely to balloon out in time, then I'd rather start out with the xml approach right away.</p>
<p>Or maybe there's an entirely better approach altogether??</p>
<p>Thanks a lot for any insights you can provide.</p>
http://stackoverflow.com/questions/1534667/jquery-draggable-clone-with-y-axis-restriction1jQuery draggable clone with y axis restrictionpbz2009-10-07T22:54:53Z2009-11-17T20:00:03Z
<p>If I have this markup:</p>
<pre><code><table id="sometable">
<tr>
<td class="x"><span>111</span></td>
<td>aaa</td>
</tr>
<tr>
<td class="x"><span>222</span></td>
<td>bbb</td>
</tr>
</table>
</code></pre>
<p>And this jQuery code:</p>
<pre><code>$(".x span").draggable({ helper: 'clone', axis: 'y'});
</code></pre>
<p>When dragging the first column the cloned span is snapping to the second column rather than the first column. If I try to drag the table cell rather than the span inside it snaps outside of the table. If I remove axis:'y' is works as expected except I no longer have the Y axis restriction that I would like. Any ideas? Thanks.</p>
http://stackoverflow.com/questions/1749581/what-does-it-mean-to-clone-an-object2What does it mean to clone() an object?pbrp2009-11-17T15:19:46Z2009-11-17T15:27:55Z
<p>What is object cloning in vb6 or java? In what situation do we use a clone? What does cloning objects mean? Can any one tell me with example please.</p>
http://stackoverflow.com/questions/1605176/finding-an-element-added-by-clone0Finding an element added by cloneiHeartDucks2009-10-22T05:25:12Z2009-11-16T17:36:58Z
<p>Hi,</p>
<p>The following is my HTML</p>
<pre><code><div id="ingredientrow1">
<div id="add"><a href="#" id="addIngredient1">Add</a></div>
<div id="remove"><a href="#" id="removeIngredient1">Remove</a></div>
<div id="si">
<input type="text" id="singleIngredient1" name="single_ingredient" />
<input type="hidden" id="recipe_ingredient_id1" name="recipe[new_ri_attributes][][ingredient_id]" />
</div>
<div id="iq"><input type="text" id="recipe_ingredient_quantity" name="recipe[new_ri_attributes][][quantity]" class="txt_qty" /></div>
<div id="iss"><select id="recipe_ingredient_serving_size_id1" name="recipe[new_ri_attributes][][serving_size_id]" ></select></div>
</div>
</code></pre>
<p>I clone the div "ingredientrow1" and I increment all the id's by one, so now my HTML has two two div's with id's: "ingredientrow1" and "ingredientrow2". Th user can clone this div any number of time by clicking the anchor with id "addIngredient1". </p>
<p>Note: The id of the select control in question "recipe_ingredient_serving_size_id1" is also changed with ...id2. </p>
<p>I also use the autocomplete plugin on the control "singleIngredient1" which will set the id of the ingredient selected in the hidden input and also populate the serving sizes in the select box. </p>
<p><strong>The problem</strong>: Since the user can generate n number of ingredientrow div's I do not know which select box to populate when a ingredient is selected. </p>
<p><strong>Known facts</strong>: I do know which ingredientrow the user is working on. I get that like this</p>
<p>var recipeingredientid = $(this).next().attr("id");</p>
<p>which gives me "ingredientrown" where n is 1, 2, ....</p>
<p><strong>My question</strong>: How do I get to the recipe_ingredient_serving_size_idn select box in a specific ingredientrow? Since the select id will have changed. </p>
<p><strong>Example to my question</strong>: If my recipeingredientid is "ingredientrow2" then the id of the select control will end with 2. How do I get a reference to that select control? </p>
<p>This is my JQuery which runs when the user selects a ingredient from the autocomplete input</p>
<pre><code>$("input[id*='singleIngredient']").result(function(event, data, formatted) {
if (data) {
var recipeingredientid = $(this).next().attr("id");
$("#" + recipeingredientid).val(data[1]);
$.getJSON("/serving_sizes?ingredientid=1", function(j) {
var options = "<option value=''>Please select a serving size</option>";
for (var i=0; i < j.length; i++)
options += '<option value="' + j[i].serving_size.id + '">' + j[i].serving_size.name + '</option>';
//I am trying not to hard code this id here.
$("#recipe_ingredient_serving_size_id1").html(options);
});
}
});
</code></pre>
<p>I know I am always passing 1 as the ingredientid but this is just a test... </p>
<p>Thanks for your time.</p>
http://stackoverflow.com/questions/1733835/jquery-cloning-a-row-which-has-display-none-style-and-appending-to-the-end-of-t0jquery : Cloning a row which has display none style and appending to the end of tbodyShyju2009-11-14T09:51:54Z2009-11-14T09:55:13Z
<p>using jquery , how can i create a clone of a Row which has display: none as its style , and append to the end of the tbody ?</p>
<p>My table is </p>
<pre><code><table>
<tbody>
<tr id="tRow0" style="display : none ;">
<td> // Some contents (textbox,dropdown etc..)
</td>
</tr>
</tbody>
</table>
</code></pre>
<p>I want to create a clone of the hidden row and append to the Table .This new row should be visible to screen</p>
http://stackoverflow.com/questions/1713169/problem-with-jquerys-clone-in-ie-and-chrome0problem with jquery's clone in IE and ChromePrasad2009-11-11T05:14:17Z2009-11-13T15:08:07Z
<p>I am trying to copy the masterdiv contents including child divs. Below is the code implementation.</p>
<pre><code><label id="lblMessage" />
<table width="100%">
<tr>
<td>
<div id="colorSelector">
<div style="background-color: rgb(0, 0, 255);" />
</div>
</td>
</tr>
<tr>
<td>
<div id="dynPageContent"></div>
<input type="button" id="updContent" value="Update" />
</td>
</tr>
</table>
<script type="text/javascript" language="javascript">
$(document).ready(
function() {
$('#colorSelector').ColorPicker({
color: '#0000ff',
onShow: function(colpkr) {
$(colpkr).fadeIn(500);
return false;
},
onHide: function(colpkr) {
$(colpkr).fadeOut(500);
return false;
},
onChange: function(hsb, hex, rgb) {
$('#dynPageContent div').css('backgroundColor', '#' + hex);
}
});
if ($("#dynPageContent").length) {
$("#dynPageContent").html('<%= Model.Page_Content.Trim() %>');
if ($("#pageContent").length) {
$("#pageContent").load("/Home/PageContent");
}
if ($("#Sidebar").length) {
$("#Sidebar").load("/Home/Sidebar");
}
}
$('#updContent').unbind('click');
$('#updContent').click(function(e) {
var updatedpageContent = $('<div />').append($('#dynPageContent div[id^="pageContent"],div[id^="sideba"]').clone()).remove().html();
$.getJSON("/Home/UpdatePage/?t=" + new Date(), { pc: updatedpageContent },
function(data) {
if (data != null) {
if (data == true) {
$('#lblMessage').html("Page template updated.");
}
}
});
});
});
</script>
</code></pre>
<p>I am loading the html/divs(place holders for the content) from the database and i can change the background color of the child divs and update the placeholders/child divs with new style(background color) to the database using json.</p>
<p>The above code works fine in Firefox, but in IE and chrome, the masterdiv(<code>dynPageContent</code>) disappears.</p>
<p>Whats wrong with the above code?</p>
http://stackoverflow.com/questions/1727163/how-can-i-operate-on-an-dom-element-cloned-with-jquery0How can I operate on an DOM element cloned with jQuery?Arms2009-11-13T04:41:08Z2009-11-13T05:06:44Z
<p>I have a form that I'm trying to duplicate using jQuery. I'm using the <code>clone()</code> method, which returns the cloned object (DOM element). I need to then select elements of the cloned form and manipulate them. Is this possible? If so, how?<br>
I've tried stuff like:</p>
<pre><code>var clonedForm = $("#myForm").clone();
clonedForm.$(".inputField").val();
</code></pre>
<p>But (unsurprisingly) the second line doesn't work. Any help would be appreciated, thanks.</p>
http://stackoverflow.com/questions/663079/does-cloning-provide-a-performance-improvement-over-constructors-factory-methods6Does cloning provide a performance improvement over constructors/factory methods?sk2009-03-19T17:07:38Z2009-11-11T19:50:59Z
<p>I'm maintaing an older Java code base (jvm 1.4) that seems to use cloning as an alternative to object instantiation, I'm guessing as a performance optimization. Here's a contrived example:</p>
<pre><code>public class Foo {
private SomeObject obj; // SomeObject implements Cloneable
public Foo() {
obj = new SomeObject();
obj.setField1("abc"); // these fields will have the same value every time
obj.setField2("def");
}
public void doStuff() {
SomeObject newObj = obj.clone(); // clone it instead of using a factory method
// do stuff with newObj
}
}
</code></pre>
<p>The usual caveats about premature optimization notwithstanding, was this actually a recommended idiom at some point?</p>
http://stackoverflow.com/questions/1267261/does-scala-anyref-clone-perform-a-shallow-or-deep-copy6Does Scala AnyRef.clone perform a shallow or deep copy?Derek Mahar2009-08-12T16:28:51Z2009-11-11T18:09:28Z
<p>In Scala, does <code>AnyRef.clone</code> perform a shallow or deep copy?</p>
http://stackoverflow.com/questions/1651551/jquery-clone-with-inner-child-element-clone-this-noob-is-confused0jQuery clone with inner child element clone - This noob is confused!Patrick McGovern2009-10-30T18:32:39Z2009-11-09T10:26:32Z
<h2>This is what is being passed (as seen by PHP), which is a little jacked up:</h2>
<pre><code>[action] => AddDailyDeal
[addDailyDealFormProductTitle] => Gatorade 20 oz. bottle
[addDailyDealFormPrice] => 1.23
[addDailyDealFormShippingCost] => 4.56
[addDailyDealFormDealURL] => http://www.dealurtl.com
[addDailyDealFormTrackingImageURL] => http://www.trackingimage.com
[addDailyDealFormProductDescription] => lkhg khjgkhjg
[dealImageUpload0] => Photo 3.jpg
[addDailyDealFormAdditionalInfoItemTitle] => Array
(
[0] => 1
)
[parentID] => 1
[addDailyDealFormAdditionalInfoItemValue] => Array
(
[0] => Array
(
[0] => manufacturer 90 day
)
[[object Object] =>
)
[addDailyDealFormAdditionalInfoItemTitle1] => 2
[submit] => Add this Deal
</code></pre>
<h2>The issue here is that there were two addDailyDealFormAdditionalInfoItemTitle entered, and the passed data should look like this (based off what was entered in the form:</h2>
<pre><code>[action] => AddDailyDeal
[addDailyDealFormProductTitle] => Gatorade 20 oz. bottle
[addDailyDealFormPrice] => 1.23
[addDailyDealFormShippingCost] => 4.56
[addDailyDealFormDealURL] => http://www.dealurtl.com
[addDailyDealFormTrackingImageURL] => http://www.trackingimage.com
[addDailyDealFormProductDescription] => lkhg khjgkhjg
[dealImageUpload0] => Photo 3.jpg
[addDailyDealFormAdditionalInfoItemTitle] => Array
(
[0] => 1
[1] => 5
)
[parentID] => 1
[addDailyDealFormAdditionalInfoItemValue] => Array
(
[0] => Array
(
[0] => 90 watta
[1] => other things
[2] => smells funny
)
[1] => Array
(
[0] => manufacturer 90 day
)
)
[submit] => Add this Deal
</code></pre>
<h2>Here is the HTML / JS</h2>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<script src="http://www.google.com/jsapi"></script>
<script>
google.load("jquery", "1.3.2");
google.load("jqueryui", "1.7.2");
</script>
</head>
<body>
<div id="wrapper">
<div id="content">
<script type="text/javascript">
$(document).ready(function() {
$('.btnAddTitle').live('click', function() {
var LastAdditionalInfoItemTitle = $('.clonedInput:last');
var num = LastAdditionalInfoItemTitle.attr("id").replace("AdditionalInfoItemTitle", "");
var newNum = new Number(num) + 1;
var newElem = LastAdditionalInfoItemTitle.clone().attr('id', 'AdditionalInfoItemTitle' + newNum);
newElem.children('select:first').attr('id', 'addDailyDealFormAdditionalInfoItemTitle[' + newNum + ']').attr('name', 'addDailyDealFormAdditionalInfoItemTitle' + newNum);
newElem.children('div.clonedInputValue').children('input.parentID').val(newNum);
LastAdditionalInfoItemTitle.after(newElem);
});
$('.btnAddValue').live('click', function() {
var LastAdditionalInfoItemValue = $(this).parent().parent().children('.clonedInputValue:last');
var num = LastAdditionalInfoItemValue.attr("id").replace("AdditionalInfoItemValue", "");
var newNum = new Number(num) + 1;
var newElem = LastAdditionalInfoItemValue.clone().attr('id', 'AdditionalInfoItemValue' + newNum);
newElem.children('textarea:first').attr('name', 'addDailyDealFormAdditionalInfoItemValue[' + $(this).siblings(".parentID") + '][' + newNum + ']');
LastAdditionalInfoItemValue.after(newElem);
});
$('.btnAddImage').live('click', function() {
var num = $('.clonedImage').length - 1;
var newNum = new Number(num + 1);
var newElem = $('#DealImage' + num).clone().attr('id', 'DealImage' + newNum);
newElem.children(':first').attr('id', 'dealImageUpload' + newNum).attr('dealImageUpload', 'dealImageUpload' + newNum);
$('#DealImage' + num).after(newElem);
});
});
</script>
<form method="post" action="index.php" name="addNewDailyDeal">
<input type="hidden" name="action" value="AddDailyDeal" />
<dl id="dailyDealForm">
<dt>Product Title</dt>
<dd><input type="text" name="addDailyDealFormProductTitle" /></dd>
<dt>Price</dt>
<dd><input type="text" name="addDailyDealFormPrice" /></dd>
<dt>Shipping Cost</dt>
<dd><input type="text" name="addDailyDealFormShippingCost" /></dd>
<dt>Deal URL</dt>
<dd><input type="text" name="addDailyDealFormDealURL" /></dd>
<dt>Tracking Image URL</dt>
<dd><input type="text" name="addDailyDealFormTrackingImageURL" /></dd>
<dt>Product Description</dt>
<dd><textarea name="addDailyDealFormProductDescription" cols="40" rows="5"></textarea></dd>
</dl>
<h3>Deal Images</h3>
<div id="DealImage0" class="clonedImage">
<input type="file" name="dealImageUpload0">
<input type="button" class="btnAddImage" value="+" />
</div>
<h3>Additional Info Items</h3>
<div id="AdditionalInfoItemTitle0" class="clonedInput">
<select name="addDailyDealFormAdditionalInfoItemTitle[0]">
<option value="1">Features</option>
<option value="2">Warranty</option>
<option value="3">Specifications</option>
<option value="4">In the box</option>
<option value="5">Dimensions</option>
<option value="6">Connections</option>
<option value="7">Interfaces</option>
</select>
<input type="button" class="btnAddTitle" value="+" />
<div id="AdditionalInfoItemValue0" class="clonedInputValue">
<input type="hidden" class="parentID" name="parentID" value="0" />
<textarea name="addDailyDealFormAdditionalInfoItemValue[0][0]" rows="2" cols="30"></textarea>
<input type="button" class="btnAddValue" value="+" />
</div>
</div>
<input type="submit" name="submit" value="Add this Deal" />
</form>
</div>
</div>
</body></html>
</code></pre>
http://stackoverflow.com/questions/1694608/making-cloned-repository-in-git-the-master1Making cloned repository in git the masterAmit2009-11-07T22:07:12Z2009-11-08T14:52:12Z
<p>I have two git repositories:</p>
<ol>
<li>report.git (Master on remote location)</li>
<li>cloned.git (Local)</li>
</ol>
<p>I lost report.git. I have the cloned.git. I want to clone other repositories from this cloned.git. This is possible but my question is am I missing something? Is cloned.git really the same as the master report.git?</p>
<p>cloned.git still points to the Master report.git. I changed this by removing the options in the .git/config. Is this enough?</p>
http://stackoverflow.com/questions/1690503/cant-install-mercurial-on-mac-os-x0can't install mercurial on mac os x [closed]Yosy2009-11-06T21:16:03Z2009-11-07T01:58:51Z
<p>Hey,
I can't install mercurial. I am getting this error -</p>
<blockquote>
<p>---> Computing dependencies for mercurial<br>
Error: Unable to execute port: can't read "build.cmd": Failed to locate 'make' in path: '/opt/local/bin:/opt/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin' or at its MacPorts configuration time location, did you move it?</p>
</blockquote>
http://stackoverflow.com/questions/1676941/deep-cloning-in-compact-framework0Deep cloning in Compact FrameworkMorrislgn2009-11-04T21:58:01Z2009-11-05T10:58:59Z
<p>Hi Folks,</p>
<p>Is it possible to deep clone an object in the compact framework? I was hoping to use IClonable and memberwiseclone() however this only performs a shallow copy.</p>
<p>Any ideas on how to do this please using C# 2.0?</p>
<p>Many thanks,</p>
<p>Morris</p>
http://stackoverflow.com/questions/1673230/why-does-hg-clone-of-hg-netbeans-org-main-report-9-integrity-errors0Why does hg clone of hg.netbeans.org/main report "9 integrity errors"?bendin2009-11-04T11:32:11Z2009-11-04T14:32:03Z
<p>I just finished cloning the (huge) netbeans repository for
the second time. I found that I couldn't
successfully pull changes, after my first attempt to clone, earlier this week.
I guessed that some intermittent error had
corrupted the repository the first time around... that appears not to
be the case.</p>
<ul>
<li>I'm using hg 1.3.1 on Ubuntu 9.4 (32-bit).</li>
<li>I cloned with <code>hg clone <a href="http://hg.netbeans.org/main" rel="nofollow">http://hg.netbeans.org/main</a> main</code></li>
<li><code>hg verify</code> (below) ends with:
<pre>9 warnings encountered!
9 integrity errors encountered!</pre></li>
<li>incidentally, the size of 00manifest.d is <strong>1.1GiB</strong>, is that normal?</li>
</ul>
<p>What could be causing this? Where does one even report this kind of error?
(assuming for the moment that it's not a PEBKAC.)</p>
<p>This should give you an idea of what I'm seeing (repetitive bits removed to save space):</p>
<pre>
[smithma@oberon:~/w/netbeans/main]
$ { hg --version ; echo ; echo ; hg --debug verify ; } | tee
../netbeans-main-hg-verify.txt
Mercurial Distributed SCM (version 1.3.1)
Copyright (C) 2005-2009 Matt Mackall and others
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
manifest@?: rev 149491 points to unexpected changeset 149752
(expected 149754)
[...SNIP...]
repository uses revlog format 1
checking changesets
checking manifests
crosschecking files in changesets and manifests
checking files
applemenu/src/org/netbeans/modules/applemenu/layer.xml@?: rev 12
points to unexpected changeset 149753
(expected 41473 46378 56815 59563 66079 70568 71017 83303 103972 105432 135060 137239 147766 149755)
warning: cnd.repository/src/org/netbeans/modules/cnd/repository/disk/UnitImpl.java@74688:
copy source revision is nullid cnd.repository/src/org/netbeans/modules/cnd/repository/disk/UnitDiskRepository.java:000000000000
[...SNIP...]
defaults/src/org/netbeans/modules/defaults/mf-layer.xml@?: rev 74
points to unexpected changeset 149753
(expected 25730 25732 25733 25741 25746 25747 25752 25768 26270 26561
27350 27495 27539 27566 27776 28203 28741 29191 29244 29364 29582
32476 33848 34406 35712 35713 36197 38355 40775 40854 42144 43593 44912
46378 46644 46697 46757 48145 48325 49166 50888 54548 54616 54618
55792 56816 56868 56895 56915 57513 58323 59288 59456 59563 59709 60225
66549 67160 67595 76198 77297 85585 86938 87361 93609 93755 113163
113177 117980 117992 124182 124475 135060 147766 149755)
[...SNIP...]
118132 files, 151874 changesets, 591274 total revisions
9 warnings encountered!
9 integrity errors encountered!
</pre>
http://stackoverflow.com/questions/1655778/clone-a-working-linux-server0Clone a working Linux server [closed]unknown (google)2009-10-31T22:18:23Z2009-10-31T22:23:07Z
<p>I need to clone a working linux server. We cannot shut down the working server. Is there any way I can get a clone and deploy it on another server?</p>
http://stackoverflow.com/questions/1461873/how-can-i-find-copy-paste-duplicate-clone-code-in-perl7How can I find copy/paste (duplicate, clone) code in Perl?Kurt W. Leucht2009-09-22T18:41:44Z2009-10-28T03:48:45Z
<p>I've searched the Internet for a while now and I have not been able to find any free (or cheap) tools/utilities/modules that can analyze a set of Perl files (modules or scripts) and flag duplicate or cloned or copy/pasted code.</p>
<p>I'm better now, but I used to copy and paste sections of code all over the place. I'd like to clean it up and fix my old code duplication, but a little bit of tool help would be appreciated so I won't have to go through all my old code with a fine tooth comb. Plus, manual recognition of this sort of offense is error prone. </p>
http://stackoverflow.com/questions/665860/deep-clone-utility-recomendation4Deep clone utility recomendationSupowski2009-03-20T12:03:41Z2009-10-27T22:48:13Z
<p>Is there any utility for deep cloning for java collections:</p>
<ul>
<li>Arrays</li>
<li>Lists</li>
<li>Maps</li>
</ul>
<p>NOTE: prefer some solution without usage of serialization, but with use of Object.clone() method. I can be sure that my custom object will implement clone() method and will use only java-standard classes that are cloneable...</p>
http://stackoverflow.com/questions/1633672/how-do-i-fork-a-stream-in-net6How do I "fork" a Stream in .NET?I. J. Kennedy2009-10-27T21:04:57Z2009-10-27T21:52:36Z
<p>As <a href="http://stackoverflow.com/questions/1084813/why-a-binarywriter-closes-the-outer-stream-on-disposal-and-how-to-prevent-that">discussed before</a>, when a BinaryReader or BinaryWriter gets closed, its underlying Stream get closed as well (aargh). Consider this situation: a routine <code>R</code> is passed a MemoryStream, say <code>M</code>; I would like to write some stuff to <code>M</code> and then pass it to another routine for more processing (not necessarily writing). For convenience, I'd like to wrap <code>M</code> in a BinaryWriter to do my writing. After writing, I'm done with the BinaryWriter but not with <code>M</code>. </p>
<pre><code>void R(MemoryStream M)
{
using (B = new BinaryWriter(M))
{
// write some stuff using B
}
S(M); // now pass M to another routine for further processing
}
</code></pre>
<p>But, I can't dispose of the BinaryStream without closing <code>M</code>. </p>
<p>Q: Is there a way to do any of the following?</p>
<ul>
<li>extract the underlying byte[] from a MemoryStream,</li>
<li>clone a Stream</li>
<li>reopen a Stream after it's been closed</li>
</ul>
http://stackoverflow.com/questions/1221593/jquery-clone-problem1jquery clone problemNishima2009-08-03T10:22:21Z2009-10-26T04:12:36Z
<p>Hi All,
Can anyone tell me how can i clone an element and then change its id.
Can anyone provide me with some sample code.
i want to generate a clone with a different id the code given below.</p>
<pre><code>$("#Normal_Tag1_div").draggable({
helper:'clone',
revert: 'invalid'
});
</code></pre>
http://stackoverflow.com/questions/1594149/how-can-i-clone-or-copy-a-object-to-another-one-but-dont-copy-pk-attribute1How can I clone (or copy) a object to another one, but don't copy PK attribute??AndreMiranda2009-10-20T12:08:31Z2009-10-20T12:54:21Z
<p>Hi!</p>
<p>I'm trying to copy all object attibutes to another object, fox example:</p>
<pre><code>Person p1 = new Person();
p1.name = "John";
p1.sex = 'M';
Person p2 = new Person();
p2 = Util.Clone(p1);
</code></pre>
<p>The problem is that Person entity has an identity PK 'codPerson' and I don't want to copy this PK. Is there a way to clone/copy an object, but don't copy its PK attribute??</p>
<p>Thanks!!!</p>
http://stackoverflow.com/questions/1592722/how-to-add-textbox-dynamically0How to add textbox dynamically ?luvboy2009-10-20T05:59:06Z2009-10-20T07:24:08Z
<p>Hello,</p>
<p>please help with this criteria ?</p>
<p>Users can be able to add as many Names as they can, ADD NAME link serves the purpose for this</p>
<p>How can i handle this specification ?
Please check the spec below:</p>
<p><img src="http://i327.photobucket.com/albums/k457/luvboy7/family/work/clone.jpg" alt="alt text" /></p>
<p>Thanq</p>