Skip to content

Commit

Permalink
Crontab: update documentation files.
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Feb 6, 2014
1 parent 4e776ae commit ef8b63c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 10 additions & 2 deletions app/views/App/apps/horde/docs/CODING_STANDARDS.html
Expand Up @@ -387,12 +387,20 @@ <h1><a class="toc-backref" href="#id16">14&nbsp;&nbsp;&nbsp;HTML 4 Compliance</a
<p>All images must have an <tt class="docutils literal">alt</tt> attribute:</p>
<pre class="literal-block">
&lt;img src=&quot;example.gif&quot; alt=&quot;&lt;?php echo _(&quot;Example&quot;) ?&gt;&quot; /&gt;
&lt;?php echo Horde::img('example.gif', _(&quot;Example&quot;)) ?&gt;
&lt;?php
echo Horde_Themes_Image::tag('example.gif', array(
'alt' =&gt; _(&quot;Example&quot;)
));
?&gt;
</pre>
<p>Input fields of type &quot;image&quot; do not allow the border attribute and may render
with a border on some browsers. Use the following instead:</p>
<pre class="literal-block">
&lt;a href=&quot;&quot; onclick=&quot;document.formname.submit(); return false;&quot;&gt;&lt;?php echo Horde::img(&quot;example.gif&quot;, _(&quot;Example&quot;)) ?&gt;&lt;/a&gt;
&lt;a href=&quot;&quot; onclick=&quot;document.formname.submit(); return false;&quot;&gt;&lt;?php
echo Horde_Themes_Image::tag(&quot;example.gif&quot;, array(
'alt' =&gt; _(&quot;Example&quot;)
));
?&gt;&lt;/a&gt;
</pre>
</div>
<div class="section" id="database-conventions">
Expand Down
2 changes: 2 additions & 0 deletions app/views/App/apps/turba/docs/CHANGES.html
Expand Up @@ -3,6 +3,8 @@ <h3>Changes by Release</h3><pre>
v4.2.0-git
----------

[mjr] Fix importing certain vCards to sources only using the 'email' attribute
(<a href="http://bugs.horde.org/ticket/12955">Bug #12955</a>).
[mjr] Do not export empty property names in CardDav responses (<a href="http://bugs.horde.org/ticket/12782">Bug #12782</a>).
[jan] Make shares table compatible with Oracle.
[jan] Export free/busy URL to vCard (<a href="http://bugs.horde.org/ticket/12915">Request #12915</a>).
Expand Down

0 comments on commit ef8b63c

Please sign in to comment.