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
| (function() { | |
| var template = require('underscore/template'), | |
| fs = require('fs'), | |
| helper = require('jsdoc/util/templateHelper'); | |
| template.settings.evaluate = /<\?js([\s\S]+?)\?>/g; | |
| template.settings.interpolate = /<\?js=([\s\S]+?)\?>/g; | |
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
| 13:48:23,549 INFO main ropertiesFactoryBean: 177 - Loading properties file from class path resource [elasticsearch-server.properties] | |
| 13:48:23,561 INFO main .ElasticSearchServer: 50 - Starting the Elastic Search server node | |
| 13:48:23,705 INFO main g.elasticsearch.node: 78 - [Harold H. Harold] {elasticsearch/0.16.2}[17789]: initializing ... | |
| 13:48:23,716 INFO main lasticsearch.plugins: 78 - [Harold H. Harold] loaded [cloud-aws] | |
| 13:48:28,596 INFO main g.elasticsearch.node: 78 - [Harold H. Harold] {elasticsearch/0.16.2}[17789]: initialized | |
| 13:48:28,596 INFO main .ElasticSearchServer: 67 - Starting the Elastic Search server node with these settings: | |
| 13:48:28,597 INFO main .ElasticSearchServer: 72 - cloud.aws.access_key : <HIDDEN> | |
| 13:48:28,597 INFO main .ElasticSearchServer: 72 - cloud.aws.secret_key : <HIDDEN> | |
| 13:48:28,598 INFO main .ElasticSearchServer: 72 - cluster.name : elasticsearch-prod | |
| 13:48:28,598 INFO main .ElasticSearchServer: 72 - |
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
| curl -PUT 'http://localhost:9320/my_twitter1/' -d '{ | |
| { | |
| "settings": { | |
| "number_of_shards": 1, | |
| "number_of_replicas": 0 | |
| }, | |
| "mappings": { | |
| "tweet" : { | |
| "properties" : { | |
| "user" : {"type" : "string", "index" : "not_analyzed"}, |
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
| jcook$ curl --request POST \ | |
| --header "Content-Type: application/atom+xml" \ | |
| --header "Authorization: GoogleLogin auth=xxxx" \ | |
| --header "Content-Length: 380" \ | |
| --header "X-Upload-Content-Length: 0" \ | |
| --header "GData-Version: 3.0" \ | |
| --data-binary "@doc.xml" \ | |
| -v \ | |
| "https://docs.google.com/feeds/upload/create-session/default/private/full" |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <entry xmlns="http://www.w3.org/2005/Atom" xmlns:docs="http://schemas.google.com/docs/2007"> | |
| <!-- Replace the following line appropriately to create another type of resource. --> | |
| <category scheme="http://schemas.google.com/g/2005#kind" | |
| term="http://schemas.google.com/docs/2007#document"/> | |
| <title>Legal Contract</title> | |
| </entry> |
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
| // Set up application | |
| var {Application} = require( 'stick' ); | |
| var log = require('ringo/logging').getLogger(module.id); | |
| var {json} = require( 'ringo/jsgi/response' ); | |
| var {get} = require('ringo/httpclient'); | |
| var app = exports.app = Application(); | |
| app.configure( 'route' ); |
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
| 18:27:34,391 DEBUG 0-exec-7 [ utility.email-sender]: ? - Initializing SMTP service with config: { | |
| "host": "localhost", | |
| "port": "25", | |
| "defaultEncoding": "UTF-8", | |
| "username": "", | |
| "password": "", | |
| "props": { | |
| "mail.debug": "true", | |
| "mail.smtp.auth": "false", | |
| "mail.smtp.starttls.enable": "false" |
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
| <div> | |
| <ul> | |
| <li>I've installed stock Wordpress 3.3.1 and uploaded the WPML 2.4.3.</li> | |
| <li>The blog has the "Hello World!" post and the "Sample Page" page. </li> | |
| <li>I activate the WPML plugin and accept the defaults.</li> | |
| <li>I activate XML-RPC.</li> | |
| <li>Using XML-RPC, I perform a getPost() to obtain the first post details.<br /> | |
| { "dateCreated": "2012-04-03T19:52:44.000Z", | |
| <div> "userid": "1",</div> | |
| <div> "postid": 1,</div> |
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
| 1. I've installed stock Wordpress 3.3.1 and uploaded the | |
| WPML 2.4.3. The blog has the "Hello World!" post and | |
| the "Sample Page" page. | |
| 2. I activate the WPML plugin and accept the defaults. | |
| 3. I activate XML-RPC. | |
| 4. Using XML-RPC, I perform a getPost() to obtain the | |
| first post details. | |
| { | |
| "dateCreated": "2012-04-03T19:52:44.000Z", | |
| "userid": "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
| "main" prio=5 tid=7fd814000800 nid=0x10d832000 waiting on condition [10d82e000] | |
| java.lang.Thread.State: WAITING (parking) | |
| at sun.misc.Unsafe.park(Native Method) | |
| - parking to wait for <7c7248950> (a java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject) | |
| at java.util.concurrent.locks.LockSupport.park(LockSupport.java:156) | |
| at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1987) | |
| at com.hazelcast.util.ResponseQueueFactory$LockBasedResponseQueue.take(ResponseQueueFactory.java:44) | |
| at com.hazelcast.impl.FactoryImpl.createInstanceClusterWide(FactoryImpl.java:816) | |
| at com.hazelcast.impl.FactoryImpl.getOrCreateProxy(FactoryImpl.java:555) | |
| at com.hazelcast.impl.FactoryImpl.getOrCreateProxyByName(FactoryImpl.java:544) |