<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel about="http://blog.gmane.org/gmane.org.user-groups.zope.trizpug">
    <title>gmane.org.user-groups.zope.trizpug</title>
    <link>http://blog.gmane.org/gmane.org.user-groups.zope.trizpug</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1382"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1378"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1372"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1371"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1368"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1363"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1361"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1360"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1359"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1358"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1357"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1356"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1355"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1353"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1347"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1346"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1345"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1330"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1325"/>
        <rdf:li rdf:resource="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1324"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1382">
    <title>List Advisory</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1382</link>
    <description>TriZPUGlians:

This is to inform you that soon you will be subscribed to our new 
python.org email list.

Python.net has been dying a slow painful death for some time now and 
there has been work behind the scenes to get our list moved to 
python.org for many months. That time has now come.

When you are subscribed to the new list, you will be getting a welcome 
message. It will describe the list purposes, policies, email addresses, 
and URLs.

Your email address subscription is the only thing that will carry over 
to the new list. That means you will need to set yourself a new email 
list password. There will be a description in your subscribe email about 
how to do that.

Also, if you receive the list via daily digest or have your subscription 
set to "no email," you will need to reset that as well *after* setting a 
new password. Of course, if your subscription is set to "no email," then 
you won't see this message either. :)

There are three of you who are "private" members of this list. That is, 
we don</description>
    <dc:creator>Chris Calloway</dc:creator>
    <dc:date>2008-05-16T17:22:11</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1378">
    <title>scope in nested function calls</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1378</link>
    <description>
I've just moved a piece of code out of a long function into another (lower 
nested) function and I'd like the lower nested function to still access (write 
to) variables in the calling function. I'm doing this for readability and so 
that I can test a couple of different versions of the lower nested function by 
commenting out calls in the calling function.

Here's an example piece of code
-------------------------------
#! /usr/bin/python

def foo():
         print "foo: bar_value  %d" %bar_value

def bar():
         bar_value=1
         print "bar: bar_value  %d" %bar_value
         foo()

#main()
bar()

---------

the output is

# ./test_scope.py
bar: bar_value  1
Traceback (most recent call last):
   File "./test_scope.py", line 12, in ?
     bar()
   File "./test_scope.py", line 9, in bar
     foo()
   File "./test_scope.py", line 4, in foo
     print "foo: bar_value  %d" %bar_value
NameError: global name 'bar_value' is not defined

-------------

I can't use "global bar_value" inside foo(), since bar_</description>
    <dc:creator>Joseph Mack NA3T</dc:creator>
    <dc:date>2008-05-11T17:20:30</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1372">
    <title>Quick IRC Cheat Sheet</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1372</link>
    <description/>
    <dc:creator>Josh Johnson</dc:creator>
    <dc:date>2008-05-08T13:12:57</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1371">
    <title>Plone Job Opportunity at CPC (Carolina Pop. Center,UNC)</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1371</link>
    <description>My organization, CPC, is looking for a full time, temporary python 
programmer:

Details: 
http://www.cpc.unc.edu/aboutcpc/employment?wid=4179&amp;func=viewSubmission&amp;sid=4007

There's a strong emphasis on plone and other web tech. Experience in an 
academic environment, and experience with knowledge management and/or 
distance learning are a plus. Adaptability is key.

I'm not personally responsible for filling this position. If you have 
questions, or want to apply, see the contact info on the post :)

Feel free to pass the url along to anybody else you may know that might 
be interested.

Thanks!
JJ


</description>
    <dc:creator>Josh Johnson</dc:creator>
    <dc:date>2008-05-08T13:00:36</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1368">
    <title>wing ide on 64 bit debian</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1368</link>
    <description>I have started to use Wing IDE Personal, but it doesn't install on our 
Debian AMD64 server. Is there a way to get it to run on a 64-bit Linux 
install?

Jim White

</description>
    <dc:creator>jim white</dc:creator>
    <dc:date>2008-05-07T18:29:58</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1363">
    <title>we're Jammin: Weds 2008-05-07 from 18:00 to 20:30</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1363</link>
    <description>Hello fellow trizpug'ers:

Details on the next Plone Jam -- *this* Wednesday:

  http://trizpug.org/Members/biggers/feb-08-jam1/view


See you there, I hope!

thank you,
----mark

</description>
    <dc:creator>Mark R. Biggers</dc:creator>
    <dc:date>2008-05-05T12:18:45</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1361">
    <title>Python voted Favorite Scripting Language in Linux Journal June 2008 issue!</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1361</link>
    <description>Extra! Extra! Read all about it!

Python (28.9%)
PHP (21.7%)
bash (19.8%)
Perl (17%)

rg
</description>
    <dc:creator>Robert Geiger</dc:creator>
    <dc:date>2008-05-01T19:27:39</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1360">
    <title>Bootcamparama</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1360</link>
    <description>hey, gang! i just got off the phone with joel burton. we have our 
classroom reservations in the super-posh school of pharmacy 
videoconference auditoriums. and registration for plone boot camp, 
advanced plone boot camp, and pycamp will be opening next week! get 
ready for a massive brain infusion in august.

also, i just noticed that for the second time in two months, the 
trizpug.org process was manually shutdown. I just brought it back up in 
case you were missing it and too shy to say anything about it. but i'll 
be taking steps to insure that doesn't happen again. sorry.

</description>
    <dc:creator>Chris Calloway</dc:creator>
    <dc:date>2008-05-01T14:30:54</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1359">
    <title>[Fwd: [Usergroups] World Plone Day]</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1359</link>
    <description>-------- Original Message --------
Subject: [Usergroups] World Plone Day
Date: Wed, 30 Apr 2008 11:24:22 -0300
From: Roberto Allende &lt;rover-ECBX8acBn0BBDgjK7y7TUQ&lt; at &gt;public.gmane.org&gt;
To: usergroups-G3yHMj00SlOLbbK5bonKug&lt; at &gt;public.gmane.org

Hello

Members of the Plone evangelism mailing list are working to organize a
World Plone Day.

The idea is to invite to the members of the Plone community and User
Groups to give (at least) an introductory talk in their community, and
do the same all over the world.

The suggested date is november 7th.

Right now we're looking for ploners interested to join the initiative,
so we're asking to add their city in
http://www.openplans.org/projects/plone-marketing/world-plone-day

We believe that's a very simple idea and it could get a huge impact in
Plone promotion.

If you need support to organize the talks or want to get deeply involved
on the initiative, feel free to join the evangelism group:
http://www.nabble.com/Evangelism-f24086.html

Also, if you've any suggestion or comm</description>
    <dc:creator>Chris Calloway</dc:creator>
    <dc:date>2008-04-30T16:52:05</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1358">
    <title>[Fwd: ANN: Last chance! Re: Plone Conference 2008 Planning Survey Reminder]</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1358</link>
    <description>Alex copied this to TriZPUG. But I didn't see it come across the wire. 
So please pardon any duplicate messages. Also, last day for New Orleans 
Plone Symposium early bird registration and special hotel rate is next 
Wednesday. -cbc

-------- Original Message --------
Subject: [Sprints] ANN: Last chance! Re: Plone Conference 2008 Planning 
Survey Reminder
Date: Wed, 30 Apr 2008 00:14:57 +0000 (UTC)
From: Alex Clark &lt;aclark-pzuzLh+EMZSsTnJN9+BGXg&lt; at &gt;public.gmane.org&gt;
Organization: ACLARK.NET, LLC
To: sprints-G3yHMj00SlOLbbK5bonKug&lt; at &gt;public.gmane.org
CC: environmental-G3yHMj00SlOLbbK5bonKug&lt; at &gt;public.gmane.org, zpugdc-cfLucR93umavyjhrL8CkPg&lt; at &gt;public.gmane.org, 
scientific-G3yHMj00SlOLbbK5bonKug&lt; at &gt;public.gmane.org, enterprise-G3yHMj00SlOLbbK5bonKug&lt; at &gt;public.gmane.org, 
eduplone-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org, 
plone-docs-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org,   sprints-G3yHMj00SlOLbbK5bonKug&lt; at &gt;public.gmane.org, 
triangle-zpug-w9fvoj/KL/tYD4wyRYr9MNHuzzzSOjJt&lt; at &gt;public.gmane.org, 
plone-devel</description>
    <dc:creator>Chris Calloway</dc:creator>
    <dc:date>2008-04-30T13:12:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1357">
    <title>2008 New Orleans Plone Symposium</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1357</link>
    <description>I'm forwarding the following from Enfold Systems:

Mark your calendars for June 2-6, 2008!

We are reaching out to inform you that the New Orleans
Plone Symposium, hosted by Enfold Systems, is being held
from June 2-6 this year.  We are expecting 100 - 125
persons at the event.

Detailed Schedule:
June 2-3: Plone Bootcamp training sessions
June 4-5: Symposium sessions
June 6: Follow-up Plone strategic planning workshop

Where: New Orleans, Louisiana, at the Astor Crowne Plaza

Highlights So Far:
  - The Plone Founders — Alan Runyan and Alexander Limi
  - Chris Rose — Pulitzer prize news correspondent keynoting
  - Nightly events for the community to gather and network
  - Lectures by core Plone software developers including
Joel Burton, Kapil Thangavelu, Chris McDonough,
Sidnei da Silva and many, many more...

For more information, please see:
http://plone.org/events/regional/nola08/


- REGISTER NOW! Hotel and registration discounts expire May 6th.

Hotel Reservations: You can book your hotel by calling</description>
    <dc:creator>Chris Calloway</dc:creator>
    <dc:date>2008-04-28T14:32:02</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1356">
    <title>Online GAP Data Explorer Tool</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1356</link>
    <description>Here is the website I have developed for the NCSU zoology dept.

http://www5.basic.ncsu.edu/

You can request a passcode or use gapusers/123456.

The site uses PHP instead of Python, but did use Python for some of the data preparation.

Jim 

</description>
    <dc:creator>jim white</dc:creator>
    <dc:date>2008-04-25T17:32:59</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1355">
    <title>Online GAP Data Explorer Tool</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1355</link>
    <description>Here is the website I have developed for the NCSU zoology dept.

http://www5.basic.ncsu.edu/

You can request a passcode or use gapusers/123456.

The site uses PHP instead of Python, but did use Python for some of the 
data preparation.

Jim
</description>
    <dc:creator>jim white</dc:creator>
    <dc:date>2008-04-25T18:22:32</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1353">
    <title>ipython blog</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1353</link>
    <description>New blog for IPython developers:

http://ipython0.wordpress.com/

Carried on Planet Python:

http://planet.python.org/

</description>
    <dc:creator>Chris Calloway</dc:creator>
    <dc:date>2008-04-25T16:41:10</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1347">
    <title>Python Bug Days</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1347</link>
    <description>Want to get under the hood of Python?

The next worldwide Python Bug Days are coming up Mother's Day weekend:

http://wiki.python.org/moin/PythonBugDay

Give Mom the gift of a code patch!

</description>
    <dc:creator>Chris Calloway</dc:creator>
    <dc:date>2008-04-24T16:17:04</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1346">
    <title>Take the Plone Conference 2008 Planning Survey!</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1346</link>
    <description>http://tinyurl.com/4hxr8o

</description>
    <dc:creator>Chris Calloway</dc:creator>
    <dc:date>2008-04-24T19:40:12</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1345">
    <title>Meeting Thursday</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1345</link>
    <description>Reminder:

http://trizpug.org/Members/psmith/apr-08-mtg


TriZPUG April 2008 Meeting: Scientific Python - Remote Sensing and 
Ecological Modeling

Josh Gray, a doctoral candidate in the UNC Department of Geography, will 
describe a NASA funded ecological investigation which explores methods 
of scaling up eddy covariance flux tower estimates of various ecological 
parameters, especially those related to carbon and water cycling, to 
regional scales. Various remotely sensed images are employed in a novel 
model which estimates evapotranspiration for the Eno River Watershed in 
Durham and Orange Counties. Originally the workflow was entirely Matlab 
based. This user has found that the Python combination of numpy, pylab, 
and gdal has provided a full replacement and increased efficiency and 
portability.

For more information, visit
http://trizpug.org/Members/psmith/capstrat-directions/

What
     Meeting
When
     2008-04-24 from 19:00 to 21:00
Where
     Capstrat, 1201 Edwards Mill Road, Suite 102, Raleigh
Na</description>
    <dc:creator>Chris Calloway</dc:creator>
    <dc:date>2008-04-23T20:48:28</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1330">
    <title>[Fwd: [Plone-developers] New Orleans PloneSymposium Call for Speakers]</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1330</link>
    <description>-------- Original Message --------
Subject: [Plone-developers] New Orleans Plone Symposium Call for Speakers
Date: Wed, 16 Apr 2008 16:58:11 -0500
From: Alan Runyan &lt;runyaga-IZgPguPnCNZBDgjK7y7TUQ&lt; at &gt;public.gmane.org&gt;
To: plone-developers-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f&lt; at &gt;public.gmane.org

Call for Presentations of the June Plone Symposium

     We are now ready for presentation submissions for the Plone Symposium.
The Plone Symposium is heavily focused on technical useful tidbits and best
practices of Python/Zope/Plone development.  The goal for the Symposium
is for to cover relevant topics for consultants, systems administrators, and
developers.  It is the perfect venue for prospects to engage the Plone
community because of its intimate setting and core developer to attendee
ratio.

Some suggestions for talks for the Symposium:

     zope.interface / Adapters
     Eggs / VirtualEnv
     Buildout
     Lowering the bar for entry
     Integrating 3rd party applications
     Indexing / Events
     Content mirrori</description>
    <dc:creator>Chris Calloway</dc:creator>
    <dc:date>2008-04-16T22:19:20</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1325">
    <title>TriZPUG involvement in PloneCon Sprint</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1325</link>
    <description>TriZPUG has been invited by ZPUGDC to manage the sprints at PloneCon 
2008 in DC. The sprints occur Oct 11-13 (the conference is Oct 8-10).

I think that invitation involves:

a) finding out who wants to sprint on what
b) apportioning available room space to those sprint topics
c) publicizing those room space assignments
d) calling a daily report out for each topic

Nate Aune has usually been the ringmaster of the daily report outs in 
the past. I will encourage him to continue in that role. He's good at 
it. He relishes it.

I'd like to ask a few questions:

1) Who anticipates going to PloneCon in Washington, DC, this fall?

2) If so, do you anticipate staying for sprints?

3) If you are, have you ever been to a PloneCon sprint before?

4) Do you think TriZPUG should accept this invitation? (I think I've 
already been volunteered for the task anyway. I'm just trying to find 
out how alone I'm going to be.)

I assume TriZPUG is going to have a big presence at PloneCon this year 
due to it being only a five h</description>
    <dc:creator>Chris Calloway</dc:creator>
    <dc:date>2008-04-15T23:35:14</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1324">
    <title>PyCamp concurrent with Plone Boot Camp</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1324</link>
    <description>As you know, we have two weeks of Plone Boot Camps scheduled this year:

http://trizpug.org/boot-camp/pbc4/

And about weekly I get asked when are we (TriZPUG) going to have PyCamp 
again. (I get very tired just thinking about it.)

I haven't asked Joel Burton about this yet because I want to get your 
feelings. But what would you think about having a PyCamp concurrent with 
Plone Boot Camp? Either week? Which? Or both?

Basically, I can't find another time on the UNC calendar this year which 
would permit it other than the same time as Plone Boot Camp.

Who would come to PyCamp? Would you? Have most of you who would go 
already been and it's a spent idea?

</description>
    <dc:creator>Chris Calloway</dc:creator>
    <dc:date>2008-04-15T23:41:25</dc:date>
  </item>
  <item rdf:about="http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1323">
    <title>NOTICE: Meeting day change</title>
    <link>http://comments.gmane.org/gmane.org.user-groups.zope.trizpug/1323</link>
    <description>There were no objections and one positive response after a month long 
feedback period to switch TriZPUG monthly meetings to Thursday.

Plus, Paul is able to host on Thursday next week but not Tuesday.

So, shotgun, our next meeting will be on fourth Thursday, April 24, at 
Capstrat in Raleigh:

http://trizpug.org/Members/psmith/apr-08-mtg
http://trizpug.org/Members/psmith/capstrat-directions/

The following program has been posted on our site for several weeks:

"TriZPUG April 2008 Meeting: Scientific Python - Remote Sensing and 
Ecological Modeling

Josh Gray, a doctoral candidate in the UNC Department of Geography, will 
describe a NASA funded ecological investigation which explores methods 
of scaling up eddy covariance flux tower estimates of various ecological 
parameters, especially those related to carbon and water cycling, to 
regional scales. Various remotely sensed images are employed in a novel 
model which estimates evapotranspiration for the Eno River Watershed in 
Durham and Orange Counties. O</description>
    <dc:creator>Chris Calloway</dc:creator>
    <dc:date>2008-04-15T21:12:41</dc:date>
  </item>
  <textinput about="http://search.gmane.org/?group=$group=gmane.org.user-groups.zope.trizpug">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.org.user-groups.zope.trizpug</link>
  </textinput>
</rdf:RDF>
