Jun. 5th, 2013

github: shadowy octopus with the head of a robot, emblazoned with the Dreamwidth swirl (Default)
[personal profile] github
Branch: refs/heads/develop
Home: https://github.com/dreamwidth/dw-free
Commit: b4a729fe8ede583ffdee3328fbcb64a5fdcfba55
https://github.com/dreamwidth/dw-free/commit/b4a729fe8ede583ffdee3328fbcb64a5fdcfba55
Author: shadowspar <shadowspar@dreamwidth.org>
Date: 2013-05-18 (Sat, 18 May 2013)

Changed paths:
M bin/bootstrap.pl

Log Message:
-----------
(bug 4650) Git[hub]-enable bootstrap.pl.

Usage: bootstrap.pl --github-user [--dw-nonfree]

Requires the $LJHOME environment variable to be set.
Accepts the user's github username via the --github-user
command-line switch. If it's not given, falls back to using
the value of the environment variable $GITHUB_USER.

Checks out the user's fork of dw-free to $LJHOME. Also checks out
dw-nonfree to $LJHOME/ext/dw-nonfree if it is specifically
requested with --dw-nonfree. Finally, configures Dreamwidth's
corresponding github repositories as upstream for the local
branches 'develop' and 'master'.

Note that git will refuse to clone into a directory that is not
empty (save for dotfiles), so if there are any files in $LJHOME --
like this script, for instance -- cloning dw-free will fail.
Usually one would run this script from the dw user's $HOME directory
with the $LJHOME variable set to something like $HOME/dw.
Discussion here:
https://github.com/dreamwidth/dw-free/pull/355#discussion_r3920545


Commit: 5bebbda3980d778605e612b0d7583b6a0bddddbb
https://github.com/dreamwidth/dw-free/commit/5bebbda3980d778605e612b0d7583b6a0bddddbb
Author: Afuna <afunamatata+github@gmail.com>
Date: 2013-06-05 (Wed, 05 Jun 2013)

Changed paths:
M bin/bootstrap.pl

Log Message:
-----------
Merge pull request #355 from rickscott/bug4650-new-bootstrap.pl

First pass at a git(hub)-enabled bootstrap.pl. Comments welcome =)


Compare: https://github.com/dreamwidth/dw-free/compare/89f6455c2ca8...5bebbda3980d
github: shadowy octopus with the head of a robot, emblazoned with the Dreamwidth swirl (Default)
[personal profile] github
Branch: refs/heads/develop
Home: https://github.com/dreamwidth/dw-free
Commit: 52805aa3365b8b84182417787d605d860ba89dff
https://github.com/dreamwidth/dw-free/commit/52805aa3365b8b84182417787d605d860ba89dff
Author: Rick Scott <shadowspar@dreamwidth.org>
Date: 2013-05-20 (Mon, 20 May 2013)

Changed paths:
M htdocs/stats.bml

Log Message:
-----------
(bug 4772) show users using standard userhead

Also, use load_userids to pull users from the database as a group,
instead of loading them one by one with calls to LJ::load_user.

Previous branch: bug4772-stats-old-urls; previous pull req:
https://github.com/dreamwidth/dw-free/pull/337


Commit: c97f9c0486d995958f8eedacd7e397b5005ef45f
https://github.com/dreamwidth/dw-free/commit/c97f9c0486d995958f8eedacd7e397b5005ef45f
Author: Rick Scott <shadowspar@dreamwidth.org>
Date: 2013-05-20 (Mon, 20 May 2013)

Changed paths:
M htdocs/stats.bml

Log Message:
-----------
(bug 4772) Style cleanup: remove trailing parens()


Commit: 4373ccd45471ea9184e8fbf2fd65749ddcf3063e
https://github.com/dreamwidth/dw-free/commit/4373ccd45471ea9184e8fbf2fd65749ddcf3063e
Author: Rick Scott <shadowspar@dreamwidth.org>
Date: 2013-05-20 (Mon, 20 May 2013)

Changed paths:
M htdocs/stats.bml

Log Message:
-----------
(bug 4772) use more idiomatic "if ( @$accounts )"

Address Fu's comment here:
https://github.com/dreamwidth/dw-free/pull/337#discussion_r3792867

Alter this from "if (scalar @$accounts == 0)" (if there are
no accounts in the results, do this, else process them)
to the (hopefully) more readable "if ( @$accounts )"
(if there are accounts, process them, else display an error message).


Commit: c393ab65aba75483b5940d2f83da25208406ffc1
https://github.com/dreamwidth/dw-free/commit/c393ab65aba75483b5940d2f83da25208406ffc1
Author: Rick Scott <shadowspar@dreamwidth.org>
Date: 2013-05-20 (Mon, 20 May 2013)

Changed paths:
M htdocs/stats.bml

Log Message:
-----------
(bug 4772) rework code that creates
  • s

    Each element of @$accounts is a hashref like so:
    { userid => 1234 , timeupdate => '2013-03-30 01:58:32' }

    Then LJ::load_userids gives us a hash that lets us map userid numbers
    to user objects. Unfortunately, we need to keep the @$accounts array
    around to preserve the ordering -- they're sorted by last update time.

    Hopefully subbing in the conventional $u will make what is going
    on here clearer. If not, we'll have to rework this in a more
    readable but less efficient way. ^_^;

    Addresses afuna's comment:
    https://github.com/dreamwidth/dw-free/pull/337#discussion_r3792930


    Commit: 4bcc4e0ed7c0befe5895982e54e733d741251ada
    https://github.com/dreamwidth/dw-free/commit/4bcc4e0ed7c0befe5895982e54e733d741251ada
    Author: Afuna <afunamatata+github@gmail.com>
    Date: 2013-06-05 (Wed, 05 Jun 2013)

    Changed paths:
    M htdocs/stats.bml

    Log Message:
    -----------
    Merge pull request #365 from rickscott/bug4772-stats-old-urls-dw-style

    Bug 4772 - stats page uses oldstyle urls (second PR)


    Compare: https://github.com/dreamwidth/dw-free/compare/5bebbda3980d...4bcc4e0ed7c0
  • github: shadowy octopus with the head of a robot, emblazoned with the Dreamwidth swirl (Default)
    [personal profile] github
    Branch: refs/heads/develop
    Home: https://github.com/dreamwidth/dw-free
    Commit: 638dbb346b8fd0b8b74f892b85c68accb666e72a
    https://github.com/dreamwidth/dw-free/commit/638dbb346b8fd0b8b74f892b85c68accb666e72a
    Author: Afuna <fu@dreamwidth.org>
    Date: 2013-04-23 (Tue, 23 Apr 2013)

    Changed paths:
    M cgi-bin/LJ/Comment.pm
    M cgi-bin/LJ/Protocol.pm
    A t/comment-create.t

    Log Message:
    -----------
    (Bug 5027) Pass up the error message to the caller

    This lets us recover from the error state and fire off error messages
    properly. It also means we get to choose whether to retry or not
    (instead of catastrophic failure all the time)


    Commit: cf377b285bdb1daaa462c819e90233a638d84c8d
    https://github.com/dreamwidth/dw-free/commit/cf377b285bdb1daaa462c819e90233a638d84c8d
    Author: Afuna <afunamatata+github@gmail.com>
    Date: 2013-04-23 (Tue, 23 Apr 2013)

    Changed paths:
    M cgi-bin/LJ/Comment.pm
    M cgi-bin/LJ/Protocol.pm
    A t/comment-create.t

    Log Message:
    -----------
    Merge pull request #361 from afuna/addcomment-fail-dequeue-bug5027

    (Bug 5027) Pass up the error message to the caller


    Commit: b5ff48b932dc9930ef630acd7b59a972c0458d44
    https://github.com/dreamwidth/dw-free/commit/b5ff48b932dc9930ef630acd7b59a972c0458d44
    Author: Afuna <fu@dreamwidth.org>
    Date: 2013-04-23 (Tue, 23 Apr 2013)

    Changed paths:
    M bin/upgrading/proplists.dat
    M cgi-bin/DW/EmailPost/Comment.pm
    M cgi-bin/LJ/CleanHTML.pm
    M cgi-bin/LJ/Comment.pm
    M cgi-bin/LJ/Protocol.pm
    M cgi-bin/LJ/S2/EntryPage.pm
    M cgi-bin/LJ/S2/ReplyPage.pm
    M cgi-bin/LJ/Talk.pm
    M htdocs/talkread.bml
    M htdocs/tools/recent_comments.bml

    Log Message:
    -----------
    (Bug 5025) Enables markdown parsing for replies-by-email

    So. Gmail automatically hardwraps sent messages. We can strive to unwrap
    it, with the attendant difficulties (what if the wrapping is in the
    middle of an HTML tag? what about multiple line breaks vs single line
    breaks?), or we can rely on a library which is meant to handle text like
    this.

    So. Markdown -- HTML still works, along with the various formatting
    shortcuts markdown offers.

    For a certain subset of users who regularly use their mobile phones,
    this should also be easier than switching keyboards to type angled
    brackets/quotes

    We use regular markdown, with a variant of @username to refer to a
    specific user.


    Commit: ef4f9d1c0dc7d9aaa07901bb3b04566229c83d4d
    https://github.com/dreamwidth/dw-free/commit/ef4f9d1c0dc7d9aaa07901bb3b04566229c83d4d
    Author: Mark Smith <mark@qq.is>
    Date: 2013-04-23 (Tue, 23 Apr 2013)

    Changed paths:
    M bin/upgrading/proplists.dat
    M cgi-bin/DW/EmailPost/Comment.pm
    M cgi-bin/LJ/CleanHTML.pm
    M cgi-bin/LJ/Comment.pm
    M cgi-bin/LJ/Protocol.pm
    M cgi-bin/LJ/S2/EntryPage.pm
    M cgi-bin/LJ/S2/ReplyPage.pm
    M cgi-bin/LJ/Talk.pm
    M htdocs/talkread.bml
    M htdocs/tools/recent_comments.bml

    Log Message:
    -----------
    Merge pull request #360 from afuna/comment-markdown-bug5025

    (Bug 5025) Enables markdown parsing for replies-by-email


    Commit: c0e1131f86d1e6fb19f1a98985bf03e2103a9580
    https://github.com/dreamwidth/dw-free/commit/c0e1131f86d1e6fb19f1a98985bf03e2103a9580
    Author: Mark Smith <mark@qq.is>
    Date: 2013-04-24 (Wed, 24 Apr 2013)

    Changed paths:
    M bin/upgrading/s2layers/planetcaravan/layout.s2

    Log Message:
    -----------
    Merge pull request #366 from momijizukamori/release-1.15

    (Bug 5031) Move background from interaction-links to management-links - ...


    Commit: 06fb95e45d526e128b435609515d281df0e858ef
    https://github.com/dreamwidth/dw-free/commit/06fb95e45d526e128b435609515d281df0e858ef
    Author: Momijizukamori <momijizukamori@dreamwidth.org>
    Date: 2013-04-24 (Wed, 24 Apr 2013)

    Changed paths:
    M bin/upgrading/s2layers/planetcaravan/layout.s2

    Log Message:
    -----------
    (Bug 5031) Move background from interaction-links to management-links - interaction-links can be empty, but management-links never is.


    Commit: 99bdbce74a77420523683f1caf985f768537efc5
    https://github.com/dreamwidth/dw-free/commit/99bdbce74a77420523683f1caf985f768537efc5
    Author: Momijizukamori <momijizukamori@dreamwidth.org>
    Date: 2013-04-24 (Wed, 24 Apr 2013)

    Changed paths:
    M bin/upgrading/s2layers/planetcaravan/layout.s2

    Log Message:
    -----------
    (Bug 5031) Small spacing tweak on footer, and fix for TR overriding comment-management-link alignment


    Commit: 66f6a514669590c15b32145f1dd17bb66099f379
    https://github.com/dreamwidth/dw-free/commit/66f6a514669590c15b32145f1dd17bb66099f379
    Author: Afuna <fu@dreamwidth.org>
    Date: 2013-04-25 (Thu, 25 Apr 2013)

    Changed paths:
    M cgi-bin/DW/CleanEmail.pm
    M t/cleanemail.t

    Log Message:
    -----------
    (Bug 5026) Don't hardcode the "---Original Message---" text

    This seems a reasonable enough pattern to match against. Switching to a
    pattern so that it doesn't matter what language it is.


    Commit: 282d98eed6f38073688173cbc0bf01131a00bd2f
    https://github.com/dreamwidth/dw-free/commit/282d98eed6f38073688173cbc0bf01131a00bd2f
    Author: Mark Smith <mark@qq.is>
    Date: 2013-04-25 (Thu, 25 Apr 2013)

    Changed paths:
    M bin/upgrading/s2layers/planetcaravan/layout.s2

    Log Message:
    -----------
    Merge pull request #367 from momijizukamori/release-1.15

    (Bug 5031) Small spacing tweak on footer, and fix for TR overriding comm...


    Commit: 2afc852c85481acddaa5f5954d9e033cb415448b
    https://github.com/dreamwidth/dw-free/commit/2afc852c85481acddaa5f5954d9e033cb415448b
    Author: Afuna <fu@dreamwidth.org>
    Date: 2013-04-26 (Fri, 26 Apr 2013)

    Changed paths:
    M cgi-bin/LJ/Setting/EmailPosting.pm

    Log Message:
    -----------
    (Bug 5034) Allow up to five authorized emails

    Up from three


    Commit: 24b83a18ca8d72c2b9cf44cc824bfc72268d8191
    https://github.com/dreamwidth/dw-free/commit/24b83a18ca8d72c2b9cf44cc824bfc72268d8191
    Author: Afuna <afunamatata+github@gmail.com>
    Date: 2013-04-26 (Fri, 26 Apr 2013)

    Changed paths:
    M cgi-bin/LJ/Setting/EmailPosting.pm

    Log Message:
    -----------
    Merge pull request #371 from afuna/authorized-emails-bug5034

    (Bug 5034) Allow up to five authorized emails


    Commit: e5c9c2f915e3904de3ceba45a15c98c977971cfa
    https://github.com/dreamwidth/dw-free/commit/e5c9c2f915e3904de3ceba45a15c98c977971cfa
    Author: Afuna <afunamatata+github@gmail.com>
    Date: 2013-04-26 (Fri, 26 Apr 2013)

    Changed paths:
    M cgi-bin/DW/CleanEmail.pm
    M t/cleanemail.t

    Log Message:
    -----------
    Merge pull request #368 from afuna/dashdashdash-terminator-bug5026

    (Bug 5026) Don't hardcode the "---Original Message---" text


    Commit: 6736544a9fee6cc7ba43376838acd113f0aee139
    https://github.com/dreamwidth/dw-free/commit/6736544a9fee6cc7ba43376838acd113f0aee139
    Author: ninetyd <ninetyd@dreamwidth.org>
    Date: 2013-04-28 (Sun, 28 Apr 2013)

    Changed paths:
    M bin/upgrading/s2layers/core2.s2
    M cgi-bin/LJ/S2.pm
    M htdocs/stc/jquery/jquery.ui.theme.smoothness.css

    Log Message:
    -----------
    Bug 5038 - Contextual popup has unreadable font color in some site skins and styles
    http://bugs.dwscoalition.org/show_bug.cgi?id=5038
    -- Undo changes brought by bug 4939
    -- Create function for default styling for ctx popups in core2
    -- Add to default stylesheet loading for journal pages
    -- Make sure it gets printed before other layout stylesheets


    Commit: 8ea5b0b071b56b5f606b120ac9cb68522771f873
    https://github.com/dreamwidth/dw-free/commit/8ea5b0b071b56b5f606b120ac9cb68522771f873
    Author: Afuna <fu@dreamwidth.org>
    Date: 2013-05-07 (Tue, 07 May 2013)

    Changed paths:
    M cgi-bin/DW/CleanEmail.pm
    M t/cleanemail.t

    Log Message:
    -----------
    (Bug 5026) Clean out more cruft

    * "On 29 Apr 2013" near the end of the message
    * "--- .... <dw_null@dreamwidth.org>" anywhere in the message


    Commit: b088b3043c023d45c0cbcb7379b82aad33e04c72
    https://github.com/dreamwidth/dw-free/commit/b088b3043c023d45c0cbcb7379b82aad33e04c72
    Author: Afuna <afunamatata+github@gmail.com>
    Date: 2013-05-07 (Tue, 07 May 2013)

    Changed paths:
    M cgi-bin/DW/CleanEmail.pm
    M t/cleanemail.t

    Log Message:
    -----------
    Merge pull request #377 from afuna/more-header-formats-bug5026

    (Bug 5026) Clean out more cruft


    Commit: 8f0bd6d705379c760f6008178948f0ac2cbeec40
    https://github.com/dreamwidth/dw-free/commit/8f0bd6d705379c760f6008178948f0ac2cbeec40
    Author: Afuna <afunamatata+github@gmail.com>
    Date: 2013-05-12 (Sun, 12 May 2013)

    Changed paths:
    M bin/upgrading/s2layers/core2.s2
    M cgi-bin/LJ/S2.pm
    M htdocs/stc/jquery/jquery.ui.theme.smoothness.css

    Log Message:
    -----------
    Merge pull request #375 from ninetyd/release-1.15

    Bug 5038 - Contextual popup has unreadable font color in some site skins...


    Commit: 3d23f54b07be67949c8345e0c508961c0005637c
    https://github.com/dreamwidth/dw-free/commit/3d23f54b07be67949c8345e0c508961c0005637c
    Author: ninetyd <ninetyd@dreamwidth.org>
    Date: 2013-06-02 (Sun, 02 Jun 2013)

    Changed paths:
    M cgi-bin/LJ/Event/Birthday.pm

    Log Message:
    -----------
    (bug 5072) switch links in birthday inbox notif
    -- switch pm and gift links


    Commit: ffcf105f12d9472e296bf21e51e9baf76f1d2f94
    https://github.com/dreamwidth/dw-free/commit/ffcf105f12d9472e296bf21e51e9baf76f1d2f94
    Author: Afuna <afunamatata+github@gmail.com>
    Date: 2013-06-03 (Mon, 03 Jun 2013)

    Changed paths:
    M cgi-bin/LJ/Event/Birthday.pm

    Log Message:
    -----------
    Merge pull request #398 from ninetyd/release-1.15

    (bug 5072) switch links in birthday inbox notif


    Commit: 48bd2862482a704847f6d680132e2bac4854bcf7
    https://github.com/dreamwidth/dw-free/commit/48bd2862482a704847f6d680132e2bac4854bcf7
    Author: Afuna <fu@dreamwidth.org>
    Date: 2013-06-05 (Wed, 05 Jun 2013)

    Changed paths:
    M bin/upgrading/proplists.dat
    M bin/upgrading/s2layers/core2.s2
    M bin/upgrading/s2layers/planetcaravan/layout.s2
    M cgi-bin/DW/CleanEmail.pm
    M cgi-bin/DW/EmailPost/Comment.pm
    M cgi-bin/LJ/CleanHTML.pm
    M cgi-bin/LJ/Comment.pm
    M cgi-bin/LJ/Event/Birthday.pm
    M cgi-bin/LJ/Protocol.pm
    M cgi-bin/LJ/S2.pm
    M cgi-bin/LJ/S2/EntryPage.pm
    M cgi-bin/LJ/S2/ReplyPage.pm
    M cgi-bin/LJ/Setting/EmailPosting.pm
    M cgi-bin/LJ/Talk.pm
    M htdocs/stc/jquery/jquery.ui.theme.smoothness.css
    M htdocs/talkread.bml
    M htdocs/tools/recent_comments.bml
    M t/cleanemail.t
    A t/comment-create.t

    Log Message:
    -----------
    Merge branch 'release-1.15' into develop

    * release-1.15:
    (bug 5072) switch links in birthday inbox notif -- switch pm and gift links
    (Bug 5026) Clean out more cruft
    Bug 5038 - Contextual popup has unreadable font color in some site skins and styles http://bugs.dwscoalition.org/show_bug.cgi?id=5038 -- Undo changes brought by bug 4939 -- Create function for default styling for ctx popups in core2 -- Add to default stylesheet loading for journal pages -- Make sure it gets printed before other layout stylesheets
    (Bug 5034) Allow up to five authorized emails
    (Bug 5026) Don't hardcode the "---Original Message---" text
    (Bug 5031) Small spacing tweak on footer, and fix for TR overriding comment-management-link alignment
    (Bug 5031) Move background from interaction-links to management-links - interaction-links can be empty, but management-links never is.
    (Bug 5025) Enables markdown parsing for replies-by-email
    (Bug 5027) Pass up the error message to the caller


    Compare: https://github.com/dreamwidth/dw-free/compare/4bcc4e0ed7c0...48bd2862482a

    Profile

    Dreamwidth Changelog

    August 2025

    S M T W T F S
         12
    3456789
    10111213141516
    171819202122 23
    24252627282930
    31      

    Most Popular Tags

    Style Credit

    Expand Cut Tags

    No cut tags
    Page generated Aug. 25th, 2025 07:12 pm
    Powered by Dreamwidth Studios