1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-08 07:47:00 +02:00

2927 Commits

Author SHA1 Message Date
Chris
264fa2264f Remove leftover test switch that circumvents mb_encode_mimeheader 2016-10-21 13:31:31 +02:00
Ryan Cramer
913201788c Additional updates to TextformatterSmartypants per processwire/processwire-issues#17 2016-10-21 06:28:38 -04:00
Ryan Cramer
131c0c8b4a Update to processwire/processwire-issues#40 ImageInspector per @horst-n 2016-10-21 06:05:02 -04:00
Ryan Cramer
6b96702c14 Fix issue processwire/processwire-issues#57 where Pageimage::maxSize() method was not always working correctly. 2016-10-21 06:01:33 -04:00
Ryan Cramer
2778829df6 Fix issue processwire/processwire-issues#47 2016-10-20 11:46:14 -04:00
Ryan Cramer
efd2289e2a Fix issue processwire/processwire-issues#41 where uploading image in CKEditor image dialog to page other than the one being edited resulted in an uploaded image that had "temp" status 2016-10-20 11:28:06 -04:00
Ryan Cramer
873ec1a06d Upgrade SmartyPants version for TextformatterSmartypants module, plus updates per processwire/processwire-issues#17 2016-10-20 10:28:40 -04:00
Chris
6ae4a5829d Subject wrapping, mbstring support, nested content parts
Support wrapping of long subject headers, using mb_encode_mimeheader if
available, otherwise fall back to an custom encoding/wrapping function
that uses PHP builtins.
Nest plaintext+html bodies in their own multipart-alternative header if
attachments are present so that the display of the html part still has
precedence over the plaintext part.
Put quotes around name parts after quoted-printable encoding of the name
in name+address combinations.
2016-10-20 13:40:53 +02:00
Ryan Cramer
5542b77440 Add profiler to TemplateFile and PageRender 2016-10-20 07:02:24 -04:00
Ryan Cramer
4060934bae Update Modules/ProcessModules to skip showing configurable modules with no visible configuration fields. Plus a few other small additions. 2016-10-20 06:58:28 -04:00
Ryan Cramer
4a26b774bf Bump version for dev branch to 3.0.37 2016-10-14 13:58:24 -04:00
Ryan Cramer
8896f25d14 Adjustment to reduce changes to fix just issues from standard API log usage 2016-10-13 10:44:17 -04:00
Ryan Cramer
596acaa44b Merge branch 'dev' of https://github.com/adrianbj/processwire into adrianbj-dev 2016-10-13 10:23:51 -04:00
Ryan Cramer
36c7b268e1 Another adjustment to PageImage per issue #31 2016-10-13 10:14:47 -04:00
Ryan Cramer
6336fd4438 Attempt fix for issue #31 when Pageimage::hidpiWidth() called with unsupported string argument 2016-10-13 10:05:39 -04:00
Ryan Cramer
b08f3c082e Update install.php per issue #44 2016-10-13 08:20:13 -04:00
Ryan Cramer
d42a03ca57 Fix issue #40 with ImageInspector having issues with some GIF files 2016-10-13 06:08:35 -04:00
Ryan Cramer
5131edf57c Merge branch 'BitPoet-dev-wiremail-utf8' into dev 2016-10-13 05:54:08 -04:00
Ryan Cramer
e043a2b2f1 Merge branch 'dev-wiremail-utf8' of https://github.com/BitPoet/processwire into BitPoet-dev-wiremail-utf8 2016-10-13 05:52:35 -04:00
Ryan Cramer
e2e4817444 Add Pages::savePageOrFieldReady() and Pages::savedPageOrField() hooks per request 2016-10-13 05:51:34 -04:00
Chris
4d5259b11d Support utf8 characters in WireMail
Use quoted printable encoding for text and html body parts.
Also encode the subject and the name parts of from: and to: headers in
quoted printable.
2016-10-12 14:02:28 +02:00
Ryan Cramer
144872bedb Fix issue processwire/processwire-issues#38 2016-10-11 12:04:03 -04:00
Ryan Cramer
7568093ea7 Remove the "None" option for dateInputFormat per issue processwire/processwire-issues#37 2016-10-11 11:49:19 -04:00
Ryan Cramer
67f504834d Fix issue processwire/processwire-issues#34 2016-10-11 11:34:16 -04:00
Ryan Cramer
7aed0416a9 Fix issue processwire/processwire-issues#30 in PageComparison 2016-10-11 11:19:00 -04:00
Ryan Cramer
6b64a480b8 Update to add removal of incompatible sql_mode settings when used with MySQL 5.7.0 and newer, per issue processwire/processwire-issues#28 2016-10-11 11:07:37 -04:00
Ryan Cramer
cd71d45ef4 Update comments in WireMail 2016-10-09 06:34:14 -04:00
Ryan Cramer
1c2d015e33 Bump version to 3.0.36 3.0.36 2016-10-07 11:48:44 -04:00
Ryan Cramer
f62506c782 Some updates to the inline phpdoc documentation 2016-10-07 11:25:03 -04:00
Ryan Cramer
0d6d2ef6e4 Fix issue processwire/processwire-issues#19 with InputfieldPageAutocomplete and selecting homepage, thanks for fix @BitPoet 2016-10-07 11:06:56 -04:00
adrianbj
504d8b8645 Fix entry parts ending up in the wrong column in Log viewer.
This fixes: https://github.com/ryancramerdesign/ProcessWire/issues/1822

This fix includes changes for the count($parts) == 3 section which are necessary, but also includes changes for the count($parts) == 2 section which may be checking for situations that aren't possible, so see what you think about those changes.

I have included a nested ternary, but I think in this case it reads quite clearly and is ok, but you may want to revisit.

I'll add a comment shortly with a test log file so you can see these changes in action.
2016-10-06 19:38:19 -07:00
Ryan Cramer
ba44b4bf20 Fix issue processwire/processwire-issues#24 findPagesSelector containing "=page.id" when used outside original intended context, fix ensures it continues to work without dependent selects 2016-10-06 10:41:59 -04:00
Ryan Cramer
cb3e8f741b Merge branch 'tmpfix' into dev 2016-10-06 10:14:13 -04:00
Ryan Cramer
16a8232dfe Update the Page::matches() method to make it smarter and more flexible. This also accommodates issue #21. 2016-10-06 10:13:14 -04:00
Ryan Cramer
9f6421d672 Remove TinyMCE mention from ProcessPageEditLink.module 2016-10-05 14:36:11 -04:00
Ryan Cramer
3619a4e958 Remove reference to TinyMCE in TextformatterEntities module description per issue processwire/processwire-issues#18 2016-10-05 11:01:36 -04:00
Ryan Cramer
e4ecc5f7ba Merge branch 'horst-n-patch-1' into dev 2016-10-05 10:44:19 -04:00
Ryan Cramer
7f53fbdda0 Minor adjustment to @horst-n PR #14 2016-10-05 10:43:19 -04:00
Ryan Cramer
637afedade Merge branch 'patch-1' of https://github.com/horst-n/processwire-1 into horst-n-patch-1 2016-10-05 10:41:04 -04:00
Ryan Cramer
3267e6ad68 Add @marcus-herrmann PR #1 which improves keyboard accessibility of ProcessPageList, enabling use of spacebar to toggle actions open/closed. 2016-10-05 10:38:45 -04:00
Ryan Cramer
ad5f79559a Merge branch 'feature/mail-attachments' of https://github.com/LostKobrakai/processwire-1 into LostKobrakai-feature/mail-attachments 2016-10-05 06:21:24 -04:00
Ryan Cramer
37feb6e58c Merge branch 'LostKobrakai-patch/fix-composer-json' into dev 2016-10-05 06:07:23 -04:00
Ryan Cramer
7dd53e4abc Merge branch 'patch/fix-composer-json' of https://github.com/LostKobrakai/processwire-1 into LostKobrakai-patch/fix-composer-json 2016-10-05 06:06:53 -04:00
Ryan Cramer
4bc2efa1f7 Merge branch 'adrianbj-master' into dev 2016-10-04 16:42:56 -04:00
Ryan Cramer
d4090a0610 Add Adrian's PR #11 with some minor changes, plus fix issue with installing FieldtypeOptions when using utf8mb4 dbCharset. 2016-10-04 16:40:36 -04:00
Ryan Cramer
8977302991 Merge branch 'master' of https://github.com/adrianbj/processwire into adrianbj-master 2016-10-04 16:12:36 -04:00
Ryan Cramer
d965cbb0ba Establish dev branch 2016-10-04 11:06:46 -04:00
Ryan Cramer
c5eaf61dfc Fix issue processwire/processwire-issues#15 with InputfieldSelector+PageListSelect+parent_id setting showing select rather than autocomplete 2016-10-04 11:01:20 -04:00
Ryan Cramer
c87f30bae8 Update for issue processwire/processwire-issues#14 to update CSS for long description or notes that have no spaces (like URLs or emails) so that they wrap rather than overflow. 2016-10-04 10:03:23 -04:00
Ryan Cramer
e133309068 Fix issue suggestion processwire/processwire-issues#13 to move Helloworld example module into its own directory 2016-10-04 09:38:08 -04:00