Update: 2015 Beta4

New release and update announcements
Post Reply
User avatar
Karlis
Site Admin
Posts: 3605
Joined: Mon Jul 15, 2002 5:24 pm
Location: Riga, Latvia, Europe
Contact:

Update: 2015 Beta4

Post by Karlis »

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
Karlis Blumentals
Blumentals Software
www.blumentals.net
avent
Posts: 19
Joined: Mon May 14, 2007 9:06 pm

Re: Update: 2015 Beta4

Post by avent »

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
User avatar
Aivars
Blumentals Software Developer
Posts: 2462
Joined: Thu Aug 22, 2002 1:40 pm
Location: Latvia

Re: Update: 2015 Beta4

Post by Aivars »

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:

Image

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

This is especially useful if you're using projects. Just don't forget to set Library Path for your projects.
Blumentals Software Programmer
avent
Posts: 19
Joined: Mon May 14, 2007 9:06 pm

Re: Update: 2015 Beta4

Post by avent »

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.
User avatar
Aivars
Blumentals Software Developer
Posts: 2462
Joined: Thu Aug 22, 2002 1:40 pm
Location: Latvia

Re: Update: 2015 Beta4

Post by Aivars »

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
avent
Posts: 19
Joined: Mon May 14, 2007 9:06 pm

Re: Update: 2015 Beta4

Post by avent »

I've posted a message in 'HTMLPad / Rapid CSS / Rapid PHP / WeBuilder Feature Requests' area
with some idea around this to webuilder always better :)
zee
Posts: 2
Joined: Mon Apr 21, 2014 1:46 pm

Re: Update: 2015 Beta4

Post by zee »

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
User avatar
Aivars
Blumentals Software Developer
Posts: 2462
Joined: Thu Aug 22, 2002 1:40 pm
Location: Latvia

Re: Update: 2015 Beta4

Post by Aivars »

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
Post Reply