├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── Capfile ├── Gemfile ├── Gemfile.lock ├── Guardfile ├── Procfile.example ├── README.md ├── Rakefile ├── Vagrantfile ├── Vagrantfile.pkg ├── app ├── admin │ ├── dashboards.rb │ ├── o_auth2_model_clients.rb │ ├── shop_domains.rb │ ├── shops.rb │ └── themes.rb ├── assets │ ├── images │ │ ├── 1x1-transparent-black.png │ │ ├── 1x1-transparent.gif │ │ ├── admin │ │ │ ├── bg-stripes-condensed.gif │ │ │ ├── bg.gif │ │ │ ├── bg.png │ │ │ ├── blank-slate-heading-bg.png │ │ │ ├── blank-slate-overlay.png │ │ │ ├── btns │ │ │ │ ├── bg-green.gif │ │ │ │ ├── bg-red.gif │ │ │ │ ├── bg-tags.png │ │ │ │ └── bg.gif │ │ │ ├── bubbles.gif │ │ │ ├── bubbles_error.gif │ │ │ ├── carriers │ │ │ │ ├── fedex_small.png │ │ │ │ ├── shipwire_small.png │ │ │ │ ├── ups_small.png │ │ │ │ └── usps_small.png │ │ │ ├── countries │ │ │ │ └── cn.gif │ │ │ ├── customer-blank-slate.jpg │ │ │ ├── dashboard-conversions-funnel.png │ │ │ ├── gtile.gif │ │ │ ├── icons │ │ │ │ ├── accept.png │ │ │ │ ├── add-entry.gif │ │ │ │ ├── add-image.gif │ │ │ │ ├── add-product.gif │ │ │ │ ├── add.gif │ │ │ │ ├── alert.gif │ │ │ │ ├── alert2.png │ │ │ │ ├── apply-theme.gif │ │ │ │ ├── arrow-down-large.gif │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-more-less.png │ │ │ │ ├── arrow-right.gif │ │ │ │ ├── arrow-up-large.gif │ │ │ │ ├── arrow_down_small.png │ │ │ │ ├── arrow_right_small.png │ │ │ │ ├── asset-editor.gif │ │ │ │ ├── asset-src.gif │ │ │ │ ├── attachment.png │ │ │ │ ├── bg-search.png │ │ │ │ ├── blog.gif │ │ │ │ ├── book-edit.png │ │ │ │ ├── book.png │ │ │ │ ├── brick_link.gif │ │ │ │ ├── bulk-product-image.png │ │ │ │ ├── cancel-order.gif │ │ │ │ ├── cancel.png │ │ │ │ ├── chart-toggle-controls.png │ │ │ │ ├── check-desat.gif │ │ │ │ ├── check.gif │ │ │ │ ├── check2.gif │ │ │ │ ├── clear.gif │ │ │ │ ├── close.png │ │ │ │ ├── closed.gif │ │ │ │ ├── cog.png │ │ │ │ ├── comment.gif │ │ │ │ ├── coupon_add.gif │ │ │ │ ├── csv.gif │ │ │ │ ├── custom-label.gif │ │ │ │ ├── custom_payment_method.gif │ │ │ │ ├── customer.gif │ │ │ │ ├── delete.gif │ │ │ │ ├── diskspace.gif │ │ │ │ ├── domain.gif │ │ │ │ ├── down.gif │ │ │ │ ├── download-theme.png │ │ │ │ ├── drag.gif │ │ │ │ ├── drag_handle.gif │ │ │ │ ├── duplicate-theme.png │ │ │ │ ├── edit-entry.gif │ │ │ │ ├── edit-image.gif │ │ │ │ ├── edit.gif │ │ │ │ ├── editor-bg.jpg │ │ │ │ ├── email-send.gif │ │ │ │ ├── email.gif │ │ │ │ ├── email_edit.png │ │ │ │ ├── error.png │ │ │ │ ├── featured.gif │ │ │ │ ├── featured.png │ │ │ │ ├── feed-warn.gif │ │ │ │ ├── feed.gif │ │ │ │ ├── filter-x.png │ │ │ │ ├── flag_yellow.png │ │ │ │ ├── fulfillment.gif │ │ │ │ ├── greybullet.gif │ │ │ │ ├── home.gif │ │ │ │ ├── import-themes.gif │ │ │ │ ├── information.gif │ │ │ │ ├── information_saturated.gif │ │ │ │ ├── launch-triangles.png │ │ │ │ ├── layout.gif │ │ │ │ ├── link-add.gif │ │ │ │ ├── liquid.png │ │ │ │ ├── lock-7x9.png │ │ │ │ ├── lock-open.gif │ │ │ │ ├── lock.gif │ │ │ │ ├── main-theme.png │ │ │ │ ├── marketing-bg.gif │ │ │ │ ├── marketing │ │ │ │ │ └── google.gif │ │ │ │ ├── mimes │ │ │ │ │ ├── css.gif │ │ │ │ │ ├── css.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── generic.gif │ │ │ │ │ ├── generic.png │ │ │ │ │ ├── gif.gif │ │ │ │ │ ├── html.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── jpg.gif │ │ │ │ │ ├── js.gif │ │ │ │ │ ├── js.png │ │ │ │ │ ├── liquid.png │ │ │ │ │ ├── pdf.gif │ │ │ │ │ └── png.gif │ │ │ │ ├── next-page.png │ │ │ │ ├── note.gif │ │ │ │ ├── package.gif │ │ │ │ ├── package_green.gif │ │ │ │ ├── page-add.gif │ │ │ │ ├── page.gif │ │ │ │ ├── payment.gif │ │ │ │ ├── payment │ │ │ │ │ ├── american_express.png │ │ │ │ │ ├── bogus.png │ │ │ │ │ ├── dankort.png │ │ │ │ │ ├── diners_club.png │ │ │ │ │ ├── discover.png │ │ │ │ │ ├── forbrugsforeningen.png │ │ │ │ │ ├── jcb.png │ │ │ │ │ ├── laser.png │ │ │ │ │ ├── maestro.png │ │ │ │ │ ├── master.png │ │ │ │ │ ├── paypal.png │ │ │ │ │ ├── solo.png │ │ │ │ │ ├── switch.png │ │ │ │ │ └── visa.png │ │ │ │ ├── percent.gif │ │ │ │ ├── phone.gif │ │ │ │ ├── phone.png │ │ │ │ ├── phone16.gif │ │ │ │ ├── plus.gif │ │ │ │ ├── prev-page.png │ │ │ │ ├── print.gif │ │ │ │ ├── product-image.png │ │ │ │ ├── product.gif │ │ │ │ ├── progressbar-sprite.png │ │ │ │ ├── progressbar │ │ │ │ │ ├── add_content.jpg │ │ │ │ │ ├── add_product.jpg │ │ │ │ │ ├── customize_theme.jpg │ │ │ │ │ ├── launch.jpg │ │ │ │ │ ├── launched.jpg │ │ │ │ │ ├── setup_domain.jpg │ │ │ │ │ ├── setup_payment_gateway.jpg │ │ │ │ │ ├── setup_shipping.jpg │ │ │ │ │ └── setup_taxes.jpg │ │ │ │ ├── publish-main.png │ │ │ │ ├── regions.gif │ │ │ │ ├── rename.png │ │ │ │ ├── reorder.gif │ │ │ │ ├── search-bg-white.gif │ │ │ │ ├── search-bg.gif │ │ │ │ ├── settings.gif │ │ │ │ ├── shipping.gif │ │ │ │ ├── shopqi-16x17.png │ │ │ │ ├── sku.png │ │ │ │ ├── skype_16.png │ │ │ │ ├── smart-label.gif │ │ │ │ ├── tab.gif │ │ │ │ ├── table-search.png │ │ │ │ ├── tag.gif │ │ │ │ ├── taskbar-checkbox.png │ │ │ │ ├── template-editor.png │ │ │ │ ├── theme-settings.png │ │ │ │ ├── themes.gif │ │ │ │ ├── themestore.gif │ │ │ │ ├── time.gif │ │ │ │ ├── tooltip-arrow-bottom.png │ │ │ │ ├── tooltip-arrow-left.png │ │ │ │ ├── tooltip-arrow-right.png │ │ │ │ ├── tooltip-arrow-top.png │ │ │ │ ├── translation.png │ │ │ │ ├── trash.gif │ │ │ │ ├── uploaded-files.gif │ │ │ │ ├── user-chat.gif │ │ │ │ ├── user.gif │ │ │ │ ├── vcard.gif │ │ │ │ └── warning-16.gif │ │ │ ├── info-message-bg.jpg │ │ │ ├── loading-bar.gif │ │ │ ├── logo-small.gif │ │ │ ├── logo-small.xcf │ │ │ ├── minicolors │ │ │ │ ├── circle.gif │ │ │ │ ├── gradient.png │ │ │ │ ├── line.gif │ │ │ │ ├── rainbow.png │ │ │ │ └── trigger.png │ │ │ ├── no-image-compact.gif │ │ │ ├── no-image-icon.gif │ │ │ ├── no-image-large.gif │ │ │ ├── no-image-medium.gif │ │ │ ├── no-image-pico.gif │ │ │ ├── no-image-thumb.gif │ │ │ ├── orders-blank-slate.jpg │ │ │ ├── payments │ │ │ │ ├── alipay.png │ │ │ │ ├── gh.gif │ │ │ │ ├── jh.gif │ │ │ │ ├── jtccb.gif │ │ │ │ ├── lh.gif │ │ │ │ ├── minsheng.gif │ │ │ │ ├── tenpay.png │ │ │ │ ├── y_kq.png │ │ │ │ ├── yz.gif │ │ │ │ ├── yz.png │ │ │ │ ├── zh.gif │ │ │ │ └── zhaohang.gif │ │ │ ├── star-mini.png │ │ │ ├── theme-bg.gif │ │ │ ├── theme-import-icons.jpg │ │ │ ├── theme-placeholder.jpg │ │ │ ├── toolcornera.gif │ │ │ └── unpublished-theme-placeholder.jpg │ │ ├── avatar.jpg │ │ ├── background │ │ │ ├── bg-black-noise.jpg │ │ │ ├── bg-example-ss.jpg │ │ │ ├── bg-examples-header.gif │ │ │ ├── bg-footer.gif │ │ │ ├── bg-frontfeature-hover.gif │ │ │ ├── bg-grey-top-white-bottom.gif │ │ │ ├── bg-grey.gif │ │ │ ├── bg-grey2.gif │ │ │ ├── bg-grey3.gif │ │ │ ├── bg-header-376todark.png │ │ │ ├── bg-header-signup.gif │ │ │ ├── bg-homenav-hover.png │ │ │ ├── bg-homepagegreennoise.jpg │ │ │ ├── bg-masthead.gif │ │ │ ├── bg-nominate-form.png │ │ │ ├── bg-primarynav-line-seperator.png │ │ │ ├── bg-shadow-sidebar-right.png │ │ │ ├── bg-videocurtains.png │ │ │ ├── pricelist │ │ │ │ ├── col2-even.gif │ │ │ │ ├── col2-odd.gif │ │ │ │ ├── col4-even.gif │ │ │ │ └── col4-odd.gif │ │ │ └── separator.jpg │ │ ├── banners │ │ │ ├── 400-phone.gif │ │ │ ├── createanonlinestore.jpg │ │ │ ├── phone.gif │ │ │ ├── roundedcorners-dark.png │ │ │ ├── roundedcorners-green.png │ │ │ ├── text-createanonlinestore.jpg │ │ │ └── video-glow.png │ │ ├── buttons │ │ │ ├── bg-filterbar-left-drop.png │ │ │ ├── bg-filterbar-left.png │ │ │ ├── bg-filterbar-middle.png │ │ │ ├── bg-filterbar-right-pointed.png │ │ │ ├── bg-filterbar-right.png │ │ │ ├── btn-become-partner.gif │ │ │ ├── btn-bg-primarynav-arrow.png │ │ │ ├── btn-browseliveexamples.png │ │ │ ├── btn-contest.gif │ │ │ ├── btn-createstorenowblue-small.png │ │ │ ├── btn-emailus.gif │ │ │ ├── btn-ex-next.png │ │ │ ├── btn-ex-prev.png │ │ │ ├── btn-examples-next.gif │ │ │ ├── btn-examples-prev.gif │ │ │ ├── btn-examples-signup.gif │ │ │ ├── btn-livechat-offline.gif │ │ │ ├── btn-livechat.gif │ │ │ ├── btn-login-grey.gif │ │ │ ├── btn-nav-currentfeature.png │ │ │ ├── btn-openyourstorenow-blue-riskfree.png │ │ │ ├── btn-openyourstorenow-blue.png │ │ │ ├── btn-openyourstorenow-blue2.jpg │ │ │ ├── btn-openyourstorenow-blue2.png │ │ │ ├── btn-pricing-signup-lighter.jpg │ │ │ ├── btn-pricing-signup-lighter.png │ │ │ ├── btn-shop-buttons.png │ │ │ ├── btn-signup-bottom.gif │ │ │ ├── btn-signupnow.gif │ │ │ ├── btn-sprt-bg.gif │ │ │ ├── btn-vote.gif │ │ │ ├── button-colorblack.png │ │ │ ├── button-colorblue.png │ │ │ ├── button-colorgreen.png │ │ │ ├── button-colorgrey.png │ │ │ ├── button-colormagenta.png │ │ │ ├── button-colorred.png │ │ │ ├── button-colorwhite.png │ │ │ ├── button-coloryellow.png │ │ │ ├── button-woo.png │ │ │ ├── buttonbg-themedetails-featured.png │ │ │ └── buttonbg-themedetails.png │ │ ├── checkout │ │ │ ├── checkout-bg-bottom-slim.gif │ │ │ ├── checkout-bg-bottom.gif │ │ │ ├── checkout-bg-slim.gif │ │ │ ├── checkout-bg-top-slim.gif │ │ │ ├── checkout-bg-top.gif │ │ │ ├── checkout-bg.gif │ │ │ └── checkout-overview-bg.gif │ │ ├── editor │ │ │ ├── button-bg.gif │ │ │ ├── check-outline.gif │ │ │ ├── check.gif │ │ │ ├── color-swatch-tick.gif │ │ │ ├── color_swatch.png │ │ │ ├── editortoolbar.png │ │ │ ├── files.png │ │ │ ├── information.gif │ │ │ ├── link.png │ │ │ ├── media.png │ │ │ ├── palette │ │ │ │ ├── hsv-sprite-sm.gif │ │ │ │ └── hsv-sprite-sm.png │ │ │ ├── photo.png │ │ │ ├── resetformat.png │ │ │ ├── script.png │ │ │ ├── table.png │ │ │ ├── text_align_center.png │ │ │ ├── text_align_left.png │ │ │ ├── text_align_right.png │ │ │ ├── text_bold.png │ │ │ ├── text_italic.png │ │ │ ├── text_list_bullets.png │ │ │ ├── text_list_numbers.png │ │ │ ├── toolbar-bg.png │ │ │ ├── toolbar_icons.gif │ │ │ └── url.png │ │ ├── fancybox │ │ │ ├── blank.gif │ │ │ ├── fancy_close.png │ │ │ ├── fancy_loading.png │ │ │ ├── fancy_nav_left.png │ │ │ ├── fancy_nav_right.png │ │ │ ├── fancy_shadow_e.png │ │ │ ├── fancy_shadow_n.png │ │ │ ├── fancy_shadow_ne.png │ │ │ ├── fancy_shadow_nw.png │ │ │ ├── fancy_shadow_s.png │ │ │ ├── fancy_shadow_se.png │ │ │ ├── fancy_shadow_sw.png │ │ │ ├── fancy_shadow_w.png │ │ │ ├── fancy_title_left.png │ │ │ ├── fancy_title_main.png │ │ │ ├── fancy_title_over.png │ │ │ ├── fancy_title_right.png │ │ │ ├── fancybox-x.png │ │ │ ├── fancybox-y.png │ │ │ └── fancybox.png │ │ ├── favicon.png │ │ ├── graphics │ │ │ ├── 404-logo.png │ │ │ ├── designer-shopqi-mbp.png │ │ │ ├── feature-autobackups.gif │ │ │ ├── feature-cdnbox.jpg │ │ │ ├── feature-lock.jpg │ │ │ ├── feature-nohiddenfees.gif │ │ │ ├── feature-orderscreen.jpg │ │ │ ├── feature-pagescreen.gif │ │ │ ├── feature-rys-adddescr.gif │ │ │ ├── feature-rys-adddetails.gif │ │ │ ├── feature-rys-addimages.gif │ │ │ ├── feature-rys-blogs.gif │ │ │ ├── feature-rys-contact.gif │ │ │ ├── feature-rys-editscreen.jpg │ │ │ ├── feature-rys-inventory.gif │ │ │ ├── feature-rys-nextstep.gif │ │ │ ├── feature-rys-notes.gif │ │ │ ├── feature-rys-pages.gif │ │ │ ├── feature-rys-productlisting.gif │ │ │ ├── features-rys-macair.jpg │ │ │ ├── music-design-control.jpg │ │ │ ├── music-iphone.jpg │ │ │ ├── music-merch.jpg │ │ │ ├── music-quote.jpg │ │ │ ├── music-records.jpg │ │ │ ├── music-ribbons.jpg │ │ │ ├── ov-creditcards.jpg │ │ │ ├── ov-customization.jpg │ │ │ ├── ov-editor.jpg │ │ │ ├── ov-fees.jpg │ │ │ ├── ov-iphone.jpg │ │ │ ├── ov-orders.jpg │ │ │ ├── ov-promo.jpg │ │ │ ├── ov-stats.jpg │ │ │ ├── ov-subsite.jpg │ │ │ ├── ov-support.jpg │ │ │ ├── ov-themestore.jpg │ │ │ ├── ov-urls.jpg │ │ │ ├── press-contact.jpg │ │ │ ├── tour-customeraccounts.jpg │ │ │ ├── tour-customergroups.jpg │ │ │ ├── tour-orderpage-big.jpg │ │ │ ├── tour-orderpage.jpg │ │ │ ├── tour-presetex-after.png │ │ │ ├── tour-presetex-afterbig.jpg │ │ │ ├── tour-presetex-before.png │ │ │ ├── tour-presetex-beforebig.jpg │ │ │ ├── tour-presetex-presets.png │ │ │ ├── tour-presetex-presetsbig.jpg │ │ │ ├── tour-presetscreen.jpg │ │ │ ├── tour-presetscreenbig.jpg │ │ │ ├── tour-productpage-big.jpg │ │ │ ├── tour-productpage.jpg │ │ │ ├── tour-prothemes-big.jpg │ │ │ ├── tour-prothemes-small.jpg │ │ │ ├── tour-templateeditor-big.jpg │ │ │ ├── tour-templateeditor-small.jpg │ │ │ ├── tour-themeshelves-big.jpg │ │ │ ├── tour-themeshelves.jpg │ │ │ ├── tour-themestore-big.jpg │ │ │ └── tour-themestore-small.jpg │ │ ├── icons │ │ │ ├── apple-touch-icon.png │ │ │ ├── arrow13.gif │ │ │ ├── arrow18.png │ │ │ ├── bookmark11-yellow.png │ │ │ ├── box16.gif │ │ │ ├── box16.png │ │ │ ├── boxfree48.gif │ │ │ ├── checkmark-iphone.gif │ │ │ ├── checkmark10.gif │ │ │ ├── checkmark16.png │ │ │ ├── clipboard16.png │ │ │ ├── colorwheel32.gif │ │ │ ├── compass48.gif │ │ │ ├── contest.gif │ │ │ ├── designbrush16.png │ │ │ ├── feature-nav-icons │ │ │ │ ├── appstore.gif │ │ │ │ ├── design.gif │ │ │ │ ├── marketing.gif │ │ │ │ ├── mobile.gif │ │ │ │ ├── order.gif │ │ │ │ ├── overview.gif │ │ │ │ └── security.gif │ │ │ ├── feedwhite20.gif │ │ │ ├── frontpage-examples.png │ │ │ ├── frontpage-tour.png │ │ │ ├── ft-backups.png │ │ │ ├── ft-cdn.png │ │ │ ├── ft-security.png │ │ │ ├── ft-updates.png │ │ │ ├── gear_48.png │ │ │ ├── globe_48.png │ │ │ ├── graph16.png │ │ │ ├── greybullet.gif │ │ │ ├── home18.png │ │ │ ├── icon-close.png │ │ │ ├── icon-guidelines-badge.png │ │ │ ├── icon-wooninja.png │ │ │ ├── inc-jobbullet.png │ │ │ ├── infographic16.png │ │ │ ├── infographic32.png │ │ │ ├── logos10.gif │ │ │ ├── moneypile48.gif │ │ │ ├── monitor10.gif │ │ │ ├── monitor32.jpg │ │ │ ├── monitor_48.png │ │ │ ├── notification18.png │ │ │ ├── pencilruler16.png │ │ │ ├── people16.gif │ │ │ ├── press-nav │ │ │ │ ├── buzz.gif │ │ │ │ └── press.gif │ │ │ ├── safe32.gif │ │ │ ├── shield48.gif │ │ │ ├── shield_48.png │ │ │ ├── shoppingcart32.gif │ │ │ ├── smartcollection-large.gif │ │ │ ├── socialmedia-sd.png │ │ │ ├── support48.gif │ │ │ ├── trash.gif │ │ │ ├── twitterwhite20.gif │ │ │ ├── warning16.png │ │ │ ├── warning32.png │ │ │ ├── wrenchscrewdriver16.png │ │ │ └── www48.gif │ │ ├── ie │ │ │ └── bg-button.png │ │ ├── internal │ │ │ ├── down.gif │ │ │ └── up.gif │ │ ├── jqueryui │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── layout │ │ │ ├── bg-bigthumbnail-shadow.png │ │ │ ├── bg-body.jpg │ │ │ ├── bg-megadropdown.png │ │ │ ├── bg-paper.png │ │ │ ├── bg-paperfold-bottom.png │ │ │ ├── bg-paperfold-top.png │ │ │ ├── bg-paperfold.png │ │ │ ├── bg-shelf.png │ │ │ ├── bg-smallthumbnail-shadow.png │ │ │ ├── bg-themethumb-featured.png │ │ │ ├── bg-themethumb.png │ │ │ ├── bg-timeline-bar.png │ │ │ ├── bg-timeline-circle.png │ │ │ ├── bg-timeline-circlefilled.png │ │ │ ├── bg-white-radial.png │ │ │ ├── navbar.png │ │ │ └── vig-dark.png │ │ ├── lightbox │ │ │ ├── border1.png │ │ │ ├── border2.png │ │ │ ├── close.png │ │ │ └── loading.gif │ │ ├── logos │ │ │ ├── examples-cnet.png │ │ │ ├── examples-techcrunch.png │ │ │ ├── logo-shopqi.gif │ │ │ ├── logo-themestore.png │ │ │ ├── ror-logo.jpg │ │ │ ├── servercentral.png │ │ │ ├── shopqi-logo-new.jpg │ │ │ └── shopqi_bag.gif │ │ ├── message_block │ │ │ ├── back.gif │ │ │ ├── confirmation.gif │ │ │ ├── error.gif │ │ │ ├── info.gif │ │ │ ├── notice.gif │ │ │ └── warn.gif │ │ ├── other │ │ │ ├── no-image-thumb.gif │ │ │ ├── no_product_image.gif │ │ │ ├── quote-big.gif │ │ │ ├── quote-small.gif │ │ │ ├── sc_rollover.png │ │ │ └── tweet-bg.gif │ │ ├── partners │ │ │ └── icons │ │ │ │ ├── eye.png │ │ │ │ ├── table_gear.png │ │ │ │ ├── world_add.png │ │ │ │ └── world_delete.png │ │ ├── resources-nav │ │ │ ├── bg-activelink.png │ │ │ ├── bg.png │ │ │ └── logo-shopqi.png │ │ ├── signup │ │ │ ├── basic.jpg │ │ │ ├── btn-next-bg.jpg │ │ │ ├── btn-next-bg2.jpg │ │ │ ├── btn-table-signup.gif │ │ │ ├── business.jpg │ │ │ ├── checkmark.gif │ │ │ ├── col2-even.gif │ │ │ ├── col2-odd.gif │ │ │ ├── col4-even.gif │ │ │ ├── col4-odd.gif │ │ │ ├── copy-tryshopqifreefor30days.png │ │ │ ├── professional.jpg │ │ │ ├── theme-bg.png │ │ │ └── unlimited.jpg │ │ ├── skins │ │ │ ├── bg-body.gif │ │ │ ├── bg-content-papershadow.gif │ │ │ ├── bg-search.png │ │ │ ├── icn-search.png │ │ │ ├── icon-arrow.png │ │ │ └── logo-documentation.png │ │ ├── spinner.gif │ │ ├── spinner_big.gif │ │ ├── spritemaps │ │ │ └── spritemap.png │ │ └── themes │ │ │ └── themestore.jpg │ ├── javascripts │ │ ├── active_admin.js │ │ ├── admin_application.js.coffee │ │ ├── application.js.coffee │ │ ├── backbone │ │ │ ├── admin.js.coffee │ │ │ ├── controllers │ │ │ │ ├── articles.js.coffee │ │ │ │ ├── comments.js.coffee │ │ │ │ ├── custom_collections.js.coffee │ │ │ │ ├── customers │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ └── show.js.coffee │ │ │ │ ├── emails.js.coffee │ │ │ │ ├── orders │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ └── show.js.coffee │ │ │ │ ├── pages.js.coffee │ │ │ │ ├── products.js.coffee │ │ │ │ ├── smart_collections.js.coffee │ │ │ │ ├── theme │ │ │ │ │ └── themes │ │ │ │ │ │ └── index.js.coffee │ │ │ │ └── users.js.coffee │ │ │ ├── models │ │ │ │ ├── api_client.js.coffee │ │ │ │ ├── application.js.coffee │ │ │ │ ├── asset.js.coffee │ │ │ │ ├── comment.js.coffee │ │ │ │ ├── custom_collection_product.js.coffee │ │ │ │ ├── customer.js.coffee │ │ │ │ ├── customer_group.js.coffee │ │ │ │ ├── discount.js.coffee │ │ │ │ ├── domain.js.coffee │ │ │ │ ├── link.js.coffee │ │ │ │ ├── link_list.js.coffee │ │ │ │ ├── order.js.coffee │ │ │ │ ├── payment.js.coffee │ │ │ │ ├── preset.js.coffee │ │ │ │ ├── product.js.coffee │ │ │ │ ├── shipping.js.coffee │ │ │ │ ├── shop_theme.js.coffee │ │ │ │ ├── task.js.coffee │ │ │ │ ├── theme.js.coffee │ │ │ │ ├── user.js.coffee │ │ │ │ └── webhook.js.coffee │ │ │ ├── shopqi.js.coffee │ │ │ └── views │ │ │ │ ├── api_clients │ │ │ │ ├── index.js.coffee │ │ │ │ └── show.js.coffee │ │ │ │ ├── assets │ │ │ │ └── index │ │ │ │ │ ├── edit.js.coffee │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ ├── panel.js.coffee │ │ │ │ │ ├── show.js.coffee │ │ │ │ │ └── sidebar.js.coffee.erb │ │ │ │ ├── comments │ │ │ │ ├── index.js.coffee │ │ │ │ └── show.js.coffee │ │ │ │ ├── custom_collections │ │ │ │ ├── available_product.js.coffee │ │ │ │ ├── available_products.js.coffee │ │ │ │ ├── product.js.coffee │ │ │ │ └── products.js.coffee │ │ │ │ ├── customer_groups │ │ │ │ └── index │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ └── show.js.coffee │ │ │ │ ├── customers │ │ │ │ ├── index │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ │ └── show.js.coffee │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ ├── search.js.coffee │ │ │ │ │ └── show.js.coffee │ │ │ │ ├── new │ │ │ │ │ └── index.js.coffee │ │ │ │ └── show │ │ │ │ │ ├── edit.js.coffee │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ ├── note.js.coffee │ │ │ │ │ ├── orders │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ └── show.js.coffee │ │ │ │ │ ├── show.js.coffee │ │ │ │ │ └── tags.js.coffee │ │ │ │ ├── discounts │ │ │ │ ├── index.js.coffee │ │ │ │ ├── new.js.coffee │ │ │ │ └── show.js.coffee │ │ │ │ ├── domains │ │ │ │ ├── index.js.coffee │ │ │ │ └── show.js.coffee │ │ │ │ ├── link_lists │ │ │ │ ├── edit.js.coffee │ │ │ │ ├── index.js.coffee │ │ │ │ ├── links │ │ │ │ │ ├── edit.js.coffee │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ ├── new.js.coffee │ │ │ │ │ └── show.js.coffee │ │ │ │ ├── new.js.coffee │ │ │ │ └── show.js.coffee │ │ │ │ ├── orders │ │ │ │ ├── index │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ └── show.js.coffee │ │ │ │ └── show │ │ │ │ │ ├── fulfillments │ │ │ │ │ ├── edit.js.coffee │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ └── panel.js.coffee │ │ │ │ │ ├── histories │ │ │ │ │ ├── fulfillment.js.coffee │ │ │ │ │ └── index.js.coffee │ │ │ │ │ ├── line_items │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ └── show.js.coffee │ │ │ │ │ ├── note.js.coffee │ │ │ │ │ ├── other_orders.js.coffee │ │ │ │ │ ├── show.js.coffee │ │ │ │ │ └── transactions │ │ │ │ │ └── index.js.coffee │ │ │ │ ├── payments │ │ │ │ ├── index.js.coffee │ │ │ │ ├── online.js.coffee │ │ │ │ └── show.js.coffee │ │ │ │ ├── product_options │ │ │ │ ├── edit.js.coffee │ │ │ │ ├── index.js.coffee │ │ │ │ └── show.js.coffee │ │ │ │ ├── products │ │ │ │ ├── index │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ └── show.js.coffee │ │ │ │ └── show │ │ │ │ │ ├── edit.js.coffee │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ ├── show.js.coffee │ │ │ │ │ └── variants │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ ├── new.js.coffee │ │ │ │ │ ├── quick_select.js.coffee │ │ │ │ │ └── show.js.coffee │ │ │ │ ├── shippings │ │ │ │ ├── index.js.coffee │ │ │ │ ├── new.js.coffee.erb │ │ │ │ ├── price_based_shipping_rates │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ ├── new.js.coffee │ │ │ │ │ └── show.js.coffee │ │ │ │ ├── show.js.coffee │ │ │ │ └── weight_based_shipping_rates │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ ├── new.js.coffee │ │ │ │ │ └── show.js.coffee │ │ │ │ ├── signup │ │ │ │ ├── index.js.coffee │ │ │ │ └── themes │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ └── show.js.coffee │ │ │ │ ├── tasks │ │ │ │ ├── checkoff.js.coffee │ │ │ │ ├── index.js.coffee │ │ │ │ └── show.js.coffee │ │ │ │ ├── theme │ │ │ │ └── themes │ │ │ │ │ ├── index │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ └── show.js.coffee │ │ │ │ │ └── show │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ ├── other.js.coffee │ │ │ │ │ └── style.js.coffee │ │ │ │ ├── themes │ │ │ │ ├── index.js.coffee │ │ │ │ ├── list.js.coffee │ │ │ │ ├── settings │ │ │ │ │ ├── index.js.coffee.erb │ │ │ │ │ └── presets │ │ │ │ │ │ ├── index.js.coffee │ │ │ │ │ │ └── show.js.coffee │ │ │ │ └── show.js.coffee │ │ │ │ ├── users │ │ │ │ ├── index.js.coffee │ │ │ │ ├── permission.js.coffee │ │ │ │ └── show.js.coffee │ │ │ │ └── webhooks │ │ │ │ ├── index.js.coffee │ │ │ │ ├── new.js.coffee │ │ │ │ └── show.js.coffee │ │ ├── backbone_js.js.coffee │ │ ├── checkout_application.js.coffee │ │ ├── plugins.js.coffee │ │ ├── plugins │ │ │ ├── jquery.blank_slate.js.coffee │ │ │ └── jquery.guide.js.coffee │ │ ├── shop │ │ │ ├── account.js.coffee │ │ │ └── checkout.js.coffee │ │ ├── shop_admin_application.js.coffee │ │ ├── shopqi_application.js.coffee │ │ ├── shopqi_wiki_application.js │ │ └── utils │ │ │ └── utils.js.coffee │ └── stylesheets │ │ ├── active_admin.css.scss │ │ ├── admin.css.scss.erb │ │ ├── admin │ │ ├── _base.css.scss.erb │ │ ├── layout_doorkeeper_authorization.css.scss.erb │ │ └── normalize.css.scss │ │ ├── admin_shopqi.css.scss.erb │ │ ├── application.css │ │ ├── base_packaged.css.scss.erb │ │ ├── checkout.css.scss.erb │ │ ├── customer.css.scss.erb │ │ ├── dialog.css.scss.erb │ │ ├── fileuploader.css.scss.erb │ │ ├── force-scrollbar.css.scss.erb │ │ ├── forms.css.scss.erb │ │ ├── ie-admin.css.scss.erb │ │ ├── ie-checkout.css.scss.erb │ │ ├── ie-themes.css.scss.erb │ │ ├── ie.css.scss.erb │ │ ├── ie6.css.scss.erb │ │ ├── ie7-themes.css.scss.erb │ │ ├── ie7.css.scss.erb │ │ ├── jquery-ui-1.8.14.custom.css.scss.erb │ │ ├── jquery.fancybox-1.3.4.css.scss.erb │ │ ├── jquery.miniColors.css.scss.erb │ │ ├── layout_admin.css.scss.erb │ │ ├── layout_admin_print.css.scss.erb │ │ ├── layout_application.css.scss.erb │ │ ├── layout_checkout.css.scss.erb │ │ ├── layout_shop_admin.css.scss.erb │ │ ├── layout_shopqi.css.scss.erb │ │ ├── layout_shopqi_theme.css.scss.erb │ │ ├── layout_shopqi_wiki.css.scss.erb │ │ ├── master.css.scss.erb │ │ ├── message_block.css.scss.erb │ │ ├── mobile.css.scss.erb │ │ ├── resources-nav.css.scss.erb │ │ ├── shopqi_ie-signup.css.scss.erb │ │ ├── shopqi_signup.css.scss.erb │ │ ├── utility.css.scss.erb │ │ └── wiki.css.scss.erb ├── controllers │ ├── admin │ │ ├── account_controller.rb │ │ ├── api_clients_controller.rb │ │ ├── app_controller.rb │ │ ├── applications_controller.rb │ │ ├── articles_controller.rb │ │ ├── assets_controller.rb │ │ ├── blogs_controller.rb │ │ ├── comments_controller.rb │ │ ├── custom_collection_products_controller.rb │ │ ├── custom_collections_controller.rb │ │ ├── customer_groups_controller.rb │ │ ├── customers_controller.rb │ │ ├── discounts_controller.rb │ │ ├── domains_controller.rb │ │ ├── emails_controller.rb │ │ ├── fulfillments_controller.rb │ │ ├── home_controller.rb │ │ ├── kindeditor_controller.rb │ │ ├── link_lists_controller.rb │ │ ├── links_controller.rb │ │ ├── oauth_controller.rb │ │ ├── orders_controller.rb │ │ ├── pages_controller.rb │ │ ├── payments_controller.rb │ │ ├── photos_controller.rb │ │ ├── price_based_shipping_rates_controller.rb │ │ ├── product_options_controller.rb │ │ ├── product_variants_controller.rb │ │ ├── products_controller.rb │ │ ├── sessions_controller.rb │ │ ├── shippings_controller.rb │ │ ├── shop_theme_settings_controller.rb │ │ ├── shops_controller.rb │ │ ├── smart_collections_controller.rb │ │ ├── themes_controller.rb │ │ ├── transactions_controller.rb │ │ ├── users_controller.rb │ │ ├── webhooks_controller.rb │ │ └── weight_based_shipping_rates_controller.rb │ ├── api │ │ └── v1 │ │ │ ├── app_controller.rb │ │ │ ├── orders_controller.rb │ │ │ ├── product_variants_controller.rb │ │ │ ├── products_controller.rb │ │ │ ├── shops_controller.rb │ │ │ ├── themes_controller.rb │ │ │ └── webhooks_controller.rb │ ├── application_controller.rb │ ├── district_controller.rb │ ├── shop │ │ ├── README.textile │ │ ├── account_controller.rb │ │ ├── app_controller.rb │ │ ├── articles_controller.rb │ │ ├── blogs_controller.rb │ │ ├── cart_controller.rb │ │ ├── collections_controller.rb │ │ ├── contact_controller.rb │ │ ├── customer_addresses_controller.rb │ │ ├── order_controller.rb │ │ ├── pages_controller.rb │ │ ├── passwords_controller.rb │ │ ├── products_controller.rb │ │ ├── registrations_controller.rb │ │ ├── search_controller.rb │ │ ├── sessions_controller.rb │ │ └── shops_controller.rb │ ├── shopqi │ │ ├── app_controller.rb │ │ ├── home_controller.rb │ │ └── registrations_controller.rb │ ├── theme │ │ ├── app_controller.rb │ │ └── themes_controller.rb │ └── wiki │ │ ├── app_controller.rb │ │ └── wiki_pages_controller.rb ├── helpers │ ├── admin │ │ ├── app_helper.rb │ │ ├── blogs_helper.rb │ │ ├── emails_helper.rb │ │ ├── home_helper.rb │ │ ├── orders_helper.rb │ │ ├── price_based_shipping_rates_helper.rb │ │ ├── products_helper.rb │ │ ├── shipping_helper.rb │ │ └── shops_helper.rb │ ├── app_helper.rb │ ├── shop │ │ ├── order_helper.rb │ │ └── shops_helper.rb │ └── shopqi │ │ └── home_helper.rb ├── jobs │ ├── README.md │ ├── alipay_send_goods.rb │ ├── delete_shop.rb │ ├── shop_contact_us.rb │ ├── shopqi_mailer.rb │ ├── sunspot_worker.rb │ ├── theme_exporter.rb │ ├── theme_extracter.rb │ └── webhook_worker.rb ├── liquids │ ├── address_drop.rb │ ├── article_drop.rb │ ├── base_filter.rb │ ├── blogs_drop.rb │ ├── cart_drop.rb │ ├── collections_drop.rb │ ├── comment_drop.rb │ ├── customer_drop.rb │ ├── errors_drop.rb │ ├── form.rb │ ├── layout.rb │ ├── line_item_drop.rb │ ├── link_lists_drop.rb │ ├── order_drop.rb │ ├── pages_drop.rb │ ├── paginate.rb │ ├── paginate_filter.rb │ ├── product_drop.rb │ ├── product_variant_drop.rb │ ├── search_drop.rb │ ├── settings_drop.rb │ ├── shop_drop.rb │ ├── tag_filter.rb │ └── url_filter.rb ├── mailers │ ├── README.textile │ ├── shop_mailer.rb │ └── theme_mailer.rb ├── models │ ├── activity.rb │ ├── admin_user.rb │ ├── api_client.rb │ ├── asset.rb │ ├── blog.rb │ ├── cart.rb │ ├── consumption.rb │ ├── contact.rb │ ├── custom_collection.rb │ ├── customer.rb │ ├── customer_group.rb │ ├── discount.rb │ ├── district.rb │ ├── email.rb │ ├── key_values.rb │ ├── kindeditor.rb │ ├── link_list.rb │ ├── order.rb │ ├── page.rb │ ├── payment.rb │ ├── permission.rb │ ├── product.rb │ ├── secret_setting.rb │ ├── session_cart.rb │ ├── setting.rb │ ├── shipping.rb │ ├── shop.rb │ ├── shop_theme.rb │ ├── smart_collection.rb │ ├── subscribe.rb │ ├── tag.rb │ ├── theme.rb │ ├── translation.rb │ ├── user.rb │ ├── webhook.rb │ └── wiki_page.rb ├── observers │ ├── README.md │ ├── activity_observer.rb │ ├── order_observer.rb │ ├── product_observer.rb │ ├── shop_observer.rb │ ├── smart_collection_observer.rb │ ├── theme_observer.rb │ └── webhook_observer.rb ├── uploaders │ ├── theme_collection_uploader.rb │ ├── theme_main_uploader.rb │ ├── theme_product_uploader.rb │ └── theme_uploader.rb ├── validators │ ├── email_format_validator.rb │ ├── sku_validator.rb │ └── storage_validator.rb └── views │ ├── active_admin │ └── shops │ │ └── state.html.haml │ ├── admin │ ├── account │ │ ├── _about.html.haml │ │ ├── _plans.html.haml │ │ ├── cancel.html.haml │ │ ├── change_plan.html.haml │ │ ├── confirm_pay_plan.html.haml │ │ ├── confirm_plan.html.haml │ │ ├── index.html.haml │ │ └── pay_plan.html.haml │ ├── api_clients │ │ └── index.html.haml │ ├── articles │ │ ├── _article.html.haml │ │ ├── _articles.html.haml │ │ ├── _comments.html.haml │ │ ├── _comments_count.html.haml │ │ ├── _form.html.haml │ │ ├── _visibility.html.haml │ │ ├── destroy.js.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── assets │ │ ├── edit.html.haml │ │ └── index.html.haml │ ├── blogs │ │ ├── _blog.html.haml │ │ ├── _comments.html.haml │ │ ├── _index.html.haml │ │ ├── edit.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── comments │ │ ├── _comment.html.haml │ │ ├── _comment_template.html.haml │ │ ├── _index.html.haml │ │ └── index.html.haml │ ├── custom_collections │ │ ├── _index.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ ├── show.html.haml │ │ └── update_order.js.haml │ ├── customers │ │ ├── _export.html.haml │ │ ├── _menu.html.haml │ │ ├── blank_slate.html.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── discounts │ │ └── index.html.haml │ ├── domains │ │ ├── _buy.html.haml │ │ ├── _index.html.haml │ │ └── index.html.haml │ ├── emails │ │ ├── _subscription.html.haml │ │ ├── edit.html.haml │ │ ├── follow.js.haml │ │ ├── index.html.haml │ │ ├── preview.html.haml │ │ └── unfollow.js.haml │ ├── fulfillments │ │ └── _show.html.haml │ ├── home │ │ ├── _activity.html.haml │ │ ├── _progress.html.haml │ │ ├── _progress_task.html.haml │ │ ├── _show_user.html.haml │ │ ├── dashboard.html.haml │ │ ├── guide.html.haml │ │ ├── guide │ │ │ ├── _add_content.html.haml │ │ │ ├── _add_product.html.haml │ │ │ ├── _customize_theme.html.haml │ │ │ ├── _launch.html.haml │ │ │ ├── _setup_domain.html.haml │ │ │ ├── _setup_payment_gateway.html.haml │ │ │ └── _setup_shipping.html.haml │ │ └── query.html.haml │ ├── link_lists │ │ └── index.html.haml │ ├── orders │ │ ├── _cancel.html.haml │ │ ├── _conversation.html.haml │ │ ├── _export.html.haml │ │ ├── _menu.html.haml │ │ ├── _payment_credit.html.haml │ │ ├── _payment_status_credit.html.haml │ │ ├── blank_slate.html.haml │ │ ├── index.html.haml │ │ └── show.html.haml │ ├── pages │ │ ├── _page.html.haml │ │ ├── destroy.js.haml │ │ ├── index.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── payments │ │ ├── _alipay.html.haml │ │ ├── _custom-payment.html.haml │ │ ├── _policy.html.haml │ │ ├── _tenpay.html.haml │ │ └── index.html.haml │ ├── photos │ │ └── destroy.js.haml │ ├── price_based_shipping_rates │ │ └── edit.html.haml │ ├── product_variants │ │ ├── _new.html.haml │ │ └── _show.html.haml │ ├── products │ │ ├── _collection.html.haml │ │ ├── _get_start.html.haml │ │ ├── _product.html.haml │ │ ├── _upload_photos.html.haml │ │ ├── index.html.haml │ │ ├── inventory.html.haml │ │ ├── new.html.haml │ │ └── show.html.haml │ ├── sessions │ │ └── new.html.haml │ ├── shippings │ │ └── index.html.haml │ ├── shop_theme_settings │ │ └── show.html.haml │ ├── shops │ │ └── edit.html.haml │ ├── smart_collections │ │ ├── _index.html.haml │ │ ├── _product.html.haml │ │ ├── _rule.html.haml │ │ ├── _smart_collection.html.haml │ │ ├── new.html.haml │ │ ├── show.html.haml │ │ └── update_order.js.haml │ ├── templates │ │ └── emails │ │ │ ├── customer_account_activation_body.liquid │ │ │ ├── customer_account_activation_title.liquid │ │ │ ├── customer_account_welcome_body.liquid │ │ │ ├── customer_account_welcome_title.liquid │ │ │ ├── customer_password_reset_body.liquid │ │ │ ├── customer_password_reset_title.liquid │ │ │ ├── new_order_notify_body.liquid │ │ │ ├── new_order_notify_title.liquid │ │ │ ├── order_cancelled_body.liquid │ │ │ ├── order_cancelled_title.liquid │ │ │ ├── order_confirm_body.liquid │ │ │ ├── order_confirm_title.liquid │ │ │ ├── order_paid_body.liquid │ │ │ ├── order_paid_notify_body.liquid │ │ │ ├── order_paid_notify_title.liquid │ │ │ ├── order_paid_title.liquid │ │ │ ├── ship_confirm_body.liquid │ │ │ ├── ship_confirm_title.liquid │ │ │ ├── ship_update_body.liquid │ │ │ └── ship_update_title.liquid │ ├── theme_mailer │ │ └── export.text.haml │ ├── themes │ │ └── index.html.haml │ ├── users │ │ ├── _permission.html.haml │ │ ├── _user.html.haml │ │ └── edit.html.haml │ └── weight_based_shipping_rates │ │ └── edit.html.haml │ ├── api │ └── v1 │ │ ├── orders │ │ ├── index.rabl │ │ ├── line_items │ │ │ └── show.rabl │ │ └── show.rabl │ │ ├── product_variants │ │ └── show.rabl │ │ ├── products │ │ ├── index.rabl │ │ └── show.rabl │ │ ├── shops │ │ └── show.rabl │ │ └── webhooks │ │ └── create.rabl │ ├── devise │ ├── confirmations │ │ └── new.html.haml │ ├── mailer │ │ ├── confirmation_instructions.html.haml │ │ ├── reset_password_instructions.html.haml │ │ └── unlock_instructions.html.haml │ ├── passwords │ │ ├── edit.html.haml │ │ └── new.html.haml │ ├── shared │ │ └── _links.haml │ └── unlocks │ │ └── new.html.haml │ ├── doorkeeper │ ├── authorizations │ │ ├── error.html.haml │ │ └── new.html.haml │ └── authorized_applications │ │ └── index.html.haml │ ├── layouts │ ├── README.textile │ ├── admin.html.haml │ ├── application.html.haml │ ├── doorkeeper │ │ └── authorization.html.haml │ ├── shop │ │ ├── admin.html.haml │ │ └── checkout.html.haml │ ├── shopqi.html.haml │ ├── theme.html.haml │ └── wiki.html.haml │ ├── shared │ ├── _announcement.html.haml │ ├── _baidu.html.haml │ ├── _baidu_v2.html.haml │ ├── _block.html.haml │ ├── _google.html.haml │ ├── _noscript.html.haml │ ├── _password_protected.html.haml │ ├── _upgrade_ie.html.haml │ ├── access_deny.html.haml │ ├── error_msg.js.haml │ ├── message.html.haml │ ├── msg.js.haml │ └── no_shop.html.haml │ ├── shop │ ├── collections │ │ └── collections.liquid │ ├── order │ │ ├── _confirm_pay_1.html.haml │ │ ├── _confirm_pay_2.html.haml │ │ ├── _line_items.html.haml │ │ ├── done.html.haml │ │ ├── error.html.haml │ │ ├── new.html.haml │ │ ├── show.html.haml │ │ └── tenpay_notify.html.erb │ ├── registrations │ │ └── new.html.haml │ ├── shops │ │ ├── password.html.haml │ │ ├── themes.html.haml │ │ └── unavailable.html.haml │ ├── snippets │ │ ├── powered_by_link.liquid │ │ └── theme-controls.liquid │ └── templates │ │ └── customers │ │ ├── account.liquid │ │ ├── activate_account.liquid │ │ ├── addresses.liquid │ │ ├── login.liquid │ │ ├── order.liquid │ │ ├── password.liquid │ │ ├── registrations.liquid │ │ └── reset_password.liquid │ ├── shopqi │ ├── home │ │ ├── _sidebar.html.haml │ │ ├── about.html.haml │ │ ├── agreement.html.haml │ │ ├── design.html.haml │ │ ├── faq.html.haml │ │ ├── features.html.haml │ │ ├── links.html.haml │ │ ├── login.html.haml │ │ ├── no_page.html.haml │ │ ├── page.html.haml │ │ ├── security.html.haml │ │ ├── signup.html.haml │ │ ├── store.html.haml │ │ └── tour.html.haml │ └── registrations │ │ ├── forbid.html.haml │ │ └── new.html.haml │ ├── theme │ └── themes │ │ ├── _shop.html.haml │ │ ├── apply.html.haml │ │ ├── download.html.haml │ │ ├── index.html.haml │ │ ├── login.html.haml │ │ └── show.html.haml │ └── wiki │ └── wiki_pages │ ├── _form.html.haml │ ├── compare.html.haml │ ├── edit.html.haml │ ├── history.html.haml │ ├── new.html.haml │ ├── pages.html.haml │ └── search.html.haml ├── config.ru ├── config ├── README.textile ├── app_config.yml ├── app_secret_config.yml.example ├── application.rb ├── boot.rb ├── database.yml.example.mysql ├── database.yml.example.postgresql ├── deploy.rb ├── development.unicorn.conf.rb ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ ├── test.rb │ └── travis.rb ├── initializers │ ├── 0_load_first.rb │ ├── active_admin.rb │ ├── add_method_to_ruby.rb │ ├── alipay.rb │ ├── backtrace_silencers.rb │ ├── client_side_validations.rb │ ├── datetime_format.rb │ ├── devise.rb │ ├── doorkeeper.rb │ ├── dragonfly.rb │ ├── haml.rb │ ├── inflections.rb │ ├── liquid.rb │ ├── load_resque.rb │ ├── logger.rb │ ├── middlewares.rb │ ├── mime_types.rb │ ├── new_relic.rb │ ├── rabl.rb │ ├── secret_token.rb │ ├── session_store.rb │ ├── setup_mail.rb │ ├── squeel.rb │ ├── sunspot.rb │ └── wrap_parameters.rb ├── locales │ ├── active_admin.cn.yml │ ├── cn.yml │ ├── devise.cn.yml │ ├── devise.en.yml │ ├── doorkeeper.en.yml │ ├── en.yml │ ├── on_the_spot.cn.yml │ └── on_the_spot.en.yml ├── nginx ├── routes.rb ├── sitemap.rb ├── sunspot.yml.example └── unicorn.conf.rb.example ├── db ├── areas.json ├── migrate │ ├── 20110419080009_create_shops.rb │ ├── 20110420064741_devise_create_users.rb │ ├── 20110422070212_create_products.rb │ ├── 20110422135410_create_link_lists.rb │ ├── 20110423115935_create_kindeditors.rb │ ├── 20110425043757_create_pages.rb │ ├── 20110426120958_create_smart_collections.rb │ ├── 20110505153806_create_custom_collections.rb │ ├── 20110511132245_create_blogs.rb │ ├── 20110511132306_create_tags.rb │ ├── 20110605085310_create_orders.rb │ ├── 20110609014732_create_carts.rb │ ├── 20110609075449_create_emails.rb │ ├── 20110622024506_create_customers.rb │ ├── 20110623141854_create_customer_groups.rb │ ├── 20110717022034_create_oauth2_provider.rb │ ├── 20110722100518_create_activities.rb │ ├── 20110728024129_create_payments.rb │ ├── 20110804132348_create_consumptions.rb │ ├── 20110926051845_devise_create_admin_users.rb │ ├── 20110926131916_create_active_admin_comments.rb │ ├── 20111001024945_create_themes.rb │ ├── 20111019053647_create_api_clients.rb │ ├── 20111123084300_create_cancel_reasons.rb │ ├── 20111125024512_add_service_to_payments.rb │ ├── 20111125083249_create_permissions.rb │ ├── 20111208061314_create_translations.rb │ ├── 20120103132045_add_attributes_to_line_item.rb │ ├── 20120113091629_add_record_to_shop_domain.rb │ ├── 20120206135658_rename_payment_partner_to_email.rb │ ├── 20120219015553_change_basic_plan_to_free.rb │ ├── 20120303031526_drop_countries.rb │ ├── 20120405081909_create_discounts.rb │ ├── 20120414133405_add_trade_no_to_order.rb │ ├── 20120521093256_add_postion_to_product_variant.rb │ ├── 20120524125233_add_address_limit_to_shop.rb │ ├── 20120530122404_create_doorkeeper_tables.rb │ ├── 20120707020959_create_webhooks.rb │ ├── 20120729084444_make_timestamps_null_false.rb │ ├── 20120729144327_upgrade_devise.rb │ ├── 20120810144404_make_foreigner_keys_nullable.rb │ ├── 20120815032021_remove_destroyed_smart_collection_product.rb │ ├── 20120913142858_add_cart_note.rb │ ├── 20120920123359_add_order_paid_email_notify.rb │ └── 20121016152948_add_order_transaction_status.rb ├── schema.rb ├── seeds.rb └── seeds │ └── development │ └── shop.seeds.rb ├── doc └── README_FOR_APP ├── lib ├── api_constraints.rb ├── custom_failure.rb ├── domain │ ├── shopqi.rb │ ├── store.rb │ ├── theme.rb │ └── wiki.rb ├── express │ └── ickd.rb ├── gateway │ └── alipay.rb ├── models │ └── handle.rb ├── qq_file.rb ├── sms.rb └── tasks │ ├── .gitkeep │ ├── bootstrap.rake │ ├── common.rake │ ├── resque.rake │ └── travis.rake ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico ├── flash │ └── clippy.swf ├── javascripts │ └── kindeditor │ │ ├── kindeditor-min.js │ │ ├── kindeditor.js │ │ ├── kindeditor_config.js │ │ ├── license.txt │ │ ├── plugins │ │ ├── about.html │ │ ├── advtable │ │ │ └── advtable.html │ │ ├── emoticons │ │ │ ├── 0.gif │ │ │ ├── 1.gif │ │ │ ├── 10.gif │ │ │ ├── 100.gif │ │ │ ├── 101.gif │ │ │ ├── 102.gif │ │ │ ├── 103.gif │ │ │ ├── 104.gif │ │ │ ├── 105.gif │ │ │ ├── 106.gif │ │ │ ├── 107.gif │ │ │ ├── 108.gif │ │ │ ├── 109.gif │ │ │ ├── 11.gif │ │ │ ├── 110.gif │ │ │ ├── 111.gif │ │ │ ├── 112.gif │ │ │ ├── 113.gif │ │ │ ├── 114.gif │ │ │ ├── 115.gif │ │ │ ├── 116.gif │ │ │ ├── 117.gif │ │ │ ├── 118.gif │ │ │ ├── 119.gif │ │ │ ├── 12.gif │ │ │ ├── 120.gif │ │ │ ├── 121.gif │ │ │ ├── 122.gif │ │ │ ├── 123.gif │ │ │ ├── 124.gif │ │ │ ├── 125.gif │ │ │ ├── 126.gif │ │ │ ├── 127.gif │ │ │ ├── 128.gif │ │ │ ├── 129.gif │ │ │ ├── 13.gif │ │ │ ├── 130.gif │ │ │ ├── 131.gif │ │ │ ├── 132.gif │ │ │ ├── 133.gif │ │ │ ├── 134.gif │ │ │ ├── 14.gif │ │ │ ├── 15.gif │ │ │ ├── 16.gif │ │ │ ├── 17.gif │ │ │ ├── 18.gif │ │ │ ├── 19.gif │ │ │ ├── 2.gif │ │ │ ├── 20.gif │ │ │ ├── 21.gif │ │ │ ├── 22.gif │ │ │ ├── 23.gif │ │ │ ├── 24.gif │ │ │ ├── 25.gif │ │ │ ├── 26.gif │ │ │ ├── 27.gif │ │ │ ├── 28.gif │ │ │ ├── 29.gif │ │ │ ├── 3.gif │ │ │ ├── 30.gif │ │ │ ├── 31.gif │ │ │ ├── 32.gif │ │ │ ├── 33.gif │ │ │ ├── 34.gif │ │ │ ├── 35.gif │ │ │ ├── 36.gif │ │ │ ├── 37.gif │ │ │ ├── 38.gif │ │ │ ├── 39.gif │ │ │ ├── 4.gif │ │ │ ├── 40.gif │ │ │ ├── 41.gif │ │ │ ├── 42.gif │ │ │ ├── 43.gif │ │ │ ├── 44.gif │ │ │ ├── 45.gif │ │ │ ├── 46.gif │ │ │ ├── 47.gif │ │ │ ├── 48.gif │ │ │ ├── 49.gif │ │ │ ├── 5.gif │ │ │ ├── 50.gif │ │ │ ├── 51.gif │ │ │ ├── 52.gif │ │ │ ├── 53.gif │ │ │ ├── 54.gif │ │ │ ├── 55.gif │ │ │ ├── 56.gif │ │ │ ├── 57.gif │ │ │ ├── 58.gif │ │ │ ├── 59.gif │ │ │ ├── 6.gif │ │ │ ├── 60.gif │ │ │ ├── 61.gif │ │ │ ├── 62.gif │ │ │ ├── 63.gif │ │ │ ├── 64.gif │ │ │ ├── 65.gif │ │ │ ├── 66.gif │ │ │ ├── 67.gif │ │ │ ├── 68.gif │ │ │ ├── 69.gif │ │ │ ├── 7.gif │ │ │ ├── 70.gif │ │ │ ├── 71.gif │ │ │ ├── 72.gif │ │ │ ├── 73.gif │ │ │ ├── 74.gif │ │ │ ├── 75.gif │ │ │ ├── 76.gif │ │ │ ├── 77.gif │ │ │ ├── 78.gif │ │ │ ├── 79.gif │ │ │ ├── 8.gif │ │ │ ├── 80.gif │ │ │ ├── 81.gif │ │ │ ├── 82.gif │ │ │ ├── 83.gif │ │ │ ├── 84.gif │ │ │ ├── 85.gif │ │ │ ├── 86.gif │ │ │ ├── 87.gif │ │ │ ├── 88.gif │ │ │ ├── 89.gif │ │ │ ├── 9.gif │ │ │ ├── 90.gif │ │ │ ├── 91.gif │ │ │ ├── 92.gif │ │ │ ├── 93.gif │ │ │ ├── 94.gif │ │ │ ├── 95.gif │ │ │ ├── 96.gif │ │ │ ├── 97.gif │ │ │ ├── 98.gif │ │ │ ├── 99.gif │ │ │ └── qq.gif │ │ ├── file_manager │ │ │ ├── file_manager.css │ │ │ ├── file_manager.html │ │ │ ├── file_manager.js │ │ │ └── images │ │ │ │ ├── file-16.gif │ │ │ │ ├── file-64.gif │ │ │ │ ├── folder-16.gif │ │ │ │ ├── folder-64.gif │ │ │ │ └── go-up.gif │ │ ├── flash.html │ │ ├── image │ │ │ ├── image.html │ │ │ └── images │ │ │ │ ├── align_left.gif │ │ │ │ ├── align_right.gif │ │ │ │ ├── align_top.gif │ │ │ │ └── refresh.gif │ │ ├── link │ │ │ └── link.html │ │ ├── media.html │ │ ├── plainpaste.html │ │ └── wordpaste.html │ │ └── skins │ │ ├── common │ │ ├── blank.gif │ │ ├── editor.css │ │ ├── flash.gif │ │ ├── loading.gif │ │ ├── media.gif │ │ └── rm.gif │ │ ├── default.css │ │ └── default │ │ └── default.gif ├── robots │ ├── shop_robots.txt │ ├── shopqi_robots.txt │ ├── themes_robots.txt │ └── wiki_robots.txt └── s │ ├── README.textile │ ├── global │ ├── README.textile │ ├── cc │ │ ├── alipay.gif │ │ ├── icbc.gif │ │ ├── mastercard.gif │ │ ├── tenpay.gif │ │ ├── unionpay.gif │ │ └── visa.gif │ ├── jquery │ │ ├── 1.5.2 │ │ │ └── jquery.js │ │ ├── hoverintent-r6.js │ │ └── tmpl-beta1.js │ ├── modernizr │ │ └── 2.0.6 │ │ │ └── modernizr.js │ ├── sm │ │ ├── tqq_16.png │ │ └── tsina_16.png │ ├── tee │ │ └── size.jpg │ ├── textile.css │ ├── theme-controls.css │ └── theme-controls.js │ └── shopqi │ ├── api.jquery.js │ ├── customer_area.js │ ├── option_selection.js │ └── shopqi_common.js ├── script ├── changelog.rb ├── data.rb ├── development │ ├── replace_haml │ └── use_mysql ├── migrate ├── rails ├── theme.rb └── vagrant_up ├── solr ├── conf │ ├── elevate.xml │ ├── schema.xml │ ├── solrconfig.xml │ ├── spellings.txt │ ├── stopwords.txt │ └── synonyms.txt ├── jetty_solr.xml └── lib │ └── mmseg4j-all-1.8.4-with-dic.jar ├── spec ├── controllers │ ├── admin │ │ ├── account_controller_spec.rb │ │ ├── api_clients_controller_spec.rb │ │ ├── applications_controller_spec.rb │ │ ├── articles_controller_spec.rb │ │ ├── assets_controller_spec.rb │ │ ├── blogs_controller_spec.rb │ │ ├── comments_controller_spec.rb │ │ ├── custom_collection_products_controller_spec.rb │ │ ├── custom_collections_controller_spec.rb │ │ ├── customer_groups_controller_spec.rb │ │ ├── customers_controller_spec.rb │ │ ├── discounts_controller_spec.rb │ │ ├── domains_controller_spec.rb │ │ ├── emails_controller_spec.rb │ │ ├── fulfillments_controller_spec.rb │ │ ├── home_controller_spec.rb │ │ ├── kindeditor_controller_spec.rb │ │ ├── link_lists_controller_spec.rb │ │ ├── links_controller_spec.rb │ │ ├── orders_controller_spec.rb │ │ ├── pages_controller_spec.rb │ │ ├── payments_controller_spec.rb │ │ ├── photos_controller_spec.rb │ │ ├── price_based_shipping_rates_controller_spec.rb │ │ ├── product_options_controller_spec.rb │ │ ├── product_variants_controller_spec.rb │ │ ├── products_controller_spec.rb │ │ ├── shippings_controller_spec.rb │ │ ├── shop_theme_settings_controller_spec.rb │ │ ├── shops_controller_spec.rb │ │ ├── smart_collections_controller_spec.rb │ │ ├── themes_controller_spec.rb │ │ ├── transactions_controller_spec.rb │ │ ├── users_controller_spec.rb │ │ ├── webhooks_controller_spec.rb │ │ └── weight_based_shipping_rates_controller_spec.rb │ ├── api │ │ └── v1 │ │ │ ├── orders_controller_spec.rb │ │ │ ├── product_variants_controller_spec.rb │ │ │ ├── products_controller_spec.rb │ │ │ ├── shops_controller_spec.rb │ │ │ ├── themes_controller_spec.rb │ │ │ └── webhooks_controller_spec.rb │ ├── district_controller_spec.rb │ ├── shop │ │ ├── account_controller_spec.rb │ │ ├── articles_controller_spec.rb │ │ ├── blogs_controller_spec.rb │ │ ├── cart_controller_spec.rb │ │ ├── collections_controller_spec.rb │ │ ├── contact_controller_spec.rb │ │ ├── customer_addresses_controller_spec.rb │ │ ├── order_controller_spec.rb │ │ ├── pages_controller_spec.rb │ │ ├── passwords_controller_spec.rb │ │ ├── products_controller_spec.rb │ │ ├── search_controller_spec.rb │ │ ├── sessions_controller_spec.rb │ │ └── shops_controller_spec.rb │ ├── shopqi │ │ ├── home_controller_spec.rb │ │ └── registrations_controller_spec.rb │ ├── theme │ │ └── themes_controller_spec.rb │ └── wiki │ │ └── wiki_pages_controller_spec.rb ├── factories │ ├── access_tokens.rb │ ├── activities.rb │ ├── admin_users.rb │ ├── api_clients.rb │ ├── applications.rb │ ├── blogs.rb │ ├── carts.rb │ ├── consumptions.rb │ ├── custom_collections.rb │ ├── customer_groups.rb │ ├── customers.rb │ ├── data │ │ ├── README.textile │ │ ├── products │ │ │ └── iphone4.jpg │ │ └── themes │ │ │ ├── collection.jpg │ │ │ ├── invalid.file │ │ │ ├── main.jpg │ │ │ ├── product.jpg │ │ │ ├── settings │ │ │ ├── with_class.html │ │ │ ├── with_radio.html │ │ │ └── with_radio.json │ │ │ ├── woodland-missing-layout-theme.zip │ │ │ ├── woodland-missing-templates-index.zip │ │ │ ├── woodland-with-root.zip │ │ │ ├── woodland-without-root.zip │ │ │ ├── woodland.tar.bz2 │ │ │ └── woodland.zip │ ├── discounts.rb │ ├── emails.rb │ ├── kindeditors.rb │ ├── link_lists.rb │ ├── links.rb │ ├── orders.rb │ ├── pages.rb │ ├── payments.rb │ ├── permissions.rb │ ├── photos.rb │ ├── products.rb │ ├── shippings.rb │ ├── shops.rb │ ├── smart_collections.rb │ ├── subscribes.rb │ ├── tags.rb │ ├── themes.rb │ ├── users.rb │ ├── webhooks.rb │ └── weight_based_shipping_rates.rb ├── helpers │ ├── admin │ │ ├── blogs_helper_spec.rb │ │ ├── emails_helper_spec.rb │ │ ├── orders_helper_spec.rb │ │ ├── price_based_shipping_rates_helper_spec.rb │ │ ├── products_helper_spec.rb │ │ ├── shipping_helper_spec.rb │ │ └── shops_helper_spec.rb │ ├── oauth2_spec.rb │ ├── shop │ │ ├── order_helper_spec.rb │ │ └── shops_helper_spec.rb │ └── shopqi │ │ └── home_helper_spec.rb ├── jobs │ └── theme_exporter_spec.rb ├── liquids │ ├── article_drop_spec.rb │ ├── base_filter_spec.rb │ ├── blogs_drop_spec.rb │ ├── cart_drop_spec.rb │ ├── collections_drop_spec.rb │ ├── customer_drop_spec.rb │ ├── form_spec.rb │ ├── layout_spec.rb │ ├── line_item_drop_spec.rb │ ├── link_lists_drop_spec.rb │ ├── order_drop_spec.rb │ ├── pages_drop_spec.rb │ ├── paginate_filter_spec.rb │ ├── paginate_spec.rb │ ├── product_drop_spec.rb │ ├── product_variant_drop_spec.rb │ ├── search_drop_spec.rb │ ├── settings_drop_spec.rb │ ├── shop_drop_spec.rb │ ├── tag_filter_spec.rb │ └── url_filter_spec.rb ├── mailers │ ├── shop_mailer_spec.rb │ └── theme_mailer_spec.rb ├── models │ ├── activity_spec.rb │ ├── admin_user_spec.rb │ ├── asset_spec.rb │ ├── blog_spec.rb │ ├── cart_spec.rb │ ├── consumption_spec.rb │ ├── custom_collection_spec.rb │ ├── customer_group_spec.rb │ ├── customer_spec.rb │ ├── discount_spec.rb │ ├── district_spec.rb │ ├── email_spec.rb │ ├── key_values_spec.rb │ ├── kindeditor_spec.rb │ ├── link_list_spec.rb │ ├── order_spec.rb │ ├── page_spec.rb │ ├── payment_spec.rb │ ├── permission_spec.rb │ ├── photo_spec.rb │ ├── product_spec.rb │ ├── shipping_spec.rb │ ├── shop_spec.rb │ ├── shop_theme_setting_spec.rb │ ├── shop_theme_spec.rb │ ├── smart_collection_spec.rb │ ├── subscribe_spec.rb │ ├── tag_spec.rb │ ├── theme_spec.rb │ ├── user_spec.rb │ ├── webhook_spec.rb │ ├── weight_based_shipping_rate_spec.rb │ └── wiki_page_spec.rb ├── observers │ ├── activity_observer_spec.rb │ ├── product_observer_spec.rb │ ├── shop_observer_spec.rb │ ├── smart_collection_observer_spec.rb │ └── theme_observer_spec.rb ├── requests │ ├── account_spec.rb │ ├── blogs_spec.rb │ ├── custom_collections_spec.rb │ ├── customers_spec.rb │ ├── discounts_spec.rb │ ├── domains_spec.rb │ ├── guides_spec.rb │ ├── link_lists_spec.rb │ ├── lookup_spec.rb │ ├── orders_spec.rb │ ├── pages_spec.rb │ ├── payments_spec.rb │ ├── permission_spec.rb │ ├── products_spec.rb │ ├── shippings_spec.rb │ ├── shop │ │ ├── products_spec.rb │ │ ├── shop_customers_spec.rb │ │ ├── shop_orders_spec.rb │ │ ├── shops_searches_spec.rb │ │ └── shops_spec.rb │ ├── shopqi │ │ ├── home_spec.rb │ │ ├── login_spec.rb │ │ └── registrations_spec.rb │ ├── shops_spec.rb │ ├── smart_collections_spec.rb │ ├── theme │ │ └── themes_spec.rb │ ├── themes_spec.rb │ ├── users_spec.rb │ ├── webhooks_spec.rb │ └── wiki │ │ └── wiki_pages_spec.rb ├── routings │ └── shop │ │ └── shops_spec.rb ├── shared_stuff.rb ├── spec_helper.rb └── subdomain_capybara_server.rb └── vendor └── assets ├── javascripts ├── DD_belatedPNG_0.0.8a-min.js ├── ace │ ├── ace-uncompressed.js │ ├── ace.js │ ├── mode-css.js │ ├── mode-html.js │ ├── mode-javascript.js │ ├── theme-clouds.js │ └── worker-javascript.js ├── backbone-min.js ├── backbone.js ├── backbone.rails.js ├── fileuploader.js ├── handlebars.js ├── jquery-ui-1.8.14.custom.min.js ├── jquery.MultiFile.js ├── jquery.blockUI.js ├── jquery.fancybox-1.3.4.js.erb ├── jquery.jeditable.mini.js ├── jquery.miniColors.js ├── jquery.miniColors.min.js ├── jquery.paging.js ├── jquery.quicksand.js ├── jquery.tipsy.js ├── json2.js ├── message_block.js ├── plugins.js └── underscore-min.js └── stylesheets └── tipsy.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --colour 2 | --drb 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Capfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/Capfile -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/Guardfile -------------------------------------------------------------------------------- /Procfile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/Procfile.example -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/Rakefile -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/Vagrantfile -------------------------------------------------------------------------------- /Vagrantfile.pkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/Vagrantfile.pkg -------------------------------------------------------------------------------- /app/admin/dashboards.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/admin/dashboards.rb -------------------------------------------------------------------------------- /app/admin/o_auth2_model_clients.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/admin/o_auth2_model_clients.rb -------------------------------------------------------------------------------- /app/admin/shop_domains.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/admin/shop_domains.rb -------------------------------------------------------------------------------- /app/admin/shops.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/admin/shops.rb -------------------------------------------------------------------------------- /app/admin/themes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/admin/themes.rb -------------------------------------------------------------------------------- /app/assets/images/1x1-transparent-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/1x1-transparent-black.png -------------------------------------------------------------------------------- /app/assets/images/1x1-transparent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/1x1-transparent.gif -------------------------------------------------------------------------------- /app/assets/images/admin/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/bg.gif -------------------------------------------------------------------------------- /app/assets/images/admin/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/bg.png -------------------------------------------------------------------------------- /app/assets/images/admin/btns/bg-green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/btns/bg-green.gif -------------------------------------------------------------------------------- /app/assets/images/admin/btns/bg-red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/btns/bg-red.gif -------------------------------------------------------------------------------- /app/assets/images/admin/btns/bg-tags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/btns/bg-tags.png -------------------------------------------------------------------------------- /app/assets/images/admin/btns/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/btns/bg.gif -------------------------------------------------------------------------------- /app/assets/images/admin/bubbles.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/bubbles.gif -------------------------------------------------------------------------------- /app/assets/images/admin/bubbles_error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/bubbles_error.gif -------------------------------------------------------------------------------- /app/assets/images/admin/countries/cn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/countries/cn.gif -------------------------------------------------------------------------------- /app/assets/images/admin/gtile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/gtile.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/accept.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/add-entry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/add-entry.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/add-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/add-image.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/add.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/alert.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/alert2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/alert2.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/arrow-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/arrow-down.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/asset-src.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/asset-src.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/attachment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/attachment.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/bg-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/bg-search.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/blog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/blog.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/book-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/book-edit.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/book.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/brick_link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/brick_link.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/cancel.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/check.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/check2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/check2.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/clear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/clear.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/close.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/closed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/closed.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/cog.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/comment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/comment.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/coupon_add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/coupon_add.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/csv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/csv.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/customer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/customer.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/delete.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/diskspace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/diskspace.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/domain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/domain.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/down.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/drag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/drag.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/edit-entry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/edit-entry.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/edit-image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/edit-image.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/edit.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/editor-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/editor-bg.jpg -------------------------------------------------------------------------------- /app/assets/images/admin/icons/email-send.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/email-send.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/email.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/email.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/email_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/email_edit.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/error.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/featured.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/featured.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/featured.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/featured.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/feed-warn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/feed-warn.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/feed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/feed.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/filter-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/filter-x.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/greybullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/greybullet.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/home.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/layout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/layout.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/link-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/link-add.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/liquid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/liquid.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/lock-7x9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/lock-7x9.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/lock-open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/lock-open.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/lock.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/main-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/main-theme.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/mimes/css.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/mimes/css.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/mimes/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/mimes/css.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/mimes/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/mimes/gif.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/mimes/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/mimes/html.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/mimes/jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/mimes/jpg.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/mimes/js.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/mimes/js.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/mimes/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/mimes/js.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/mimes/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/mimes/pdf.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/mimes/png.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/mimes/png.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/next-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/next-page.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/note.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/package.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/package.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/page-add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/page-add.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/page.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/payment.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/payment.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/percent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/percent.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/phone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/phone.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/phone.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/phone16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/phone16.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/plus.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/prev-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/prev-page.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/print.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/product.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/product.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/regions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/regions.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/rename.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/reorder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/reorder.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/search-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/search-bg.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/settings.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/settings.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/shipping.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/shipping.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/sku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/sku.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/skype_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/skype_16.png -------------------------------------------------------------------------------- /app/assets/images/admin/icons/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/tab.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/tag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/tag.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/themes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/themes.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/themestore.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/themestore.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/time.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/time.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/trash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/trash.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/user-chat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/user-chat.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/user.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/vcard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/vcard.gif -------------------------------------------------------------------------------- /app/assets/images/admin/icons/warning-16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/icons/warning-16.gif -------------------------------------------------------------------------------- /app/assets/images/admin/info-message-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/info-message-bg.jpg -------------------------------------------------------------------------------- /app/assets/images/admin/loading-bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/loading-bar.gif -------------------------------------------------------------------------------- /app/assets/images/admin/logo-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/logo-small.gif -------------------------------------------------------------------------------- /app/assets/images/admin/logo-small.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/logo-small.xcf -------------------------------------------------------------------------------- /app/assets/images/admin/minicolors/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/minicolors/line.gif -------------------------------------------------------------------------------- /app/assets/images/admin/no-image-compact.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/no-image-compact.gif -------------------------------------------------------------------------------- /app/assets/images/admin/no-image-icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/no-image-icon.gif -------------------------------------------------------------------------------- /app/assets/images/admin/no-image-large.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/no-image-large.gif -------------------------------------------------------------------------------- /app/assets/images/admin/no-image-medium.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/no-image-medium.gif -------------------------------------------------------------------------------- /app/assets/images/admin/no-image-pico.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/no-image-pico.gif -------------------------------------------------------------------------------- /app/assets/images/admin/no-image-thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/no-image-thumb.gif -------------------------------------------------------------------------------- /app/assets/images/admin/payments/alipay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/payments/alipay.png -------------------------------------------------------------------------------- /app/assets/images/admin/payments/gh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/payments/gh.gif -------------------------------------------------------------------------------- /app/assets/images/admin/payments/jh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/payments/jh.gif -------------------------------------------------------------------------------- /app/assets/images/admin/payments/jtccb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/payments/jtccb.gif -------------------------------------------------------------------------------- /app/assets/images/admin/payments/lh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/payments/lh.gif -------------------------------------------------------------------------------- /app/assets/images/admin/payments/tenpay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/payments/tenpay.png -------------------------------------------------------------------------------- /app/assets/images/admin/payments/y_kq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/payments/y_kq.png -------------------------------------------------------------------------------- /app/assets/images/admin/payments/yz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/payments/yz.gif -------------------------------------------------------------------------------- /app/assets/images/admin/payments/yz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/payments/yz.png -------------------------------------------------------------------------------- /app/assets/images/admin/payments/zh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/payments/zh.gif -------------------------------------------------------------------------------- /app/assets/images/admin/star-mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/star-mini.png -------------------------------------------------------------------------------- /app/assets/images/admin/theme-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/theme-bg.gif -------------------------------------------------------------------------------- /app/assets/images/admin/toolcornera.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/admin/toolcornera.gif -------------------------------------------------------------------------------- /app/assets/images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/avatar.jpg -------------------------------------------------------------------------------- /app/assets/images/background/bg-footer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/background/bg-footer.gif -------------------------------------------------------------------------------- /app/assets/images/background/bg-grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/background/bg-grey.gif -------------------------------------------------------------------------------- /app/assets/images/background/bg-grey2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/background/bg-grey2.gif -------------------------------------------------------------------------------- /app/assets/images/background/bg-grey3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/background/bg-grey3.gif -------------------------------------------------------------------------------- /app/assets/images/background/bg-masthead.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/background/bg-masthead.gif -------------------------------------------------------------------------------- /app/assets/images/background/separator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/background/separator.jpg -------------------------------------------------------------------------------- /app/assets/images/banners/400-phone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/banners/400-phone.gif -------------------------------------------------------------------------------- /app/assets/images/banners/phone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/banners/phone.gif -------------------------------------------------------------------------------- /app/assets/images/banners/video-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/banners/video-glow.png -------------------------------------------------------------------------------- /app/assets/images/buttons/btn-contest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/buttons/btn-contest.gif -------------------------------------------------------------------------------- /app/assets/images/buttons/btn-emailus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/buttons/btn-emailus.gif -------------------------------------------------------------------------------- /app/assets/images/buttons/btn-ex-next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/buttons/btn-ex-next.png -------------------------------------------------------------------------------- /app/assets/images/buttons/btn-ex-prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/buttons/btn-ex-prev.png -------------------------------------------------------------------------------- /app/assets/images/buttons/btn-livechat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/buttons/btn-livechat.gif -------------------------------------------------------------------------------- /app/assets/images/buttons/btn-login-grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/buttons/btn-login-grey.gif -------------------------------------------------------------------------------- /app/assets/images/buttons/btn-signupnow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/buttons/btn-signupnow.gif -------------------------------------------------------------------------------- /app/assets/images/buttons/btn-sprt-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/buttons/btn-sprt-bg.gif -------------------------------------------------------------------------------- /app/assets/images/buttons/btn-vote.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/buttons/btn-vote.gif -------------------------------------------------------------------------------- /app/assets/images/buttons/button-woo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/buttons/button-woo.png -------------------------------------------------------------------------------- /app/assets/images/checkout/checkout-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/checkout/checkout-bg.gif -------------------------------------------------------------------------------- /app/assets/images/editor/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/button-bg.gif -------------------------------------------------------------------------------- /app/assets/images/editor/check-outline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/check-outline.gif -------------------------------------------------------------------------------- /app/assets/images/editor/check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/check.gif -------------------------------------------------------------------------------- /app/assets/images/editor/color_swatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/color_swatch.png -------------------------------------------------------------------------------- /app/assets/images/editor/editortoolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/editortoolbar.png -------------------------------------------------------------------------------- /app/assets/images/editor/files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/files.png -------------------------------------------------------------------------------- /app/assets/images/editor/information.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/information.gif -------------------------------------------------------------------------------- /app/assets/images/editor/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/link.png -------------------------------------------------------------------------------- /app/assets/images/editor/media.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/media.png -------------------------------------------------------------------------------- /app/assets/images/editor/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/photo.png -------------------------------------------------------------------------------- /app/assets/images/editor/resetformat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/resetformat.png -------------------------------------------------------------------------------- /app/assets/images/editor/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/script.png -------------------------------------------------------------------------------- /app/assets/images/editor/table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/table.png -------------------------------------------------------------------------------- /app/assets/images/editor/text_align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/text_align_left.png -------------------------------------------------------------------------------- /app/assets/images/editor/text_bold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/text_bold.png -------------------------------------------------------------------------------- /app/assets/images/editor/text_italic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/text_italic.png -------------------------------------------------------------------------------- /app/assets/images/editor/toolbar-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/toolbar-bg.png -------------------------------------------------------------------------------- /app/assets/images/editor/toolbar_icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/toolbar_icons.gif -------------------------------------------------------------------------------- /app/assets/images/editor/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/editor/url.png -------------------------------------------------------------------------------- /app/assets/images/fancybox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/fancybox/blank.gif -------------------------------------------------------------------------------- /app/assets/images/fancybox/fancy_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/fancybox/fancy_close.png -------------------------------------------------------------------------------- /app/assets/images/fancybox/fancy_loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/fancybox/fancy_loading.png -------------------------------------------------------------------------------- /app/assets/images/fancybox/fancybox-x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/fancybox/fancybox-x.png -------------------------------------------------------------------------------- /app/assets/images/fancybox/fancybox-y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/fancybox/fancybox-y.png -------------------------------------------------------------------------------- /app/assets/images/fancybox/fancybox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/fancybox/fancybox.png -------------------------------------------------------------------------------- /app/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/favicon.png -------------------------------------------------------------------------------- /app/assets/images/graphics/404-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/404-logo.png -------------------------------------------------------------------------------- /app/assets/images/graphics/feature-lock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/feature-lock.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/music-iphone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/music-iphone.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/music-merch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/music-merch.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/music-quote.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/music-quote.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/music-records.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/music-records.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/music-ribbons.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/music-ribbons.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/ov-editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/ov-editor.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/ov-fees.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/ov-fees.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/ov-iphone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/ov-iphone.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/ov-orders.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/ov-orders.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/ov-promo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/ov-promo.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/ov-stats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/ov-stats.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/ov-subsite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/ov-subsite.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/ov-support.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/ov-support.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/ov-themestore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/ov-themestore.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/ov-urls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/ov-urls.jpg -------------------------------------------------------------------------------- /app/assets/images/graphics/press-contact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/graphics/press-contact.jpg -------------------------------------------------------------------------------- /app/assets/images/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /app/assets/images/icons/arrow13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/arrow13.gif -------------------------------------------------------------------------------- /app/assets/images/icons/arrow18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/arrow18.png -------------------------------------------------------------------------------- /app/assets/images/icons/box16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/box16.gif -------------------------------------------------------------------------------- /app/assets/images/icons/box16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/box16.png -------------------------------------------------------------------------------- /app/assets/images/icons/boxfree48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/boxfree48.gif -------------------------------------------------------------------------------- /app/assets/images/icons/checkmark-iphone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/checkmark-iphone.gif -------------------------------------------------------------------------------- /app/assets/images/icons/checkmark10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/checkmark10.gif -------------------------------------------------------------------------------- /app/assets/images/icons/checkmark16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/checkmark16.png -------------------------------------------------------------------------------- /app/assets/images/icons/clipboard16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/clipboard16.png -------------------------------------------------------------------------------- /app/assets/images/icons/colorwheel32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/colorwheel32.gif -------------------------------------------------------------------------------- /app/assets/images/icons/compass48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/compass48.gif -------------------------------------------------------------------------------- /app/assets/images/icons/contest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/contest.gif -------------------------------------------------------------------------------- /app/assets/images/icons/designbrush16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/designbrush16.png -------------------------------------------------------------------------------- /app/assets/images/icons/feedwhite20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/feedwhite20.gif -------------------------------------------------------------------------------- /app/assets/images/icons/frontpage-tour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/frontpage-tour.png -------------------------------------------------------------------------------- /app/assets/images/icons/ft-backups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/ft-backups.png -------------------------------------------------------------------------------- /app/assets/images/icons/ft-cdn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/ft-cdn.png -------------------------------------------------------------------------------- /app/assets/images/icons/ft-security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/ft-security.png -------------------------------------------------------------------------------- /app/assets/images/icons/ft-updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/ft-updates.png -------------------------------------------------------------------------------- /app/assets/images/icons/gear_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/gear_48.png -------------------------------------------------------------------------------- /app/assets/images/icons/globe_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/globe_48.png -------------------------------------------------------------------------------- /app/assets/images/icons/graph16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/graph16.png -------------------------------------------------------------------------------- /app/assets/images/icons/greybullet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/greybullet.gif -------------------------------------------------------------------------------- /app/assets/images/icons/home18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/home18.png -------------------------------------------------------------------------------- /app/assets/images/icons/icon-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/icon-close.png -------------------------------------------------------------------------------- /app/assets/images/icons/icon-wooninja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/icon-wooninja.png -------------------------------------------------------------------------------- /app/assets/images/icons/inc-jobbullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/inc-jobbullet.png -------------------------------------------------------------------------------- /app/assets/images/icons/infographic16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/infographic16.png -------------------------------------------------------------------------------- /app/assets/images/icons/infographic32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/infographic32.png -------------------------------------------------------------------------------- /app/assets/images/icons/logos10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/logos10.gif -------------------------------------------------------------------------------- /app/assets/images/icons/moneypile48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/moneypile48.gif -------------------------------------------------------------------------------- /app/assets/images/icons/monitor10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/monitor10.gif -------------------------------------------------------------------------------- /app/assets/images/icons/monitor32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/monitor32.jpg -------------------------------------------------------------------------------- /app/assets/images/icons/monitor_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/monitor_48.png -------------------------------------------------------------------------------- /app/assets/images/icons/notification18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/notification18.png -------------------------------------------------------------------------------- /app/assets/images/icons/pencilruler16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/pencilruler16.png -------------------------------------------------------------------------------- /app/assets/images/icons/people16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/people16.gif -------------------------------------------------------------------------------- /app/assets/images/icons/press-nav/buzz.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/press-nav/buzz.gif -------------------------------------------------------------------------------- /app/assets/images/icons/press-nav/press.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/press-nav/press.gif -------------------------------------------------------------------------------- /app/assets/images/icons/safe32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/safe32.gif -------------------------------------------------------------------------------- /app/assets/images/icons/shield48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/shield48.gif -------------------------------------------------------------------------------- /app/assets/images/icons/shield_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/shield_48.png -------------------------------------------------------------------------------- /app/assets/images/icons/shoppingcart32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/shoppingcart32.gif -------------------------------------------------------------------------------- /app/assets/images/icons/socialmedia-sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/socialmedia-sd.png -------------------------------------------------------------------------------- /app/assets/images/icons/support48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/support48.gif -------------------------------------------------------------------------------- /app/assets/images/icons/trash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/trash.gif -------------------------------------------------------------------------------- /app/assets/images/icons/twitterwhite20.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/twitterwhite20.gif -------------------------------------------------------------------------------- /app/assets/images/icons/warning16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/warning16.png -------------------------------------------------------------------------------- /app/assets/images/icons/warning32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/warning32.png -------------------------------------------------------------------------------- /app/assets/images/icons/www48.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/icons/www48.gif -------------------------------------------------------------------------------- /app/assets/images/ie/bg-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/ie/bg-button.png -------------------------------------------------------------------------------- /app/assets/images/internal/down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/internal/down.gif -------------------------------------------------------------------------------- /app/assets/images/internal/up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/internal/up.gif -------------------------------------------------------------------------------- /app/assets/images/layout/bg-body.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/layout/bg-body.jpg -------------------------------------------------------------------------------- /app/assets/images/layout/bg-megadropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/layout/bg-megadropdown.png -------------------------------------------------------------------------------- /app/assets/images/layout/bg-paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/layout/bg-paper.png -------------------------------------------------------------------------------- /app/assets/images/layout/bg-paperfold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/layout/bg-paperfold.png -------------------------------------------------------------------------------- /app/assets/images/layout/bg-shelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/layout/bg-shelf.png -------------------------------------------------------------------------------- /app/assets/images/layout/bg-themethumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/layout/bg-themethumb.png -------------------------------------------------------------------------------- /app/assets/images/layout/bg-timeline-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/layout/bg-timeline-bar.png -------------------------------------------------------------------------------- /app/assets/images/layout/bg-white-radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/layout/bg-white-radial.png -------------------------------------------------------------------------------- /app/assets/images/layout/navbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/layout/navbar.png -------------------------------------------------------------------------------- /app/assets/images/layout/vig-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/layout/vig-dark.png -------------------------------------------------------------------------------- /app/assets/images/lightbox/border1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/lightbox/border1.png -------------------------------------------------------------------------------- /app/assets/images/lightbox/border2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/lightbox/border2.png -------------------------------------------------------------------------------- /app/assets/images/lightbox/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/lightbox/close.png -------------------------------------------------------------------------------- /app/assets/images/lightbox/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/lightbox/loading.gif -------------------------------------------------------------------------------- /app/assets/images/logos/examples-cnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/logos/examples-cnet.png -------------------------------------------------------------------------------- /app/assets/images/logos/logo-shopqi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/logos/logo-shopqi.gif -------------------------------------------------------------------------------- /app/assets/images/logos/logo-themestore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/logos/logo-themestore.png -------------------------------------------------------------------------------- /app/assets/images/logos/ror-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/logos/ror-logo.jpg -------------------------------------------------------------------------------- /app/assets/images/logos/servercentral.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/logos/servercentral.png -------------------------------------------------------------------------------- /app/assets/images/logos/shopqi-logo-new.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/logos/shopqi-logo-new.jpg -------------------------------------------------------------------------------- /app/assets/images/logos/shopqi_bag.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/logos/shopqi_bag.gif -------------------------------------------------------------------------------- /app/assets/images/message_block/back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/message_block/back.gif -------------------------------------------------------------------------------- /app/assets/images/message_block/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/message_block/error.gif -------------------------------------------------------------------------------- /app/assets/images/message_block/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/message_block/info.gif -------------------------------------------------------------------------------- /app/assets/images/message_block/notice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/message_block/notice.gif -------------------------------------------------------------------------------- /app/assets/images/message_block/warn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/message_block/warn.gif -------------------------------------------------------------------------------- /app/assets/images/other/no-image-thumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/other/no-image-thumb.gif -------------------------------------------------------------------------------- /app/assets/images/other/no_product_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/other/no_product_image.gif -------------------------------------------------------------------------------- /app/assets/images/other/quote-big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/other/quote-big.gif -------------------------------------------------------------------------------- /app/assets/images/other/quote-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/other/quote-small.gif -------------------------------------------------------------------------------- /app/assets/images/other/sc_rollover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/other/sc_rollover.png -------------------------------------------------------------------------------- /app/assets/images/other/tweet-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/other/tweet-bg.gif -------------------------------------------------------------------------------- /app/assets/images/partners/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/partners/icons/eye.png -------------------------------------------------------------------------------- /app/assets/images/resources-nav/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/resources-nav/bg.png -------------------------------------------------------------------------------- /app/assets/images/signup/basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/signup/basic.jpg -------------------------------------------------------------------------------- /app/assets/images/signup/btn-next-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/signup/btn-next-bg.jpg -------------------------------------------------------------------------------- /app/assets/images/signup/btn-next-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/signup/btn-next-bg2.jpg -------------------------------------------------------------------------------- /app/assets/images/signup/business.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/signup/business.jpg -------------------------------------------------------------------------------- /app/assets/images/signup/checkmark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/signup/checkmark.gif -------------------------------------------------------------------------------- /app/assets/images/signup/col2-even.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/signup/col2-even.gif -------------------------------------------------------------------------------- /app/assets/images/signup/col2-odd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/signup/col2-odd.gif -------------------------------------------------------------------------------- /app/assets/images/signup/col4-even.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/signup/col4-even.gif -------------------------------------------------------------------------------- /app/assets/images/signup/col4-odd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/signup/col4-odd.gif -------------------------------------------------------------------------------- /app/assets/images/signup/professional.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/signup/professional.jpg -------------------------------------------------------------------------------- /app/assets/images/signup/theme-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/signup/theme-bg.png -------------------------------------------------------------------------------- /app/assets/images/signup/unlimited.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/signup/unlimited.jpg -------------------------------------------------------------------------------- /app/assets/images/skins/bg-body.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/skins/bg-body.gif -------------------------------------------------------------------------------- /app/assets/images/skins/bg-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/skins/bg-search.png -------------------------------------------------------------------------------- /app/assets/images/skins/icn-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/skins/icn-search.png -------------------------------------------------------------------------------- /app/assets/images/skins/icon-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/skins/icon-arrow.png -------------------------------------------------------------------------------- /app/assets/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/spinner.gif -------------------------------------------------------------------------------- /app/assets/images/spinner_big.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/spinner_big.gif -------------------------------------------------------------------------------- /app/assets/images/spritemaps/spritemap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/spritemaps/spritemap.png -------------------------------------------------------------------------------- /app/assets/images/themes/themestore.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/images/themes/themestore.jpg -------------------------------------------------------------------------------- /app/assets/javascripts/active_admin.js: -------------------------------------------------------------------------------- 1 | //= require active_admin/base 2 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/javascripts/application.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/backbone_js.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/javascripts/backbone_js.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/plugins.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/javascripts/plugins.js.coffee -------------------------------------------------------------------------------- /app/assets/javascripts/utils/utils.js.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/javascripts/utils/utils.js.coffee -------------------------------------------------------------------------------- /app/assets/stylesheets/active_admin.css.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/stylesheets/active_admin.css.scss -------------------------------------------------------------------------------- /app/assets/stylesheets/admin.css.scss.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/stylesheets/admin.css.scss.erb -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/assets/stylesheets/checkout.css.scss.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/stylesheets/checkout.css.scss.erb -------------------------------------------------------------------------------- /app/assets/stylesheets/customer.css.scss.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/stylesheets/customer.css.scss.erb -------------------------------------------------------------------------------- /app/assets/stylesheets/forms.css.scss.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/stylesheets/forms.css.scss.erb -------------------------------------------------------------------------------- /app/assets/stylesheets/ie.css.scss.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/stylesheets/ie.css.scss.erb -------------------------------------------------------------------------------- /app/assets/stylesheets/ie6.css.scss.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/stylesheets/ie6.css.scss.erb -------------------------------------------------------------------------------- /app/assets/stylesheets/ie7.css.scss.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/stylesheets/ie7.css.scss.erb -------------------------------------------------------------------------------- /app/assets/stylesheets/wiki.css.scss.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/assets/stylesheets/wiki.css.scss.erb -------------------------------------------------------------------------------- /app/controllers/admin/app_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/admin/app_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/blogs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/admin/blogs_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/admin/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/links_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/admin/links_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/oauth_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/admin/oauth_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/admin/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/shops_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/admin/shops_controller.rb -------------------------------------------------------------------------------- /app/controllers/admin/users_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/admin/users_controller.rb -------------------------------------------------------------------------------- /app/controllers/api/v1/app_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/api/v1/app_controller.rb -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/district_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/district_controller.rb -------------------------------------------------------------------------------- /app/controllers/shop/README.textile: -------------------------------------------------------------------------------- 1 | 前台网店相关的控制器放在此目录 2 | -------------------------------------------------------------------------------- /app/controllers/shop/app_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/shop/app_controller.rb -------------------------------------------------------------------------------- /app/controllers/shop/blogs_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/shop/blogs_controller.rb -------------------------------------------------------------------------------- /app/controllers/shop/cart_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/shop/cart_controller.rb -------------------------------------------------------------------------------- /app/controllers/shop/order_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/shop/order_controller.rb -------------------------------------------------------------------------------- /app/controllers/shop/pages_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/shop/pages_controller.rb -------------------------------------------------------------------------------- /app/controllers/shop/search_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/shop/search_controller.rb -------------------------------------------------------------------------------- /app/controllers/shop/shops_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/shop/shops_controller.rb -------------------------------------------------------------------------------- /app/controllers/shopqi/app_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/shopqi/app_controller.rb -------------------------------------------------------------------------------- /app/controllers/shopqi/home_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/shopqi/home_controller.rb -------------------------------------------------------------------------------- /app/controllers/theme/app_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/theme/app_controller.rb -------------------------------------------------------------------------------- /app/controllers/wiki/app_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/controllers/wiki/app_controller.rb -------------------------------------------------------------------------------- /app/helpers/admin/app_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/helpers/admin/app_helper.rb -------------------------------------------------------------------------------- /app/helpers/admin/blogs_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/helpers/admin/blogs_helper.rb -------------------------------------------------------------------------------- /app/helpers/admin/emails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/helpers/admin/emails_helper.rb -------------------------------------------------------------------------------- /app/helpers/admin/home_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/helpers/admin/home_helper.rb -------------------------------------------------------------------------------- /app/helpers/admin/orders_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/helpers/admin/orders_helper.rb -------------------------------------------------------------------------------- /app/helpers/admin/products_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/helpers/admin/products_helper.rb -------------------------------------------------------------------------------- /app/helpers/admin/shipping_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/helpers/admin/shipping_helper.rb -------------------------------------------------------------------------------- /app/helpers/admin/shops_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/helpers/admin/shops_helper.rb -------------------------------------------------------------------------------- /app/helpers/app_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/helpers/app_helper.rb -------------------------------------------------------------------------------- /app/helpers/shop/order_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/helpers/shop/order_helper.rb -------------------------------------------------------------------------------- /app/helpers/shop/shops_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/helpers/shop/shops_helper.rb -------------------------------------------------------------------------------- /app/helpers/shopqi/home_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/helpers/shopqi/home_helper.rb -------------------------------------------------------------------------------- /app/jobs/README.md: -------------------------------------------------------------------------------- 1 | 新增 Worker 后,要将它添加到 `config/deploy.rb` 2 | -------------------------------------------------------------------------------- /app/jobs/alipay_send_goods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/jobs/alipay_send_goods.rb -------------------------------------------------------------------------------- /app/jobs/delete_shop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/jobs/delete_shop.rb -------------------------------------------------------------------------------- /app/jobs/shop_contact_us.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/jobs/shop_contact_us.rb -------------------------------------------------------------------------------- /app/jobs/shopqi_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/jobs/shopqi_mailer.rb -------------------------------------------------------------------------------- /app/jobs/sunspot_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/jobs/sunspot_worker.rb -------------------------------------------------------------------------------- /app/jobs/theme_exporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/jobs/theme_exporter.rb -------------------------------------------------------------------------------- /app/jobs/theme_extracter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/jobs/theme_extracter.rb -------------------------------------------------------------------------------- /app/jobs/webhook_worker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/jobs/webhook_worker.rb -------------------------------------------------------------------------------- /app/liquids/address_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/address_drop.rb -------------------------------------------------------------------------------- /app/liquids/article_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/article_drop.rb -------------------------------------------------------------------------------- /app/liquids/base_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/base_filter.rb -------------------------------------------------------------------------------- /app/liquids/blogs_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/blogs_drop.rb -------------------------------------------------------------------------------- /app/liquids/cart_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/cart_drop.rb -------------------------------------------------------------------------------- /app/liquids/collections_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/collections_drop.rb -------------------------------------------------------------------------------- /app/liquids/comment_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/comment_drop.rb -------------------------------------------------------------------------------- /app/liquids/customer_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/customer_drop.rb -------------------------------------------------------------------------------- /app/liquids/errors_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/errors_drop.rb -------------------------------------------------------------------------------- /app/liquids/form.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/form.rb -------------------------------------------------------------------------------- /app/liquids/layout.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/layout.rb -------------------------------------------------------------------------------- /app/liquids/line_item_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/line_item_drop.rb -------------------------------------------------------------------------------- /app/liquids/link_lists_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/link_lists_drop.rb -------------------------------------------------------------------------------- /app/liquids/order_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/order_drop.rb -------------------------------------------------------------------------------- /app/liquids/pages_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/pages_drop.rb -------------------------------------------------------------------------------- /app/liquids/paginate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/paginate.rb -------------------------------------------------------------------------------- /app/liquids/paginate_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/paginate_filter.rb -------------------------------------------------------------------------------- /app/liquids/product_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/product_drop.rb -------------------------------------------------------------------------------- /app/liquids/product_variant_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/product_variant_drop.rb -------------------------------------------------------------------------------- /app/liquids/search_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/search_drop.rb -------------------------------------------------------------------------------- /app/liquids/settings_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/settings_drop.rb -------------------------------------------------------------------------------- /app/liquids/shop_drop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/shop_drop.rb -------------------------------------------------------------------------------- /app/liquids/tag_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/tag_filter.rb -------------------------------------------------------------------------------- /app/liquids/url_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/liquids/url_filter.rb -------------------------------------------------------------------------------- /app/mailers/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/mailers/README.textile -------------------------------------------------------------------------------- /app/mailers/shop_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/mailers/shop_mailer.rb -------------------------------------------------------------------------------- /app/mailers/theme_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/mailers/theme_mailer.rb -------------------------------------------------------------------------------- /app/models/activity.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/activity.rb -------------------------------------------------------------------------------- /app/models/admin_user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/admin_user.rb -------------------------------------------------------------------------------- /app/models/api_client.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/api_client.rb -------------------------------------------------------------------------------- /app/models/asset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/asset.rb -------------------------------------------------------------------------------- /app/models/blog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/blog.rb -------------------------------------------------------------------------------- /app/models/cart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/cart.rb -------------------------------------------------------------------------------- /app/models/consumption.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/consumption.rb -------------------------------------------------------------------------------- /app/models/contact.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/contact.rb -------------------------------------------------------------------------------- /app/models/custom_collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/custom_collection.rb -------------------------------------------------------------------------------- /app/models/customer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/customer.rb -------------------------------------------------------------------------------- /app/models/customer_group.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/customer_group.rb -------------------------------------------------------------------------------- /app/models/discount.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/discount.rb -------------------------------------------------------------------------------- /app/models/district.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/district.rb -------------------------------------------------------------------------------- /app/models/email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/email.rb -------------------------------------------------------------------------------- /app/models/key_values.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/key_values.rb -------------------------------------------------------------------------------- /app/models/kindeditor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/kindeditor.rb -------------------------------------------------------------------------------- /app/models/link_list.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/link_list.rb -------------------------------------------------------------------------------- /app/models/order.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/order.rb -------------------------------------------------------------------------------- /app/models/page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/page.rb -------------------------------------------------------------------------------- /app/models/payment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/payment.rb -------------------------------------------------------------------------------- /app/models/permission.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/permission.rb -------------------------------------------------------------------------------- /app/models/product.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/product.rb -------------------------------------------------------------------------------- /app/models/secret_setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/secret_setting.rb -------------------------------------------------------------------------------- /app/models/session_cart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/session_cart.rb -------------------------------------------------------------------------------- /app/models/setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/setting.rb -------------------------------------------------------------------------------- /app/models/shipping.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/shipping.rb -------------------------------------------------------------------------------- /app/models/shop.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/shop.rb -------------------------------------------------------------------------------- /app/models/shop_theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/shop_theme.rb -------------------------------------------------------------------------------- /app/models/smart_collection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/smart_collection.rb -------------------------------------------------------------------------------- /app/models/subscribe.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/subscribe.rb -------------------------------------------------------------------------------- /app/models/tag.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/tag.rb -------------------------------------------------------------------------------- /app/models/theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/theme.rb -------------------------------------------------------------------------------- /app/models/translation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/translation.rb -------------------------------------------------------------------------------- /app/models/user.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/user.rb -------------------------------------------------------------------------------- /app/models/webhook.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/webhook.rb -------------------------------------------------------------------------------- /app/models/wiki_page.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/models/wiki_page.rb -------------------------------------------------------------------------------- /app/observers/README.md: -------------------------------------------------------------------------------- 1 | 新增 Observer 后,要将它添加到 `config/application.rb` 2 | -------------------------------------------------------------------------------- /app/observers/activity_observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/observers/activity_observer.rb -------------------------------------------------------------------------------- /app/observers/order_observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/observers/order_observer.rb -------------------------------------------------------------------------------- /app/observers/product_observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/observers/product_observer.rb -------------------------------------------------------------------------------- /app/observers/shop_observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/observers/shop_observer.rb -------------------------------------------------------------------------------- /app/observers/theme_observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/observers/theme_observer.rb -------------------------------------------------------------------------------- /app/observers/webhook_observer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/observers/webhook_observer.rb -------------------------------------------------------------------------------- /app/uploaders/theme_main_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/uploaders/theme_main_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/theme_product_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/uploaders/theme_product_uploader.rb -------------------------------------------------------------------------------- /app/uploaders/theme_uploader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/uploaders/theme_uploader.rb -------------------------------------------------------------------------------- /app/validators/email_format_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/validators/email_format_validator.rb -------------------------------------------------------------------------------- /app/validators/sku_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/validators/sku_validator.rb -------------------------------------------------------------------------------- /app/validators/storage_validator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/validators/storage_validator.rb -------------------------------------------------------------------------------- /app/views/admin/account/_about.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/account/_about.html.haml -------------------------------------------------------------------------------- /app/views/admin/account/_plans.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/account/_plans.html.haml -------------------------------------------------------------------------------- /app/views/admin/account/cancel.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/account/cancel.html.haml -------------------------------------------------------------------------------- /app/views/admin/account/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/account/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/articles/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/articles/_form.html.haml -------------------------------------------------------------------------------- /app/views/admin/articles/destroy.js.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/articles/destroy.js.haml -------------------------------------------------------------------------------- /app/views/admin/articles/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/articles/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/articles/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/articles/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/assets/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/assets/edit.html.haml -------------------------------------------------------------------------------- /app/views/admin/assets/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/assets/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/blogs/_blog.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/blogs/_blog.html.haml -------------------------------------------------------------------------------- /app/views/admin/blogs/_comments.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/blogs/_comments.html.haml -------------------------------------------------------------------------------- /app/views/admin/blogs/_index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/blogs/_index.html.haml -------------------------------------------------------------------------------- /app/views/admin/blogs/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/blogs/edit.html.haml -------------------------------------------------------------------------------- /app/views/admin/blogs/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/blogs/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/blogs/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/blogs/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/comments/_index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/comments/_index.html.haml -------------------------------------------------------------------------------- /app/views/admin/comments/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/comments/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/customers/_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/customers/_menu.html.haml -------------------------------------------------------------------------------- /app/views/admin/customers/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/customers/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/customers/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/customers/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/customers/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/customers/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/discounts/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/discounts/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/domains/_buy.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/domains/_buy.html.haml -------------------------------------------------------------------------------- /app/views/admin/domains/_index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/domains/_index.html.haml -------------------------------------------------------------------------------- /app/views/admin/domains/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/domains/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/emails/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/emails/edit.html.haml -------------------------------------------------------------------------------- /app/views/admin/emails/follow.js.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/emails/follow.js.haml -------------------------------------------------------------------------------- /app/views/admin/emails/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/emails/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/emails/preview.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/emails/preview.html.haml -------------------------------------------------------------------------------- /app/views/admin/emails/unfollow.js.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/emails/unfollow.js.haml -------------------------------------------------------------------------------- /app/views/admin/home/_activity.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/home/_activity.html.haml -------------------------------------------------------------------------------- /app/views/admin/home/_progress.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/home/_progress.html.haml -------------------------------------------------------------------------------- /app/views/admin/home/_show_user.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/home/_show_user.html.haml -------------------------------------------------------------------------------- /app/views/admin/home/dashboard.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/home/dashboard.html.haml -------------------------------------------------------------------------------- /app/views/admin/home/guide.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/home/guide.html.haml -------------------------------------------------------------------------------- /app/views/admin/home/query.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/home/query.html.haml -------------------------------------------------------------------------------- /app/views/admin/orders/_cancel.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/orders/_cancel.html.haml -------------------------------------------------------------------------------- /app/views/admin/orders/_export.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/orders/_export.html.haml -------------------------------------------------------------------------------- /app/views/admin/orders/_menu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/orders/_menu.html.haml -------------------------------------------------------------------------------- /app/views/admin/orders/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/orders/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/orders/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/orders/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/pages/_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/pages/_page.html.haml -------------------------------------------------------------------------------- /app/views/admin/pages/destroy.js.haml: -------------------------------------------------------------------------------- 1 | window.location = '#{pages_path}'; 2 | -------------------------------------------------------------------------------- /app/views/admin/pages/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/pages/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/pages/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/pages/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/pages/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/pages/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/payments/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/payments/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/photos/destroy.js.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/photos/destroy.js.haml -------------------------------------------------------------------------------- /app/views/admin/products/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/products/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/products/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/products/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/products/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/products/show.html.haml -------------------------------------------------------------------------------- /app/views/admin/sessions/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/sessions/new.html.haml -------------------------------------------------------------------------------- /app/views/admin/shippings/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/shippings/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/shops/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/shops/edit.html.haml -------------------------------------------------------------------------------- /app/views/admin/smart_collections/_smart_collection.html.haml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/views/admin/templates/emails/customer_account_activation_title.liquid: -------------------------------------------------------------------------------- 1 | {{ shop_name }}帐号激活提醒 2 | -------------------------------------------------------------------------------- /app/views/admin/templates/emails/customer_account_welcome_title.liquid: -------------------------------------------------------------------------------- 1 | 帐号激活确认提醒 2 | -------------------------------------------------------------------------------- /app/views/admin/templates/emails/customer_password_reset_title.liquid: -------------------------------------------------------------------------------- 1 | 密码变更 2 | -------------------------------------------------------------------------------- /app/views/admin/templates/emails/order_cancelled_title.liquid: -------------------------------------------------------------------------------- 1 | 订单 {{ name }} 取消提醒 2 | -------------------------------------------------------------------------------- /app/views/admin/templates/emails/order_confirm_title.liquid: -------------------------------------------------------------------------------- 1 | 您在{{shop_name}}的订单下单成功 2 | -------------------------------------------------------------------------------- /app/views/admin/templates/emails/order_paid_title.liquid: -------------------------------------------------------------------------------- 1 | 订单 {{ name }} 完成支付 2 | -------------------------------------------------------------------------------- /app/views/admin/templates/emails/ship_confirm_title.liquid: -------------------------------------------------------------------------------- 1 | 订单 {{ name }} 发货提醒 2 | -------------------------------------------------------------------------------- /app/views/admin/templates/emails/ship_update_title.liquid: -------------------------------------------------------------------------------- 1 | 订单 {{ name }} 运送方式更改提醒 2 | -------------------------------------------------------------------------------- /app/views/admin/theme_mailer/export.text.haml: -------------------------------------------------------------------------------- 1 | 尊敬的ShopQi客户: 2 | 3 | 附件为您导出主题的压缩包文件. 4 | 5 | ShopQi. 6 | -------------------------------------------------------------------------------- /app/views/admin/themes/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/themes/index.html.haml -------------------------------------------------------------------------------- /app/views/admin/users/_user.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/users/_user.html.haml -------------------------------------------------------------------------------- /app/views/admin/users/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/admin/users/edit.html.haml -------------------------------------------------------------------------------- /app/views/api/v1/orders/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/api/v1/orders/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/orders/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/api/v1/orders/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/products/index.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/api/v1/products/index.rabl -------------------------------------------------------------------------------- /app/views/api/v1/products/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/api/v1/products/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/shops/show.rabl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/api/v1/shops/show.rabl -------------------------------------------------------------------------------- /app/views/api/v1/webhooks/create.rabl: -------------------------------------------------------------------------------- 1 | object @webhook 2 | attributes :id, :event, :callback_url 3 | -------------------------------------------------------------------------------- /app/views/devise/passwords/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/devise/passwords/edit.html.haml -------------------------------------------------------------------------------- /app/views/devise/passwords/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/devise/passwords/new.html.haml -------------------------------------------------------------------------------- /app/views/devise/shared/_links.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/devise/shared/_links.haml -------------------------------------------------------------------------------- /app/views/devise/unlocks/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/devise/unlocks/new.html.haml -------------------------------------------------------------------------------- /app/views/layouts/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/layouts/README.textile -------------------------------------------------------------------------------- /app/views/layouts/admin.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/layouts/admin.html.haml -------------------------------------------------------------------------------- /app/views/layouts/application.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/layouts/application.html.haml -------------------------------------------------------------------------------- /app/views/layouts/shop/admin.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/layouts/shop/admin.html.haml -------------------------------------------------------------------------------- /app/views/layouts/shop/checkout.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/layouts/shop/checkout.html.haml -------------------------------------------------------------------------------- /app/views/layouts/shopqi.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/layouts/shopqi.html.haml -------------------------------------------------------------------------------- /app/views/layouts/theme.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/layouts/theme.html.haml -------------------------------------------------------------------------------- /app/views/layouts/wiki.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/layouts/wiki.html.haml -------------------------------------------------------------------------------- /app/views/shared/_announcement.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shared/_announcement.html.haml -------------------------------------------------------------------------------- /app/views/shared/_baidu.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shared/_baidu.html.haml -------------------------------------------------------------------------------- /app/views/shared/_baidu_v2.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shared/_baidu_v2.html.haml -------------------------------------------------------------------------------- /app/views/shared/_block.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shared/_block.html.haml -------------------------------------------------------------------------------- /app/views/shared/_google.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shared/_google.html.haml -------------------------------------------------------------------------------- /app/views/shared/_noscript.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shared/_noscript.html.haml -------------------------------------------------------------------------------- /app/views/shared/_upgrade_ie.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shared/_upgrade_ie.html.haml -------------------------------------------------------------------------------- /app/views/shared/access_deny.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shared/access_deny.html.haml -------------------------------------------------------------------------------- /app/views/shared/error_msg.js.haml: -------------------------------------------------------------------------------- 1 | error_msg('#{flash[:error]}'); 2 | 3 | -------------------------------------------------------------------------------- /app/views/shared/message.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shared/message.html.haml -------------------------------------------------------------------------------- /app/views/shared/msg.js.haml: -------------------------------------------------------------------------------- 1 | msg('#{flash[:notice]}'); 2 | -------------------------------------------------------------------------------- /app/views/shared/no_shop.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shared/no_shop.html.haml -------------------------------------------------------------------------------- /app/views/shop/order/done.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shop/order/done.html.haml -------------------------------------------------------------------------------- /app/views/shop/order/error.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shop/order/error.html.haml -------------------------------------------------------------------------------- /app/views/shop/order/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shop/order/new.html.haml -------------------------------------------------------------------------------- /app/views/shop/order/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shop/order/show.html.haml -------------------------------------------------------------------------------- /app/views/shop/shops/password.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shop/shops/password.html.haml -------------------------------------------------------------------------------- /app/views/shop/shops/themes.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shop/shops/themes.html.haml -------------------------------------------------------------------------------- /app/views/shopqi/home/_sidebar.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shopqi/home/_sidebar.html.haml -------------------------------------------------------------------------------- /app/views/shopqi/home/about.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shopqi/home/about.html.haml -------------------------------------------------------------------------------- /app/views/shopqi/home/agreement.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shopqi/home/agreement.html.haml -------------------------------------------------------------------------------- /app/views/shopqi/home/design.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shopqi/home/design.html.haml -------------------------------------------------------------------------------- /app/views/shopqi/home/faq.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shopqi/home/faq.html.haml -------------------------------------------------------------------------------- /app/views/shopqi/home/features.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shopqi/home/features.html.haml -------------------------------------------------------------------------------- /app/views/shopqi/home/links.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shopqi/home/links.html.haml -------------------------------------------------------------------------------- /app/views/shopqi/home/login.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shopqi/home/login.html.haml -------------------------------------------------------------------------------- /app/views/shopqi/home/no_page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shopqi/home/no_page.html.haml -------------------------------------------------------------------------------- /app/views/shopqi/home/page.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shopqi/home/page.html.haml -------------------------------------------------------------------------------- /app/views/shopqi/home/security.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shopqi/home/security.html.haml -------------------------------------------------------------------------------- /app/views/shopqi/home/signup.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shopqi/home/signup.html.haml -------------------------------------------------------------------------------- /app/views/shopqi/home/store.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shopqi/home/store.html.haml -------------------------------------------------------------------------------- /app/views/shopqi/home/tour.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/shopqi/home/tour.html.haml -------------------------------------------------------------------------------- /app/views/theme/themes/_shop.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/theme/themes/_shop.html.haml -------------------------------------------------------------------------------- /app/views/theme/themes/apply.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/theme/themes/apply.html.haml -------------------------------------------------------------------------------- /app/views/theme/themes/download.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/theme/themes/download.html.haml -------------------------------------------------------------------------------- /app/views/theme/themes/index.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/theme/themes/index.html.haml -------------------------------------------------------------------------------- /app/views/theme/themes/login.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/theme/themes/login.html.haml -------------------------------------------------------------------------------- /app/views/theme/themes/show.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/theme/themes/show.html.haml -------------------------------------------------------------------------------- /app/views/wiki/wiki_pages/_form.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/wiki/wiki_pages/_form.html.haml -------------------------------------------------------------------------------- /app/views/wiki/wiki_pages/edit.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/wiki/wiki_pages/edit.html.haml -------------------------------------------------------------------------------- /app/views/wiki/wiki_pages/new.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/wiki/wiki_pages/new.html.haml -------------------------------------------------------------------------------- /app/views/wiki/wiki_pages/pages.html.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/app/views/wiki/wiki_pages/pages.html.haml -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config.ru -------------------------------------------------------------------------------- /config/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/README.textile -------------------------------------------------------------------------------- /config/app_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/app_config.yml -------------------------------------------------------------------------------- /config/app_secret_config.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/app_secret_config.yml.example -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml.example.mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/database.yml.example.mysql -------------------------------------------------------------------------------- /config/database.yml.example.postgresql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/database.yml.example.postgresql -------------------------------------------------------------------------------- /config/deploy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/deploy.rb -------------------------------------------------------------------------------- /config/development.unicorn.conf.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/development.unicorn.conf.rb -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/environments/travis.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/environments/travis.rb -------------------------------------------------------------------------------- /config/initializers/0_load_first.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/0_load_first.rb -------------------------------------------------------------------------------- /config/initializers/active_admin.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/active_admin.rb -------------------------------------------------------------------------------- /config/initializers/add_method_to_ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/add_method_to_ruby.rb -------------------------------------------------------------------------------- /config/initializers/alipay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/alipay.rb -------------------------------------------------------------------------------- /config/initializers/datetime_format.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/datetime_format.rb -------------------------------------------------------------------------------- /config/initializers/devise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/devise.rb -------------------------------------------------------------------------------- /config/initializers/doorkeeper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/doorkeeper.rb -------------------------------------------------------------------------------- /config/initializers/dragonfly.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/dragonfly.rb -------------------------------------------------------------------------------- /config/initializers/haml.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/haml.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/liquid.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/liquid.rb -------------------------------------------------------------------------------- /config/initializers/load_resque.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/load_resque.rb -------------------------------------------------------------------------------- /config/initializers/logger.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/logger.rb -------------------------------------------------------------------------------- /config/initializers/middlewares.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/middlewares.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/new_relic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/new_relic.rb -------------------------------------------------------------------------------- /config/initializers/rabl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/rabl.rb -------------------------------------------------------------------------------- /config/initializers/secret_token.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/secret_token.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/setup_mail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/setup_mail.rb -------------------------------------------------------------------------------- /config/initializers/squeel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/squeel.rb -------------------------------------------------------------------------------- /config/initializers/sunspot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/sunspot.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/locales/active_admin.cn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/locales/active_admin.cn.yml -------------------------------------------------------------------------------- /config/locales/cn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/locales/cn.yml -------------------------------------------------------------------------------- /config/locales/devise.cn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/locales/devise.cn.yml -------------------------------------------------------------------------------- /config/locales/devise.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/locales/devise.en.yml -------------------------------------------------------------------------------- /config/locales/doorkeeper.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/locales/doorkeeper.en.yml -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/locales/on_the_spot.cn.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/locales/on_the_spot.cn.yml -------------------------------------------------------------------------------- /config/locales/on_the_spot.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/locales/on_the_spot.en.yml -------------------------------------------------------------------------------- /config/nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/nginx -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/sitemap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/sitemap.rb -------------------------------------------------------------------------------- /config/sunspot.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/sunspot.yml.example -------------------------------------------------------------------------------- /config/unicorn.conf.rb.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/config/unicorn.conf.rb.example -------------------------------------------------------------------------------- /db/areas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/db/areas.json -------------------------------------------------------------------------------- /db/migrate/20110419080009_create_shops.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/db/migrate/20110419080009_create_shops.rb -------------------------------------------------------------------------------- /db/migrate/20110425043757_create_pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/db/migrate/20110425043757_create_pages.rb -------------------------------------------------------------------------------- /db/migrate/20110511132245_create_blogs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/db/migrate/20110511132245_create_blogs.rb -------------------------------------------------------------------------------- /db/migrate/20110511132306_create_tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/db/migrate/20110511132306_create_tags.rb -------------------------------------------------------------------------------- /db/migrate/20110609014732_create_carts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/db/migrate/20110609014732_create_carts.rb -------------------------------------------------------------------------------- /db/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/db/schema.rb -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /db/seeds/development/shop.seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/db/seeds/development/shop.seeds.rb -------------------------------------------------------------------------------- /doc/README_FOR_APP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/doc/README_FOR_APP -------------------------------------------------------------------------------- /lib/api_constraints.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/api_constraints.rb -------------------------------------------------------------------------------- /lib/custom_failure.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/custom_failure.rb -------------------------------------------------------------------------------- /lib/domain/shopqi.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/domain/shopqi.rb -------------------------------------------------------------------------------- /lib/domain/store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/domain/store.rb -------------------------------------------------------------------------------- /lib/domain/theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/domain/theme.rb -------------------------------------------------------------------------------- /lib/domain/wiki.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/domain/wiki.rb -------------------------------------------------------------------------------- /lib/express/ickd.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/express/ickd.rb -------------------------------------------------------------------------------- /lib/gateway/alipay.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/gateway/alipay.rb -------------------------------------------------------------------------------- /lib/models/handle.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/models/handle.rb -------------------------------------------------------------------------------- /lib/qq_file.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/qq_file.rb -------------------------------------------------------------------------------- /lib/sms.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/sms.rb -------------------------------------------------------------------------------- /lib/tasks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/tasks/bootstrap.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/tasks/bootstrap.rake -------------------------------------------------------------------------------- /lib/tasks/common.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/tasks/common.rake -------------------------------------------------------------------------------- /lib/tasks/resque.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/tasks/resque.rake -------------------------------------------------------------------------------- /lib/tasks/travis.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/lib/tasks/travis.rake -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/flash/clippy.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/flash/clippy.swf -------------------------------------------------------------------------------- /public/javascripts/kindeditor/license.txt: -------------------------------------------------------------------------------- 1 | http://www.kindsoft.net/lgpl_license.html -------------------------------------------------------------------------------- /public/robots/shop_robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/robots/shop_robots.txt -------------------------------------------------------------------------------- /public/robots/shopqi_robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/robots/shopqi_robots.txt -------------------------------------------------------------------------------- /public/robots/themes_robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/robots/themes_robots.txt -------------------------------------------------------------------------------- /public/robots/wiki_robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/robots/wiki_robots.txt -------------------------------------------------------------------------------- /public/s/README.textile: -------------------------------------------------------------------------------- 1 | 此目录放置网店前台所有静态文件 2 | -------------------------------------------------------------------------------- /public/s/global/README.textile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/README.textile -------------------------------------------------------------------------------- /public/s/global/cc/alipay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/cc/alipay.gif -------------------------------------------------------------------------------- /public/s/global/cc/icbc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/cc/icbc.gif -------------------------------------------------------------------------------- /public/s/global/cc/mastercard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/cc/mastercard.gif -------------------------------------------------------------------------------- /public/s/global/cc/tenpay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/cc/tenpay.gif -------------------------------------------------------------------------------- /public/s/global/cc/unionpay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/cc/unionpay.gif -------------------------------------------------------------------------------- /public/s/global/cc/visa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/cc/visa.gif -------------------------------------------------------------------------------- /public/s/global/jquery/1.5.2/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/jquery/1.5.2/jquery.js -------------------------------------------------------------------------------- /public/s/global/jquery/hoverintent-r6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/jquery/hoverintent-r6.js -------------------------------------------------------------------------------- /public/s/global/jquery/tmpl-beta1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/jquery/tmpl-beta1.js -------------------------------------------------------------------------------- /public/s/global/sm/tqq_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/sm/tqq_16.png -------------------------------------------------------------------------------- /public/s/global/sm/tsina_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/sm/tsina_16.png -------------------------------------------------------------------------------- /public/s/global/tee/size.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/tee/size.jpg -------------------------------------------------------------------------------- /public/s/global/textile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/textile.css -------------------------------------------------------------------------------- /public/s/global/theme-controls.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/theme-controls.css -------------------------------------------------------------------------------- /public/s/global/theme-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/global/theme-controls.js -------------------------------------------------------------------------------- /public/s/shopqi/api.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/shopqi/api.jquery.js -------------------------------------------------------------------------------- /public/s/shopqi/customer_area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/shopqi/customer_area.js -------------------------------------------------------------------------------- /public/s/shopqi/option_selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/shopqi/option_selection.js -------------------------------------------------------------------------------- /public/s/shopqi/shopqi_common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/public/s/shopqi/shopqi_common.js -------------------------------------------------------------------------------- /script/changelog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/script/changelog.rb -------------------------------------------------------------------------------- /script/data.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/script/data.rb -------------------------------------------------------------------------------- /script/development/replace_haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/script/development/replace_haml -------------------------------------------------------------------------------- /script/development/use_mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/script/development/use_mysql -------------------------------------------------------------------------------- /script/migrate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/script/migrate -------------------------------------------------------------------------------- /script/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/script/rails -------------------------------------------------------------------------------- /script/theme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/script/theme.rb -------------------------------------------------------------------------------- /script/vagrant_up: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/script/vagrant_up -------------------------------------------------------------------------------- /solr/conf/elevate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/solr/conf/elevate.xml -------------------------------------------------------------------------------- /solr/conf/schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/solr/conf/schema.xml -------------------------------------------------------------------------------- /solr/conf/solrconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/solr/conf/solrconfig.xml -------------------------------------------------------------------------------- /solr/conf/spellings.txt: -------------------------------------------------------------------------------- 1 | pizza 2 | history -------------------------------------------------------------------------------- /solr/conf/stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/solr/conf/stopwords.txt -------------------------------------------------------------------------------- /solr/conf/synonyms.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/solr/conf/synonyms.txt -------------------------------------------------------------------------------- /solr/jetty_solr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/solr/jetty_solr.xml -------------------------------------------------------------------------------- /solr/lib/mmseg4j-all-1.8.4-with-dic.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/solr/lib/mmseg4j-all-1.8.4-with-dic.jar -------------------------------------------------------------------------------- /spec/controllers/admin/links_controller_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe Admin::LinksController do 4 | 5 | end 6 | -------------------------------------------------------------------------------- /spec/controllers/admin/photos_controller_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe Admin::PhotosController do 4 | 5 | end 6 | -------------------------------------------------------------------------------- /spec/controllers/admin/shops_controller_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe Admin::ShopsController do 4 | end 5 | -------------------------------------------------------------------------------- /spec/controllers/shop/search_controller_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe Shop::SearchController do 4 | 5 | end 6 | -------------------------------------------------------------------------------- /spec/factories/access_tokens.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/access_tokens.rb -------------------------------------------------------------------------------- /spec/factories/activities.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/activities.rb -------------------------------------------------------------------------------- /spec/factories/admin_users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/admin_users.rb -------------------------------------------------------------------------------- /spec/factories/api_clients.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/api_clients.rb -------------------------------------------------------------------------------- /spec/factories/applications.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/applications.rb -------------------------------------------------------------------------------- /spec/factories/blogs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/blogs.rb -------------------------------------------------------------------------------- /spec/factories/carts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/carts.rb -------------------------------------------------------------------------------- /spec/factories/consumptions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/consumptions.rb -------------------------------------------------------------------------------- /spec/factories/custom_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/custom_collections.rb -------------------------------------------------------------------------------- /spec/factories/customer_groups.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/customer_groups.rb -------------------------------------------------------------------------------- /spec/factories/customers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/customers.rb -------------------------------------------------------------------------------- /spec/factories/data/README.textile: -------------------------------------------------------------------------------- 1 | 此目录放置测试时所需要的文件,例如上传的文件 2 | -------------------------------------------------------------------------------- /spec/factories/data/products/iphone4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/data/products/iphone4.jpg -------------------------------------------------------------------------------- /spec/factories/data/themes/collection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/data/themes/collection.jpg -------------------------------------------------------------------------------- /spec/factories/data/themes/invalid.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/factories/data/themes/main.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/data/themes/main.jpg -------------------------------------------------------------------------------- /spec/factories/data/themes/product.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/data/themes/product.jpg -------------------------------------------------------------------------------- /spec/factories/data/themes/woodland.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/data/themes/woodland.zip -------------------------------------------------------------------------------- /spec/factories/discounts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/discounts.rb -------------------------------------------------------------------------------- /spec/factories/emails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/emails.rb -------------------------------------------------------------------------------- /spec/factories/kindeditors.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/kindeditors.rb -------------------------------------------------------------------------------- /spec/factories/link_lists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/link_lists.rb -------------------------------------------------------------------------------- /spec/factories/links.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/links.rb -------------------------------------------------------------------------------- /spec/factories/orders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/orders.rb -------------------------------------------------------------------------------- /spec/factories/pages.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/pages.rb -------------------------------------------------------------------------------- /spec/factories/payments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/payments.rb -------------------------------------------------------------------------------- /spec/factories/permissions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/permissions.rb -------------------------------------------------------------------------------- /spec/factories/photos.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/photos.rb -------------------------------------------------------------------------------- /spec/factories/products.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/products.rb -------------------------------------------------------------------------------- /spec/factories/shippings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/shippings.rb -------------------------------------------------------------------------------- /spec/factories/shops.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/shops.rb -------------------------------------------------------------------------------- /spec/factories/smart_collections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/smart_collections.rb -------------------------------------------------------------------------------- /spec/factories/subscribes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/subscribes.rb -------------------------------------------------------------------------------- /spec/factories/tags.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/tags.rb -------------------------------------------------------------------------------- /spec/factories/themes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/themes.rb -------------------------------------------------------------------------------- /spec/factories/users.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/users.rb -------------------------------------------------------------------------------- /spec/factories/webhooks.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/factories/webhooks.rb -------------------------------------------------------------------------------- /spec/helpers/admin/blogs_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/helpers/admin/blogs_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/admin/emails_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/helpers/admin/emails_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/admin/orders_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/helpers/admin/orders_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/admin/shops_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/helpers/admin/shops_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/oauth2_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/helpers/oauth2_spec.rb -------------------------------------------------------------------------------- /spec/helpers/shop/order_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/helpers/shop/order_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/shop/shops_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/helpers/shop/shops_helper_spec.rb -------------------------------------------------------------------------------- /spec/helpers/shopqi/home_helper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/helpers/shopqi/home_helper_spec.rb -------------------------------------------------------------------------------- /spec/jobs/theme_exporter_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe ThemeExporter do 4 | end 5 | -------------------------------------------------------------------------------- /spec/liquids/article_drop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/article_drop_spec.rb -------------------------------------------------------------------------------- /spec/liquids/base_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/base_filter_spec.rb -------------------------------------------------------------------------------- /spec/liquids/blogs_drop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/blogs_drop_spec.rb -------------------------------------------------------------------------------- /spec/liquids/cart_drop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/cart_drop_spec.rb -------------------------------------------------------------------------------- /spec/liquids/collections_drop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/collections_drop_spec.rb -------------------------------------------------------------------------------- /spec/liquids/customer_drop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/customer_drop_spec.rb -------------------------------------------------------------------------------- /spec/liquids/form_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/form_spec.rb -------------------------------------------------------------------------------- /spec/liquids/layout_spec.rb: -------------------------------------------------------------------------------- 1 | #encoding: utf-8 2 | require 'spec_helper' 3 | 4 | describe Layout do 5 | end 6 | -------------------------------------------------------------------------------- /spec/liquids/line_item_drop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/line_item_drop_spec.rb -------------------------------------------------------------------------------- /spec/liquids/link_lists_drop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/link_lists_drop_spec.rb -------------------------------------------------------------------------------- /spec/liquids/order_drop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/order_drop_spec.rb -------------------------------------------------------------------------------- /spec/liquids/pages_drop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/pages_drop_spec.rb -------------------------------------------------------------------------------- /spec/liquids/paginate_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/paginate_filter_spec.rb -------------------------------------------------------------------------------- /spec/liquids/paginate_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/paginate_spec.rb -------------------------------------------------------------------------------- /spec/liquids/product_drop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/product_drop_spec.rb -------------------------------------------------------------------------------- /spec/liquids/product_variant_drop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/product_variant_drop_spec.rb -------------------------------------------------------------------------------- /spec/liquids/search_drop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/search_drop_spec.rb -------------------------------------------------------------------------------- /spec/liquids/settings_drop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/settings_drop_spec.rb -------------------------------------------------------------------------------- /spec/liquids/shop_drop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/shop_drop_spec.rb -------------------------------------------------------------------------------- /spec/liquids/tag_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/tag_filter_spec.rb -------------------------------------------------------------------------------- /spec/liquids/url_filter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/liquids/url_filter_spec.rb -------------------------------------------------------------------------------- /spec/mailers/shop_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/mailers/shop_mailer_spec.rb -------------------------------------------------------------------------------- /spec/mailers/theme_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/mailers/theme_mailer_spec.rb -------------------------------------------------------------------------------- /spec/models/activity_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/activity_spec.rb -------------------------------------------------------------------------------- /spec/models/admin_user_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe AdminUser do 4 | end 5 | -------------------------------------------------------------------------------- /spec/models/asset_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/asset_spec.rb -------------------------------------------------------------------------------- /spec/models/blog_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/blog_spec.rb -------------------------------------------------------------------------------- /spec/models/cart_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/cart_spec.rb -------------------------------------------------------------------------------- /spec/models/consumption_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/consumption_spec.rb -------------------------------------------------------------------------------- /spec/models/custom_collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/custom_collection_spec.rb -------------------------------------------------------------------------------- /spec/models/customer_group_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe CustomerGroup do 4 | end 5 | -------------------------------------------------------------------------------- /spec/models/customer_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe Customer do 4 | end 5 | -------------------------------------------------------------------------------- /spec/models/discount_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/discount_spec.rb -------------------------------------------------------------------------------- /spec/models/district_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/district_spec.rb -------------------------------------------------------------------------------- /spec/models/email_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe Email do 4 | end 5 | -------------------------------------------------------------------------------- /spec/models/key_values_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/key_values_spec.rb -------------------------------------------------------------------------------- /spec/models/kindeditor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/kindeditor_spec.rb -------------------------------------------------------------------------------- /spec/models/link_list_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/link_list_spec.rb -------------------------------------------------------------------------------- /spec/models/order_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/order_spec.rb -------------------------------------------------------------------------------- /spec/models/page_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/page_spec.rb -------------------------------------------------------------------------------- /spec/models/payment_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/payment_spec.rb -------------------------------------------------------------------------------- /spec/models/permission_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe Permission do 4 | end 5 | -------------------------------------------------------------------------------- /spec/models/photo_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/photo_spec.rb -------------------------------------------------------------------------------- /spec/models/product_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/product_spec.rb -------------------------------------------------------------------------------- /spec/models/shipping_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/shipping_spec.rb -------------------------------------------------------------------------------- /spec/models/shop_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/shop_spec.rb -------------------------------------------------------------------------------- /spec/models/shop_theme_setting_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/shop_theme_setting_spec.rb -------------------------------------------------------------------------------- /spec/models/shop_theme_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/shop_theme_spec.rb -------------------------------------------------------------------------------- /spec/models/smart_collection_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/smart_collection_spec.rb -------------------------------------------------------------------------------- /spec/models/subscribe_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/subscribe_spec.rb -------------------------------------------------------------------------------- /spec/models/tag_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/tag_spec.rb -------------------------------------------------------------------------------- /spec/models/theme_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/theme_spec.rb -------------------------------------------------------------------------------- /spec/models/user_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/user_spec.rb -------------------------------------------------------------------------------- /spec/models/webhook_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/models/webhook_spec.rb -------------------------------------------------------------------------------- /spec/models/weight_based_shipping_rate_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe WeightBasedShippingRate do 4 | end 5 | -------------------------------------------------------------------------------- /spec/models/wiki_page_spec.rb: -------------------------------------------------------------------------------- 1 | require 'spec_helper' 2 | 3 | describe WikiPage do 4 | end 5 | -------------------------------------------------------------------------------- /spec/observers/activity_observer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/observers/activity_observer_spec.rb -------------------------------------------------------------------------------- /spec/observers/product_observer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/observers/product_observer_spec.rb -------------------------------------------------------------------------------- /spec/observers/shop_observer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/observers/shop_observer_spec.rb -------------------------------------------------------------------------------- /spec/observers/theme_observer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/observers/theme_observer_spec.rb -------------------------------------------------------------------------------- /spec/requests/account_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/account_spec.rb -------------------------------------------------------------------------------- /spec/requests/blogs_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/blogs_spec.rb -------------------------------------------------------------------------------- /spec/requests/custom_collections_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/custom_collections_spec.rb -------------------------------------------------------------------------------- /spec/requests/customers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/customers_spec.rb -------------------------------------------------------------------------------- /spec/requests/discounts_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/discounts_spec.rb -------------------------------------------------------------------------------- /spec/requests/domains_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/domains_spec.rb -------------------------------------------------------------------------------- /spec/requests/guides_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/guides_spec.rb -------------------------------------------------------------------------------- /spec/requests/link_lists_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/link_lists_spec.rb -------------------------------------------------------------------------------- /spec/requests/lookup_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/lookup_spec.rb -------------------------------------------------------------------------------- /spec/requests/orders_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/orders_spec.rb -------------------------------------------------------------------------------- /spec/requests/pages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/pages_spec.rb -------------------------------------------------------------------------------- /spec/requests/payments_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/payments_spec.rb -------------------------------------------------------------------------------- /spec/requests/permission_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/permission_spec.rb -------------------------------------------------------------------------------- /spec/requests/products_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/products_spec.rb -------------------------------------------------------------------------------- /spec/requests/shippings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/shippings_spec.rb -------------------------------------------------------------------------------- /spec/requests/shop/products_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/shop/products_spec.rb -------------------------------------------------------------------------------- /spec/requests/shop/shop_customers_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/shop/shop_customers_spec.rb -------------------------------------------------------------------------------- /spec/requests/shop/shop_orders_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/shop/shop_orders_spec.rb -------------------------------------------------------------------------------- /spec/requests/shop/shops_searches_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/shop/shops_searches_spec.rb -------------------------------------------------------------------------------- /spec/requests/shop/shops_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/shop/shops_spec.rb -------------------------------------------------------------------------------- /spec/requests/shopqi/home_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/shopqi/home_spec.rb -------------------------------------------------------------------------------- /spec/requests/shopqi/login_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/shopqi/login_spec.rb -------------------------------------------------------------------------------- /spec/requests/shops_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/shops_spec.rb -------------------------------------------------------------------------------- /spec/requests/smart_collections_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/smart_collections_spec.rb -------------------------------------------------------------------------------- /spec/requests/theme/themes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/theme/themes_spec.rb -------------------------------------------------------------------------------- /spec/requests/themes_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/themes_spec.rb -------------------------------------------------------------------------------- /spec/requests/users_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/users_spec.rb -------------------------------------------------------------------------------- /spec/requests/webhooks_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/webhooks_spec.rb -------------------------------------------------------------------------------- /spec/requests/wiki/wiki_pages_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/requests/wiki/wiki_pages_spec.rb -------------------------------------------------------------------------------- /spec/routings/shop/shops_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/routings/shop/shops_spec.rb -------------------------------------------------------------------------------- /spec/shared_stuff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/shared_stuff.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/subdomain_capybara_server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/spec/subdomain_capybara_server.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/ace/ace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/vendor/assets/javascripts/ace/ace.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/ace/mode-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/vendor/assets/javascripts/ace/mode-css.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/backbone-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/vendor/assets/javascripts/backbone-min.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/backbone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/vendor/assets/javascripts/backbone.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/fileuploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/vendor/assets/javascripts/fileuploader.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/handlebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/vendor/assets/javascripts/handlebars.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/jquery.tipsy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/vendor/assets/javascripts/jquery.tipsy.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/vendor/assets/javascripts/json2.js -------------------------------------------------------------------------------- /vendor/assets/javascripts/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/vendor/assets/javascripts/plugins.js -------------------------------------------------------------------------------- /vendor/assets/stylesheets/tipsy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saberma/shopqi/HEAD/vendor/assets/stylesheets/tipsy.css --------------------------------------------------------------------------------