-
Notifications
You must be signed in to change notification settings - Fork 27
/
Location.as
211 lines (184 loc) · 5.3 KB
/
Location.as
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/* ,----,
* ,/ .`|
* ,---, .--.--. ,` .' :,-.----. ,---, ,---,
* ' .' \ / / '. ; ; /\ / \ ,`--.' | .' .' `\
* / ; '. | : /`. /.'___,/ ,' ; : \ | : :,---.' \
* : : \ ; | |--` | : | | | .\ : : | '| | .`\ |
* : | /\ \| : ;_ ; |.'; ; . : |: | | : |: : | ' |
* | : ' ;. :\ \ `.`----' | | | | \ : ' ' ;| ' ' ; :
* | | ;/ \ \`----. \ ' : ; | : . / | | |' | ; . |
* ' : | \ \ ,'__ \ \ | | | ' ; | | \ ' : ;| | : | '
* | | ' '--' / /`--' / ' : | | | ;\ \| | '' : | / ;
* | : : '--'. / ; |.' : ' | \.'' : || | '` ,/
* | | ,' `--'---' '---' : : :-' ; |.' ; : .'
* `--'' | |.' '---' | ,.' Tyler
* ActionScript tested rapid iterative dev `---' Copyright2010'---' Larson
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
* http://www.gnu.org/licenses
*/
package framework.view.htmlwrapper
{
import flash.events.Event;
import framework.debug.Log;
public class Location
{
public static const LOCATION_CHANGE:String = "locationChange";
private var _hash:String;
private var _host:String;
private var _hostname:String;
private var _href:String;
private var _pathname:String;
private var _port:String;
private var _protocol:String;
private var _search:String;
private var _document:Document
public function Location( document:Document )
{
super();
_document = document;
_document.window.addEventListener( Location.LOCATION_CHANGE, refresh );
}
public function assign( url:String ) : void
{
}
public function reload() : void
{
refresh();
}
public function refresh( event:Event=null ) : void
{
/*
AssetCache.instance
_app.loader.add( href );
_app.loader.addEventListener( BulkLoader.COMPLETE, onCompleteHandler );
_app.loader.start();
*/
// Log.info("refresh location")
}
public function replace( url:String ) : void
{
/*
AssetCache.instance
_app.loader.add( url );
_app.loader.addEventListener( BulkLoader.COMPLETE, onCompleteHandler );
_app.loader.start();
*/
// Log.info("replace location")
}
public function toString() : String
{
return href
}
public function get hash():String
{
return _hash;
}
public function set hash(value:String):void
{
if (value !== _hash)
{
_hash = value;
_document.window.dispatchEvent( new Event( Location.LOCATION_CHANGE ) )
}
}
public function get host():String
{
return _host;
}
public function set host(value:String):void
{
if (value !== _host)
{
_host = value;
_document.window.dispatchEvent( new Event( Location.LOCATION_CHANGE ) )
}
}
public function get hostname():String
{
return _hostname;
}
public function set hostname(value:String):void
{
if (value !== _hostname)
{
_hostname = value;
_document.window.dispatchEvent( new Event( Location.LOCATION_CHANGE ) )
}
}
public function get href():String
{
return _href;
}
public function set href(value:String):void
{
if (value !== _href)
{
_href = value;
_document.window.dispatchEvent( new Event( Location.LOCATION_CHANGE ) )
}
}
public function get pathname():String
{
return _pathname;
}
public function set pathname(value:String):void
{
if (value !== _pathname)
{
_pathname = value;
_document.window.dispatchEvent( new Event( Location.LOCATION_CHANGE ) )
}
}
public function get port():String
{
return _port;
}
public function set port(value:String):void
{
if (value !== _port)
{
_port = value;
_document.window.dispatchEvent( new Event( Location.LOCATION_CHANGE ) )
}
}
public function get protocol():String
{
return _protocol;
}
public function set protocol(value:String):void
{
if (value !== _protocol)
{
_protocol = value;
_document.window.dispatchEvent( new Event( Location.LOCATION_CHANGE ) )
}
}
public function get search():String
{
return _search;
}
public function set search(value:String):void
{
if (value !== _search)
{
_search = value;
_document.window.dispatchEvent( new Event( Location.LOCATION_CHANGE ) )
}
}
private function onCompleteHandler( event:Event ):void
{
//AssetCache.instance.removeEventListener( Event.COMPLETE, onCompleteHandler );
//_document.innerHTML = _app.loader.getText( href );
// Log.info("onComplete")
}
}
}