Commit Graph

51 Commits

Author SHA1 Message Date
Isaac Bythewood
add91eabbc Allow for some branding. 2012-07-25 01:58:40 +00:00
Isaac Bythewood
a178144da4 Removing the dependency of django-thumbs. 2012-07-25 01:50:28 +00:00
Isaac Bythewood
8389462c80 Replacing PIL with Pillow, PIL seems to be dead is is having issues on newer systems, Pillow is it's continuation. 2012-07-24 23:30:40 +00:00
Isaac Bythewood
93f9d23470 Fix CSRF bug. 2012-07-24 23:26:38 +00:00
Isaac Bythewood
493ef04a45 Added ability to delete pins. 2012-07-24 23:09:48 +00:00
Isaac Bythewood
4ee8d3239d Change position and label of upload field. 2012-07-24 21:23:27 +00:00
Isaac Bythewood
927ee8c03f Merge pull request #42 from kklimonda/master
Enable filtering over the published field
2012-07-16 08:20:08 -07:00
Krzysztof Klimonda
6fd0c91fd1 Enable filtering over the published field
Tastypie requires that we define a list of fields that can be used
for filtering; add the "published" to this list so we can query pinry
for the list of images created after some date.
2012-07-16 17:12:59 +02:00
Krzysztof Klimonda
0f87943805 Add /Scripts/ to the list of ignored patterns
Virtualenv uses /Scripts/ instead of /bin/ on Windows, add it
to the .gitignore file.
2012-07-16 17:11:47 +02:00
Isaac Bythewood
8290cc4280 Added a published field to record the date and time of an items creation. 2012-07-12 22:49:19 +00:00
Isaac Bythewood
0bbcba4a6f Started implementation of user auth. 2012-07-06 20:01:33 +00:00
Isaac Bythewood
c2fed86f4e Cleaning up includes. 2012-07-03 02:29:02 +00:00
Isaac Bythewood
7514c6f0d9 Added an upload field for new images instead of just requiring a URL. 2012-07-03 02:24:34 +00:00
Isaac Bythewood
6e9a423c63 Fixing one of the last batchse of pep8 and pylint bugs. v0.3.2 2012-05-12 00:31:54 +00:00
Isaac Bythewood
8e8bcdfb49 Lots of pylint and pep8 fixes in nearly every file. 2012-05-12 00:27:02 +00:00
Isaac Bythewood
326e7a2e33 Splitting up some tests and more pep8 fixes. 2012-05-12 00:15:01 +00:00
Isaac Bythewood
1419601e76 Fixing some pylint and pep8 errors in pins tests. 2012-05-12 00:09:13 +00:00
Isaac Bythewood
cf7cd7cf83 Merge pull request #27 from DeCarabas/master
Fix it so that pins show up on IE.
v0.3.1
2012-05-11 06:49:59 -07:00
John Doty
ea7ce9a507 Fix it so that pins show up on IE.
In pinry.js, reference is made to image.width and image.height
properties, neither of which exist. They are used to compute the
target height of the image, by computing the aspect ratio
image.width/image.height. Unfortunately, undefined/undefined yields
NaN, and so we end up writing "height='NaN'" into the HTML.

It looks like webkit (at least chrome) ignores it when the height
attribute on an <img /> element is set to NaN, but Internet Explorer
treats it as zero. That's why it didn't look broken on other browsers.
2012-05-10 21:34:03 -07:00
Isaac Bythewood
10ffd90760 Now using tastypie for all our API needs. v0.3.0 2012-05-11 02:08:46 +00:00
Isaac Bythewood
d50e7ce596 Removing the LICENSE file as it is now included in the README. 2012-05-10 05:12:56 +00:00
Isaac Bythewood
4aafa287fe Removing redundant word License. 2012-05-10 05:12:40 +00:00
Isaac Bythewood
dc7b642d93 Added license to the readme. 2012-05-10 05:06:33 +00:00
Isaac Bythewood
b262c31081 Updating the tag-line. 2012-05-10 04:52:47 +00:00
Isaac Bythewood
b349bb2090 Updating the README with new sections and information. 2012-05-10 04:51:22 +00:00
Isaac Bythewood
ea087caab4 Finished adding basic tests with the API, time to start fleshing them out. 2012-05-10 03:19:35 +00:00
Isaac Bythewood
09b5be250d Added some more basic tests, for pins this time. 2012-05-10 03:04:40 +00:00
Isaac Bythewood
6cf61f4038 Added jenkins tasks to jenkins config. 2012-05-10 02:36:25 +00:00
Isaac Bythewood
30985a9efe Added basic core app tests. 2012-05-10 02:34:15 +00:00
Isaac Bythewood
bd6647649a Separating jenkins requirements and settings from the rest of the app. 2012-05-10 02:12:30 +00:00
Isaac Bythewood
02d9a34212 Fixing URL typo. 2012-05-09 02:10:10 +00:00
Isaac Bythewood
031e81d157 Added jenkins link. 2012-05-09 01:52:42 +00:00
Isaac Bythewood
e7347d226b Setting up jenkins depends, preping for writing tests. 2012-05-09 00:02:41 +00:00
Isaac Bythewood
b7b359d159 Updated README with new tag line. 2012-05-01 06:46:39 +00:00
Isaac Bythewood
20002afd31 Added in message system. v0.2.2 2012-05-01 05:44:50 +00:00
Isaac Bythewood
188c40a1b6 Added extra protocol checking. 2012-05-01 04:42:45 +00:00
Isaac Bythewood
ec3694acb7 Added modal for creating new pins. v0.2.1 2012-04-30 15:43:15 +00:00
Isaac Bythewood
f88a06aefa Started the creation of an API and implemented infinite scroll. Closes issue #7. v0.2.0 2012-04-27 19:59:55 +00:00
Isaac Bythewood
ce95b7ef7f Added in duplicate URL detection fixing issue #13. v0.1.2 2012-04-27 15:11:41 +00:00
Isaac Bythewood
520e2725f2 Merge pull request #14 from mbaz/patch-1
Fix typo.
2012-04-27 07:25:20 -07:00
mbaz
11b30fa577 Fix typo. 2012-04-27 08:45:02 -05:00
Isaac Bythewood
740e26c2ad Added basic 404 and 500 error pages. v0.1.1 2012-04-27 02:54:42 +00:00
Isaac Bythewood
cd53e3ff1d Correct typo in README, do basic form URL validation to make sure it is an image, the only thing Pinry currently supports. 2012-04-27 02:48:49 +00:00
Isaac Bythewood
273cbd678c Fix git repo to point to public facing git URL. 2012-04-26 23:06:04 +00:00
Isaac Bythewood
e25e85f594 Adding screenshot. v0.1.0 2012-04-26 19:04:52 +00:00
Isaac Bythewood
15c3f328d7 Fixing Pinterest spelling error. 2012-04-26 18:50:52 +00:00
Isaac Bythewood
2c4a1dd786 README updates. 2012-04-26 18:49:31 +00:00
Isaac Bythewood
a599426e40 Custom background added from subtle patterns. 2012-04-26 17:42:08 +00:00
Isaac Bythewood
74f16c5f8a Basic license and readme added. 2012-04-26 15:47:42 +00:00
Isaac Bythewood
1871de7f4e Remove tags and title, add description, improve forms, add register form, increase original pin limit from 20 to 50. 2012-04-26 15:38:21 +00:00