Search found 694 matches
- 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: 41237
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 ...
- 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: 3308
Re: bug: Language Browser shows duplicate entries.
No. I just link to an image I uploaded on Imgur.com.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?
- 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: 2827
Re: Bug: Script tag should not have type="text/javascript"
Yep. That's the one.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.

- 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: 2827
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 MIME ...
- 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: 2509
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 highlight the 2nd line in red ...
- 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: 2492
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 ...
- Sun Jan 20, 2019 2:07 pm
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
- Topic: Language Browser
- Replies: 4
- Views: 3915
Re: Language Browser
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.csengh wrote:OK, I installed the plugin but how change the alpha sorted order?pmk65 wrote:The plugin also 'hacks' the sort order, so the items doesn't appear in alpha sorted order
- Sun Jan 20, 2019 1:31 am
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
- Topic: Language Browser
- Replies: 4
- Views: 3915
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)
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)
- 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: 3308
bug: Language Browser shows duplicate entries.
Example:

Notice that the Properties from "disabled" to "type" is listed twice. (CSSStyleSheet is not the only one)

Notice that the Properties from "disabled" to "type" is listed twice. (CSSStyleSheet is not the only one)
- 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: 12382
Re: Plugin: Project Backup v1.0
Not directly, but you can exclude files/folders in the Project settings. The plugin will not archive those.cf1 wrote:very useful plugin.
Is it possible to exclude folders or files?
- Tue Jan 15, 2019 11:48 pm
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Support
- Topic: format CSS
- Replies: 2
- Views: 2692
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", then it's the color of ...
- 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: 2986
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. 

- Sun Jan 13, 2019 1:42 pm
- Forum: HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests
- Topic: small text in RapidPHP
- Replies: 4
- Views: 6449
Re: small text in RapidPHP
+1 for ligature support.
- 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: 10049
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 ...
- 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: 7139
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.
I tried turning on/off all Search/Replace options without a difference. Still get junk after the replace.