aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Communications/Capabilities/LLSDItemUpdate.cs
diff options
context:
space:
mode:
authorMW2007-08-14 19:19:09 +0000
committerMW2007-08-14 19:19:09 +0000
commita979808493b20362ab3fe06ac68e5370622ceafa (patch)
treeb3e2b6bd5b6bd30e7331b15630fd50b8765e0d5f /OpenSim/Framework/Communications/Capabilities/LLSDItemUpdate.cs
parentkrinkec's updates to ll* interface and functions (diff)
downloadopensim-SC_OLD-a979808493b20362ab3fe06ac68e5370622ceafa.zip
opensim-SC_OLD-a979808493b20362ab3fe06ac68e5370622ceafa.tar.gz
opensim-SC_OLD-a979808493b20362ab3fe06ac68e5370622ceafa.tar.bz2
opensim-SC_OLD-a979808493b20362ab3fe06ac68e5370622ceafa.tar.xz
preliminary support for editing notecards and scripts.
Although there seems to sometimes be a problem of when you login again, old notecards and scripts will have their permissions messed up and you won't be able to even view their text. This seems to be related to the client's cache, and if you clear your client's cache, on the next login they should be fine again. [I have a couple of ideas about what might be causing this so hopefully will have it fixed soon.]
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Communications/Capabilities/LLSDItemUpdate.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Framework/Communications/Capabilities/LLSDItemUpdate.cs b/OpenSim/Framework/Communications/Capabilities/LLSDItemUpdate.cs
new file mode 100644
index 0000000..d47bb07
--- /dev/null
+++ b/OpenSim/Framework/Communications/Capabilities/LLSDItemUpdate.cs
@@ -0,0 +1,17 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using libsecondlife;
5
6namespace OpenSim.Region.Capabilities
7{
8 [LLSDMap]
9 public class LLSDItemUpdate
10 {
11 public LLUUID item_id;
12
13 public LLSDItemUpdate()
14 {
15 }
16 }
17}