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
| DEBUG: dispatcher start Plugging <xmpp.dispatcher.Dispatcher instance at 0x22e5ef0> into <xmpp.client.Client instance at 0x22e5c20> | |
| DEBUG: dispatcher info Registering namespace "unknown" | |
| DEBUG: dispatcher info Registering protocol "unknown" as <class 'xmpp.protocol.Protocol'>(unknown) | |
| DEBUG: dispatcher info Registering protocol "default" as <class 'xmpp.protocol.Protocol'>(unknown) | |
| DEBUG: dispatcher info Registering namespace "http://etherx.jabber.org/streams" | |
| DEBUG: dispatcher info Registering protocol "unknown" as <class 'xmpp.protocol.Protocol'>(http://etherx.jabber.org/streams) | |
| DEBUG: dispatcher info Registering protocol "default" as <class 'xmpp.protocol.Protocol'>(http://etherx.jabber.org/streams) | |
| DEBUG: dispatcher info Registering namespace "jabber:client" | |
| DEBUG: dispatcher info Registering protocol "unknown" as <class 'xmpp.protocol.Protocol'>(jabber:client) | |
| DEBUG: dispatcher info Registering protocol "default" as <class 'xmpp.protocol.Protocol'>(jabber:client) |
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
| =INFO REPORT==== 2010-11-19 12:11:21 === | |
| I(<0.4243.0>:ejabberd_listener:285) : (#Port<0.20289>) Accepted connection {{10,68,141,1},34131} -> {{10,68,141,1},5222} | |
| =INFO REPORT==== 2010-11-19 12:11:21 === | |
| D(<0.4288.0>:ejabberd_receiver:384) : Received XML on stream = <<"<?xml version='1.0'?><stream:stream xmlns=\"jabber:client\" to=\"ramucho\" version=\"1.0\" xmlns:stream=\"http://etherx.jabber.org/streams\" >">> | |
| =INFO REPORT==== 2010-11-19 12:11:21 === | |
| D(<0.4289.0>:ejabberd_c2s:1503) : Send XML on stream = <?xml version='1.0'?><stream:stream xmlns='jabber:client' xmlns:stream='http://etherx.jabber.org/streams' id='2867721810' from='localhost' xml:lang='en'> | |
| =INFO REPORT==== 2010-11-19 12:11:21 === |
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
| class TNArchipelPermissionCenter: | |
| class TNArchipelUser (SQLObject): | |
| class sqlmeta: | |
| table = "TNArchipelUser" | |
| _connection = None | |
| name = StringCol(alternateID=True) | |
| roles = RelatedJoin('TNArchipelRole') |
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
| mkdir -p '/opt/buildmaven/TEMP_DIR' | |
| cd '/opt/buildmaven/TEMP_DIR' | |
| export JAVA_HOME='/opt/java/' | |
| svn checkout --username 'admin' --password '****' --no-auth-cache --non-interactive 'http://subversion.dev.sirhen-dev.in.orion.education.fr/simpel//trunk' | |
| cd './trunk' | |
| /opt/maven/bin/mvn --batch-mode release:prepare -Dusername='admin' -Dpassword=**** -Dtag=1.0.0.1 -DreleaseVersion=1.0.0.1 -DdevelopmentVersion=1.0.0.2-SNAPSHOT -Dmaven.scm.svn.config_directory=/tmp -P \!int,liv | |
| /opt/maven/bin/mvn --batch-mode release:perform -Dusername='admin' -Dpassword=**** -Dtag=1.0.0.1 -DreleaseVersion=1.0.0.1 -DdevelopmentVersion=1.0.0.2-SNAPSHOT -Dgoals=deploy -P \!int,liv | |
| cd .. | |
| rm -rf /opt/buildmaven/TEMP_DIR/* | |
| svn checkout [...] http://subversion.dev.sirhen-dev.in.orion.education.fr/simpel/tags/1.0.0.1 |
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
| [badge setClipsToBounds:NO]; | |
| [badge setFrameOrigin:CPPointMake(-3.0, -3.0)]; | |
| [aControl addSubview:badge]; |
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
| @implementation TNModalWindow: CPWindow | |
| #if PLATFORM(DOM) | |
| - (id)initWithContentRect:(CPRect)aFrame styleMask:(id)aMask | |
| { | |
| if (self = [super initWithContentRect:aFrame styleMask:CPBorderlessWindowMask]) | |
| { | |
| _windowView._DOMElement.style.background = "-webkit-gradient(linear, left top, left bottom, from(#F4F4F4), to(#D2D2D2))"; | |
| _windowView._DOMElement.style.background = "-moz-linear-gradient(-90deg, #F4F4F4, #D2D2D2)"; | |
| _windowView._DOMElement.style.border = "1px solid white"; |
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
| - (void)_addItemToModulesTabView:(TNModule)aModule | |
| { | |
| var frame = [_mainModuleView bounds], | |
| newViewItem = [[TNModuleTabViewItem alloc] initWithIdentifier:[aModule name]]; | |
| // newScrollView = [[CPScrollView alloc] initWithFrame:frame]; | |
| // [newScrollView setAutoresizingMask:CPViewHeightSizable | CPViewWidthSizable]; | |
| // [newScrollView setAutohidesScrollers:YES]; | |
| // [newScrollView setBackgroundColor:[CPColor whiteColor]]; | |
| // |
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
| - (void)_addItemToModulesTabView:(TNModule)aModule | |
| { | |
| var frame = [_mainModuleView bounds], | |
| newViewItem = [[TNModuleTabViewItem alloc] initWithIdentifier:[aModule name]]; | |
| // newScrollView = [[CPScrollView alloc] initWithFrame:frame]; | |
| // [newScrollView setAutoresizingMask:CPViewHeightSizable | CPViewWidthSizable]; | |
| // [newScrollView setAutohidesScrollers:YES]; | |
| // [newScrollView setBackgroundColor:[CPColor whiteColor]]; | |
| // |
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
| mouseEventSelector = @selector(mouseEvent:), | |
| mouseEventImplementation = class_getMethodImplementation(theClass, mouseEventSelector), | |
| mouseEventCallback = function (anEvent) { mouseEventImplementation(self, nil, anEvent); }, |
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
| %%% | |
| %%% ejabberd configuration file | |
| %%% | |
| %%% The parameters used in this configuration file are explained in more detail | |
| %%% in the ejabberd Installation and Operation Guide. | |
| %%% Please consult the Guide in case of doubts, it is included in | |
| %%% your copy of ejabberd, and is also available online at | |
| %%% http://www.process-one.net/en/ejabberd/docs/ |