Giter Site home page Giter Site logo

django / djangopeople Goto Github PK

View Code? Open in Web Editor NEW

This project forked from simonw/djangopeople.net

87.0 87.0 44.0 3.96 MB

A geographical community site for Django developers

Home Page: https://people.djangoproject.com

License: MIT License

JavaScript 3.88% Makefile 0.14% Python 65.10% CSS 12.25% HTML 18.62% Shell 0.02%

djangopeople's Introduction

Django

Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. Thanks for checking it out.

All documentation is in the "docs" directory and online at https://docs.djangoproject.com/en/stable/. If you're just getting started, here's how we recommend you read the docs:

  • First, read docs/intro/install.txt for instructions on installing Django.
  • Next, work through the tutorials in order (docs/intro/tutorial01.txt, docs/intro/tutorial02.txt, etc.).
  • If you want to set up an actual deployment server, read docs/howto/deployment/index.txt for instructions.
  • You'll probably want to read through the topical guides (in docs/topics) next; from there you can jump to the HOWTOs (in docs/howto) for specific problems, and check out the reference (docs/ref) for gory details.
  • See docs/README for instructions on building an HTML version of the docs.

Docs are updated rigorously. If you find any problems in the docs, or think they should be clarified in any way, please take 30 seconds to fill out a ticket here: https://code.djangoproject.com/newticket

To get more help:

To contribute to Django:

To run Django's test suite:

Supporting the Development of Django

Django's development depends on your contributions.

If you depend on Django, remember to support the Django Software Foundation: https://www.djangoproject.com/fundraising/

djangopeople's People

Contributors

andrewgodwin avatar bessl avatar bezidejni avatar bmispelon avatar brutasse avatar carltongibson avatar claudep avatar dalanmiller avatar digitalpbk avatar felixxm avatar fhahn avatar jdunck avatar jezdez avatar m-aciek avatar malept avatar rixx avatar rodo avatar seler avatar timgraham avatar yohanboniface avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

djangopeople's Issues

Password Reset

I'm not able to login nor can I reset my password? Any help would greatly appreciated. Cheers!

i18n

Source code and template code should be ugettex'ed. Then create a transifex project and ask for translations.

Remove link to djangogigs.com?

I noticed that the bottom of the page at https://people.djangoproject.com/ has a link to https://djangogigs.com/.

From what I gather, Django Gigs used to be a community project but it's now a commercial venture.

It seems strange to me that we'd be advertising one commercial website over others (djangojobs.net also exists), especially now that the website is under the djangoproject domain.

What do you think about removing the link?

Allow searching by location

It may be a good idea to allow a person to search for developers based on location rather than by their name. This would allow companies/recruiters to find Django developers in a specific area rather than having to use the map to slowly zero in on an area.

Missing "Other profiles" fields

It feels like you've forgot to include most important pages for programmers such as github.com and bitbucket.org. I'd suggest allowing people to specify their own fields. Right now there's no possibility to specify my own homepage (just blog url).

Invalid longitude when navigating to Japan from US on Change your Location form map

My previous location was in the US; when attempting to change it to Tokyo, I zoomed out and dragged my way across the Pacific. On updating the other fields and submitting, nothing visible happened (no POST, no visible error message, nothing at all in the UI).

The (Chromium) console showed this error:

An invalid form control with name='longitude' is not focusable.

Removing the display:none styling from the longitude field's container, the map had set it to about -220, and the client-side validation was trying to display an error on that field, which showed up upon resubmitting with the field visible:

Value must be greater than or equal to -180.

Looking up the correct longitude for Tokyo (139.6917), entering it manually, and submitting resulted in success, and the map displays my location correctly.

unable to change my location

I've tried twice to update my location and save it, but each time after I do so I go back to my profile page and its still got the old location. Could be a cache issue, not sure.

irrelevant profiles

pownce (dead 2008), magnolia (dead 2009), djangosites (useless)

also the ordering is strange - flickr first but bitbucket, github and stackoverflow at the end.

Heroku deploy not working

Hello,

I'm trying to deploy this app to Heroku. I'm new to Django and Heroku. I'did this and it didn't work

  • Fresh clone
  • Edited env/DATABASE_URL
  • make initialdeploy

I also tried locally, when I try to run it with foreman start, I get: "This webpage is not available", and I noticed that the url changes to https instead of http.

Heroku error log:

make initialdeploy
git push heroku master
Everything up-to-date
heroku run django-admin.py syncdb --noinput
Running `django-admin.py syncdb --noinput` attached to terminal... up, run.6427
Traceback (most recent call last):
  File "/app/.heroku/python/bin/django-admin.py", line 5, in <module>
    management.execute_from_command_line()
  File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/__init__.py", line 453, in execute_from_command_line
    utility.execute()
  File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/__init__.py", line 392, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/__init__.py", line 272, in fetch_command
    klass = load_command_class(app_name, subcommand)
  File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/__init__.py", line 77, in load_command_class
    module = import_module('%s.management.commands.%s' % (app_name, name))
  File "/app/.heroku/python/lib/python2.7/site-packages/django/utils/importlib.py", line 35, in import_module
    __import__(name)
  File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/commands/syncdb.py", line 8, in <module>
    from django.core.management.sql import custom_sql_for_model, emit_post_sync_signal
  File "/app/.heroku/python/lib/python2.7/site-packages/django/core/management/sql.py", line 9, in <module>
    from django.db import models
  File "/app/.heroku/python/lib/python2.7/site-packages/django/db/__init__.py", line 11, in <module>
    if settings.DATABASES and DEFAULT_DB_ALIAS not in settings.DATABASES:
  File "/app/.heroku/python/lib/python2.7/site-packages/django/conf/__init__.py", line 53, in __getattr__
    self._setup(name)
  File "/app/.heroku/python/lib/python2.7/site-packages/django/conf/__init__.py", line 46, in _setup
    % (desc, ENVIRONMENT_VARIABLE))
django.core.exceptions.ImproperlyConfigured: Requested setting DATABASES, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.
heroku run django-admin.py collectstatic
Running `django-admin.py collectstatic` attached to terminal... up, run.7125
Unknown command: 'collectstatic'
Type 'django-admin.py help' for usage.
heroku run django-admin.py fix_counts
Running `django-admin.py fix_counts` attached to terminal... up, run.5902
Unknown command: 'fix_counts'
Type 'django-admin.py help' for usage.

Note that if I run heroku run python manage.py syncdb, I don't get any error on the console, but it still doesn't work at the end.

Spam report

Recently spam-advertising post was added to DP.
https://people.djangoproject.com/wynajem/
It is still linked from main site in recent signups.
Link on the profile page is car rentals, static site, I mean definitely it is not Django.
Please delete it.

Page not responding when selecting US region

When selecting the "US" to view from the main page, the site seems to hang. When it does return a full list, it hangs completely if you try to use the map to zoom. Chrome and Edge both want to kill the sessions. I was able to select a member from the US once, but again it hung trying to get to his listing.

Selecting other nations with fewer members had no problems (Spain) and I was able to navigate the links to different members.

Use Leaflet and OSM with density map and clustering

As we discussed, I'm starting a branch to work on:

  • moving to Leaflet
  • using OSM tiles (which rendering? Thunderforest has nice ones: http://www.thunderforest.com/ )
  • using some density (choropleth) map at low zoom levels
  • using some client clustering at intermediate/high zoom levels

About the density map: do we want to group per country? Something like this: http://leaflet.cloudmade.com/examples/choropleth.html ?

About the clustering, maybe using the @danzel plugin could do the job: http://danzel.github.com/Leaflet.markercluster/example/marker-clustering-realworld.388.html

unable to sign up

When I try to sign up for an account, I just get redirected back to the sign up page with no error messages or notifications. There are no visible errors from my side (response is 200 after POSTing) and the POST data looks correct.

Search page *needs* help

Given the map on the front page, I thought it would be interesting to see other Django guys near me, so I hit "Search". All that shows up is a text field, no description, no help, nothing. Now I don't know what to search for, but I figure if there is a map on the front page, the search should be map based, so I enter a zip code.

And now, I know that it only searches user names and real names. It was nice enough to point out I was using it wrong, but not nice enough to point out how to do it right.

TL;DR: Please put instructions on the search page.

Seems like a lot of profiles are not showing up on the map

I recently shown the map to a head hunter. He told me there were not many people on it.

I was surprised, last time I went on it, the map was full of green dots.

Today, I couldn't even find my own profile on the map. And the USA is like a no pony's land.

Username must be lowercase for recovering password

Although my username contains two capitals, I couldn't reset my password using its exact spelling ('username unknown'). Only after entering my username in lower case was it recognised and an email to recover the password sent.

Question about compatibility

Hi,

I'm currently using Django 1.10 on my computer and the server that I plan to use can be configure with 1.8.

These versions are them incompatible ?

I tried to find this in the official doc but nothing.

Thx

No "delete account" function

I want to delete my account on Django People. There is no function to do this, nor are there any contact details to allow me to request this manually. I've emailed Simon thrice since July 2010 to no avail.

Please implement a "delete account" feature.

License?

I realize that this may be a question more for @simonw as he's one of the original authors, but I couldn't seem to find a license in the repository. I was looking into trying to fix #49, but I'd feel more comfortable making a pull request if I knew what the code's license is.

edit portofolio

hello,

the portofolio edit is a bit tricky, the form could be more explicit having title and url on the same line like this

Title1 [] URL1 []
Title2 [] URL2 []
Title3 [] URL3 []

and not
Title1[]
URL1[]
Title2[]
URL2[]
Title3[]
URL3[]

"Zoom to point" doesn't work

In the marker popup there is a link "Zoom to point", which intend to zoom the map to the latlng of the selected djangonaut.
It calls a function zoomOn, which uses a global gmap variable that is not defined.

Maybe I will fix it while working on the Leaflet move ( #37 ).

Cannot sign up

I have tried to sign up to djangopeople from several browsers but I cannot.
After hitting the "sign up" bottom, the page kinda refreshes with all the information and that's it...
I don't see any forgotten mandatory fields.

I don't know if it will help but here is the headers taken from the Google Chrome development toolbar after hitting the button:

/signup/
/signup

HeadersPreviewResponseCookiesTiming
Request URL:https://people.djangoproject.com/signup/
Request Method:POST
Status Code:200 OK
Request Headersview source
Accept:text/html,application/xhtml+xml,application/xml;q=0.9,/;q=0.8
Accept-Charset:ISO-8859-1,utf-8;q=0.7,;q=0.3
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8,fr-FR;q=0.6,fr;q=0.4
Cache-Control:max-age=0
Connection:keep-alive
Content-Length:760
Content-Type:application/x-www-form-urlencoded
Cookie:sessionid=f72a91c6f24e6ace415d17e737ff365e; csrftoken=o2QrYnhEA6jYRRbwo5jxcLiIjeAacVxK
Host:people.djangoproject.com
Origin:https://people.djangoproject.com
Referer:https://people.djangoproject.com/signup/
User-Agent:Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11
Form Dataview URL encoded
csrfmiddlewaretoken:o2QrYnhEA6jYRRbwo5jxcLiIjeAacVxK
username:YAmikep
first_name:Michael
last_name:Palumbo
email:
[email protected]
password1:
_*
password2:****
location_description:Paris
country:FR
latitude:
longitude:
region:
bio:Test
blog:http://webdevon.com
service_flickr:
service_delicious:
service_magnolia:
service_twitter:
service_facebook:
service_googleplus:
service_linkedin:
service_pownce:
service_djangosnippets:
service_djangosites:
service_bitbucket:
service_github:
service_stackoverflow:
im_aim:
im_yim:
im_gtalk:
im_msn:
im_jabber:
im_django:
privacy_search:public
privacy_email:public
privacy_im:public
privacy_irctrack:public
skilltags:django, backbone, postgresql, nginx
looking_for_work:full-time
Response Headersview source
Connection:keep-alive
Content-Type:text/html; charset=utf-8
Date:Thu, 02 Aug 2012 19:50:55 GMT
Server:gunicorn/0.14.3
Set-Cookie:csrftoken=o2QrYnhEA6jYRRbwo5jxcLiIjeAacVxK; expires=Thu, 01-Aug-2013 19:50:55 GMT; Max-Age=31449600; Path=/; secure
Vary:Cookie
X-Frame-Options:DENY
X-Xss-Protection:1; mode=block
strict-transport-security:max-age=2592000; includeSubDomains
transfer-encoding:chunked
x-content-type-options:nosniff

Invalid links on profile pages

Some people added links without the http(s):// prefix, resulting in invalid links in their profile pages. TODO:

  • Check that validation is done properly on user input
  • Fix existing data

Change user ID

I'd love to be able to:

  • Rename garthrk to garthk
  • Redirect garthrk to garthk so old links don't break

I'm guessing redirection will require changes to the model, even if you don't write views for renaming.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.