krtaylor wrote: > I have been playing around with a solution for the sequential version > reporting, but it is not as simple as it may seem. The best description > of the problem and solution I have found is at: > > http://michaelandlaura.org.uk/~michael/blog/index.php?id=379 > > > The catch is that we appear to be using tag objects that are orphaned. > To see an example of that, just run git show-ref on a clone tree for > 0.6.6-release. The hash is shown, but then git log does not contain that > hash, even when tracking the master.
hmm, i don't even get that tag: % git show-ref | grep 0.6.6 cb7704e6498d2899fe4cd17c8f28d02522f80d77 \ refs/remotes/opensimulator.org/0.6.6-post-fixes is all i get, but that hash is known to git: % git show cb7704e6498d2899fe4cd17c8f28d02522f80d77 commit cb7704e6498d2899fe4cd17c8f28d02522f80d77 Author: Melanie <[email protected]> Date: Sat Aug 8 01:42:50 2009 +0100 Change the default for internal IP address back to 0.0.0.0 diff --git a/OpenSim/Framework/RegionInfo.cs b/OpenSim/Framework/RegionInfo.cs index 7ac1e62..4640406 100644 --- a/OpenSim/Framework/RegionInfo.cs +++ b/OpenSim/Framework/RegionInfo.cs @@ -493,7 +493,7 @@ namespace OpenSim.Framework } else { - address = IPAddress.Parse(MainConsole.Instance.CmdPrompt("Internal IP address", "127.0.0.1")); + address = IPAddress.Parse(MainConsole.Instance.CmdPrompt("Internal IP address", "0.0.0.0")); config.Set("InternalAddress", address.ToString()); } i guess i'm missing something here... -- dr dirk husemann ---- virtual worlds research ---- ibm zurich research lab SL: dr scofield ---- [email protected] ---- http://xyzzyxyzzy.net/ RL: [email protected] - +41 44 724 8573 - http://www.zurich.ibm.com/~hud/ _______________________________________________ Opensim-dev mailing list [email protected] https://lists.berlios.de/mailman/listinfo/opensim-dev
