├── .htaccess ├── README ├── README.md ├── application ├── config │ ├── autoload.php │ ├── config.php │ ├── constants.php │ ├── database.php │ ├── doctypes.php │ ├── hooks.php │ ├── index.html │ ├── mimes.php │ ├── routes.php │ ├── smileys.php │ └── user_agents.php ├── controllers │ ├── Controllers.png │ ├── about.php │ ├── books.php │ ├── code.php │ ├── comments.php │ ├── community.php │ ├── controllers.xmi │ ├── friends.php │ ├── index.html │ ├── login.php │ ├── myresult.xmi │ ├── site.php │ └── welcome.php ├── errors │ ├── error_404.php │ ├── error_db.php │ ├── error_general.php │ ├── error_php.php │ └── index.html ├── helpers │ └── index.html ├── hooks │ └── index.html ├── index.html ├── language │ └── english │ │ └── index.html ├── libraries │ └── index.html ├── models │ ├── book_model.php │ ├── comment_model.php │ ├── forum_model.php │ ├── friend_model.php │ ├── index.html │ ├── message_model.php │ ├── models.png │ ├── models.xmi │ ├── news_model.php │ └── user_model.php └── views │ ├── copyright.php │ ├── find-books.php │ ├── includes │ ├── login_footer.php │ ├── login_header.php │ └── template.php │ ├── index.html │ ├── login_form.php │ ├── login_view │ ├── login_footer.php │ ├── login_form.php │ ├── login_header.php │ ├── signup_form.php │ └── signup_successful.php │ ├── signup_form.php │ ├── signup_successful.php │ ├── site_area.php │ ├── site_view │ ├── about_view.php │ ├── book_details.php │ ├── book_shelve.php │ ├── books_main.php │ ├── community_view.php │ ├── dummy.php │ ├── edit_profile.php │ ├── error.php │ ├── find_books.php │ ├── find_friends.php │ ├── friend_list.php │ ├── friend_results.php │ ├── message_area.php │ ├── new_books.php │ ├── news_area.php │ ├── news_details.php │ ├── news_post.php │ ├── profile.php │ ├── profile_edit_successful.php │ ├── profile_view.php │ ├── site_area.php │ ├── site_footer.php │ ├── site_header.php │ └── site_header_content.php │ ├── template.php │ └── welcome_message.php ├── css ├── overcast │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ ├── ui-bg_flat_55_c0402a_40x100.png │ │ ├── ui-bg_flat_55_eeeeee_40x100.png │ │ ├── ui-bg_glass_100_f8f8f8_1x400.png │ │ ├── ui-bg_glass_35_dddddd_1x400.png │ │ ├── ui-bg_glass_60_eeeeee_1x400.png │ │ ├── ui-bg_inset-hard_75_999999_1x100.png │ │ ├── ui-bg_inset-soft_50_c9c9c9_1x100.png │ │ ├── ui-icons_3383bb_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_70b2e1_256x240.png │ │ ├── ui-icons_999999_256x240.png │ │ └── ui-icons_fbc856_256x240.png │ └── jquery-ui-1.8.custom.css ├── style.css └── style_deprecated.css ├── development-bundle ├── AUTHORS.txt ├── GPL-LICENSE.txt ├── MIT-LICENSE.txt ├── demos │ ├── accordion │ │ ├── collapsible.html │ │ ├── custom-icons.html │ │ ├── default.html │ │ ├── fillspace.html │ │ ├── index.html │ │ ├── mouseover.html │ │ ├── no-auto-height.html │ │ └── sortable.html │ ├── addClass │ │ ├── default.html │ │ └── index.html │ ├── animate │ │ ├── default.html │ │ └── index.html │ ├── autocomplete │ │ ├── categories.html │ │ ├── combobox.html │ │ ├── custom-data.html │ │ ├── default.html │ │ ├── index.html │ │ ├── london.xml │ │ ├── remote-jsonp.html │ │ ├── remote-with-cache.html │ │ ├── remote.html │ │ ├── search.php │ │ └── xml.html │ ├── button │ │ ├── checkbox.html │ │ ├── default.html │ │ ├── icons.html │ │ ├── index.html │ │ ├── radio.html │ │ ├── splitbutton.html │ │ └── toolbar.html │ ├── datepicker │ │ ├── alt-field.html │ │ ├── animation.html │ │ ├── buttonbar.html │ │ ├── date-formats.html │ │ ├── default.html │ │ ├── dropdown-month-year.html │ │ ├── event-search.html │ │ ├── icon-trigger.html │ │ ├── images │ │ │ └── calendar.gif │ │ ├── index.html │ │ ├── inline.html │ │ ├── localization.html │ │ ├── min-max.html │ │ ├── multiple-calendars.html │ │ ├── other-months.html │ │ └── show-week.html │ ├── demos.css │ ├── dialog │ │ ├── animated.html │ │ ├── default.html │ │ ├── index.html │ │ ├── modal-confirmation.html │ │ ├── modal-form.html │ │ ├── modal-message.html │ │ └── modal.html │ ├── draggable │ │ ├── constrain-movement.html │ │ ├── cursor-style.html │ │ ├── default.html │ │ ├── delay-start.html │ │ ├── events.html │ │ ├── handle.html │ │ ├── index.html │ │ ├── revert.html │ │ ├── scroll.html │ │ ├── snap-to.html │ │ ├── sortable.html │ │ └── visual-feedback.html │ ├── droppable │ │ ├── accepted-elements.html │ │ ├── default.html │ │ ├── images │ │ │ ├── high_tatras.jpg │ │ │ ├── high_tatras2.jpg │ │ │ ├── high_tatras2_min.jpg │ │ │ ├── high_tatras3.jpg │ │ │ ├── high_tatras3_min.jpg │ │ │ ├── high_tatras4.jpg │ │ │ ├── high_tatras4_min.jpg │ │ │ └── high_tatras_min.jpg │ │ ├── index.html │ │ ├── photo-manager.html │ │ ├── propagation.html │ │ ├── revert.html │ │ └── visual-feedback.html │ ├── effect │ │ ├── default.html │ │ ├── easing.html │ │ └── index.html │ ├── hide │ │ ├── default.html │ │ └── index.html │ ├── images │ │ ├── calendar.gif │ │ ├── demo-config-on-tile.gif │ │ ├── demo-config-on.gif │ │ ├── demo-spindown-closed.gif │ │ ├── demo-spindown-open.gif │ │ ├── icon-docs-info.gif │ │ ├── jquery_32x32.png │ │ ├── jqueryui_32x32.png │ │ ├── pbar-ani.gif │ │ ├── sizzlejs_32x32.png │ │ └── transparent_1x1.png │ ├── index.html │ ├── position │ │ ├── cycler.html │ │ ├── default.html │ │ ├── images │ │ │ ├── earth.jpg │ │ │ ├── flight.jpg │ │ │ └── rocket.jpg │ │ └── index.html │ ├── progressbar │ │ ├── animated.html │ │ ├── default.html │ │ ├── images │ │ │ └── pbar-ani.gif │ │ ├── index.html │ │ └── resize.html │ ├── removeClass │ │ ├── default.html │ │ └── index.html │ ├── resizable │ │ ├── animate.html │ │ ├── aspect-ratio.html │ │ ├── constrain-area.html │ │ ├── default.html │ │ ├── delay-start.html │ │ ├── helper.html │ │ ├── index.html │ │ ├── max-min.html │ │ ├── snap-to-grid.html │ │ ├── synchronous-resize.html │ │ ├── textarea.html │ │ └── visual-feedback.html │ ├── selectable │ │ ├── default.html │ │ ├── display-grid.html │ │ ├── index.html │ │ └── serialize.html │ ├── show │ │ ├── default.html │ │ └── index.html │ ├── slider │ │ ├── colorpicker.html │ │ ├── default.html │ │ ├── hotelrooms.html │ │ ├── index.html │ │ ├── multiple-vertical.html │ │ ├── range-vertical.html │ │ ├── range.html │ │ ├── rangemax.html │ │ ├── rangemin.html │ │ ├── side-scroll.html │ │ ├── slider-vertical.html │ │ ├── steps.html │ │ └── tabs.html │ ├── sortable │ │ ├── connect-lists-through-tabs.html │ │ ├── connect-lists.html │ │ ├── default.html │ │ ├── delay-start.html │ │ ├── display-grid.html │ │ ├── empty-lists.html │ │ ├── index.html │ │ ├── items.html │ │ ├── placeholder.html │ │ └── portlets.html │ ├── switchClass │ │ ├── default.html │ │ └── index.html │ ├── tabs │ │ ├── ajax.html │ │ ├── ajax │ │ │ ├── content1.html │ │ │ ├── content2.html │ │ │ ├── content3-slow.php │ │ │ └── content4-broken.php │ │ ├── bottom.html │ │ ├── collapsible.html │ │ ├── default.html │ │ ├── index.html │ │ ├── manipulation.html │ │ ├── mouseover.html │ │ ├── sortable.html │ │ └── vertical.html │ ├── toggle │ │ ├── default.html │ │ └── index.html │ └── toggleClass │ │ ├── default.html │ │ └── index.html ├── docs │ ├── accordion.html │ ├── addClass.html │ ├── animate.html │ ├── autocomplete.html │ ├── button.html │ ├── datepicker.html │ ├── dialog.html │ ├── draggable.html │ ├── droppable.html │ ├── effect.html │ ├── hide.html │ ├── position.html │ ├── progressbar.html │ ├── removeClass.html │ ├── resizable.html │ ├── selectable.html │ ├── show.html │ ├── slider.html │ ├── sortable.html │ ├── switchClass.html │ ├── tabs.html │ ├── toggle.html │ └── toggleClass.html ├── external │ ├── jquery.bgiframe-2.1.1.js │ ├── jquery.cookie.js │ ├── jquery.metadata.js │ ├── qunit.css │ └── qunit.js ├── jquery-1.4.2.js ├── themes │ ├── base │ │ ├── images │ │ │ ├── ui-anim_basic_16x16.gif │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery.ui.accordion.css │ │ ├── jquery.ui.all.css │ │ ├── jquery.ui.autocomplete.css │ │ ├── jquery.ui.base.css │ │ ├── jquery.ui.button.css │ │ ├── jquery.ui.core.css │ │ ├── jquery.ui.datepicker.css │ │ ├── jquery.ui.dialog.css │ │ ├── jquery.ui.progressbar.css │ │ ├── jquery.ui.resizable.css │ │ ├── jquery.ui.slider.css │ │ ├── jquery.ui.tabs.css │ │ └── jquery.ui.theme.css │ └── overcast │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ ├── ui-bg_flat_55_c0402a_40x100.png │ │ ├── ui-bg_flat_55_eeeeee_40x100.png │ │ ├── ui-bg_glass_100_f8f8f8_1x400.png │ │ ├── ui-bg_glass_35_dddddd_1x400.png │ │ ├── ui-bg_glass_60_eeeeee_1x400.png │ │ ├── ui-bg_inset-hard_75_999999_1x100.png │ │ ├── ui-bg_inset-soft_50_c9c9c9_1x100.png │ │ ├── ui-icons_3383bb_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_70b2e1_256x240.png │ │ ├── ui-icons_999999_256x240.png │ │ └── ui-icons_fbc856_256x240.png │ │ ├── jquery-ui-1.8.custom.css │ │ ├── jquery.ui.accordion.css │ │ ├── jquery.ui.all.css │ │ ├── jquery.ui.autocomplete.css │ │ ├── jquery.ui.base.css │ │ ├── jquery.ui.button.css │ │ ├── jquery.ui.core.css │ │ ├── jquery.ui.datepicker.css │ │ ├── jquery.ui.dialog.css │ │ ├── jquery.ui.progressbar.css │ │ ├── jquery.ui.resizable.css │ │ ├── jquery.ui.slider.css │ │ ├── jquery.ui.tabs.css │ │ └── jquery.ui.theme.css ├── ui │ ├── i18n │ │ ├── jquery-ui-i18n.js │ │ ├── jquery.ui.datepicker-af.js │ │ ├── jquery.ui.datepicker-ar.js │ │ ├── jquery.ui.datepicker-az.js │ │ ├── jquery.ui.datepicker-bg.js │ │ ├── jquery.ui.datepicker-bs.js │ │ ├── jquery.ui.datepicker-ca.js │ │ ├── jquery.ui.datepicker-cs.js │ │ ├── jquery.ui.datepicker-da.js │ │ ├── jquery.ui.datepicker-de.js │ │ ├── jquery.ui.datepicker-el.js │ │ ├── jquery.ui.datepicker-en-GB.js │ │ ├── jquery.ui.datepicker-eo.js │ │ ├── jquery.ui.datepicker-es.js │ │ ├── jquery.ui.datepicker-et.js │ │ ├── jquery.ui.datepicker-eu.js │ │ ├── jquery.ui.datepicker-fa.js │ │ ├── jquery.ui.datepicker-fi.js │ │ ├── jquery.ui.datepicker-fo.js │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ ├── jquery.ui.datepicker-fr.js │ │ ├── jquery.ui.datepicker-he.js │ │ ├── jquery.ui.datepicker-hr.js │ │ ├── jquery.ui.datepicker-hu.js │ │ ├── jquery.ui.datepicker-hy.js │ │ ├── jquery.ui.datepicker-id.js │ │ ├── jquery.ui.datepicker-is.js │ │ ├── jquery.ui.datepicker-it.js │ │ ├── jquery.ui.datepicker-ja.js │ │ ├── jquery.ui.datepicker-ko.js │ │ ├── jquery.ui.datepicker-lt.js │ │ ├── jquery.ui.datepicker-lv.js │ │ ├── jquery.ui.datepicker-ms.js │ │ ├── jquery.ui.datepicker-nl.js │ │ ├── jquery.ui.datepicker-no.js │ │ ├── jquery.ui.datepicker-pl.js │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ ├── jquery.ui.datepicker-ro.js │ │ ├── jquery.ui.datepicker-ru.js │ │ ├── jquery.ui.datepicker-sk.js │ │ ├── jquery.ui.datepicker-sl.js │ │ ├── jquery.ui.datepicker-sq.js │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ ├── jquery.ui.datepicker-sr.js │ │ ├── jquery.ui.datepicker-sv.js │ │ ├── jquery.ui.datepicker-ta.js │ │ ├── jquery.ui.datepicker-th.js │ │ ├── jquery.ui.datepicker-tr.js │ │ ├── jquery.ui.datepicker-uk.js │ │ ├── jquery.ui.datepicker-vi.js │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ └── jquery.ui.datepicker-zh-TW.js │ ├── jquery-ui-1.8.custom.js │ ├── jquery.effects.blind.js │ ├── jquery.effects.bounce.js │ ├── jquery.effects.clip.js │ ├── jquery.effects.core.js │ ├── jquery.effects.drop.js │ ├── jquery.effects.explode.js │ ├── jquery.effects.fold.js │ ├── jquery.effects.highlight.js │ ├── jquery.effects.pulsate.js │ ├── jquery.effects.scale.js │ ├── jquery.effects.shake.js │ ├── jquery.effects.slide.js │ ├── jquery.effects.transfer.js │ ├── jquery.ui.accordion.js │ ├── jquery.ui.autocomplete.js │ ├── jquery.ui.button.js │ ├── jquery.ui.core.js │ ├── jquery.ui.datepicker.js │ ├── jquery.ui.dialog.js │ ├── jquery.ui.draggable.js │ ├── jquery.ui.droppable.js │ ├── jquery.ui.mouse.js │ ├── jquery.ui.position.js │ ├── jquery.ui.progressbar.js │ ├── jquery.ui.resizable.js │ ├── jquery.ui.selectable.js │ ├── jquery.ui.slider.js │ ├── jquery.ui.sortable.js │ ├── jquery.ui.tabs.js │ ├── jquery.ui.widget.js │ └── minified │ │ ├── jquery.effects.blind.min.js │ │ ├── jquery.effects.bounce.min.js │ │ ├── jquery.effects.clip.min.js │ │ ├── jquery.effects.core.min.js │ │ ├── jquery.effects.drop.min.js │ │ ├── jquery.effects.explode.min.js │ │ ├── jquery.effects.fold.min.js │ │ ├── jquery.effects.highlight.min.js │ │ ├── jquery.effects.pulsate.min.js │ │ ├── jquery.effects.scale.min.js │ │ ├── jquery.effects.shake.min.js │ │ ├── jquery.effects.slide.min.js │ │ ├── jquery.effects.transfer.min.js │ │ ├── jquery.ui.accordion.min.js │ │ ├── jquery.ui.autocomplete.min.js │ │ ├── jquery.ui.button.min.js │ │ ├── jquery.ui.core.min.js │ │ ├── jquery.ui.datepicker.min.js │ │ ├── jquery.ui.dialog.min.js │ │ ├── jquery.ui.draggable.min.js │ │ ├── jquery.ui.droppable.min.js │ │ ├── jquery.ui.mouse.min.js │ │ ├── jquery.ui.position.min.js │ │ ├── jquery.ui.progressbar.min.js │ │ ├── jquery.ui.resizable.min.js │ │ ├── jquery.ui.selectable.min.js │ │ ├── jquery.ui.slider.min.js │ │ ├── jquery.ui.sortable.min.js │ │ ├── jquery.ui.tabs.min.js │ │ └── jquery.ui.widget.min.js └── version.txt ├── forum ├── NinkoBB │ ├── admin.php │ ├── avatars │ │ └── default.jpg │ ├── include │ │ ├── common.php │ │ ├── config.php │ │ ├── connect.php │ │ ├── database.php │ │ ├── database │ │ │ ├── mysql.class.php │ │ │ └── mysqli.class.php │ │ ├── functions │ │ │ ├── admin.php │ │ │ ├── common.php │ │ │ ├── forum.php │ │ │ ├── hooks.php │ │ │ ├── language.php │ │ │ ├── parser.php │ │ │ ├── parser_bbcode.php │ │ │ ├── theme.php │ │ │ ├── user.php │ │ │ └── validation.php │ │ ├── languages │ │ │ ├── en.php │ │ │ ├── index.html │ │ │ └── plugins │ │ │ │ ├── captcha.php │ │ │ │ ├── guest_counter.php │ │ │ │ └── titles.php │ │ ├── sessions.php │ │ └── utf8 │ │ │ ├── docs │ │ │ ├── examples │ │ │ │ ├── 1.php │ │ │ │ └── tables.php │ │ │ ├── makeDocs.pl │ │ │ ├── phputf8.pod │ │ │ ├── print.css │ │ │ └── screen.css │ │ │ ├── exp │ │ │ └── regexunicode.php │ │ │ ├── mbstring │ │ │ └── core.php │ │ │ ├── native │ │ │ └── core.php │ │ │ ├── ord.php │ │ │ ├── str_ireplace.php │ │ │ ├── str_pad.php │ │ │ ├── str_split.php │ │ │ ├── strcasecmp.php │ │ │ ├── strcspn.php │ │ │ ├── stristr.php │ │ │ ├── strrev.php │ │ │ ├── strspn.php │ │ │ ├── substr_replace.php │ │ │ ├── trim.php │ │ │ ├── ucfirst.php │ │ │ ├── ucwords.php │ │ │ ├── utf8.php │ │ │ └── utils │ │ │ ├── ascii.php │ │ │ ├── bad.php │ │ │ ├── patterns.php │ │ │ ├── position.php │ │ │ ├── specials.php │ │ │ ├── unicode.php │ │ │ └── validation.php │ ├── index.php │ ├── logout.php │ ├── message.php │ ├── plugins │ │ ├── bbcbar.php │ │ ├── bbcbar │ │ │ ├── bbcbar.css │ │ │ ├── bbcbar.js │ │ │ └── buttons.gif │ │ ├── captcha.php │ │ ├── captcha │ │ │ ├── Thumbs.db │ │ │ ├── courbd.ttf │ │ │ └── secure.jpg │ │ ├── guest_counter.php │ │ ├── index.html │ │ └── titles.php │ ├── read.php │ ├── register.php │ ├── templates │ │ ├── default │ │ │ ├── admin │ │ │ │ ├── categories.php │ │ │ │ ├── home.php │ │ │ │ ├── index.html │ │ │ │ ├── navigation.php │ │ │ │ ├── plugins.php │ │ │ │ ├── posts.php │ │ │ │ ├── settings.php │ │ │ │ ├── topics.php │ │ │ │ └── users.php │ │ │ ├── assets │ │ │ │ ├── css │ │ │ │ │ ├── index.html │ │ │ │ │ ├── ninko.css │ │ │ │ │ └── ninko.css~ │ │ │ │ ├── images │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── buttons.gif │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ │ ├── bbcode.js │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery.js │ │ │ │ │ └── jquery.scrollTo-min.js │ │ │ ├── footer.php │ │ │ ├── footer.php~ │ │ │ ├── forum │ │ │ │ ├── category-close.php │ │ │ │ ├── category-open.php │ │ │ │ ├── details.php │ │ │ │ ├── index-close.php │ │ │ │ ├── index-open.php │ │ │ │ ├── index.html │ │ │ │ ├── message-form.php │ │ │ │ ├── no-topics.php │ │ │ │ ├── post.php │ │ │ │ ├── preview.php │ │ │ │ ├── quick-reply.php │ │ │ │ ├── sticky-topics.php │ │ │ │ └── topics.php │ │ │ ├── header.php │ │ │ ├── index.html │ │ │ ├── my_text │ │ │ ├── my_text~ │ │ │ ├── navigate_stuff │ │ │ ├── navigate_stuff~ │ │ │ ├── navigation.php │ │ │ ├── navigation.php~ │ │ │ └── user │ │ │ │ ├── account.php │ │ │ │ ├── avatar.php │ │ │ │ ├── home.php │ │ │ │ ├── index.html │ │ │ │ ├── navigation.php │ │ │ │ ├── profile.php │ │ │ │ ├── register.php │ │ │ │ └── view.php │ │ └── index.html │ └── users.php └── minibb │ ├── .directory │ ├── COPYING │ ├── README.txt │ ├── bb_admin.php │ ├── bb_codes.php │ ├── bb_cookie.php │ ├── bb_default_style.css~ │ ├── bb_func_checkusr.php │ ├── bb_func_confpwd.php │ ├── bb_func_delmsg.php │ ├── bb_func_deltopic.php │ ├── bb_func_editmsg.php │ ├── bb_func_editprf.php │ ├── bb_func_forums.php │ ├── bb_func_inslng.php │ ├── bb_func_ldisc.php │ ├── bb_func_locktop.php │ ├── bb_func_login.php │ ├── bb_func_man.php │ ├── bb_func_movetpc.php │ ├── bb_func_posthold.php │ ├── bb_func_posthold.php~ │ ├── bb_func_pthread.php │ ├── bb_func_ptopic.php │ ├── bb_func_regusr.php │ ├── bb_func_search.php │ ├── bb_func_sendpwd.php │ ├── bb_func_stats.php │ ├── bb_func_sticky.php │ ├── bb_func_txt.php │ ├── bb_func_unsub.php │ ├── bb_func_usernfo.php │ ├── bb_func_usrdat.php │ ├── bb_func_vforum.php │ ├── bb_func_viewip.php │ ├── bb_func_vthread.php │ ├── bb_func_vtopic.php │ ├── bb_functions.php │ ├── bb_plugins.php │ ├── bb_plugins2.php │ ├── bb_plugins_user.php │ ├── bb_specials.php │ ├── img │ ├── button_bold.gif │ ├── button_image.gif │ ├── button_italic.gif │ ├── button_url.gif │ ├── dottedhl.gif │ ├── forum_icons │ │ └── default.gif │ ├── keypwd.gif │ ├── menubg.jpg │ ├── mini_bb.gif │ ├── minibb.gif │ ├── p.gif │ ├── page.gif │ ├── s.gif │ ├── topic_default.gif │ ├── topic_empty.gif │ ├── topic_hot.gif │ ├── topic_locked.gif │ ├── topic_reverse.gif │ ├── topic_sticky.gif │ ├── topic_stlock.gif │ └── up.gif │ ├── index.php │ ├── lang │ └── eng.php │ ├── setup_mysql.php │ ├── setup_options.php │ ├── setup_options.php~ │ └── templates │ ├── .directory │ ├── admin_addforum1.html │ ├── admin_banusr1.html │ ├── admin_deleteban1.html │ ├── admin_editforum1.html │ ├── admin_editforum2.html │ ├── admin_export_emails.html │ ├── admin_login.html │ ├── admin_panel.html │ ├── admin_removeuser1.html │ ├── admin_searchusers.html │ ├── admin_searchusersres.html │ ├── admin_sendmails1.html │ ├── admin_viewsubs.html │ ├── email_admin_userregister_eng.txt │ ├── email_reply_notify_eng.txt │ ├── email_user_confirm_eng.txt │ ├── email_user_password_eng.txt │ ├── email_user_register_eng.txt │ ├── faq.html │ ├── form.js │ ├── go.html │ ├── main_access_denied.html │ ├── main_footer.html │ ├── main_forumgroup.html │ ├── main_forums.html │ ├── main_forums.html~ │ ├── main_forums_cell.html │ ├── main_forums_cell.html~ │ ├── main_forums_list.html │ ├── main_header.html │ ├── main_header.html~ │ ├── main_last_discuss_cell.html │ ├── main_last_discussions.html │ ├── main_modern_fcell.html │ ├── main_modern_layout.html │ ├── main_modern_lcell.html │ ├── main_modern_stitle.html │ ├── main_post_area.html │ ├── main_post_closed.html │ ├── main_post_form.html │ ├── main_posthold.html │ ├── main_posts.html │ ├── main_posts.html~ │ ├── main_posts_cell.html │ ├── main_posts_cell.html~ │ ├── main_topics.html │ ├── main_topics.html~ │ ├── main_topics_cell.html │ ├── main_user_info.html │ ├── main_user_info_cell.html │ ├── main_warning.html │ ├── manual_eng.html │ ├── protect_forums.html │ ├── search.html │ ├── stats.html │ ├── stats_bar.html │ ├── tools_edit_post.html │ ├── tools_edit_topic_title.html │ ├── tools_move_topic.html │ ├── tools_send_password.html │ ├── tools_userips.html │ ├── user_dataform.html │ ├── user_logged_in.html │ ├── user_login_form.html │ ├── user_login_only_form.html │ └── user_login_only_form.html~ ├── forum_b └── minibb │ ├── .directory │ ├── COPYING │ ├── README.txt │ ├── bb_admin.php │ ├── bb_codes.php │ ├── bb_cookie.php │ ├── bb_default_style.css~ │ ├── bb_func_checkusr.php │ ├── bb_func_confpwd.php │ ├── bb_func_delmsg.php │ ├── bb_func_deltopic.php │ ├── bb_func_editmsg.php │ ├── bb_func_editprf.php │ ├── bb_func_forums.php │ ├── bb_func_inslng.php │ ├── bb_func_ldisc.php │ ├── bb_func_locktop.php │ ├── bb_func_login.php │ ├── bb_func_man.php │ ├── bb_func_movetpc.php │ ├── bb_func_posthold.php │ ├── bb_func_posthold.php~ │ ├── bb_func_pthread.php │ ├── bb_func_ptopic.php │ ├── bb_func_regusr.php │ ├── bb_func_search.php │ ├── bb_func_sendpwd.php │ ├── bb_func_stats.php │ ├── bb_func_sticky.php │ ├── bb_func_txt.php │ ├── bb_func_unsub.php │ ├── bb_func_usernfo.php │ ├── bb_func_usrdat.php │ ├── bb_func_vforum.php │ ├── bb_func_viewip.php │ ├── bb_func_vthread.php │ ├── bb_func_vtopic.php │ ├── bb_functions.php │ ├── bb_plugins.php │ ├── bb_plugins2.php │ ├── bb_plugins_user.php │ ├── bb_specials.php │ ├── img │ ├── button_bold.gif │ ├── button_image.gif │ ├── button_italic.gif │ ├── button_url.gif │ ├── dottedhl.gif │ ├── forum_icons │ │ └── default.gif │ ├── keypwd.gif │ ├── menubg.jpg │ ├── mini_bb.gif │ ├── minibb.gif │ ├── p.gif │ ├── page.gif │ ├── s.gif │ ├── topic_default.gif │ ├── topic_empty.gif │ ├── topic_hot.gif │ ├── topic_locked.gif │ ├── topic_reverse.gif │ ├── topic_sticky.gif │ ├── topic_stlock.gif │ └── up.gif │ ├── index.php │ ├── lang │ └── eng.php │ ├── setup_mysql.php │ ├── setup_options.php │ ├── setup_options.php~ │ └── templates │ ├── .directory │ ├── admin_addforum1.html │ ├── admin_banusr1.html │ ├── admin_deleteban1.html │ ├── admin_editforum1.html │ ├── admin_editforum2.html │ ├── admin_export_emails.html │ ├── admin_login.html │ ├── admin_panel.html │ ├── admin_removeuser1.html │ ├── admin_searchusers.html │ ├── admin_searchusersres.html │ ├── admin_sendmails1.html │ ├── admin_viewsubs.html │ ├── email_admin_userregister_eng.txt │ ├── email_reply_notify_eng.txt │ ├── email_user_confirm_eng.txt │ ├── email_user_password_eng.txt │ ├── email_user_register_eng.txt │ ├── faq.html │ ├── form.js │ ├── go.html │ ├── main_access_denied.html │ ├── main_footer.html │ ├── main_forumgroup.html │ ├── main_forums.html │ ├── main_forums.html~ │ ├── main_forums_cell.html │ ├── main_forums_cell.html~ │ ├── main_forums_list.html │ ├── main_header.html │ ├── main_header.html~ │ ├── main_last_discuss_cell.html │ ├── main_last_discussions.html │ ├── main_modern_fcell.html │ ├── main_modern_layout.html │ ├── main_modern_lcell.html │ ├── main_modern_stitle.html │ ├── main_post_area.html │ ├── main_post_closed.html │ ├── main_post_form.html │ ├── main_posthold.html │ ├── main_posts.html │ ├── main_posts.html~ │ ├── main_posts_cell.html │ ├── main_posts_cell.html~ │ ├── main_topics.html │ ├── main_topics.html~ │ ├── main_topics_cell.html │ ├── main_user_info.html │ ├── main_user_info_cell.html │ ├── main_warning.html │ ├── manual_eng.html │ ├── protect_forums.html │ ├── search.html │ ├── stats.html │ ├── stats_bar.html │ ├── tools_edit_post.html │ ├── tools_edit_topic_title.html │ ├── tools_move_topic.html │ ├── tools_send_password.html │ ├── tools_userips.html │ ├── user_dataform.html │ ├── user_logged_in.html │ ├── user_login_form.html │ ├── user_login_only_form.html │ └── user_login_only_form.html~ ├── images ├── .directory ├── 0809b903ee757dbffb63d8c3677a0cd8.png ├── 1265081499.jpg ├── 12e11177d56479d0a889de3e09e87165.png ├── 192ba5280ac62b2566d179041986be08.gif ├── 2dca20402e61886eb68d11f258d50abb.jpg ├── 33d0f0fcacbdff6b28b2aa32a9ae7de9.gif ├── 381a3f7f5e1d6f143537c234a89a17bf.png ├── 3b3b4bec9511e54848f7efb8d8b749a9.gif ├── 4690cb768325bf3a8ad85129b8ccdace.png ├── 49415ba307c480108b3e4f2c988c3b53.png ├── 4c627030e1efe422a181d6a6a9796d48.png ├── 5385104fa26215c4bfa7c7bb0b0010f2.jpg ├── 5ec5b0dbd503644e8756836e91a4910b.jpg ├── 711bce37172a5275069e215ba5d29139.gif ├── 71d26552562bacb71da3675406757b3b.gif ├── 86affe235137958b79fcb6ec6b6519c9.png ├── 89c05ab508a1fc3acac239c6bd293c63.png ├── 8adfdbbb44a43ca59a07b4d6a12cef04.png ├── 916d14c447b309dca049d64f7de98227.png ├── 96750ad65caf6f2a94227b8b7205e89a.png ├── 96dbbb114444c9900f8b783035a34cc9.png ├── 9890c827206ddaaf32ea557d5e275317.png ├── 9dcf35ef7b5c2881fbbf7272e1f5bcc4.png ├── a71098248312c2e8a5aa11599609856a.png ├── a7a55d3b53b86731eb852bfd265af2d8.gif ├── ad54ac993601ff8ed44fb3a19529cf57.png ├── b926850f7261bdd83b0056feee2d381b.png ├── b99a0aa5dd9031cc3706dc2dddee8a44.gif ├── bk_dotted.gif ├── book.jpg ├── c92cba3fef0e42fd22a17ef62e6db0da.png ├── clock.gif ├── comment.gif ├── contentbg.jpg ├── d0a3e779baa49eb818e1e9563558457f.jpg ├── d7bfb16b8d3c72bbdf31e6128ff889a7.jpg ├── e14c00314a69d59d74e0ff547ba1072a.png ├── e22cbda40bdb226c018df7c20375eb64.gif ├── e3ca22cb8e55ad7bb94ad91bd64842d1.png ├── f2df926c9ee64304b63fbea299ee1736.png ├── f3eea9d6652effedc0fe464794fba017.png ├── firefox-gray.jpg ├── footerbg.jpg ├── headerbg.jpg ├── logobg.jpg ├── no-cover.png ├── no_avatar.gif ├── page.gif ├── quote.gif ├── quote2.gif ├── sample-image.jpg └── test_cover.png ├── index.html ├── index.php ├── info.php ├── info2.php ├── js ├── gui-functionality.js ├── jquery-1.4.2.min.js ├── jquery-ui-1.8.custom.min.js ├── jquery.blockUI.js ├── jquery.cookie.js └── jquery.form.js ├── license.txt ├── msttcorefonts-2.0-1.spec ├── nbproject ├── private │ ├── config.properties │ ├── private.properties │ └── private.xml ├── project.properties └── project.xml ├── system ├── application │ ├── config │ │ ├── autoload.php │ │ ├── config.php │ │ ├── constants.php │ │ ├── database.php │ │ ├── doctypes.php │ │ ├── hooks.php │ │ ├── index.html │ │ ├── mimes.php │ │ ├── routes.php │ │ ├── smileys.php │ │ └── user_agents.php │ ├── controllers │ │ ├── index.html │ │ └── welcome.php │ ├── errors │ │ ├── error_404.php │ │ ├── error_db.php │ │ ├── error_general.php │ │ ├── error_php.php │ │ └── index.html │ ├── helpers │ │ └── index.html │ ├── hooks │ │ └── index.html │ ├── index.html │ ├── language │ │ └── english │ │ │ └── index.html │ ├── libraries │ │ └── index.html │ ├── models │ │ └── index.html │ └── views │ │ ├── index.html │ │ └── welcome_message.php ├── cache │ └── index.html ├── codeigniter │ ├── Base4.php │ ├── Base5.php │ ├── Base5.php~ │ ├── CodeIgniter.php │ ├── Common.php │ ├── Compat.php │ └── index.html ├── database │ ├── DB.php │ ├── DB_active_rec.php │ ├── DB_cache.php │ ├── DB_driver.php │ ├── DB_forge.php │ ├── DB_result.php │ ├── DB_utility.php │ ├── drivers │ │ ├── index.html │ │ ├── mssql │ │ │ ├── index.html │ │ │ ├── mssql_driver.php │ │ │ ├── mssql_forge.php │ │ │ ├── mssql_result.php │ │ │ └── mssql_utility.php │ │ ├── mysql │ │ │ ├── index.html │ │ │ ├── mysql_driver.php │ │ │ ├── mysql_forge.php │ │ │ ├── mysql_result.php │ │ │ └── mysql_utility.php │ │ ├── mysqli │ │ │ ├── index.html │ │ │ ├── mysqli_driver.php │ │ │ ├── mysqli_forge.php │ │ │ ├── mysqli_result.php │ │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ │ ├── index.html │ │ │ ├── oci8_driver.php │ │ │ ├── oci8_forge.php │ │ │ ├── oci8_result.php │ │ │ └── oci8_utility.php │ │ ├── odbc │ │ │ ├── index.html │ │ │ ├── odbc_driver.php │ │ │ ├── odbc_forge.php │ │ │ ├── odbc_result.php │ │ │ └── odbc_utility.php │ │ ├── postgre │ │ │ ├── index.html │ │ │ ├── postgre_driver.php │ │ │ ├── postgre_forge.php │ │ │ ├── postgre_result.php │ │ │ └── postgre_utility.php │ │ └── sqlite │ │ │ ├── index.html │ │ │ ├── sqlite_driver.php │ │ │ ├── sqlite_forge.php │ │ │ ├── sqlite_result.php │ │ │ └── sqlite_utility.php │ └── index.html ├── fonts │ ├── index.html │ └── texb.ttf ├── helpers │ ├── array_helper.php │ ├── compatibility_helper.php │ ├── cookie_helper.php │ ├── date_helper.php │ ├── directory_helper.php │ ├── download_helper.php │ ├── email_helper.php │ ├── file_helper.php │ ├── form_helper.php │ ├── html_helper.php │ ├── index.html │ ├── inflector_helper.php │ ├── language_helper.php │ ├── number_helper.php │ ├── path_helper.php │ ├── security_helper.php │ ├── smiley_helper.php │ ├── string_helper.php │ ├── text_helper.php │ ├── typography_helper.php │ ├── url_helper.php │ └── xml_helper.php ├── index.html ├── language │ ├── english │ │ ├── calendar_lang.php │ │ ├── date_lang.php │ │ ├── db_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── ftp_lang.php │ │ ├── imglib_lang.php │ │ ├── index.html │ │ ├── number_lang.php │ │ ├── profiler_lang.php │ │ ├── scaffolding_lang.php │ │ ├── unit_test_lang.php │ │ ├── upload_lang.php │ │ └── validation_lang.php │ └── index.html ├── libraries │ ├── Benchmark.php │ ├── Calendar.php │ ├── Cart.php │ ├── Config.php │ ├── Controller.php │ ├── Controller.php~ │ ├── Email.php │ ├── Encrypt.php │ ├── Exceptions.php │ ├── Form_validation.php │ ├── Ftp.php │ ├── Hooks.php │ ├── Image_lib.php │ ├── Input.php │ ├── Language.php │ ├── Loader.php │ ├── Log.php │ ├── Model.php │ ├── Model.php~ │ ├── Output.php │ ├── Pagination.php │ ├── Parser.php │ ├── Profiler.php │ ├── Router.php │ ├── Session.php │ ├── Sha1.php │ ├── Table.php │ ├── Trackback.php │ ├── Typography.php │ ├── URI.php │ ├── Unit_test.php │ ├── Upload.php │ ├── User_agent.php │ ├── Validation.php │ ├── Xmlrpc.php │ ├── Xmlrpcs.php │ ├── Zip.php │ └── index.html ├── logs │ └── index.html ├── plugins │ ├── captcha_pi.php │ ├── index.html │ └── js_calendar_pi.php └── scaffolding │ ├── Scaffolding.php │ ├── images │ ├── background.jpg │ ├── index.html │ └── logo.jpg │ ├── index.html │ └── views │ ├── add.php │ ├── delete.php │ ├── edit.php │ ├── footer.php │ ├── header.php │ ├── index.html │ ├── no_data.php │ ├── stylesheet.css │ └── view.php ├── uml ├── 7.session ├── cpp_includes ├── generation_settings ├── idl_includes ├── java_imports ├── python_imports ├── stereotypes ├── tools └── uml.prj └── user_guide ├── changelog.html ├── database ├── active_record.html ├── caching.html ├── call_function.html ├── configuration.html ├── connecting.html ├── examples.html ├── fields.html ├── forge.html ├── helpers.html ├── index.html ├── queries.html ├── results.html ├── table_data.html ├── transactions.html └── utilities.html ├── doc_style ├── index.html └── template.html ├── general ├── alternative_php.html ├── ancillary_classes.html ├── autoloader.html ├── caching.html ├── common_functions.html ├── controllers.html ├── core_classes.html ├── creating_libraries.html ├── credits.html ├── errors.html ├── helpers.html ├── hooks.html ├── libraries.html ├── managing_apps.html ├── models.html ├── plugins.html ├── profiling.html ├── quick_reference.html ├── requirements.html ├── reserved_names.html ├── routing.html ├── scaffolding.html ├── security.html ├── styleguide.html ├── urls.html └── views.html ├── helpers ├── array_helper.html ├── compatibility_helper.html ├── cookie_helper.html ├── date_helper.html ├── directory_helper.html ├── download_helper.html ├── email_helper.html ├── file_helper.html ├── form_helper.html ├── html_helper.html ├── inflector_helper.html ├── language_helper.html ├── number_helper.html ├── path_helper.html ├── security_helper.html ├── smiley_helper.html ├── string_helper.html ├── text_helper.html ├── typography_helper.html ├── url_helper.html └── xml_helper.html ├── images ├── appflowchart.gif ├── arrow.gif ├── ci_logo.jpg ├── ci_logo_flame.jpg ├── ci_quick_ref.png ├── codeigniter_1.7.1_helper_reference.pdf ├── codeigniter_1.7.1_helper_reference.png ├── codeigniter_1.7.1_library_reference.pdf ├── codeigniter_1.7.1_library_reference.png ├── file.gif ├── folder.gif ├── nav_bg_darker.jpg ├── nav_separator_darker.jpg ├── nav_toggle_darker.jpg ├── smile.gif └── transparent.gif ├── index.html ├── installation ├── downloads.html ├── index.html ├── troubleshooting.html ├── upgrade_120.html ├── upgrade_130.html ├── upgrade_131.html ├── upgrade_132.html ├── upgrade_133.html ├── upgrade_140.html ├── upgrade_141.html ├── upgrade_150.html ├── upgrade_152.html ├── upgrade_153.html ├── upgrade_154.html ├── upgrade_160.html ├── upgrade_161.html ├── upgrade_162.html ├── upgrade_163.html ├── upgrade_170.html ├── upgrade_171.html ├── upgrade_172.html ├── upgrade_b11.html └── upgrading.html ├── libraries ├── benchmark.html ├── calendar.html ├── cart.html ├── config.html ├── email.html ├── encryption.html ├── file_uploading.html ├── form_validation.html ├── ftp.html ├── image_lib.html ├── input.html ├── language.html ├── loader.html ├── output.html ├── pagination.html ├── parser.html ├── sessions.html ├── table.html ├── trackback.html ├── typography.html ├── unit_testing.html ├── uri.html ├── user_agent.html ├── validation.html ├── xmlrpc.html └── zip.html ├── license.html ├── nav ├── hacks.txt ├── moo.fx.js ├── moo.fx.pack.js ├── nav.js ├── prototype.lite.js └── user_guide_menu.js ├── overview ├── appflow.html ├── at_a_glance.html ├── cheatsheets.html ├── features.html ├── getting_started.html ├── goals.html ├── index.html └── mvc.html ├── toc.html └── userguide.css /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BookSharing 2 | Book Sharing social network using PHP CodeIgniter 3 | 4 | Unfortunately SQL for creating DB tables,relations and etc for MySQL were lost. 5 | Though it can be manually built, by using representation of schema which can be found here: 6 | https://docs.google.com/drawings/d/1RrUnGScH9k9FFzjLRo5rJ8zXGX92h8IibB73OWEZQIU 7 | -------------------------------------------------------------------------------- /application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |Directory access is forbidden.
8 | 9 | 10 |