Displaying 3 results from an estimated 3 matches for "route_id".
Did you mean:
role_id
2004 Jan 12
2
LCR / Trollphone Rate Engine
...igure out what some of these fields are for?
mysql> describe egress;
+-------------+------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------------+------------------+------+-----+---------+----------------+
| route_id | int(10) unsigned | | PRI | NULL | auto_increment |
| provider_id | int(10) unsigned | | MUL | 0 | |
| technology | varchar(16) | | | | | (I assume this should be SIP, IAX, etc)
| peer | varchar(32) | |...
2007 Jul 13
0
layers of polylines, events building up on map
...has a map displaying the start point of existing routes.
if they click "new route:
creates a route_object
clears all polylines in case there are any
clears all the markers and adds an onclick event.
for each click I:
clear all polylines with RJS
add point to the waypoint table (with route_id)
select all waypoints for the route and build a polyline
display the polyline
that all works fine....
but if I hit the create route button again
as I click the polylines from the last route flash and then go away
also it seems that my onclick events are multiplying as well (2 clicks
are...
2006 Sep 12
2
Generate JS from RoR - strange delay with send_data
...9 seconds server, -> client FIN, ACK
..... normal TCP teardown follows
29 seconds ! Am I doing something wrong? My action looks like (I''ve
removed real JS since it is not problem with generation of JS only with
sending):
def show_route
Point.find(:all, :conditions => [ "route_id = ?", pid]).each {|x|
output_data<< GENERATE_JS_CODE_FROM_POINTS
}
send_data(output_data, :content => "text/javascript")
end
I''m using Rails 1.1.6.
Or maybe there is some other way to generate ''custom'' JS not in .rhtml?
Best regar...