CubicleSoft

Results 68 comments of CubicleSoft

`HTMLString.String.encode()` doesn't escape quotes, which is probably why ContentEdit has its own function for element attributes that does escape quotes.

The fastest HTML escape function I know of is this one: ```javascript HTMLString.String.encode = function(text) { var map = { '&': '&', '': '>', '"': '"', "'": ''' }; return...

WinMain() is only necessary for Windows applications, not console apps. A quick Google search turns up that using `-mconsole` when compiling should work. Release tags are unnecessary. CubicleSoft generally only...

What is the rationale for this change? This line is suspect: ```js if (e.ctrlKey || e.target.tagName === 'INPUT' || (e.button == 2 && $this.settings.mouserightclick) || selectmodemulti) ``` If mouse right-click...

There's no way to automatically determine whether an application is going to handle either event correctly or ignore them altogether or some combination of the two. A Command Prompt will...

If the item is in the current folder, you can currently type in the name of the item you are looking for on the keyboard to jump directly to that...

Please explain what the actual issue is here. The software built fine for me under the PHP 8.3.x source tree earlier this year (IIRC, around March 2024) and the extension...

The Windows PECL DLL build system has been down for a really long time. There's an open issue on this issue tracker with a link to unofficial Windows binary builds...