实例介绍
【实例简介】Django Web开发指南-书中实例的源代码,基于python3.4.2 django1.7.1
文件清单
└── pythonworkspace
├── cms
│ ├── cms
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── settings.py
│ │ ├── settings.pyc
│ │ ├── templates
│ │ │ └── flatpages
│ │ │ └── default.html
│ │ ├── urls.py
│ │ ├── urls.pyc
│ │ ├── wsgi.py
│ │ └── wsgi.pyc
│ ├── db.sqlite3
│ └── manage.py
├── cmsproject
│ ├── cms
│ │ ├── admin.py
│ │ ├── admin.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0001_initial.pyc
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ └── __pycache__
│ │ │ ├── 0001_initial.cpython-34.pyc
│ │ │ └── __init__.cpython-34.pyc
│ │ ├── models.py
│ │ ├── models.pyc
│ │ ├── __pycache__
│ │ │ ├── admin.cpython-34.pyc
│ │ │ ├── __init__.cpython-34.pyc
│ │ │ ├── models.cpython-34.pyc
│ │ │ ├── urls.cpython-34.pyc
│ │ │ └── views.cpython-34.pyc
│ │ ├── templates
│ │ │ └── cms
│ │ │ ├── base.html
│ │ │ ├── story_detail.html
│ │ │ └── story_list.html
│ │ ├── tests.py
│ │ ├── urls.py
│ │ ├── urls.pyc
│ │ ├── views.py
│ │ └── views.pyc
│ ├── cmsproject
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-34.pyc
│ │ │ ├── settings.cpython-34.pyc
│ │ │ ├── urls.cpython-34.pyc
│ │ │ └── wsgi.cpython-34.pyc
│ │ ├── settings.py
│ │ ├── settings.pyc
│ │ ├── urls.py
│ │ ├── urls.pyc
│ │ ├── wsgi.py
│ │ └── wsgi.pyc
│ ├── db.sqlite3
│ ├── __init__.py
│ └── manage.py
├── django-goflow
│ ├── django-goflow.wpr
│ ├── django-goflow.wpu
│ ├── docs
│ │ ├── Makefile
│ │ ├── presentations
│ │ │ ├── goflow.odp
│ │ │ └── goflow.ppt
│ │ └── source
│ │ ├── changes.rst
│ │ ├── conf.py
│ │ ├── credits.rst
│ │ ├── definitions.rst
│ │ ├── faq.rst
│ │ ├── glossary.rst
│ │ ├── history.rst
│ │ ├── images
│ │ │ ├── admin1.png
│ │ │ ├── admin2.png
│ │ │ ├── admin3.png
│ │ │ ├── admin4.png
│ │ │ ├── admin5.png
│ │ │ ├── and-join.png
│ │ │ ├── and-split.png
│ │ │ ├── auto1.png
│ │ │ ├── auto2.png
│ │ │ ├── auto3.png
│ │ │ ├── auto4.png
│ │ │ ├── bubblesarrows.gif
│ │ │ ├── image1.png
│ │ │ ├── joinsplitmode.gif
│ │ │ ├── unittest1.png
│ │ │ ├── unittest2.png
│ │ │ ├── unittest3.png
│ │ │ ├── unittest4.png
│ │ │ ├── unittest5.png
│ │ │ ├── unittest6.png
│ │ │ ├── whowhatwhenhow.gif
│ │ │ ├── xor-join.png
│ │ │ └── xor-split.png
│ │ ├── index.rst
│ │ ├── install.rst
│ │ ├── license.rst
│ │ ├── modules
│ │ │ ├── gen_modules.py
│ │ │ ├── goflow.graphics2.models.rst
│ │ │ ├── goflow.graphics2.rst
│ │ │ ├── goflow.graphics2.views.rst
│ │ │ ├── goflow.graphics.models.rst
│ │ │ ├── goflow.graphics.rst
│ │ │ ├── goflow.graphics.urls_admin.rst
│ │ │ ├── goflow.graphics.views.rst
│ │ │ ├── goflow.instances.api.rst
│ │ │ ├── goflow.instances.forms.rst
│ │ │ ├── goflow.instances.models.rst
│ │ │ ├── goflow.instances.rst
│ │ │ ├── goflow.instances.urls_admin.rst
│ │ │ ├── goflow.instances.urls.rst
│ │ │ ├── goflow.instances.views.rst
│ │ │ ├── goflow.rst
│ │ │ ├── goflow.workflow.api.rst
│ │ │ ├── goflow.workflow.applications.rst
│ │ │ ├── goflow.workflow.decorators.rst
│ │ │ ├── goflow.workflow.forms.rst
│ │ │ ├── goflow.workflow.logger.rst
│ │ │ ├── goflow.workflow.models.rst
│ │ │ ├── goflow.workflow.notification.rst
│ │ │ ├── goflow.workflow.pushapps.rst
│ │ │ ├── goflow.workflow.rst
│ │ │ ├── goflow.workflow.views.rst
│ │ │ └── index.rst
│ │ ├── overview.rst
│ │ ├── patterns.rst
│ │ └── tutorials.rst
│ ├── goflow
│ │ ├── apptools
│ │ │ ├── admin.py
│ │ │ ├── fixtures
│ │ │ │ └── initial_data.json
│ │ │ ├── forms.py
│ │ │ ├── __init__.py
│ │ │ ├── models.py
│ │ │ ├── templates
│ │ │ │ ├── admin
│ │ │ │ │ ├── apptools
│ │ │ │ │ │ └── icon
│ │ │ │ │ │ └── change_list.html
│ │ │ │ │ └── workflow
│ │ │ │ │ ├── application
│ │ │ │ │ │ └── change_form.html
│ │ │ │ │ ├── pushapplication
│ │ │ │ │ │ └── change_form.html
│ │ │ │ │ └── transition
│ │ │ │ │ └── change_list.html
│ │ │ │ └── goflow
│ │ │ │ ├── app_sendmail.txt
│ │ │ │ ├── apptools
│ │ │ │ │ ├── edit_form.html
│ │ │ │ │ ├── input_buttons.html
│ │ │ │ │ └── input_images.html
│ │ │ │ ├── default_app.html
│ │ │ │ ├── edit_model.html
│ │ │ │ ├── edit_model_image.html
│ │ │ │ ├── start_application.html
│ │ │ │ ├── start_proto.html
│ │ │ │ ├── test_start.html
│ │ │ │ ├── view_application.html
│ │ │ │ └── view_application_image.html
│ │ │ ├── templatetags
│ │ │ │ ├── apptools_lib.py
│ │ │ │ └── __init__.py
│ │ │ ├── urls_admin.py
│ │ │ ├── urls.py
│ │ │ └── views.py
│ │ ├── graphics
│ │ │ ├── __init__.py
│ │ │ ├── js
│ │ │ │ ├── external.txt
│ │ │ │ ├── Thumbs.db
│ │ │ │ ├── tip_centerwindow.js
│ │ │ │ ├── tip_followscroll.js
│ │ │ │ ├── transparentpixel.gif
│ │ │ │ ├── wz_dragdrop.js
│ │ │ │ └── wz_tooltip.js
│ │ │ ├── models.py
│ │ │ ├── templates
│ │ │ │ └── goflow
│ │ │ │ └── graphics
│ │ │ │ └── graph.html
│ │ │ ├── urls_admin.py
│ │ │ ├── urls.py
│ │ │ └── views.py
│ │ ├── graphics2
│ │ │ ├── __init__.py
│ │ │ ├── models.py
│ │ │ ├── templates
│ │ │ │ └── admin
│ │ │ │ └── graphics2
│ │ │ │ └── processimage
│ │ │ │ └── change_form.html
│ │ │ ├── templatetags
│ │ │ │ ├── __init__.py
│ │ │ │ └── libjs.py
│ │ │ ├── urls_admin.py
│ │ │ └── views.py
│ │ ├── __init__.py
│ │ ├── runtime
│ │ │ ├── admin.py
│ │ │ ├── __init__.py
│ │ │ ├── models.py
│ │ │ ├── reporting.py
│ │ │ ├── templates
│ │ │ │ ├── admin
│ │ │ │ │ └── index.html
│ │ │ │ └── goflow
│ │ │ │ ├── instancehistory.html
│ │ │ │ ├── mail.txt
│ │ │ │ ├── myrequests.html
│ │ │ │ ├── mywork.html
│ │ │ │ ├── otherswork.html
│ │ │ │ └── workitems.html
│ │ │ ├── templatetags
│ │ │ │ ├── __init__.py
│ │ │ │ └── work_lib.py
│ │ │ └── views.py
│ │ ├── urls.py
│ │ └── workflow
│ │ ├── admin.py
│ │ ├── decorators.py
│ │ ├── doc
│ │ │ ├── OpenFlowIntroduction_fichiers
│ │ │ │ ├── bubblesarrows.gif
│ │ │ │ ├── joinsplitmode.gif
│ │ │ │ ├── Thumbs.db
│ │ │ │ ├── whowhatwhenhow.gif
│ │ │ │ └── ZWikiPage_icon.gif
│ │ │ └── OpenFlowIntroduction.html
│ │ ├── fixtures
│ │ │ └── initial_data.json
│ │ ├── __init__.py
│ │ ├── LICENSE
│ │ ├── logger.py
│ │ ├── models.py
│ │ ├── notification.py
│ │ ├── pushapps.py
│ │ ├── templates
│ │ │ ├── admin
│ │ │ │ ├── instances
│ │ │ │ │ └── defaultappmodel
│ │ │ │ │ └── change_form.html
│ │ │ │ └── workflow
│ │ │ │ ├── activity
│ │ │ │ │ └── change_form.html
│ │ │ │ ├── application
│ │ │ │ │ ├── change_form.html
│ │ │ │ │ └── change_list.html
│ │ │ │ ├── process
│ │ │ │ │ └── change_form.html
│ │ │ │ └── pushapplication
│ │ │ │ └── change_form.html
│ │ │ ├── goflow
│ │ │ │ ├── base.html
│ │ │ │ ├── base_site.html
│ │ │ │ ├── login.html
│ │ │ │ └── process.dot
│ │ │ └── workflow
│ │ │ └── index.html
│ │ ├── templatetags
│ │ │ ├── debug_goflow.py
│ │ │ └── __init__.py
│ │ └── views.py
│ ├── INSTALL.TXT
│ ├── leave
│ │ └── django.fcgi
│ ├── leavedemo
│ │ ├── db.sqlite3
│ │ ├── dump_data.bat
│ │ ├── __init__.py
│ │ ├── leave
│ │ │ ├── admin.py
│ │ │ ├── auto.py
│ │ │ ├── fixtures
│ │ │ │ └── initial_data.json
│ │ │ ├── forms.py
│ │ │ ├── __init__.py
│ │ │ ├── models.py
│ │ │ ├── pushapplications.py
│ │ │ ├── __pycache__
│ │ │ │ ├── admin.cpython-34.pyc
│ │ │ │ ├── auto.cpython-34.pyc
│ │ │ │ ├── forms.cpython-34.pyc
│ │ │ │ ├── __init__.cpython-34.pyc
│ │ │ │ ├── models.cpython-34.pyc
│ │ │ │ └── views.cpython-34.pyc
│ │ │ ├── readme.txt
│ │ │ ├── templates
│ │ │ │ ├── approval.html
│ │ │ │ ├── checkstatus.html
│ │ │ │ ├── finalinfo.html
│ │ │ │ ├── hrform.html
│ │ │ │ ├── leave.html
│ │ │ │ ├── leaverequest.html
│ │ │ │ ├── refine.html
│ │ │ │ └── start_leave.html
│ │ │ ├── tests.py
│ │ │ └── views.py
│ │ ├── manage.py
│ │ ├── media
│ │ │ ├── files
│ │ │ │ └── images
│ │ │ │ └── leave_workflow.png
│ │ │ └── img
│ │ │ ├── apptools.png
│ │ │ ├── leaveactivities.png
│ │ │ ├── leave.png
│ │ │ ├── runtime.png
│ │ │ ├── Thumbs.db
│ │ │ └── workflow.png
│ │ ├── modelviz.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-34.pyc
│ │ │ ├── settings.cpython-34.pyc
│ │ │ ├── urls.cpython-34.pyc
│ │ │ └── wsgi.cpython-34.pyc
│ │ ├── settings.py
│ │ ├── static
│ │ │ └── files
│ │ │ └── admin
│ │ │ ├── css
│ │ │ │ ├── base.css
│ │ │ │ ├── changelists.css
│ │ │ │ ├── dashboard.css
│ │ │ │ ├── forms.css
│ │ │ │ ├── ie.css
│ │ │ │ ├── login.css
│ │ │ │ ├── rtl.css
│ │ │ │ └── widgets.css
│ │ │ ├── img
│ │ │ │ ├── changelist-bg.gif
│ │ │ │ ├── changelist-bg_rtl.gif
│ │ │ │ ├── default-bg.gif
│ │ │ │ ├── default-bg-reverse.gif
│ │ │ │ ├── deleted-overlay.gif
│ │ │ │ ├── gis
│ │ │ │ │ ├── move_vertex_off.png
│ │ │ │ │ └── move_vertex_on.png
│ │ │ │ ├── icon_addlink.gif
│ │ │ │ ├── icon_alert.gif
│ │ │ │ ├── icon_calendar.gif
│ │ │ │ ├── icon_changelink.gif
│ │ │ │ ├── icon_clock.gif
│ │ │ │ ├── icon_deletelink.gif
│ │ │ │ ├── icon_error.gif
│ │ │ │ ├── icon-no.gif
│ │ │ │ ├── icon_searchbox.png
│ │ │ │ ├── icon_success.gif
│ │ │ │ ├── icon-unknown.gif
│ │ │ │ ├── icon-yes.gif
│ │ │ │ ├── inline-delete-8bit.png
│ │ │ │ ├── inline-delete.png
│ │ │ │ ├── inline-restore-8bit.png
│ │ │ │ ├── inline-restore.png
│ │ │ │ ├── inline-splitter-bg.gif
│ │ │ │ ├── nav-bg.gif
│ │ │ │ ├── nav-bg-grabber.gif
│ │ │ │ ├── nav-bg-reverse.gif
│ │ │ │ ├── nav-bg-selected.gif
│ │ │ │ ├── selector-icons.gif
│ │ │ │ ├── selector-search.gif
│ │ │ │ ├── sorting-icons.gif
│ │ │ │ ├── tooltag-add.png
│ │ │ │ └── tooltag-arrowright.png
│ │ │ └── js
│ │ │ ├── actions.js
│ │ │ ├── actions.min.js
│ │ │ ├── admin
│ │ │ │ ├── DateTimeShortcuts.js
│ │ │ │ └── RelatedObjectLookups.js
│ │ │ ├── calendar.js
│ │ │ ├── collapse.js
│ │ │ ├── collapse.min.js
│ │ │ ├── core.js
│ │ │ ├── inlines.js
│ │ │ ├── inlines.min.js
│ │ │ ├── jquery.init.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.min.js
│ │ │ ├── LICENSE-JQUERY.txt
│ │ │ ├── prepopulate.js
│ │ │ ├── prepopulate.min.js
│ │ │ ├── SelectBox.js
│ │ │ ├── SelectFilter2.js
│ │ │ ├── timeparse.js
│ │ │ └── urlify.js
│ │ ├── static_root
│ │ ├── syncdb.sh
│ │ ├── test.py
│ │ ├── urls.py
│ │ ├── workflow.log
│ │ └── wsgi.py
│ ├── licence.txt
│ ├── sampleproject
│ │ ├── dumpfixtures.bat
│ │ ├── initial_data.json
│ │ ├── __init__.py
│ │ ├── manage.py
│ │ ├── sampleapp
│ │ │ ├── admin.py
│ │ │ ├── forms.py
│ │ │ ├── __init__.py
│ │ │ ├── models.py
│ │ │ ├── pushapps.py
│ │ │ ├── templates
│ │ │ │ ├── en
│ │ │ │ │ └── sample
│ │ │ │ │ ├── home.html
│ │ │ │ │ ├── mywork.html
│ │ │ │ │ └── start.html
│ │ │ │ ├── minimalistic
│ │ │ │ │ └── base.html
│ │ │ │ └── sample
│ │ │ │ ├── choice.html
│ │ │ │ ├── edit.html
│ │ │ │ ├── home.html
│ │ │ │ ├── mywork.html
│ │ │ │ ├── sample_mail.txt
│ │ │ │ ├── start.html
│ │ │ │ └── view.html
│ │ │ ├── urls.py
│ │ │ └── views.py
│ │ ├── settings.py
│ │ ├── static
│ │ │ ├── flags
│ │ │ │ ├── flag_ar.jpg
│ │ │ │ ├── flag_de.jpg
│ │ │ │ ├── flag_en.jpg
│ │ │ │ ├── flag_es.jpg
│ │ │ │ ├── flag_fr.jpg
│ │ │ │ ├── flag_pl.jpg
│ │ │ │ └── flag_ro.jpg
│ │ │ ├── images
│ │ │ │ ├── 32px-crystal_clear_action_build.png
│ │ │ │ ├── 32px-crystal_clear_action_button_cancel_.png
│ │ │ │ ├── 32px-crystal_clear_action_edit_add.png
│ │ │ │ ├── 32px-crystal_clear_action_edit.png
│ │ │ │ ├── 32px-crystal_clear_action_edit_remove.png
│ │ │ │ ├── 32px-crystal_clear_action_exit.png
│ │ │ │ ├── 32px-crystal_clear_action_filenew.png
│ │ │ │ ├── 32px-crystal_clear_action_info.png
│ │ │ │ ├── 32px-crystal_clear_action_reload.png
│ │ │ │ ├── 32px-crystal_clear_action_stop.png
│ │ │ │ ├── 32px-crystal_clear_app_clean__.png
│ │ │ │ ├── 32px-crystal_clear_app_email.png
│ │ │ │ ├── 32px-crystal_clear_app_error.png
│ │ │ │ ├── 32px-crystal_clear_app_xmag.png
│ │ │ │ ├── 32px-crystal_clear_device_floppy_unmount.png
│ │ │ │ ├── crystal_clear_action_build.png
│ │ │ │ ├── crystal_clear_action_button_cancel_.png
│ │ │ │ ├── crystal_clear_action_edit_add.png
│ │ │ │ ├── crystal_clear_action_edit.png
│ │ │ │ ├── crystal_clear_action_edit_remove.png
│ │ │ │ ├── crystal_clear_action_exit.png
│ │ │ │ ├── crystal_clear_action_filenew.png
│ │ │ │ ├── crystal_clear_action_info.png
│ │ │ │ ├── crystal_clear_action_reload.png
│ │ │ │ ├── crystal_clear_action_stop.png
│ │ │ │ ├── crystal_clear_app_clean_.png
│ │ │ │ ├── crystal_clear_app_email.png
│ │ │ │ ├── crystal_clear_app_error.png
│ │ │ │ ├── crystal_clear_app_xmag.png
│ │ │ │ ├── crystal_clear_device_floppy_unmount.png
│ │ │ │ ├── sampleprocess_auto.png
│ │ │ │ ├── sampleprocess_choice.png
│ │ │ │ ├── sampleprocess_gedit.png
│ │ │ │ ├── sampleprocess.png
│ │ │ │ ├── sampleprocess_start.png
│ │ │ │ ├── sampleprocess_uedit.png
│ │ │ │ ├── sampleprocess_view.png
│ │ │ │ └── Thumbs.db
│ │ │ └── minimalistic
│ │ │ ├── djangopowered126x54.gif
│ │ │ ├── gpl.txt
│ │ │ ├── index.html
│ │ │ ├── LICENSE.txt
│ │ │ └── style.css
│ │ ├── svn.externals
│ │ └── urls.py
│ ├── scripts
│ │ ├── build_docs
│ │ ├── clean
│ │ ├── get_svn_leavedemo.sh
│ │ ├── leave_process_builder.py
│ │ ├── process_builder.py
│ │ ├── process_builder.pyc
│ │ └── reset
│ └── setup.py
├── gallery
│ ├── db.sqlite3
│ ├── gallery
│ │ ├── context_processors.py
│ │ ├── context_processors.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── __pycache__
│ │ │ ├── context_processors.cpython-34.pyc
│ │ │ ├── __init__.cpython-34.pyc
│ │ │ ├── real_urls.cpython-34.pyc
│ │ │ ├── settings.cpython-34.pyc
│ │ │ ├── urls.cpython-34.pyc
│ │ │ └── wsgi.cpython-34.pyc
│ │ ├── real_urls.py
│ │ ├── real_urls.pyc
│ │ ├── settings.py
│ │ ├── settings.pyc
│ │ ├── urls.py
│ │ ├── urls.pyc
│ │ ├── wsgi.py
│ │ └── wsgi.pyc
│ ├── items
│ │ ├── admin.py
│ │ ├── admin.pyc
│ │ ├── fields.py
│ │ ├── fields.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0001_initial.pyc
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ └── __pycache__
│ │ │ ├── 0001_initial.cpython-34.pyc
│ │ │ └── __init__.cpython-34.pyc
│ │ ├── models.py
│ │ ├── models.pyc
│ │ ├── __pycache__
│ │ │ ├── admin.cpython-34.pyc
│ │ │ ├── fields.cpython-34.pyc
│ │ │ ├── __init__.cpython-34.pyc
│ │ │ ├── models.cpython-34.pyc
│ │ │ ├── urls.cpython-34.pyc
│ │ │ └── views.cpython-34.pyc
│ │ ├── templates
│ │ │ ├── base.html
│ │ │ ├── index.html
│ │ │ ├── items_detail.html
│ │ │ ├── items_list.html
│ │ │ └── photos_detail.html
│ │ ├── tests.py
│ │ ├── urls.py
│ │ ├── urls.pyc
│ │ ├── views.py
│ │ └── views.pyc
│ ├── manage.py
│ └── media
│ └── photos
│ ├── 2.jpg
│ ├── 2.thumb.jpg
│ ├── WeChatImage635327527262275625_Ex6ZTEh.jpg
│ ├── WeChatImage635327527262275625_Ex6ZTEh.thumb.jpg
│ ├── WeChatImage635327527262275625.jpg
│ └── WeChatImage635327527262275625.thumb.jpg
├── liveproject
│ ├── db.sqlite3
│ ├── __init__.py
│ ├── liveproject
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-34.pyc
│ │ │ ├── settings.cpython-34.pyc
│ │ │ ├── urls.cpython-34.pyc
│ │ │ └── wsgi.cpython-34.pyc
│ │ ├── settings.py
│ │ ├── urls.py
│ │ └── wsgi.py
│ ├── liveupdate
│ │ ├── admin.py
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── __init__.py
│ │ │ └── __pycache__
│ │ │ ├── 0001_initial.cpython-34.pyc
│ │ │ └── __init__.cpython-34.pyc
│ │ ├── models.py
│ │ ├── __pycache__
│ │ │ ├── admin.cpython-34.pyc
│ │ │ ├── __init__.cpython-34.pyc
│ │ │ ├── models.cpython-34.pyc
│ │ │ ├── urls.cpython-34.pyc
│ │ │ └── views.cpython-34.pyc
│ │ ├── templates
│ │ │ └── update_list.html
│ │ ├── tests.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── manage.py
│ └── media
│ └── js
│ ├── jquery-1.11.1.min.js
│ └── jquery-2.1.1.min.js
├── mysite
│ ├── blog
│ │ ├── admin.py
│ │ ├── admin.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0001_initial.pyc
│ │ │ ├── __init__.py
│ │ │ └── __init__.pyc
│ │ ├── models.py
│ │ ├── models.pyc
│ │ ├── templates
│ │ │ ├── archive.html
│ │ │ └── base.html
│ │ ├── tests.py
│ │ ├── urls.py
│ │ ├── urls.pyc
│ │ ├── views.py
│ │ └── views.pyc
│ ├── db.sqlite3
│ ├── firsttest.wpr
│ ├── firsttest.wpu
│ ├── manage.py
│ └── mysite
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── settings.py
│ ├── settings.pyc
│ ├── urls.py
│ ├── urls.pyc
│ ├── wsgi.py
│ └── wsgi.pyc
├── pastebin
│ ├── cronjob.py
│ ├── db.sqlite3
│ ├── manage.py
│ └── pastebin
│ ├── __init__.py
│ ├── models.py
│ ├── __pycache__
│ │ ├── __init__.cpython-34.pyc
│ │ ├── models.cpython-34.pyc
│ │ ├── settings.cpython-34.pyc
│ │ ├── urls.cpython-34.pyc
│ │ └── wsgi.cpython-34.pyc
│ ├── settings.py
│ ├── templates
│ │ ├── 404.html
│ │ ├── base.html
│ │ └── pastebin
│ │ ├── paste_detail.html
│ │ ├── paste_form.html
│ │ └── paste_list.html
│ ├── urls.py
│ └── wsgi.py
└── pygraphviz
├── build
│ ├── lib.win32-3.4
│ │ └── pygraphviz
│ │ ├── agraph.py
│ │ ├── graphviz.py
│ │ ├── __init__.py
│ │ ├── release.py
│ │ ├── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_attribute_defaults.py
│ │ │ ├── test_attributes.py
│ │ │ ├── test_drawing.py
│ │ │ ├── test_edge_attributes.py
│ │ │ ├── test_graph.py
│ │ │ ├── test_html.py
│ │ │ ├── test_layout.py
│ │ │ ├── test_node_attributes.py
│ │ │ ├── test.py
│ │ │ ├── test_readwrite.py
│ │ │ ├── test_string.py
│ │ │ ├── test_subgraph.py
│ │ │ └── test_unicode.py
│ │ └── version.py
│ └── temp.win32-3.4
│ └── Release
│ └── pygraphviz
│ ├── _graphviz.def
│ ├── _graphviz.exp
│ ├── _graphviz.lib
│ ├── graphviz_wrap.o
│ └── graphviz_wrap.obj
├── doc
│ ├── gh-pages.py
│ ├── Makefile
│ ├── source
│ │ ├── conf.py
│ │ ├── download.rst
│ │ ├── examples.rst
│ │ ├── index.rst
│ │ ├── install.rst
│ │ ├── reference
│ │ │ ├── agraph.rst
│ │ │ ├── api_notes.rst
│ │ │ ├── credits.rst
│ │ │ ├── faq.rst
│ │ │ ├── history.rst
│ │ │ ├── index.rst
│ │ │ ├── legal.rst
│ │ │ ├── news.rst
│ │ │ └── related.rst
│ │ ├── static
│ │ │ └── empty.txt
│ │ ├── templates
│ │ │ ├── index.html
│ │ │ ├── indexsidebar.html
│ │ │ └── layout.html
│ │ └── tutorial.rst
│ └── sphinxext
│ └── only_directives.py
├── examples
│ ├── attributes.py
│ ├── django_simple.py
│ ├── miles_dat.txt.gz
│ ├── miles.py
│ ├── simple.py
│ ├── star.py
│ ├── subgraph.py
│ └── utf8_encoding.py
├── INSTALL.txt
├── MANIFEST.in
├── PKG-INFO
├── __pycache__
│ └── setup_extra.cpython-34.pyc
├── pygraphviz
│ ├── agraph.py
│ ├── graphviz.py
│ ├── graphviz_wrap.c
│ ├── __init__.py
│ ├── __pycache__
│ │ └── release.cpython-34.pyc
│ ├── release.py
│ ├── tests
│ │ ├── __init__.py
│ │ ├── test_attribute_defaults.py
│ │ ├── test_attributes.py
│ │ ├── test_drawing.py
│ │ ├── test_edge_attributes.py
│ │ ├── test_graph.py
│ │ ├── test_html.py
│ │ ├── test_layout.py
│ │ ├── test_node_attributes.py
│ │ ├── test.py
│ │ ├── test_readwrite.py
│ │ ├── test_string.py
│ │ ├── test_subgraph.py
│ │ └── test_unicode.py
│ └── version.py
├── README.txt
├── setup.cfg
├── setup_egg.py
├── setup_extra.py
└── setup.py
147 directories, 619 files
【实例截图】
文件清单
└── pythonworkspace
├── cms
│ ├── cms
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── settings.py
│ │ ├── settings.pyc
│ │ ├── templates
│ │ │ └── flatpages
│ │ │ └── default.html
│ │ ├── urls.py
│ │ ├── urls.pyc
│ │ ├── wsgi.py
│ │ └── wsgi.pyc
│ ├── db.sqlite3
│ └── manage.py
├── cmsproject
│ ├── cms
│ │ ├── admin.py
│ │ ├── admin.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0001_initial.pyc
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ └── __pycache__
│ │ │ ├── 0001_initial.cpython-34.pyc
│ │ │ └── __init__.cpython-34.pyc
│ │ ├── models.py
│ │ ├── models.pyc
│ │ ├── __pycache__
│ │ │ ├── admin.cpython-34.pyc
│ │ │ ├── __init__.cpython-34.pyc
│ │ │ ├── models.cpython-34.pyc
│ │ │ ├── urls.cpython-34.pyc
│ │ │ └── views.cpython-34.pyc
│ │ ├── templates
│ │ │ └── cms
│ │ │ ├── base.html
│ │ │ ├── story_detail.html
│ │ │ └── story_list.html
│ │ ├── tests.py
│ │ ├── urls.py
│ │ ├── urls.pyc
│ │ ├── views.py
│ │ └── views.pyc
│ ├── cmsproject
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-34.pyc
│ │ │ ├── settings.cpython-34.pyc
│ │ │ ├── urls.cpython-34.pyc
│ │ │ └── wsgi.cpython-34.pyc
│ │ ├── settings.py
│ │ ├── settings.pyc
│ │ ├── urls.py
│ │ ├── urls.pyc
│ │ ├── wsgi.py
│ │ └── wsgi.pyc
│ ├── db.sqlite3
│ ├── __init__.py
│ └── manage.py
├── django-goflow
│ ├── django-goflow.wpr
│ ├── django-goflow.wpu
│ ├── docs
│ │ ├── Makefile
│ │ ├── presentations
│ │ │ ├── goflow.odp
│ │ │ └── goflow.ppt
│ │ └── source
│ │ ├── changes.rst
│ │ ├── conf.py
│ │ ├── credits.rst
│ │ ├── definitions.rst
│ │ ├── faq.rst
│ │ ├── glossary.rst
│ │ ├── history.rst
│ │ ├── images
│ │ │ ├── admin1.png
│ │ │ ├── admin2.png
│ │ │ ├── admin3.png
│ │ │ ├── admin4.png
│ │ │ ├── admin5.png
│ │ │ ├── and-join.png
│ │ │ ├── and-split.png
│ │ │ ├── auto1.png
│ │ │ ├── auto2.png
│ │ │ ├── auto3.png
│ │ │ ├── auto4.png
│ │ │ ├── bubblesarrows.gif
│ │ │ ├── image1.png
│ │ │ ├── joinsplitmode.gif
│ │ │ ├── unittest1.png
│ │ │ ├── unittest2.png
│ │ │ ├── unittest3.png
│ │ │ ├── unittest4.png
│ │ │ ├── unittest5.png
│ │ │ ├── unittest6.png
│ │ │ ├── whowhatwhenhow.gif
│ │ │ ├── xor-join.png
│ │ │ └── xor-split.png
│ │ ├── index.rst
│ │ ├── install.rst
│ │ ├── license.rst
│ │ ├── modules
│ │ │ ├── gen_modules.py
│ │ │ ├── goflow.graphics2.models.rst
│ │ │ ├── goflow.graphics2.rst
│ │ │ ├── goflow.graphics2.views.rst
│ │ │ ├── goflow.graphics.models.rst
│ │ │ ├── goflow.graphics.rst
│ │ │ ├── goflow.graphics.urls_admin.rst
│ │ │ ├── goflow.graphics.views.rst
│ │ │ ├── goflow.instances.api.rst
│ │ │ ├── goflow.instances.forms.rst
│ │ │ ├── goflow.instances.models.rst
│ │ │ ├── goflow.instances.rst
│ │ │ ├── goflow.instances.urls_admin.rst
│ │ │ ├── goflow.instances.urls.rst
│ │ │ ├── goflow.instances.views.rst
│ │ │ ├── goflow.rst
│ │ │ ├── goflow.workflow.api.rst
│ │ │ ├── goflow.workflow.applications.rst
│ │ │ ├── goflow.workflow.decorators.rst
│ │ │ ├── goflow.workflow.forms.rst
│ │ │ ├── goflow.workflow.logger.rst
│ │ │ ├── goflow.workflow.models.rst
│ │ │ ├── goflow.workflow.notification.rst
│ │ │ ├── goflow.workflow.pushapps.rst
│ │ │ ├── goflow.workflow.rst
│ │ │ ├── goflow.workflow.views.rst
│ │ │ └── index.rst
│ │ ├── overview.rst
│ │ ├── patterns.rst
│ │ └── tutorials.rst
│ ├── goflow
│ │ ├── apptools
│ │ │ ├── admin.py
│ │ │ ├── fixtures
│ │ │ │ └── initial_data.json
│ │ │ ├── forms.py
│ │ │ ├── __init__.py
│ │ │ ├── models.py
│ │ │ ├── templates
│ │ │ │ ├── admin
│ │ │ │ │ ├── apptools
│ │ │ │ │ │ └── icon
│ │ │ │ │ │ └── change_list.html
│ │ │ │ │ └── workflow
│ │ │ │ │ ├── application
│ │ │ │ │ │ └── change_form.html
│ │ │ │ │ ├── pushapplication
│ │ │ │ │ │ └── change_form.html
│ │ │ │ │ └── transition
│ │ │ │ │ └── change_list.html
│ │ │ │ └── goflow
│ │ │ │ ├── app_sendmail.txt
│ │ │ │ ├── apptools
│ │ │ │ │ ├── edit_form.html
│ │ │ │ │ ├── input_buttons.html
│ │ │ │ │ └── input_images.html
│ │ │ │ ├── default_app.html
│ │ │ │ ├── edit_model.html
│ │ │ │ ├── edit_model_image.html
│ │ │ │ ├── start_application.html
│ │ │ │ ├── start_proto.html
│ │ │ │ ├── test_start.html
│ │ │ │ ├── view_application.html
│ │ │ │ └── view_application_image.html
│ │ │ ├── templatetags
│ │ │ │ ├── apptools_lib.py
│ │ │ │ └── __init__.py
│ │ │ ├── urls_admin.py
│ │ │ ├── urls.py
│ │ │ └── views.py
│ │ ├── graphics
│ │ │ ├── __init__.py
│ │ │ ├── js
│ │ │ │ ├── external.txt
│ │ │ │ ├── Thumbs.db
│ │ │ │ ├── tip_centerwindow.js
│ │ │ │ ├── tip_followscroll.js
│ │ │ │ ├── transparentpixel.gif
│ │ │ │ ├── wz_dragdrop.js
│ │ │ │ └── wz_tooltip.js
│ │ │ ├── models.py
│ │ │ ├── templates
│ │ │ │ └── goflow
│ │ │ │ └── graphics
│ │ │ │ └── graph.html
│ │ │ ├── urls_admin.py
│ │ │ ├── urls.py
│ │ │ └── views.py
│ │ ├── graphics2
│ │ │ ├── __init__.py
│ │ │ ├── models.py
│ │ │ ├── templates
│ │ │ │ └── admin
│ │ │ │ └── graphics2
│ │ │ │ └── processimage
│ │ │ │ └── change_form.html
│ │ │ ├── templatetags
│ │ │ │ ├── __init__.py
│ │ │ │ └── libjs.py
│ │ │ ├── urls_admin.py
│ │ │ └── views.py
│ │ ├── __init__.py
│ │ ├── runtime
│ │ │ ├── admin.py
│ │ │ ├── __init__.py
│ │ │ ├── models.py
│ │ │ ├── reporting.py
│ │ │ ├── templates
│ │ │ │ ├── admin
│ │ │ │ │ └── index.html
│ │ │ │ └── goflow
│ │ │ │ ├── instancehistory.html
│ │ │ │ ├── mail.txt
│ │ │ │ ├── myrequests.html
│ │ │ │ ├── mywork.html
│ │ │ │ ├── otherswork.html
│ │ │ │ └── workitems.html
│ │ │ ├── templatetags
│ │ │ │ ├── __init__.py
│ │ │ │ └── work_lib.py
│ │ │ └── views.py
│ │ ├── urls.py
│ │ └── workflow
│ │ ├── admin.py
│ │ ├── decorators.py
│ │ ├── doc
│ │ │ ├── OpenFlowIntroduction_fichiers
│ │ │ │ ├── bubblesarrows.gif
│ │ │ │ ├── joinsplitmode.gif
│ │ │ │ ├── Thumbs.db
│ │ │ │ ├── whowhatwhenhow.gif
│ │ │ │ └── ZWikiPage_icon.gif
│ │ │ └── OpenFlowIntroduction.html
│ │ ├── fixtures
│ │ │ └── initial_data.json
│ │ ├── __init__.py
│ │ ├── LICENSE
│ │ ├── logger.py
│ │ ├── models.py
│ │ ├── notification.py
│ │ ├── pushapps.py
│ │ ├── templates
│ │ │ ├── admin
│ │ │ │ ├── instances
│ │ │ │ │ └── defaultappmodel
│ │ │ │ │ └── change_form.html
│ │ │ │ └── workflow
│ │ │ │ ├── activity
│ │ │ │ │ └── change_form.html
│ │ │ │ ├── application
│ │ │ │ │ ├── change_form.html
│ │ │ │ │ └── change_list.html
│ │ │ │ ├── process
│ │ │ │ │ └── change_form.html
│ │ │ │ └── pushapplication
│ │ │ │ └── change_form.html
│ │ │ ├── goflow
│ │ │ │ ├── base.html
│ │ │ │ ├── base_site.html
│ │ │ │ ├── login.html
│ │ │ │ └── process.dot
│ │ │ └── workflow
│ │ │ └── index.html
│ │ ├── templatetags
│ │ │ ├── debug_goflow.py
│ │ │ └── __init__.py
│ │ └── views.py
│ ├── INSTALL.TXT
│ ├── leave
│ │ └── django.fcgi
│ ├── leavedemo
│ │ ├── db.sqlite3
│ │ ├── dump_data.bat
│ │ ├── __init__.py
│ │ ├── leave
│ │ │ ├── admin.py
│ │ │ ├── auto.py
│ │ │ ├── fixtures
│ │ │ │ └── initial_data.json
│ │ │ ├── forms.py
│ │ │ ├── __init__.py
│ │ │ ├── models.py
│ │ │ ├── pushapplications.py
│ │ │ ├── __pycache__
│ │ │ │ ├── admin.cpython-34.pyc
│ │ │ │ ├── auto.cpython-34.pyc
│ │ │ │ ├── forms.cpython-34.pyc
│ │ │ │ ├── __init__.cpython-34.pyc
│ │ │ │ ├── models.cpython-34.pyc
│ │ │ │ └── views.cpython-34.pyc
│ │ │ ├── readme.txt
│ │ │ ├── templates
│ │ │ │ ├── approval.html
│ │ │ │ ├── checkstatus.html
│ │ │ │ ├── finalinfo.html
│ │ │ │ ├── hrform.html
│ │ │ │ ├── leave.html
│ │ │ │ ├── leaverequest.html
│ │ │ │ ├── refine.html
│ │ │ │ └── start_leave.html
│ │ │ ├── tests.py
│ │ │ └── views.py
│ │ ├── manage.py
│ │ ├── media
│ │ │ ├── files
│ │ │ │ └── images
│ │ │ │ └── leave_workflow.png
│ │ │ └── img
│ │ │ ├── apptools.png
│ │ │ ├── leaveactivities.png
│ │ │ ├── leave.png
│ │ │ ├── runtime.png
│ │ │ ├── Thumbs.db
│ │ │ └── workflow.png
│ │ ├── modelviz.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-34.pyc
│ │ │ ├── settings.cpython-34.pyc
│ │ │ ├── urls.cpython-34.pyc
│ │ │ └── wsgi.cpython-34.pyc
│ │ ├── settings.py
│ │ ├── static
│ │ │ └── files
│ │ │ └── admin
│ │ │ ├── css
│ │ │ │ ├── base.css
│ │ │ │ ├── changelists.css
│ │ │ │ ├── dashboard.css
│ │ │ │ ├── forms.css
│ │ │ │ ├── ie.css
│ │ │ │ ├── login.css
│ │ │ │ ├── rtl.css
│ │ │ │ └── widgets.css
│ │ │ ├── img
│ │ │ │ ├── changelist-bg.gif
│ │ │ │ ├── changelist-bg_rtl.gif
│ │ │ │ ├── default-bg.gif
│ │ │ │ ├── default-bg-reverse.gif
│ │ │ │ ├── deleted-overlay.gif
│ │ │ │ ├── gis
│ │ │ │ │ ├── move_vertex_off.png
│ │ │ │ │ └── move_vertex_on.png
│ │ │ │ ├── icon_addlink.gif
│ │ │ │ ├── icon_alert.gif
│ │ │ │ ├── icon_calendar.gif
│ │ │ │ ├── icon_changelink.gif
│ │ │ │ ├── icon_clock.gif
│ │ │ │ ├── icon_deletelink.gif
│ │ │ │ ├── icon_error.gif
│ │ │ │ ├── icon-no.gif
│ │ │ │ ├── icon_searchbox.png
│ │ │ │ ├── icon_success.gif
│ │ │ │ ├── icon-unknown.gif
│ │ │ │ ├── icon-yes.gif
│ │ │ │ ├── inline-delete-8bit.png
│ │ │ │ ├── inline-delete.png
│ │ │ │ ├── inline-restore-8bit.png
│ │ │ │ ├── inline-restore.png
│ │ │ │ ├── inline-splitter-bg.gif
│ │ │ │ ├── nav-bg.gif
│ │ │ │ ├── nav-bg-grabber.gif
│ │ │ │ ├── nav-bg-reverse.gif
│ │ │ │ ├── nav-bg-selected.gif
│ │ │ │ ├── selector-icons.gif
│ │ │ │ ├── selector-search.gif
│ │ │ │ ├── sorting-icons.gif
│ │ │ │ ├── tooltag-add.png
│ │ │ │ └── tooltag-arrowright.png
│ │ │ └── js
│ │ │ ├── actions.js
│ │ │ ├── actions.min.js
│ │ │ ├── admin
│ │ │ │ ├── DateTimeShortcuts.js
│ │ │ │ └── RelatedObjectLookups.js
│ │ │ ├── calendar.js
│ │ │ ├── collapse.js
│ │ │ ├── collapse.min.js
│ │ │ ├── core.js
│ │ │ ├── inlines.js
│ │ │ ├── inlines.min.js
│ │ │ ├── jquery.init.js
│ │ │ ├── jquery.js
│ │ │ ├── jquery.min.js
│ │ │ ├── LICENSE-JQUERY.txt
│ │ │ ├── prepopulate.js
│ │ │ ├── prepopulate.min.js
│ │ │ ├── SelectBox.js
│ │ │ ├── SelectFilter2.js
│ │ │ ├── timeparse.js
│ │ │ └── urlify.js
│ │ ├── static_root
│ │ ├── syncdb.sh
│ │ ├── test.py
│ │ ├── urls.py
│ │ ├── workflow.log
│ │ └── wsgi.py
│ ├── licence.txt
│ ├── sampleproject
│ │ ├── dumpfixtures.bat
│ │ ├── initial_data.json
│ │ ├── __init__.py
│ │ ├── manage.py
│ │ ├── sampleapp
│ │ │ ├── admin.py
│ │ │ ├── forms.py
│ │ │ ├── __init__.py
│ │ │ ├── models.py
│ │ │ ├── pushapps.py
│ │ │ ├── templates
│ │ │ │ ├── en
│ │ │ │ │ └── sample
│ │ │ │ │ ├── home.html
│ │ │ │ │ ├── mywork.html
│ │ │ │ │ └── start.html
│ │ │ │ ├── minimalistic
│ │ │ │ │ └── base.html
│ │ │ │ └── sample
│ │ │ │ ├── choice.html
│ │ │ │ ├── edit.html
│ │ │ │ ├── home.html
│ │ │ │ ├── mywork.html
│ │ │ │ ├── sample_mail.txt
│ │ │ │ ├── start.html
│ │ │ │ └── view.html
│ │ │ ├── urls.py
│ │ │ └── views.py
│ │ ├── settings.py
│ │ ├── static
│ │ │ ├── flags
│ │ │ │ ├── flag_ar.jpg
│ │ │ │ ├── flag_de.jpg
│ │ │ │ ├── flag_en.jpg
│ │ │ │ ├── flag_es.jpg
│ │ │ │ ├── flag_fr.jpg
│ │ │ │ ├── flag_pl.jpg
│ │ │ │ └── flag_ro.jpg
│ │ │ ├── images
│ │ │ │ ├── 32px-crystal_clear_action_build.png
│ │ │ │ ├── 32px-crystal_clear_action_button_cancel_.png
│ │ │ │ ├── 32px-crystal_clear_action_edit_add.png
│ │ │ │ ├── 32px-crystal_clear_action_edit.png
│ │ │ │ ├── 32px-crystal_clear_action_edit_remove.png
│ │ │ │ ├── 32px-crystal_clear_action_exit.png
│ │ │ │ ├── 32px-crystal_clear_action_filenew.png
│ │ │ │ ├── 32px-crystal_clear_action_info.png
│ │ │ │ ├── 32px-crystal_clear_action_reload.png
│ │ │ │ ├── 32px-crystal_clear_action_stop.png
│ │ │ │ ├── 32px-crystal_clear_app_clean__.png
│ │ │ │ ├── 32px-crystal_clear_app_email.png
│ │ │ │ ├── 32px-crystal_clear_app_error.png
│ │ │ │ ├── 32px-crystal_clear_app_xmag.png
│ │ │ │ ├── 32px-crystal_clear_device_floppy_unmount.png
│ │ │ │ ├── crystal_clear_action_build.png
│ │ │ │ ├── crystal_clear_action_button_cancel_.png
│ │ │ │ ├── crystal_clear_action_edit_add.png
│ │ │ │ ├── crystal_clear_action_edit.png
│ │ │ │ ├── crystal_clear_action_edit_remove.png
│ │ │ │ ├── crystal_clear_action_exit.png
│ │ │ │ ├── crystal_clear_action_filenew.png
│ │ │ │ ├── crystal_clear_action_info.png
│ │ │ │ ├── crystal_clear_action_reload.png
│ │ │ │ ├── crystal_clear_action_stop.png
│ │ │ │ ├── crystal_clear_app_clean_.png
│ │ │ │ ├── crystal_clear_app_email.png
│ │ │ │ ├── crystal_clear_app_error.png
│ │ │ │ ├── crystal_clear_app_xmag.png
│ │ │ │ ├── crystal_clear_device_floppy_unmount.png
│ │ │ │ ├── sampleprocess_auto.png
│ │ │ │ ├── sampleprocess_choice.png
│ │ │ │ ├── sampleprocess_gedit.png
│ │ │ │ ├── sampleprocess.png
│ │ │ │ ├── sampleprocess_start.png
│ │ │ │ ├── sampleprocess_uedit.png
│ │ │ │ ├── sampleprocess_view.png
│ │ │ │ └── Thumbs.db
│ │ │ └── minimalistic
│ │ │ ├── djangopowered126x54.gif
│ │ │ ├── gpl.txt
│ │ │ ├── index.html
│ │ │ ├── LICENSE.txt
│ │ │ └── style.css
│ │ ├── svn.externals
│ │ └── urls.py
│ ├── scripts
│ │ ├── build_docs
│ │ ├── clean
│ │ ├── get_svn_leavedemo.sh
│ │ ├── leave_process_builder.py
│ │ ├── process_builder.py
│ │ ├── process_builder.pyc
│ │ └── reset
│ └── setup.py
├── gallery
│ ├── db.sqlite3
│ ├── gallery
│ │ ├── context_processors.py
│ │ ├── context_processors.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── __pycache__
│ │ │ ├── context_processors.cpython-34.pyc
│ │ │ ├── __init__.cpython-34.pyc
│ │ │ ├── real_urls.cpython-34.pyc
│ │ │ ├── settings.cpython-34.pyc
│ │ │ ├── urls.cpython-34.pyc
│ │ │ └── wsgi.cpython-34.pyc
│ │ ├── real_urls.py
│ │ ├── real_urls.pyc
│ │ ├── settings.py
│ │ ├── settings.pyc
│ │ ├── urls.py
│ │ ├── urls.pyc
│ │ ├── wsgi.py
│ │ └── wsgi.pyc
│ ├── items
│ │ ├── admin.py
│ │ ├── admin.pyc
│ │ ├── fields.py
│ │ ├── fields.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0001_initial.pyc
│ │ │ ├── __init__.py
│ │ │ ├── __init__.pyc
│ │ │ └── __pycache__
│ │ │ ├── 0001_initial.cpython-34.pyc
│ │ │ └── __init__.cpython-34.pyc
│ │ ├── models.py
│ │ ├── models.pyc
│ │ ├── __pycache__
│ │ │ ├── admin.cpython-34.pyc
│ │ │ ├── fields.cpython-34.pyc
│ │ │ ├── __init__.cpython-34.pyc
│ │ │ ├── models.cpython-34.pyc
│ │ │ ├── urls.cpython-34.pyc
│ │ │ └── views.cpython-34.pyc
│ │ ├── templates
│ │ │ ├── base.html
│ │ │ ├── index.html
│ │ │ ├── items_detail.html
│ │ │ ├── items_list.html
│ │ │ └── photos_detail.html
│ │ ├── tests.py
│ │ ├── urls.py
│ │ ├── urls.pyc
│ │ ├── views.py
│ │ └── views.pyc
│ ├── manage.py
│ └── media
│ └── photos
│ ├── 2.jpg
│ ├── 2.thumb.jpg
│ ├── WeChatImage635327527262275625_Ex6ZTEh.jpg
│ ├── WeChatImage635327527262275625_Ex6ZTEh.thumb.jpg
│ ├── WeChatImage635327527262275625.jpg
│ └── WeChatImage635327527262275625.thumb.jpg
├── liveproject
│ ├── db.sqlite3
│ ├── __init__.py
│ ├── liveproject
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-34.pyc
│ │ │ ├── settings.cpython-34.pyc
│ │ │ ├── urls.cpython-34.pyc
│ │ │ └── wsgi.cpython-34.pyc
│ │ ├── settings.py
│ │ ├── urls.py
│ │ └── wsgi.py
│ ├── liveupdate
│ │ ├── admin.py
│ │ ├── __init__.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── __init__.py
│ │ │ └── __pycache__
│ │ │ ├── 0001_initial.cpython-34.pyc
│ │ │ └── __init__.cpython-34.pyc
│ │ ├── models.py
│ │ ├── __pycache__
│ │ │ ├── admin.cpython-34.pyc
│ │ │ ├── __init__.cpython-34.pyc
│ │ │ ├── models.cpython-34.pyc
│ │ │ ├── urls.cpython-34.pyc
│ │ │ └── views.cpython-34.pyc
│ │ ├── templates
│ │ │ └── update_list.html
│ │ ├── tests.py
│ │ ├── urls.py
│ │ └── views.py
│ ├── manage.py
│ └── media
│ └── js
│ ├── jquery-1.11.1.min.js
│ └── jquery-2.1.1.min.js
├── mysite
│ ├── blog
│ │ ├── admin.py
│ │ ├── admin.pyc
│ │ ├── __init__.py
│ │ ├── __init__.pyc
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ ├── 0001_initial.pyc
│ │ │ ├── __init__.py
│ │ │ └── __init__.pyc
│ │ ├── models.py
│ │ ├── models.pyc
│ │ ├── templates
│ │ │ ├── archive.html
│ │ │ └── base.html
│ │ ├── tests.py
│ │ ├── urls.py
│ │ ├── urls.pyc
│ │ ├── views.py
│ │ └── views.pyc
│ ├── db.sqlite3
│ ├── firsttest.wpr
│ ├── firsttest.wpu
│ ├── manage.py
│ └── mysite
│ ├── __init__.py
│ ├── __init__.pyc
│ ├── settings.py
│ ├── settings.pyc
│ ├── urls.py
│ ├── urls.pyc
│ ├── wsgi.py
│ └── wsgi.pyc
├── pastebin
│ ├── cronjob.py
│ ├── db.sqlite3
│ ├── manage.py
│ └── pastebin
│ ├── __init__.py
│ ├── models.py
│ ├── __pycache__
│ │ ├── __init__.cpython-34.pyc
│ │ ├── models.cpython-34.pyc
│ │ ├── settings.cpython-34.pyc
│ │ ├── urls.cpython-34.pyc
│ │ └── wsgi.cpython-34.pyc
│ ├── settings.py
│ ├── templates
│ │ ├── 404.html
│ │ ├── base.html
│ │ └── pastebin
│ │ ├── paste_detail.html
│ │ ├── paste_form.html
│ │ └── paste_list.html
│ ├── urls.py
│ └── wsgi.py
└── pygraphviz
├── build
│ ├── lib.win32-3.4
│ │ └── pygraphviz
│ │ ├── agraph.py
│ │ ├── graphviz.py
│ │ ├── __init__.py
│ │ ├── release.py
│ │ ├── tests
│ │ │ ├── __init__.py
│ │ │ ├── test_attribute_defaults.py
│ │ │ ├── test_attributes.py
│ │ │ ├── test_drawing.py
│ │ │ ├── test_edge_attributes.py
│ │ │ ├── test_graph.py
│ │ │ ├── test_html.py
│ │ │ ├── test_layout.py
│ │ │ ├── test_node_attributes.py
│ │ │ ├── test.py
│ │ │ ├── test_readwrite.py
│ │ │ ├── test_string.py
│ │ │ ├── test_subgraph.py
│ │ │ └── test_unicode.py
│ │ └── version.py
│ └── temp.win32-3.4
│ └── Release
│ └── pygraphviz
│ ├── _graphviz.def
│ ├── _graphviz.exp
│ ├── _graphviz.lib
│ ├── graphviz_wrap.o
│ └── graphviz_wrap.obj
├── doc
│ ├── gh-pages.py
│ ├── Makefile
│ ├── source
│ │ ├── conf.py
│ │ ├── download.rst
│ │ ├── examples.rst
│ │ ├── index.rst
│ │ ├── install.rst
│ │ ├── reference
│ │ │ ├── agraph.rst
│ │ │ ├── api_notes.rst
│ │ │ ├── credits.rst
│ │ │ ├── faq.rst
│ │ │ ├── history.rst
│ │ │ ├── index.rst
│ │ │ ├── legal.rst
│ │ │ ├── news.rst
│ │ │ └── related.rst
│ │ ├── static
│ │ │ └── empty.txt
│ │ ├── templates
│ │ │ ├── index.html
│ │ │ ├── indexsidebar.html
│ │ │ └── layout.html
│ │ └── tutorial.rst
│ └── sphinxext
│ └── only_directives.py
├── examples
│ ├── attributes.py
│ ├── django_simple.py
│ ├── miles_dat.txt.gz
│ ├── miles.py
│ ├── simple.py
│ ├── star.py
│ ├── subgraph.py
│ └── utf8_encoding.py
├── INSTALL.txt
├── MANIFEST.in
├── PKG-INFO
├── __pycache__
│ └── setup_extra.cpython-34.pyc
├── pygraphviz
│ ├── agraph.py
│ ├── graphviz.py
│ ├── graphviz_wrap.c
│ ├── __init__.py
│ ├── __pycache__
│ │ └── release.cpython-34.pyc
│ ├── release.py
│ ├── tests
│ │ ├── __init__.py
│ │ ├── test_attribute_defaults.py
│ │ ├── test_attributes.py
│ │ ├── test_drawing.py
│ │ ├── test_edge_attributes.py
│ │ ├── test_graph.py
│ │ ├── test_html.py
│ │ ├── test_layout.py
│ │ ├── test_node_attributes.py
│ │ ├── test.py
│ │ ├── test_readwrite.py
│ │ ├── test_string.py
│ │ ├── test_subgraph.py
│ │ └── test_unicode.py
│ └── version.py
├── README.txt
├── setup.cfg
├── setup_egg.py
├── setup_extra.py
└── setup.py
147 directories, 619 files
好例子网口号:伸出你的我的手 — 分享!
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论