OSDN Git Service

Update copyright year
[radegast/radegast.git] / Radegast / Core / Contexts / AvatarProfileAction.cs
index 5203295..5d0d9da 100644 (file)
@@ -1,60 +1,60 @@
-// \r
-// Radegast Metaverse Client\r
-// Copyright (c) 2009, Radegast Development Team\r
-// All rights reserved.\r
-// \r
-// Redistribution and use in source and binary forms, with or without\r
-// modification, are permitted provided that the following conditions are met:\r
-// \r
-//     * Redistributions of source code must retain the above copyright notice,\r
-//       this list of conditions and the following disclaimer.\r
-//     * Redistributions in binary form must reproduce the above copyright\r
-//       notice, this list of conditions and the following disclaimer in the\r
-//       documentation and/or other materials provided with the distribution.\r
-//     * Neither the name of the application "Radegast", nor the names of its\r
-//       contributors may be used to endorse or promote products derived from\r
-//       this software without specific prior written permission.\r
-// \r
-// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"\r
-// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE\r
-// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE\r
-// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE\r
-// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL\r
-// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR\r
-// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER\r
-// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,\r
-// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\r
-// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\r
-//\r
-// $Id: \r
-//\r
-using System;\r
-using OpenMetaverse;\r
-\r
-namespace Radegast\r
-{\r
-    public class AvatarProfileAction : ContextAction\r
-    {\r
-        public AvatarProfileAction(RadegastInstance inst)\r
-            : base(inst)\r
-        {\r
-            Label = "Profile";\r
-            ContextType = typeof(Avatar);\r
-        }\r
-        public override bool IsEnabled(object target)\r
-        {\r
-            return true;\r
-        }\r
-        public override void OnInvoke(object sender, EventArgs e, object target)\r
-        {\r
-            UUID id = ToUUID(target);\r
-            if (id == UUID.Zero) id = ToUUID(sender);\r
-            if (id == UUID.Zero)\r
-            {\r
-                DebugLog("cannot find avatar" + target);\r
-                return;\r
-            }\r
-            (new frmProfile(instance, instance.getAvatarName(id), id)).Show();\r
-        }\r
-    }\r
+// 
+// Radegast Metaverse Client
+// Copyright (c) 2009-2014, Radegast Development Team
+// All rights reserved.
+// 
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are met:
+// 
+//     * Redistributions of source code must retain the above copyright notice,
+//       this list of conditions and the following disclaimer.
+//     * Redistributions in binary form must reproduce the above copyright
+//       notice, this list of conditions and the following disclaimer in the
+//       documentation and/or other materials provided with the distribution.
+//     * Neither the name of the application "Radegast", nor the names of its
+//       contributors may be used to endorse or promote products derived from
+//       this software without specific prior written permission.
+// 
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+// DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
+// FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+// SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+//
+// $Id: 
+//
+using System;
+using OpenMetaverse;
+
+namespace Radegast
+{
+    public class AvatarProfileAction : ContextAction
+    {
+        public AvatarProfileAction(RadegastInstance inst)
+            : base(inst)
+        {
+            Label = "Profile";
+            ContextType = typeof(Avatar);
+        }
+        public override bool IsEnabled(object target)
+        {
+            return true;
+        }
+        public override void OnInvoke(object sender, EventArgs e, object target)
+        {
+            UUID id = ToUUID(target);
+            if (id == UUID.Zero) id = ToUUID(sender);
+            if (id == UUID.Zero)
+            {
+                DebugLog("cannot find avatar" + target);
+                return;
+            }
+            instance.MainForm.ShowAgentProfile(instance.Names.Get(id), id);
+        }
+    }
 }
\ No newline at end of file