Beta4 includes some fixes reported before Dec 1 as well as a new feature - indent guides.
We are close to the release.
More info and links here:
http://forums.blumentals.net/viewtopic.php?f=15&t=6491
Update: 2015 Beta4
Re: Update: 2015 Beta4
Hi,
even if it is still a beta is already usable and stable.
Very good program.
...but I'm not able to find how to call the phpdocumentor.
any help?
thanks
even if it is still a beta is already usable and stable.
Very good program.
...but I'm not able to find how to call the phpdocumentor.
any help?
thanks
Re: Update: 2015 Beta4
You're not supposed to call it, if you have documented your functions according to PhpDocumentator format, then you will see the description in the hints:

Another use:
This is especially useful if you're using projects. Just don't forget to set Library Path for your projects.

Another use:
Code: Select all
/**
* @return Directory
*/
function GetMainDirectory() {
...
}
$d = GetMainDirectory();
$d->... will return members of Directory class because PhpDocumentor comments have specified that this class will be returned
Blumentals Software Programmer
Re: Update: 2015 Beta4
Oh sorry,
I supposed that webuilder has some facility that can generate the comment description of some selected function using phpdocumentor format.
Now I'm using an other product only to do this and some basic refactoring of the code of my projects when is in the final step.
I'ld be happy to do these things inside webuilder.
I supposed that webuilder has some facility that can generate the comment description of some selected function using phpdocumentor format.
Now I'm using an other product only to do this and some basic refactoring of the code of my projects when is in the final step.
I'ld be happy to do these things inside webuilder.
Re: Update: 2015 Beta4
Hm, it's as simple as typing out /** - does it really call for special functionality? Or maybe it can be replaced by snippets? Maybe I'm missing something and you can fill me in.
Blumentals Software Programmer
Re: Update: 2015 Beta4
I've posted a message in 'HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests' area
with some idea around this to webuilder always better :)
with some idea around this to webuilder always better :)
Re: Update: 2015 Beta4
I can not find CSS property: -webkit-text-size-adjust
Description
Specifies a size adjustment for displaying text content in Safari on iPhone.
Syntax
-webkit-text-size-adjust: none | auto | <percentage>;
Values
none
The text size is not adjusted.
auto
The text size is automatically adjusted for Safari on iPhone.
<percentage>
The size in percentage at which to display text in Safari on iPhone.
Examples
The text size is automatically adjusted for Safari on iPhone:
p {
-webkit-text-size-adjust: auto;
}
The text size is not adjusted:
p {
-webkit-text-size-adjust: none;
}
The text size is adjusted at 60%:
p {
-webkit-text-size-adjust: 60%;
}
http://css-infos.net/properties/webkit
Description
Specifies a size adjustment for displaying text content in Safari on iPhone.
Syntax
-webkit-text-size-adjust: none | auto | <percentage>;
Values
none
The text size is not adjusted.
auto
The text size is automatically adjusted for Safari on iPhone.
<percentage>
The size in percentage at which to display text in Safari on iPhone.
Examples
The text size is automatically adjusted for Safari on iPhone:
p {
-webkit-text-size-adjust: auto;
}
The text size is not adjusted:
p {
-webkit-text-size-adjust: none;
}
The text size is adjusted at 60%:
p {
-webkit-text-size-adjust: 60%;
}
http://css-infos.net/properties/webkit
Re: Update: 2015 Beta4
Text-size-adjust is too new, too experimental. Barely anything supports it (see Browser Compatibility at https://developer.mozilla.org/en-US/doc ... ize-adjust). If you really want that feature, you'll have to add it yourself to <WeBuilder install dir>\data\cssdefs\Actial.ini
Blumentals Software Programmer