-
notification should go to jackbuntu-info list.
2010-01-29 19:11:46 UTC in JâckBüntü™
-
yeah, we're still playing with this. it's a known bug in nbbc and we're reaching out to them.
https://sourceforge.net/tracker/?func=detail&aid=2931062&group_id=235382&atid=1096820.
2010-01-26 16:30:50 UTC in php_for_notepad++_plugin
-
so, anything with bracket-single-quote item, like a php associative array key, breaks.
2010-01-25 22:37:17 UTC in NBBC
-
[code]
<if expr="RC == 0">
<iterate var="currentEntry" in="STAFResult('resourceList')">
<if expr="currentEntry('owner') == None">
<message log="1">'%s is not owned' % (currentEntry('entry'))</message>
</if>
</iterate>
</if>...
2010-01-25 22:36:01 UTC in NBBC
-
but not if it has bracket-quote blocks
[code]
<if expr="RC == 0">
<iterate var="currentEntry" in="STAFResult['resourceList']">
<if expr="currentEntry['owner'] == None">
<message log="1">'%s is not owned' % (currentEntry['entry'])</message>
</if>...
2010-01-25 22:34:00 UTC in NBBC
-
[code]<regular-xml>works okay</regular-xml>[/code].
2010-01-25 22:33:09 UTC in NBBC
-
[code]$array\['first'\] = 1;[/code].
2010-01-25 22:28:41 UTC in php_for_notepad++_plugin
-
We're noticing the same thing here sitewide with the sf.net usage of nbbc - e.g., in the forums:
https://sourceforge.net/projects/nbbc/forums/forum/851059/topic/3530501.
2010-01-25 22:23:19 UTC in NBBC
-
trying to put
$array['first'] = 1;
into a code block:
[code]$array['first'] = 1;[/code].
2010-01-25 22:22:21 UTC in NBBC
-
Have you tested with
[code]
$GLOBALS['concurrent_layout']
[/code]
set to 0 and 1? Need to make sure those work.
This code in messages.php will not work properly:
[code]
$note = formData("note");
$note = strip_escape_custom($note);
[/code]
... because formData always delivers escaped text, but strip_escape_custom strips escaped conditionally. Instead...
2010-01-25 22:10:03 UTC in php_for_notepad++_plugin