diff options
author | Justin Clark-Casey (justincc) | 2012-07-24 23:51:04 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2012-07-24 23:51:04 +0100 |
commit | 3cf8edfd681b3372fb5ecde96d88d4f20fcdcefa (patch) | |
tree | 2a96c7f030de21fa711aae372fd67410ef08aa6f | |
parent | Add information about each column to "show queues" region console command help. (diff) | |
download | opensim-SC_OLD-3cf8edfd681b3372fb5ecde96d88d4f20fcdcefa.zip opensim-SC_OLD-3cf8edfd681b3372fb5ecde96d88d4f20fcdcefa.tar.gz opensim-SC_OLD-3cf8edfd681b3372fb5ecde96d88d4f20fcdcefa.tar.bz2 opensim-SC_OLD-3cf8edfd681b3372fb5ecde96d88d4f20fcdcefa.tar.xz |
Rename "image queues clear" console command to "clear image queues"
There is less justification for this word arrangement (verb after noun) now that command help is categorized.
Also removes "image queues show" in favour of existing alias "show image queues".
-rw-r--r-- | OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs b/OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs index 7c14c02..ca9bd4a 100644 --- a/OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs +++ b/OpenSim/Region/OptionalModules/Agent/UDP/Linden/LindenUDPInfoModule.cs | |||
@@ -82,18 +82,6 @@ namespace OpenSim.Region.CoreModules.UDP.Linden | |||
82 | m_scenes[scene.RegionInfo.RegionID] = scene; | 82 | m_scenes[scene.RegionInfo.RegionID] = scene; |
83 | 83 | ||
84 | scene.AddCommand( | 84 | scene.AddCommand( |
85 | "Comms", this, "image queues clear", | ||
86 | "image queues clear <first-name> <last-name>", | ||
87 | "Clear the image queues (textures downloaded via UDP) for a particular client.", | ||
88 | (mod, cmd) => MainConsole.Instance.Output(HandleImageQueuesClear(cmd))); | ||
89 | |||
90 | scene.AddCommand( | ||
91 | "Comms", this, "image queues show", | ||
92 | "image queues show <first-name> <last-name>", | ||
93 | "Show the image queues (textures downloaded via UDP) for a particular client.", | ||
94 | (mod, cmd) => MainConsole.Instance.Output(GetImageQueuesReport(cmd))); | ||
95 | |||
96 | scene.AddCommand( | ||
97 | "Comms", this, "show pqueues", | 85 | "Comms", this, "show pqueues", |
98 | "show pqueues [full]", | 86 | "show pqueues [full]", |
99 | "Show priority queue data for each client", | 87 | "Show priority queue data for each client", |
@@ -121,6 +109,12 @@ namespace OpenSim.Region.CoreModules.UDP.Linden | |||
121 | "show image queues <first-name> <last-name>", | 109 | "show image queues <first-name> <last-name>", |
122 | "Show the image queues (textures downloaded via UDP) for a particular client.", | 110 | "Show the image queues (textures downloaded via UDP) for a particular client.", |
123 | (mod, cmd) => MainConsole.Instance.Output(GetImageQueuesReport(cmd))); | 111 | (mod, cmd) => MainConsole.Instance.Output(GetImageQueuesReport(cmd))); |
112 | |||
113 | scene.AddCommand( | ||
114 | "Comms", this, "clear image queues", | ||
115 | "clear image queues <first-name> <last-name>", | ||
116 | "Clear the image queues (textures downloaded via UDP) for a particular client.", | ||
117 | (mod, cmd) => MainConsole.Instance.Output(HandleImageQueuesClear(cmd))); | ||
124 | 118 | ||
125 | scene.AddCommand( | 119 | scene.AddCommand( |
126 | "Comms", this, "show throttles", | 120 | "Comms", this, "show throttles", |