Profile

ree: photo of a woman with long blonde hair and glasses (Default)
Ree 💚

Subscription Filters

github: shadowy octopus with the head of a robot, emblazoned with the Dreamwidth swirl (Default)
[personal profile] github posting in [site community profile] changelog

Branch: refs/heads/main Home: https://github.com/dreamwidth/dreamwidth Commit: 1dba291b136e2650d4770ccb59b89588e09ffdc4 https://github.com/dreamwidth/dreamwidth/commit/1dba291b136e2650d4770ccb59b89588e09ffdc4 Author: Mark Smith mark@dreamwidth.org Date: 2026-02-01 (Sun, 01 Feb 2026)

Changed paths: M .github/workflows/tasks/web-shop-service.json M bin/starman M etc/docker/shop/Dockerfile M etc/docker/shop/scripts/startup-prod.sh

Log Message:


Add Starman to production web-shop container

Run Starman alongside Apache+Varnish in the shop container on port 8080, exposed directly without Varnish. The load balancer can route traffic to either 6081 (Varnish→Apache) or 8080 (Starman) for gradual migration.

Remove hardcoded LJ_IS_DEV_SERVER from bin/starman so it no longer forces dev mode in production — the devcontainer sets this via containerEnv.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

To unsubscribe from these emails, change your notification settings at https://github.com/dreamwidth/dreamwidth/settings/notifications

github: shadowy octopus with the head of a robot, emblazoned with the Dreamwidth swirl (Default)
[personal profile] github posting in [site community profile] changelog

Branch: refs/heads/main Home: https://github.com/dreamwidth/dreamwidth Commit: dbe48689a185806364203cdd1757692b54141ec0 https://github.com/dreamwidth/dreamwidth/commit/dbe48689a185806364203cdd1757692b54141ec0 Author: Mark Smith mark@dreamwidth.org Date: 2026-02-01 (Sun, 01 Feb 2026)

Changed paths: M cgi-bin/modperl_subs.pl

Log Message:


Fix Apache2::Connection XS bootstrap for client_ip method

The Plack merge removed use Apache2::Const qw/ :common / from LJ/S2.pm, which had been bootstrapping Apache2::Connection XS methods as a side effect. Without it, $conn->client_ip fails at runtime. Explicitly load Apache2::Connection in modperl_subs.pl.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

To unsubscribe from these emails, change your notification settings at https://github.com/dreamwidth/dreamwidth/settings/notifications

github: shadowy octopus with the head of a robot, emblazoned with the Dreamwidth swirl (Default)
[personal profile] github posting in [site community profile] changelog

Branch: refs/heads/main Home: https://github.com/dreamwidth/dreamwidth Commit: 22120106eb6013b4857e3d8f233d0b34dfaad9bd https://github.com/dreamwidth/dreamwidth/commit/22120106eb6013b4857e3d8f233d0b34dfaad9bd Author: Mark Smith mark@dreamwidth.org Date: 2026-02-01 (Sun, 01 Feb 2026)

Changed paths: M .devcontainer/config/etc/apache2/ports.conf M .devcontainer/devcontainer.json A .devcontainer/plack/Dockerfile A .devcontainer/plack/devcontainer.json A .devcontainer/setup.sh M .devcontainer/start.sh M .gitignore R Build.PL M CLAUDE.md A app.psgi M bin/checkconfig.pl A bin/starman M cgi-bin/Apache/BML.pm M cgi-bin/Apache/LiveJournal.pm M cgi-bin/DBI/Role.pm A cgi-bin/DW/BML.pm M cgi-bin/DW/Controller/Create.pm A cgi-bin/DW/Controller/Journal.pm M cgi-bin/DW/Controller/Login.pm A cgi-bin/DW/Controller/Userpic.pm M cgi-bin/DW/Request.pm M cgi-bin/DW/Request/Apache2.pm M cgi-bin/DW/Request/Base.pm A cgi-bin/DW/Request/Plack.pm M cgi-bin/DW/Request/Standard.pm M cgi-bin/DW/Widget/AccountStatistics.pm M cgi-bin/LJ/Global/Defaults.pm M cgi-bin/LJ/S2.pm M cgi-bin/LJ/User/Account.pm M cgi-bin/LJ/Web.pm A cgi-bin/Plack/Middleware/DW/Auth.pm A cgi-bin/Plack/Middleware/DW/ConcatRes.pm A cgi-bin/Plack/Middleware/DW/Dev.pm A cgi-bin/Plack/Middleware/DW/Redirects.pm A cgi-bin/Plack/Middleware/DW/RequestWrapper.pm A cgi-bin/Plack/Middleware/DW/Sysban.pm A cgi-bin/Plack/Middleware/DW/UniqCookie.pm A cgi-bin/Plack/Middleware/DW/XForwardedFor.pm M cgi-bin/ljlib.pl M cgi-bin/modperl_subs.pl A doc/PLACK.md M doc/dependencies-cpanm M doc/dependencies-system M src/s2/S2.pm A t/plack-app.t A t/plack-auth.t A t/plack-bml.t A t/plack-controller.t A t/plack-integration.t A t/plack-middleware.t A t/plack-static.t A t/plack-sysban.t M views/login.tt

Log Message:


Plack/Starman Support (#3512)

  • Add missing use LJ::Memories in AccountStatistics widget

The widget calls LJ::Memories::count() but relied on modperl_subs.pl to load the module at startup rather than declaring its own dependency.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Use path-based journal URLs in dev container

Override $SUBDOMAIN_RULES for dev containers to use path-based format (/~username) instead of subdomain-based format (username.domain). Fix journal_base() to construct URLs from the request host when the rule has an empty domain.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Plack testing with devcontainer

  • Fix Plack request lifecycle and integration tests

DW::Request->get now always creates a fresh request when plack_env is provided, fixing the issue where LJ::start_request's internal reset/get cycle would leave DW::Request in a stale state. Also fixes DW::Request::Plack->status to work as a getter, adds a default 404 for unmatched routes in app.psgi, and rewrites the integration test to properly monkey-patch after module loading. Includes tidyall formatting.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Plack: render Login controller through full stack, remove dead Procnotify call

Add missing methods to DW::Request::Plack (pnote, note, content, content_type getter/setter, no_cache, get_remote_ip) so controllers can render through the Plack stack. Route all requests through DW::Routing in app.psgi instead of only /api/ paths, and use the routing return value to set HTTP 200 status for handled requests.

Remove the dead LJ::Procnotify::check() call from RequestWrapper middleware — the module was deleted but the call was left behind.

New test t/plack-controller.t validates GET /login renders through the real routing + controller + template pipeline via Plack::Test.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Add UniqCookie middleware and fix is_web_context for Plack

Add Plack::Middleware::DW::UniqCookie that calls LJ::UniqCookie->ensure_cookie_value to generate and set the unique tracking cookie on every request, matching Apache behavior.

This required two supporting changes:

  • LJ::is_web_context() now returns true when a DW::Request is active, not just under mod_perl. Many modules gate web-only behavior on this check, so Plack requests were silently skipping cookie, auth, and other web-context logic.

  • DW::Request::Plack now implements err_header_out, header_out_add, and err_header_out_add so that add_cookie (which appends Set-Cookie headers) works correctly.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Add static content serving middleware for Plack

Add DW::ConcatRes middleware to handle concatenated CSS/JS requests (??file1.css,file2.css URLs), ported from Apache::LiveJournal. Wire in Plack::Middleware::Static for plain static files from $LJ::HTDOCS, matching Apache's DocumentRoot behavior.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Implement redirect.dat support in Plack redirects middleware

Load redirect.dat and redirect-local.dat at startup and return 301 for matching paths, preserving query strings. Matches the existing Apache behavior in Apache::LiveJournal::trans().

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Add Sysban middleware for Plack and clean up app.psgi TODOs

Port sysban blocking from Apache::LiveJournal::trans() to a Plack middleware: IP bans, uniq cookie bans, tempbans, and noanon_ip bans for anonymous users. Also remove stale TODOs from app.psgi (srand preforking is a non-issue in modern Perl, BML language setup is irrelevant to Plack but noted in RequestWrapper for future BML port).

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Implement Auth middleware for Plack

Resolve authenticated user from session cookies via LJ::Session->session_from_cookies() and set the remote user for the request. Bypasses LJ::get_remote() directly since it depends on BML::get_request(), but subsequent get_remote() calls hit the cache. Supports dev server ?as=username impersonation.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Route embed module domain requests to embedcontent handler

When the request host matches $LJ::EMBED_MODULE_DOMAIN, force routing to /journal/embedcontent regardless of path, matching the Apache trans() behavior. Removes the last placeholder comment from app.psgi.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Implement BML rendering under Plack via DW::BML

Add DW::BML module that renders .bml pages using DW::Request instead of Apache APIs, allowing BML pages to work under Plack. The module reuses the core BML engine (bml_decode, bml_block, config loading, scheme/look system) from Apache::BML and only replaces the handler and request adapter layers.

Includes a RequestAdapter that makes DW::Request look like an Apache request object for BML's public API functions (BML::get_request(), etc.), BML fallback routing in app.psgi after DW::Routing, and tests.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Add homepage integration tests verifying tropo-red site scheme

Tests that GET /index returns 200, renders with the tropo-red body class, includes tropo-red.css, and has text/html content type. Restructured integration tests so real-routing tests run before the monkey-patch.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Add Starman dependency and dev server startup script

Add Starman to dependencies-cpanm and create bin/dev-plack-server for running Dreamwidth under Plack/Starman with a single worker in dev mode. Listens on 0.0.0.0:8080 by default, configurable via --port and --host.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Fix static file serving to search all htdocs directories

Static middleware now iterates over LJ::get_all_directories('htdocs') so files from extensions (e.g. dw-nonfree) are served alongside base htdocs. Uses pass_through so each layer falls through to the next when a file isn't found in that directory.

Fixes 404s for nonfree static assets like /img/tropo-red/dw_logo.png.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Provide BML package functions for Plack and initialize language getter

DW::BML now defines all BML::* package functions (ml, set_language, ehtml, get_request, cookies, etc.) and Apache::BML::* stubs at load time so they're available in any Plack web context. Previously these were only defined by Apache::BML which can't be loaded without Apache2::* modules.

RequestWrapper now calls BML::set_language with LJ::Lang::get_text on every request so translation strings resolve correctly for all pages.

Also fixes infinite recursion in the request adapter's overloaded hash classes by using array-based objects to avoid re-triggering %{} overload.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Fix login error display, URL doubling, and BML scope bridging

  • Display login errors in login.tt using Foundation alert-box pattern

  • Set ml_scope early in Login controller so LJ::Lang::ml resolves relative string codes before template rendering
  • Bridge BML and TT scope mechanisms: BML::ml falls back to $r->note('ml_scope') when $BML::ML_SCOPE is empty
  • Fix DW::Request::Plack::uri to return path only (matching Apache behavior) instead of full URL, which caused doubled URLs in every LJ::create_url call

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Fix cookie domain issues for dev container under Plack

The Redirects middleware used local $LJ::DOMAIN_WEB = "www.$LJ::DOMAIN" which leaked "www." into downstream cookie-setting code when $DOMAIN is empty (dev container). Changed to a lexical variable scoped to the redirect checks only.

Also set $COOKIE_DOMAIN to empty string in dev container defaults to prevent it defaulting to "." (just a dot), which browsers reject.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Update CLAUDE.md with Plack dev server and workflow notes

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Preserve cookies on Plack redirects and handle controller redirect responses

DW::Request::Plack::redirect was creating a new Plack::Response, discarding any cookies/headers already set on the request (e.g. login session cookies). Now builds the redirect from the existing response object. Also handle controller redirect responses (arrayrefs) in app.psgi dispatch.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Load real Apache::BML engine under Plack, fix BML strings and dev server usability

  • Load Apache::BML by stubbing Apache2/APR modules so the BML engine functions (bml_decode, load_conffile, parsein, etc.) are available under Plack without duplicating them. Fake Apache2::Const provides the constants Apache::BML needs.

  • Remove no-op stubs for BML::register_hook, set_config, register_language, etc. that were preventing BML config files (like BMLInit.pm) from registering the ml_getter hook. This fixes missing translation strings on BML pages.

  • Keep .bml in the language scope so LJ::Lang::get_text can match scope to .bml.text files, fixing [missing string] on BML pages.

  • Fix undef warnings in BML::decide_language.

  • Fix check_referer for dev servers with empty $LJ::DOMAIN by comparing referer host against the request Host header.

  • Auto-validate email on account creation in dev servers so new accounts can post immediately without email confirmation.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Fix grants

This supports both localhost (domain socket) and 127.0.0.1 (TCP socket) connections, which get triggered depending on how you access the database.

  • Fix missing standard CSS/JS resources and LJ::Memories under Plack

Under Plack, start_request called DW::Request->reset before the request was created, so the resource registration block (lj_base.css, esn.css, jquery UI, etc.) was skipped. Extract registration into LJ::register_standard_resources() and call it from the Plack middleware after the DW::Request is created.

Also add explicit use LJ::Memories in AccountStatistics widget, which was previously only loaded via modperl_subs.pl.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Add DW::Controller::Userpic to serve userpics via DW::Routing

Replaces the Apache::LiveJournal userpic_trans/userpic_content handlers with a proper controller that works under both Plack and mod_perl.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Add DW::Controller::Journal for journal rendering under Plack

Extract journal viewing pipeline from Apache::LiveJournal into a shared DW::Controller::Journal module. Journals are now accessible under Plack via path-based URLs (/~username/ and /users/username/).

  • Create DW::Controller::Journal with determine_view() and render() methods
  • Add journal path-based routing in app.psgi before BML fallback
  • Override $SUBDOMAIN_RULES for dev container to use path-based URLs
  • Fix LJ::User::journal_base to construct /~user URLs in dev container
  • Add OK/NOT_FOUND/DECLINED/status_line stubs to DW::BML::RequestAdapter
  • Load Apache2::Response in modperl_subs.pl for headers_out in trans phase
  • Fix S2 check_depth undef warnings by guarding before hash interpolation

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Load DW::Request::Apache2 at startup to bootstrap mod_perl XS methods

DW::Request no longer loads DW::Request::Apache2 at compile time (to support Plack), so Apache2::RequestRec XS methods like headers_out were never bootstrapped. Load DW::Request::Apache2 explicitly in modperl_subs.pl so all Apache2 XS methods are available during the PerlInitHandler/PerlTransHandler phases.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Fix redirect loop for path-based journal URLs under Apache

When SUBDOMAIN_RULES uses path-based URLs in the dev container, journal_base returns http://host/~user which matches the incoming /~user/ path, causing an infinite redirect. Detect this case and dispatch directly via $determine_view instead of redirecting.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Fix S2 stylesheet loading and warnings under Plack path-based URLs

The HTMLCleaner was stripping S2 stylesheet tags because valid_stylesheet_url didn't recognize /~user/res/N/stylesheet paths. Also adds set_last_modified/meets_conditions to DW::Request::Plack and fixes various uninitialized value warnings in the journal controller.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Update web runner name

Default to 3 workers and call it Starman! Because it is!

  • Fix shop links in dev container by setting SHOPROOT to /shop

When SHOPROOT was empty string, links like "$SHOPROOT/account" lost their /shop prefix and resolved to just /account, which doesn't route to the shop controllers.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Fix Auth middleware to always mark auth resolution and add safety docs

Always call set_remote(undef) when no authenticated user is found, so LJ::get_remote() won't re-enter session resolution via Login.pm (which crashes on null owner). Add safety comments to LJ_IS_DEV_SERVER env var and ?as= impersonation block. Fix plack-auth.t mocks to properly isolate test state.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Update Plack docs, fix CLAUDE.md startup command, remove Build.PL

Rewrite doc/PLACK.md to reflect current implementation: full middleware stack, routing pipeline, test suite, and security notes. Update CLAUDE.md to reference doc/PLACK.md and fix bin/starman command. Remove unused Build.PL.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Switch devcontainer to Starman on port 80, Apache available on 8081

Starman is now the primary web server in the devcontainer. Apache config is kept on port 8081 but not started by default (run apache2ctl start manually if needed). Added --log option to bin/starman for access and error logs. Removed spammy debug logging from app.psgi.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Add libgd-dev

Need this to build GD... sometimes? Docker caching memes.

  • Split devcontainer into setup.sh (one-time) and start.sh (every restart)

postCreateCommand runs setup.sh for DB init, schema loading, and static compilation. postStartCommand runs start.sh for mysql, memcached, and Starman on every container start. Added --daemonize flag to bin/starman so the process survives the parent shell exiting.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

  • Remove macos/brew

This was a brief experiment, but no longer needed now that devcontainer is working!

  • Extraneous, was part of a spurious misfire

  • Revert unnecessary changes to Utils.pm, Auth.pm; remove DBIx::Class dep

Revert LJ::Utils namespace refactor and LJ::Auth irand import — both were interim experiments that aren't needed. Remove unused DBIx::Class from dependencies-cpanm.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

The 2025 IFDB Awards are open!

2026-02-01 07:35 pm
[syndicated profile] ifdb_news_feed
The 2025 IFDB Awards are open from Feb 1 to Feb 15! The rules for the competition can be found here, and a list of all categories can be found here.
[syndicated profile] ifdb_news_feed
Overall Categories

Outstanding Game of the Year 2025

Author’s Choice for Best Game of 2025

Outstanding Debut 2025

Outstanding Game over 2 hours in 2025

Outstanding Short Game of 2025

Outstanding Underappreciated Game of 2025

Most Sequel-worthy game of 2025

Trailblazer Award of 2025

Outstanding Worldbuilding of 2025

Outstanding Use of Interactivity in 2025

Outstanding Retro Game of 2025

Outstanding Game for Beginners of 2025

Outstanding Multimedia Experience of 2025

Outstanding technical implementation of 2025

Outstanding NPC design of 2025

Outstanding Puzzle design of 2025

Outstanding Plot of 2025

Outstanding Writing of 2025

Language Categories

Outstanding German Game of 2025

Outstanding Spanish Game of 2025

Outstanding French Game of 2025

Genre Categories

Outstanding Fantasy Game of 2025

Outstanding Espionage Game of 2025

Outstanding Historical Game of 2025

Outstanding Horror Game of 2025

Outstanding Humor Game of 2025

Outstanding Mystery Game of 2025

Outstanding Romance Game of 2025

Outstanding Science Fiction Game of 2025

Outstanding Slice of Life Game of 2025

Outstanding Superhero Game of 2025

Outstanding Surreal Game of 2025

System Categories

Outstanding Inform 7 Game of 2025

Outstanding Twine Game of 2025

Outstanding Ink Game of 2025

Outstanding Choicescript Game of 2025

Outstanding Inform 6 Game of 2025

Outstanding PunyInform Game of 2025

Outstanding Game in a Custom System of 2025

Outstanding Godot Game of 2025

Outstanding Ren’py Game of 2025

Outstanding Adventuron Game of 2025

Outstanding Unity Game of 2025

Outstanding Bitsy Game of 2025

Outstanding TADS Game of 2025

Outstanding Decker Game of 2025

Outstanding Dialog Game of 2025

Outstanding Videotome Game of 2025

Outstanding Dendry/DendryNexus Gameof 2025

Outstanding Game in an Uncommon System of 2025

Rules for 2025 IFDB Awards

2026-02-01 07:22 pm
[syndicated profile] ifdb_news_feed
The IFDB Awards is an annual competition designed to award excellence in creating interactive fiction.It is held from February 1st to the first weekend after February 15th each year on the Interactive Fiction Database, and take the form of polls. Votes are public but anonymized. Every IFDB member is eligible to vote, except for one special poll, the Author’s Choice Poll. Eligibility to vote in the Author’s Choice competition is determined by having a game linked to your IFDB profile (this can be found by editing a game page and use the ‘Link to Author’s Profile’ feature. Authors added incorrectly to a game will not be permitted to vote (for instance, if someone associates a random game they didn’t make to their account). Rules for discussion and voting
-Voting must be in good faith and be based on personal experience with the games involved.
-Campaigning or organizing voting is not allowed if it breaks the above rule.
-Discussion of games on merit is allowed and encouraged.
-There is no hard limit on how many votes a person can cast in each poll for different games. A player voting for so many games that it makes voting difficult for others (such as voting for every game from the whole year) may have their votes removed, but only after warning.
-Author cannot vote for their own games. Such votes will be removed so that the running tallies are correct. Authors can post about their own games (for instance on intfiction) as long as doesn’t encourage people to break the rules (such as telling people to vote for your game even if they haven’t played it). Code of conduct -Voters must abide by the IFDB Code of Conduct. Harassment of other voters (including on other platforms) and creating multiple accounts for one person are prohibited. Moderation -Votes that are cast incorrectly (for instance, voting for a Twine game in a Choicescript poll) or fraudulently (for instance, using sockpuppet accounts) may be removed. Eligibility
-For most polls, games are eligible if they are listed on IFDB and have a publication date during 2025.
-For system-specific polls, games additionally must have the appropriate system or genre listed on their IFDB page under the specified field.
-Each poll will have a link to an IFDB search listing suggested games. Outside of system-based polls, users can vote for any game they feel fits the criteria.
-Any IFDB user can edit game pages to confirm eligibility. However, malicious editing (such as adding every genre to a game or adding incorrect systems to a game) will be reverted or removed.
-Any game author can opt out of the competition. Adding a note to the game page during the competition may be helpful to let others know not to vote for it, but opting out should be officially done by messaging the organizer (me, for now).
Results
-Results will be clearly visible throughout the poll. However, there will be a grace period of up to 3 days at the end to allow checking of votes before the official announcements, which will be made on Intfiction and IFDB.
-Polls with very low traffic will not have a winner awarded. This is left up to organizer discretion, but low traffic may include less than 5 votes for the winning game or less than ten votes total cast. Future of Awards One of the main purposes of these new awards is to be community-owned and regular. They need to keep working even if I don’t keep working. The awards begin on February 1st of each year. If Feb 1st passes without the current organizer having created the polls, anyone can create the polls themselves. The community can propose new changes to awards or new organizers via public discussion. A public yes/no poll on intfiction with more than 50% voting yes can be used to add new organizers. Current organizers can also add in other organizers or successors, subject to a public veto.
github: shadowy octopus with the head of a robot, emblazoned with the Dreamwidth swirl (Default)
[personal profile] github posting in [site community profile] changelog

Branch: refs/heads/main Home: https://github.com/dreamwidth/dreamwidth Commit: c6da53efa6c8618b11c94c79599446465d48639c https://github.com/dreamwidth/dreamwidth/commit/c6da53efa6c8618b11c94c79599446465d48639c Author: Mark Smith mark@dreamwidth.org Date: 2026-02-01 (Sun, 01 Feb 2026)

Changed paths: M .github/workflows/update-workflows.pl M bin/upgrading/update-db.pl M cgi-bin/DW/Controller/Login.pm

Log Message:


Tidy, ignore.

To unsubscribe from these emails, change your notification settings at https://github.com/dreamwidth/dreamwidth/settings/notifications

github: shadowy octopus with the head of a robot, emblazoned with the Dreamwidth swirl (Default)
[personal profile] github posting in [site community profile] changelog

Branch: refs/heads/main Home: https://github.com/dreamwidth/dreamwidth Commit: e9d9de85043730ef93413465a3fbba4417b4015b https://github.com/dreamwidth/dreamwidth/commit/e9d9de85043730ef93413465a3fbba4417b4015b Author: Mark Smith mark@dreamwidth.org Date: 2026-02-01 (Sun, 01 Feb 2026)

Changed paths: M cgi-bin/DW/Controller/Create.pm

Log Message:


Update Create controller to use current translation string keys

The gender and error strings referenced legacy BML keys (/manage/profile/index.bml.) that no longer exist. Updated to use the equivalent keys from the Template Toolkit text file (/manage/profile.tt.).

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

To unsubscribe from these emails, change your notification settings at https://github.com/dreamwidth/dreamwidth/settings/notifications

github: shadowy octopus with the head of a robot, emblazoned with the Dreamwidth swirl (Default)
[personal profile] github posting in [site community profile] changelog

Branch: refs/heads/main Home: https://github.com/dreamwidth/dreamwidth Commit: 3c2bcb44eabfdcf8893173f5ca57076915b391d2 https://github.com/dreamwidth/dreamwidth/commit/3c2bcb44eabfdcf8893173f5ca57076915b391d2 Author: Mark Smith mark@dreamwidth.org Date: 2026-02-01 (Sun, 01 Feb 2026)

Changed paths: M .devcontainer/Dockerfile M doc/dependencies-cpanm M etc/docker/base/Dockerfile M etc/docker/base22/Dockerfile M etc/docker/dev/Dockerfile

Log Message:


Unpin CGI and use metadb resolver for CPAN dependency fetching

CGI was pinned at 4.50 (for SameSite cookie support) but that version is no longer reliably available on CPAN mirrors. All later versions include SameSite support, so the pin is unnecessary. Also remove redundant CGI::Cookie entry since it's part of the CGI distribution.

Switch cpm to --resolver metadb to resolve download failures from default CPAN mirrors (backpan.perl.org, www.cpan.org).

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

To unsubscribe from these emails, change your notification settings at https://github.com/dreamwidth/dreamwidth/settings/notifications

github: shadowy octopus with the head of a robot, emblazoned with the Dreamwidth swirl (Default)
[personal profile] github posting in [site community profile] changelog

Branch: refs/heads/main Home: https://github.com/dreamwidth/dreamwidth Commit: 6519898408b5ed5106023a78af12de3ab3d0b334 https://github.com/dreamwidth/dreamwidth/commit/6519898408b5ed5106023a78af12de3ab3d0b334 Author: Mark Smith mark@dreamwidth.org Date: 2026-02-01 (Sun, 01 Feb 2026)

Changed paths: M bin/upgrading/update-db-general.pl M bin/upgrading/update-db.pl

Log Message:


Fix update-db.pl to not require running twice on fresh databases

Re-check for dbnotes table after table creation so alters can run in the same pass. Also fix MySQL 8.0+ compatibility in acctcode timegenerate column_type check, which dropped integer display widths causing the alter to run repeatedly.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

To unsubscribe from these emails, change your notification settings at https://github.com/dreamwidth/dreamwidth/settings/notifications

github: shadowy octopus with the head of a robot, emblazoned with the Dreamwidth swirl (Default)
[personal profile] github posting in [site community profile] changelog

Branch: refs/heads/main Home: https://github.com/dreamwidth/dreamwidth Commit: d4ab52f8e778d18367e5630e6d9f7ab8e31513e1 https://github.com/dreamwidth/dreamwidth/commit/d4ab52f8e778d18367e5630e6d9f7ab8e31513e1 Author: Mark Smith mark@dreamwidth.org Date: 2026-02-01 (Sun, 01 Feb 2026)

Changed paths: M cgi-bin/DW/Controller/Login.pm M cgi-bin/DW/Request/Base.pm

Log Message:


Fix uninitialized value warnings in login controller and cookie handling

Guard against undef post values when comparing expire/bindip checkbox fields that may not be present in the form submission. Also guard against undef domain in add_cookie's dot-domain check.

Co-Authored-By: Claude Opus 4.5 noreply@anthropic.com

To unsubscribe from these emails, change your notification settings at https://github.com/dreamwidth/dreamwidth/settings/notifications

james_davis_nicoll: (Default)
[personal profile] james_davis_nicoll


Can the world, and more importantly, AMERICA! (patriotic song here) fend off a subversive attack from space?

The Puppet Masters by Robert A. Heinlein
github: shadowy octopus with the head of a robot, emblazoned with the Dreamwidth swirl (Default)
[personal profile] github posting in [site community profile] changelog

Branch: refs/heads/main Home: https://github.com/dreamwidth/dreamwidth Commit: 8f455b757a8b81e68e696b54c0c33d61b8cf5b35 https://github.com/dreamwidth/dreamwidth/commit/8f455b757a8b81e68e696b54c0c33d61b8cf5b35 Author: Mark Smith mark@dreamwidth.org Date: 2026-01-31 (Sat, 31 Jan 2026)

Changed paths: M cgi-bin/DW/Controller/Login.pm

Log Message:


Move POST-only logic inside did_post guard in Login controller (#3511)

The username suffix parsing, credential extraction, and form auth check were running unconditionally on every request, causing uninitialized value warnings on GET. Move them inside the existing did_post block where they belong.

Co-authored-by: Claude Opus 4.5 noreply@anthropic.com

To unsubscribe from these emails, change your notification settings at https://github.com/dreamwidth/dreamwidth/settings/notifications

[syndicated profile] excuseoftheday_feed
the Spinning Beachball of Death

Deuteronomy 6:4-5

2026-02-01 12:00 pm
[syndicated profile] votd_feed
“Hear, O Israel: The LORD our God, the LORD is one. Love the LORD your God with all your heart and with all your soul and with all your strength.”

Brought to you by BibleGateway.com. Copyright (C) . All Rights Reserved.

gargantuan

2026-02-01 12:00 am
[syndicated profile] merriamwebster_feed

Merriam-Webster's Word of the Day for February 1, 2026 is:

gargantuan • \gahr-GAN-chuh-wun\  • adjective

Gargantuan describes something that is very large in size or amount; something gargantuan is, in other words, gigantic.

// Bigfoot is said to be a creature of gargantuan proportions.

See the entry >

Examples:

“By the late 1870s, he was asked to take part in the gargantuan task of evaluating and cataloguing the results of the five-year Challenger expedition—an ambitious British global research voyage, the first ever dedicated purely to science. [Ernst] Haeckel’s contribution to the final 50-volume Report of the Voyage of H.M.S. Challenger took a decade to complete and spanned three volumes, 2,750 pages, and 130 plates.” — Michael Benson, Nanocosmos: Journeys in Electron Space, 2025

Did you know?

Gargantua is the name of a giant king in François Rabelais's 16th-century satiric novel Gargantua, the second part of a five-volume series about the giant and his son Pantagruel. All of the details of Gargantua's life befit a giant. He rides a colossal mare whose tail switches so violently that it fells the entire forest of Orleans. He has an enormous appetite, such that in one incident he inadvertently swallows five pilgrims while eating a salad. The scale of everything connected with Gargantua led to the adjective gargantuan, which since William Shakespeare's time has been used for anything of tremendous size or volume.



github: shadowy octopus with the head of a robot, emblazoned with the Dreamwidth swirl (Default)
[personal profile] github posting in [site community profile] changelog

Branch: refs/heads/main Home: https://github.com/dreamwidth/dreamwidth Commit: f3ad4a9b098ca50b87ff6b78a739fa7b6b7d8145 https://github.com/dreamwidth/dreamwidth/commit/f3ad4a9b098ca50b87ff6b78a739fa7b6b7d8145 Author: Mark Smith mark@qq.is Date: 2026-01-31 (Sat, 31 Jan 2026)

Changed paths: M .devcontainer/devcontainer.json M .devcontainer/start.sh R .travis.yml A CLAUDE.md A package-lock.json A package.json

Log Message:


Slight fixes to devcontainer setup, and basic CLAUDE instructions

To unsubscribe from these emails, change your notification settings at https://github.com/dreamwidth/dreamwidth/settings/notifications

Style Credit

December 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 2023

Expand Cut Tags

No cut tags
Powered by Dreamwidth Studios
Page generated 2026-02-15 03:08 am