Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

# Date Author Comment
e45397ea 04/12/2015 10:00 PM dsorber

Adding a javascript based UI for managing tags. This is just the client-side API for now, I'll have to add the server side next. I also need to work on the CSS to display things a more nicely. Finally some good progress.

04e8cb11 04/04/2015 03:54 PM dsorber

w00t! I finally got the update operation working! It turns out that the wsgi.input object is a little tricky to deal with until you learn how to do so correctly. I still need to add displaying and modifying tags... and a bunch of other stuff.

836bf7f9 01/19/2015 10:05 PM dsorber

Well I was trying to get bookmark display and update functionality working, but I really only got started. I need to work out how to make the update_bookmark handler work as I would like it to.

1b295402 01/19/2015 03:27 AM dsorber

I haven't really don't anything yet other than cleanup some of the messiness that I left behind. I fixed pagination and renamed a few things to make them more clear.

1371822e 12/07/2014 03:14 AM dsorber

Fixed an issue with the Bookmark class was not properly creating the category and description tag sets. Also fixed an issue with both the Bookmark and Tag classes where the passed in DB connection was not being type checked before being used. Finally I added basic pagination to the BookmarkPageController.

bf2beea6 07/31/2014 09:57 PM dsorber

Whoops, I forgot that I have to manually add files that I modified to commits with git. Guess I'm a bit of a git...

f9b5ab4b 07/31/2014 09:52 PM dsorber

Continuing to work on the web GUI a little at a time. A made an important modification to the way the controllers work so that you don't have to pass the template name into the controller instantiation in the .wsgi script and instead the template name is a parameter with a default value.

98f4e4a6 07/27/2014 02:45 AM dsorber

Continued working on the web GUI, taking baby steps.

5bc97b89 07/27/2014 01:31 AM dsorber

Re-adding setup.py which I didn't actually mean to remove.

7b67b39a 07/27/2014 01:28 AM dsorber

I'm still learning how to use git...

438a8ccd 07/27/2014 01:18 AM dsorber

Reorganizing things into a more logical format for packaging. I also started working on the web interface.

4c6410dc 07/22/2014 09:37 PM dsorber

Finished up the bookmarks importer and made the whole thing a package that I'm calling bmklib. I'm also preparing to start working on the web interface by copying the existing .wsgi file I created to use as a template.

7de08f2f 07/19/2014 06:53 PM dsorber

Wrote a converter util and started working on the importer util.

137b22ce 07/19/2014 03:45 PM dsorber

Added a few things including a "date_added" column. Also adding a blank database so I don't have to recreate it. I'm proabably going to work on an import script next, then the web GUI. I really should write some unit tests at some point.

fd2c83de 07/17/2014 11:31 PM dsorber

Adding modifications to the Bookmark and Tag classes to support the category and description tag lists. I also learned about the very awesome "lastrowid" feature.

7218b9c1 07/17/2014 02:04 AM dsorber

Added a tiny bit of code tonight. Need to keep track of dirty value of tags lists using hash (convert from set to frozenset before hashing).

7056140d 07/13/2014 02:50 PM dsorber

Started working on the Tag class.

655be0cd 07/13/2014 03:10 AM dsorber

Added selection and debugged updating of bookmark records. Also added suggest_title and is_reachable methods.

aa15db9e 07/12/2014 10:36 PM dsorber

First commit for the bookmark library project! Hopefully many more to come. Starting the bookmark class.