├── .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 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/controllers/Controllers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/application/controllers/Controllers.png -------------------------------------------------------------------------------- /application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/controllers/welcome.php: -------------------------------------------------------------------------------- 1 | load->view('welcome_message'); 13 | } 14 | } 15 | 16 | /* End of file welcome.php */ 17 | /* Location: ./system/application/controllers/welcome.php */ -------------------------------------------------------------------------------- /application/errors/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 404 Page Not Found 4 | 27 | 28 | 29 |
30 |

31 | 32 |
33 | 34 | -------------------------------------------------------------------------------- /application/errors/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Database Error 4 | 27 | 28 | 29 |
30 |

31 | 32 |
33 | 34 | -------------------------------------------------------------------------------- /application/errors/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Error 4 | 27 | 28 | 29 |
30 |

31 | 32 |
33 | 34 | -------------------------------------------------------------------------------- /application/errors/error_php.php: -------------------------------------------------------------------------------- 1 |
2 | 3 |

A PHP Error was encountered

4 | 5 |

Severity:

6 |

Message:

7 |

Filename:

8 |

Line Number:

9 | 10 |
-------------------------------------------------------------------------------- /application/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/models/models.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/application/models/models.png -------------------------------------------------------------------------------- /application/views/copyright.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /application/views/includes/login_footer.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /application/views/includes/login_header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Welcome to BookSharing social network 7 | 8 | 9 | -------------------------------------------------------------------------------- /application/views/includes/template.php: -------------------------------------------------------------------------------- 1 | load->view('includes/login_header'); ?> 2 | 3 | load->view($credentials_content); ?> 4 | 5 | load->view('includes/login_footer'); ?> -------------------------------------------------------------------------------- /application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /application/views/login_form.php: -------------------------------------------------------------------------------- 1 |
2 |

Login

3 | 10 |
-------------------------------------------------------------------------------- /application/views/login_view/login_footer.php: -------------------------------------------------------------------------------- 1 | 14 | 15 | -------------------------------------------------------------------------------- /application/views/login_view/login_form.php: -------------------------------------------------------------------------------- 1 |
2 |

Login

3 | 'jid_f_login', 5 | 'class' => 'form-login join-login'); 6 | echo form_open('login/validate_credentials', $form_attributes); 7 | echo form_label('Username: ', 'l_username'); 8 | echo form_input('username', 'Username'); 9 | echo form_label('Password: ', 'l_password'); 10 | echo form_password('password', 'Password'); 11 | echo form_hidden('login','login'); 12 | echo form_submit('login', 'Login'); 13 | echo anchor('login/signup', 'Sign Up'); 14 | echo form_close(); 15 | ?> 16 |
-------------------------------------------------------------------------------- /application/views/login_view/signup_successful.php: -------------------------------------------------------------------------------- 1 |

Congrats!

2 |

Your account has been created.

3 | -------------------------------------------------------------------------------- /application/views/signup_form.php: -------------------------------------------------------------------------------- 1 |

Create an Account

2 | 3 |
4 | Personal Information 5 | 6 | 12 |
13 | 14 |
15 | Login Info 16 | 17 | 24 | 25 | ');?> 26 |
27 | -------------------------------------------------------------------------------- /application/views/signup_successful.php: -------------------------------------------------------------------------------- 1 |

Congrats!

2 |

Your account has been created.

3 | -------------------------------------------------------------------------------- /application/views/site_area.php: -------------------------------------------------------------------------------- 1 | this is site area -------------------------------------------------------------------------------- /application/views/site_view/about_view.php: -------------------------------------------------------------------------------- 1 |
2 |

About

3 |

4 | BookSharing is social network website which is started in April 2010 as 5 | a project for bachelor thesis by Viaceslavas Duk, a software developer. 6 | Major idea of this social network service was to give people storage 7 | for their book collections, find people who is also interested in books 8 | and give a way to share books with them. 9 |

10 |

-------------------------------------------------------------------------------- /application/views/site_view/community_view.php: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /application/views/site_view/dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/application/views/site_view/dummy.php -------------------------------------------------------------------------------- /application/views/site_view/error.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 'content', 5 | 'cols' => '60', 6 | 'value' => 'Type in your news content'); 7 | echo form_open('site/send_news'); 8 | echo form_label('News header: ', 'l_header'); 9 | echo form_input('header', set_value('header', 'Type in header')); 10 | echo form_label('News content: ', 'l_content'); 11 | echo form_textarea($textarea_init); 12 | echo "
"; 13 | echo form_submit('submit', 'Post news'); 14 | echo form_close(); 15 | ?> 16 |
17 | -------------------------------------------------------------------------------- /application/views/site_view/profile_edit_successful.php: -------------------------------------------------------------------------------- 1 |

You are successfuly edited your profile.

2 | Return to profile -------------------------------------------------------------------------------- /application/views/site_view/site_area.php: -------------------------------------------------------------------------------- 1 | 2 |
3 |
4 | 5 |
6 | load->view($main_content); ?> 7 |
8 | 9 | load->view($profile_content); ?> 10 | 11 |
12 |
13 | 14 | -------------------------------------------------------------------------------- /application/views/site_view/site_footer.php: -------------------------------------------------------------------------------- 1 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /application/views/template.php: -------------------------------------------------------------------------------- 1 | load->view($header_content); ?> 2 | 3 | load->view($site_content); ?> 4 | 5 | load->view($footer_content); ?> -------------------------------------------------------------------------------- /css/overcast/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/css/overcast/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /css/overcast/images/ui-bg_flat_0_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/css/overcast/images/ui-bg_flat_0_eeeeee_40x100.png -------------------------------------------------------------------------------- /css/overcast/images/ui-bg_flat_55_c0402a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/css/overcast/images/ui-bg_flat_55_c0402a_40x100.png -------------------------------------------------------------------------------- /css/overcast/images/ui-bg_flat_55_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/css/overcast/images/ui-bg_flat_55_eeeeee_40x100.png -------------------------------------------------------------------------------- /css/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/css/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png -------------------------------------------------------------------------------- /css/overcast/images/ui-bg_glass_35_dddddd_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/css/overcast/images/ui-bg_glass_35_dddddd_1x400.png -------------------------------------------------------------------------------- /css/overcast/images/ui-bg_glass_60_eeeeee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/css/overcast/images/ui-bg_glass_60_eeeeee_1x400.png -------------------------------------------------------------------------------- /css/overcast/images/ui-bg_inset-hard_75_999999_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/css/overcast/images/ui-bg_inset-hard_75_999999_1x100.png -------------------------------------------------------------------------------- /css/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/css/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png -------------------------------------------------------------------------------- /css/overcast/images/ui-icons_3383bb_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/css/overcast/images/ui-icons_3383bb_256x240.png -------------------------------------------------------------------------------- /css/overcast/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/css/overcast/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /css/overcast/images/ui-icons_70b2e1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/css/overcast/images/ui-icons_70b2e1_256x240.png -------------------------------------------------------------------------------- /css/overcast/images/ui-icons_999999_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/css/overcast/images/ui-icons_999999_256x240.png -------------------------------------------------------------------------------- /css/overcast/images/ui-icons_fbc856_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/css/overcast/images/ui-icons_fbc856_256x240.png -------------------------------------------------------------------------------- /development-bundle/AUTHORS.txt: -------------------------------------------------------------------------------- 1 | jQuery UI Authors (http://ui.jquery.com/about) 2 | 3 | This software consists of voluntary contributions made by many 4 | individuals. For exact contribution history, see the revision history 5 | and logs, available at http://jquery-ui.googlecode.com/svn/ 6 | 7 | Brandon Aaron 8 | Paul Bakaus (paulbakaus.com) 9 | David Bolter 10 | Rich Caloggero 11 | Chi Cheng (cloudream@gmail.com) 12 | Colin Clark (http://colin.atrc.utoronto.ca/) 13 | Michelle D'Souza 14 | Aaron Eisenberger (aaronchi@gmail.com) 15 | Ariel Flesler 16 | Bohdan Ganicky 17 | Scott González 18 | Marc Grabanski (m@marcgrabanski.com) 19 | Klaus Hartl (stilbuero.de) 20 | Scott Jehl 21 | Cody Lindley 22 | Eduardo Lundgren (eduardolundgren@gmail.com) 23 | Todd Parker 24 | John Resig 25 | Patty Toland 26 | Ca-Phun Ung (yelotofu.com) 27 | Keith Wood (kbwood@virginbroadband.com.au) 28 | Maggie Costello Wachs 29 | Richard D. Worth (rdworth.org) 30 | Jörn Zaefferer (bassistance.de) 31 | -------------------------------------------------------------------------------- /development-bundle/demos/accordion/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Accordion Demos 6 | 7 | 8 | 9 |
10 |

Examples

11 | 20 |
21 | 22 | 23 | -------------------------------------------------------------------------------- /development-bundle/demos/addClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /development-bundle/demos/animate/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /development-bundle/demos/autocomplete/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Autocomplete Demos 6 | 7 | 8 | 9 |
10 |

Examples

11 | 20 |
21 | 22 | 23 | -------------------------------------------------------------------------------- /development-bundle/demos/button/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Button Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /development-bundle/demos/datepicker/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/datepicker/images/calendar.gif -------------------------------------------------------------------------------- /development-bundle/demos/dialog/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Dialog Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /development-bundle/demos/droppable/images/high_tatras.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/droppable/images/high_tatras.jpg -------------------------------------------------------------------------------- /development-bundle/demos/droppable/images/high_tatras2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/droppable/images/high_tatras2.jpg -------------------------------------------------------------------------------- /development-bundle/demos/droppable/images/high_tatras2_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/droppable/images/high_tatras2_min.jpg -------------------------------------------------------------------------------- /development-bundle/demos/droppable/images/high_tatras3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/droppable/images/high_tatras3.jpg -------------------------------------------------------------------------------- /development-bundle/demos/droppable/images/high_tatras3_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/droppable/images/high_tatras3_min.jpg -------------------------------------------------------------------------------- /development-bundle/demos/droppable/images/high_tatras4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/droppable/images/high_tatras4.jpg -------------------------------------------------------------------------------- /development-bundle/demos/droppable/images/high_tatras4_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/droppable/images/high_tatras4_min.jpg -------------------------------------------------------------------------------- /development-bundle/demos/droppable/images/high_tatras_min.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/droppable/images/high_tatras_min.jpg -------------------------------------------------------------------------------- /development-bundle/demos/droppable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Droppable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 20 |
21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /development-bundle/demos/effect/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effect Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 21 |
22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /development-bundle/demos/hide/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /development-bundle/demos/images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/images/calendar.gif -------------------------------------------------------------------------------- /development-bundle/demos/images/demo-config-on-tile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/images/demo-config-on-tile.gif -------------------------------------------------------------------------------- /development-bundle/demos/images/demo-config-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/images/demo-config-on.gif -------------------------------------------------------------------------------- /development-bundle/demos/images/demo-spindown-closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/images/demo-spindown-closed.gif -------------------------------------------------------------------------------- /development-bundle/demos/images/demo-spindown-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/images/demo-spindown-open.gif -------------------------------------------------------------------------------- /development-bundle/demos/images/icon-docs-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/images/icon-docs-info.gif -------------------------------------------------------------------------------- /development-bundle/demos/images/jquery_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/images/jquery_32x32.png -------------------------------------------------------------------------------- /development-bundle/demos/images/jqueryui_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/images/jqueryui_32x32.png -------------------------------------------------------------------------------- /development-bundle/demos/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/images/pbar-ani.gif -------------------------------------------------------------------------------- /development-bundle/demos/images/sizzlejs_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/images/sizzlejs_32x32.png -------------------------------------------------------------------------------- /development-bundle/demos/images/transparent_1x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/images/transparent_1x1.png -------------------------------------------------------------------------------- /development-bundle/demos/position/images/earth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/position/images/earth.jpg -------------------------------------------------------------------------------- /development-bundle/demos/position/images/flight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/position/images/flight.jpg -------------------------------------------------------------------------------- /development-bundle/demos/position/images/rocket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/position/images/rocket.jpg -------------------------------------------------------------------------------- /development-bundle/demos/position/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Position Demo 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 16 |
17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /development-bundle/demos/progressbar/images/pbar-ani.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/demos/progressbar/images/pbar-ani.gif -------------------------------------------------------------------------------- /development-bundle/demos/progressbar/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Progressbar Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /development-bundle/demos/removeClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /development-bundle/demos/selectable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Selectable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 17 |
18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /development-bundle/demos/show/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /development-bundle/demos/sortable/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Sortable Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 23 |
24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /development-bundle/demos/switchClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /development-bundle/demos/tabs/ajax/content4-broken.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /development-bundle/demos/tabs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Tabs Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 21 |
22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /development-bundle/demos/toggle/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /development-bundle/demos/toggleClass/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery UI Effects Demos 6 | 7 | 8 | 9 | 10 |
11 |

Examples

12 | 15 |
16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /development-bundle/themes/base/images/ui-anim_basic_16x16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/base/images/ui-anim_basic_16x16.gif -------------------------------------------------------------------------------- /development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /development-bundle/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /development-bundle/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /development-bundle/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /development-bundle/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /* Accordion 2 | ----------------------------------*/ 3 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } 4 | .ui-accordion .ui-accordion-li-fix { display: inline; } 5 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } 6 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } 7 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } 8 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 9 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } 10 | .ui-accordion .ui-accordion-content-active { display: block; } -------------------------------------------------------------------------------- /development-bundle/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | @import "jquery.ui.base.css"; 2 | @import "jquery.ui.theme.css"; 3 | -------------------------------------------------------------------------------- /development-bundle/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /* Autocomplete 2 | ----------------------------------*/ 3 | .ui-autocomplete { position: absolute; cursor: default; } 4 | .ui-autocomplete-loading { background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat; } 5 | 6 | /* workarounds */ 7 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 8 | 9 | /* Menu 10 | ----------------------------------*/ 11 | .ui-menu { 12 | list-style:none; 13 | padding: 2px; 14 | margin: 0; 15 | display:block; 16 | } 17 | .ui-menu .ui-menu { 18 | margin-top: -3px; 19 | } 20 | .ui-menu .ui-menu-item { 21 | margin:0; 22 | padding: 0; 23 | width: 100%; 24 | } 25 | .ui-menu .ui-menu-item a { 26 | text-decoration:none; 27 | display:block; 28 | padding:.2em .4em; 29 | line-height:1.5; 30 | zoom:1; 31 | } 32 | .ui-menu .ui-menu-item a.ui-state-hover, 33 | .ui-menu .ui-menu-item a.ui-state-active { 34 | margin: -1px; 35 | } 36 | -------------------------------------------------------------------------------- /development-bundle/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | @import url("jquery.ui.core.css"); 2 | @import url("jquery.ui.resizable.css"); 3 | @import url("jquery.ui.accordion.css"); 4 | @import url("jquery.ui.autocomplete.css"); 5 | @import url("jquery.ui.button.css"); 6 | @import url("jquery.ui.dialog.css"); 7 | @import url("jquery.ui.slider.css"); 8 | @import url("jquery.ui.tabs.css"); 9 | @import url("jquery.ui.datepicker.css"); 10 | @import url("jquery.ui.progressbar.css"); -------------------------------------------------------------------------------- /development-bundle/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /* Progressbar 2 | ----------------------------------*/ 3 | .ui-progressbar { height:2em; text-align: left; } 4 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /development-bundle/themes/overcast/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/overcast/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /development-bundle/themes/overcast/images/ui-bg_flat_0_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/overcast/images/ui-bg_flat_0_eeeeee_40x100.png -------------------------------------------------------------------------------- /development-bundle/themes/overcast/images/ui-bg_flat_55_c0402a_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/overcast/images/ui-bg_flat_55_c0402a_40x100.png -------------------------------------------------------------------------------- /development-bundle/themes/overcast/images/ui-bg_flat_55_eeeeee_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/overcast/images/ui-bg_flat_55_eeeeee_40x100.png -------------------------------------------------------------------------------- /development-bundle/themes/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/overcast/images/ui-bg_glass_100_f8f8f8_1x400.png -------------------------------------------------------------------------------- /development-bundle/themes/overcast/images/ui-bg_glass_35_dddddd_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/overcast/images/ui-bg_glass_35_dddddd_1x400.png -------------------------------------------------------------------------------- /development-bundle/themes/overcast/images/ui-bg_glass_60_eeeeee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/overcast/images/ui-bg_glass_60_eeeeee_1x400.png -------------------------------------------------------------------------------- /development-bundle/themes/overcast/images/ui-bg_inset-hard_75_999999_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/overcast/images/ui-bg_inset-hard_75_999999_1x100.png -------------------------------------------------------------------------------- /development-bundle/themes/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/overcast/images/ui-bg_inset-soft_50_c9c9c9_1x100.png -------------------------------------------------------------------------------- /development-bundle/themes/overcast/images/ui-icons_3383bb_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/overcast/images/ui-icons_3383bb_256x240.png -------------------------------------------------------------------------------- /development-bundle/themes/overcast/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/overcast/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /development-bundle/themes/overcast/images/ui-icons_70b2e1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/overcast/images/ui-icons_70b2e1_256x240.png -------------------------------------------------------------------------------- /development-bundle/themes/overcast/images/ui-icons_999999_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/overcast/images/ui-icons_999999_256x240.png -------------------------------------------------------------------------------- /development-bundle/themes/overcast/images/ui-icons_fbc856_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/themes/overcast/images/ui-icons_fbc856_256x240.png -------------------------------------------------------------------------------- /development-bundle/themes/overcast/jquery.ui.accordion.css: -------------------------------------------------------------------------------- 1 | /* Accordion 2 | ----------------------------------*/ 3 | .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; } 4 | .ui-accordion .ui-accordion-li-fix { display: inline; } 5 | .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; } 6 | .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; } 7 | .ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; } 8 | .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; } 9 | .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; } 10 | .ui-accordion .ui-accordion-content-active { display: block; } -------------------------------------------------------------------------------- /development-bundle/themes/overcast/jquery.ui.all.css: -------------------------------------------------------------------------------- 1 | @import "jquery.ui.base.css"; 2 | @import "jquery.ui.theme.css"; 3 | -------------------------------------------------------------------------------- /development-bundle/themes/overcast/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- 1 | /* Autocomplete 2 | ----------------------------------*/ 3 | .ui-autocomplete { position: absolute; cursor: default; } 4 | .ui-autocomplete-loading { background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat; } 5 | 6 | /* workarounds */ 7 | * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */ 8 | 9 | /* Menu 10 | ----------------------------------*/ 11 | .ui-menu { 12 | list-style:none; 13 | padding: 2px; 14 | margin: 0; 15 | display:block; 16 | } 17 | .ui-menu .ui-menu { 18 | margin-top: -3px; 19 | } 20 | .ui-menu .ui-menu-item { 21 | margin:0; 22 | padding: 0; 23 | width: 100%; 24 | } 25 | .ui-menu .ui-menu-item a { 26 | text-decoration:none; 27 | display:block; 28 | padding:.2em .4em; 29 | line-height:1.5; 30 | zoom:1; 31 | } 32 | .ui-menu .ui-menu-item a.ui-state-hover, 33 | .ui-menu .ui-menu-item a.ui-state-active { 34 | margin: -1px; 35 | } 36 | -------------------------------------------------------------------------------- /development-bundle/themes/overcast/jquery.ui.base.css: -------------------------------------------------------------------------------- 1 | @import url("jquery.ui.core.css"); 2 | @import url("jquery.ui.resizable.css"); 3 | @import url("jquery.ui.accordion.css"); 4 | @import url("jquery.ui.autocomplete.css"); 5 | @import url("jquery.ui.button.css"); 6 | @import url("jquery.ui.dialog.css"); 7 | @import url("jquery.ui.slider.css"); 8 | @import url("jquery.ui.tabs.css"); 9 | @import url("jquery.ui.datepicker.css"); 10 | @import url("jquery.ui.progressbar.css"); -------------------------------------------------------------------------------- /development-bundle/themes/overcast/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- 1 | /* Progressbar 2 | ----------------------------------*/ 3 | .ui-progressbar { height:2em; text-align: left; } 4 | .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; } -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-az.js: -------------------------------------------------------------------------------- 1 | /* Azerbaijani (UTF-8) initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Jamil Najafov (necefov33@gmail.com). */ 3 | jQuery(function($) { 4 | $.datepicker.regional['az'] = { 5 | closeText: 'Bağla', 6 | prevText: '<Geri', 7 | nextText: 'İrəli>', 8 | currentText: 'Bugün', 9 | monthNames: ['Yanvar','Fevral','Mart','Aprel','May','İyun', 10 | 'İyul','Avqust','Sentyabr','Oktyabr','Noyabr','Dekabr'], 11 | monthNamesShort: ['Yan','Fev','Mar','Apr','May','İyun', 12 | 'İyul','Avq','Sen','Okt','Noy','Dek'], 13 | dayNames: ['Bazar','Bazar ertəsi','Çərşənbə axşamı','Çərşənbə','Cümə axşamı','Cümə','Şənbə'], 14 | dayNamesShort: ['B','Be','Ça','Ç','Ca','C','Ş'], 15 | dayNamesMin: ['B','B','Ç','С','Ç','C','Ş'], 16 | weekHeader: 'Hf', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['az']); 23 | }); -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-bs.js: -------------------------------------------------------------------------------- 1 | /* Bosnian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Kenan Konjo. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['bs'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Januar','Februar','Mart','April','Maj','Juni', 10 | 'Juli','August','Septembar','Oktobar','Novembar','Decembar'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedelja','Ponedeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['bs']); 23 | }); -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-ca.js: -------------------------------------------------------------------------------- 1 | /* Inicialització en català per a l'extenció 'calendar' per jQuery. */ 2 | /* Writers: (joan.leon@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ca'] = { 5 | closeText: 'Tancar', 6 | prevText: '<Ant', 7 | nextText: 'Seg>', 8 | currentText: 'Avui', 9 | monthNames: ['Gener','Febrer','Març','Abril','Maig','Juny', 10 | 'Juliol','Agost','Setembre','Octubre','Novembre','Desembre'], 11 | monthNamesShort: ['Gen','Feb','Mar','Abr','Mai','Jun', 12 | 'Jul','Ago','Set','Oct','Nov','Des'], 13 | dayNames: ['Diumenge','Dilluns','Dimarts','Dimecres','Dijous','Divendres','Dissabte'], 14 | dayNamesShort: ['Dug','Dln','Dmt','Dmc','Djs','Dvn','Dsb'], 15 | dayNamesMin: ['Dg','Dl','Dt','Dc','Dj','Dv','Ds'], 16 | weekHeader: 'Sm', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['ca']); 23 | }); -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-de.js: -------------------------------------------------------------------------------- 1 | /* German initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Milian Wolff (mail@milianw.de). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['de'] = { 5 | closeText: 'schließen', 6 | prevText: '<zurück', 7 | nextText: 'Vor>', 8 | currentText: 'heute', 9 | monthNames: ['Januar','Februar','März','April','Mai','Juni', 10 | 'Juli','August','September','Oktober','November','Dezember'], 11 | monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun', 12 | 'Jul','Aug','Sep','Okt','Nov','Dez'], 13 | dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'], 14 | dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'], 15 | dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'], 16 | weekHeader: 'Wo', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['de']); 23 | }); 24 | -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-en-GB.js: -------------------------------------------------------------------------------- 1 | /* English/UK initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Stuart. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['en-GB'] = { 5 | closeText: 'Done', 6 | prevText: 'Prev', 7 | nextText: 'Next', 8 | currentText: 'Today', 9 | monthNames: ['January','February','March','April','May','June', 10 | 'July','August','September','October','November','December'], 11 | monthNamesShort: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 12 | 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], 13 | dayNames: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'], 14 | dayNamesShort: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'], 15 | dayNamesMin: ['Su','Mo','Tu','We','Th','Fr','Sa'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['en-GB']); 23 | }); 24 | -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/development-bundle/ui/i18n/jquery.ui.datepicker-fr-CH.js -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-he.js: -------------------------------------------------------------------------------- 1 | /* Hebrew initialisation for the UI Datepicker extension. */ 2 | /* Written by Amir Hardon (ahardon at gmail dot com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['he'] = { 5 | closeText: 'סגור', 6 | prevText: '<הקודם', 7 | nextText: 'הבא>', 8 | currentText: 'היום', 9 | monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני', 10 | 'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'], 11 | monthNamesShort: ['1','2','3','4','5','6', 12 | '7','8','9','10','11','12'], 13 | dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'], 14 | dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 15 | dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: true, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['he']); 23 | }); 24 | -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-hr.js: -------------------------------------------------------------------------------- 1 | /* Croatian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Vjekoslav Nesek. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['hr'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Siječanj','Veljača','Ožujak','Travanj','Svibanj','Lipanj', 10 | 'Srpanj','Kolovoz','Rujan','Listopad','Studeni','Prosinac'], 11 | monthNamesShort: ['Sij','Velj','Ožu','Tra','Svi','Lip', 12 | 'Srp','Kol','Ruj','Lis','Stu','Pro'], 13 | dayNames: ['Nedjelja','Ponedjeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Tje', 17 | dateFormat: 'dd.mm.yy.', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['hr']); 23 | }); -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-id.js: -------------------------------------------------------------------------------- 1 | /* Indonesian initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Deden Fathurahman (dedenf@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['id'] = { 5 | closeText: 'Tutup', 6 | prevText: '<mundur', 7 | nextText: 'maju>', 8 | currentText: 'hari ini', 9 | monthNames: ['Januari','Februari','Maret','April','Mei','Juni', 10 | 'Juli','Agustus','September','Oktober','Nopember','Desember'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun', 12 | 'Jul','Agus','Sep','Okt','Nop','Des'], 13 | dayNames: ['Minggu','Senin','Selasa','Rabu','Kamis','Jumat','Sabtu'], 14 | dayNamesShort: ['Min','Sen','Sel','Rab','kam','Jum','Sab'], 15 | dayNamesMin: ['Mg','Sn','Sl','Rb','Km','jm','Sb'], 16 | weekHeader: 'Mg', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['id']); 23 | }); -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-ja.js: -------------------------------------------------------------------------------- 1 | /* Japanese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Kentaro SATO (kentaro@ranvis.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ja'] = { 5 | closeText: '閉じる', 6 | prevText: '<前', 7 | nextText: '次>', 8 | currentText: '今日', 9 | monthNames: ['1月','2月','3月','4月','5月','6月', 10 | '7月','8月','9月','10月','11月','12月'], 11 | monthNamesShort: ['1月','2月','3月','4月','5月','6月', 12 | '7月','8月','9月','10月','11月','12月'], 13 | dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'], 14 | dayNamesShort: ['日','月','火','水','木','金','土'], 15 | dayNamesMin: ['日','月','火','水','木','金','土'], 16 | weekHeader: '週', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ja']); 23 | }); -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-ko.js: -------------------------------------------------------------------------------- 1 | /* Korean initialisation for the jQuery calendar extension. */ 2 | /* Written by DaeKwon Kang (ncrash.dk@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['ko'] = { 5 | closeText: '닫기', 6 | prevText: '이전달', 7 | nextText: '다음달', 8 | currentText: '오늘', 9 | monthNames: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)', 10 | '7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'], 11 | monthNamesShort: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)', 12 | '7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'], 13 | dayNames: ['일','월','화','수','목','금','토'], 14 | dayNamesShort: ['일','월','화','수','목','금','토'], 15 | dayNamesMin: ['일','월','화','수','목','금','토'], 16 | weekHeader: 'Wk', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: '년'}; 22 | $.datepicker.setDefaults($.datepicker.regional['ko']); 23 | }); -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-sr-SR.js: -------------------------------------------------------------------------------- 1 | /* Serbian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Dejan Dimić. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sr-SR'] = { 5 | closeText: 'Zatvori', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Danas', 9 | monthNames: ['Januar','Februar','Mart','April','Maj','Jun', 10 | 'Jul','Avgust','Septembar','Oktobar','Novembar','Decembar'], 11 | monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun', 12 | 'Jul','Avg','Sep','Okt','Nov','Dec'], 13 | dayNames: ['Nedelja','Ponedeljak','Utorak','Sreda','Četvrtak','Petak','Subota'], 14 | dayNamesShort: ['Ned','Pon','Uto','Sre','Čet','Pet','Sub'], 15 | dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'], 16 | weekHeader: 'Sed', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sr-SR']); 23 | }); 24 | -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-sr.js: -------------------------------------------------------------------------------- 1 | /* Serbian i18n for the jQuery UI date picker plugin. */ 2 | /* Written by Dejan Dimić. */ 3 | jQuery(function($){ 4 | $.datepicker.regional['sr'] = { 5 | closeText: 'Затвори', 6 | prevText: '<', 7 | nextText: '>', 8 | currentText: 'Данас', 9 | monthNames: ['Јануар','Фебруар','Март','Април','Мај','Јун', 10 | 'Јул','Август','Септембар','Октобар','Новембар','Децембар'], 11 | monthNamesShort: ['Јан','Феб','Мар','Апр','Мај','Јун', 12 | 'Јул','Авг','Сеп','Окт','Нов','Дец'], 13 | dayNames: ['Недеља','Понедељак','Уторак','Среда','Четвртак','Петак','Субота'], 14 | dayNamesShort: ['Нед','Пон','Уто','Сре','Чет','Пет','Суб'], 15 | dayNamesMin: ['Не','По','Ут','Ср','Че','Пе','Су'], 16 | weekHeader: 'Сед', 17 | dateFormat: 'dd/mm/yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['sr']); 23 | }); 24 | -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-tr.js: -------------------------------------------------------------------------------- 1 | /* Turkish initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Izzet Emre Erkan (kara@karalamalar.net). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['tr'] = { 5 | closeText: 'kapat', 6 | prevText: '<geri', 7 | nextText: 'ileri>', 8 | currentText: 'bugün', 9 | monthNames: ['Ocak','Şubat','Mart','Nisan','Mayıs','Haziran', 10 | 'Temmuz','Ağustos','Eylül','Ekim','Kasım','Aralık'], 11 | monthNamesShort: ['Oca','Şub','Mar','Nis','May','Haz', 12 | 'Tem','Ağu','Eyl','Eki','Kas','Ara'], 13 | dayNames: ['Pazar','Pazartesi','Salı','Çarşamba','Perşembe','Cuma','Cumartesi'], 14 | dayNamesShort: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'], 15 | dayNamesMin: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'], 16 | weekHeader: 'Hf', 17 | dateFormat: 'dd.mm.yy', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: false, 21 | yearSuffix: ''}; 22 | $.datepicker.setDefaults($.datepicker.regional['tr']); 23 | }); -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-zh-CN.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Cloudream (cloudream@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-CN'] = { 5 | closeText: '关闭', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy-mm-dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-CN']); 23 | }); 24 | -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-zh-HK.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by SCCY (samuelcychan@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-HK'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'dd-mm-yy', 18 | firstDay: 0, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-HK']); 23 | }); 24 | -------------------------------------------------------------------------------- /development-bundle/ui/i18n/jquery.ui.datepicker-zh-TW.js: -------------------------------------------------------------------------------- 1 | /* Chinese initialisation for the jQuery UI date picker plugin. */ 2 | /* Written by Ressol (ressol@gmail.com). */ 3 | jQuery(function($){ 4 | $.datepicker.regional['zh-TW'] = { 5 | closeText: '關閉', 6 | prevText: '<上月', 7 | nextText: '下月>', 8 | currentText: '今天', 9 | monthNames: ['一月','二月','三月','四月','五月','六月', 10 | '七月','八月','九月','十月','十一月','十二月'], 11 | monthNamesShort: ['一','二','三','四','五','六', 12 | '七','八','九','十','十一','十二'], 13 | dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'], 14 | dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'], 15 | dayNamesMin: ['日','一','二','三','四','五','六'], 16 | weekHeader: '周', 17 | dateFormat: 'yy/mm/dd', 18 | firstDay: 1, 19 | isRTL: false, 20 | showMonthAfterYear: true, 21 | yearSuffix: '年'}; 22 | $.datepicker.setDefaults($.datepicker.regional['zh-TW']); 23 | }); 24 | -------------------------------------------------------------------------------- /development-bundle/ui/minified/jquery.effects.blind.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Blind 1.8 3 | * 4 | * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT (MIT-LICENSE.txt) 6 | * and GPL (GPL-LICENSE.txt) licenses. 7 | * 8 | * http://docs.jquery.com/UI/Effects/Blind 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */ (function(a){a.effects.blind=function(b){return this.queue(function(){var d=a(this),c=["position","top","left"];var h=a.effects.setMode(d,b.options.mode||"hide");var g=b.options.direction||"vertical";a.effects.save(d,c);d.show();var j=a.effects.createWrapper(d).css({overflow:"hidden"});var e=(g=="vertical")?"height":"width";var i=(g=="vertical")?j.height():j.width();if(h=="show"){j.css(e,0)}var f={};f[e]=h=="show"?i:0;j.animate(f,b.duration,b.options.easing,function(){if(h=="hide"){d.hide()}a.effects.restore(d,c);a.effects.removeWrapper(d);if(b.callback){b.callback.apply(d[0],arguments)}d.dequeue()})})}})(jQuery); -------------------------------------------------------------------------------- /development-bundle/ui/minified/jquery.effects.transfer.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery UI Effects Transfer 1.8 3 | * 4 | * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about) 5 | * Dual licensed under the MIT (MIT-LICENSE.txt) 6 | * and GPL (GPL-LICENSE.txt) licenses. 7 | * 8 | * http://docs.jquery.com/UI/Effects/Transfer 9 | * 10 | * Depends: 11 | * jquery.effects.core.js 12 | */ (function(a){a.effects.transfer=function(b){return this.queue(function(){var f=a(this),h=a(b.options.to),e=h.offset(),g={top:e.top,left:e.left,height:h.innerHeight(),width:h.innerWidth()},d=f.offset(),c=a('
').appendTo(document.body).addClass(b.options.className).css({top:d.top,left:d.left,height:f.innerHeight(),width:f.innerWidth(),position:"absolute"}).animate(g,b.duration,b.options.easing,function(){c.remove();(b.callback&&b.callback.apply(f[0],arguments));f.dequeue()})})}})(jQuery); -------------------------------------------------------------------------------- /development-bundle/version.txt: -------------------------------------------------------------------------------- 1 | 1.8 -------------------------------------------------------------------------------- /forum/NinkoBB/avatars/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/NinkoBB/avatars/default.jpg -------------------------------------------------------------------------------- /forum/NinkoBB/include/database.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forum/NinkoBB/include/languages/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /forum/NinkoBB/include/languages/plugins/captcha.php: -------------------------------------------------------------------------------- 1 | 7 | * @version 1.3RC5 8 | * @lyric Why can't our bodies reset themselves? Won't you please reset me. 9 | * @copyright (c) 2010 ANIGAIKU 10 | * @package ninko 11 | */ 12 | 13 | // Basics 14 | $lang['CAPTCHA_TITLE'] = "Bot check (What is the answer?)"; 15 | $lang['CAPTCHA_FALSE'] = "Wrong answer for captcha!"; 16 | ?> -------------------------------------------------------------------------------- /forum/NinkoBB/include/languages/plugins/guest_counter.php: -------------------------------------------------------------------------------- 1 | 7 | * @version 1.3RC5 8 | * @lyric Why can't our bodies reset themselves? Won't you please reset me. 9 | * @copyright (c) 2010 ANIGAIKU 10 | * @package ninko 11 | */ 12 | 13 | // Basics 14 | $lang['GUESTS_ONLINE'] = "Guests online"; 15 | $lang['BOTS_ONLINE'] = "Bots online"; 16 | $lang['NO_ONLINE'] = "No users online"; 17 | ?> -------------------------------------------------------------------------------- /forum/NinkoBB/include/utf8/docs/makeDocs.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl -w 2 | 3 | use strict; 4 | use Pod::Xhtml; 5 | use File::Basename; 6 | 7 | my $filename = 'phputf8.pod'; 8 | 9 | my $basename = basename($filename); 10 | $basename =~ s/.[a-z]{3}$//; 11 | 12 | 13 | my $POD = Pod::Xhtml->new(); 14 | 15 | $POD->addHeadText(''); 17 | $POD->addHeadText(''); 18 | $POD->addHeadText(''); 19 | $POD->addBodyOpenText(''); 22 | $POD->addBodyOpenText(''); 25 | 26 | $POD->parse_from_file('phputf8.pod'); 27 | 28 | -------------------------------------------------------------------------------- /forum/NinkoBB/include/utf8/strcasecmp.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/admin/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/assets/css/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/assets/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/NinkoBB/templates/default/assets/images/Thumbs.db -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/assets/images/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/NinkoBB/templates/default/assets/images/buttons.gif -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/assets/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/assets/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/assets/js/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/footer.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/forum/category-close.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/forum/category-open.php: -------------------------------------------------------------------------------- 1 |
2 |

»

3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/forum/index-open.php: -------------------------------------------------------------------------------- 1 |
2 | 6 |

»

7 | 12 |

New Topics

13 | 16 |
TopicPostsLast Poster
17 | 18 | 19 | 20 | 21 | 24 | 25 | -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/forum/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/forum/no-topics.php: -------------------------------------------------------------------------------- 1 |
TopicPostsLast Poster
2 | 3 | 6 | 7 |
4 |
5 |
-------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/my_text~: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/navigate_stuff: -------------------------------------------------------------------------------- 1 | 2 |
  • 3 | 4 |
  • 5 | 6 |
  • -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/navigate_stuff~: -------------------------------------------------------------------------------- 1 | 2 |
  • 3 | 4 |
  • 5 | 6 |
  • -------------------------------------------------------------------------------- /forum/NinkoBB/templates/default/user/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /forum/NinkoBB/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /forum/minibb/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | AdditionalInfo=3 3 | Timestamp=2010,5,17,9,16,15 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /forum/minibb/bb_func_inslng.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forum/minibb/bb_func_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/bb_func_search.php -------------------------------------------------------------------------------- /forum/minibb/bb_func_sticky.php: -------------------------------------------------------------------------------- 1 | 0) $errorMSG=(($sticky>0)?$l_topicSticked:$l_topicUnsticked); 12 | else $errorMSG=$l_itseemserror; 13 | $correctErr="$l_back"; 14 | } 15 | else { 16 | $errorMSG=$l_forbidden; $correctErr=$backErrorLink; 17 | } 18 | 19 | $title.=$errorMSG; 20 | echo load_header(); echo ParseTpl(makeUp('main_warning')); return; 21 | ?> -------------------------------------------------------------------------------- /forum/minibb/bb_func_txt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/bb_func_txt.php -------------------------------------------------------------------------------- /forum/minibb/bb_func_unsub.php: -------------------------------------------------------------------------------- 1 | 0) { 15 | $errorMSG=$l_completed; $title.=$l_completed; 16 | } 17 | else { 18 | $errorMSG=$l_itseemserror; $title.=$l_itseemserror; 19 | } 20 | 21 | } 22 | else { 23 | $title.=$l_accessDenied; $errorMSG=$l_accessDenied; 24 | } 25 | 26 | $correctErr=''; 27 | echo load_header(); echo ParseTpl(makeUp('main_warning')); return; 28 | ?> -------------------------------------------------------------------------------- /forum/minibb/bb_func_usrdat.php: -------------------------------------------------------------------------------- 1 | 0){ 9 | 10 | foreach($dbUserSheme as $k=>$v){ 11 | if(isset($_POST[$v[2]])) $s=trim(htmlspecialchars(stripslashes($_POST[$v[2]]),ENT_QUOTES)); else $s=''; 12 | ${$v[1]}=$s; ${$v[2]}=$s; 13 | } 14 | 15 | if(!isset($_POST['passwd2'])) $passwd2=''; else $passwd2=trim(htmlspecialchars(stripslashes($_POST['passwd2']),ENT_QUOTES)); 16 | if(isset($login)) $login=preg_replace("#[\s]{2,}#", ' ', $login); 17 | 18 | } 19 | else die('Unexpected error'); 20 | ?> -------------------------------------------------------------------------------- /forum/minibb/bb_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/bb_functions.php -------------------------------------------------------------------------------- /forum/minibb/bb_plugins.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forum/minibb/bb_plugins2.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forum/minibb/bb_plugins_user.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forum/minibb/bb_specials.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forum/minibb/img/button_bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/button_bold.gif -------------------------------------------------------------------------------- /forum/minibb/img/button_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/button_image.gif -------------------------------------------------------------------------------- /forum/minibb/img/button_italic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/button_italic.gif -------------------------------------------------------------------------------- /forum/minibb/img/button_url.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/button_url.gif -------------------------------------------------------------------------------- /forum/minibb/img/dottedhl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/dottedhl.gif -------------------------------------------------------------------------------- /forum/minibb/img/forum_icons/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/forum_icons/default.gif -------------------------------------------------------------------------------- /forum/minibb/img/keypwd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/keypwd.gif -------------------------------------------------------------------------------- /forum/minibb/img/menubg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/menubg.jpg -------------------------------------------------------------------------------- /forum/minibb/img/mini_bb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/mini_bb.gif -------------------------------------------------------------------------------- /forum/minibb/img/minibb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/minibb.gif -------------------------------------------------------------------------------- /forum/minibb/img/p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/p.gif -------------------------------------------------------------------------------- /forum/minibb/img/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/page.gif -------------------------------------------------------------------------------- /forum/minibb/img/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/s.gif -------------------------------------------------------------------------------- /forum/minibb/img/topic_default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/topic_default.gif -------------------------------------------------------------------------------- /forum/minibb/img/topic_empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/topic_empty.gif -------------------------------------------------------------------------------- /forum/minibb/img/topic_hot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/topic_hot.gif -------------------------------------------------------------------------------- /forum/minibb/img/topic_locked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/topic_locked.gif -------------------------------------------------------------------------------- /forum/minibb/img/topic_reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/topic_reverse.gif -------------------------------------------------------------------------------- /forum/minibb/img/topic_sticky.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/topic_sticky.gif -------------------------------------------------------------------------------- /forum/minibb/img/topic_stlock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/topic_stlock.gif -------------------------------------------------------------------------------- /forum/minibb/img/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/img/up.gif -------------------------------------------------------------------------------- /forum/minibb/templates/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | AdditionalInfo=3 3 | Timestamp=2010,5,16,23,56,3 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /forum/minibb/templates/admin_banusr1.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 21 | 22 |
    5 | {$warning}  6 |
    7 | 8 | {$l_enterIP}: 9 |
    10 | 11 |
    12 | 13 | {$l_banReason}: 14 |
    15 | 16 | 17 | 18 |

    19 | 20 |
    23 |
    24 | -------------------------------------------------------------------------------- /forum/minibb/templates/admin_deleteban1.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 14 | 15 |
    5 | 6 | {$warning}  7 |
    8 | {$bannedIPs} 9 | 10 |
    11 | 12 | 13 |
    16 |
    -------------------------------------------------------------------------------- /forum/minibb/templates/admin_editforum1.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 13 | 14 |
    5 |

    {$l_chooseeditforum}:

    6 | 9 | 10 |

    11 | 12 |
    15 |
    -------------------------------------------------------------------------------- /forum/minibb/templates/admin_login.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 |
    {$warning}
    4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
     Admin login:
     Admin password:
     
    20 | 21 | 22 | 23 |
    24 | -------------------------------------------------------------------------------- /forum/minibb/templates/admin_removeuser1.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 17 | 18 |
    5 | 6 | 7 |
    8 | {$l_removeUser}: ({$l_enterID}) 9 |
    10 | {$l_removeUserMessages} 11 |
    12 |

    13 | {$l_noAsking} 14 |

    15 | 16 |
    19 |
    -------------------------------------------------------------------------------- /forum/minibb/templates/admin_searchusers.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 18 | 19 | 24 | 25 | 29 | 30 |
    4 | {$warning} 5 |
    6 | {$pageNav}  7 |

    8 |
    9 | 10 | 11 |

    12 | {$whatDropDown} 13 |

    14 | 15 |

    16 |
    17 |
    20 | 21 | {$Results} 22 | 23 |
    26 |
    27 | {$pageNav}  28 |
    31 | -------------------------------------------------------------------------------- /forum/minibb/templates/admin_searchusersres.html: -------------------------------------------------------------------------------- 1 |
  • {$delCheckBox}{$row[1]} ({$row[0]}) {$l_sepr} {$l_usrInfo[2]}: {$rDate} {$l_sepr} {$l_email}: {$row[4]} 2 |
    3 | {$l_stats_numPosts}: {$numReplies} {$l_sepr} {$l_userLastPosts}: {$lReplies}
    [{$l_deletePost}]
    4 |
    5 |
  • -------------------------------------------------------------------------------- /forum/minibb/templates/admin_sendmails1.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 12 | 13 |
    5 | {$warning}  6 |

    {$l_delSendMais}

    7 | 8 | 9 |

    10 | 11 |
    14 |
    -------------------------------------------------------------------------------- /forum/minibb/templates/admin_viewsubs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
    {$sitename} / {$l_subscriptions}
    6 | 7 | 8 | 9 | 15 | 16 |
    10 | {$l_topic}: {$topicTitle} 11 | 12 | {$listSubs} 13 | 14 |
    -------------------------------------------------------------------------------- /forum/minibb/templates/email_admin_userregister_eng.txt: -------------------------------------------------------------------------------- 1 | SUBJECT>>{$sitename}: New Registration<< 2 | Hello, 3 | 4 | Someone has been registered at "{$sitename}": 5 | 6 | ID: {$insres} 7 | 8 | Login: {$username} 9 | Email: {$user_email} 10 | ICQ: {$user_icq} 11 | Website: {$user_website} 12 | Occupation: {$user_occ} 13 | Region: {$user_from} 14 | Interests: {$user_interest} 15 | 16 | P.S. If you would like to turn off messages like this, set $emailadmin variable in your setup_options.php to '0'. 17 | -------------------------------------------------------------------------------- /forum/minibb/templates/email_user_confirm_eng.txt: -------------------------------------------------------------------------------- 1 | SUBJECT>>{$sitename}: Confirm Email<< 2 | Hello {$loginName}, 3 | 4 | Click on the confirmation link below, or copy/paste it as your browser's URL address, for gaining full access to our forums: 5 | 6 | {$main_url}/{$indexphp}action=confirmpasswd&confirmCode={$confirmCode} 7 | 8 | Best Regards, 9 | Forum Administrator 10 | {$main_url}/{$startIndex} 11 | 12 | This email has been sent automatically. Please do not reply! 13 | -------------------------------------------------------------------------------- /forum/minibb/templates/email_user_register_eng.txt: -------------------------------------------------------------------------------- 1 | SUBJECT>>Welcome to {$sitename}!<< 2 | Hello, 3 | 4 | thank You for signing up at our forums! 5 | 6 | Your Username is: {$username} 7 | Your Password is: {$passwd} 8 | 9 | Please, keep this data in a cool and dry place for further assistance. 10 | 11 | Best Regards, 12 | Forum Administrator 13 | {$main_url}/{$startIndex} 14 | -------------------------------------------------------------------------------- /forum/minibb/templates/faq.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 |
    4 | {$manual} 5 |
    -------------------------------------------------------------------------------- /forum/minibb/templates/go.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | - 4 | 5 | 6 | 7 | 8 | >>> 9 | 10 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_access_denied.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {$title} 5 | 6 | 7 |

    {$l_accessDenied}

    8 | 9 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
    {$l_adminpanel_link} {$violating_the_copyright_may_result_in_your_criminal_responsibility}
    7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_forumgroup.html: -------------------------------------------------------------------------------- 1 | 2 | {$cols[6]} 3 | 4 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_forums.html: -------------------------------------------------------------------------------- 1 |
    {$user_logging}
    2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | {$list_forums} 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
    {$l_forum}{$l_num_topics}{$l_replies}
    -------------------------------------------------------------------------------- /forum/minibb/templates/main_forums_cell.html: -------------------------------------------------------------------------------- 1 | 2 | {$forum_title} 3 | {$forum_title}
    {$forum_desc} 4 | {$numTopics} 5 | {$numPosts} 6 | 7 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_forums_cell.html~: -------------------------------------------------------------------------------- 1 | 2 | {$forum_title} 3 | {$forum_title}
    {$forum_desc} 4 | {$numTopics} 5 | {$numPosts} 6 | 7 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_forums_list.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 | 7 | 8 |
    9 |
    10 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_last_discuss_cell.html: -------------------------------------------------------------------------------- 1 | 2 | {$fTitle[$forum]} 3 | {$topic_reverse}{$topic_title}{$pageNavCell} 4 | {$numReplies} 5 | {$topic_views} 6 | {$topicAuthor}
    {$whenPosted}
    7 | {$lastPoster}
    {$lastPostDate}
    8 | 9 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_modern_fcell.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {$forum_title} 4 | 5 | {$forum_title} 6 | 7 | 8 | {$l_num_topics}: {$numTopics} {$l_sepr} {$l_replies}: {$numPosts} 9 | 10 | 11 | {$forum_desc} 12 | 13 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_modern_lcell.html: -------------------------------------------------------------------------------- 1 | 2 | {$fTitle[$forum]} 3 | {$topic_reverse}{$topic_title}{$pageNavCell} 4 |
    {$fTitle[$forum]}
    5 | 6 | {$numReplies} 7 | {$topic_views} 8 | {$topicAuthor}
    {$whenPosted}
    9 | {$lastPoster}
    {$lastPostDate}
    10 | 11 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_modern_stitle.html: -------------------------------------------------------------------------------- 1 | 2 | {$cols[6]} 3 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_post_area.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 5 | {$mainPostForm} 6 | 7 | 8 | 22 | 23 |
    9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
    24 | 25 |
    26 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_post_closed.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
    {$l_topic_closed}
    6 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_posthold.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 |
    4 | {$errorMSG} 5 |
    6 | 7 | {$formDisplay} 8 | 9 |
    -------------------------------------------------------------------------------- /forum/minibb/templates/main_posts_cell.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
    {$l_author}{$pLink1}{$posterName}{$pLink2}
    {$viewReg}
    #{$anchor2} {$l_sepr} {$l_posted}: {$postDate}{$editedBy}{$viewIP}
    {$allowed}
    {$posterText}
    {$deleteBox}
    11 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_posts_cell.html~: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
    {$l_author}{$pLink1}{$posterName}{$pLink2}
    {$viewReg}
    #{$anchor2} {$l_sepr} {$l_posted}: {$postDate}{$editedBy}{$viewIP}
    {$allowed}
    {$posterText}LABS
    {$deleteBox}
    11 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_topics_cell.html: -------------------------------------------------------------------------------- 1 | 2 | 4 | {$topic_reverse}{$topicTitle}{$pageNavCell} 5 | {$numReplies} 6 | {$topic_views} 7 | {$topicAuthor}
    {$whenPosted}
    8 | {$lastPoster}
    {$lastPostDate}
    9 | 10 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_user_info.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
    {$sitename} / {$userInfo}
    6 | 7 | 8 | 9 | {$USERINFO} 10 | 11 | 12 | 13 | 14 | 15 | 16 |
    -------------------------------------------------------------------------------- /forum/minibb/templates/main_user_info_cell.html: -------------------------------------------------------------------------------- 1 | 2 | {$what} 3 | {$whatValue} 4 | -------------------------------------------------------------------------------- /forum/minibb/templates/main_warning.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 13 | 14 |
    4 | {$errorMSG} 5 | 6 |
    7 | {$correctErr} 8 |
    9 | {$topicsLink} 10 | {$l_returntoforums} 11 |
    12 |
    -------------------------------------------------------------------------------- /forum/minibb/templates/stats_bar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
    {$key}{$val} {$key2}
    8 | -------------------------------------------------------------------------------- /forum/minibb/templates/tools_edit_topic_title.html: -------------------------------------------------------------------------------- 1 | 2 | {$l_topicTitle} 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /forum/minibb/templates/tools_move_topic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 20 | 21 |
    4 | 5 |
    {$l_moveTopic} "{$topicTitle}" {$l_to}:

    6 |
    7 | 8 | 9 | 10 | 11 | 14 |    15 | 16 | 17 |
    18 | 19 |
    -------------------------------------------------------------------------------- /forum/minibb/templates/tools_send_password.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 12 | 13 |
    5 | {$l_pwdWillBeSent}: 6 |

    7 | 8 | 9 | 10 | 11 |
    14 |
    15 | -------------------------------------------------------------------------------- /forum/minibb/templates/tools_userips.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
    {$sitename} / {$l_usersIPs}
    6 | 7 | 8 | 9 | 13 | 14 |
    10 | {$listUsers} 11 |  {$banLink} 12 |
    -------------------------------------------------------------------------------- /forum/minibb/templates/user_logged_in.html: -------------------------------------------------------------------------------- 1 |  {$logged_as} {$user_usr} » {$l_logout} 2 | -------------------------------------------------------------------------------- /forum/minibb/templates/user_login_only_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum/minibb/templates/user_login_only_form.html -------------------------------------------------------------------------------- /forum/minibb/templates/user_login_only_form.html~: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | {$loginLogout} 4 | 5 |
    6 |
    -------------------------------------------------------------------------------- /forum_b/minibb/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | AdditionalInfo=3 3 | Timestamp=2010,5,17,9,16,15 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /forum_b/minibb/bb_func_inslng.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forum_b/minibb/bb_func_search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/bb_func_search.php -------------------------------------------------------------------------------- /forum_b/minibb/bb_func_sticky.php: -------------------------------------------------------------------------------- 1 | 0) $errorMSG=(($sticky>0)?$l_topicSticked:$l_topicUnsticked); 12 | else $errorMSG=$l_itseemserror; 13 | $correctErr="$l_back"; 14 | } 15 | else { 16 | $errorMSG=$l_forbidden; $correctErr=$backErrorLink; 17 | } 18 | 19 | $title.=$errorMSG; 20 | echo load_header(); echo ParseTpl(makeUp('main_warning')); return; 21 | ?> -------------------------------------------------------------------------------- /forum_b/minibb/bb_func_txt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/bb_func_txt.php -------------------------------------------------------------------------------- /forum_b/minibb/bb_func_unsub.php: -------------------------------------------------------------------------------- 1 | 0) { 15 | $errorMSG=$l_completed; $title.=$l_completed; 16 | } 17 | else { 18 | $errorMSG=$l_itseemserror; $title.=$l_itseemserror; 19 | } 20 | 21 | } 22 | else { 23 | $title.=$l_accessDenied; $errorMSG=$l_accessDenied; 24 | } 25 | 26 | $correctErr=''; 27 | echo load_header(); echo ParseTpl(makeUp('main_warning')); return; 28 | ?> -------------------------------------------------------------------------------- /forum_b/minibb/bb_func_usrdat.php: -------------------------------------------------------------------------------- 1 | 0){ 9 | 10 | foreach($dbUserSheme as $k=>$v){ 11 | if(isset($_POST[$v[2]])) $s=trim(htmlspecialchars(stripslashes($_POST[$v[2]]),ENT_QUOTES)); else $s=''; 12 | ${$v[1]}=$s; ${$v[2]}=$s; 13 | } 14 | 15 | if(!isset($_POST['passwd2'])) $passwd2=''; else $passwd2=trim(htmlspecialchars(stripslashes($_POST['passwd2']),ENT_QUOTES)); 16 | if(isset($login)) $login=preg_replace("#[\s]{2,}#", ' ', $login); 17 | 18 | } 19 | else die('Unexpected error'); 20 | ?> -------------------------------------------------------------------------------- /forum_b/minibb/bb_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/bb_functions.php -------------------------------------------------------------------------------- /forum_b/minibb/bb_plugins.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forum_b/minibb/bb_plugins2.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forum_b/minibb/bb_plugins_user.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forum_b/minibb/bb_specials.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /forum_b/minibb/img/button_bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/button_bold.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/button_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/button_image.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/button_italic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/button_italic.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/button_url.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/button_url.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/dottedhl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/dottedhl.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/forum_icons/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/forum_icons/default.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/keypwd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/keypwd.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/menubg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/menubg.jpg -------------------------------------------------------------------------------- /forum_b/minibb/img/mini_bb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/mini_bb.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/minibb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/minibb.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/p.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/page.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/s.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/topic_default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/topic_default.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/topic_empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/topic_empty.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/topic_hot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/topic_hot.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/topic_locked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/topic_locked.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/topic_reverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/topic_reverse.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/topic_sticky.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/topic_sticky.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/topic_stlock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/topic_stlock.gif -------------------------------------------------------------------------------- /forum_b/minibb/img/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/img/up.gif -------------------------------------------------------------------------------- /forum_b/minibb/templates/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | AdditionalInfo=3 3 | Timestamp=2010,5,16,23,56,3 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/admin_banusr1.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 21 | 22 |
    5 | {$warning}  6 |
    7 | 8 | {$l_enterIP}: 9 |
    10 | 11 |
    12 | 13 | {$l_banReason}: 14 |
    15 | 16 | 17 | 18 |

    19 | 20 |
    23 |
    24 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/admin_deleteban1.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 14 | 15 |
    5 | 6 | {$warning}  7 |
    8 | {$bannedIPs} 9 | 10 |
    11 | 12 | 13 |
    16 |
    -------------------------------------------------------------------------------- /forum_b/minibb/templates/admin_editforum1.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 13 | 14 |
    5 |

    {$l_chooseeditforum}:

    6 | 9 | 10 |

    11 | 12 |
    15 |
    -------------------------------------------------------------------------------- /forum_b/minibb/templates/admin_login.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 |
    {$warning}
    4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
     Admin login:
     Admin password:
     
    20 | 21 | 22 | 23 |
    24 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/admin_removeuser1.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 17 | 18 |
    5 | 6 | 7 |
    8 | {$l_removeUser}: ({$l_enterID}) 9 |
    10 | {$l_removeUserMessages} 11 |
    12 |

    13 | {$l_noAsking} 14 |

    15 | 16 |
    19 |
    -------------------------------------------------------------------------------- /forum_b/minibb/templates/admin_searchusers.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 18 | 19 | 24 | 25 | 29 | 30 |
    4 | {$warning} 5 |
    6 | {$pageNav}  7 |

    8 |
    9 | 10 | 11 |

    12 | {$whatDropDown} 13 |

    14 | 15 |

    16 |
    17 |
    20 | 21 | {$Results} 22 | 23 |
    26 |
    27 | {$pageNav}  28 |
    31 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/admin_searchusersres.html: -------------------------------------------------------------------------------- 1 |
  • {$delCheckBox}{$row[1]} ({$row[0]}) {$l_sepr} {$l_usrInfo[2]}: {$rDate} {$l_sepr} {$l_email}: {$row[4]} 2 |
    3 | {$l_stats_numPosts}: {$numReplies} {$l_sepr} {$l_userLastPosts}: {$lReplies}
    [{$l_deletePost}]
    4 |
    5 |
  • -------------------------------------------------------------------------------- /forum_b/minibb/templates/admin_sendmails1.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 12 | 13 |
    5 | {$warning}  6 |

    {$l_delSendMais}

    7 | 8 | 9 |

    10 | 11 |
    14 |
    -------------------------------------------------------------------------------- /forum_b/minibb/templates/admin_viewsubs.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
    {$sitename} / {$l_subscriptions}
    6 | 7 | 8 | 9 | 15 | 16 |
    10 | {$l_topic}: {$topicTitle} 11 | 12 | {$listSubs} 13 | 14 |
    -------------------------------------------------------------------------------- /forum_b/minibb/templates/email_admin_userregister_eng.txt: -------------------------------------------------------------------------------- 1 | SUBJECT>>{$sitename}: New Registration<< 2 | Hello, 3 | 4 | Someone has been registered at "{$sitename}": 5 | 6 | ID: {$insres} 7 | 8 | Login: {$username} 9 | Email: {$user_email} 10 | ICQ: {$user_icq} 11 | Website: {$user_website} 12 | Occupation: {$user_occ} 13 | Region: {$user_from} 14 | Interests: {$user_interest} 15 | 16 | P.S. If you would like to turn off messages like this, set $emailadmin variable in your setup_options.php to '0'. 17 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/email_user_confirm_eng.txt: -------------------------------------------------------------------------------- 1 | SUBJECT>>{$sitename}: Confirm Email<< 2 | Hello {$loginName}, 3 | 4 | Click on the confirmation link below, or copy/paste it as your browser's URL address, for gaining full access to our forums: 5 | 6 | {$main_url}/{$indexphp}action=confirmpasswd&confirmCode={$confirmCode} 7 | 8 | Best Regards, 9 | Forum Administrator 10 | {$main_url}/{$startIndex} 11 | 12 | This email has been sent automatically. Please do not reply! 13 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/email_user_register_eng.txt: -------------------------------------------------------------------------------- 1 | SUBJECT>>Welcome to {$sitename}!<< 2 | Hello, 3 | 4 | thank You for signing up at our forums! 5 | 6 | Your Username is: {$username} 7 | Your Password is: {$passwd} 8 | 9 | Please, keep this data in a cool and dry place for further assistance. 10 | 11 | Best Regards, 12 | Forum Administrator 13 | {$main_url}/{$startIndex} 14 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/faq.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 |
    4 | {$manual} 5 |
    -------------------------------------------------------------------------------- /forum_b/minibb/templates/go.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | - 4 | 5 | 6 | 7 | 8 | >>> 9 | 10 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_access_denied.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {$title} 5 | 6 | 7 |

    {$l_accessDenied}

    8 | 9 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_footer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
    {$l_adminpanel_link} {$violating_the_copyright_may_result_in_your_criminal_responsibility}
    7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_forumgroup.html: -------------------------------------------------------------------------------- 1 | 2 | {$cols[6]} 3 | 4 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_forums_cell.html: -------------------------------------------------------------------------------- 1 | 2 | {$forum_title} 3 | {$forum_title}
    {$forum_desc} 4 | {$numTopics} 5 | {$numPosts} 6 | 7 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_forums_cell.html~: -------------------------------------------------------------------------------- 1 | 2 | {$forum_title} 3 | {$forum_title}
    {$forum_desc} 4 | {$numTopics} 5 | {$numPosts} 6 | 7 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_forums_list.html: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | 4 | 7 | 8 |
    9 |
    10 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_last_discuss_cell.html: -------------------------------------------------------------------------------- 1 | 2 | {$fTitle[$forum]} 3 | {$topic_reverse}{$topic_title}{$pageNavCell} 4 | {$numReplies} 5 | {$topic_views} 6 | {$topicAuthor}
    {$whenPosted}
    7 | {$lastPoster}
    {$lastPostDate}
    8 | 9 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_modern_fcell.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | {$forum_title} 4 | 5 | {$forum_title} 6 | 7 | 8 | {$l_num_topics}: {$numTopics} {$l_sepr} {$l_replies}: {$numPosts} 9 | 10 | 11 | {$forum_desc} 12 | 13 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_modern_lcell.html: -------------------------------------------------------------------------------- 1 | 2 | {$fTitle[$forum]} 3 | {$topic_reverse}{$topic_title}{$pageNavCell} 4 |
    {$fTitle[$forum]}
    5 | 6 | {$numReplies} 7 | {$topic_views} 8 | {$topicAuthor}
    {$whenPosted}
    9 | {$lastPoster}
    {$lastPostDate}
    10 | 11 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_modern_stitle.html: -------------------------------------------------------------------------------- 1 | 2 | {$cols[6]} 3 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_post_area.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 5 | {$mainPostForm} 6 | 7 | 8 | 22 | 23 |
    9 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
    24 | 25 |
    26 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_post_closed.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
    {$l_topic_closed}
    6 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_posthold.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 10 | 11 |
    4 | {$errorMSG} 5 |
    6 | 7 | {$formDisplay} 8 | 9 |
    -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_posts_cell.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
    {$l_author}{$pLink1}{$posterName}{$pLink2}
    {$viewReg}
    #{$anchor2} {$l_sepr} {$l_posted}: {$postDate}{$editedBy}{$viewIP}
    {$allowed}
    {$posterText}
    {$deleteBox}
    11 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_posts_cell.html~: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
    {$l_author}{$pLink1}{$posterName}{$pLink2}
    {$viewReg}
    #{$anchor2} {$l_sepr} {$l_posted}: {$postDate}{$editedBy}{$viewIP}
    {$allowed}
    {$posterText}LABS
    {$deleteBox}
    11 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_topics_cell.html: -------------------------------------------------------------------------------- 1 | 2 | 4 | {$topic_reverse}{$topicTitle}{$pageNavCell} 5 | {$numReplies} 6 | {$topic_views} 7 | {$topicAuthor}
    {$whenPosted}
    8 | {$lastPoster}
    {$lastPostDate}
    9 | 10 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_user_info.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
    {$sitename} / {$userInfo}
    6 | 7 | 8 | 9 | {$USERINFO} 10 | 11 | 12 | 13 | 14 | 15 | 16 |
    -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_user_info_cell.html: -------------------------------------------------------------------------------- 1 | 2 | {$what} 3 | {$whatValue} 4 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/main_warning.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 13 | 14 |
    4 | {$errorMSG} 5 | 6 |
    7 | {$correctErr} 8 |
    9 | {$topicsLink} 10 | {$l_returntoforums} 11 |
    12 |
    -------------------------------------------------------------------------------- /forum_b/minibb/templates/stats_bar.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |
    {$key}{$val} {$key2}
    8 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/tools_edit_topic_title.html: -------------------------------------------------------------------------------- 1 | 2 | {$l_topicTitle} 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/tools_move_topic.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 20 | 21 |
    4 | 5 |
    {$l_moveTopic} "{$topicTitle}" {$l_to}:

    6 |
    7 | 8 | 9 | 10 | 11 | 14 |    15 | 16 | 17 |
    18 | 19 |
    -------------------------------------------------------------------------------- /forum_b/minibb/templates/tools_send_password.html: -------------------------------------------------------------------------------- 1 |
    2 | 3 | 4 | 12 | 13 |
    5 | {$l_pwdWillBeSent}: 6 |

    7 | 8 | 9 | 10 | 11 |
    14 |
    15 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/tools_userips.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
    {$sitename} / {$l_usersIPs}
    6 | 7 | 8 | 9 | 13 | 14 |
    10 | {$listUsers} 11 |  {$banLink} 12 |
    -------------------------------------------------------------------------------- /forum_b/minibb/templates/user_logged_in.html: -------------------------------------------------------------------------------- 1 |  {$logged_as} {$user_usr} » {$l_logout} 2 | -------------------------------------------------------------------------------- /forum_b/minibb/templates/user_login_only_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/forum_b/minibb/templates/user_login_only_form.html -------------------------------------------------------------------------------- /forum_b/minibb/templates/user_login_only_form.html~: -------------------------------------------------------------------------------- 1 |
    2 |
    3 | {$loginLogout} 4 | 5 |
    6 |
    -------------------------------------------------------------------------------- /images/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | AdditionalInfo=3 3 | SortOrder=1 4 | Sorting=2 5 | Timestamp=2010,5,29,22,9,58 6 | ViewMode=1 7 | -------------------------------------------------------------------------------- /images/0809b903ee757dbffb63d8c3677a0cd8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/0809b903ee757dbffb63d8c3677a0cd8.png -------------------------------------------------------------------------------- /images/1265081499.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/1265081499.jpg -------------------------------------------------------------------------------- /images/12e11177d56479d0a889de3e09e87165.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/12e11177d56479d0a889de3e09e87165.png -------------------------------------------------------------------------------- /images/192ba5280ac62b2566d179041986be08.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/192ba5280ac62b2566d179041986be08.gif -------------------------------------------------------------------------------- /images/2dca20402e61886eb68d11f258d50abb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/2dca20402e61886eb68d11f258d50abb.jpg -------------------------------------------------------------------------------- /images/33d0f0fcacbdff6b28b2aa32a9ae7de9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/33d0f0fcacbdff6b28b2aa32a9ae7de9.gif -------------------------------------------------------------------------------- /images/381a3f7f5e1d6f143537c234a89a17bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/381a3f7f5e1d6f143537c234a89a17bf.png -------------------------------------------------------------------------------- /images/3b3b4bec9511e54848f7efb8d8b749a9.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/3b3b4bec9511e54848f7efb8d8b749a9.gif -------------------------------------------------------------------------------- /images/4690cb768325bf3a8ad85129b8ccdace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/4690cb768325bf3a8ad85129b8ccdace.png -------------------------------------------------------------------------------- /images/49415ba307c480108b3e4f2c988c3b53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/49415ba307c480108b3e4f2c988c3b53.png -------------------------------------------------------------------------------- /images/4c627030e1efe422a181d6a6a9796d48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/4c627030e1efe422a181d6a6a9796d48.png -------------------------------------------------------------------------------- /images/5385104fa26215c4bfa7c7bb0b0010f2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/5385104fa26215c4bfa7c7bb0b0010f2.jpg -------------------------------------------------------------------------------- /images/5ec5b0dbd503644e8756836e91a4910b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/5ec5b0dbd503644e8756836e91a4910b.jpg -------------------------------------------------------------------------------- /images/711bce37172a5275069e215ba5d29139.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/711bce37172a5275069e215ba5d29139.gif -------------------------------------------------------------------------------- /images/71d26552562bacb71da3675406757b3b.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/71d26552562bacb71da3675406757b3b.gif -------------------------------------------------------------------------------- /images/86affe235137958b79fcb6ec6b6519c9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/86affe235137958b79fcb6ec6b6519c9.png -------------------------------------------------------------------------------- /images/89c05ab508a1fc3acac239c6bd293c63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/89c05ab508a1fc3acac239c6bd293c63.png -------------------------------------------------------------------------------- /images/8adfdbbb44a43ca59a07b4d6a12cef04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/8adfdbbb44a43ca59a07b4d6a12cef04.png -------------------------------------------------------------------------------- /images/916d14c447b309dca049d64f7de98227.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/916d14c447b309dca049d64f7de98227.png -------------------------------------------------------------------------------- /images/96750ad65caf6f2a94227b8b7205e89a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/96750ad65caf6f2a94227b8b7205e89a.png -------------------------------------------------------------------------------- /images/96dbbb114444c9900f8b783035a34cc9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/96dbbb114444c9900f8b783035a34cc9.png -------------------------------------------------------------------------------- /images/9890c827206ddaaf32ea557d5e275317.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/9890c827206ddaaf32ea557d5e275317.png -------------------------------------------------------------------------------- /images/9dcf35ef7b5c2881fbbf7272e1f5bcc4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/9dcf35ef7b5c2881fbbf7272e1f5bcc4.png -------------------------------------------------------------------------------- /images/a71098248312c2e8a5aa11599609856a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/a71098248312c2e8a5aa11599609856a.png -------------------------------------------------------------------------------- /images/a7a55d3b53b86731eb852bfd265af2d8.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/a7a55d3b53b86731eb852bfd265af2d8.gif -------------------------------------------------------------------------------- /images/ad54ac993601ff8ed44fb3a19529cf57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/ad54ac993601ff8ed44fb3a19529cf57.png -------------------------------------------------------------------------------- /images/b926850f7261bdd83b0056feee2d381b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/b926850f7261bdd83b0056feee2d381b.png -------------------------------------------------------------------------------- /images/b99a0aa5dd9031cc3706dc2dddee8a44.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/b99a0aa5dd9031cc3706dc2dddee8a44.gif -------------------------------------------------------------------------------- /images/bk_dotted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/bk_dotted.gif -------------------------------------------------------------------------------- /images/book.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/book.jpg -------------------------------------------------------------------------------- /images/c92cba3fef0e42fd22a17ef62e6db0da.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/c92cba3fef0e42fd22a17ef62e6db0da.png -------------------------------------------------------------------------------- /images/clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/clock.gif -------------------------------------------------------------------------------- /images/comment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/comment.gif -------------------------------------------------------------------------------- /images/contentbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/contentbg.jpg -------------------------------------------------------------------------------- /images/d0a3e779baa49eb818e1e9563558457f.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/d0a3e779baa49eb818e1e9563558457f.jpg -------------------------------------------------------------------------------- /images/d7bfb16b8d3c72bbdf31e6128ff889a7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/d7bfb16b8d3c72bbdf31e6128ff889a7.jpg -------------------------------------------------------------------------------- /images/e14c00314a69d59d74e0ff547ba1072a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/e14c00314a69d59d74e0ff547ba1072a.png -------------------------------------------------------------------------------- /images/e22cbda40bdb226c018df7c20375eb64.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/e22cbda40bdb226c018df7c20375eb64.gif -------------------------------------------------------------------------------- /images/e3ca22cb8e55ad7bb94ad91bd64842d1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/e3ca22cb8e55ad7bb94ad91bd64842d1.png -------------------------------------------------------------------------------- /images/f2df926c9ee64304b63fbea299ee1736.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/f2df926c9ee64304b63fbea299ee1736.png -------------------------------------------------------------------------------- /images/f3eea9d6652effedc0fe464794fba017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/f3eea9d6652effedc0fe464794fba017.png -------------------------------------------------------------------------------- /images/firefox-gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/firefox-gray.jpg -------------------------------------------------------------------------------- /images/footerbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/footerbg.jpg -------------------------------------------------------------------------------- /images/headerbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/headerbg.jpg -------------------------------------------------------------------------------- /images/logobg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/logobg.jpg -------------------------------------------------------------------------------- /images/no-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/no-cover.png -------------------------------------------------------------------------------- /images/no_avatar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/no_avatar.gif -------------------------------------------------------------------------------- /images/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/page.gif -------------------------------------------------------------------------------- /images/quote.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/quote.gif -------------------------------------------------------------------------------- /images/quote2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/quote2.gif -------------------------------------------------------------------------------- /images/sample-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/sample-image.jpg -------------------------------------------------------------------------------- /images/test_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/images/test_cover.png -------------------------------------------------------------------------------- /info.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /info2.php: -------------------------------------------------------------------------------- 1 | 12 | 13 | -------------------------------------------------------------------------------- /nbproject/private/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/nbproject/private/config.properties -------------------------------------------------------------------------------- /nbproject/private/private.properties: -------------------------------------------------------------------------------- 1 | auxiliary.org-netbeans-modules-web-client-tools-api.clientdebug=false 2 | auxiliary.org-netbeans-modules-web-client-tools-api.dialogShowDebugPanel=true 3 | auxiliary.org-netbeans-modules-web-client-tools-api.FIREFOX=true 4 | auxiliary.org-netbeans-modules-web-client-tools-api.INTERNET_5f_EXPLORER=false 5 | auxiliary.org-netbeans-modules-web-client-tools-api.serverdebug=true 6 | copy.src.files=false 7 | copy.src.target=/var/www/BookSharing 8 | debug.url=DEFAULT_URL 9 | index.file=index.php 10 | run.as=LOCAL 11 | url=http://localhost/BookSharing/ 12 | -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- 1 | include.path=${php.global.include.path} 2 | source.encoding=UTF-8 3 | src.dir=. 4 | tags.asp=false 5 | tags.short=true 6 | web.root=. 7 | -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | org.netbeans.modules.php.project 4 | 5 | 6 | BookSharing 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/application/config/hooks.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/application/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/application/controllers/welcome.php: -------------------------------------------------------------------------------- 1 | load->view('welcome_message'); 13 | } 14 | } 15 | 16 | /* End of file welcome.php */ 17 | /* Location: ./system/application/controllers/welcome.php */ -------------------------------------------------------------------------------- /system/application/errors/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 404 Page Not Found 4 | 27 | 28 | 29 |
    30 |

    31 | 32 |
    33 | 34 | -------------------------------------------------------------------------------- /system/application/errors/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Database Error 4 | 27 | 28 | 29 |
    30 |

    31 | 32 |
    33 | 34 | -------------------------------------------------------------------------------- /system/application/errors/error_general.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | Error 4 | 27 | 28 | 29 |
    30 |

    31 | 32 |
    33 | 34 | -------------------------------------------------------------------------------- /system/application/errors/error_php.php: -------------------------------------------------------------------------------- 1 |
    2 | 3 |

    A PHP Error was encountered

    4 | 5 |

    Severity:

    6 |

    Message:

    7 |

    Filename:

    8 |

    Line Number:

    9 | 10 |
    -------------------------------------------------------------------------------- /system/application/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/application/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/application/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/application/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/application/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/application/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/application/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/application/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/codeigniter/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/system/fonts/texb.ttf -------------------------------------------------------------------------------- /system/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/language/english/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/plugins/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/scaffolding/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/system/scaffolding/images/background.jpg -------------------------------------------------------------------------------- /system/scaffolding/images/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/scaffolding/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/system/scaffolding/images/logo.jpg -------------------------------------------------------------------------------- /system/scaffolding/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/scaffolding/views/delete.php: -------------------------------------------------------------------------------- 1 | load->view('header'); ?> 2 | 3 |

    4 | 5 |

      |   6 | 7 | load->view('footer'); 8 | /* End of file delete.php */ 9 | /* Location: ./system/scaffolding/views/delete.php */ 10 | -------------------------------------------------------------------------------- /system/scaffolding/views/footer.php: -------------------------------------------------------------------------------- 1 | 2 |

    3 | 4 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /system/scaffolding/views/header.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | <?php echo $title; ?> 6 | 7 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 27 | 28 |
    29 |
    -------------------------------------------------------------------------------- /system/scaffolding/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

    Directory access is forbidden.

    8 | 9 | 10 | -------------------------------------------------------------------------------- /system/scaffolding/views/no_data.php: -------------------------------------------------------------------------------- 1 | load->view('header'); ?> 2 | 3 |

    4 |

    5 | 6 | load->view('footer'); 7 | /* End of file no_data.php */ 8 | /* Location: ./system/scaffolding/views/no_data.php */ -------------------------------------------------------------------------------- /system/scaffolding/views/view.php: -------------------------------------------------------------------------------- 1 | load->view('header'); ?> 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | result() as $row): ?> 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 |
    EditDelete
     $primary), $scaff_edit); ?> $primary), $scaff_delete); ?>$field);?>
    22 | 23 | 24 | 25 | load->view('footer'); 26 | /* End of file view.php */ 27 | /* Location: ./system/scaffolding/views/view.php */ -------------------------------------------------------------------------------- /uml/7.session: -------------------------------------------------------------------------------- 1 | window_sizes 1280 779 637 637 515 176 2 | show_stereotypes 3 | selected 4 | package_ref 128007 // UML_GENERATE 5 | open 6 | deploymentview_ref 128007 // controllers 7 | 8 | package_ref 128391 // models 9 | end 10 | end 11 | -------------------------------------------------------------------------------- /uml/cpp_includes: -------------------------------------------------------------------------------- 1 | // "a type" "needed cpp_includes" 2 | "vector" "#include 3 | using namespace std;" 4 | 5 | "list" "#include 6 | using namespace std;" 7 | 8 | "map" "#include 9 | using namespace std;" 10 | 11 | "string" "#include 12 | using namespace std;" 13 | 14 | -------------------------------------------------------------------------------- /uml/idl_includes: -------------------------------------------------------------------------------- 1 | // "a type" "needed idl_includes" 2 | -------------------------------------------------------------------------------- /uml/java_imports: -------------------------------------------------------------------------------- 1 | // "a type" "needed java_imports" 2 | -------------------------------------------------------------------------------- /uml/python_imports: -------------------------------------------------------------------------------- 1 | // "a type" "needed python_imports" 2 | -------------------------------------------------------------------------------- /user_guide/images/appflowchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/appflowchart.gif -------------------------------------------------------------------------------- /user_guide/images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/arrow.gif -------------------------------------------------------------------------------- /user_guide/images/ci_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/ci_logo.jpg -------------------------------------------------------------------------------- /user_guide/images/ci_logo_flame.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/ci_logo_flame.jpg -------------------------------------------------------------------------------- /user_guide/images/ci_quick_ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/ci_quick_ref.png -------------------------------------------------------------------------------- /user_guide/images/codeigniter_1.7.1_helper_reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/codeigniter_1.7.1_helper_reference.pdf -------------------------------------------------------------------------------- /user_guide/images/codeigniter_1.7.1_helper_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/codeigniter_1.7.1_helper_reference.png -------------------------------------------------------------------------------- /user_guide/images/codeigniter_1.7.1_library_reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/codeigniter_1.7.1_library_reference.pdf -------------------------------------------------------------------------------- /user_guide/images/codeigniter_1.7.1_library_reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/codeigniter_1.7.1_library_reference.png -------------------------------------------------------------------------------- /user_guide/images/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/file.gif -------------------------------------------------------------------------------- /user_guide/images/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/folder.gif -------------------------------------------------------------------------------- /user_guide/images/nav_bg_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/nav_bg_darker.jpg -------------------------------------------------------------------------------- /user_guide/images/nav_separator_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/nav_separator_darker.jpg -------------------------------------------------------------------------------- /user_guide/images/nav_toggle_darker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/nav_toggle_darker.jpg -------------------------------------------------------------------------------- /user_guide/images/smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/smile.gif -------------------------------------------------------------------------------- /user_guide/images/transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firebotQL/BookSharing/bc456d23be36f6a024bca5222e6166eebd901719/user_guide/images/transparent.gif -------------------------------------------------------------------------------- /user_guide/nav/hacks.txt: -------------------------------------------------------------------------------- 1 | I did the following hack in moo.fx.js: 2 | 3 | At line 79 in the toggle: function() function, I added: 4 | 5 | document.getElementById('nav').style.display = 'block'; 6 | 7 | 8 | 9 | -- Rick Ellis -------------------------------------------------------------------------------- /user_guide/nav/user_guide_menu.js: -------------------------------------------------------------------------------- 1 | window.onload = function() { 2 | myHeight = new fx.Height('nav', {duration: 400}); 3 | myHeight.hide(); 4 | } --------------------------------------------------------------------------------