JR:
Resolved - Fix error when not following any tags
- SQL syntax error occurs when clicking on "tags" being followed and the user is not following any tags.
Fix: I corrected the SQL that was created when no tags when were being followed.
#junco
#resolved
- Jun 27, 2013
JR:
Resolved - Fix feed command
- Resolution: For some reason, my code removed the opening and closing syntax for CDATA before sending the feed to the XML parser. I commented out this code.
Resolved - Also, enable the feed command to work with https in addition to http
https://me...
more>>
- Jun 27, 2013
- #resolved #junco
JR:
Resolved - Add sort options to tag list page
- Currently, tags ...
/tags
... are listed alphabetically.
Provide sort options:
alphabetically - ascending
numerically - descending
Tag cloud remains.
#junco
#resolved
- Jun 27, 2013
JR:
Resolved - Change title text for following streams
- Text is too long for display of following streams:
following users: "all followingstream postings": /followingstream
following tags: "all followingtagsstream postings": /followingtagsstream
Keep link, but change text to something more meaningf...
more>>
- Jun 27, 2013
- #junco #resolved
JR:
Resolved - Add following display options
- For the "following" link across top of site, default to posts by users followed, but provide link choice for displaying posts for tags followed.
#junco
#resolved
- Jun 27, 2013
JR:
Resolved - Change frontpage command to draft
- frontpage=no will become draft=yes.
draft command works the same. status is still the same. it's only a name change.
drafts are still public posts that can only be found thru searching: traditional searches thru search text input field and tag sear...
more>>
- Jun 27, 2013
- #junco #resolved
JR:
Resolved - CSS changes to make
- Done 3May2013 - for secondary un-ordered bullet point displays, make the top and bottom spacing uniform.
Done 3May2013 - for info titles on pages like search results, add more spacing to top. maybe create a customized paragraph tag. normal para tag a...
more>>
- Jun 27, 2013
- #junco #resolved
JR:
Resolved - Fix configuration error on microblog post
- when entering nothing and hitting the post button on microblog post, the program blows up in a bad way.
#junco
#resolved
- Jun 27, 2013
JR:
Resolved - Microblog post display change
- Move the "from" line from the top to the bottom to match the blog post.
#junco
#resolved
- Jun 27, 2013
JR:
Resolved - Fix include function
- including here
{{ March 6, 2013 test post a }}
27Apr2013 - testing
Found problem. In the double curly brace include syntax, I typed a space ahead of the title of the post to include. In code, not trimming spaces around the title. Rem...
more>>
- Jun 27, 2013
- #junco #resolved
JR:
Resolved - Fix RSS encoding problem
- Corrected on 27Apr2013.
In RSS.pm, changed the HTML Entities encode sub to encode all special chars.
example
/tag/design/rss
RSS is formatted incorrectly for extended ASCII characters.
#junco
#resolved
- Jun 27, 2013
JR:
Resolved - Fix the following and unfollowing user error
- Check for existence of username in URI string when following and unfollowing a user.
Currently, the follow will work, and it enters a row in db table.
Also, make sure username exists in user table when following/unfollowing a user.
#junco
#reso...
more>>
- Jun 27, 2013
- #junco #resolved
JR:
Resolved - Testing change to regex for hashtags
- need to figure out how to make regex work
tags: #resolved - #junco
test
- Jun 27, 2013
JR:
Junco To-Do List
- Junco = the Blogging-Microblogging app powering this site
add blog_ format option
add favorite/like option
add ability for users to view posts that they liked
add progressive enhancement
add responsive design
add jquery functionality where approp...
more>>
1 min read
- Jun 27, 2013
- #junco #programming #blogging #microblogging
JR:
Perl try, catch, eval, die, warn, carp
- using
Perl's Warn and Die Signals
# warn user (from perspective of caller)
carp "string trimmed to 80 chars";
# die of errors (from perspective of caller)
croak "We're outta here!";
# die of errors with stack backtra...
more>>
- Jun 25, 2013
- #perl #programming