实例介绍
实现功能有:登陆注册,留言、回复(含N次回复,因示例项目的原因,这里实现了2次回复,但要实现QQ空间的说说那样也简单!)、删除留言、留言评论、删除评论、分页、后台管理(超级用户)。等等剩下的自己去看吧
【实例截图】
【核心代码】
django留言板
└── webapp
├── __init__.py
├── __init__.pyc
├── apacheconf
│ ├── apache_django_wsgi.conf
│ └── django.wsgi
├── manage.py
├── manage.pyc
├── messageboard
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── admin.py
│ ├── admin.pyc
│ ├── forms.py
│ ├── forms.pyc
│ ├── models.py
│ ├── models.pyc
│ ├── templates
│ │ ├── 404.html
│ │ ├── 500.html
│ │ ├── base.html
│ │ ├── comments
│ │ │ ├── delete_success.html
│ │ │ ├── form.html
│ │ │ └── posted.html
│ │ ├── media
│ │ │ ├── css
│ │ │ │ ├── base.css
│ │ │ │ ├── changelists.css
│ │ │ │ ├── dashboard.css
│ │ │ │ ├── forms.css
│ │ │ │ ├── ie.css
│ │ │ │ ├── login.css
│ │ │ │ ├── rtl.css
│ │ │ │ └── widgets.css
│ │ │ ├── img
│ │ │ │ ├── admin
│ │ │ │ │ ├── arrow-down.gif
│ │ │ │ │ ├── arrow-up.gif
│ │ │ │ │ ├── changelist-bg.gif
│ │ │ │ │ ├── changelist-bg_rtl.gif
│ │ │ │ │ ├── chooser-bg.gif
│ │ │ │ │ ├── chooser_stacked-bg.gif
│ │ │ │ │ ├── default-bg-reverse.gif
│ │ │ │ │ ├── default-bg.gif
│ │ │ │ │ ├── deleted-overlay.gif
│ │ │ │ │ ├── icon-no.gif
│ │ │ │ │ ├── icon-unknown.gif
│ │ │ │ │ ├── icon-yes.gif
│ │ │ │ │ ├── icon_addlink.gif
│ │ │ │ │ ├── icon_alert.gif
│ │ │ │ │ ├── icon_calendar.gif
│ │ │ │ │ ├── icon_changelink.gif
│ │ │ │ │ ├── icon_clock.gif
│ │ │ │ │ ├── icon_deletelink.gif
│ │ │ │ │ ├── icon_error.gif
│ │ │ │ │ ├── icon_searchbox.png
│ │ │ │ │ ├── icon_success.gif
│ │ │ │ │ ├── inline-delete-8bit.png
│ │ │ │ │ ├── inline-delete.png
│ │ │ │ │ ├── inline-restore-8bit.png
│ │ │ │ │ ├── inline-restore.png
│ │ │ │ │ ├── inline-splitter-bg.gif
│ │ │ │ │ ├── nav-bg-grabber.gif
│ │ │ │ │ ├── nav-bg-reverse.gif
│ │ │ │ │ ├── nav-bg.gif
│ │ │ │ │ ├── selector-add.gif
│ │ │ │ │ ├── selector-addall.gif
│ │ │ │ │ ├── selector-remove.gif
│ │ │ │ │ ├── selector-removeall.gif
│ │ │ │ │ ├── selector-search.gif
│ │ │ │ │ ├── selector_stacked-add.gif
│ │ │ │ │ ├── selector_stacked-remove.gif
│ │ │ │ │ ├── tool-left.gif
│ │ │ │ │ ├── tool-left_over.gif
│ │ │ │ │ ├── tool-right.gif
│ │ │ │ │ ├── tool-right_over.gif
│ │ │ │ │ ├── tooltag-add.gif
│ │ │ │ │ ├── tooltag-add_over.gif
│ │ │ │ │ ├── tooltag-arrowright.gif
│ │ │ │ │ └── tooltag-arrowright_over.gif
│ │ │ │ └── gis
│ │ │ │ ├── move_vertex_off.png
│ │ │ │ └── move_vertex_on.png
│ │ │ └── js
│ │ │ ├── LICENSE-JQUERY.txt
│ │ │ ├── SelectBox.js
│ │ │ ├── SelectFilter2.js
│ │ │ ├── actions.js
│ │ │ ├── actions.min.js
│ │ │ ├── admin
│ │ │ │ ├── DateTimeShortcuts.js
│ │ │ │ ├── RelatedObjectLookups.js
│ │ │ │ └── ordering.js
│ │ │ ├── calendar.js
│ │ │ ├── collapse.js
│ │ │ ├── collapse.min.js
│ │ │ ├── compress.py
│ │ │ ├── compress.pyc
│ │ │ ├── core.js
│ │ │ ├── dateparse.js
│ │ │ ├── getElementsBySelector.js
│ │ │ ├── inlines.js
│ │ │ ├── inlines.min.js
│ │ │ ├── jquery.init.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.min.js
│ │ │ ├── prepopulate.js
│ │ │ ├── prepopulate.min.js
│ │ │ ├── timeparse.js
│ │ │ └── urlify.js
│ │ ├── msg_detail_page.html
│ │ ├── msg_list.html
│ │ ├── msg_list_page.html
│ │ ├── msg_post_page.html
│ │ ├── paginator.html
│ │ ├── paginatorcmt.html
│ │ ├── registration
│ │ │ ├── jquery-1.7.2.js
│ │ │ ├── login.html
│ │ │ ├── password_change.html
│ │ │ ├── password_change_success.html
│ │ │ ├── password_reset_done.html
│ │ │ ├── password_reset_email.html
│ │ │ ├── password_reset_form.html
│ │ │ ├── register.html
│ │ │ └── register_success.html
│ │ ├── site_media
│ │ │ ├── bgimg
│ │ │ │ └── 1.jpg
│ │ │ ├── classes
│ │ │ │ ├── AddOnManager.js
│ │ │ │ ├── ControlManager.js
│ │ │ │ ├── Editor.Events.js
│ │ │ │ ├── Editor.js
│ │ │ │ ├── EditorCommands.js
│ │ │ │ ├── EditorManager.js
│ │ │ │ ├── EnterKey.js
│ │ │ │ ├── ForceBlocks.js
│ │ │ │ ├── Formatter.js
│ │ │ │ ├── LegacyInput.js
│ │ │ │ ├── Popup.js
│ │ │ │ ├── UndoManager.js
│ │ │ │ ├── WindowManager.js
│ │ │ │ ├── adapter
│ │ │ │ │ ├── jquery
│ │ │ │ │ │ ├── adapter.js
│ │ │ │ │ │ └── jquery.tinymce.js
│ │ │ │ │ └── prototype
│ │ │ │ │ └── adapter.js
│ │ │ │ ├── dom
│ │ │ │ │ ├── DOMUtils.js
│ │ │ │ │ ├── Element.js
│ │ │ │ │ ├── EventUtils.js
│ │ │ │ │ ├── Range.js
│ │ │ │ │ ├── RangeUtils.js
│ │ │ │ │ ├── ScriptLoader.js
│ │ │ │ │ ├── Selection.js
│ │ │ │ │ ├── Serializer.js
│ │ │ │ │ ├── Sizzle.js
│ │ │ │ │ ├── TreeWalker.js
│ │ │ │ │ └── TridentSelection.js
│ │ │ │ ├── firebug
│ │ │ │ │ ├── FIREBUG.LICENSE
│ │ │ │ │ └── firebug-lite.js
│ │ │ │ ├── html
│ │ │ │ │ ├── DomParser.js
│ │ │ │ │ ├── Entities.js
│ │ │ │ │ ├── Node.js
│ │ │ │ │ ├── SaxParser.js
│ │ │ │ │ ├── Schema.js
│ │ │ │ │ ├── Serializer.js
│ │ │ │ │ ├── Styles.js
│ │ │ │ │ └── Writer.js
│ │ │ │ ├── tinymce.js
│ │ │ │ ├── ui
│ │ │ │ │ ├── Button.js
│ │ │ │ │ ├── ColorSplitButton.js
│ │ │ │ │ ├── Container.js
│ │ │ │ │ ├── Control.js
│ │ │ │ │ ├── DropMenu.js
│ │ │ │ │ ├── KeyboardNavigation.js
│ │ │ │ │ ├── ListBox.js
│ │ │ │ │ ├── Menu.js
│ │ │ │ │ ├── MenuButton.js
│ │ │ │ │ ├── MenuItem.js
│ │ │ │ │ ├── NativeListBox.js
│ │ │ │ │ ├── Separator.js
│ │ │ │ │ ├── SplitButton.js
│ │ │ │ │ ├── Toolbar.js
│ │ │ │ │ └── ToolbarGroup.js
│ │ │ │ └── util
│ │ │ │ ├── Cookie.js
│ │ │ │ ├── Dispatcher.js
│ │ │ │ ├── JSON.js
│ │ │ │ ├── JSONP.js
│ │ │ │ ├── JSONRequest.js
│ │ │ │ ├── Quirks.js
│ │ │ │ ├── URI.js
│ │ │ │ ├── VK.js
│ │ │ │ └── XHR.js
│ │ │ ├── jquery.tinymce.js
│ │ │ ├── langs
│ │ │ │ ├── en.js
│ │ │ │ └── zh.js
│ │ │ ├── license.txt
│ │ │ ├── plugins
│ │ │ │ ├── advhr
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── advhr.css
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── js
│ │ │ │ │ │ └── rule.js
│ │ │ │ │ ├── langs
│ │ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ │ └── zh_dlg.js
│ │ │ │ │ └── rule.htm
│ │ │ │ ├── advimage
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── advimage.css
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── image.htm
│ │ │ │ │ ├── img
│ │ │ │ │ │ └── sample.gif
│ │ │ │ │ ├── js
│ │ │ │ │ │ └── image.js
│ │ │ │ │ └── langs
│ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ └── zh_dlg.js
│ │ │ │ ├── advlink
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── advlink.css
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── js
│ │ │ │ │ │ └── advlink.js
│ │ │ │ │ ├── langs
│ │ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ │ └── zh_dlg.js
│ │ │ │ │ └── link.htm
│ │ │ │ ├── advlist
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── autolink
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── autoresize
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── autosave
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── bbcode
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── contextmenu
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── directionality
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── emotions
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── emotions.htm
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── smiley-cool.gif
│ │ │ │ │ │ ├── smiley-cry.gif
│ │ │ │ │ │ ├── smiley-embarassed.gif
│ │ │ │ │ │ ├── smiley-foot-in-mouth.gif
│ │ │ │ │ │ ├── smiley-frown.gif
│ │ │ │ │ │ ├── smiley-innocent.gif
│ │ │ │ │ │ ├── smiley-kiss.gif
│ │ │ │ │ │ ├── smiley-laughing.gif
│ │ │ │ │ │ ├── smiley-money-mouth.gif
│ │ │ │ │ │ ├── smiley-sealed.gif
│ │ │ │ │ │ ├── smiley-smile.gif
│ │ │ │ │ │ ├── smiley-surprised.gif
│ │ │ │ │ │ ├── smiley-tongue-out.gif
│ │ │ │ │ │ ├── smiley-undecided.gif
│ │ │ │ │ │ ├── smiley-wink.gif
│ │ │ │ │ │ └── smiley-yell.gif
│ │ │ │ │ ├── js
│ │ │ │ │ │ └── emotions.js
│ │ │ │ │ └── langs
│ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ └── zh_dlg.js
│ │ │ │ ├── example
│ │ │ │ │ ├── dialog.htm
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── img
│ │ │ │ │ │ └── example.gif
│ │ │ │ │ ├── js
│ │ │ │ │ │ └── dialog.js
│ │ │ │ │ └── langs
│ │ │ │ │ ├── en.js
│ │ │ │ │ └── en_dlg.js
│ │ │ │ ├── example_dependency
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── fullpage
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── fullpage.css
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── fullpage.htm
│ │ │ │ │ ├── js
│ │ │ │ │ │ └── fullpage.js
│ │ │ │ │ └── langs
│ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ └── zh_dlg.js
│ │ │ │ ├── fullscreen
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ └── fullscreen.htm
│ │ │ │ ├── iespell
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── inlinepopups
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── skins
│ │ │ │ │ │ └── clearlooks2
│ │ │ │ │ │ ├── img
│ │ │ │ │ │ │ ├── alert.gif
│ │ │ │ │ │ │ ├── button.gif
│ │ │ │ │ │ │ ├── buttons.gif
│ │ │ │ │ │ │ ├── confirm.gif
│ │ │ │ │ │ │ ├── corners.gif
│ │ │ │ │ │ │ ├── horizontal.gif
│ │ │ │ │ │ │ └── vertical.gif
│ │ │ │ │ │ └── window.css
│ │ │ │ │ └── template.htm
│ │ │ │ ├── insertdatetime
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── layer
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── legacyoutput
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── lists
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── media
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── media.css
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── js
│ │ │ │ │ │ ├── embed.js
│ │ │ │ │ │ └── media.js
│ │ │ │ │ ├── langs
│ │ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ │ └── zh_dlg.js
│ │ │ │ │ ├── media.htm
│ │ │ │ │ └── moxieplayer.swf
│ │ │ │ ├── nonbreaking
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── noneditable
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── pagebreak
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── paste
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── js
│ │ │ │ │ │ ├── pastetext.js
│ │ │ │ │ │ └── pasteword.js
│ │ │ │ │ ├── langs
│ │ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ │ └── zh_dlg.js
│ │ │ │ │ ├── pastetext.htm
│ │ │ │ │ └── pasteword.htm
│ │ │ │ ├── preview
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── example.html
│ │ │ │ │ ├── jscripts
│ │ │ │ │ │ └── embed.js
│ │ │ │ │ └── preview.html
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── save
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── searchreplace
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── searchreplace.css
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── js
│ │ │ │ │ │ └── searchreplace.js
│ │ │ │ │ ├── langs
│ │ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ │ └── zh_dlg.js
│ │ │ │ │ └── searchreplace.htm
│ │ │ │ ├── spellchecker
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── content.css
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ └── img
│ │ │ │ │ └── wline.gif
│ │ │ │ ├── style
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── props.css
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── js
│ │ │ │ │ │ └── props.js
│ │ │ │ │ ├── langs
│ │ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ │ └── zh_dlg.js
│ │ │ │ │ ├── props.htm
│ │ │ │ │ └── readme.txt
│ │ │ │ ├── tabfocus
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── table
│ │ │ │ │ ├── cell.htm
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── cell.css
│ │ │ │ │ │ ├── row.css
│ │ │ │ │ │ └── table.css
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── js
│ │ │ │ │ │ ├── cell.js
│ │ │ │ │ │ ├── merge_cells.js
│ │ │ │ │ │ ├── row.js
│ │ │ │ │ │ └── table.js
│ │ │ │ │ ├── langs
│ │ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ │ └── zh_dlg.js
│ │ │ │ │ ├── merge_cells.htm
│ │ │ │ │ ├── row.htm
│ │ │ │ │ └── table.htm
│ │ │ │ ├── template
│ │ │ │ │ ├── blank.htm
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── template.css
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ ├── editor_plugin_src.js
│ │ │ │ │ ├── js
│ │ │ │ │ │ └── template.js
│ │ │ │ │ ├── langs
│ │ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ │ └── zh_dlg.js
│ │ │ │ │ └── template.htm
│ │ │ │ ├── visualblocks
│ │ │ │ │ ├── css
│ │ │ │ │ │ └── visualblocks.css
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── visualchars
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ ├── wordcount
│ │ │ │ │ ├── editor_plugin.js
│ │ │ │ │ └── editor_plugin_src.js
│ │ │ │ └── xhtmlxtras
│ │ │ │ ├── abbr.htm
│ │ │ │ ├── acronym.htm
│ │ │ │ ├── attributes.htm
│ │ │ │ ├── cite.htm
│ │ │ │ ├── css
│ │ │ │ │ ├── attributes.css
│ │ │ │ │ └── popup.css
│ │ │ │ ├── del.htm
│ │ │ │ ├── editor_plugin.js
│ │ │ │ ├── editor_plugin_src.js
│ │ │ │ ├── ins.htm
│ │ │ │ ├── js
│ │ │ │ │ ├── abbr.js
│ │ │ │ │ ├── acronym.js
│ │ │ │ │ ├── attributes.js
│ │ │ │ │ ├── cite.js
│ │ │ │ │ ├── del.js
│ │ │ │ │ ├── element_common.js
│ │ │ │ │ └── ins.js
│ │ │ │ └── langs
│ │ │ │ ├── en_dlg.js
│ │ │ │ └── zh_dlg.js
│ │ │ ├── style.css
│ │ │ ├── themes
│ │ │ │ ├── advanced
│ │ │ │ │ ├── about.htm
│ │ │ │ │ ├── anchor.htm
│ │ │ │ │ ├── charmap.htm
│ │ │ │ │ ├── color_picker.htm
│ │ │ │ │ ├── editor_template.js
│ │ │ │ │ ├── editor_template_src.js
│ │ │ │ │ ├── image.htm
│ │ │ │ │ ├── img
│ │ │ │ │ │ ├── colorpicker.jpg
│ │ │ │ │ │ ├── flash.gif
│ │ │ │ │ │ ├── icons.gif
│ │ │ │ │ │ ├── iframe.gif
│ │ │ │ │ │ ├── pagebreak.gif
│ │ │ │ │ │ ├── quicktime.gif
│ │ │ │ │ │ ├── realmedia.gif
│ │ │ │ │ │ ├── shockwave.gif
│ │ │ │ │ │ ├── trans.gif
│ │ │ │ │ │ ├── video.gif
│ │ │ │ │ │ └── windowsmedia.gif
│ │ │ │ │ ├── js
│ │ │ │ │ │ ├── about.js
│ │ │ │ │ │ ├── anchor.js
│ │ │ │ │ │ ├── charmap.js
│ │ │ │ │ │ ├── color_picker.js
│ │ │ │ │ │ ├── image.js
│ │ │ │ │ │ ├── link.js
│ │ │ │ │ │ └── source_editor.js
│ │ │ │ │ ├── langs
│ │ │ │ │ │ ├── en.js
│ │ │ │ │ │ ├── en_dlg.js
│ │ │ │ │ │ ├── zh.js
│ │ │ │ │ │ └── zh_dlg.js
│ │ │ │ │ ├── link.htm
│ │ │ │ │ ├── shortcuts.htm
│ │ │ │ │ ├── skins
│ │ │ │ │ │ ├── default
│ │ │ │ │ │ │ ├── content.css
│ │ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ │ ├── img
│ │ │ │ │ │ │ │ ├── buttons.png
│ │ │ │ │ │ │ │ ├── items.gif
│ │ │ │ │ │ │ │ ├── menu_arrow.gif
│ │ │ │ │ │ │ │ ├── menu_check.gif
│ │ │ │ │ │ │ │ ├── progress.gif
│ │ │ │ │ │ │ │ └── tabs.gif
│ │ │ │ │ │ │ └── ui.css
│ │ │ │ │ │ ├── highcontrast
│ │ │ │ │ │ │ ├── content.css
│ │ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ │ └── ui.css
│ │ │ │ │ │ └── o2k7
│ │ │ │ │ │ ├── content.css
│ │ │ │ │ │ ├── dialog.css
│ │ │ │ │ │ ├── img
│ │ │ │ │ │ │ ├── button_bg.png
│ │ │ │ │ │ │ ├── button_bg_black.png
│ │ │ │ │ │ │ └── button_bg_silver.png
│ │ │ │ │ │ ├── ui.css
│ │ │ │ │ │ ├── ui_black.css
│ │ │ │ │ │ └── ui_silver.css
│ │ │ │ │ └── source_editor.htm
│ │ │ │ └── simple
│ │ │ │ ├── editor_template.js
│ │ │ │ ├── editor_template_src.js
│ │ │ │ ├── img
│ │ │ │ │ └── icons.gif
│ │ │ │ ├── langs
│ │ │ │ │ ├── en.js
│ │ │ │ │ └── zh.js
│ │ │ │ └── skins
│ │ │ │ ├── default
│ │ │ │ │ ├── content.css
│ │ │ │ │ └── ui.css
│ │ │ │ └── o2k7
│ │ │ │ ├── content.css
│ │ │ │ ├── img
│ │ │ │ │ └── button_bg.png
│ │ │ │ └── ui.css
│ │ │ ├── tiny_mce.js
│ │ │ ├── tiny_mce_dev.js
│ │ │ ├── tiny_mce_jquery.js
│ │ │ ├── tiny_mce_jquery_src.js
│ │ │ ├── tiny_mce_popup.js
│ │ │ ├── tiny_mce_prototype.js
│ │ │ ├── tiny_mce_prototype_src.js
│ │ │ ├── tiny_mce_src.js
│ │ │ └── utils
│ │ │ ├── editable_selects.js
│ │ │ ├── form_utils.js
│ │ │ ├── mctabs.js
│ │ │ └── validate.js
│ │ └── user_msg_list_page.html
│ ├── tests.py
│ ├── tests.pyc
│ ├── views.py
│ └── views.pyc
├── settings.py
├── settings.pyc
├── urls.py
└── urls.pyc
130 directories, 465 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论