├── chatRoom ├── .gitignore └── package.json ├── myStar ├── node_modules │ ├── ejs │ │ ├── .gitmodules │ │ ├── test │ │ │ └── fixtures │ │ │ │ ├── backslash.ejs │ │ │ │ ├── backslash.html │ │ │ │ ├── para.ejs │ │ │ │ ├── user.ejs │ │ │ │ ├── pet.ejs │ │ │ │ ├── double-quote.html │ │ │ │ ├── fail.ejs │ │ │ │ ├── single-quote.html │ │ │ │ ├── single-quote.ejs │ │ │ │ ├── style.css │ │ │ │ ├── includes │ │ │ │ ├── menu-item.ejs │ │ │ │ └── menu │ │ │ │ │ └── item.ejs │ │ │ │ ├── double-quote.ejs │ │ │ │ ├── messed.html │ │ │ │ ├── include.css.html │ │ │ │ ├── include.css.ejs │ │ │ │ ├── messed.ejs │ │ │ │ ├── error.ejs │ │ │ │ ├── no.newlines.html │ │ │ │ ├── include.ejs │ │ │ │ ├── menu.html │ │ │ │ ├── include.html │ │ │ │ ├── newlines.ejs │ │ │ │ ├── no.newlines.ejs │ │ │ │ ├── newlines.html │ │ │ │ ├── comments.html │ │ │ │ ├── error.out │ │ │ │ ├── comments.ejs │ │ │ │ └── menu.ejs │ │ ├── index.js │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── examples │ │ │ ├── list.ejs │ │ │ ├── functions.ejs │ │ │ └── list.js │ │ ├── benchmark.js │ │ └── Makefile │ ├── iconv │ │ ├── support │ │ │ └── config.h │ │ ├── build │ │ │ ├── Release │ │ │ │ ├── linker.lock │ │ │ │ ├── iconv.node │ │ │ │ ├── obj.target │ │ │ │ │ ├── iconv.node │ │ │ │ │ └── iconv │ │ │ │ │ │ ├── src │ │ │ │ │ │ └── binding.o │ │ │ │ │ │ └── deps │ │ │ │ │ │ └── libiconv │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── iconv.o │ │ │ │ │ │ └── libcharset │ │ │ │ │ │ └── lib │ │ │ │ │ │ └── localcharset.o │ │ │ │ └── .deps │ │ │ │ │ └── Release │ │ │ │ │ ├── iconv.node.d │ │ │ │ │ └── obj.target │ │ │ │ │ └── iconv.node.d │ │ │ └── binding.Makefile │ │ ├── .npmignore │ │ └── deps │ │ │ └── libiconv │ │ │ ├── po │ │ │ ├── stamp-po │ │ │ ├── af.po │ │ │ ├── da.po │ │ │ ├── de.po │ │ │ ├── es.po │ │ │ ├── et.po │ │ │ ├── ga.po │ │ │ ├── gl.po │ │ │ ├── hu.po │ │ │ ├── pl.po │ │ │ ├── ro.po │ │ │ ├── ru.po │ │ │ ├── af.gmo │ │ │ ├── bg.gmo │ │ │ ├── ca.gmo │ │ │ ├── cs.gmo │ │ │ ├── da.gmo │ │ │ ├── de.gmo │ │ │ ├── el.gmo │ │ │ ├── eo.gmo │ │ │ ├── es.gmo │ │ │ ├── et.gmo │ │ │ ├── fi.gmo │ │ │ ├── fr.gmo │ │ │ ├── ga.gmo │ │ │ ├── gl.gmo │ │ │ ├── hr.gmo │ │ │ ├── hu.gmo │ │ │ ├── id.gmo │ │ │ ├── it.gmo │ │ │ ├── ja.gmo │ │ │ ├── nl.gmo │ │ │ ├── pl.gmo │ │ │ ├── rm.gmo │ │ │ ├── ro.gmo │ │ │ ├── ru.gmo │ │ │ ├── sk.gmo │ │ │ ├── sl.gmo │ │ │ ├── sq.gmo │ │ │ ├── sr.gmo │ │ │ ├── sv.gmo │ │ │ ├── tr.gmo │ │ │ ├── uk.gmo │ │ │ ├── vi.gmo │ │ │ ├── wa.gmo │ │ │ ├── pt_BR.gmo │ │ │ ├── pt_BR.po │ │ │ ├── zh_CN.gmo │ │ │ ├── zh_TW.gmo │ │ │ ├── POTFILES.in │ │ │ ├── LINGUAS │ │ │ ├── quot.sed │ │ │ └── boldquot.sed │ │ │ ├── AUTHORS │ │ │ ├── .gitattributes │ │ │ ├── libcharset │ │ │ ├── AUTHORS │ │ │ ├── README.djgpp │ │ │ ├── DEPENDENCIES │ │ │ ├── tools │ │ │ │ ├── locale_charmap │ │ │ │ ├── glibc-2.1.3 │ │ │ │ ├── glibc-2.2 │ │ │ │ ├── cygwin-1.7.2 │ │ │ │ ├── glibc-2.1.90 │ │ │ │ ├── beos-5 │ │ │ │ ├── glibc-2.2-XF86-3.3.6 │ │ │ │ ├── glibc-2.2-XF86-4.0.1f │ │ │ │ ├── sunos-4.1.4 │ │ │ │ ├── win32 │ │ │ │ ├── locale_charset.c │ │ │ │ ├── locale_codeset.c │ │ │ │ └── aix-3.2.5 │ │ │ ├── NEWS │ │ │ ├── include │ │ │ │ └── export.h │ │ │ └── README.woe32 │ │ │ ├── src │ │ │ └── iconv_no_i18n.c │ │ │ ├── README.djgpp │ │ │ ├── DEPENDENCIES │ │ │ ├── lib │ │ │ ├── aliases_osf1.h │ │ │ ├── canonical_local.h │ │ │ ├── canonical_osf1.h │ │ │ ├── canonical_local_sysaix.h │ │ │ ├── canonical_local_syshpux.h │ │ │ ├── canonical_local_sysosf1.h │ │ │ ├── canonical_local_syssolaris.h │ │ │ ├── canonical_osf1_sysosf1.h │ │ │ └── aliases_osf1_sysosf1.h │ │ │ ├── include │ │ │ └── export.h │ │ │ ├── srclib │ │ │ ├── allocator.c │ │ │ └── malloca.valgrind │ │ │ ├── os2 │ │ │ └── iconv.def │ │ │ ├── gnulib-local │ │ │ └── modules │ │ │ │ ├── mbstate │ │ │ │ ├── libiconv-misc │ │ │ │ └── xalloc │ │ │ ├── build-aux │ │ │ └── snippet │ │ │ │ └── _Noreturn.h │ │ │ └── djgpp │ │ │ ├── translit-check.sed │ │ │ └── stateful-check.sed │ ├── mongodb │ │ ├── .gitmodules │ │ ├── node_modules │ │ │ ├── bson │ │ │ │ ├── builderror.log │ │ │ │ ├── build │ │ │ │ │ ├── Release │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ ├── bson.node │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ ├── bson.node.d │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ └── bson.node.d │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ ├── bson.node │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ └── bson.o │ │ │ │ │ └── binding.Makefile │ │ │ │ ├── node_modules │ │ │ │ │ └── nan │ │ │ │ │ │ └── include_dirs.js │ │ │ │ ├── .travis.yml │ │ │ │ ├── ext │ │ │ │ │ └── win32 │ │ │ │ │ │ ├── ia32 │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ └── x64 │ │ │ │ │ │ └── bson.node │ │ │ │ ├── tools │ │ │ │ │ └── jasmine-1.1.0 │ │ │ │ │ │ └── jasmine_favicon.png │ │ │ │ ├── build_browser.js │ │ │ │ ├── lib │ │ │ │ │ └── bson │ │ │ │ │ │ ├── min_key.js │ │ │ │ │ │ └── max_key.js │ │ │ │ ├── Makefile │ │ │ │ └── browser_build │ │ │ │ │ └── package.json │ │ │ ├── kerberos │ │ │ │ ├── builderror.log │ │ │ │ ├── build │ │ │ │ │ ├── Release │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ ├── kerberos.node │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ ├── kerberos.node.d │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ └── kerberos.node.d │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ └── kerberos.node │ │ │ │ │ └── binding.Makefile │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ ├── worker.cc │ │ │ │ │ └── win32 │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ └── wrappers │ │ │ │ │ │ ├── security_context.js │ │ │ │ │ │ └── security_buffer_descriptor.js │ │ │ │ └── index.js │ │ │ └── readable-stream │ │ │ │ ├── node_modules │ │ │ │ ├── string_decoder │ │ │ │ │ └── .npmignore │ │ │ │ ├── inherits │ │ │ │ │ └── inherits.js │ │ │ │ ├── core-util-is │ │ │ │ │ └── README.md │ │ │ │ └── isarray │ │ │ │ │ └── index.js │ │ │ │ ├── .npmignore │ │ │ │ ├── duplex.js │ │ │ │ ├── transform.js │ │ │ │ ├── writable.js │ │ │ │ ├── passthrough.js │ │ │ │ └── readable.js │ │ ├── index.js │ │ └── .travis.yml │ ├── .bin │ │ └── express │ ├── express │ │ ├── node_modules │ │ │ ├── fresh │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ └── Makefile │ │ │ ├── range-parser │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ └── History.md │ │ │ ├── buffer-crc32 │ │ │ │ ├── .npmignore │ │ │ │ └── .travis.yml │ │ │ ├── cookie │ │ │ │ ├── .npmignore │ │ │ │ ├── test │ │ │ │ │ └── mocha.opts │ │ │ │ └── .travis.yml │ │ │ ├── connect │ │ │ │ ├── node_modules │ │ │ │ │ ├── bytes │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ └── History.md │ │ │ │ │ ├── raw-body │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── multiparty │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── stream-counter │ │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ │ │ └── test.txt │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ └── README.md │ │ │ │ │ │ │ └── readable-stream │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ ├── string_decoder │ │ │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ │ │ ├── inherits │ │ │ │ │ │ │ │ │ └── inherits.js │ │ │ │ │ │ │ │ ├── core-util-is │ │ │ │ │ │ │ │ │ └── README.md │ │ │ │ │ │ │ │ └── isarray │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── duplex.js │ │ │ │ │ │ │ │ ├── transform.js │ │ │ │ │ │ │ │ ├── writable.js │ │ │ │ │ │ │ │ ├── passthrough.js │ │ │ │ │ │ │ │ └── readable.js │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── fixture │ │ │ │ │ │ │ │ ├── file │ │ │ │ │ │ │ │ ├── plain.txt │ │ │ │ │ │ │ │ ├── funkyfilename.txt │ │ │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ │ │ ├── pf1y5.png │ │ │ │ │ │ │ │ ├── binaryfile.tar.gz │ │ │ │ │ │ │ │ ├── beta-sticker-1.png │ │ │ │ │ │ │ │ └── menu_separator.png │ │ │ │ │ │ │ │ ├── multi_video.upload │ │ │ │ │ │ │ │ ├── http │ │ │ │ │ │ │ │ ├── encoding │ │ │ │ │ │ │ │ │ └── pf1y5.png.http │ │ │ │ │ │ │ │ ├── special-chars-in-filename │ │ │ │ │ │ │ │ │ └── info.md │ │ │ │ │ │ │ │ ├── preamble │ │ │ │ │ │ │ │ │ └── crlf.http │ │ │ │ │ │ │ │ └── workarounds │ │ │ │ │ │ │ │ │ ├── missing-hyphens1.http │ │ │ │ │ │ │ │ │ └── missing-hyphens2.http │ │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ │ ├── preamble.js │ │ │ │ │ │ │ │ ├── no-filename.js │ │ │ │ │ │ │ │ └── workarounds.js │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ ├── batch │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── component.json │ │ │ │ │ ├── pause │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ └── Makefile │ │ │ │ │ └── qs │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ └── .gitmodules │ │ │ │ ├── .travis.yml │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── public │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── page.png │ │ │ │ │ │ ├── folder.png │ │ │ │ │ │ ├── page_add.png │ │ │ │ │ │ ├── page_go.png │ │ │ │ │ │ ├── page_key.png │ │ │ │ │ │ ├── page_red.png │ │ │ │ │ │ ├── page_code.png │ │ │ │ │ │ ├── page_copy.png │ │ │ │ │ │ ├── page_edit.png │ │ │ │ │ │ ├── page_error.png │ │ │ │ │ │ ├── page_excel.png │ │ │ │ │ │ ├── page_find.png │ │ │ │ │ │ ├── page_gear.png │ │ │ │ │ │ ├── page_green.png │ │ │ │ │ │ ├── page_link.png │ │ │ │ │ │ ├── page_paste.png │ │ │ │ │ │ ├── page_save.png │ │ │ │ │ │ ├── page_white.png │ │ │ │ │ │ ├── page_word.png │ │ │ │ │ │ ├── page_world.png │ │ │ │ │ │ ├── page_attach.png │ │ │ │ │ │ ├── page_delete.png │ │ │ │ │ │ ├── page_refresh.png │ │ │ │ │ │ ├── page_white_c.png │ │ │ │ │ │ ├── page_white_cd.png │ │ │ │ │ │ ├── page_white_go.png │ │ │ │ │ │ ├── page_white_h.png │ │ │ │ │ │ ├── page_lightning.png │ │ │ │ │ │ ├── page_paintbrush.png │ │ │ │ │ │ ├── page_white_add.png │ │ │ │ │ │ ├── page_white_code.png │ │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ │ ├── page_white_cup.png │ │ │ │ │ │ ├── page_white_dvd.png │ │ │ │ │ │ ├── page_white_edit.png │ │ │ │ │ │ ├── page_white_find.png │ │ │ │ │ │ ├── page_white_gear.png │ │ │ │ │ │ ├── page_white_get.png │ │ │ │ │ │ ├── page_white_key.png │ │ │ │ │ │ ├── page_white_link.png │ │ │ │ │ │ ├── page_white_php.png │ │ │ │ │ │ ├── page_white_put.png │ │ │ │ │ │ ├── page_white_ruby.png │ │ │ │ │ │ ├── page_white_star.png │ │ │ │ │ │ ├── page_white_text.png │ │ │ │ │ │ ├── page_white_tux.png │ │ │ │ │ │ ├── page_white_word.png │ │ │ │ │ │ ├── page_white_zip.png │ │ │ │ │ │ ├── page_white_acrobat.png │ │ │ │ │ │ ├── page_white_camera.png │ │ │ │ │ │ ├── page_white_csharp.png │ │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ │ ├── page_white_error.png │ │ │ │ │ │ ├── page_white_excel.png │ │ │ │ │ │ ├── page_white_flash.png │ │ │ │ │ │ ├── page_white_magnify.png │ │ │ │ │ │ ├── page_white_medal.png │ │ │ │ │ │ ├── page_white_office.png │ │ │ │ │ │ ├── page_white_paint.png │ │ │ │ │ │ ├── page_white_paste.png │ │ │ │ │ │ ├── page_white_picture.png │ │ │ │ │ │ ├── page_white_stack.png │ │ │ │ │ │ ├── page_white_swoosh.png │ │ │ │ │ │ ├── page_white_vector.png │ │ │ │ │ │ ├── page_white_width.png │ │ │ │ │ │ ├── page_white_world.png │ │ │ │ │ │ ├── page_white_wrench.png │ │ │ │ │ │ ├── page_white_code_red.png │ │ │ │ │ │ ├── page_white_cplusplus.png │ │ │ │ │ │ ├── page_white_database.png │ │ │ │ │ │ ├── page_white_freehand.png │ │ │ │ │ │ ├── page_white_lightning.png │ │ │ │ │ │ ├── page_white_actionscript.png │ │ │ │ │ │ ├── page_white_coldfusion.png │ │ │ │ │ │ ├── page_white_compressed.png │ │ │ │ │ │ ├── page_white_horizontal.png │ │ │ │ │ │ ├── page_white_paintbrush.png │ │ │ │ │ │ ├── page_white_powerpoint.png │ │ │ │ │ │ ├── page_white_text_width.png │ │ │ │ │ │ └── page_white_visualstudio.png │ │ │ │ │ │ └── error.html │ │ │ │ └── .npmignore │ │ │ ├── mkdirp │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ └── examples │ │ │ │ │ └── pow.js │ │ │ ├── send │ │ │ │ ├── index.js │ │ │ │ ├── .npmignore │ │ │ │ └── Makefile │ │ │ ├── cookie-signature │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ └── History.md │ │ │ ├── methods │ │ │ │ ├── Readme.md │ │ │ │ └── History.md │ │ │ └── merge-descriptors │ │ │ │ ├── component.json │ │ │ │ └── index.js │ │ ├── .travis.yml │ │ ├── index.js │ │ ├── .npmignore │ │ └── benchmarks │ │ │ ├── Makefile │ │ │ └── run │ ├── request │ │ ├── .npmignore │ │ ├── node_modules │ │ │ ├── hawk │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── boom │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── boom.png │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── hoek │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── modules │ │ │ │ │ │ │ │ ├── test1.js │ │ │ │ │ │ │ │ ├── test2.js │ │ │ │ │ │ │ │ └── test3.js │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── hoek.png │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── sntp │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── examples │ │ │ │ │ │ │ └── offset.js │ │ │ │ │ └── cryptiles │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ └── Makefile │ │ │ │ ├── .travis.yml │ │ │ │ ├── images │ │ │ │ │ ├── hawk.png │ │ │ │ │ └── logo.png │ │ │ │ ├── .npmignore │ │ │ │ ├── Makefile │ │ │ │ └── lib │ │ │ │ │ └── index.js │ │ │ ├── node-uuid │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE.md │ │ │ │ └── test │ │ │ │ │ └── test.html │ │ │ ├── http-signature │ │ │ │ ├── node_modules │ │ │ │ │ ├── asn1 │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ ├── ber │ │ │ │ │ │ │ └── errors.js │ │ │ │ │ │ │ └── index.js │ │ │ │ │ └── ctype │ │ │ │ │ │ └── tst │ │ │ │ │ │ └── ctf │ │ │ │ │ │ ├── float.json │ │ │ │ │ │ ├── int.json │ │ │ │ │ │ ├── typedef.json │ │ │ │ │ │ ├── tst.float.js │ │ │ │ │ │ └── tst.int.js │ │ │ │ ├── .npmignore │ │ │ │ └── .dir-locals.el │ │ │ ├── tough-cookie │ │ │ │ ├── .npmignore │ │ │ │ └── .travis.yml │ │ │ ├── form-data │ │ │ │ └── node_modules │ │ │ │ │ ├── async │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── component.json │ │ │ │ │ └── combined-stream │ │ │ │ │ └── node_modules │ │ │ │ │ └── delayed-stream │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── Makefile │ │ │ │ │ └── test │ │ │ │ │ ├── run.js │ │ │ │ │ └── common.js │ │ │ ├── qs │ │ │ │ ├── .npmignore │ │ │ │ └── .gitmodules │ │ │ ├── oauth-sign │ │ │ │ └── README.md │ │ │ ├── tunnel-agent │ │ │ │ └── README.md │ │ │ ├── aws-sign2 │ │ │ │ └── README.md │ │ │ └── forever-agent │ │ │ │ └── README.md │ │ ├── dns-request.js │ │ ├── lib │ │ │ ├── optional.js │ │ │ ├── copy.js │ │ │ └── debug.js │ │ └── .travis.yml │ ├── cheerio │ │ ├── test │ │ │ └── mocha.opts │ │ ├── node_modules │ │ │ ├── entities │ │ │ │ ├── test │ │ │ │ │ └── mocha.opts │ │ │ │ ├── maps │ │ │ │ │ ├── xml.json │ │ │ │ │ └── decode.json │ │ │ │ └── .travis.yml │ │ │ ├── CSSselect │ │ │ │ ├── test │ │ │ │ │ └── mocha.opts │ │ │ │ ├── node_modules │ │ │ │ │ ├── domutils │ │ │ │ │ │ ├── readme.md │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── domelementtype │ │ │ │ │ │ │ │ └── readme.md │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ ├── fixture.js │ │ │ │ │ │ │ └── utils.js │ │ │ │ │ │ └── index.js │ │ │ │ │ └── CSSwhat │ │ │ │ │ │ └── .travis.yml │ │ │ │ ├── .travis.yml │ │ │ │ └── lib │ │ │ │ │ └── basefunctions.js │ │ │ ├── htmlparser2 │ │ │ │ ├── node_modules │ │ │ │ │ ├── entities │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── mocha.opts │ │ │ │ │ │ ├── maps │ │ │ │ │ │ │ ├── xml.json │ │ │ │ │ │ │ └── decode.json │ │ │ │ │ │ └── .travis.yml │ │ │ │ │ ├── domutils │ │ │ │ │ │ ├── readme.md │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ ├── fixture.js │ │ │ │ │ │ │ └── utils.js │ │ │ │ │ │ └── index.js │ │ │ │ │ ├── domelementtype │ │ │ │ │ │ └── readme.md │ │ │ │ │ ├── readable-stream │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── string_decoder │ │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ │ ├── inherits │ │ │ │ │ │ │ │ └── inherits.js │ │ │ │ │ │ │ ├── core-util-is │ │ │ │ │ │ │ │ └── README.md │ │ │ │ │ │ │ └── isarray │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── duplex.js │ │ │ │ │ │ ├── transform.js │ │ │ │ │ │ ├── writable.js │ │ │ │ │ │ ├── passthrough.js │ │ │ │ │ │ └── readable.js │ │ │ │ │ └── domhandler │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ └── test │ │ │ │ │ │ └── cases │ │ │ │ │ │ ├── 12-text_only.json │ │ │ │ │ │ ├── 18-enforce_empty_tags.json │ │ │ │ │ │ ├── 10-singular_attribute.json │ │ │ │ │ │ ├── 17-xml_namespace.json │ │ │ │ │ │ ├── 02-single_tag_1.json │ │ │ │ │ │ └── 03-single_tag_2.json │ │ │ │ ├── .gitattributes │ │ │ │ ├── test │ │ │ │ │ ├── Documents │ │ │ │ │ │ └── Basic.html │ │ │ │ │ ├── 01-events.js │ │ │ │ │ └── Events │ │ │ │ │ │ ├── 25-empty_tag_name.json │ │ │ │ │ │ ├── 28-cdata_in_html.json │ │ │ │ │ │ ├── 31-comment_false-ending.json │ │ │ │ │ │ ├── 06-leading-lt.json │ │ │ │ │ │ ├── 15-lt-whitespace.json │ │ │ │ │ │ ├── 23-legacy_entity_fail.json │ │ │ │ │ │ ├── 17-numeric_entities.json │ │ │ │ │ │ ├── 18-legacy_entities.json │ │ │ │ │ │ ├── 19-named_entities.json │ │ │ │ │ │ └── 20-xml_entities.json │ │ │ │ └── .travis.yml │ │ │ └── dom-serializer │ │ │ │ ├── .travis.yml │ │ │ │ └── node_modules │ │ │ │ └── domelementtype │ │ │ │ └── readme.md │ │ ├── .travis.yml │ │ ├── .npmignore │ │ ├── index.js │ │ ├── .jshintrc │ │ └── scripts │ │ │ └── prepublish │ ├── mongoose │ │ ├── node_modules │ │ │ ├── mpromise │ │ │ │ ├── .idea │ │ │ │ │ ├── .name │ │ │ │ │ ├── scopes │ │ │ │ │ │ └── scope_settings.xml │ │ │ │ │ ├── encodings.xml │ │ │ │ │ ├── other.xml │ │ │ │ │ ├── vcs.xml │ │ │ │ │ ├── misc.xml │ │ │ │ │ ├── inspectionProfiles │ │ │ │ │ │ └── profiles_settings.xml │ │ │ │ │ └── modules.xml │ │ │ │ ├── .npmignore │ │ │ │ ├── index.js │ │ │ │ └── .travis.yml │ │ │ ├── mquery │ │ │ │ ├── test │ │ │ │ │ └── collection │ │ │ │ │ │ ├── mongo.js │ │ │ │ │ │ └── browser.js │ │ │ │ ├── .npmignore │ │ │ │ ├── index.js │ │ │ │ ├── Makefile │ │ │ │ ├── .travis.yml │ │ │ │ ├── node_modules │ │ │ │ │ └── debug │ │ │ │ │ │ └── index.js │ │ │ │ └── lib │ │ │ │ │ └── collection │ │ │ │ │ └── index.js │ │ │ ├── ms │ │ │ │ ├── .npmignore │ │ │ │ └── Makefile │ │ │ ├── mongodb │ │ │ │ ├── node_modules │ │ │ │ │ ├── bson │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ │ ├── bson.node.d │ │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ │ └── bson.node.d │ │ │ │ │ │ │ │ ├── bson.node │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ ├── bson.node │ │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ │ └── bson.o │ │ │ │ │ │ │ └── binding.Makefile │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── ext │ │ │ │ │ │ │ └── win32 │ │ │ │ │ │ │ │ ├── ia32 │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ │ │ └── x64 │ │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ ├── build_browser.js │ │ │ │ │ │ ├── tools │ │ │ │ │ │ │ └── jasmine-1.1.0 │ │ │ │ │ │ │ │ └── jasmine_favicon.png │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ ├── max_key.js │ │ │ │ │ │ │ │ └── min_key.js │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── browser_build │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── binding.gyp │ │ │ │ │ └── kerberos │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ ├── build │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ ├── kerberos.node.d │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ └── kerberos.node.d │ │ │ │ │ │ │ ├── kerberos.node │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ └── kerberos.node │ │ │ │ │ │ └── binding.Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ └── win32 │ │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ │ └── wrappers │ │ │ │ │ │ │ ├── security_context.js │ │ │ │ │ │ │ └── security_buffer_descriptor.js │ │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ └── .travis.yml │ │ │ ├── hooks │ │ │ │ ├── .npmignore │ │ │ │ └── Makefile │ │ │ ├── mpath │ │ │ │ ├── .npmignore │ │ │ │ ├── index.js │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ └── History.md │ │ │ ├── muri │ │ │ │ ├── .npmignore │ │ │ │ ├── index.js │ │ │ │ ├── .travis.yml │ │ │ │ └── Makefile │ │ │ ├── sliced │ │ │ │ ├── .npmignore │ │ │ │ ├── index.js │ │ │ │ ├── .travis.yml │ │ │ │ ├── Makefile │ │ │ │ └── component.json │ │ │ └── regexp-clone │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ └── README.md │ │ ├── examples │ │ │ ├── express │ │ │ │ ├── README.md │ │ │ │ └── connection-sharing │ │ │ │ │ ├── README.md │ │ │ │ │ ├── modelA.js │ │ │ │ │ └── package.json │ │ │ ├── schema │ │ │ │ └── storing-schemas-as-json │ │ │ │ │ └── schema.json │ │ │ ├── lean │ │ │ │ └── package.json │ │ │ ├── promises │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── aggregate │ │ │ │ └── package.json │ │ │ ├── mapreduce │ │ │ │ └── package.json │ │ │ ├── geospatial │ │ │ │ └── package.json │ │ │ ├── replicasets │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ ├── querybuilder │ │ │ │ ├── package.json │ │ │ │ └── person.js │ │ │ └── globalschemas │ │ │ │ └── person.js │ │ ├── lib │ │ │ ├── drivers │ │ │ │ ├── SPEC.md │ │ │ │ └── node-mongodb-native │ │ │ │ │ ├── binary.js │ │ │ │ │ └── objectid.js │ │ │ └── types │ │ │ │ └── index.js │ │ ├── .travis.yml │ │ ├── index.js │ │ ├── contRun.sh │ │ └── .npmignore │ ├── connect-mongo │ │ ├── node_modules │ │ │ └── mongodb │ │ │ │ ├── node_modules │ │ │ │ ├── bson │ │ │ │ │ ├── builderror.log │ │ │ │ │ ├── build │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ ├── bson.node.d │ │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ │ └── bson.node.d │ │ │ │ │ │ │ ├── bson.node │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ ├── bson.node │ │ │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ │ └── ext │ │ │ │ │ │ │ │ └── bson.o │ │ │ │ │ │ └── binding.Makefile │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── ext │ │ │ │ │ │ └── win32 │ │ │ │ │ │ │ ├── ia32 │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ │ │ └── x64 │ │ │ │ │ │ │ └── bson.node │ │ │ │ │ ├── build_browser.js │ │ │ │ │ ├── tools │ │ │ │ │ │ └── jasmine-1.1.0 │ │ │ │ │ │ │ └── jasmine_favicon.png │ │ │ │ │ ├── lib │ │ │ │ │ │ └── bson │ │ │ │ │ │ │ ├── max_key.js │ │ │ │ │ │ │ └── min_key.js │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── browser_build │ │ │ │ │ │ └── package.json │ │ │ │ │ └── binding.gyp │ │ │ │ └── kerberos │ │ │ │ │ ├── builderror.log │ │ │ │ │ ├── build │ │ │ │ │ ├── Release │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ ├── kerberos.node.d │ │ │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ │ └── kerberos.node.d │ │ │ │ │ │ ├── kerberos.node │ │ │ │ │ │ └── obj.target │ │ │ │ │ │ │ └── kerberos.node │ │ │ │ │ └── binding.Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ ├── worker.cc │ │ │ │ │ └── win32 │ │ │ │ │ │ ├── worker.cc │ │ │ │ │ │ └── wrappers │ │ │ │ │ │ ├── security_context.js │ │ │ │ │ │ └── security_buffer_descriptor.js │ │ │ │ │ └── index.js │ │ │ │ ├── index.js │ │ │ │ └── .travis.yml │ │ ├── .travis.yml │ │ └── index.js │ ├── eventproxy │ │ ├── index.js │ │ ├── .npmignore │ │ └── node_modules │ │ │ └── debug │ │ │ └── index.js │ └── connect-flash │ │ ├── .travis.yml │ │ └── lib │ │ └── index.js ├── routes │ └── user.js ├── public │ └── stylesheets │ │ └── style.css ├── settings.js ├── README.md ├── test │ └── star │ │ └── starTest.js ├── dao │ └── db.js ├── views │ └── footer.ejs └── package.json ├── .gitignore ├── README.md └── urlSearch └── app.js /chatRoom/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/support/config.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/.bin/express: -------------------------------------------------------------------------------- 1 | ../express/bin/express -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/backslash.ejs: -------------------------------------------------------------------------------- 1 | \foo -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/backslash.html: -------------------------------------------------------------------------------- 1 | \foo -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/para.ejs: -------------------------------------------------------------------------------- 1 |

hey

-------------------------------------------------------------------------------- /myStar/node_modules/iconv/.npmignore: -------------------------------------------------------------------------------- 1 | deps/libiconv/tests -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | .idea/ 3 | *.xml 4 | node_modules 5 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/user.ejs: -------------------------------------------------------------------------------- 1 |

{= name}

-------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/builderror.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/fresh/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/kerberos/builderror.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/request/.npmignore: -------------------------------------------------------------------------------- 1 | tests 2 | node_modules 3 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter list 2 | --growl -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/pet.ejs: -------------------------------------------------------------------------------- 1 |
  • [[= pet.name ]]
  • -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/range-parser/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpromise/.idea/.name: -------------------------------------------------------------------------------- 1 | mpromise -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mquery/test/collection/mongo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/ms/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/ejs'); -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/buffer-crc32/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/cookie/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/cookie/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --ui qunit 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/kerberos/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mquery/test/collection/browser.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/double-quote.html: -------------------------------------------------------------------------------- 1 |

    loki's "wheelchair"

    -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/fail.ejs: -------------------------------------------------------------------------------- 1 | <% function foo() return 'foo'; %> -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/single-quote.html: -------------------------------------------------------------------------------- 1 |

    loki's wheelchair

    -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/AUTHORS: -------------------------------------------------------------------------------- 1 | Bruno Haible 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/mongodb'); 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/builderror.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/builderror.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/single-quote.ejs: -------------------------------------------------------------------------------- 1 |

    <%= 'loki' %>'s wheelchair

    -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | foo: '<%= value %>'; 3 | } -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/bytes/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/raw-body/.npmignore: -------------------------------------------------------------------------------- 1 | test/ -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/examples/express/README.md: -------------------------------------------------------------------------------- 1 | Mongoose + Express examples 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/lib/drivers/SPEC.md: -------------------------------------------------------------------------------- 1 | 2 | # Driver Spec 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/hooks/.npmignore: -------------------------------------------------------------------------------- 1 | **.swp 2 | node_modules 3 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/builderror.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpath/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mquery/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/muri/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/sliced/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/builderror.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/includes/menu-item.ejs: -------------------------------------------------------------------------------- 1 |
  • <% include menu/item %>
  • -------------------------------------------------------------------------------- /myStar/node_modules/eventproxy/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/eventproxy'); 2 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/mkdirp/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/.gitattributes: -------------------------------------------------------------------------------- 1 | ChangeLog merge=merge-changelog 2 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/AUTHORS: -------------------------------------------------------------------------------- 1 | Bruno Haible 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/regexp-clone/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/node-uuid/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/double-quote.ejs: -------------------------------------------------------------------------------- 1 |

    <%= "lo" + 'ki' %>'s "wheelchair"

    -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/includes/menu/item.ejs: -------------------------------------------------------------------------------- 1 | <%= title %> -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/messed.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/express/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/send/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/send'); -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/entities/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --check-leaks 2 | --reporter spec 3 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/include.css.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/send/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/src/iconv_no_i18n.c: -------------------------------------------------------------------------------- 1 | #define NO_I18N 2 | #include "iconv.c" 3 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpromise/.npmignore: -------------------------------------------------------------------------------- 1 | *.sw* 2 | node_modules/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/CSSselect/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --check-leaks 2 | --reporter spec 3 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | - 0.11 -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/mongodb'); 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpath/index.js: -------------------------------------------------------------------------------- 1 | module.exports = exports = require('./lib'); 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/muri/index.js: -------------------------------------------------------------------------------- 1 | module.exports = exports = require('./lib'); 2 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/boom/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/hoek/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test1.js: -------------------------------------------------------------------------------- 1 | exports.x = 1; 2 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test2.js: -------------------------------------------------------------------------------- 1 | exports.y = 2; 2 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test3.js: -------------------------------------------------------------------------------- 1 | exports.z = 3; 2 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/sntp/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/mongodb'); 2 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/.npmignore: -------------------------------------------------------------------------------- 1 | # ignore any vim files: 2 | *.sw[a-z] 3 | vim/.netrwhist 4 | node_modules 5 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mquery/index.js: -------------------------------------------------------------------------------- 1 | module.exports = exports = require('./lib/mquery'); 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/sliced/index.js: -------------------------------------------------------------------------------- 1 | module.exports = exports = require('./lib/sliced'); 2 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/cryptiles/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib'); -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/http-signature/node_modules/asn1/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/include.css.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/README.djgpp: -------------------------------------------------------------------------------- 1 | Installation on DJGPP: 2 | 3 | See the file djgpp/README. 4 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/kerberos/README.md: -------------------------------------------------------------------------------- 1 | kerberos 2 | ======== 3 | 4 | Kerberos library for node.js -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/readable-stream/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpath/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpromise/index.js: -------------------------------------------------------------------------------- 1 | module.exports = exports = require('./lib/promise'); 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/muri/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/tough-cookie/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .*.sw[nmop] 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/entities/maps/xml.json: -------------------------------------------------------------------------------- 1 | {"amp":"&","apos":"'","gt":">","lt":"<","quot":"\""} 2 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-flash/.travis.yml: -------------------------------------------------------------------------------- 1 | language: "node_js" 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | - 0.8 6 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | services: mongodb 5 | 6 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/messed.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/batch/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/test/test.txt: -------------------------------------------------------------------------------- 1 | 1234 2 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/pause/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/DEPENDENCIES: -------------------------------------------------------------------------------- 1 | No packages need to be installed before GNU libiconv is installed. 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/sliced/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/entities/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --check-leaks 2 | --reporter spec 3 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/error.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/file/plain.txt: -------------------------------------------------------------------------------- 1 | I am a plain text file 2 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/README.djgpp: -------------------------------------------------------------------------------- 1 | Installation on DJGPP: 2 | 3 | See the file djgpp/README. 4 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/CSSselect/node_modules/domutils/readme.md: -------------------------------------------------------------------------------- 1 | utilities for working with htmlparser2's dom 2 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/dom-serializer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - 0.11 5 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/readme.md: -------------------------------------------------------------------------------- 1 | utilities for working with htmlparser2's dom 2 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.11 4 | - 0.10 5 | - 0.9 6 | - 0.6 7 | - 0.8 8 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/methods/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | # Methods 3 | 4 | HTTP verbs that node core's parser supports. 5 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/mkdirp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - 0.9 6 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | services: 6 | - mongodb 7 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/muri/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/mocha/bin/mocha $(T) 4 | 5 | .PHONY: test 6 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/form-data/node_modules/async/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/boom/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/sntp/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - 0.11 5 | matrix: 6 | fast_finish: true 7 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/CSSselect/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" 5 | - 0.11 6 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text eol=lf -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/domelementtype/readme.md: -------------------------------------------------------------------------------- 1 | all the types of nodes in htmlparser2's dom 2 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/no.newlines.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/DEPENDENCIES: -------------------------------------------------------------------------------- 1 | No packages need to be installed before GNU libcharset is installed. 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/node_modules/nan/include_dirs.js: -------------------------------------------------------------------------------- 1 | console.log(require('path').relative('.', __dirname)); 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/readable-stream/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/index.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Export lib/mongoose 4 | * 5 | */ 6 | 7 | module.exports = require('./lib/'); 8 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpath/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @node_modules/mocha/bin/mocha -A $(T) 4 | 5 | .PHONY: test 6 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpromise/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | - 0.11 6 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/regexp-clone/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - 0.10 6 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/hoek/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/dom-serializer/node_modules/domelementtype/readme.md: -------------------------------------------------------------------------------- 1 | all the types of nodes in htmlparser2's dom 2 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-flash/lib/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Expose middleware. 3 | */ 4 | exports = module.exports = require('./flash'); 5 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/cookie/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.6" 4 | - "0.8" 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - 0.10 6 | - 0.11 -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/README.md: -------------------------------------------------------------------------------- 1 | kerberos 2 | ======== 3 | 4 | Kerberos library for node.js -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mquery/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha $(T) $(TESTS) 4 | 5 | .PHONY: test 6 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/sliced/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha $(T) $(TESTS) 4 | 5 | .PHONY: test 6 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/cryptiles/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | 3 | node_js: 4 | - 0.10 5 | 6 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/entities/maps/xml.json: -------------------------------------------------------------------------------- 1 | {"amp":"&","apos":"'","gt":">","lt":"<","quot":"\""} 2 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - 0.10 6 | - 0.11 -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/README.md: -------------------------------------------------------------------------------- 1 | kerberos 2 | ======== 3 | 4 | Kerberos library for node.js -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/include.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/file/funkyfilename.txt: -------------------------------------------------------------------------------- 1 | I am a text file with a funky name! 2 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/methods/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.1.0 / 2013-10-28 3 | ================== 4 | 5 | * add http.METHODS support 6 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/lib/aliases_osf1.h: -------------------------------------------------------------------------------- 1 | S(osf1_0, "DEC-KANJI", ei_dec_kanji ) 2 | S(osf1_1, "DEC-HANYU", ei_dec_hanyu ) 3 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/af.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/af.po -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/da.po -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/de.po -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/es.po -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/et.po -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/ga.po -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/gl.po -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/hu.po -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/pl.po -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/ro.po -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/ru.po -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/regexp-clone/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.0.1 / 2013-04-17 3 | ================== 4 | 5 | * initial commit 6 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/.npmignore: -------------------------------------------------------------------------------- 1 | *.un~ 2 | /node_modules/* 3 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/http-signature/.npmignore: -------------------------------------------------------------------------------- 1 | .gitmodules 2 | deps 3 | docs 4 | Makefile 5 | node_modules 6 | test 7 | tools -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/menu.html: -------------------------------------------------------------------------------- 1 |
  • Foo
  • 2 |
  • Bar
  • 3 |
  • Baz
  • -------------------------------------------------------------------------------- /myStar/node_modules/express/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = process.env.EXPRESS_COV 3 | ? require('./lib-cov/express') 4 | : require('./lib/express'); -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/fresh/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.2.0 / 2013-08-11 3 | ================== 4 | 5 | * fix: return false for no-cache 6 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/build/Release/iconv.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/build/Release/iconv.node -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/af.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/af.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/bg.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/bg.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/ca.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/ca.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/cs.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/cs.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/da.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/da.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/de.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/de.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/el.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/el.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/eo.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/eo.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/es.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/es.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/et.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/et.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/fi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/fi.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/fr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/fr.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/ga.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/ga.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/gl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/gl.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/hr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/hr.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/hu.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/hu.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/id.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/id.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/it.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/it.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/ja.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/ja.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/nl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/nl.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/pl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/pl.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/rm.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/rm.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/ro.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/ro.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/ru.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/ru.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/sk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/sk.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/sl.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/sl.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/sq.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/sq.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/sr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/sr.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/sv.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/sv.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/tr.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/tr.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/uk.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/uk.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/vi.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/vi.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/wa.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/wa.gmo -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/kerberos/lib/worker.cc: -------------------------------------------------------------------------------- 1 | #include "worker.h" 2 | 3 | Worker::Worker() { 4 | } 5 | 6 | Worker::~Worker() { 7 | } -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/CSSselect/node_modules/CSSwhat/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" 5 | - 0.11 6 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/CSSselect/node_modules/domutils/node_modules/domelementtype/readme.md: -------------------------------------------------------------------------------- 1 | all the types of nodes in htmlparser2's dom 2 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/test/Documents/Basic.html: -------------------------------------------------------------------------------- 1 | The TitleHello world -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/include.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/newlines.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/no.newlines.ejs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/pause/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.0.1 / 2010-01-03 3 | ================== 4 | 5 | * Initial release 6 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/pt_BR.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/pt_BR.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/pt_BR.po -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/zh_CN.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/zh_CN.gmo -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/zh_TW.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/po/zh_TW.gmo -------------------------------------------------------------------------------- /myStar/node_modules/request/dns-request.js: -------------------------------------------------------------------------------- 1 | var request = require('request') 2 | , dns = require('dns') 3 | ; 4 | 5 | function wrap (fn) { 6 | var 7 | } -------------------------------------------------------------------------------- /myStar/node_modules/request/lib/optional.js: -------------------------------------------------------------------------------- 1 | module.exports = function(module) { 2 | try { 3 | return require(module); 4 | } catch (e) {} 5 | }; 6 | -------------------------------------------------------------------------------- /myStar/routes/user.js: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * GET users listing. 4 | */ 5 | 6 | exports.list = function(req, res){ 7 | res.send("respond with a resource"); 8 | }; -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | - 0.11 5 | 6 | script: npm run coveralls 7 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/newlines.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 # development version of 0.8, may be unstable 4 | - 0.11 -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/kerberos/lib/win32/worker.cc: -------------------------------------------------------------------------------- 1 | #include "worker.h" 2 | 3 | Worker::Worker() { 4 | } 5 | 6 | Worker::~Worker() { 7 | } -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mquery/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | - 0.11 6 | services: 7 | - mongodb 8 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/regexp-clone/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha $(T) --async-only $(TESTS) 4 | 5 | .PHONY: test 6 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/qs/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | benchmark.js 4 | component.json 5 | examples.js 6 | History.md 7 | Makefile 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | nodeWay 2 | ======= 3 | 4 | ##2.gitStar## 5 | 用了简单爬数据,大概的功能就是将某个账号下面star的项目抓取出来,用到了cheerio和eventproxy,第一次试用这个eventproxy, 6 | 感觉听不错的,不过有些地方还是用了回调金字塔~~习惯了可能 -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/.npmignore: -------------------------------------------------------------------------------- 1 | benchmark/ 2 | src/ 3 | support/ 4 | tests/ 5 | examples/ 6 | *.sock 7 | *.tmproj 8 | coverage.html 9 | lib-cov 10 | -------------------------------------------------------------------------------- /myStar/node_modules/express/.npmignore: -------------------------------------------------------------------------------- 1 | .git* 2 | docs/ 3 | examples/ 4 | support/ 5 | test/ 6 | testing.js 7 | .DS_Store 8 | coverage.html 9 | lib-cov 10 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/batch/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should 5 | 6 | .PHONY: test -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/fresh/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --reporter spec \ 5 | --require should 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/entities/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" 5 | - 0.11 6 | 7 | script: npm run coveralls 8 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | - 0.8 6 | - 0.9 7 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/comments.html: -------------------------------------------------------------------------------- 1 |
  • foo
  • 2 |
  • bar
  • 3 |
  • baz
  • 4 |
  • qux
  • -------------------------------------------------------------------------------- /myStar/node_modules/eventproxy/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | coverage.html 3 | Makefile 4 | .travis.yml 5 | logo.png 6 | jsdoc/ 7 | .jshintrc 8 | build/ 9 | components/ 10 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = process.env.CONNECT_COV 3 | ? require('./lib-cov/connect') 4 | : require('./lib/connect'); -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/readable-stream/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/contRun.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | make test 4 | 5 | ret=$? 6 | 7 | while [ $ret == 0 ]; do 8 | make test 9 | ret=$? 10 | done 11 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/node-uuid/LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010-2012 Robert Kieffer 2 | MIT License - http://opensource.org/licenses/mit-license.php 3 | -------------------------------------------------------------------------------- /myStar/public/stylesheets/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 50px; 3 | font: 14px "Lucida Grande", Helvetica, Arial, sans-serif; 4 | } 5 | 6 | a { 7 | color: #00B7FF; 8 | } -------------------------------------------------------------------------------- /myStar/settings.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by tankpt on 14-10-12. 3 | */ 4 | module.exports = { 5 | cookieSecret: 'rss', 6 | db: 'star', 7 | host: 'localhost' 8 | }; -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = process.env.CONNECT_MONGO_COV 3 | ? require('./lib-cov/connect-mongo') 4 | : require('./lib/connect-mongo'); -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/range-parser/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --reporter spec \ 5 | --require should 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /myStar/node_modules/iconv/build/Release/obj.target/iconv.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/build/Release/obj.target/iconv.node -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/lib/worker.cc: -------------------------------------------------------------------------------- 1 | #include "worker.h" 2 | 3 | Worker::Worker() { 4 | } 5 | 6 | Worker::~Worker() { 7 | } -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/images/hawk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/request/node_modules/hawk/images/hawk.png -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/request/node_modules/hawk/images/logo.png -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/lib/worker.cc: -------------------------------------------------------------------------------- 1 | #include "worker.h" 2 | 3 | Worker::Worker() { 4 | } 5 | 6 | Worker::~Worker() { 7 | } -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/qs/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | benchmark.js 4 | component.json 5 | examples.js 6 | History.md 7 | Makefile 8 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/cookie-signature/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/send/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec \ 6 | --bail 7 | 8 | .PHONY: test -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/tools/locale_charmap: -------------------------------------------------------------------------------- 1 | #! /bin/sh 2 | # Prints the system dependent name for the current locale's charmap. 3 | 4 | locale charmap 5 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/lib/win32/worker.cc: -------------------------------------------------------------------------------- 1 | #include "worker.h" 2 | 3 | Worker::Worker() { 4 | } 5 | 6 | Worker::~Worker() { 7 | } -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/lib/win32/worker.cc: -------------------------------------------------------------------------------- 1 | #include "worker.h" 2 | 3 | Worker::Worker() { 4 | } 5 | 6 | Worker::~Worker() { 7 | } -------------------------------------------------------------------------------- /myStar/node_modules/iconv/build/Release/.deps/Release/iconv.node.d: -------------------------------------------------------------------------------- 1 | cmd_Release/iconv.node := rm -rf "Release/iconv.node" && cp -af "Release/obj.target/iconv.node" "Release/iconv.node" 2 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/build/binding.Makefile: -------------------------------------------------------------------------------- 1 | # This file is generated by gyp; do not edit. 2 | 3 | export builddir_name ?= build/./. 4 | .PHONY: all 5 | all: 6 | $(MAKE) iconv 7 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/tools/glibc-2.1.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/libcharset/tools/glibc-2.1.3 -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/tools/glibc-2.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/libcharset/tools/glibc-2.2 -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/POTFILES.in: -------------------------------------------------------------------------------- 1 | # List of files which contain translatable strings. 2 | # Copyright (C) 2002 Free Software Foundation, Inc. 3 | 4 | src/iconv.c 5 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/oauth-sign/README.md: -------------------------------------------------------------------------------- 1 | oauth-sign 2 | ========== 3 | 4 | OAuth 1 signing. Formerly a vendor lib in mikeal/request, now a standalone module. 5 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/bytes/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --reporter spec \ 5 | --require should 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | before_script: 6 | - ulimit -n 500 7 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/pause/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /myStar/node_modules/iconv/build/Release/obj.target/iconv/src/binding.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/build/Release/obj.target/iconv/src/binding.o -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/lib/canonical_local.h: -------------------------------------------------------------------------------- 1 | (int)(long)&((struct stringpool_t *)0)->stringpool_str271, 2 | (int)(long)&((struct stringpool_t *)0)->stringpool_str664, 3 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/lib/canonical_osf1.h: -------------------------------------------------------------------------------- 1 | (int)(long)&((struct stringpool2_t *)0)->stringpool_osf1_0, 2 | (int)(long)&((struct stringpool2_t *)0)->stringpool_osf1_1, 3 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/tools/cygwin-1.7.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/libcharset/tools/cygwin-1.7.2 -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/tools/glibc-2.1.90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/libcharset/tools/glibc-2.1.90 -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/build/Release/bson.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongodb/node_modules/bson/build/Release/bson.node -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/ext/win32/ia32/bson.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongodb/node_modules/bson/ext/win32/ia32/bson.node -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/ext/win32/x64/bson.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongodb/node_modules/bson/ext/win32/x64/bson.node -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 # development version of 0.8, may be unstable 5 | - 0.11 -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/tunnel-agent/README.md: -------------------------------------------------------------------------------- 1 | tunnel-agent 2 | ============ 3 | 4 | HTTP proxy tunneling agent. Formerly part of mikeal/request, now a standalone module. 5 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/entities/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" 5 | - 0.11 6 | 7 | script: npm run coveralls 8 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 # development version of 0.8, may be unstable 5 | - 0.11 -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/favicon.ico -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/lib/canonical_local_sysaix.h: -------------------------------------------------------------------------------- 1 | (int)(long)&((struct stringpool_t *)0)->stringpool_str307, 2 | (int)(long)&((struct stringpool_t *)0)->stringpool_str543, 3 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/ms/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | ./node_modules/.bin/mocha test/test.js 4 | 5 | test-browser: 6 | ./node_modules/.bin/serve test/ 7 | 8 | .PHONY: test 9 | -------------------------------------------------------------------------------- /myStar/node_modules/request/lib/copy.js: -------------------------------------------------------------------------------- 1 | module.exports = 2 | function copy (obj) { 3 | var o = {} 4 | Object.keys(obj).forEach(function (i) { 5 | o[i] = obj[i] 6 | }) 7 | return o 8 | } -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page.png -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/lib/canonical_local_syshpux.h: -------------------------------------------------------------------------------- 1 | (int)(long)&((struct stringpool_t *)0)->stringpool_str258, 2 | (int)(long)&((struct stringpool_t *)0)->stringpool_str390, 3 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/lib/canonical_local_sysosf1.h: -------------------------------------------------------------------------------- 1 | (int)(long)&((struct stringpool_t *)0)->stringpool_str275, 2 | (int)(long)&((struct stringpool_t *)0)->stringpool_str465, 3 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/lib/canonical_local_syssolaris.h: -------------------------------------------------------------------------------- 1 | (int)(long)&((struct stringpool_t *)0)->stringpool_str38, 2 | (int)(long)&((struct stringpool_t *)0)->stringpool_str515, 3 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/lib/canonical_osf1_sysosf1.h: -------------------------------------------------------------------------------- 1 | (int)(long)&((struct stringpool2_t *)0)->stringpool_osf1_0, 2 | (int)(long)&((struct stringpool2_t *)0)->stringpool_osf1_2, 3 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/build/Release/.deps/Release/bson.node.d: -------------------------------------------------------------------------------- 1 | cmd_Release/bson.node := rm -rf "Release/bson.node" && cp -af "Release/obj.target/bson.node" "Release/bson.node" 2 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/Makefile: -------------------------------------------------------------------------------- 1 | SHELL := /bin/bash 2 | 3 | test: 4 | @./test/run.js 5 | 6 | .PHONY: test 7 | 8 | -------------------------------------------------------------------------------- /myStar/node_modules/eventproxy/node_modules/debug/index.js: -------------------------------------------------------------------------------- 1 | if ('undefined' == typeof window) { 2 | module.exports = require('./lib/debug'); 3 | } else { 4 | module.exports = require('./debug'); 5 | } 6 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/folder.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_add.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_go.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_key.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_red.png -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/tools/beos-5: -------------------------------------------------------------------------------- 1 | locale name locale charmap nl_langinfo(CODESET) locale_charset() 2 | 3 | C UTF-8 4 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/tools/glibc-2.2-XF86-3.3.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/libcharset/tools/glibc-2.2-XF86-3.3.6 -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/tools/glibc-2.2-XF86-4.0.1f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/deps/libiconv/libcharset/tools/glibc-2.2-XF86-4.0.1f -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/LINGUAS: -------------------------------------------------------------------------------- 1 | # Set of available languages. 2 | af bg ca cs da de el eo es et fi fr ga gl hr hu id it ja nl pl pt_BR rm ro ru sk sl sq sr sv tr uk vi wa zh_CN zh_TW 3 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/quot.sed: -------------------------------------------------------------------------------- 1 | s/"\([^"]*\)"/“\1”/g 2 | s/`\([^`']*\)'/‘\1’/g 3 | s/ '\([^`']*\)' / ‘\1’ /g 4 | s/ '\([^`']*\)'$/ ‘\1’/g 5 | s/^'\([^`']*\)' /‘\1’ /g 6 | s/“”/""/g 7 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/build/binding.Makefile: -------------------------------------------------------------------------------- 1 | # This file is generated by gyp; do not edit. 2 | 3 | export builddir_name ?= build/./. 4 | .PHONY: all 5 | all: 6 | $(MAKE) bson 7 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/kerberos/build/Release/kerberos.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongodb/node_modules/kerberos/build/Release/kerberos.node -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/examples/express/connection-sharing/README.md: -------------------------------------------------------------------------------- 1 | 2 | To run: 3 | 4 | - Execute `npm install` from this directory 5 | - Execute `node app.js` 6 | - Navigate to `localhost:8000` 7 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/aws-sign2/README.md: -------------------------------------------------------------------------------- 1 | aws-sign 2 | ======== 3 | 4 | AWS signing. Originally pulled from LearnBoost/knox, maintained as vendor in request, now a standalone module. 5 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/tough-cookie/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.11" 5 | matrix: 6 | fast_finish: true 7 | allow_failures: 8 | - node_js: 0.11 9 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/buffer-crc32/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | notifications: 6 | email: 7 | recipients: 8 | - brianloveswords@gmail.com -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_code.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_copy.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_edit.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_error.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_excel.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_find.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_gear.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_green.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_link.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_paste.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_save.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_word.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_world.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/raw-body/.travis.yml: -------------------------------------------------------------------------------- 1 | node_js: 2 | - "0.8" 3 | - "0.10" 4 | - "0.11" 5 | language: node_js 6 | matrix: 7 | allow_failures: 8 | - node_js: "0.11" -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/build/Release/obj.target/bson.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongodb/node_modules/bson/build/Release/obj.target/bson.node -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/kerberos/build/binding.Makefile: -------------------------------------------------------------------------------- 1 | # This file is generated by gyp; do not edit. 2 | 3 | export builddir_name ?= build/./. 4 | .PHONY: all 5 | all: 6 | $(MAKE) kerberos 7 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/boom/images/boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/request/node_modules/hawk/node_modules/boom/images/boom.png -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/hoek/images/hoek.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/request/node_modules/hawk/node_modules/hoek/images/hoek.png -------------------------------------------------------------------------------- /myStar/node_modules/ejs/examples/list.ejs: -------------------------------------------------------------------------------- 1 | <% if (names.length) { %> 2 |
      3 | <% names.forEach(function(name){ %> 4 |
    • '><%= name %>
    • 5 | <% }) %> 6 |
    7 | <% } %> -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_attach.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_delete.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_refresh.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_c.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_cd.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_go.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_h.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/build/Release/obj.target/iconv/deps/libiconv/lib/iconv.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/build/Release/obj.target/iconv/deps/libiconv/lib/iconv.o -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/readable-stream/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/.npmignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | **.swp 3 | *.sw* 4 | *.orig 5 | .DS_Store 6 | node_modules/ 7 | benchmarks/ 8 | docs/ 9 | test/ 10 | Makefile 11 | CNAME 12 | index.html 13 | index.jade 14 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/error.out: -------------------------------------------------------------------------------- 1 | ReferenceError: error.ejs:2 2 | 1|
      3 | >> 2| <% if (users) { %> 4 | 3|

      Has users

      5 | 4| <% } %> 6 | 5|
    7 | 8 | users is not defined -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_lightning.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_paintbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_paintbrush.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_add.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_code.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_copy.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_cup.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_dvd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_dvd.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_edit.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_find.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_gear.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_get.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_key.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_link.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_php.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_put.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_ruby.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_star.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_text.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_tux.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_word.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_zip.png -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/tools/jasmine-1.1.0/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongodb/node_modules/bson/tools/jasmine-1.1.0/jasmine_favicon.png -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/lib/drivers/node-mongodb-native/binary.js: -------------------------------------------------------------------------------- 1 | 2 | /*! 3 | * Module dependencies. 4 | */ 5 | 6 | var Binary = require('mongodb').BSONPure.Binary; 7 | 8 | module.exports = exports = Binary; 9 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/CSSselect/lib/basefunctions.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | trueFunc: function trueFunc(){ 3 | return true; 4 | }, 5 | falseFunc: function falseFunc(){ 6 | return false; 7 | } 8 | }; -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_acrobat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_acrobat.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_camera.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_csharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_csharp.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_delete.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_error.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_excel.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_flash.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_magnify.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_medal.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_office.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_paint.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_paste.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_picture.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_stack.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_swoosh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_swoosh.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_vector.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_width.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_world.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_wrench.png -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/build/Release/obj.target/bson/ext/bson.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongodb/node_modules/bson/build/Release/obj.target/bson/ext/bson.o -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/build_browser.js: -------------------------------------------------------------------------------- 1 | require('one'); 2 | 3 | one('./package.json') 4 | .tie('bson', BSON) 5 | // .exclude('buffer') 6 | .tie('buffer', {}) 7 | .save('./browser_build/bson.js') -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/kerberos.node.d: -------------------------------------------------------------------------------- 1 | cmd_Release/kerberos.node := rm -rf "Release/kerberos.node" && cp -af "Release/obj.target/kerberos.node" "Release/kerberos.node" 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos.node -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/.deps/Release/bson.node.d: -------------------------------------------------------------------------------- 1 | cmd_Release/bson.node := rm -rf "Release/bson.node" && cp -af "Release/obj.target/bson.node" "Release/bson.node" 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/binding.Makefile: -------------------------------------------------------------------------------- 1 | # This file is generated by gyp; do not edit. 2 | 3 | export builddir_name ?= build/./. 4 | .PHONY: all 5 | all: 6 | $(MAKE) bson 7 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mquery/node_modules/debug/index.js: -------------------------------------------------------------------------------- 1 | if ('undefined' == typeof window) { 2 | module.exports = require('./lib/debug'); 3 | } else { 4 | module.exports = require('./debug'); 5 | } 6 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/build/Release/.deps/Release/bson.node.d: -------------------------------------------------------------------------------- 1 | cmd_Release/bson.node := rm -rf "Release/bson.node" && cp -af "Release/obj.target/bson.node" "Release/bson.node" 2 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/build/binding.Makefile: -------------------------------------------------------------------------------- 1 | # This file is generated by gyp; do not edit. 2 | 3 | export builddir_name ?= build/./. 4 | .PHONY: all 5 | all: 6 | $(MAKE) bson 7 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/.npmignore: -------------------------------------------------------------------------------- 1 | *.markdown 2 | *.md 3 | .git* 4 | Makefile 5 | benchmarks/ 6 | docs/ 7 | examples/ 8 | install.sh 9 | support/ 10 | test/ 11 | .DS_Store 12 | coverage.html 13 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_code_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_code_red.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_cplusplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_cplusplus.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_database.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_database.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_freehand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_freehand.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_lightning.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/mkdirp/examples/pow.js: -------------------------------------------------------------------------------- 1 | var mkdirp = require('mkdirp'); 2 | 3 | mkdirp('/tmp/foo/bar/baz', function (err) { 4 | if (err) console.error(err) 5 | else console.log('pow!') 6 | }); 7 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_actionscript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_actionscript.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_coldfusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_coldfusion.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_compressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_compressed.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_horizontal.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_paintbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_paintbrush.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_powerpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_powerpoint.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_text_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_text_width.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_visualstudio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/lib/public/icons/page_white_visualstudio.png -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/bson.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/bson.node -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/ext/win32/ia32/bson.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/ext/win32/ia32/bson.node -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/ext/win32/x64/bson.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/ext/win32/x64/bson.node -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/binding.Makefile: -------------------------------------------------------------------------------- 1 | # This file is generated by gyp; do not edit. 2 | 3 | export builddir_name ?= build/./. 4 | .PHONY: all 5 | all: 6 | $(MAKE) kerberos 7 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/readable-stream/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/build/binding.Makefile: -------------------------------------------------------------------------------- 1 | # This file is generated by gyp; do not edit. 2 | 3 | export builddir_name ?= build/./. 4 | .PHONY: all 5 | all: 6 | $(MAKE) kerberos 7 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/include/export.h: -------------------------------------------------------------------------------- 1 | 2 | #if @HAVE_VISIBILITY@ && BUILDING_LIBICONV 3 | #define LIBICONV_DLL_EXPORTED __attribute__((__visibility__("default"))) 4 | #else 5 | #define LIBICONV_DLL_EXPORTED 6 | #endif 7 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/lib/aliases_osf1_sysosf1.h: -------------------------------------------------------------------------------- 1 | S(osf1_0, "DEC-KANJI", ei_dec_kanji ) 2 | S(osf1_1, "DECKANJI", ei_dec_kanji ) 3 | S(osf1_2, "DEC-HANYU", ei_dec_hanyu ) 4 | S(osf1_3, "DECHANYU", ei_dec_hanyu ) 5 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpromise/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/forever-agent/README.md: -------------------------------------------------------------------------------- 1 | forever-agent 2 | ============= 3 | 4 | HTTP Agent that keeps socket connections alive between keep-alive requests. Formerly part of mikeal/request, now a standalone module. 5 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/build/Release/bson.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/build/Release/bson.node -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/ext/win32/ia32/bson.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/ext/win32/ia32/bson.node -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/ext/win32/x64/bson.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/ext/win32/x64/bson.node -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/NEWS: -------------------------------------------------------------------------------- 1 | New in 1.4: 2 | * Tidy up the list of symbols exported from libcharset (assumes gcc >= 4.0). 3 | 4 | New in 1.2: 5 | * The include file is renamed from "libcharset.h" to "localcharset.h". 6 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/srclib/allocator.c: -------------------------------------------------------------------------------- 1 | #define _GL_USE_STDLIB_ALLOC 1 2 | #include 3 | #include "allocator.h" 4 | #include 5 | struct allocator const stdlib_allocator = { malloc, realloc, free, NULL }; 6 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build_browser.js: -------------------------------------------------------------------------------- 1 | require('one'); 2 | 3 | one('./package.json') 4 | .tie('bson', BSON) 5 | // .exclude('buffer') 6 | .tie('buffer', {}) 7 | .save('./browser_build/bson.js') -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/kerberos.node.d: -------------------------------------------------------------------------------- 1 | cmd_Release/kerberos.node := rm -rf "Release/kerberos.node" && cp -af "Release/obj.target/kerberos.node" "Release/kerberos.node" 2 | -------------------------------------------------------------------------------- /chatRoom/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "charRoom", 3 | "version": "0.0.1", 4 | "description": "my first socket.io app", 5 | "dependencies": { 6 | "express": "4.3.1", 7 | "ejs": "*", 8 | "socket.io": "1.2.0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /myStar/README.md: -------------------------------------------------------------------------------- 1 | ##gitStar## 2 | 用了简单爬数据,大概的功能就是将某个账号下面star的项目抓取出来,用到了cheerio和eventproxy,第一次试用这个eventproxy,感觉听不错的,不过有些地方还是用了回调金字塔~~习惯了可能 3 | 4 | beat1:update 20141019 5 | 现在的功能就是注册一个账号的同时,里面添加github的账号,现在并没有关联,所以说你可以输入一个别人的账号,然后将别人的star数据获取下来,可以对他进行分类管理 -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/build_browser.js: -------------------------------------------------------------------------------- 1 | require('one'); 2 | 3 | one('./package.json') 4 | .tie('bson', BSON) 5 | // .exclude('buffer') 6 | .tie('buffer', {}) 7 | .save('./browser_build/bson.js') -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/kerberos.node.d: -------------------------------------------------------------------------------- 1 | cmd_Release/kerberos.node := rm -rf "Release/kerberos.node" && cp -af "Release/obj.target/kerberos.node" "Release/kerberos.node" 2 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/file/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/file/blank.gif -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/file/pf1y5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/file/pf1y5.png -------------------------------------------------------------------------------- /myStar/node_modules/iconv/build/Release/obj.target/iconv/deps/libiconv/libcharset/lib/localcharset.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/iconv/build/Release/obj.target/iconv/deps/libiconv/libcharset/lib/localcharset.o -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/examples/express/connection-sharing/modelA.js: -------------------------------------------------------------------------------- 1 | 2 | var Schema = require('../../../lib').Schema; 3 | var mySchema = Schema({ name: String }); 4 | 5 | // db is global 6 | module.exports = db.model('MyModel', mySchema); 7 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/Release/kerberos.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/Release/kerberos.node -------------------------------------------------------------------------------- /myStar/node_modules/request/lib/debug.js: -------------------------------------------------------------------------------- 1 | var util = require('util') 2 | 3 | module.exports = 4 | function debug () { 5 | if (/\brequest\b/.test(process.env.NODE_DEBUG)) 6 | console.error('REQUEST %s', util.format.apply(util, arguments)) 7 | } 8 | -------------------------------------------------------------------------------- /myStar/test/star/starTest.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by tankpt on 14-10-2. 3 | */ 4 | var rssSearch = require('../../modules/star/star.js'); 5 | 6 | 7 | console.log(22); 8 | 9 | 10 | rssSearch("tankpt",'man'); 11 | 12 | console.log(111); 13 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Export cheerio (with ) 3 | */ 4 | 5 | exports = module.exports = require('./lib/cheerio'); 6 | 7 | /* 8 | Export the version 9 | */ 10 | 11 | exports.version = require('./package').version; 12 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/include/export.h: -------------------------------------------------------------------------------- 1 | 2 | #if @HAVE_VISIBILITY@ && BUILDING_LIBCHARSET 3 | #define LIBCHARSET_DLL_EXPORTED __attribute__((__visibility__("default"))) 4 | #else 5 | #define LIBCHARSET_DLL_EXPORTED 6 | #endif 7 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/hooks/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @NODE_ENV=test ./node_modules/expresso/bin/expresso \ 3 | $(TESTFLAGS) \ 4 | ./test.js 5 | 6 | test-cov: 7 | @TESTFLAGS=--cov $(MAKE) test 8 | 9 | .PHONY: test test-cov 10 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/obj.target/bson.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/obj.target/bson.node -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/build/Release/kerberos.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/build/Release/kerberos.node -------------------------------------------------------------------------------- /myStar/node_modules/ejs/examples/functions.ejs: -------------------------------------------------------------------------------- 1 |

    Users

    2 | 3 | <% function user(user) { %> 4 |
  • <%= user.name %> is a <%= user.age %> year old <%= user.species %>.
  • 5 | <% } %> 6 | 7 |
      8 | <% users.map(user) %> 9 |
    -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/multi_video.upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/multi_video.upload -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/kerberos/lib/win32/wrappers/security_context.js: -------------------------------------------------------------------------------- 1 | var SecurityContextNative = require('../../../build/Release/kerberos').SecurityContext; 2 | // Export the modified class 3 | exports.SecurityContext = SecurityContextNative; -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpromise/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/build/Release/obj.target/bson.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/build/Release/obj.target/bson.node -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/file/binaryfile.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/file/binaryfile.tar.gz -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/srclib/malloca.valgrind: -------------------------------------------------------------------------------- 1 | # Suppress a valgrind message about use of uninitialized memory in freea(). 2 | # This use is OK because it provides only a speedup. 3 | { 4 | freea 5 | Memcheck:Cond 6 | fun:freea 7 | } 8 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/obj.target/bson/ext/bson.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/obj.target/bson/ext/bson.o -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/tools/jasmine-1.1.0/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/tools/jasmine-1.1.0/jasmine_favicon.png -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpromise/.idea/other.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/run.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var far = require('far').create(); 3 | 4 | far.add(__dirname); 5 | far.include(/test-.*\.js$/); 6 | 7 | far.execute(); 8 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/http-signature/.dir-locals.el: -------------------------------------------------------------------------------- 1 | ((nil . ((indent-tabs-mode . nil) 2 | (tab-width . 8) 3 | (fill-column . 80))) 4 | (js-mode . ((js-indent-level . 2) 5 | (indent-tabs-mode . nil) 6 | ))) -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/file/beta-sticker-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/file/beta-sticker-1.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/file/menu_separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/file/menu_separator.png -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/README.woe32: -------------------------------------------------------------------------------- 1 | Installation on Woe32 (WinNT/2000/XP/Vista/7, Win95/98/ME): 2 | 3 | Building requires the mingw or cygwin development environment (includes gcc). 4 | MS Visual C/C++ with "nmake" is no longer supported. 5 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/os2/iconv.def: -------------------------------------------------------------------------------- 1 | ; iconv.def (emx+gcc) 2 | LIBRARY ICONV 3 | DESCRIPTION 'OS/2 port of libiconv ' 4 | EXPORTS 5 | libiconv_open @1 6 | libiconv @2 7 | libiconv_close @3 8 | libiconvctl @4 9 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos.node -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/cryptiles/README.md: -------------------------------------------------------------------------------- 1 | cryptiles 2 | ========= 3 | 4 | General purpose crypto utilities 5 | 6 | [![Build Status](https://secure.travis-ci.org/hueniverse/cryptiles.png)](http://travis-ci.org/hueniverse/cryptiles) 7 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/build/Release/obj.target/bson/ext/bson.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/build/Release/obj.target/bson/ext/bson.o -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/tools/jasmine-1.1.0/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/tools/jasmine-1.1.0/jasmine_favicon.png -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/bytes/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bytes", 3 | "description": "byte size string parser / serializer", 4 | "keywords": ["bytes", "utility"], 5 | "version": "0.2.1", 6 | "scripts": ["index.js"] 7 | } 8 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/build/Release/obj.target/kerberos.node -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/http/encoding/pf1y5.png.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tankpt/nodeWay/master/myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/http/encoding/pf1y5.png.http -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/tools/sunos-4.1.4: -------------------------------------------------------------------------------- 1 | locale_charset.c: 2 | ../../lib/localcharset.c: 3 | locale name locale charmap nl_langinfo(CODESET) locale_charset() 4 | 5 | C bug 6 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/po/boldquot.sed: -------------------------------------------------------------------------------- 1 | s/"\([^"]*\)"/“\1”/g 2 | s/`\([^`']*\)'/‘\1’/g 3 | s/ '\([^`']*\)' / ‘\1’ /g 4 | s/ '\([^`']*\)'$/ ‘\1’/g 5 | s/^'\([^`']*\)' /‘\1’ /g 6 | s/“”/""/g 7 | s/“/“/g 8 | s/”/”/g 9 | s/‘/‘/g 10 | s/’/’/g 11 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/lib/win32/wrappers/security_context.js: -------------------------------------------------------------------------------- 1 | var SecurityContextNative = require('../../../build/Release/kerberos').SecurityContext; 2 | // Export the modified class 3 | exports.SecurityContext = SecurityContextNative; -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpromise/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/lib/win32/wrappers/security_context.js: -------------------------------------------------------------------------------- 1 | var SecurityContextNative = require('../../../build/Release/kerberos').SecurityContext; 2 | // Export the modified class 3 | exports.SecurityContext = SecurityContextNative; -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/qs/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "support/expresso"] 2 | path = support/expresso 3 | url = git://github.com/visionmedia/expresso.git 4 | [submodule "support/should"] 5 | path = support/should 6 | url = git://github.com/visionmedia/should.js.git 7 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/kerberos/index.js: -------------------------------------------------------------------------------- 1 | // Get the Kerberos library 2 | module.exports = require('./lib/kerberos'); 3 | // Set up the auth processes 4 | module.exports['processes'] = { 5 | MongoAuthProcess: require('./lib/auth_processes/mongodb').MongoAuthProcess 6 | } -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/examples/schema/storing-schemas-as-json/schema.json: -------------------------------------------------------------------------------- 1 | { 2 | "count": "number", 3 | "unit": "number", 4 | "description": "string", 5 | "links": ["string"], 6 | "created": "date", 7 | "additive": "boolean", 8 | "user_id": "ObjectId" 9 | } 10 | -------------------------------------------------------------------------------- /myStar/dao/db.js: -------------------------------------------------------------------------------- 1 | var settings = require('../settings'), 2 | Db = require('mongodb').Db, 3 | Connection = require('mongodb').Connection, 4 | Server = require('mongodb').Server; 5 | module.exports = new Db(settings.db, new Server(settings.host, Connection.DEFAULT_PORT), {safe: true}); -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/tools/win32: -------------------------------------------------------------------------------- 1 | Documentation mentions: 2 | CP874 3 | CP932 4 | CP936 5 | CP949 6 | CP950 7 | CP1200 - Unicode - UCS-2 or UTF-8 ? 8 | CP1250 9 | CP1251 10 | CP1252 11 | CP1253 12 | CP1254 13 | CP1255 14 | CP1256 15 | CP1257 16 | CP1361 17 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/test/01-events.js: -------------------------------------------------------------------------------- 1 | var helper = require("./test-helper.js"); 2 | 3 | helper.mochaTest("Events", __dirname, function(test, cb){ 4 | helper.writeToParser( 5 | helper.getEventCollector(cb), 6 | test.options.parser, 7 | test.html 8 | ); 9 | }); -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/common.js: -------------------------------------------------------------------------------- 1 | var common = module.exports; 2 | 3 | common.DelayedStream = require('..'); 4 | common.assert = require('assert'); 5 | common.fake = require('fake'); 6 | common.PORT = 49252; 7 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/CSSselect/node_modules/domutils/test/fixture.js: -------------------------------------------------------------------------------- 1 | var makeDom = require("./utils").makeDom; 2 | var markup = Array(21).join( 3 | " text " 4 | ); 5 | 6 | module.exports = makeDom(markup); 7 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/test/fixture.js: -------------------------------------------------------------------------------- 1 | var makeDom = require("./utils").makeDom; 2 | var markup = Array(21).join( 3 | " text " 4 | ); 5 | 6 | module.exports = makeDom(markup); 7 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/qs/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "support/expresso"] 2 | path = support/expresso 3 | url = git://github.com/visionmedia/expresso.git 4 | [submodule "support/should"] 5 | path = support/should 6 | url = git://github.com/visionmedia/should.js.git 7 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/kerberos/lib/win32/wrappers/security_buffer_descriptor.js: -------------------------------------------------------------------------------- 1 | var SecurityBufferDescriptorNative = require('../../../build/Release/kerberos').SecurityBufferDescriptor; 2 | // Export the modified class 3 | exports.SecurityBufferDescriptor = SecurityBufferDescriptorNative; -------------------------------------------------------------------------------- /myStar/views/footer.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos.node.d: -------------------------------------------------------------------------------- 1 | cmd_Release/obj.target/kerberos.node := flock ./Release/linker.lock g++ -shared -pthread -rdynamic -m32 -Wl,-soname=kerberos.node -o Release/obj.target/kerberos.node -Wl,--start-group -Wl,--end-group 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/index.js: -------------------------------------------------------------------------------- 1 | // Get the Kerberos library 2 | module.exports = require('./lib/kerberos'); 3 | // Set up the auth processes 4 | module.exports['processes'] = { 5 | MongoAuthProcess: require('./lib/auth_processes/mongodb').MongoAuthProcess 6 | } -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/test/cases/12-text_only.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Only text", 3 | "options": {}, 4 | "html": "this is the text", 5 | "expected": [ 6 | { 7 | "data": "this is the text", 8 | "type": "text" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/index.js: -------------------------------------------------------------------------------- 1 | // Get the Kerberos library 2 | module.exports = require('./lib/kerberos'); 3 | // Set up the auth processes 4 | module.exports['processes'] = { 5 | MongoAuthProcess: require('./lib/auth_processes/mongodb').MongoAuthProcess 6 | } -------------------------------------------------------------------------------- /myStar/node_modules/express/benchmarks/Makefile: -------------------------------------------------------------------------------- 1 | 2 | all: 3 | @./run 1 middleware 4 | @./run 5 middleware 5 | @./run 10 middleware 6 | @./run 15 middleware 7 | @./run 20 middleware 8 | @./run 30 middleware 9 | @./run 50 middleware 10 | @./run 100 middleware 11 | @echo 12 | 13 | .PHONY: all 14 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/raw-body/Makefile: -------------------------------------------------------------------------------- 1 | NODE ?= node 2 | BIN = ./node_modules/.bin/ 3 | 4 | test: 5 | @${NODE} ${BIN}mocha \ 6 | --reporter spec \ 7 | --bail \ 8 | ./test/index.js 9 | 10 | clean: 11 | @rm -rf node_modules 12 | 13 | .PHONY: test clean 14 | -------------------------------------------------------------------------------- /myStar/node_modules/request/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.10 5 | 6 | env: 7 | - OPTIONALS=Y 8 | - OPTIONALS=N 9 | 10 | install: 11 | - if [[ "$OPTIONALS" == "Y" ]]; then npm install; fi 12 | - if [[ "$OPTIONALS" == "N" ]]; then npm install --no-optional; fi 13 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/test/Events/25-empty_tag_name.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Empty tag name", 3 | "options": {}, 4 | "html": "< >", 5 | "expected": [ 6 | { 7 | "event": "text", 8 | "data": [ 9 | "< >" 10 | ] 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/test/Events/28-cdata_in_html.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "CDATA in HTML", 3 | "options": {}, 4 | "html": "", 5 | "expected": [ 6 | { "event": "comment", "data": [ "[CDATA[ foo ]]" ] }, 7 | { "event": "commentend", "data": [] } 8 | ] 9 | } -------------------------------------------------------------------------------- /myStar/node_modules/express/benchmarks/run: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo 4 | MW=$1 node $2 & 5 | pid=$! 6 | 7 | sleep 2 8 | 9 | wrk 'http://localhost:3333/?foo[bar]=baz' \ 10 | -d 3 \ 11 | -c 50 \ 12 | -t 8 \ 13 | | grep 'Requests/sec' \ 14 | | awk '{ print " " $2 }' 15 | 16 | kill $pid 17 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/merge-descriptors/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "merge-descriptors", 3 | "description": "Merge objects using descriptors", 4 | "version": "0.0.1", 5 | "scripts": [ 6 | "index.js" 7 | ], 8 | "repo": "jonathanong/merge-descriptors", 9 | "license": "MIT" 10 | } -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/build/Release/.deps/Release/obj.target/bson.node.d: -------------------------------------------------------------------------------- 1 | cmd_Release/obj.target/bson.node := flock ./Release/linker.lock g++ -shared -pthread -rdynamic -m32 -Wl,-soname=bson.node -o Release/obj.target/bson.node -Wl,--start-group Release/obj.target/bson/ext/bson.o -Wl,--end-group 2 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | 19 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/examples/list.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * Module dependencies. 4 | */ 5 | 6 | var ejs = require('../') 7 | , fs = require('fs') 8 | , str = fs.readFileSync(__dirname + '/list.ejs', 'utf8'); 9 | 10 | var ret = ejs.render(str, { 11 | names: ['foo', 'bar', 'baz'] 12 | }); 13 | 14 | console.log(ret); -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/merge-descriptors/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (dest, src) { 2 | Object.getOwnPropertyNames(src).forEach(function (name) { 3 | var descriptor = Object.getOwnPropertyDescriptor(src, name) 4 | Object.defineProperty(dest, name, descriptor) 5 | }) 6 | 7 | return dest 8 | } -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos.node.d: -------------------------------------------------------------------------------- 1 | cmd_Release/obj.target/kerberos.node := flock ./Release/linker.lock g++ -shared -pthread -rdynamic -m32 -Wl,-soname=kerberos.node -o Release/obj.target/kerberos.node -Wl,--start-group -Wl,--end-group 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/kerberos/lib/win32/wrappers/security_buffer_descriptor.js: -------------------------------------------------------------------------------- 1 | var SecurityBufferDescriptorNative = require('../../../build/Release/kerberos').SecurityBufferDescriptor; 2 | // Export the modified class 3 | exports.SecurityBufferDescriptor = SecurityBufferDescriptorNative; -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/build/Release/.deps/Release/obj.target/kerberos.node.d: -------------------------------------------------------------------------------- 1 | cmd_Release/obj.target/kerberos.node := flock ./Release/linker.lock g++ -shared -pthread -rdynamic -m32 -Wl,-soname=kerberos.node -o Release/obj.target/kerberos.node -Wl,--start-group -Wl,--end-group 2 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/kerberos/lib/win32/wrappers/security_buffer_descriptor.js: -------------------------------------------------------------------------------- 1 | var SecurityBufferDescriptorNative = require('../../../build/Release/kerberos').SecurityBufferDescriptor; 2 | // Export the modified class 3 | exports.SecurityBufferDescriptor = SecurityBufferDescriptorNative; -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/comments.ejs: -------------------------------------------------------------------------------- 1 |
  • <% // double-slash comment %>foo
  • 2 |
  • <% /* C-style comment */ %>bar
  • 3 |
  • <% // double-slash comment with newline 4 | %>baz
  • 5 |
  • <% var x = 'qux'; // double-slash comment @ end of line %><%= x %>
  • -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/cookie-signature/History.md: -------------------------------------------------------------------------------- 1 | 2 | 1.0.1 / 2013-04-15 3 | ================== 4 | 5 | * Revert "Changed underlying HMAC algo. to sha512." 6 | * Revert "Fix for timing attacks on MAC verification." 7 | 8 | 0.0.1 / 2010-01-03 9 | ================== 10 | 11 | * Initial release 12 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/test/Events/31-comment_false-ending.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Comment false ending", 3 | "options": {}, 4 | "html": "", 5 | "expected": [ 6 | { "event": "comment", "data": [ " a-b-> " ] }, 7 | { "event": "commentend", "data": [] } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/gnulib-local/modules/mbstate: -------------------------------------------------------------------------------- 1 | Description: 2 | mbstate_t type. 3 | 4 | Files: 5 | m4/mbstate_t.m4 6 | 7 | Depends-on: 8 | 9 | configure.ac: 10 | AC_TYPE_MBSTATE_T 11 | 12 | Makefile.am: 13 | 14 | Include: 15 | 16 | License: 17 | LGPL 18 | 19 | Maintainer: 20 | Bruno Haible 21 | 22 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/boom/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | 19 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/sntp/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | 19 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "indent": 2, 3 | "eqnull": true, 4 | "laxbreak": true, 5 | "proto": true, 6 | "undef": true, 7 | "node": true, 8 | "quotmark": "single", 9 | "globals": { 10 | "expect": true, 11 | "it": true, 12 | "describe": true, 13 | "beforeEach": true 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /myStar/node_modules/ejs/test/fixtures/menu.ejs: -------------------------------------------------------------------------------- 1 | <% var url = '/foo' -%> 2 | <% var title = 'Foo' -%> 3 | <% include includes/menu-item -%> 4 | 5 | <% var url = '/bar' -%> 6 | <% var title = 'Bar' -%> 7 | <% include includes/menu-item -%> 8 | 9 | <% var url = '/baz' -%> 10 | <% var title = 'Baz' -%> 11 | <% include includes/menu-item -%> -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/build/Release/.deps/Release/obj.target/bson.node.d: -------------------------------------------------------------------------------- 1 | cmd_Release/obj.target/bson.node := flock ./Release/linker.lock g++ -shared -pthread -rdynamic -m32 -Wl,-soname=bson.node -o Release/obj.target/bson.node -Wl,--start-group Release/obj.target/bson/ext/bson.o -Wl,--end-group 2 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/test/Events/06-leading-lt.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "leading lt", 3 | "options": { 4 | "handler": {}, 5 | "parser": {} 6 | }, 7 | "html": ">a>", 8 | "expected": [ 9 | { 10 | "event": "text", 11 | "data": [ 12 | ">a>" 13 | ] 14 | } 15 | ] 16 | } -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/build/Release/.deps/Release/obj.target/bson.node.d: -------------------------------------------------------------------------------- 1 | cmd_Release/obj.target/bson.node := flock ./Release/linker.lock g++ -shared -pthread -rdynamic -m32 -Wl,-soname=bson.node -o Release/obj.target/bson.node -Wl,--start-group Release/obj.target/bson/ext/bson.o -Wl,--end-group 2 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpromise/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/CSSselect/node_modules/domutils/test/utils.js: -------------------------------------------------------------------------------- 1 | var htmlparser = require("htmlparser2"); 2 | 3 | exports.makeDom = function(markup) { 4 | var handler = new htmlparser.DomHandler(), 5 | parser = new htmlparser.Parser(handler); 6 | parser.write(markup); 7 | parser.done(); 8 | return handler.dom; 9 | }; 10 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/domutils/test/utils.js: -------------------------------------------------------------------------------- 1 | var htmlparser = require("htmlparser2"); 2 | 3 | exports.makeDom = function(markup) { 4 | var handler = new htmlparser.DomHandler(), 5 | parser = new htmlparser.Parser(handler); 6 | parser.write(markup); 7 | parser.done(); 8 | return handler.dom; 9 | }; 10 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/multiparty/test/fixture/http/special-chars-in-filename/info.md: -------------------------------------------------------------------------------- 1 | * Opera does not allow submitting this file, it shows a warning to the 2 | user that the file could not be found instead. Tested in 9.8, 11.51 on OSX. 3 | Reported to Opera on 08.09.2011 (tracking email DSK-346009@bugs.opera.com). 4 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpromise/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/entities/maps/decode.json: -------------------------------------------------------------------------------- 1 | {"0":65533,"128":8364,"130":8218,"131":402,"132":8222,"133":8230,"134":8224,"135":8225,"136":710,"137":8240,"138":352,"139":8249,"140":338,"142":381,"145":8216,"146":8217,"147":8220,"148":8221,"149":8226,"150":8211,"151":8212,"152":732,"153":8482,"154":353,"155":8250,"156":339,"158":382,"159":376} -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/cryptiles/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | 19 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mquery/lib/collection/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var env = require('../env') 4 | 5 | if ('unknown' == env.type) { 6 | throw new Error('Unknown environment') 7 | } 8 | 9 | module.exports = 10 | env.isNode ? require('./node') : 11 | env.isMongo ? require('./mongo') : 12 | require('./browser'); 13 | 14 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/node_modules/bytes/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.2.1 / 2013-04-01 3 | ================== 4 | 5 | * add .component 6 | 7 | 0.2.0 / 2012-10-28 8 | ================== 9 | 10 | * bytes(200).should.eql('200b') 11 | 12 | 0.1.0 / 2012-07-04 13 | ================== 14 | 15 | * add bytes to string conversion [yields] 16 | -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/range-parser/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.0.4 / 2012-06-17 3 | ================== 4 | 5 | * changed: ret -1 for unsatisfiable and -2 when invalid 6 | 7 | 0.0.3 / 2012-06-17 8 | ================== 9 | 10 | * fix last-byte-pos default to len - 1 11 | 12 | 0.0.2 / 2012-06-14 13 | ================== 14 | 15 | * add `.type` 16 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/hoek/.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | npm-debug.log 4 | dump.rdb 5 | node_modules 6 | results.tap 7 | results.xml 8 | npm-shrinkwrap.json 9 | config.json 10 | .DS_Store 11 | */.DS_Store 12 | */*/.DS_Store 13 | ._* 14 | */._* 15 | */*/._* 16 | coverage.* 17 | lib-cov 18 | complexity.md 19 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/test/Events/15-lt-whitespace.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "lt followed by whitespace", 3 | "options": { 4 | "handler": {}, 5 | "parser": {} 6 | }, 7 | "html": "a < b", 8 | "expected": [ 9 | { 10 | "event": "text", 11 | "data": [ 12 | "a < b" 13 | ] 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/libcharset/tools/locale_charset.c: -------------------------------------------------------------------------------- 1 | /* Prints the portable name for the current locale's charset. */ 2 | 3 | #include 4 | #include 5 | #include 6 | #include "localcharset.h" 7 | 8 | int main () 9 | { 10 | setlocale(LC_ALL, ""); 11 | printf("%s\n", locale_charset()); 12 | exit(0); 13 | } 14 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/lib/bson/min_key.js: -------------------------------------------------------------------------------- 1 | /** 2 | * A class representation of the BSON MinKey type. 3 | * 4 | * @class Represents the BSON MinKey type. 5 | * @return {MinKey} 6 | */ 7 | function MinKey() { 8 | if(!(this instanceof MinKey)) return new MinKey(); 9 | 10 | this._bsontype = 'MinKey'; 11 | } 12 | 13 | exports.MinKey = MinKey; -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/test/Events/23-legacy_entity_fail.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "legacy entities", 3 | "options": { 4 | "handler": {}, 5 | "parser": {"decodeEntities": true} 6 | }, 7 | "html": "M&M", 8 | "expected": [ 9 | { 10 | "event": "text", 11 | "data": [ 12 | "M&M" 13 | ] 14 | } 15 | ] 16 | } -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/bson/lib/bson/max_key.js: -------------------------------------------------------------------------------- 1 | /** 2 | * A class representation of the BSON MaxKey type. 3 | * 4 | * @class Represents the BSON MaxKey type. 5 | * @return {MaxKey} 6 | */ 7 | function MaxKey() { 8 | if(!(this instanceof MaxKey)) return new MaxKey(); 9 | 10 | this._bsontype = 'MaxKey'; 11 | } 12 | 13 | exports.MaxKey = MaxKey; -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/lib/types/index.js: -------------------------------------------------------------------------------- 1 | 2 | /*! 3 | * Module exports. 4 | */ 5 | 6 | exports.Array = require('./array'); 7 | exports.Buffer = require('./buffer'); 8 | 9 | exports.Document = // @deprecate 10 | exports.Embedded = require('./embedded'); 11 | 12 | exports.DocumentArray = require('./documentarray'); 13 | exports.ObjectId = require('./objectid'); 14 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/float.json: -------------------------------------------------------------------------------- 1 | { "metadata": 2 | { 3 | "ctf2json_version": "1.0", 4 | "created_at": 1316563626, 5 | "derived_from": "/lib/libc.so", 6 | "ctf_version": 2, 7 | "requested_types": [ "float" ] 8 | }, 9 | "data": 10 | [ 11 | { "name": "float", "float": { "length": 4 } } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/entities/maps/decode.json: -------------------------------------------------------------------------------- 1 | {"0":65533,"128":8364,"130":8218,"131":402,"132":8222,"133":8230,"134":8224,"135":8225,"136":710,"137":8240,"138":352,"139":8249,"140":338,"142":381,"145":8216,"146":8217,"147":8220,"148":8221,"149":8226,"150":8211,"151":8212,"152":732,"153":8482,"154":353,"155":8250,"156":339,"158":382,"159":376} -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/build-aux/snippet/_Noreturn.h: -------------------------------------------------------------------------------- 1 | #ifndef _Noreturn 2 | # if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \ 3 | || 0x5110 <= __SUNPRO_C) 4 | # define _Noreturn __attribute__ ((__noreturn__)) 5 | # elif 1200 <= _MSC_VER 6 | # define _Noreturn __declspec (noreturn) 7 | # else 8 | # define _Noreturn 9 | # endif 10 | #endif 11 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpromise/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /myStar/node_modules/iconv/deps/libiconv/gnulib-local/modules/libiconv-misc: -------------------------------------------------------------------------------- 1 | Description: 2 | 3 | Files: 4 | 5 | Depends-on: 6 | 7 | configure.ac: 8 | 9 | Makefile.am: 10 | # Parametrization of the 'relocatable' module. 11 | AM_CPPFLAGS += -DDEPENDS_ON_LIBICONV=1 -DDEPENDS_ON_LIBINTL=1 12 | 13 | Include: 14 | 15 | License: 16 | GPL 17 | 18 | Maintainer: 19 | Bruno Haible 20 | 21 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/errors.js: -------------------------------------------------------------------------------- 1 | // Copyright 2011 Mark Cavage All rights reserved. 2 | 3 | 4 | module.exports = { 5 | 6 | newInvalidAsn1Error: function(msg) { 7 | var e = new Error(); 8 | e.name = 'InvalidAsn1Error'; 9 | e.message = msg || ''; 10 | return e; 11 | } 12 | 13 | }; 14 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/sntp/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @./node_modules/.bin/lab 3 | test-cov: 4 | @./node_modules/.bin/lab -r threshold -t 100 5 | test-cov-html: 6 | @./node_modules/.bin/lab -r html -o coverage.html 7 | complexity: 8 | @./node_modules/.bin/cr -o complexity.md -f markdown lib 9 | 10 | .PHONY: test test-cov test-cov-html complexity 11 | 12 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/http-signature/node_modules/ctype/tst/ctf/int.json: -------------------------------------------------------------------------------- 1 | { "metadata": 2 | { 3 | "ctf2json_version": "1.0", 4 | "created_at": 1316563631, 5 | "derived_from": "/lib/libc.so", 6 | "ctf_version": 2, 7 | "requested_types": [ "int" ] 8 | }, 9 | "data": 10 | [ 11 | { "name": "int", "integer": { "length": 4, "signed": true } } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/lib/drivers/node-mongodb-native/objectid.js: -------------------------------------------------------------------------------- 1 | 2 | /*! 3 | * [node-mongodb-native](https://github.com/mongodb/node-mongodb-native) ObjectId 4 | * @constructor NodeMongoDbObjectId 5 | * @see ObjectId 6 | */ 7 | 8 | var ObjectId = require('mongodb').BSONPure.ObjectID; 9 | 10 | /*! 11 | * ignore 12 | */ 13 | 14 | module.exports = exports = ObjectId; 15 | 16 | -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/lib/bson/max_key.js: -------------------------------------------------------------------------------- 1 | /** 2 | * A class representation of the BSON MaxKey type. 3 | * 4 | * @class Represents the BSON MaxKey type. 5 | * @return {MaxKey} 6 | */ 7 | function MaxKey() { 8 | if(!(this instanceof MaxKey)) return new MaxKey(); 9 | 10 | this._bsontype = 'MaxKey'; 11 | } 12 | 13 | exports.MaxKey = MaxKey; -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mongodb/node_modules/bson/lib/bson/min_key.js: -------------------------------------------------------------------------------- 1 | /** 2 | * A class representation of the BSON MinKey type. 3 | * 4 | * @class Represents the BSON MinKey type. 5 | * @return {MinKey} 6 | */ 7 | function MinKey() { 8 | if(!(this instanceof MinKey)) return new MinKey(); 9 | 10 | this._bsontype = 'MinKey'; 11 | } 12 | 13 | exports.MinKey = MinKey; -------------------------------------------------------------------------------- /myStar/node_modules/mongoose/node_modules/mpath/History.md: -------------------------------------------------------------------------------- 1 | 2 | 0.1.1 / 2012-12-21 3 | ================== 4 | 5 | * added; map support 6 | 7 | 0.1.0 / 2012-12-13 8 | ================== 9 | 10 | * added; set('array.property', val, object) support 11 | * added; get('array.property', object) support 12 | 13 | 0.0.1 / 2012-11-03 14 | ================== 15 | 16 | * initial release 17 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/node_modules/cryptiles/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @./node_modules/.bin/lab 3 | test-cov: 4 | @./node_modules/.bin/lab -r threshold -t 100 5 | test-cov-html: 6 | @./node_modules/.bin/lab -r html -o coverage.html 7 | complexity: 8 | @./node_modules/.bin/cr -o complexity.md -f markdown lib 9 | 10 | .PHONY: test test-cov test-cov-html complexity 11 | 12 | -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/lib/bson/max_key.js: -------------------------------------------------------------------------------- 1 | /** 2 | * A class representation of the BSON MaxKey type. 3 | * 4 | * @class Represents the BSON MaxKey type. 5 | * @return {MaxKey} 6 | */ 7 | function MaxKey() { 8 | if(!(this instanceof MaxKey)) return new MaxKey(); 9 | 10 | this._bsontype = 'MaxKey'; 11 | } 12 | 13 | exports.MaxKey = MaxKey; -------------------------------------------------------------------------------- /myStar/node_modules/connect-mongo/node_modules/mongodb/node_modules/bson/lib/bson/min_key.js: -------------------------------------------------------------------------------- 1 | /** 2 | * A class representation of the BSON MinKey type. 3 | * 4 | * @class Represents the BSON MinKey type. 5 | * @return {MinKey} 6 | */ 7 | function MinKey() { 8 | if(!(this instanceof MinKey)) return new MinKey(); 9 | 10 | this._bsontype = 'MinKey'; 11 | } 12 | 13 | exports.MinKey = MinKey; -------------------------------------------------------------------------------- /myStar/node_modules/express/node_modules/connect/lib/public/error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {error} 5 | 6 | 7 | 8 |
    9 |

    {title}

    10 |

    {statusCode} {error}

    11 |
      {stack}
    12 |
    13 | 14 | 15 | -------------------------------------------------------------------------------- /myStar/node_modules/mongodb/node_modules/readable-stream/readable.js: -------------------------------------------------------------------------------- 1 | exports = module.exports = require('./lib/_stream_readable.js'); 2 | exports.Readable = exports; 3 | exports.Writable = require('./lib/_stream_writable.js'); 4 | exports.Duplex = require('./lib/_stream_duplex.js'); 5 | exports.Transform = require('./lib/_stream_transform.js'); 6 | exports.PassThrough = require('./lib/_stream_passthrough.js'); 7 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/form-data/node_modules/async/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "async", 3 | "repo": "caolan/async", 4 | "description": "Higher-order functions and common patterns for asynchronous code", 5 | "version": "0.1.23", 6 | "keywords": [], 7 | "dependencies": {}, 8 | "development": {}, 9 | "main": "lib/async.js", 10 | "scripts": [ "lib/async.js" ] 11 | } 12 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/scripts/prepublish: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -e 3 | 4 | tmp="$(mktemp -t "$(basename "$0").XXXXXXXXXX")" 5 | 6 | printf " 7 | $VERSION / $(date +"%Y-%m-%d") 8 | ================== 9 | 10 | $(git --no-pager log --no-merges --pretty="format: * %s (%an)" $PREVIOUS_VERSION..) 11 | " >"$tmp" 12 | 13 | cat History.md >>"$tmp" 14 | mv "$tmp" History.md 15 | git add History.md 16 | -------------------------------------------------------------------------------- /myStar/node_modules/request/node_modules/hawk/Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @node node_modules/lab/bin/lab 3 | test-cov: 4 | @node node_modules/lab/bin/lab -r threshold -t 100 5 | test-cov-html: 6 | @node node_modules/lab/bin/lab -r html -o coverage.html 7 | complexity: 8 | @node node_modules/complexity-report/src/cli.js -o complexity.md -f markdown lib 9 | 10 | .PHONY: test test-cov test-cov-html complexity 11 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/test/cases/18-enforce_empty_tags.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Enforce empty tags", 3 | "options": {}, 4 | "html": "text", 5 | "expected": [ 6 | { 7 | "type": "tag", 8 | "name": "link", 9 | "attribs": {} 10 | }, 11 | { 12 | "data": "text", 13 | "type": "text" 14 | } 15 | ] 16 | } -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/test/Events/17-numeric_entities.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "numeric entities", 3 | "options": { 4 | "handler": {}, 5 | "parser": {"decodeEntities": true} 6 | }, 7 | "html": "abcdfg&#x;h", 8 | "expected": [ 9 | { 10 | "event": "text", 11 | "data": [ 12 | "abcdfg&#x;h" 13 | ] 14 | } 15 | ] 16 | } -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/test/Events/18-legacy_entities.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "legacy entities", 3 | "options": { 4 | "handler": {}, 5 | "parser": {"decodeEntities": true} 6 | }, 7 | "html": "&elíe&eer;s<er", 8 | "expected": [ 9 | { 10 | "event": "text", 11 | "data": [ 12 | "&el\u00EDe&eer;s
    2 | ![boom Logo](https://raw.github.com/spumko/boom/master/images/boom.png) 3 | 4 | HTTP-friendly error objects 5 | 6 | [![Build Status](https://secure.travis-ci.org/spumko/boom.png)](http://travis-ci.org/spumko/boom) 7 | -------------------------------------------------------------------------------- /myStar/node_modules/cheerio/node_modules/htmlparser2/node_modules/domhandler/test/cases/10-singular_attribute.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Singular attribute", 3 | "options": {}, 4 | "html": "