svn commit: r1917679 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2024-05-11 Thread gstein
Author: gstein Date: Sun May 12 04:22:28 2024 New Revision: 1917679 URL: http://svn.apache.org/viewvc?rev=1917679=rev Log: Fix bug: Popen objects do not have .write() Using .communicate() fixes this bug, and simplifies the code. * tools/hook-scripts/mailer/mailer.py: (PipeOutput.deliver): use

svn commit: r1917672 - in /subversion/trunk/tools/hook-scripts/mailer/tests: README.md mailer-t1.sh

2024-05-11 Thread gstein
Author: gstein Date: Sat May 11 17:53:49 2024 New Revision: 1917672 URL: http://svn.apache.org/viewvc?rev=1917672=rev Log: No idea why dos2unix is needed. Note that mailer-t1.sh is a shell script. This doesn't run on a DOS/Windows machine. Thus, the output from the test (.current) does not need

svn commit: r1917671 - /subversion/trunk/tools/hook-scripts/mailer/tests/mailer-t1.sh

2024-05-11 Thread gstein
Author: gstein Date: Sat May 11 16:49:53 2024 New Revision: 1917671 URL: http://svn.apache.org/viewvc?rev=1917671=rev Log: Use "seq" rather than python for a list of revnums. * tools/hook-scripts/mailer/tests/mailer-t1.sh: (..): replace a bit of python with a simple invocati

svn commit: r1917661 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2024-05-11 Thread gstein
Author: gstein Date: Sat May 11 06:15:38 2024 New Revision: 1917661 URL: http://svn.apache.org/viewvc?rev=1917661=rev Log: Clarify/document the configuration of groups. * tools/hook-scripts/mailer/mailer.py: (Config.__init__): define helper func build_section_ob() and use that to copy

svn commit: r1917658 - in /subversion/trunk/tools/hook-scripts/mailer/tests: mailer-t3.py t3/t3-fragment.conf

2024-05-10 Thread gstein
Author: gstein Date: Sat May 11 02:35:51 2024 New Revision: 1917658 URL: http://svn.apache.org/viewvc?rev=1917658=rev Log: Test some basic option fetching. * tools/hook-scripts/mailer/tests/mailer-t3.py: (test_config_parsing): output values for to/from_addr in order to test extraction

svn commit: r1917657 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2024-05-10 Thread gstein
Author: gstein Date: Sat May 11 01:57:01 2024 New Revision: 1917657 URL: http://svn.apache.org/viewvc?rev=1917657=rev Log: Remove the _groups instance variable. We actually don't need to retain an instance variable for the groups found in the configuration file. Keep this as a local variable

svn commit: r1917656 - /subversion/trunk/tools/hook-scripts/mailer/tests/mailer-t3.py

2024-05-10 Thread gstein
Author: gstein Date: Sat May 11 01:50:57 2024 New Revision: 1917656 URL: http://svn.apache.org/viewvc?rev=1917656=rev Log: Sort some output for stability/diffs. * tools/hook-scripts/mailer/tests/mailer-t3.py: (test_config_parsing): sort keys and maps for stability Modified: subversion

svn commit: r1917644 - /subversion/trunk/tools/hook-scripts/mailer/tests/mailer-t3.py

2024-05-10 Thread gstein
Author: gstein Date: Fri May 10 11:33:45 2024 New Revision: 1917644 URL: http://svn.apache.org/viewvc?rev=1917644=rev Log: Use pathlib for path processing. * tools/hook-scripts/mailer/tests/mailer-t3.py: (): import pathlib. Adjust SCRIPT_DIR and T3_DIR, and the import path

svn commit: r1917643 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2024-05-10 Thread gstein
Author: gstein Date: Fri May 10 11:25:59 2024 New Revision: 1917643 URL: http://svn.apache.org/viewvc?rev=1917643=rev Log: Refine workflow for constructing path-groups. * tools/hook-scripts/mailer/mailer.py: (Config.__init__): _prep_maps() now returns sections that are being used to map

svn commit: r1917640 - in /subversion/trunk/tools/hook-scripts/mailer/tests: mailer-t3.py t3/

2024-05-10 Thread gstein
Author: gstein Date: Fri May 10 09:36:50 2024 New Revision: 1917640 URL: http://svn.apache.org/viewvc?rev=1917640=rev Log: Initial draft for a test of config processing. The config processing of mailer.py can be very complicated for large installations (eg. the ASF itself). This is the start

svn commit: r1917633 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2024-05-10 Thread gstein
Author: gstein Date: Fri May 10 07:54:18 2024 New Revision: 1917633 URL: http://svn.apache.org/viewvc?rev=1917633=rev Log: Small tweak to clarify a constant. * tools/hook-scripts/mailer/mailer.py: (Config): rename _predefined to PREDEFINED (Config.__init__): follow the rename Modified

svn commit: r1917632 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2024-05-10 Thread gstein
Author: gstein Date: Fri May 10 07:48:52 2024 New Revision: 1917632 URL: http://svn.apache.org/viewvc?rev=1917632=rev Log: Clarify/document some parameter processing, particular around groups that specify they only apply to particular repositories (via the "for_repos" config val

svn commit: r1917169 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2024-04-19 Thread gstein
Author: gstein Date: Fri Apr 19 23:20:54 2024 New Revision: 1917169 URL: http://svn.apache.org/viewvc?rev=1917169=rev Log: Omit the content of the diffs, when the message becomes too long. Just rely on leaving a diff URL. * tools/hook-scripts/mailer/mailer.py: (Commit.long_commit): pass False

svn commit: r1917168 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2024-04-19 Thread gstein
Author: gstein Date: Fri Apr 19 21:27:54 2024 New Revision: 1917168 URL: http://svn.apache.org/viewvc?rev=1917168=rev Log: Implement a maximum message length; will be used for emails (SMTP, Pipe outputs). * tools/hook-scripts/mailer/mailer.py: (Writer.__init__): accept and save a MAXBYTES

svn commit: r1917167 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2024-04-19 Thread gstein
Author: gstein Date: Fri Apr 19 20:49:08 2024 New Revision: 1917167 URL: http://svn.apache.org/viewvc?rev=1917167=rev Log: Minor tweaks to start thinking about email using just URLs to keep the message within the size limit. * tools/hook-scripts/mailer/mailer.py: (generate_content): renamed

svn commit: r1914923 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-12-25 Thread gstein
Author: gstein Date: Mon Dec 25 14:15:21 2023 New Revision: 1914923 URL: http://svn.apache.org/viewvc?rev=1914923=rev Log: make a note, for future fix Modified: subversion/trunk/tools/hook-scripts/mailer/mailer.py Modified: subversion/trunk/tools/hook-scripts/mailer/mailer.py URL: http

svn commit: r1914922 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-12-25 Thread gstein
Author: gstein Date: Mon Dec 25 11:23:19 2023 New Revision: 1914922 URL: http://svn.apache.org/viewvc?rev=1914922=rev Log: Combine .start() and .finish() into a single deliver() method. * tools/hook-scripts/mailer/mailer.py: (OutputBase.send): rename BASIC_SUBJECT to SUBJECT_LINE

svn commit: r1914918 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-12-24 Thread gstein
Author: gstein Date: Mon Dec 25 04:34:26 2023 New Revision: 1914918 URL: http://svn.apache.org/viewvc?rev=1914918=rev Log: start a move to 4-space standard Modified: subversion/trunk/tools/hook-scripts/mailer/mailer.py Modified: subversion/trunk/tools/hook-scripts/mailer/mailer.py URL

svn commit: r1914915 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-12-24 Thread gstein
Author: gstein Date: Mon Dec 25 02:04:08 2023 New Revision: 1914915 URL: http://svn.apache.org/viewvc?rev=1914915=rev Log: Adjust dataflow so that all output methods buffer the message content. If this becomes too large (not yet implemented), then the buffer will be truncated/reset and a short

svn commit: r1914913 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-12-24 Thread gstein
Author: gstein Date: Sun Dec 24 21:28:22 2023 New Revision: 1914913 URL: http://svn.apache.org/viewvc?rev=1914913=rev Log: Switch to boolean return values for .generate() rather than an exit code. Map the bool to an exit code for sys.exit() * tools/hook-scripts/mailer/mailer.py

svn commit: r1914899 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-12-23 Thread gstein
Author: gstein Date: Sun Dec 24 00:24:03 2023 New Revision: 1914899 URL: http://svn.apache.org/viewvc?rev=1914899=rev Log: Create a new send() method on OutputBase to wrap up the construction of messages, with a long-format and a short-format fallback. * tools/hook-scripts/mailer/mailer.py

svn commit: r1914729 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-12-16 Thread gstein
Author: gstein Date: Sat Dec 16 23:29:33 2023 New Revision: 1914729 URL: http://svn.apache.org/viewvc?rev=1914729=rev Log: Fix PropChange.generate * tools/hook-scripts/mailer/mailer.py (OutputBase.run): remove, because below was the only usage. (PropChange.generate): use generate_diff

svn commit: r1914682 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-12-15 Thread gstein
Author: gstein Date: Fri Dec 15 10:33:53 2023 New Revision: 1914682 URL: http://svn.apache.org/viewvc?rev=1914682=rev Log: Simplify generate_changelist_diffs() by iterating the CHANGELIST parameter, rather than indexing into it. Remove the fake SELF. * tools/hook-scripts/mailer/mailer.py

svn commit: r1914681 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-12-15 Thread gstein
Author: gstein Date: Fri Dec 15 10:17:15 2023 New Revision: 1914681 URL: http://svn.apache.org/viewvc?rev=1914681=rev Log: Switch from a generator class/object to a simple generation function. * tools/hook-scripts/mailer/mailer.py: (generate_content): use new function, rather than the old

svn commit: r1914680 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-12-15 Thread gstein
Author: gstein Date: Fri Dec 15 10:03:50 2023 New Revision: 1914680 URL: http://svn.apache.org/viewvc?rev=1914680=rev Log: Switch from a generator class/object to a generator function. * tools/hook-scripts/mailer/mailer.py (DiffGenerator.__getitem__): use the new generator_diff() generator

svn commit: r1914679 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-12-15 Thread gstein
Author: gstein Date: Fri Dec 15 09:44:03 2023 New Revision: 1914679 URL: http://svn.apache.org/viewvc?rev=1914679=rev Log: class DifflibDiffContent does not work, and maybe never did. There is no .next() method on the unified_diff() result object. While it would be possible to use the next

svn commit: r1914656 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-12-14 Thread gstein
Author: gstein Date: Thu Dec 14 11:36:51 2023 New Revision: 1914656 URL: http://svn.apache.org/viewvc?rev=1914656=rev Log: Move some utility class instantiations into the DiffGenerator. * tools/hook-scripts/mailer/mailer.py: (generate_content): do not bother with creating DiffSelections

svn commit: r1914650 [1/2] - in /subversion/trunk/tools/hook-scripts/mailer/tests: ./ mailer-t2.sh t2-reference/ t2-reference/output.1849322 t2-reference/output.1884610 t2-reference/output.1902575 t2-

2023-12-13 Thread gstein
Author: gstein Date: Thu Dec 14 07:42:34 2023 New Revision: 1914650 URL: http://svn.apache.org/viewvc?rev=1914650=rev Log: Add a second test for the mailer.py script, using revisions from Apache Subversion itself, rather than mocked up revisions. * subversion/tools/hook-scripts/mailer/tests

svn commit: r1914650 [2/2] - in /subversion/trunk/tools/hook-scripts/mailer/tests: ./ mailer-t2.sh t2-reference/ t2-reference/output.1849322 t2-reference/output.1884610 t2-reference/output.1902575 t2-

2023-12-13 Thread gstein
Added: subversion/trunk/tools/hook-scripts/mailer/tests/t2-reference/output.1912632 URL: http://svn.apache.org/viewvc/subversion/trunk/tools/hook-scripts/mailer/tests/t2-reference/output.1912632?rev=1914650=auto == ---

svn propchange: r1913315 - svn:log

2023-10-25 Thread gstein
Author: gstein Revision: 1913315 Modified property: svn:log Modified: svn:log at Wed Oct 25 08:29:57 2023 -- --- svn:log (original) +++ svn:log Wed Oct 25 08:29:57 2023 @@ -1 +1,5 @@ -. +Simplify some dirlist handling

svn propchange: r1913315 - svn:log

2023-10-25 Thread gstein
Author: gstein Revision: 1913315 Modified property: svn:log Modified: svn:log at Wed Oct 25 08:28:45 2023 -- --- svn:log (original) +++ svn:log Wed Oct 25 08:28:45 2023 @@ -1 +1 @@ -simplify dirlist handling; avoid

svn commit: r1913315 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-25 Thread gstein
Author: gstein Date: Wed Oct 25 08:28:11 2023 New Revision: 1913315 URL: http://svn.apache.org/viewvc?rev=1913315=rev Log: simplify dirlist handling; avoid in-place change Modified: subversion/trunk/tools/hook-scripts/mailer/mailer.py Modified: subversion/trunk/tools/hook-scripts/mailer

svn commit: r1913313 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-25 Thread gstein
Author: gstein Date: Wed Oct 25 07:51:23 2023 New Revision: 1913313 URL: http://svn.apache.org/viewvc?rev=1913313=rev Log: Move the output from being tied to the action being performed. It is only important when the notification is being generated. * tools/hook-scripts/mailer/mailer.py: (main

svn commit: r1913312 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-25 Thread gstein
Author: gstein Date: Wed Oct 25 07:35:37 2023 New Revision: 1913312 URL: http://svn.apache.org/viewvc?rev=1913312=rev Log: Move prefix_param to the Messenger (bad name) rather than the output mechanism. Adjust some various initialization params. * tools/hook-scripts/mailer/mailer.py: (main

svn commit: r1913311 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-24 Thread gstein
Author: gstein Date: Wed Oct 25 05:35:06 2023 New Revision: 1913311 URL: http://svn.apache.org/viewvc?rev=1913311=rev Log: Move the make_subject() method from OutputBase to Messenger. Almost no code change. Had to change to .output.prefix_param. * tools/hook-scripts/mailer/mailer.py

svn commit: r1913310 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-24 Thread gstein
Author: gstein Date: Wed Oct 25 05:30:24 2023 New Revision: 1913310 URL: http://svn.apache.org/viewvc?rev=1913310=rev Log: Move construction of a subject line from the output mechanism over to the action classes. Note: this includes a small shim to avoid copy/paste while making substantial

svn commit: r1913309 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-24 Thread gstein
Author: gstein Date: Wed Oct 25 04:53:41 2023 New Revision: 1913309 URL: http://svn.apache.org/viewvc?rev=1913309=rev Log: The subject line is based on the action type, not the output mechanism. Move it from OutputBase to Messenger. Adjust the various dataflows to account for the move. * tools

svn commit: r1913230 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-23 Thread gstein
Author: gstein Date: Mon Oct 23 09:57:15 2023 New Revision: 1913230 URL: http://svn.apache.org/viewvc?rev=1913230=rev Log: Reduce reliance on a stored pool (bad form), and pass a scratch pool to the generate() method. * tools/hook-scripts/mailer/mailer.py: (main): pass a pool

svn commit: r1913225 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-23 Thread gstein
Author: gstein Date: Mon Oct 23 06:06:36 2023 New Revision: 1913225 URL: http://svn.apache.org/viewvc?rev=1913225=rev Log: Small tweak re: pool reference. * tools/hook-scripts/mailer/mailer.py: (Commit.__init__): use POOL rather than self.pool, as the argument is the same object. Modified

svn commit: r1913219 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-22 Thread gstein
Author: gstein Date: Mon Oct 23 03:00:22 2023 New Revision: 1913219 URL: http://svn.apache.org/viewvc?rev=1913219=rev Log: Revise pool usage for .get_rev_prop() to the standard "scratch_pool" pattern, rather than using a stored pool. * tools/hook-scripts/mailer/mailer.py: (Commi

svn commit: r1913188 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-21 Thread gstein
Author: gstein Date: Sun Oct 22 05:27:14 2023 New Revision: 1913188 URL: http://svn.apache.org/viewvc?rev=1913188=rev Log: Switch from passing a group of four lists, to just the summary. * tools/hook-scripts/mailer/mailer.py: (generate_content): use summary and other_summary, rather than

svn commit: r1913187 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-21 Thread gstein
Author: gstein Date: Sun Oct 22 05:19:13 2023 New Revision: 1913187 URL: http://svn.apache.org/viewvc?rev=1913187=rev Log: Switch to gathering a group of all four types of modifications into a summary of paths changed. * tools/hook-scripts/mailer/mailer.py: (generate_content): use

svn commit: r1913186 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-21 Thread gstein
Author: gstein Date: Sun Oct 22 05:05:50 2023 New Revision: 1913186 URL: http://svn.apache.org/viewvc?rev=1913186=rev Log: Start removing lambda/strings and move to CHANGE_ACTION values. * tools/hook-scripts/mailer/mailer.py: (generate_list): pass a CHANGE_ACTION value, rather than a func

svn propchange: r1913183 - svn:log

2023-10-21 Thread gstein
Author: gstein Revision: 1913183 Modified property: svn:log Modified: svn:log at Sun Oct 22 04:58:30 2023 -- --- svn:log (original) +++ svn:log Sun Oct 22 04:58:30 2023 @@ -1 +1,5 @@ -minor change to reduce diffs

svn commit: r1913183 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-21 Thread gstein
Author: gstein Date: Sun Oct 22 04:55:26 2023 New Revision: 1913183 URL: http://svn.apache.org/viewvc?rev=1913183=rev Log: minor change to reduce diffs in a future rev Modified: subversion/trunk/tools/hook-scripts/mailer/mailer.py Modified: subversion/trunk/tools/hook-scripts/mailer

svn commit: r1912978 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-15 Thread gstein
Author: gstein Date: Sun Oct 15 07:19:29 2023 New Revision: 1912978 URL: http://svn.apache.org/viewvc?rev=1912978=rev Log: Reorganize mechanisms for writing to the output, using new Writer class. The goal is to encapsulate the output stream's ENCODING into a writer class. In the future

svn commit: r1912977 - /subversion/trunk/tools/hook-scripts/mailer/mailer.py

2023-10-14 Thread gstein
Author: gstein Date: Sun Oct 15 05:03:47 2023 New Revision: 1912977 URL: http://svn.apache.org/viewvc?rev=1912977=rev Log: Adjust some dataflow for future work to incorporate additional features. Eliminate the TextCommitRenderer class, which was just a holder for OUTPUT. Convert the rendering

svn commit: r1912387 - /subversion/trunk/tools/hook-scripts/mailer/tests/README.md

2023-09-18 Thread gstein
Author: gstein Date: Mon Sep 18 08:13:36 2023 New Revision: 1912387 URL: http://svn.apache.org/viewvc?rev=1912387=rev Log: start some notes on how to init/run the mailer tests Added: subversion/trunk/tools/hook-scripts/mailer/tests/README.md Added: subversion/trunk/tools/hook-scripts/mailer

svn commit: r1889787 - /subversion/trunk/tools/server-side/svnpubsub/daemonize.py

2021-05-12 Thread gstein
Author: gstein Date: Wed May 12 06:44:25 2021 New Revision: 1889787 URL: http://svn.apache.org/viewvc?rev=1889787=rev Log: Correct the comment, regarding "upstream". Modified: subversion/trunk/tools/server-side/svnpubsub/daemonize.py Modified: subversion/trunk/tools/server-side

svn commit: r1825853 - /subversion/site/staging/docs/release-notes/1.10.html

2018-03-04 Thread gstein
Author: gstein Date: Mon Mar 5 07:22:56 2018 New Revision: 1825853 URL: http://svn.apache.org/viewvc?rev=1825853=rev Log: Tweaks to the 1.0 release notes. * release-notes/1.10.html: (Filesystem format bump): clarify f8 is new to 1.10. link "svnadmin info" to

svn commit: r1825449 - /subversion/site/staging/docs/release-notes/1.10.html

2018-02-27 Thread gstein
Author: gstein Date: Tue Feb 27 13:46:48 2018 New Revision: 1825449 URL: http://svn.apache.org/viewvc?rev=1825449=rev Log: rewrite unclear sentence. fix typo. Modified: subversion/site/staging/docs/release-notes/1.10.html Modified: subversion/site/staging/docs/release-notes/1.10.html URL

svn commit: r1728244 - in /subversion/trunk/contrib/server-side/svncutter: README svncutter

2016-02-02 Thread gstein
Author: gstein Date: Wed Feb 3 01:34:44 2016 New Revision: 1728244 URL: http://svn.apache.org/viewvc?rev=1728244=rev Log: Deprecate svn cutter, per ESR's email to dev@subversion. Point to his new "reposurgeon" project site. See: Message-Id: <20160202234208.b098313a0...@snar

svn commit: r1727150 - in /subversion/site/publish: images/apache-logo.png site-banner.html

2016-01-27 Thread gstein
Author: gstein Date: Wed Jan 27 18:38:45 2016 New Revision: 1727150 URL: http://svn.apache.org/viewvc?rev=1727150=rev Log: * publish/site-banner.html: tweak to reference new logo * publish/images/apache-logo.png: new ASF logo Added: subversion/site/publish/images/apache-logo.png

svn commit: r1715308 - /subversion/branches/1.9.x/STATUS

2015-11-19 Thread gstein
Author: gstein Date: Fri Nov 20 00:11:31 2015 New Revision: 1715308 URL: http://svn.apache.org/viewvc?rev=1715308=rev Log: some votes Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches/1.9.x/STATUS?rev

svn commit: r1674646 - /subversion/branches/1.9.x/STATUS

2015-04-19 Thread gstein
Author: gstein Date: Sun Apr 19 17:45:10 2015 New Revision: 1674646 URL: http://svn.apache.org/r1674646 Log: you bet. Modified: subversion/branches/1.9.x/STATUS Modified: subversion/branches/1.9.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches/1.9.x/STATUS?rev=1674646r1

svn commit: r1674645 - /subversion/branches/1.8.x/STATUS

2015-04-19 Thread gstein
Author: gstein Date: Sun Apr 19 17:44:13 2015 New Revision: 1674645 URL: http://svn.apache.org/r1674645 Log: yeup. Modified: subversion/branches/1.8.x/STATUS Modified: subversion/branches/1.8.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x/STATUS?rev=1674645r1

svn commit: r1515866 - /subversion/branches/1.8.x-r175-daemonize/

2013-08-20 Thread gstein
Author: gstein Date: Tue Aug 20 16:46:34 2013 New Revision: 1515866 URL: http://svn.apache.org/r1515866 Log: Create a 1.8.x backport branch to pick up r175 of daemonize.py (rather than backporting trunk's copy which has major changes). Added: subversion/branches/1.8.x-r175-daemonize

svn commit: r1515871 - /subversion/branches/1.8.x-r175-daemonize/tools/server-side/svnpubsub/daemonize.py

2013-08-20 Thread gstein
Author: gstein Date: Tue Aug 20 16:51:29 2013 New Revision: 1515871 URL: http://svn.apache.org/r1515871 Log: Grab r175 from upstream. The patch doesn't apply cleanly, so I manually applied and indented properly. Suggested by: danielsh * tools/server-side/svnpubsub/daemonize.py

svn commit: r1515864 - /subversion/trunk/tools/server-side/svnpubsub/daemonize.py

2013-08-20 Thread gstein
Author: gstein Date: Tue Aug 20 16:42:11 2013 New Revision: 1515864 URL: http://svn.apache.org/r1515864 Log: Track upstream: pick up r175, which fixes a potential symlink attack on the pidfile. * tools/server-side/svnpubsub/daemonize.py: new version Modified: subversion/trunk/tools/server

svn commit: r1515876 - /subversion/branches/1.8.x/STATUS

2013-08-20 Thread gstein
Author: gstein Date: Tue Aug 20 16:59:21 2013 New Revision: 1515876 URL: http://svn.apache.org/r1515876 Log: Nominate r175 (sorta). danielsh voted via IRC. Modified: subversion/branches/1.8.x/STATUS Modified: subversion/branches/1.8.x/STATUS URL: http://svn.apache.org/viewvc/subversion

svn commit: r1515626 - in /subversion/site/publish: index.html news.html

2013-08-19 Thread gstein
Author: gstein Date: Mon Aug 19 21:57:19 2013 New Revision: 1515626 URL: http://svn.apache.org/r1515626 Log: Fix Subversion's name. * site/publish/index.html: * site/publish/news.html: (...): the 1.7.x series is named Apache Subversion Modified: subversion/site/publish/index.html

svn commit: r1515628 - /subversion/site/publish/download/download.html

2013-08-19 Thread gstein
Author: gstein Date: Mon Aug 19 22:01:02 2013 New Revision: 1515628 URL: http://svn.apache.org/r1515628 Log: * site/publish/download/download.html: [supported]: this is hosted on the mirror network. remove note about tigris.org. Modified: subversion/site/publish/download/download.html

svn commit: r1515635 - /subversion/trunk/tools/dist/templates/download.ezt

2013-08-19 Thread gstein
Author: gstein Date: Mon Aug 19 22:09:07 2013 New Revision: 1515635 URL: http://svn.apache.org/r1515635 Log: * tools/dist/templates/download.ezt: (...): throw an Apache in there Modified: subversion/trunk/tools/dist/templates/download.ezt Modified: subversion/trunk/tools/dist/templates

svn commit: r1515636 - /subversion/site/publish/download/download.html

2013-08-19 Thread gstein
Author: gstein Date: Mon Aug 19 22:11:11 2013 New Revision: 1515636 URL: http://svn.apache.org/r1515636 Log: Propagate the r1515635 template change into the generated page. * site/publish/download/download.html: (...): label the sections with the full Apache Subversion name Modified

svn commit: r1502668 - /subversion/branches/1.8.x-busted-proxy/

2013-07-12 Thread gstein
Author: gstein Date: Fri Jul 12 20:04:52 2013 New Revision: 1502668 URL: http://svn.apache.org/r1502668 Log: Remove obsoleted branch. Removed: subversion/branches/1.8.x-busted-proxy/

svn commit: r1502667 - /subversion/branches/1.8.x/STATUS

2013-07-12 Thread gstein
Author: gstein Date: Fri Jul 12 20:04:17 2013 New Revision: 1502667 URL: http://svn.apache.org/r1502667 Log: Move approved tristate chunking branch to Approved. Remove obsoleted busted-proxy and related 411 error message groups. Modified: subversion/branches/1.8.x/STATUS Modified

svn commit: r1502097 - in /subversion/trunk/subversion: include/svn_config.h libsvn_ra_serf/ra_serf.h libsvn_ra_serf/serf.c libsvn_subr/config_file.c

2013-07-10 Thread gstein
Author: gstein Date: Thu Jul 11 03:46:38 2013 New Revision: 1502097 URL: http://svn.apache.org/r1502097 Log: Resolve concerns about the chunked detection config knob. Proposed by: danielsh, breser * subversion/include/svn_config.h: (SVN_CONFIG_OPTION_BUSTED_PROXY): rename

svn commit: r1502099 - in /subversion/branches/1.8.x-busted-proxy/subversion: include/svn_config.h libsvn_ra_serf/serf.c

2013-07-10 Thread gstein
Author: gstein Date: Thu Jul 11 03:51:38 2013 New Revision: 1502099 URL: http://svn.apache.org/r1502099 Log: On the 1.8.x-busted-proxy branch: Revert r1499225 (restore public CONFIG_OPTION symbol). Modified: subversion/branches/1.8.x-busted-proxy/subversion/include/svn_config.h

svn propchange: r1499225 - svn:log

2013-07-10 Thread gstein
Author: gstein Revision: 1499225 Modified property: svn:log Modified: svn:log at Thu Jul 11 03:52:13 2013 -- --- svn:log (original) +++ svn:log Thu Jul 11 03:52:13 2013 @@ -1,5 +1,7 @@ On the 1.8.x-busted-proxy branch

svn commit: r1502101 - in /subversion/branches/1.8.x-busted-proxy: ./ subversion/include/svn_config.h subversion/libsvn_ra_serf/ra_serf.h subversion/libsvn_ra_serf/serf.c subversion/libsvn_subr/config

2013-07-10 Thread gstein
Author: gstein Date: Thu Jul 11 03:53:46 2013 New Revision: 1502101 URL: http://svn.apache.org/r1502101 Log: On the 1.8.x-busted-proxy branch: Merge r1502099 (uses new option name) Modified: subversion/branches/1.8.x-busted-proxy/ (props changed) subversion/branches/1.8.x-busted-proxy

svn commit: r1502104 - in /subversion/branches/1.8.x-busted-proxy/subversion: include/svn_config.h libsvn_ra_serf/serf.c

2013-07-10 Thread gstein
Author: gstein Date: Thu Jul 11 04:02:36 2013 New Revision: 1502104 URL: http://svn.apache.org/r1502104 Log: On the 1.8.x-busted-proxy branch: One more time: remove the public symbol, and switch to a private symbol. Modified: subversion/branches/1.8.x-busted-proxy/subversion/include

svn commit: r1502106 [5/5] - in /subversion/branches/1.8.x-busted-proxy: ./ build/ac-macros/ build/generator/ subversion/bindings/javahl/native/ subversion/bindings/swig/perl/libsvn_swig_perl/ subvers

2013-07-10 Thread gstein
Modified: subversion/branches/1.8.x-busted-proxy/subversion/tests/svn_test_fs.c URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x-busted-proxy/subversion/tests/svn_test_fs.c?rev=1502106r1=1502105r2=1502106view=diff

svn commit: r1502106 [2/5] - in /subversion/branches/1.8.x-busted-proxy: ./ build/ac-macros/ build/generator/ subversion/bindings/javahl/native/ subversion/bindings/swig/perl/libsvn_swig_perl/ subvers

2013-07-10 Thread gstein
Modified: subversion/branches/1.8.x-busted-proxy/subversion/libsvn_ra_svn/protocol URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x-busted-proxy/subversion/libsvn_ra_svn/protocol?rev=1502106r1=1502105r2=1502106view=diff

svn commit: r1502108 - /subversion/branches/1.8.x/STATUS

2013-07-10 Thread gstein
Author: gstein Date: Thu Jul 11 04:13:47 2013 New Revision: 1502108 URL: http://svn.apache.org/r1502108 Log: update for the 1.8.x-busted-proxy branch Modified: subversion/branches/1.8.x/STATUS Modified: subversion/branches/1.8.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches

svn commit: r1502109 - /subversion/trunk/subversion/libsvn_ra_serf/util.c

2013-07-10 Thread gstein
Author: gstein Date: Thu Jul 11 04:15:47 2013 New Revision: 1502109 URL: http://svn.apache.org/r1502109 Log: Revise the 411 help message, added in r1500837 and r1500857 * subversion/libsvn_ra_serf/util.c: (svn_ra_serf__error_on_status): update config option name Modified: subversion/trunk

svn commit: r1502111 - /subversion/branches/1.8.x/STATUS

2013-07-10 Thread gstein
Author: gstein Date: Thu Jul 11 04:20:30 2013 New Revision: 1502111 URL: http://svn.apache.org/r1502111 Log: merge two patch suggestions and apply a third revision. apply lots of muddling to the voting matrix. Modified: subversion/branches/1.8.x/STATUS Modified: subversion/branches/1.8.x

svn commit: r1501629 - /subversion/branches/1.8.x/STATUS

2013-07-09 Thread gstein
Author: gstein Date: Wed Jul 10 01:28:10 2013 New Revision: 1501629 URL: http://svn.apache.org/r1501629 Log: add veto to 1049 group Modified: subversion/branches/1.8.x/STATUS Modified: subversion/branches/1.8.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x/STATUS?rev

svn commit: r1500234 - /subversion/site/publish/docs/community-guide/general.part.html

2013-07-06 Thread gstein
Author: gstein Date: Sat Jul 6 09:21:19 2013 New Revision: 1500234 URL: http://svn.apache.org/r1500234 Log: * site/publish/docs/community-guide/general.part.html: (...): add rel=nofollow on links to commercial sites Modified: subversion/site/publish/docs/community-guide/general.part.html

svn commit: r1499222 - /subversion/branches/1.8.x-busted-proxy/

2013-07-03 Thread gstein
Author: gstein Date: Wed Jul 3 06:24:36 2013 New Revision: 1499222 URL: http://svn.apache.org/r1499222 Log: Set up a branch for merging the busted-proxy work to 1.8.x Added: subversion/branches/1.8.x-busted-proxy/ (props changed) - copied from r1499221, subversion/branches/1.8.x

svn propchange: r1489117 - svn:log

2013-07-03 Thread gstein
Author: gstein Revision: 1489117 Modified property: svn:log Modified: svn:log at Wed Jul 3 06:30:16 2013 -- --- svn:log (original) +++ svn:log Wed Jul 3 06:30:16 2013 @@ -1,3 +1,3 @@ * subversion/libsvn_ra_serf/util.c

svn commit: r1499223 - in /subversion/branches/1.8.x-busted-proxy: ./ subversion/include/ subversion/libsvn_ra_serf/ subversion/libsvn_subr/

2013-07-03 Thread gstein
Author: gstein Date: Wed Jul 3 06:36:39 2013 New Revision: 1499223 URL: http://svn.apache.org/r1499223 Log: On the 1.8.x-busted-proxy branch: Merge (cleanly) r1489117, r1496470, r1497975, r1497980, r1498012. Modified: subversion/branches/1.8.x-busted-proxy/ (props changed) subversion

svn commit: r1499225 - in /subversion/branches/1.8.x-busted-proxy/subversion: include/svn_config.h libsvn_ra_serf/serf.c

2013-07-03 Thread gstein
Author: gstein Date: Wed Jul 3 06:41:57 2013 New Revision: 1499225 URL: http://svn.apache.org/r1499225 Log: On the 1.8.x-busted-proxy branch: In the spirit of r1496550, shift the BUSTED_PROXY config to a local symbol within ra_serf. * subversion/include/svn_config.h

svn commit: r1499227 - /subversion/branches/1.8.x/STATUS

2013-07-03 Thread gstein
Author: gstein Date: Wed Jul 3 06:49:35 2013 New Revision: 1499227 URL: http://svn.apache.org/r1499227 Log: Add one more revision to the busted proxy group for a clean merge. It is kind of nice for the branch, anyways. Spec the actual branch now, and detail its changes. Modified

svn commit: r1499595 - /subversion/trunk/subversion/libsvn_ra_serf/serf.c

2013-07-03 Thread gstein
Author: gstein Date: Wed Jul 3 23:06:28 2013 New Revision: 1499595 URL: http://svn.apache.org/r1499595 Log: Don't probe for busted proxies if a redirect has occurred. We'll check once the redirects stop. Reported by: philip * subversion/libsvn_ra_serf/serf.c (svn_ra_serf__open): only run

svn commit: r1499596 - in /subversion/branches/1.8.x-busted-proxy: ./ subversion/libsvn_ra_serf/options.c subversion/libsvn_ra_serf/serf.c

2013-07-03 Thread gstein
Author: gstein Date: Wed Jul 3 23:09:47 2013 New Revision: 1499596 URL: http://svn.apache.org/r1499596 Log: On the 1.8.x-busted-proxy branch: Merge: r1499423, r1499595 Modified: subversion/branches/1.8.x-busted-proxy/ (props changed) subversion/branches/1.8.x-busted-proxy/subversion

svn commit: r1499597 - /subversion/branches/1.8.x/STATUS

2013-07-03 Thread gstein
Author: gstein Date: Wed Jul 3 23:10:32 2013 New Revision: 1499597 URL: http://svn.apache.org/r1499597 Log: couple more revs for the busted-proxy backport Modified: subversion/branches/1.8.x/STATUS Modified: subversion/branches/1.8.x/STATUS URL: http://svn.apache.org/viewvc/subversion

svn propchange: r1498885 - svn:log

2013-07-02 Thread gstein
Author: gstein Revision: 1498885 Modified property: svn:log Modified: svn:log at Tue Jul 2 17:59:50 2013 -- --- svn:log (original) +++ svn:log Tue Jul 2 17:59:50 2013 @@ -2,5 +2,5 @@ Fix change initialization in the Ev2

svn commit: r1499215 - /subversion/branches/1.8.x/STATUS

2013-07-02 Thread gstein
Author: gstein Date: Wed Jul 3 05:30:02 2013 New Revision: 1499215 URL: http://svn.apache.org/r1499215 Log: Some voting. Add a (concept) backport. Some more work is needed. Modified: subversion/branches/1.8.x/STATUS Modified: subversion/branches/1.8.x/STATUS URL: http://svn.apache.org

svn commit: r1498012 - /subversion/trunk/subversion/libsvn_ra_serf/serf.c

2013-06-29 Thread gstein
Author: gstein Date: Sat Jun 29 19:28:10 2013 New Revision: 1498012 URL: http://svn.apache.org/r1498012 Log: As pointed out on-list, the observed problem (so far) is with reverse proxies, not forward proxies. We shouldn't key on whether we're using a (forward) proxy. * subversion/libsvn_ra_serf

svn commit: r1498028 - /subversion/trunk/CHANGES

2013-06-29 Thread gstein
Author: gstein Date: Sat Jun 29 21:20:37 2013 New Revision: 1498028 URL: http://svn.apache.org/r1498028 Log: * CHANGES: fix a couple typos Modified: subversion/trunk/CHANGES Modified: subversion/trunk/CHANGES URL: http://svn.apache.org/viewvc/subversion/trunk/CHANGES?rev=1498028r1

svn commit: r1497975 - in /subversion/trunk/subversion: include/svn_config.h libsvn_ra_serf/ra_serf.h libsvn_ra_serf/serf.c libsvn_subr/config_file.c

2013-06-28 Thread gstein
Author: gstein Date: Sat Jun 29 02:00:07 2013 New Revision: 1497975 URL: http://svn.apache.org/r1497975 Log: Switch the config name and semantics to busted-proxy. For now, it retains the static configuration-based behavior. Future work will perform runtime detection. * subversion/include

svn commit: r1497980 - in /subversion/trunk/subversion/libsvn_ra_serf: options.c ra_serf.h serf.c

2013-06-28 Thread gstein
Author: gstein Date: Sat Jun 29 03:17:58 2013 New Revision: 1497980 URL: http://svn.apache.org/r1497980 Log: Introduce dynamic detection proxies that cannot handle chunked requests. * subversion/libsvn_ra_serf/ra_serf.h: (svn_ra_serf__probe_proxy): new helper to determine proxy problems

svn commit: r1497551 - /subversion/trunk/subversion/libsvn_ra_serf/update.c

2013-06-27 Thread gstein
Author: gstein Date: Thu Jun 27 20:09:51 2013 New Revision: 1497551 URL: http://svn.apache.org/r1497551 Log: Fix the Accept-Encoding header format. Reported by: George Schizas gschizas{_AT_}gmail.com * subversion/libsvn_ra_serf/update.c: (setup_update_report_headers): use , between format

svn commit: r1497554 - /subversion/branches/1.8.x/STATUS

2013-06-27 Thread gstein
Author: gstein Date: Thu Jun 27 20:14:00 2013 New Revision: 1497554 URL: http://svn.apache.org/r1497554 Log: Nominate 1497551 for backport. Add a vote/comment. Modified: subversion/branches/1.8.x/STATUS Modified: subversion/branches/1.8.x/STATUS URL: http://svn.apache.org/viewvc/subversion

svn propchange: r1477540 - svn:log

2013-06-07 Thread gstein
Author: gstein Revision: 1477540 Modified property: svn:log Modified: svn:log at Sat Jun 8 02:41:34 2013 -- --- svn:log (original) +++ svn:log Sat Jun 8 02:41:34 2013 @@ -1,4 +1,4 @@ -Cherry-pick merge r458643 from

svn propchange: r1489697 - svn:log

2013-06-05 Thread gstein
Author: gstein Revision: 1489697 Modified property: svn:log Modified: svn:log at Wed Jun 5 16:24:50 2013 -- --- svn:log (original) +++ svn:log Wed Jun 5 16:24:50 2013 @@ -1,3 +1,5 @@ +[Reverted in r1489790] + Merge

svn propchange: r1489700 - svn:log

2013-06-05 Thread gstein
Author: gstein Revision: 1489700 Modified property: svn:log Modified: svn:log at Wed Jun 5 16:25:00 2013 -- --- svn:log (original) +++ svn:log Wed Jun 5 16:25:00 2013 @@ -1,5 +1,3 @@ -[Reverted in r1489790.] - Merge

svn commit: r1489131 - /subversion/branches/1.8.x/STATUS

2013-06-03 Thread gstein
Author: gstein Date: Mon Jun 3 19:50:55 2013 New Revision: 1489131 URL: http://svn.apache.org/r1489131 Log: version bump on a dep shouldn't need (3) +1, IMO Modified: subversion/branches/1.8.x/STATUS Modified: subversion/branches/1.8.x/STATUS URL: http://svn.apache.org/viewvc/subversion

svn commit: r1470650 - /subversion/trunk/tools/server-side/svnpubsub/notes/

2013-04-22 Thread gstein
Author: gstein Date: Mon Apr 22 18:20:46 2013 New Revision: 1470650 URL: http://svn.apache.org/r1470650 Log: * tools/server-side/svnpubsub/notes: removed. added in r1432778, but unused Removed: subversion/trunk/tools/server-side/svnpubsub/notes/

svn propchange: r1409259 - svn:log

2012-11-14 Thread gstein
Author: gstein Revision: 1409259 Modified property: svn:log Modified: svn:log at Wed Nov 14 17:23:31 2012 -- --- svn:log (original) +++ svn:log Wed Nov 14 17:23:31 2012 @@ -1,7 +1,9 @@ -Commit some stuff that I've been

  1   2   3   4   5   6   7   8   >