aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/share/perl/test/OpenSimTest/AssetTester.pm
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-04-08 11:19:34 +0000
committerJustin Clarke Casey2008-04-08 11:19:34 +0000
commit0c601b73125d1bc120e248149bf4d83ecc27f1c2 (patch)
tree6c12f957e3cedda58a725b25e43b9595124bfb54 /share/perl/test/OpenSimTest/AssetTester.pm
parent* Added stretchable ellipsoid support with configurable LOD. It's actually a... (diff)
downloadopensim-SC_OLD-0c601b73125d1bc120e248149bf4d83ecc27f1c2.zip
opensim-SC_OLD-0c601b73125d1bc120e248149bf4d83ecc27f1c2.tar.gz
opensim-SC_OLD-0c601b73125d1bc120e248149bf4d83ecc27f1c2.tar.bz2
opensim-SC_OLD-0c601b73125d1bc120e248149bf4d83ecc27f1c2.tar.xz
* Removing lulurun's perl UGAI from core svn, pending a link to an external repository, as per mailing list discussion.
Diffstat (limited to 'share/perl/test/OpenSimTest/AssetTester.pm')
-rw-r--r--share/perl/test/OpenSimTest/AssetTester.pm17
1 files changed, 0 insertions, 17 deletions
diff --git a/share/perl/test/OpenSimTest/AssetTester.pm b/share/perl/test/OpenSimTest/AssetTester.pm
deleted file mode 100644
index ba05205..0000000
--- a/share/perl/test/OpenSimTest/AssetTester.pm
+++ /dev/null
@@ -1,17 +0,0 @@
1package AssetTester;
2
3use strict;
4use XML::Serializer;
5use OpenSim::Utility;
6
7sub init {
8 &OpenSimTest::Config::registerHandler("get_asset", \&_get_asset);
9}
10
11sub _get_asset {
12 my $url = shift || $OpenSimTest::Config::ASSET_SERVER_URL;
13 my $asset_id = shift;
14 my $res = &OpenSim::Utility::HttpGetRequest($url . "/assets/" . $asset_id) . "\n";
15}
16
171;