├── .gitignore ├── AQSocket.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── AQSocket ├── AQSocket-Prefix.pch ├── AQSocket.h ├── AQSocket.m ├── AQSocketIOChannel.h ├── AQSocketIOChannel.m ├── AQSocketReader+PrivateInternal.h ├── AQSocketReader.h └── AQSocketReader.m ├── AppledocSettings.plist ├── LICENSE ├── README.markdown └── Templates ├── docset └── Contents │ ├── Resources │ ├── Documents │ │ └── documents-template │ ├── nodes-template.xml │ └── tokens-template.xml │ └── info-template.plist └── html ├── css └── styles.css ├── document-template.html ├── hierarchy-template.html ├── img ├── button_bar_background.png ├── disclosure.png ├── disclosure_open.png └── title_background.png ├── index-template.html └── object-template.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/.gitignore -------------------------------------------------------------------------------- /AQSocket.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/AQSocket.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AQSocket.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/AQSocket.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AQSocket/AQSocket-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/AQSocket/AQSocket-Prefix.pch -------------------------------------------------------------------------------- /AQSocket/AQSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/AQSocket/AQSocket.h -------------------------------------------------------------------------------- /AQSocket/AQSocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/AQSocket/AQSocket.m -------------------------------------------------------------------------------- /AQSocket/AQSocketIOChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/AQSocket/AQSocketIOChannel.h -------------------------------------------------------------------------------- /AQSocket/AQSocketIOChannel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/AQSocket/AQSocketIOChannel.m -------------------------------------------------------------------------------- /AQSocket/AQSocketReader+PrivateInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/AQSocket/AQSocketReader+PrivateInternal.h -------------------------------------------------------------------------------- /AQSocket/AQSocketReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/AQSocket/AQSocketReader.h -------------------------------------------------------------------------------- /AQSocket/AQSocketReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/AQSocket/AQSocketReader.m -------------------------------------------------------------------------------- /AppledocSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/AppledocSettings.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/README.markdown -------------------------------------------------------------------------------- /Templates/docset/Contents/Resources/Documents/documents-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/Templates/docset/Contents/Resources/Documents/documents-template -------------------------------------------------------------------------------- /Templates/docset/Contents/Resources/nodes-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/Templates/docset/Contents/Resources/nodes-template.xml -------------------------------------------------------------------------------- /Templates/docset/Contents/Resources/tokens-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/Templates/docset/Contents/Resources/tokens-template.xml -------------------------------------------------------------------------------- /Templates/docset/Contents/info-template.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/Templates/docset/Contents/info-template.plist -------------------------------------------------------------------------------- /Templates/html/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/Templates/html/css/styles.css -------------------------------------------------------------------------------- /Templates/html/document-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/Templates/html/document-template.html -------------------------------------------------------------------------------- /Templates/html/hierarchy-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/Templates/html/hierarchy-template.html -------------------------------------------------------------------------------- /Templates/html/img/button_bar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/Templates/html/img/button_bar_background.png -------------------------------------------------------------------------------- /Templates/html/img/disclosure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/Templates/html/img/disclosure.png -------------------------------------------------------------------------------- /Templates/html/img/disclosure_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/Templates/html/img/disclosure_open.png -------------------------------------------------------------------------------- /Templates/html/img/title_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/Templates/html/img/title_background.png -------------------------------------------------------------------------------- /Templates/html/index-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/Templates/html/index-template.html -------------------------------------------------------------------------------- /Templates/html/object-template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlanQuatermain/AQSocket/HEAD/Templates/html/object-template.html --------------------------------------------------------------------------------