Projects tagged ‘django’ and ‘profile’


Jump to tag:

Projects tagged ‘django’ and ‘profile’

Filtered by Project Tags django profile

Refine results Project Tags user (1) forum (1) maps (1) avatar (1) jquery (1) registration (1) sql (1) javascript (1) imagefield (1) login (1) images (1)

[4 total ]

0 Users

简介这是一个用Django开发的论坛程序。 目前版本是0.1,目标是开发一款真正可重用的基于Django的论坛程序。 兼容Django 1.0版。 ... [More] 特性目前拥有特性如下: 用户系统,注册,登陆 发主题贴,发回复贴 可以进行用户设置,增加个性化信息 发贴使用了WYMeditor编辑器 设置方法这是一个可重用的app,可以直接放到你的project中作为一个app使用。 设置方法如下: 拷贝forum目录到你的project下 把forum/site_media下的styles目录拷贝到你的media目录中 把forum/templetes下的forum目录拷贝你的templetes目录中 把forum app加到你的project的settings.py文件中 在你的project的urls.py文件的urlpatterns中增加一行代码 (r'^forum/',include('yourproject.forum.urls')), 这样,forum应该就可以在你的project中跑起来了。 注意: media文件的url是'/site_media/'开头的 如果你是在Django自带服务器中测试的话,urls.py的urlpatterns中还必须加上下面这行代码,处理静态文件。 (r'^site_media/(?P.*)$','django.views.static.serve',{'document_root': MEDIA_ROOT}), [Less]
Created 12 months ago.

0 Users

A simple, pluggable Django application that adds support for user profile images. Documentation can be found here.
Created about 1 year ago.

0 Users

Records every SQL query in Django in the database so that you can find slow queries in your site.
Created 3 months ago.

0 Users

IntroductionThis is a Django pluggable user profile zone which can be used and customized easily in your social application web platform developed in django. It's developed with Django for the ... [More] backend framework and uses Jquery as the javascript library for the client UI. It avoids big amounts of development time process in such a generic thing as the User Profile and account utilities. News2008-09-24 Version 0.6 published. These are the most important changes: Version 0.6.0 Compatible with Django 1.0. Lot of simplifications. Removed the public/private user selection. It was confusing. Model abstraction with django model inheritance. Now the Profile class has been renamed BaseProfile. Thanks to Rob Yates and Alvaro Mouriño. Better management of avatars. New templatetag to generate thumbs on the fly. Thanks to Alvaro Mouriño. Password managament modified to use the new django password management utilities. Added internacionalization of the urls. Credits to Alvaro Stevens. 2008-07-21 The actual version on the SVN trunk is only compatible with the SVN version of Django. That's because newforms-admin has been merged into Django, newforms is the official forms library now, and this has a lot of implications that has been solved to make django-profile compatible with the new version of Django. 2008-07-21 Django-profile 0.5 was the last version compatible with django 0.96. The next version will only be compatible with Django 1.0. 2008-07-05 Version 0.5 published. This is the first mature version of django-profile. Lot of time has been spent on developing an pulishing the initial idea. Now there's no gratuit javascript code, the application usability has been increased, lot of improvements, etc. You're invited to try the demo and test it for yourself: http://profile.coredump.es CHANGELOG: CSS and HTML formatted with Blueprint CSS (http://code.google.com/p/blueprintcss/). Lot of code optimization of Django, HTML, CSS and Javascript. Great effort on application usability and template design. Removed every javascript effectism not really needed. Lot of this work made as team with jonas.esp (http://code.google.com/u/jonas.esp/). 2008-06-22 Version 0.4.1 published. Solved some bugs on the optional configuration parameters APIKEY and WEBSEARCH. Now they are totally optional. Thanks to Kless. Solved a bug on the image crop&resize. If you didn't select a portion of the image, an error was raised. Thanks to David Castello for the report. Some cleanup of the javascript files. 2008-06-16 Version 0.4.0.1 published. Solved a problem with license issues. Thanks to Kless. Solved a typo on the registration form. Thanks to stephan.d.walter. Renamed ROOT_PATH to PROJECT_PATH and solved a bug about directory 2008-06-11 Version 0.4 launched. Try the demo to see what's new. 2008-06-10 The upcoming new version 0.4 is going to have dramatic changes. I have uploaded a demo of a development version to show what you will find on it. Try it here: http://profile.coredump.es 2008-05-26 I have started a new branch of django-profile, titled django-profile-gae. This branch makes compatible the django-profile code on Google AppEngine. It works at 80% of its capabilities, mainly because the PIL (Python Imaging Library) limitations of the Google AppEngine Framework. You can try a demo here: http://django-profile.appspot.com The source code is available on the "branches" directory of the repository. 2008-02-01 Check the Sites using django-profile. ChangelogVersion 0.4.0Changed the license type. Now this project has a Simplified BSD license. Backward incompatible with older versions. Simpler, easier to integrate. New interface, more usable and structured. Removed the "account" module. Everything is integrated in the module "userprofile". Added fixtures for the inital load of Countries and Continents. Thanks to Rob Yates. Solved some bugs on the "account" module. Thanks to Rob Yates again. Removed the "libmagic" dependency. Updated jquery version. New avatar crop&resize plugin. New avatar management. You can insert an image from an URL, or make a search to Picasaweb. Removed the Avatar model. It was innecesary and everything is better managed from the Profile model. 0.3.1 versionSolved some bug issues. Thanks to evo for the report. Modified the Profile model with the new syntax for the OneToOne fields after the QuerySet Refactor on Django. Thanks to Arin. Added Italian translation. Thanks to the author of django-press. 0.3 versionWe can activate an e-mail validation on the registration process. Lot of re-work and optimizations. Solved some mess with the importing of settings variables. Thanks to Mario Cesar. "profile" module renamed to "userprofile". 0.2.1 versionLot of bugfixes. Better registration form. Check valid usernames. Allow registration of usernames with uppercase. Added Portuguese Brazilian (pt-br) localization. Thanks to Pedro Valente. Added Spanish (es) localization. Localization framework. 0.2 versionBetter Google maps integration (now supports delayed load of the google maps framework) New avatar crop&resize. Everything is simpler with a new jquery plugin. HTML code/CSS. Much cleaner. FeaturesIt has now the following features: Registration Framework. A utility for the user to register in our site. Login form. Templated login form for our users to access to the authenticated content of our site. Password lost form. Password recovery tool for the users who have lost their password. Password change form. Password change utility. E-Mail change form. E-mail change utility. Avatar selection. Gmail like crop&resize image as avatar asssociated with our profile. Google maps integration for geopositioning the user location. Possibility of clear all the user profile information when the user wants. 3rd party software needed to runIt relays on this software to run properly: Django platform Jquery javascript library Python Imaging Jquery Json library Jquery User Interface Jquery Dimensions Plugin Google Maps API A modified version of the Jquery Maps Library A slightly modified version of the great Jquery Calendar The Live DemoYou could try the demo application included in the Subversion repository which shows the registration process and the user profile management to take a look of what can be done with this software. Once you register in the demo and insert some info in your profile, a usercard will appear in the frontpage of the demo. Try the demo Some demo screenshots DownloadThe last version is django-profile-0.2. You can download it from the featured downloads box right on this page. Also, you could use the SVN version to get the most actual code: $ svn checkout http://django-profile.googlecode.com/svn/trunk/ django-profile Want to help?A lot of work can be done. If you want to help you could: Write your suggestions, ideas or questions to the mailing list Report bugs or features. Help with the documentation. Help with the design of the CSS/XTHML. Help with the Jquery javascript. Help with the django code. [Less]
Created about 1 year ago.