Search found 694 matches

Return to advanced search

Re: Plugin: DocBlock Comments v1.32

The Insertion of a doc block for an abstract method don't work. It's just inserting blanks and move the Cursor, but that's all. After an Abstract method it's not possible to insert any doc block. Post a bug report at https://github.com/pmk65/wbp-docblockcomments including a code example I can use f...
by pmk65
Thu Feb 14, 2019 1:20 am
 
Forum: Plugins for HTMLPad / Rapid CSS / Rapid PHP / WeBuilder
Topic: Plugin: DocBlock Comments v1.33
Replies: 17
Views: 30110

Re: bug: Language Browser shows duplicate entries.

Aivars wrote:Unrelated: when I post tall images, I always get the cropped version with the extra scrollbar. Your image is displayed in full height. Are you doing something clever?

No. I just link to an image I uploaded on Imgur.com.
by pmk65
Tue Feb 12, 2019 10:43 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: bug: Language Browser shows duplicate entries.
Replies: 3
Views: 2395

Re: Bug: Script tag should not have type="text/javascript"

Aivars wrote:You're probably thinking about auto-replace that replaces <script to <script type="text/javascript"></script>? Removing type probably makes sense, we'll look into it.


Yep. That's the one. :)
by pmk65
Tue Feb 12, 2019 10:38 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Bug: Script tag should not have type="text/javascript"
Replies: 2
Views: 2104

Bug: Script tag should not have type="text/javascript"

In HTML5 the script tag is no longer needed (and older HTMl versions default's to JavaScript) From: https://www.w3.org/TR/2014/REC-html5-20141028/scripting-1.html "The type attribute gives the language of the script or format of the data. If the attribute is present, its value must be a valid M...
by pmk65
Wed Jan 30, 2019 3:11 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Bug: Script tag should not have type="text/javascript"
Replies: 2
Views: 2104

Bug: escape char in JavaScript string shows false error

Example: <script type="text/javascript"> var code1 = '<body><script>for (var i=0;i<399;i++) {document.write(i+"<br>");};</script></body>'; var code2 = '<body><script>for (var i=0;i<399;i++) {document.write(i+"<br>");};<\/script></body>'; </script> WeBuilder will highlig...
by pmk65
Mon Jan 28, 2019 6:30 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Bug: escape char in JavaScript string shows false error
Replies: 1
Views: 1717

Bug: CSS -> CSS Check gives wrong results

Here's a simple CSS selector with various properties: .modal { position: fixed; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transform: scale(1.1); transition: visibility 0s linear 0.25s, opacity 0.25s linear 0s, transform 0.25s li...
by pmk65
Thu Jan 24, 2019 5:08 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Bug: CSS -> CSS Check gives wrong results
Replies: 1
Views: 1770

Re: Language Browser

csengh wrote:
pmk65 wrote:The plugin also 'hacks' the sort order, so the items doesn't appear in alpha sorted order


OK, I installed the plugin but how change the alpha sorted order?


The plugin only changes the sorting order for it's own items. You can't use it for changing the sorting of the build-in items.
by pmk65
Sun Jan 20, 2019 2:07 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Language Browser
Replies: 4
Views: 2739

Re: Language Browser

The Auto Complete always shows items in sorted order (A-Z)
You can add your own items to the Auto Completer using plugin scripting.
See the CDNJS plugin for an example. (The plugin also 'hacks' the sort order, so the items doesn't appear in alpha sorted order)
by pmk65
Sun Jan 20, 2019 1:31 am
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Language Browser
Replies: 4
Views: 2739

bug: Language Browser shows duplicate entries.

Example:
Image
Notice that the Properties from "disabled" to "type" is listed twice. (CSSStyleSheet is not the only one)
by pmk65
Sun Jan 20, 2019 1:19 am
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: bug: Language Browser shows duplicate entries.
Replies: 3
Views: 2395

Re: Plugin: Project Backup v1.0

cf1 wrote:very useful plugin.
Is it possible to exclude folders or files?


Not directly, but you can exclude files/folders in the Project settings. The plugin will not archive those.
by pmk65
Sat Jan 19, 2019 1:50 am
 
Forum: Plugins for HTMLPad / Rapid CSS / Rapid PHP / WeBuilder
Topic: Plugin: Project Backup v1.0
Replies: 3
Views: 9297

Re: format CSS

There's MULTIPLE CSS color settings for each element. (That fooled me too.) Pay attention to the "Language" dropdown in the top of the settings. - If it is set to HTML, then the color of the "CSS bracket" is when you open a .html or .htm file. - If Language is set to "CSS&qu...
by pmk65
Tue Jan 15, 2019 11:48 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: format CSS
Replies: 2
Views: 1900

Re: Format PHP / HTML - Change Case Of Tags

There's also a plugin available, if you want to change case to CamelCase or underscore_case. :wink:
by pmk65
Tue Jan 15, 2019 1:05 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Format PHP / HTML - Change Case Of Tags
Replies: 2
Views: 2191

Re: small text in RapidPHP

+1 for ligature support.
by pmk65
Sun Jan 13, 2019 1:42 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
Topic: small text in RapidPHP
Replies: 4
Views: 5318

Re: Bug: Printing using a dark theme reverse colors on print

Colors are in BGR decimal format. (I wrote a PHP script to convert all the Base16 color schemes to WeBuilder format a while ago) So a decimal number like 4538169 would translate to #453F39 hexadecimal. B = 45 G = 3F R = 39 To get the RGB value, you swap the values, like this: 39 3F 45 = #393F45 Here...
by pmk65
Sun Jan 13, 2019 1:41 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Bug: Printing using a dark theme reverse colors on print
Replies: 9
Views: 7576

Re: Bug: Search/Replace leaves junk after replace in block m

If I replace the colons 1 by 1 using Replace, there's no problem. It's only when using Replace All.
I tried turning on/off all Search/Replace options without a difference. Still get junk after the replace.
by pmk65
Fri Jan 11, 2019 2:03 pm
 
Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
Topic: Bug: Search/Replace leaves junk after replace in block mode
Replies: 6
Views: 3294
PreviousNext

Return to advanced search