This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grammar Brail; | |
options {output=template; rewrite=true;} | |
doc : mixedContent; | |
mixedContent | |
: .* brailExpression mixedContent? | |
; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected void Application_Start(object sender, EventArgs e) { | |
RouteTable.Routes.Define(routes => | |
{ | |
routes.Connect("{controller}/{action}" ); | |
routes.Namespace("subarea", subarea => | |
{ | |
subarea.Connect("{controller}/{action}" ); | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pa call 1234 | |
2009-07-24 23:21:39.301627 [NOTICE] switch_channel.c:602 New Channel portaudio/1234 [4879e9ec-a961-49b0-ba7d-70ded39ad166] | |
2009-07-24 23:21:41.587873 [NOTICE] mod_portaudio.c:1773 Channel [portaudio/1234] has been answered | |
API CALL [pa(call 1234)] output: | |
SUCCESS:3:4879e9ec-a961-49b0-ba7d-70ded39ad166 | |
2009-07-24 23:21:41.587873 [INFO] mod_dialplan_xml.c:310 Processing FreeSWITCH->1234 in context default | |
2009-07-24 23:21:41.589130 [NOTICE] switch_ivr.c:1349 Transfer portaudio/1234 to enum[1234@default] | |
[email protected]> 2009-07-24 23:21:42.43717 [INFO] switch_core_state_machine.c:136 No Route, Aborting | |
2009-07-24 23:21:42.43717 [NOTICE] switch_core_state_machine.c:137 Hangup portaudio/1234 [CS_ROUTING] [NO_ROUTE_DESTINATION] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pa devlist | |
API CALL [pa(devlist)] output: | |
0;Built-in Microphone;2;0;i | |
1;Built-in Input;2;0; | |
2;Built-in Output;0;2;r,o |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1163 PortAudio version number = 1899 | |
PortAudio version text = 'PortAudio V19-devel (built Jul 24 2009)' | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1187 Number of devices = 3 | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1194 -------------------------------------------------------------------------------- | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1196 Device #0 | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1201 **Default Input | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1223 ** | | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1226 Name: Built-in Microphone | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1227 Host: Core Audio | | |
2009-07-24 23:14:00.669511 [INFO] mod_portaudio.c:1228 inputs: 2 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public partial class Application { | |
public Func<Url> Blog_Url = get('/blogs/index', x => x.Class('BlogController').Action('ShowBlogs')) | |
} | |
public partial class Site { | |
public class Blogs { | |
public static Func<int,URL> Show = get(() => { |
NewerOlder