├── .gitignore ├── CpWebSourcePlatform ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── README.md ├── apps ├── __init__.py ├── blog │ ├── __init__.py │ ├── admin.py │ ├── adminx.py │ ├── apps.py │ ├── filters.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ └── views.py ├── user_operation │ ├── __init__.py │ ├── admin.py │ ├── adminx.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20180526_0633.py │ │ ├── 0003_userleavingmessage_subject.py │ │ ├── 0004_appprofile.py │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── tests.py │ └── views.py └── users │ ├── __init__.py │ ├── admin.py │ ├── adminx.py │ ├── apps.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ ├── models.py │ ├── serializers.py │ ├── signals.py │ ├── tests.py │ └── views.py ├── db.sqlite3 ├── extra_apps ├── DjangoUeditor │ ├── __init__.py │ ├── commands.py │ ├── forms.py │ ├── models.py │ ├── readme.md │ ├── settings.py │ ├── static │ │ └── ueditor │ │ │ ├── UEditorSnapscreen.exe │ │ │ ├── _examples │ │ │ ├── addCustomizeButton.js │ │ │ ├── addCustomizeCombox.js │ │ │ ├── addCustomizeDialog.js │ │ │ ├── charts.html │ │ │ ├── completeDemo.html │ │ │ ├── customPluginDemo.html │ │ │ ├── customToolbarDemo.html │ │ │ ├── customizeDialogPage.html │ │ │ ├── customizeToolbarUIDemo.html │ │ │ ├── editor_api.js │ │ │ ├── filterRuleDemo.html │ │ │ ├── highlightDemo.html │ │ │ ├── index.html │ │ │ ├── jqueryCompleteDemo.html │ │ │ ├── jqueryValidation.html │ │ │ ├── multiDemo.html │ │ │ ├── multiEditorWithOneInstance.html │ │ │ ├── renderInTable.html │ │ │ ├── resetDemo.html │ │ │ ├── sectiondemo.html │ │ │ ├── server │ │ │ │ ├── getContent.ashx │ │ │ │ ├── getContent.asp │ │ │ │ ├── getContent.jsp │ │ │ │ └── getContent.php │ │ │ ├── setWidthHeightDemo.html │ │ │ ├── simpleDemo.html │ │ │ ├── sortableDemo.html │ │ │ ├── submitFormDemo.html │ │ │ ├── textareaDemo.html │ │ │ └── uparsedemo.html │ │ │ ├── dialogs │ │ │ ├── anchor │ │ │ │ └── anchor.html │ │ │ ├── attachment │ │ │ │ ├── attachment.css │ │ │ │ ├── attachment.html │ │ │ │ ├── attachment.js │ │ │ │ ├── fileTypeImages │ │ │ │ │ ├── icon_chm.gif │ │ │ │ │ ├── icon_default.png │ │ │ │ │ ├── icon_doc.gif │ │ │ │ │ ├── icon_exe.gif │ │ │ │ │ ├── icon_jpg.gif │ │ │ │ │ ├── icon_mp3.gif │ │ │ │ │ ├── icon_mv.gif │ │ │ │ │ ├── icon_pdf.gif │ │ │ │ │ ├── icon_ppt.gif │ │ │ │ │ ├── icon_psd.gif │ │ │ │ │ ├── icon_rar.gif │ │ │ │ │ ├── icon_txt.gif │ │ │ │ │ └── icon_xls.gif │ │ │ │ └── images │ │ │ │ │ ├── alignicon.gif │ │ │ │ │ ├── alignicon.png │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── background │ │ │ │ ├── background.css │ │ │ │ ├── background.html │ │ │ │ ├── background.js │ │ │ │ └── images │ │ │ │ │ ├── bg.png │ │ │ │ │ └── success.png │ │ │ ├── charts │ │ │ │ ├── chart.config.js │ │ │ │ ├── charts.css │ │ │ │ ├── charts.html │ │ │ │ ├── charts.js │ │ │ │ └── images │ │ │ │ │ ├── charts0.png │ │ │ │ │ ├── charts1.png │ │ │ │ │ ├── charts2.png │ │ │ │ │ ├── charts3.png │ │ │ │ │ ├── charts4.png │ │ │ │ │ └── charts5.png │ │ │ ├── emotion │ │ │ │ ├── emotion.css │ │ │ │ ├── emotion.html │ │ │ │ ├── emotion.js │ │ │ │ └── images │ │ │ │ │ ├── 0.gif │ │ │ │ │ ├── bface.gif │ │ │ │ │ ├── cface.gif │ │ │ │ │ ├── fface.gif │ │ │ │ │ ├── jxface2.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── tface.gif │ │ │ │ │ ├── wface.gif │ │ │ │ │ └── yface.gif │ │ │ ├── gmap │ │ │ │ └── gmap.html │ │ │ ├── help │ │ │ │ ├── help.css │ │ │ │ ├── help.html │ │ │ │ └── help.js │ │ │ ├── image │ │ │ │ ├── image.css │ │ │ │ ├── image.html │ │ │ │ ├── image.js │ │ │ │ └── images │ │ │ │ │ ├── alignicon.jpg │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ ├── insertframe │ │ │ │ └── insertframe.html │ │ │ ├── internal.js │ │ │ ├── link │ │ │ │ └── link.html │ │ │ ├── map │ │ │ │ ├── map.html │ │ │ │ └── show.html │ │ │ ├── music │ │ │ │ ├── music.css │ │ │ │ ├── music.html │ │ │ │ └── music.js │ │ │ ├── preview │ │ │ │ └── preview.html │ │ │ ├── scrawl │ │ │ │ ├── images │ │ │ │ │ ├── addimg.png │ │ │ │ │ ├── brush.png │ │ │ │ │ ├── delimg.png │ │ │ │ │ ├── delimgH.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── emptyH.png │ │ │ │ │ ├── eraser.png │ │ │ │ │ ├── redo.png │ │ │ │ │ ├── redoH.png │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── scaleH.png │ │ │ │ │ ├── size.png │ │ │ │ │ ├── undo.png │ │ │ │ │ └── undoH.png │ │ │ │ ├── scrawl.css │ │ │ │ ├── scrawl.html │ │ │ │ └── scrawl.js │ │ │ ├── searchreplace │ │ │ │ ├── searchreplace.html │ │ │ │ └── searchreplace.js │ │ │ ├── snapscreen │ │ │ │ └── snapscreen.html │ │ │ ├── spechars │ │ │ │ ├── spechars.html │ │ │ │ └── spechars.js │ │ │ ├── table │ │ │ │ ├── dragicon.png │ │ │ │ ├── edittable.css │ │ │ │ ├── edittable.html │ │ │ │ ├── edittable.js │ │ │ │ ├── edittd.html │ │ │ │ └── edittip.html │ │ │ ├── template │ │ │ │ ├── config.js │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── pre0.png │ │ │ │ │ ├── pre1.png │ │ │ │ │ ├── pre2.png │ │ │ │ │ ├── pre3.png │ │ │ │ │ └── pre4.png │ │ │ │ ├── template.css │ │ │ │ ├── template.html │ │ │ │ └── template.js │ │ │ ├── video │ │ │ │ ├── images │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── center_focus.jpg │ │ │ │ │ ├── file-icons.gif │ │ │ │ │ ├── file-icons.png │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── image.png │ │ │ │ │ ├── left_focus.jpg │ │ │ │ │ ├── none_focus.jpg │ │ │ │ │ ├── progress.png │ │ │ │ │ ├── right_focus.jpg │ │ │ │ │ ├── success.gif │ │ │ │ │ └── success.png │ │ │ │ ├── video.css │ │ │ │ ├── video.html │ │ │ │ └── video.js │ │ │ ├── webapp │ │ │ │ └── webapp.html │ │ │ └── wordimage │ │ │ │ ├── fClipboard_ueditor.swf │ │ │ │ ├── imageUploader.swf │ │ │ │ ├── tangram.js │ │ │ │ ├── wordimage.html │ │ │ │ └── wordimage.js │ │ │ ├── index.html │ │ │ ├── lang │ │ │ ├── en │ │ │ │ ├── en.js │ │ │ │ └── images │ │ │ │ │ ├── addimage.png │ │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ │ ├── background.png │ │ │ │ │ ├── button.png │ │ │ │ │ ├── copy.png │ │ │ │ │ ├── deletedisable.png │ │ │ │ │ ├── deleteenable.png │ │ │ │ │ ├── listbackground.png │ │ │ │ │ ├── localimage.png │ │ │ │ │ ├── music.png │ │ │ │ │ ├── rotateleftdisable.png │ │ │ │ │ ├── rotateleftenable.png │ │ │ │ │ ├── rotaterightdisable.png │ │ │ │ │ ├── rotaterightenable.png │ │ │ │ │ └── upload.png │ │ │ └── zh-cn │ │ │ │ ├── images │ │ │ │ ├── copy.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ └── upload.png │ │ │ │ └── zh-cn.js │ │ │ ├── php │ │ │ ├── Uploader.class.php │ │ │ ├── action_crawler.php │ │ │ ├── action_list.php │ │ │ ├── action_upload.php │ │ │ ├── config.json │ │ │ └── controller.php │ │ │ ├── themes │ │ │ ├── default │ │ │ │ ├── css │ │ │ │ │ ├── ueditor.css │ │ │ │ │ └── ueditor.min.css │ │ │ │ ├── dialogbase.css │ │ │ │ └── images │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── arrow_up.png │ │ │ │ │ ├── button-bg.gif │ │ │ │ │ ├── cancelbutton.gif │ │ │ │ │ ├── charts.png │ │ │ │ │ ├── cursor_h.gif │ │ │ │ │ ├── cursor_h.png │ │ │ │ │ ├── cursor_v.gif │ │ │ │ │ ├── cursor_v.png │ │ │ │ │ ├── dialog-title-bg.png │ │ │ │ │ ├── fileScan.png │ │ │ │ │ ├── highlighted.gif │ │ │ │ │ ├── icons-all.gif │ │ │ │ │ ├── icons.gif │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── loaderror.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── lock.gif │ │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ │ ├── pagebreak.gif │ │ │ │ │ ├── scale.png │ │ │ │ │ ├── sortable.png │ │ │ │ │ ├── spacer.gif │ │ │ │ │ ├── sparator_v.png │ │ │ │ │ ├── table-cell-align.png │ │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ │ ├── toolbar_bg.png │ │ │ │ │ ├── unhighlighted.gif │ │ │ │ │ ├── upload.png │ │ │ │ │ ├── videologo.gif │ │ │ │ │ ├── word.gif │ │ │ │ │ └── wordpaste.png │ │ │ └── iframe.css │ │ │ ├── third-party │ │ │ ├── SyntaxHighlighter │ │ │ │ ├── shCore.js │ │ │ │ └── shCoreDefault.css │ │ │ ├── codemirror │ │ │ │ ├── codemirror.css │ │ │ │ └── codemirror.js │ │ │ ├── highcharts │ │ │ │ ├── adapters │ │ │ │ │ ├── mootools-adapter.js │ │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ │ ├── prototype-adapter.js │ │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ │ ├── standalone-framework.js │ │ │ │ │ └── standalone-framework.src.js │ │ │ │ ├── highcharts-more.js │ │ │ │ ├── highcharts-more.src.js │ │ │ │ ├── highcharts.js │ │ │ │ ├── highcharts.src.js │ │ │ │ ├── modules │ │ │ │ │ ├── annotations.js │ │ │ │ │ ├── annotations.src.js │ │ │ │ │ ├── canvas-tools.js │ │ │ │ │ ├── canvas-tools.src.js │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data.src.js │ │ │ │ │ ├── drilldown.js │ │ │ │ │ ├── drilldown.src.js │ │ │ │ │ ├── exporting.js │ │ │ │ │ ├── exporting.src.js │ │ │ │ │ ├── funnel.js │ │ │ │ │ ├── funnel.src.js │ │ │ │ │ ├── heatmap.js │ │ │ │ │ ├── heatmap.src.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── map.src.js │ │ │ │ │ ├── no-data-to-display.js │ │ │ │ │ └── no-data-to-display.src.js │ │ │ │ └── themes │ │ │ │ │ ├── dark-blue.js │ │ │ │ │ ├── dark-green.js │ │ │ │ │ ├── gray.js │ │ │ │ │ ├── grid.js │ │ │ │ │ └── skies.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── snapscreen │ │ │ │ └── UEditorSnapscreen.exe │ │ │ ├── video-js │ │ │ │ ├── font │ │ │ │ │ ├── vjs.eot │ │ │ │ │ ├── vjs.svg │ │ │ │ │ ├── vjs.ttf │ │ │ │ │ └── vjs.woff │ │ │ │ ├── video-js.css │ │ │ │ ├── video-js.min.css │ │ │ │ ├── video-js.swf │ │ │ │ ├── video.dev.js │ │ │ │ └── video.js │ │ │ ├── webuploader │ │ │ │ ├── Uploader.swf │ │ │ │ ├── webuploader.css │ │ │ │ ├── webuploader.custom.js │ │ │ │ ├── webuploader.custom.min.js │ │ │ │ ├── webuploader.flashonly.js │ │ │ │ ├── webuploader.flashonly.min.js │ │ │ │ ├── webuploader.html5only.js │ │ │ │ ├── webuploader.html5only.min.js │ │ │ │ ├── webuploader.js │ │ │ │ ├── webuploader.min.js │ │ │ │ ├── webuploader.withoutimage.js │ │ │ │ └── webuploader.withoutimage.min.js │ │ │ └── zeroclipboard │ │ │ │ ├── ZeroClipboard.js │ │ │ │ ├── ZeroClipboard.min.js │ │ │ │ └── ZeroClipboard.swf │ │ │ ├── ueditor.all.js │ │ │ ├── ueditor.all.min.js │ │ │ ├── ueditor.config.js │ │ │ ├── ueditor.parse.js │ │ │ └── ueditor.parse.min.js │ ├── templates │ │ ├── ueditor.html │ │ └── ueditor_old.html │ ├── test_try.py │ ├── urls.py │ ├── utils.py │ ├── views.py │ └── widgets.py ├── __init__.py ├── rest_framework_jwt │ ├── __init__.py │ ├── authentication.py │ ├── compat.py │ ├── locale │ │ └── en_US │ │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── models.py │ ├── serializers.py │ ├── settings.py │ ├── test.py │ ├── utils.py │ └── views.py ├── social_core │ ├── __init__.py │ ├── actions.py │ ├── backends │ │ ├── __init__.py │ │ ├── amazon.py │ │ ├── angel.py │ │ ├── aol.py │ │ ├── appsfuel.py │ │ ├── arcgis.py │ │ ├── asana.py │ │ ├── azuread.py │ │ ├── azuread_b2c.py │ │ ├── azuread_tenant.py │ │ ├── base.py │ │ ├── battlenet.py │ │ ├── beats.py │ │ ├── behance.py │ │ ├── belgiumeid.py │ │ ├── bitbucket.py │ │ ├── box.py │ │ ├── bungie.py │ │ ├── changetip.py │ │ ├── chatwork.py │ │ ├── classlink.py │ │ ├── clef.py │ │ ├── coding.py │ │ ├── coinbase.py │ │ ├── coursera.py │ │ ├── dailymotion.py │ │ ├── deezer.py │ │ ├── digitalocean.py │ │ ├── disqus.py │ │ ├── docker.py │ │ ├── douban.py │ │ ├── dribbble.py │ │ ├── drip.py │ │ ├── dropbox.py │ │ ├── echosign.py │ │ ├── edmodo.py │ │ ├── email.py │ │ ├── eventbrite.py │ │ ├── eveonline.py │ │ ├── evernote.py │ │ ├── exacttarget.py │ │ ├── facebook.py │ │ ├── fedora.py │ │ ├── fitbit.py │ │ ├── five_hundred_px.py │ │ ├── flickr.py │ │ ├── foursquare.py │ │ ├── gae.py │ │ ├── github.py │ │ ├── github_enterprise.py │ │ ├── gitlab.py │ │ ├── goclio.py │ │ ├── goclioeu.py │ │ ├── google.py │ │ ├── google_openidconnect.py │ │ ├── instagram.py │ │ ├── itembase.py │ │ ├── jawbone.py │ │ ├── justgiving.py │ │ ├── kakao.py │ │ ├── khanacademy.py │ │ ├── lastfm.py │ │ ├── launchpad.py │ │ ├── legacy.py │ │ ├── line.py │ │ ├── linkedin.py │ │ ├── live.py │ │ ├── livejournal.py │ │ ├── loginradius.py │ │ ├── lyft.py │ │ ├── mailchimp.py │ │ ├── mailru.py │ │ ├── mapmyfitness.py │ │ ├── mediawiki.py │ │ ├── meetup.py │ │ ├── mendeley.py │ │ ├── microsoft.py │ │ ├── mineid.py │ │ ├── mixcloud.py │ │ ├── monzo.py │ │ ├── moves.py │ │ ├── nationbuilder.py │ │ ├── naver.py │ │ ├── ngpvan.py │ │ ├── nk.py │ │ ├── oauth.py │ │ ├── odnoklassniki.py │ │ ├── open_id.py │ │ ├── open_id_connect.py │ │ ├── openshift.py │ │ ├── openstreetmap.py │ │ ├── orbi.py │ │ ├── orcid.py │ │ ├── patreon.py │ │ ├── persona.py │ │ ├── phabricator.py │ │ ├── pinterest.py │ │ ├── pixelpin.py │ │ ├── pocket.py │ │ ├── podio.py │ │ ├── professionali.py │ │ ├── pushbullet.py │ │ ├── qiita.py │ │ ├── qq.py │ │ ├── quizlet.py │ │ ├── rdio.py │ │ ├── readability.py │ │ ├── reddit.py │ │ ├── runkeeper.py │ │ ├── salesforce.py │ │ ├── saml.py │ │ ├── shimmering.py │ │ ├── shopify.py │ │ ├── sketchfab.py │ │ ├── skyrock.py │ │ ├── slack.py │ │ ├── soundcloud.py │ │ ├── spotify.py │ │ ├── stackoverflow.py │ │ ├── steam.py │ │ ├── stocktwits.py │ │ ├── strava.py │ │ ├── stripe.py │ │ ├── suse.py │ │ ├── taobao.py │ │ ├── thisismyjam.py │ │ ├── trello.py │ │ ├── tripit.py │ │ ├── tumblr.py │ │ ├── twilio.py │ │ ├── twitch.py │ │ ├── twitter.py │ │ ├── uber.py │ │ ├── ubuntu.py │ │ ├── udata.py │ │ ├── untappd.py │ │ ├── upwork.py │ │ ├── username.py │ │ ├── utils.py │ │ ├── vend.py │ │ ├── vimeo.py │ │ ├── vk.py │ │ ├── weibo.py │ │ ├── weixin.py │ │ ├── withings.py │ │ ├── wunderlist.py │ │ ├── xing.py │ │ ├── yahoo.py │ │ ├── yammer.py │ │ ├── yandex.py │ │ └── zotero.py │ ├── exceptions.py │ ├── pipeline │ │ ├── __init__.py │ │ ├── debug.py │ │ ├── disconnect.py │ │ ├── mail.py │ │ ├── partial.py │ │ ├── social_auth.py │ │ ├── user.py │ │ └── utils.py │ ├── storage.py │ ├── store.py │ ├── strategy.py │ ├── tests │ │ ├── __init__.py │ │ ├── actions │ │ │ ├── __init__.py │ │ │ ├── actions.py │ │ │ ├── test_associate.py │ │ │ ├── test_disconnect.py │ │ │ └── test_login.py │ │ ├── backends │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── data │ │ │ │ └── saml_response.txt │ │ │ ├── legacy.py │ │ │ ├── oauth.py │ │ │ ├── open_id.py │ │ │ ├── open_id_connect.py │ │ │ ├── test_amazon.py │ │ │ ├── test_angel.py │ │ │ ├── test_arcgis.py │ │ │ ├── test_asana.py │ │ │ ├── test_azuread.py │ │ │ ├── test_azuread_b2c.py │ │ │ ├── test_behance.py │ │ │ ├── test_bitbucket.py │ │ │ ├── test_box.py │ │ │ ├── test_broken.py │ │ │ ├── test_chatwork.py │ │ │ ├── test_clef.py │ │ │ ├── test_coinbase.py │ │ │ ├── test_coursera.py │ │ │ ├── test_dailymotion.py │ │ │ ├── test_deezer.py │ │ │ ├── test_digitalocean.py │ │ │ ├── test_disqus.py │ │ │ ├── test_dribbble.py │ │ │ ├── test_drip.py │ │ │ ├── test_dropbox.py │ │ │ ├── test_dummy.py │ │ │ ├── test_edmodo.py │ │ │ ├── test_email.py │ │ │ ├── test_eventbrite.py │ │ │ ├── test_evernote.py │ │ │ ├── test_facebook.py │ │ │ ├── test_fitbit.py │ │ │ ├── test_five_hundred_px.py │ │ │ ├── test_flickr.py │ │ │ ├── test_foursquare.py │ │ │ ├── test_github.py │ │ │ ├── test_github_enterprise.py │ │ │ ├── test_gitlab.py │ │ │ ├── test_google.py │ │ │ ├── test_instagram.py │ │ │ ├── test_itembase.py │ │ │ ├── test_kakao.py │ │ │ ├── test_khanacademy.py │ │ │ ├── test_linkedin.py │ │ │ ├── test_live.py │ │ │ ├── test_livejournal.py │ │ │ ├── test_lyft.py │ │ │ ├── test_mapmyfitness.py │ │ │ ├── test_mineid.py │ │ │ ├── test_mixcloud.py │ │ │ ├── test_nationbuilder.py │ │ │ ├── test_naver.py │ │ │ ├── test_ngpvan.py │ │ │ ├── test_orbi.py │ │ │ ├── test_patreon.py │ │ │ ├── test_phabricator.py │ │ │ ├── test_pinterest.py │ │ │ ├── test_podio.py │ │ │ ├── test_qiita.py │ │ │ ├── test_quizlet.py │ │ │ ├── test_readability.py │ │ │ ├── test_reddit.py │ │ │ ├── test_saml.py │ │ │ ├── test_sketchfab.py │ │ │ ├── test_skyrock.py │ │ │ ├── test_slack.py │ │ │ ├── test_soundcloud.py │ │ │ ├── test_spotify.py │ │ │ ├── test_stackoverflow.py │ │ │ ├── test_steam.py │ │ │ ├── test_stocktwits.py │ │ │ ├── test_strava.py │ │ │ ├── test_stripe.py │ │ │ ├── test_taobao.py │ │ │ ├── test_thisismyjam.py │ │ │ ├── test_tripit.py │ │ │ ├── test_tumblr.py │ │ │ ├── test_twitch.py │ │ │ ├── test_twitter.py │ │ │ ├── test_uber.py │ │ │ ├── test_udata.py │ │ │ ├── test_upwork.py │ │ │ ├── test_username.py │ │ │ ├── test_utils.py │ │ │ ├── test_vk.py │ │ │ ├── test_wunderlist.py │ │ │ ├── test_xing.py │ │ │ ├── test_yahoo.py │ │ │ ├── test_yammer.py │ │ │ ├── test_yandex.py │ │ │ └── test_zotero.py │ │ ├── models.py │ │ ├── pipeline.py │ │ ├── requirements-base.txt │ │ ├── requirements-pypy.txt │ │ ├── requirements-python2.txt │ │ ├── requirements-python3.txt │ │ ├── requirements.txt │ │ ├── strategy.py │ │ ├── test_exceptions.py │ │ ├── test_partial.py │ │ ├── test_pipeline.py │ │ ├── test_storage.py │ │ ├── test_utils.py │ │ └── testkey.pem │ └── utils.py ├── social_django │ ├── __init__.py │ ├── admin.py │ ├── compat.py │ ├── config.py │ ├── context_processors.py │ ├── fields.py │ ├── managers.py │ ├── middleware.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_add_related_name.py │ │ ├── 0003_alter_email_max_length.py │ │ ├── 0004_auto_20160423_0400.py │ │ ├── 0005_auto_20160727_2333.py │ │ ├── 0006_partial.py │ │ ├── 0007_code_timestamp.py │ │ ├── 0008_partial_timestamp.py │ │ └── __init__.py │ ├── models.py │ ├── storage.py │ ├── strategy.py │ ├── urls.py │ ├── utils.py │ └── views.py └── xadmin │ ├── .tx │ └── config │ ├── __init__.py │ ├── adminx.py │ ├── apps.py │ ├── filters.py │ ├── forms.py │ ├── layout.py │ ├── locale │ ├── de_DE │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── es_MX │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── eu │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── id_ID │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── ja │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── lt │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── nl_NL │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ ├── ru_RU │ │ └── LC_MESSAGES │ │ │ ├── django.po │ │ │ └── djangojs.po │ └── zh_Hans │ │ └── LC_MESSAGES │ │ ├── django.po │ │ └── djangojs.po │ ├── migrations │ ├── 0001_initial.py │ ├── 0002_log.py │ ├── 0003_auto_20160715_0100.py │ └── __init__.py │ ├── models.py │ ├── plugins │ ├── __init__.py │ ├── actions.py │ ├── aggregation.py │ ├── ajax.py │ ├── auth.py │ ├── batch.py │ ├── bookmark.py │ ├── chart.py │ ├── comments.py │ ├── details.py │ ├── editable.py │ ├── export.py │ ├── filters.py │ ├── images.py │ ├── importexport.py │ ├── inline.py │ ├── language.py │ ├── layout.py │ ├── mobile.py │ ├── multiselect.py │ ├── passwords.py │ ├── portal.py │ ├── quickfilter.py │ ├── quickform.py │ ├── refresh.py │ ├── relate.py │ ├── relfield.py │ ├── sitemenu.py │ ├── sortablelist.py │ ├── themes.py │ ├── topnav.py │ ├── utils.py │ ├── wizard.py │ └── xversion.py │ ├── sites.py │ ├── static │ └── xadmin │ │ ├── component.json │ │ ├── css │ │ ├── themes │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ └── bootstrap-xadmin.css │ │ ├── xadmin.form.css │ │ ├── xadmin.main.css │ │ ├── xadmin.mobile.css │ │ ├── xadmin.page.dashboard.css │ │ ├── xadmin.plugin.aggregation.css │ │ ├── xadmin.plugin.formset.css │ │ ├── xadmin.plugin.importexport.css │ │ ├── xadmin.plugin.quickfilter.css │ │ ├── xadmin.plugins.css │ │ ├── xadmin.responsive.css │ │ ├── xadmin.widget.editable.css │ │ └── xadmin.widget.select-transfer.css │ │ ├── js │ │ ├── xadmin.main.js │ │ ├── xadmin.page.dashboard.js │ │ ├── xadmin.page.form.js │ │ ├── xadmin.page.list.js │ │ ├── xadmin.plugin.actions.js │ │ ├── xadmin.plugin.batch.js │ │ ├── xadmin.plugin.bookmark.js │ │ ├── xadmin.plugin.charts.js │ │ ├── xadmin.plugin.details.js │ │ ├── xadmin.plugin.editable.js │ │ ├── xadmin.plugin.filters.js │ │ ├── xadmin.plugin.formset.js │ │ ├── xadmin.plugin.importexport.js │ │ ├── xadmin.plugin.portal.js │ │ ├── xadmin.plugin.quick-form.js │ │ ├── xadmin.plugin.quickfilter.js │ │ ├── xadmin.plugin.refresh.js │ │ ├── xadmin.plugin.revision.js │ │ ├── xadmin.plugin.sortablelist.js │ │ ├── xadmin.plugin.themes.js │ │ ├── xadmin.responsive.js │ │ ├── xadmin.widget.datetime.js │ │ ├── xadmin.widget.multiselect.js │ │ ├── xadmin.widget.select-transfer.js │ │ └── xadmin.widget.select.js │ │ └── vendor │ │ ├── autotype │ │ └── index.js │ │ ├── bootstrap-clockpicker │ │ ├── bootstrap-clockpicker.css │ │ ├── bootstrap-clockpicker.js │ │ ├── bootstrap-clockpicker.min.css │ │ └── bootstrap-clockpicker.min.js │ │ ├── bootstrap-datepicker │ │ ├── css │ │ │ └── datepicker.css │ │ └── js │ │ │ ├── bootstrap-datepicker.js │ │ │ └── locales │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ ├── bootstrap-datepicker.da.js │ │ │ ├── bootstrap-datepicker.de.js │ │ │ ├── bootstrap-datepicker.el.js │ │ │ ├── bootstrap-datepicker.es.js │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ ├── bootstrap-datepicker.he.js │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ ├── bootstrap-datepicker.id.js │ │ │ ├── bootstrap-datepicker.is.js │ │ │ ├── bootstrap-datepicker.it.js │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ ├── bootstrap-datepicker.th.js │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ ├── bootstrap-datepicker.uk.js │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── bootstrap-image-gallery │ │ ├── css │ │ │ ├── bootstrap-image-gallery.css │ │ │ └── bootstrap-image-gallery.min.css │ │ ├── img │ │ │ └── loading.gif │ │ └── js │ │ │ ├── bootstrap-image-gallery.js │ │ │ └── bootstrap-image-gallery.min.js │ │ ├── bootstrap-modal │ │ ├── css │ │ │ └── bootstrap-modal.css │ │ ├── img │ │ │ └── ajax-loader.gif │ │ └── js │ │ │ ├── bootstrap-modal.js │ │ │ └── bootstrap-modalmanager.js │ │ ├── bootstrap-multiselect │ │ ├── css │ │ │ └── bootstrap-multiselect.css │ │ └── js │ │ │ └── bootstrap-multiselect.js │ │ ├── bootstrap-timepicker │ │ ├── css │ │ │ ├── bootstrap-timepicker.css │ │ │ └── bootstrap-timepicker.min.css │ │ └── js │ │ │ ├── bootstrap-timepicker.js │ │ │ └── bootstrap-timepicker.min.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── flot │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.flot.aggregate.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.threshold.js │ │ └── jquery.flot.time.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── jquery-ui │ │ ├── jquery.ui.core.js │ │ ├── jquery.ui.core.min.js │ │ ├── jquery.ui.effect.js │ │ ├── jquery.ui.effect.min.js │ │ ├── jquery.ui.mouse.js │ │ ├── jquery.ui.mouse.min.js │ │ ├── jquery.ui.sortable.js │ │ ├── jquery.ui.sortable.min.js │ │ ├── jquery.ui.widget.js │ │ └── jquery.ui.widget.min.js │ │ ├── jquery │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── load-image │ │ ├── load-image.js │ │ └── load-image.min.js │ │ ├── select2 │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── select2_locale_de.js │ │ ├── select2_locale_en.js │ │ ├── select2_locale_es.js │ │ ├── select2_locale_eu.js │ │ ├── select2_locale_fr.js │ │ ├── select2_locale_hr.js │ │ ├── select2_locale_hu.js │ │ ├── select2_locale_it.js │ │ ├── select2_locale_nl.js │ │ ├── select2_locale_pt-BR.js │ │ ├── select2_locale_pt-PT.js │ │ ├── select2_locale_ro.js │ │ ├── select2_locale_ru.js │ │ ├── select2_locale_sk.js │ │ ├── select2_locale_sv.js │ │ ├── select2_locale_tr.js │ │ ├── select2_locale_ua.js │ │ ├── select2_locale_zh-CN.js │ │ ├── select2_locale_zh-hans.js │ │ └── select2x2.png │ │ ├── selectize │ │ ├── selectize.bootstrap2.css │ │ ├── selectize.bootstrap3.css │ │ ├── selectize.css │ │ ├── selectize.default.css │ │ ├── selectize.js │ │ ├── selectize.legacy.css │ │ └── selectize.min.js │ │ └── snapjs │ │ ├── snap.css │ │ ├── snap.js │ │ └── snap.min.js │ ├── templates │ └── xadmin │ │ ├── 404.html │ │ ├── 500.html │ │ ├── auth │ │ ├── password_reset │ │ │ ├── complete.html │ │ │ ├── confirm.html │ │ │ ├── done.html │ │ │ ├── email.html │ │ │ └── form.html │ │ └── user │ │ │ ├── add_form.html │ │ │ └── change_password.html │ │ ├── base.html │ │ ├── base_site.html │ │ ├── blocks │ │ ├── comm.top.setlang.html │ │ ├── comm.top.theme.html │ │ ├── comm.top.topnav.html │ │ ├── modal_list.left_navbar.quickfilter.html │ │ ├── model_form.before_fieldsets.wizard.html │ │ ├── model_form.submit_line.wizard.html │ │ ├── model_list.nav_form.search_form.html │ │ ├── model_list.nav_menu.bookmarks.html │ │ ├── model_list.nav_menu.filters.html │ │ ├── model_list.results_bottom.actions.html │ │ ├── model_list.results_top.charts.html │ │ ├── model_list.results_top.date_hierarchy.html │ │ ├── model_list.top_toolbar.exports.html │ │ ├── model_list.top_toolbar.importexport.export.html │ │ ├── model_list.top_toolbar.importexport.import.html │ │ ├── model_list.top_toolbar.layouts.html │ │ ├── model_list.top_toolbar.refresh.html │ │ └── model_list.top_toolbar.saveorder.html │ │ ├── edit_inline │ │ ├── accordion.html │ │ ├── base.html │ │ ├── blank.html │ │ ├── one.html │ │ ├── stacked.html │ │ ├── tab.html │ │ └── tabular.html │ │ ├── filters │ │ ├── char.html │ │ ├── checklist.html │ │ ├── date.html │ │ ├── fk_search.html │ │ ├── list.html │ │ ├── number.html │ │ ├── quickfilter.html │ │ └── rel.html │ │ ├── forms │ │ └── transfer.html │ │ ├── grids │ │ └── thumbnails.html │ │ ├── import_export │ │ ├── export_action.html │ │ └── import.html │ │ ├── includes │ │ ├── box.html │ │ ├── pagination.html │ │ ├── sitemenu_accordion.html │ │ ├── sitemenu_default.html │ │ ├── submit_line.html │ │ ├── toggle_back.html │ │ └── toggle_menu.html │ │ ├── layout │ │ ├── field_value.html │ │ ├── field_value_td.html │ │ ├── fieldset.html │ │ ├── input_group.html │ │ └── td-field.html │ │ ├── views │ │ ├── app_index.html │ │ ├── batch_change_form.html │ │ ├── dashboard.html │ │ ├── form.html │ │ ├── invalid_setup.html │ │ ├── logged_out.html │ │ ├── login.html │ │ ├── model_dashboard.html │ │ ├── model_delete_confirm.html │ │ ├── model_delete_selected_confirm.html │ │ ├── model_detail.html │ │ ├── model_form.html │ │ ├── model_history.html │ │ ├── model_list.html │ │ ├── quick_detail.html │ │ ├── quick_form.html │ │ ├── recover_form.html │ │ ├── recover_list.html │ │ ├── revision_diff.html │ │ └── revision_form.html │ │ └── widgets │ │ ├── addform.html │ │ ├── base.html │ │ ├── chart.html │ │ ├── list.html │ │ └── qbutton.html │ ├── templatetags │ ├── __init__.py │ └── xadmin_tags.py │ ├── util.py │ ├── vendors.py │ ├── views │ ├── __init__.py │ ├── base.py │ ├── dashboard.py │ ├── delete.py │ ├── detail.py │ ├── edit.py │ ├── form.py │ ├── list.py │ └── website.py │ └── widgets.py ├── manage.py ├── media ├── avatar │ └── images │ │ ├── 13c2770a014db01dd084dedcb69e54f7.jpg │ │ ├── 13c2770a014db01dd084dedcb69e54f7_GSW1CJ0.jpg │ │ ├── 7.pic_hd.jpg │ │ ├── F2AD66BADA6BDC4E0E6BD3064CEEA8CA.png │ │ ├── avatar.png │ │ ├── avatar_4A6d3lq.png │ │ ├── avatar_4NezwBG.png │ │ ├── avatar_5hkkcOi.png │ │ ├── avatar_7CGvAFe.png │ │ ├── avatar_Ae899Bq.png │ │ ├── avatar_HBc5gE2.png │ │ ├── avatar_IHYC48b.png │ │ ├── avatar_K7wizCG.png │ │ ├── avatar_Sfq04Kp.png │ │ ├── avatar_ZXuCSrn.png │ │ ├── avatar_gxt6L1E.png │ │ └── avatar_iCNbFr4.png ├── blog │ └── images │ │ ├── carousel_1.jpg │ │ ├── carousel_1_1.jpg │ │ ├── carousel_1_2.jpg │ │ ├── carousel_1_9kM3Qgu.jpg │ │ ├── carousel_2.jpg │ │ ├── carousel_2_1.jpg │ │ ├── carousel_2_2.jpg │ │ ├── carousel_3.jpg │ │ ├── carousel_3_1.jpg │ │ ├── carousel_3_2.jpg │ │ ├── carousel_4.jpg │ │ ├── carousel_4_1.jpg │ │ └── carousel_4_2.jpg └── message │ └── files │ ├── carousel_3_2.jpg │ └── carousel_3_2_RchGqBC.jpg ├── requirements.txt └── utils ├── jwt_auth.py ├── permissions.py └── yunzhixun.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/.gitignore -------------------------------------------------------------------------------- /CpWebSourcePlatform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CpWebSourcePlatform/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/CpWebSourcePlatform/settings.py -------------------------------------------------------------------------------- /CpWebSourcePlatform/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/CpWebSourcePlatform/urls.py -------------------------------------------------------------------------------- /CpWebSourcePlatform/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/CpWebSourcePlatform/wsgi.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/README.md -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/__init__.py -------------------------------------------------------------------------------- /apps/blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/blog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/blog/admin.py -------------------------------------------------------------------------------- /apps/blog/adminx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/blog/adminx.py -------------------------------------------------------------------------------- /apps/blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/blog/apps.py -------------------------------------------------------------------------------- /apps/blog/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/blog/filters.py -------------------------------------------------------------------------------- /apps/blog/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/blog/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/blog/models.py -------------------------------------------------------------------------------- /apps/blog/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/blog/serializers.py -------------------------------------------------------------------------------- /apps/blog/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/blog/tests.py -------------------------------------------------------------------------------- /apps/blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/blog/views.py -------------------------------------------------------------------------------- /apps/user_operation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user_operation/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/user_operation/admin.py -------------------------------------------------------------------------------- /apps/user_operation/adminx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/user_operation/adminx.py -------------------------------------------------------------------------------- /apps/user_operation/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/user_operation/apps.py -------------------------------------------------------------------------------- /apps/user_operation/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/user_operation/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/user_operation/migrations/0002_auto_20180526_0633.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/user_operation/migrations/0002_auto_20180526_0633.py -------------------------------------------------------------------------------- /apps/user_operation/migrations/0003_userleavingmessage_subject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/user_operation/migrations/0003_userleavingmessage_subject.py -------------------------------------------------------------------------------- /apps/user_operation/migrations/0004_appprofile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/user_operation/migrations/0004_appprofile.py -------------------------------------------------------------------------------- /apps/user_operation/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/user_operation/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/user_operation/models.py -------------------------------------------------------------------------------- /apps/user_operation/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/user_operation/serializers.py -------------------------------------------------------------------------------- /apps/user_operation/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/user_operation/tests.py -------------------------------------------------------------------------------- /apps/user_operation/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/user_operation/views.py -------------------------------------------------------------------------------- /apps/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/users/admin.py -------------------------------------------------------------------------------- /apps/users/adminx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/users/adminx.py -------------------------------------------------------------------------------- /apps/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/users/apps.py -------------------------------------------------------------------------------- /apps/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/users/models.py -------------------------------------------------------------------------------- /apps/users/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/users/serializers.py -------------------------------------------------------------------------------- /apps/users/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/users/signals.py -------------------------------------------------------------------------------- /apps/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/users/tests.py -------------------------------------------------------------------------------- /apps/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/apps/users/views.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/commands.py -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/forms.py -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/models.py -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/readme.md -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/settings.py -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/UEditorSnapscreen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/UEditorSnapscreen.exe -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/charts.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/completeDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/completeDemo.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/editor_api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/editor_api.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/filterRuleDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/filterRuleDemo.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/highlightDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/highlightDemo.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/index.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/multiDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/multiDemo.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/renderInTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/renderInTable.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/resetDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/resetDemo.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/sectiondemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/sectiondemo.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/simpleDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/simpleDemo.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/sortableDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/sortableDemo.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/submitFormDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/submitFormDemo.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/textareaDemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/textareaDemo.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/_examples/uparsedemo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/_examples/uparsedemo.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/anchor/anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/anchor/anchor.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/charts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/charts.css -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/charts.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/charts/charts.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/emotion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/emotion.css -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/emotion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/emotion.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/emotion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/emotion.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/gmap/gmap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/gmap/gmap.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/help/help.css -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/help/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/help/help.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/help/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/help/help.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/image/image.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/image.css -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/image/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/image.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/image/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/image.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/internal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/internal.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/link/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/link/link.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/map/map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/map/map.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/map/show.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/map/show.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/music/music.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/music/music.css -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/music/music.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/music/music.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/music/music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/music/music.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/preview/preview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/preview/preview.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/scrawl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/scrawl.css -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/scrawl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/scrawl.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/scrawl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/scrawl/scrawl.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/spechars/spechars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/spechars/spechars.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/table/edittable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/table/edittable.css -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/table/edittable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/table/edittable.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/table/edittable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/table/edittable.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/table/edittd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/table/edittd.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/table/edittip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/table/edittip.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/template/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/config.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/template/template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/template.css -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/template/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/template/template.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/video.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/video.css -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/video.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/video/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/video/video.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/webapp/webapp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/webapp/webapp.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/dialogs/wordimage/tangram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/dialogs/wordimage/tangram.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/index.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/lang/en/en.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/lang/zh-cn/zh-cn.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/php/Uploader.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/php/Uploader.class.php -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/php/action_crawler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/php/action_crawler.php -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/php/action_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/php/action_list.php -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/php/action_upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/php/action_upload.php -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/php/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/php/config.json -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/php/controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/php/controller.php -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/default/dialogbase.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/themes/default/dialogbase.css -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/third-party/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/third-party/jquery-1.10.2.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/third-party/video-js/video.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/ueditor.all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/ueditor.all.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/ueditor.all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/ueditor.all.min.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/ueditor.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/ueditor.config.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/ueditor.parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/ueditor.parse.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/static/ueditor/ueditor.parse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/static/ueditor/ueditor.parse.min.js -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/templates/ueditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/templates/ueditor.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/templates/ueditor_old.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/templates/ueditor_old.html -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/test_try.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/test_try.py -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/urls.py -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/utils.py -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/views.py -------------------------------------------------------------------------------- /extra_apps/DjangoUeditor/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/DjangoUeditor/widgets.py -------------------------------------------------------------------------------- /extra_apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/__init__.py -------------------------------------------------------------------------------- /extra_apps/rest_framework_jwt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/rest_framework_jwt/__init__.py -------------------------------------------------------------------------------- /extra_apps/rest_framework_jwt/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/rest_framework_jwt/authentication.py -------------------------------------------------------------------------------- /extra_apps/rest_framework_jwt/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/rest_framework_jwt/compat.py -------------------------------------------------------------------------------- /extra_apps/rest_framework_jwt/locale/en_US/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/rest_framework_jwt/locale/en_US/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /extra_apps/rest_framework_jwt/models.py: -------------------------------------------------------------------------------- 1 | # Just to keep things like ./manage.py test happy 2 | -------------------------------------------------------------------------------- /extra_apps/rest_framework_jwt/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/rest_framework_jwt/serializers.py -------------------------------------------------------------------------------- /extra_apps/rest_framework_jwt/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/rest_framework_jwt/settings.py -------------------------------------------------------------------------------- /extra_apps/rest_framework_jwt/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/rest_framework_jwt/test.py -------------------------------------------------------------------------------- /extra_apps/rest_framework_jwt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/rest_framework_jwt/utils.py -------------------------------------------------------------------------------- /extra_apps/rest_framework_jwt/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/rest_framework_jwt/views.py -------------------------------------------------------------------------------- /extra_apps/social_core/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.7.0' 2 | -------------------------------------------------------------------------------- /extra_apps/social_core/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/actions.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_apps/social_core/backends/amazon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/amazon.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/angel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/angel.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/aol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/aol.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/appsfuel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/appsfuel.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/arcgis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/arcgis.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/asana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/asana.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/azuread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/azuread.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/azuread_b2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/azuread_b2c.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/azuread_tenant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/azuread_tenant.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/base.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/battlenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/battlenet.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/beats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/beats.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/behance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/behance.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/belgiumeid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/belgiumeid.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/bitbucket.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/box.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/bungie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/bungie.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/changetip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/changetip.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/chatwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/chatwork.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/classlink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/classlink.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/clef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/clef.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/coding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/coding.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/coinbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/coinbase.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/coursera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/coursera.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/dailymotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/dailymotion.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/deezer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/deezer.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/digitalocean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/digitalocean.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/disqus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/disqus.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/docker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/docker.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/douban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/douban.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/dribbble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/dribbble.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/drip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/drip.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/dropbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/dropbox.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/echosign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/echosign.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/edmodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/edmodo.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/email.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/eventbrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/eventbrite.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/eveonline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/eveonline.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/evernote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/evernote.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/exacttarget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/exacttarget.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/facebook.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/fedora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/fedora.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/fitbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/fitbit.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/five_hundred_px.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/five_hundred_px.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/flickr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/flickr.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/foursquare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/foursquare.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/gae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/gae.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/github.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/github_enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/github_enterprise.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/gitlab.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/goclio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/goclio.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/goclioeu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/goclioeu.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/google.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/google_openidconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/google_openidconnect.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/instagram.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/itembase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/itembase.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/jawbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/jawbone.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/justgiving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/justgiving.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/kakao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/kakao.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/khanacademy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/khanacademy.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/lastfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/lastfm.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/launchpad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/launchpad.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/legacy.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/line.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/linkedin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/linkedin.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/live.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/livejournal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/livejournal.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/loginradius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/loginradius.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/lyft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/lyft.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/mailchimp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/mailchimp.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/mailru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/mailru.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/mapmyfitness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/mapmyfitness.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/mediawiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/mediawiki.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/meetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/meetup.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/mendeley.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/mendeley.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/microsoft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/microsoft.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/mineid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/mineid.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/mixcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/mixcloud.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/monzo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/monzo.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/moves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/moves.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/nationbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/nationbuilder.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/naver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/naver.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/ngpvan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/ngpvan.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/nk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/nk.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/oauth.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/odnoklassniki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/odnoklassniki.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/open_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/open_id.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/open_id_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/open_id_connect.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/openshift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/openshift.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/openstreetmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/openstreetmap.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/orbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/orbi.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/orcid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/orcid.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/patreon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/patreon.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/persona.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/persona.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/phabricator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/phabricator.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/pinterest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/pinterest.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/pixelpin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/pixelpin.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/pocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/pocket.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/podio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/podio.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/professionali.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/professionali.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/pushbullet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/pushbullet.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/qiita.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/qiita.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/qq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/qq.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/quizlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/quizlet.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/rdio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/rdio.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/readability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/readability.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/reddit.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/runkeeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/runkeeper.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/salesforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/salesforce.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/saml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/saml.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/shimmering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/shimmering.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/shopify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/shopify.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/sketchfab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/sketchfab.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/skyrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/skyrock.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/slack.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/soundcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/soundcloud.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/spotify.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/stackoverflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/stackoverflow.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/steam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/steam.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/stocktwits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/stocktwits.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/strava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/strava.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/stripe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/stripe.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/suse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/suse.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/taobao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/taobao.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/thisismyjam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/thisismyjam.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/trello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/trello.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/tripit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/tripit.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/tumblr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/tumblr.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/twilio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/twilio.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/twitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/twitch.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/twitter.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/uber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/uber.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/ubuntu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/ubuntu.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/udata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/udata.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/untappd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/untappd.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/upwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/upwork.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/username.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/utils.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/vend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/vend.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/vimeo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/vimeo.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/vk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/vk.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/weibo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/weibo.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/weixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/weixin.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/withings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/withings.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/wunderlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/wunderlist.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/xing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/xing.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/yahoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/yahoo.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/yammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/yammer.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/yandex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/yandex.py -------------------------------------------------------------------------------- /extra_apps/social_core/backends/zotero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/backends/zotero.py -------------------------------------------------------------------------------- /extra_apps/social_core/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/exceptions.py -------------------------------------------------------------------------------- /extra_apps/social_core/pipeline/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/pipeline/__init__.py -------------------------------------------------------------------------------- /extra_apps/social_core/pipeline/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/pipeline/debug.py -------------------------------------------------------------------------------- /extra_apps/social_core/pipeline/disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/pipeline/disconnect.py -------------------------------------------------------------------------------- /extra_apps/social_core/pipeline/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/pipeline/mail.py -------------------------------------------------------------------------------- /extra_apps/social_core/pipeline/partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/pipeline/partial.py -------------------------------------------------------------------------------- /extra_apps/social_core/pipeline/social_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/pipeline/social_auth.py -------------------------------------------------------------------------------- /extra_apps/social_core/pipeline/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/pipeline/user.py -------------------------------------------------------------------------------- /extra_apps/social_core/pipeline/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/pipeline/utils.py -------------------------------------------------------------------------------- /extra_apps/social_core/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/storage.py -------------------------------------------------------------------------------- /extra_apps/social_core/store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/store.py -------------------------------------------------------------------------------- /extra_apps/social_core/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/strategy.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_apps/social_core/tests/actions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_apps/social_core/tests/actions/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/actions/actions.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/actions/test_associate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/actions/test_associate.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/actions/test_disconnect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/actions/test_disconnect.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/actions/test_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/actions/test_login.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/base.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/data/saml_response.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/data/saml_response.txt -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/legacy.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/oauth.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/open_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/open_id.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/open_id_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/open_id_connect.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_amazon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_amazon.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_angel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_angel.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_arcgis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_arcgis.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_asana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_asana.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_azuread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_azuread.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_azuread_b2c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_azuread_b2c.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_behance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_behance.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_bitbucket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_bitbucket.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_box.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_broken.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_broken.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_chatwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_chatwork.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_clef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_clef.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_coinbase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_coinbase.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_coursera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_coursera.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_dailymotion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_dailymotion.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_deezer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_deezer.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_digitalocean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_digitalocean.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_disqus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_disqus.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_dribbble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_dribbble.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_drip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_drip.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_dropbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_dropbox.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_dummy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_dummy.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_edmodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_edmodo.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_email.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_eventbrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_eventbrite.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_evernote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_evernote.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_facebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_facebook.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_fitbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_fitbit.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_five_hundred_px.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_five_hundred_px.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_flickr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_flickr.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_foursquare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_foursquare.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_github.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_github_enterprise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_github_enterprise.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_gitlab.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_google.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_instagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_instagram.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_itembase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_itembase.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_kakao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_kakao.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_khanacademy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_khanacademy.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_linkedin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_linkedin.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_live.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_livejournal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_livejournal.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_lyft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_lyft.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_mapmyfitness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_mapmyfitness.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_mineid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_mineid.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_mixcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_mixcloud.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_nationbuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_nationbuilder.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_naver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_naver.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_ngpvan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_ngpvan.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_orbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_orbi.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_patreon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_patreon.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_phabricator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_phabricator.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_pinterest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_pinterest.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_podio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_podio.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_qiita.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_qiita.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_quizlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_quizlet.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_readability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_readability.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_reddit.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_saml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_saml.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_sketchfab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_sketchfab.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_skyrock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_skyrock.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_slack.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_soundcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_soundcloud.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_spotify.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_stackoverflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_stackoverflow.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_steam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_steam.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_stocktwits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_stocktwits.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_strava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_strava.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_stripe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_stripe.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_taobao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_taobao.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_thisismyjam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_thisismyjam.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_tripit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_tripit.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_tumblr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_tumblr.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_twitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_twitch.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_twitter.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_uber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_uber.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_udata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_udata.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_upwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_upwork.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_username.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_utils.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_vk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_vk.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_wunderlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_wunderlist.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_xing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_xing.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_yahoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_yahoo.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_yammer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_yammer.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_yandex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_yandex.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/backends/test_zotero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/backends/test_zotero.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/models.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/pipeline.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/requirements-base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/requirements-base.txt -------------------------------------------------------------------------------- /extra_apps/social_core/tests/requirements-pypy.txt: -------------------------------------------------------------------------------- 1 | -r requirements-base.txt 2 | unittest2==0.5.1 3 | mock==1.0.1 4 | -------------------------------------------------------------------------------- /extra_apps/social_core/tests/requirements-python2.txt: -------------------------------------------------------------------------------- 1 | -r requirements-base.txt 2 | unittest2==0.5.1 3 | mock==1.0.1 4 | -------------------------------------------------------------------------------- /extra_apps/social_core/tests/requirements-python3.txt: -------------------------------------------------------------------------------- 1 | -r requirements-base.txt 2 | unittest2py3k==0.5.1 3 | -------------------------------------------------------------------------------- /extra_apps/social_core/tests/requirements.txt: -------------------------------------------------------------------------------- 1 | -r requirements-python2.txt 2 | -------------------------------------------------------------------------------- /extra_apps/social_core/tests/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/strategy.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/test_exceptions.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/test_partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/test_partial.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/test_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/test_pipeline.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/test_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/test_storage.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/test_utils.py -------------------------------------------------------------------------------- /extra_apps/social_core/tests/testkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/tests/testkey.pem -------------------------------------------------------------------------------- /extra_apps/social_core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_core/utils.py -------------------------------------------------------------------------------- /extra_apps/social_django/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/__init__.py -------------------------------------------------------------------------------- /extra_apps/social_django/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/admin.py -------------------------------------------------------------------------------- /extra_apps/social_django/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/compat.py -------------------------------------------------------------------------------- /extra_apps/social_django/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/config.py -------------------------------------------------------------------------------- /extra_apps/social_django/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/context_processors.py -------------------------------------------------------------------------------- /extra_apps/social_django/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/fields.py -------------------------------------------------------------------------------- /extra_apps/social_django/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/managers.py -------------------------------------------------------------------------------- /extra_apps/social_django/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/middleware.py -------------------------------------------------------------------------------- /extra_apps/social_django/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/migrations/0001_initial.py -------------------------------------------------------------------------------- /extra_apps/social_django/migrations/0002_add_related_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/migrations/0002_add_related_name.py -------------------------------------------------------------------------------- /extra_apps/social_django/migrations/0003_alter_email_max_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/migrations/0003_alter_email_max_length.py -------------------------------------------------------------------------------- /extra_apps/social_django/migrations/0004_auto_20160423_0400.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/migrations/0004_auto_20160423_0400.py -------------------------------------------------------------------------------- /extra_apps/social_django/migrations/0005_auto_20160727_2333.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/migrations/0005_auto_20160727_2333.py -------------------------------------------------------------------------------- /extra_apps/social_django/migrations/0006_partial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/migrations/0006_partial.py -------------------------------------------------------------------------------- /extra_apps/social_django/migrations/0007_code_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/migrations/0007_code_timestamp.py -------------------------------------------------------------------------------- /extra_apps/social_django/migrations/0008_partial_timestamp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/migrations/0008_partial_timestamp.py -------------------------------------------------------------------------------- /extra_apps/social_django/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_apps/social_django/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/models.py -------------------------------------------------------------------------------- /extra_apps/social_django/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/storage.py -------------------------------------------------------------------------------- /extra_apps/social_django/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/strategy.py -------------------------------------------------------------------------------- /extra_apps/social_django/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/urls.py -------------------------------------------------------------------------------- /extra_apps/social_django/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/utils.py -------------------------------------------------------------------------------- /extra_apps/social_django/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/social_django/views.py -------------------------------------------------------------------------------- /extra_apps/xadmin/.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/.tx/config -------------------------------------------------------------------------------- /extra_apps/xadmin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/__init__.py -------------------------------------------------------------------------------- /extra_apps/xadmin/adminx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/adminx.py -------------------------------------------------------------------------------- /extra_apps/xadmin/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/apps.py -------------------------------------------------------------------------------- /extra_apps/xadmin/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/filters.py -------------------------------------------------------------------------------- /extra_apps/xadmin/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/forms.py -------------------------------------------------------------------------------- /extra_apps/xadmin/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/layout.py -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/de_DE/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/de_DE/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/de_DE/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/de_DE/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/en/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/en/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/es_MX/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/es_MX/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/es_MX/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/es_MX/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/eu/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/eu/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/eu/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/eu/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/id_ID/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/id_ID/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/id_ID/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/id_ID/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/ja/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/ja/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/ja/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/ja/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/lt/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/lt/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/lt/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/lt/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/nl_NL/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/nl_NL/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/nl_NL/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/nl_NL/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/pl/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/pl/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/pt_BR/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/pt_BR/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/pt_BR/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/pt_BR/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/ru_RU/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/ru_RU/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/ru_RU/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/ru_RU/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/zh_Hans/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/zh_Hans/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /extra_apps/xadmin/locale/zh_Hans/LC_MESSAGES/djangojs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/locale/zh_Hans/LC_MESSAGES/djangojs.po -------------------------------------------------------------------------------- /extra_apps/xadmin/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/migrations/0001_initial.py -------------------------------------------------------------------------------- /extra_apps/xadmin/migrations/0002_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/migrations/0002_log.py -------------------------------------------------------------------------------- /extra_apps/xadmin/migrations/0003_auto_20160715_0100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/migrations/0003_auto_20160715_0100.py -------------------------------------------------------------------------------- /extra_apps/xadmin/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_apps/xadmin/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/models.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/__init__.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/actions.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/aggregation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/aggregation.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/ajax.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/auth.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/batch.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/bookmark.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/chart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/chart.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/comments.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/details.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/editable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/editable.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/export.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/filters.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/images.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/importexport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/importexport.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/inline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/inline.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/language.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/layout.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/mobile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/mobile.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/multiselect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/multiselect.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/passwords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/passwords.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/portal.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/quickfilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/quickfilter.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/quickform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/quickform.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/refresh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/refresh.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/relate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/relate.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/relfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/relfield.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/sitemenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/sitemenu.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/sortablelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/sortablelist.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/themes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/themes.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/topnav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/topnav.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/utils.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/wizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/wizard.py -------------------------------------------------------------------------------- /extra_apps/xadmin/plugins/xversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/plugins/xversion.py -------------------------------------------------------------------------------- /extra_apps/xadmin/sites.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/sites.py -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/component.json -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/themes/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/themes/bootstrap-theme.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/themes/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/themes/bootstrap-theme.min.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/themes/bootstrap-xadmin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/themes/bootstrap-xadmin.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/xadmin.form.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/xadmin.main.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/xadmin.mobile.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.page.dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/xadmin.page.dashboard.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.plugin.aggregation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/xadmin.plugin.aggregation.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.plugin.formset.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/xadmin.plugin.formset.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.plugin.importexport.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/xadmin.plugin.importexport.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.plugin.quickfilter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/xadmin.plugin.quickfilter.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.plugins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/xadmin.plugins.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/xadmin.responsive.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.widget.editable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/xadmin.widget.editable.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/css/xadmin.widget.select-transfer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/css/xadmin.widget.select-transfer.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.main.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.page.dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.page.dashboard.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.page.form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.page.form.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.page.list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.page.list.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.actions.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.batch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.batch.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.bookmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.bookmark.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.charts.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.details.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.editable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.editable.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.filters.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.formset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.formset.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.importexport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.importexport.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.portal.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.quick-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.quick-form.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.quickfilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.quickfilter.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.refresh.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.revision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.revision.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.sortablelist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.sortablelist.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.plugin.themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.plugin.themes.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.responsive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.responsive.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.widget.datetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.widget.datetime.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.widget.multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.widget.multiselect.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.widget.select-transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.widget.select-transfer.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/js/xadmin.widget.select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/js/xadmin.widget.select.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/autotype/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/autotype/index.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/bootstrap-multiselect/css/bootstrap-multiselect.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/excanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/excanvas.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/excanvas.min.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.colorhelpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.colorhelpers.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.aggregate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.aggregate.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.canvas.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.categories.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.crosshair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.crosshair.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.errorbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.errorbars.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.image.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.navigate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.navigate.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.resize.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.selection.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.stack.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.symbol.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.threshold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.threshold.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/flot/jquery.flot.time.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/jquery-ui/jquery.ui.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/jquery-ui/jquery.ui.core.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/jquery-ui/jquery.ui.effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/jquery-ui/jquery.ui.effect.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/jquery-ui/jquery.ui.mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/jquery-ui/jquery.ui.mouse.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/jquery-ui/jquery.ui.widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/jquery-ui/jquery.ui.widget.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/load-image/load-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/load-image/load-image.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/load-image/load-image.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/load-image/load-image.min.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2-spinner.gif -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2.min.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2.png -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_de.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_en.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_es.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_eu.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_fr.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_hr.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_hu.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_it.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_nl.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_ro.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_ru.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2_locale_sk.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/select2/select2x2.png -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/selectize/selectize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/selectize/selectize.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/selectize/selectize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/selectize/selectize.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/selectize/selectize.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/selectize/selectize.min.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/snapjs/snap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/snapjs/snap.css -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/snapjs/snap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/snapjs/snap.js -------------------------------------------------------------------------------- /extra_apps/xadmin/static/xadmin/vendor/snapjs/snap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/static/xadmin/vendor/snapjs/snap.min.js -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/404.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/500.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/auth/password_reset/done.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/auth/password_reset/done.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/auth/password_reset/email.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/auth/password_reset/email.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/auth/password_reset/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/auth/password_reset/form.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/auth/user/add_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/auth/user/add_form.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/auth/user/change_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/auth/user/change_password.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/base.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/base_site.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/blocks/comm.top.setlang.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/blocks/comm.top.setlang.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/blocks/comm.top.theme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/blocks/comm.top.theme.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/blocks/comm.top.topnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/blocks/comm.top.topnav.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/edit_inline/accordion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/edit_inline/accordion.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/edit_inline/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/edit_inline/base.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/edit_inline/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/edit_inline/blank.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/edit_inline/one.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/edit_inline/one.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/edit_inline/stacked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/edit_inline/stacked.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/edit_inline/tab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/edit_inline/tab.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/edit_inline/tabular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/edit_inline/tabular.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/filters/char.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/filters/char.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/filters/checklist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/filters/checklist.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/filters/date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/filters/date.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/filters/fk_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/filters/fk_search.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/filters/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/filters/list.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/filters/number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/filters/number.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/filters/quickfilter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/filters/quickfilter.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/filters/rel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/filters/rel.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/forms/transfer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/forms/transfer.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/grids/thumbnails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/grids/thumbnails.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/import_export/import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/import_export/import.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/includes/box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/includes/box.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/includes/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/includes/pagination.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/includes/sitemenu_default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/includes/sitemenu_default.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/includes/submit_line.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/includes/submit_line.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/includes/toggle_back.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/includes/toggle_back.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/includes/toggle_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/includes/toggle_menu.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/layout/field_value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/layout/field_value.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/layout/field_value_td.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/layout/field_value_td.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/layout/fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/layout/fieldset.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/layout/input_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/layout/input_group.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/layout/td-field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/layout/td-field.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/app_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/app_index.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/batch_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/batch_change_form.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/dashboard.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/form.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/invalid_setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/invalid_setup.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/logged_out.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/logged_out.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/login.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/model_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/model_dashboard.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/model_delete_confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/model_delete_confirm.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/model_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/model_detail.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/model_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/model_form.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/model_history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/model_history.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/model_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/model_list.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/quick_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/quick_detail.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/quick_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/quick_form.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/recover_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/recover_form.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/recover_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/recover_list.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/revision_diff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/revision_diff.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/views/revision_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/views/revision_form.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/widgets/addform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/widgets/addform.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/widgets/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/widgets/base.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/widgets/chart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/widgets/chart.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/widgets/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/widgets/list.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templates/xadmin/widgets/qbutton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templates/xadmin/widgets/qbutton.html -------------------------------------------------------------------------------- /extra_apps/xadmin/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_apps/xadmin/templatetags/xadmin_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/templatetags/xadmin_tags.py -------------------------------------------------------------------------------- /extra_apps/xadmin/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/util.py -------------------------------------------------------------------------------- /extra_apps/xadmin/vendors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/vendors.py -------------------------------------------------------------------------------- /extra_apps/xadmin/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/views/__init__.py -------------------------------------------------------------------------------- /extra_apps/xadmin/views/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/views/base.py -------------------------------------------------------------------------------- /extra_apps/xadmin/views/dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/views/dashboard.py -------------------------------------------------------------------------------- /extra_apps/xadmin/views/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/views/delete.py -------------------------------------------------------------------------------- /extra_apps/xadmin/views/detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/views/detail.py -------------------------------------------------------------------------------- /extra_apps/xadmin/views/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/views/edit.py -------------------------------------------------------------------------------- /extra_apps/xadmin/views/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/views/form.py -------------------------------------------------------------------------------- /extra_apps/xadmin/views/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/views/list.py -------------------------------------------------------------------------------- /extra_apps/xadmin/views/website.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/views/website.py -------------------------------------------------------------------------------- /extra_apps/xadmin/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/extra_apps/xadmin/widgets.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/manage.py -------------------------------------------------------------------------------- /media/avatar/images/13c2770a014db01dd084dedcb69e54f7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/13c2770a014db01dd084dedcb69e54f7.jpg -------------------------------------------------------------------------------- /media/avatar/images/13c2770a014db01dd084dedcb69e54f7_GSW1CJ0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/13c2770a014db01dd084dedcb69e54f7_GSW1CJ0.jpg -------------------------------------------------------------------------------- /media/avatar/images/7.pic_hd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/7.pic_hd.jpg -------------------------------------------------------------------------------- /media/avatar/images/F2AD66BADA6BDC4E0E6BD3064CEEA8CA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/F2AD66BADA6BDC4E0E6BD3064CEEA8CA.png -------------------------------------------------------------------------------- /media/avatar/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/avatar.png -------------------------------------------------------------------------------- /media/avatar/images/avatar_4A6d3lq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/avatar_4A6d3lq.png -------------------------------------------------------------------------------- /media/avatar/images/avatar_4NezwBG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/avatar_4NezwBG.png -------------------------------------------------------------------------------- /media/avatar/images/avatar_5hkkcOi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/avatar_5hkkcOi.png -------------------------------------------------------------------------------- /media/avatar/images/avatar_7CGvAFe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/avatar_7CGvAFe.png -------------------------------------------------------------------------------- /media/avatar/images/avatar_Ae899Bq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/avatar_Ae899Bq.png -------------------------------------------------------------------------------- /media/avatar/images/avatar_HBc5gE2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/avatar_HBc5gE2.png -------------------------------------------------------------------------------- /media/avatar/images/avatar_IHYC48b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/avatar_IHYC48b.png -------------------------------------------------------------------------------- /media/avatar/images/avatar_K7wizCG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/avatar_K7wizCG.png -------------------------------------------------------------------------------- /media/avatar/images/avatar_Sfq04Kp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/avatar_Sfq04Kp.png -------------------------------------------------------------------------------- /media/avatar/images/avatar_ZXuCSrn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/avatar_ZXuCSrn.png -------------------------------------------------------------------------------- /media/avatar/images/avatar_gxt6L1E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/avatar_gxt6L1E.png -------------------------------------------------------------------------------- /media/avatar/images/avatar_iCNbFr4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/avatar/images/avatar_iCNbFr4.png -------------------------------------------------------------------------------- /media/blog/images/carousel_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/blog/images/carousel_1.jpg -------------------------------------------------------------------------------- /media/blog/images/carousel_1_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/blog/images/carousel_1_1.jpg -------------------------------------------------------------------------------- /media/blog/images/carousel_1_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/blog/images/carousel_1_2.jpg -------------------------------------------------------------------------------- /media/blog/images/carousel_1_9kM3Qgu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/blog/images/carousel_1_9kM3Qgu.jpg -------------------------------------------------------------------------------- /media/blog/images/carousel_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/blog/images/carousel_2.jpg -------------------------------------------------------------------------------- /media/blog/images/carousel_2_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/blog/images/carousel_2_1.jpg -------------------------------------------------------------------------------- /media/blog/images/carousel_2_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/blog/images/carousel_2_2.jpg -------------------------------------------------------------------------------- /media/blog/images/carousel_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/blog/images/carousel_3.jpg -------------------------------------------------------------------------------- /media/blog/images/carousel_3_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/blog/images/carousel_3_1.jpg -------------------------------------------------------------------------------- /media/blog/images/carousel_3_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/blog/images/carousel_3_2.jpg -------------------------------------------------------------------------------- /media/blog/images/carousel_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/blog/images/carousel_4.jpg -------------------------------------------------------------------------------- /media/blog/images/carousel_4_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/blog/images/carousel_4_1.jpg -------------------------------------------------------------------------------- /media/blog/images/carousel_4_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/blog/images/carousel_4_2.jpg -------------------------------------------------------------------------------- /media/message/files/carousel_3_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/message/files/carousel_3_2.jpg -------------------------------------------------------------------------------- /media/message/files/carousel_3_2_RchGqBC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/media/message/files/carousel_3_2_RchGqBC.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/jwt_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/utils/jwt_auth.py -------------------------------------------------------------------------------- /utils/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/utils/permissions.py -------------------------------------------------------------------------------- /utils/yunzhixun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10086XIAOZHANG/CpWebSourcePlatform/HEAD/utils/yunzhixun.py --------------------------------------------------------------------------------