<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://greggsmith.net/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bz0rvc</id>
		<title>SDU - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://greggsmith.net/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Bz0rvc"/>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Special:Contributions/Bz0rvc"/>
		<updated>2026-07-27T13:21:48Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.26.1</generator>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Search_Requests,_Incidents,_and_Problems_Simultaneously_for_Ticket_Number&amp;diff=4571</id>
		<title>Search Requests, Incidents, and Problems Simultaneously for Ticket Number</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Search_Requests,_Incidents,_and_Problems_Simultaneously_for_Ticket_Number&amp;diff=4571"/>
				<updated>2012-04-05T21:19:55Z</updated>
		
		<summary type="html">&lt;p&gt;Bz0rvc: /* Additional Considerations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[Category:Customizations]]&lt;br /&gt;
[[Category:Incidents]]&lt;br /&gt;
[[Category:Problems]]&lt;br /&gt;
[[Category:Requests]]&lt;br /&gt;
[[Category:r11]]&lt;br /&gt;
{{Global Header}}&lt;br /&gt;
{{Global Announcement}}&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
This article provides instructions for implementing a customization that will allow searching for an Incident, Request, and Problem ticket number simultaneously via the Go Button Search.&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;font color=red&amp;gt;Notice: This customization does NOT work for r12.&amp;lt;/font&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
== Procedures ==&lt;br /&gt;
=== Step 1. Create the new factory ===&lt;br /&gt;
This step is to create the factory that will allow for searching through all three ticket types. &lt;br /&gt;
&lt;br /&gt;
Create a [[.mod file]] and placing it in the [[$NX_ROOT]]/site/mods/majic directory. Name the [[.mod file|.mod]] anything you like, but it is recommended that it be preceded with a 'z'.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;OBJECT cr {&lt;br /&gt;
  FACTORY zallcrs {&lt;br /&gt;
    STANDARD_LISTS {&lt;br /&gt;
      SORT_BY &amp;quot;open_date DESC, id DESC, status, priority DESC, ref_num&amp;quot;;&lt;br /&gt;
      MLIST OFF;&lt;br /&gt;
      RLIST OFF;&lt;br /&gt;
    };&lt;br /&gt;
    FUNCTION_GROUP &amp;quot;call_mgr&amp;quot;;&lt;br /&gt;
    REL_ATTR persistent_id;&lt;br /&gt;
    COMMON_NAME ref_num;&lt;br /&gt;
  };&lt;br /&gt;
};&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Step 2. Publish the Schema changes ===&lt;br /&gt;
Recycle the Service Desk service.&lt;br /&gt;
&lt;br /&gt;
=== Step 3. Modify gobtn.html ===&lt;br /&gt;
For r11.x releases it is recommended that you edit your pages via the [[Web Screen Painter]]. For older releases you must edit the files directly. The default gobtn.html, located in [[$NX_ROOT]]\bopcfg\www\wwwroot\html, must be copied and placed in the [[$NX_ROOT]]\site\mods\www\wwwroot\html directory. Remember to edit the copy, never the original.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Search for the '''''if (cfgAccessReqMgr)''''' statement in gobtn.html and add the following:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;html += &amp;quot;&amp;lt;OPTION VALUE='zallcrs.ref_num'&amp;gt;Reqs/Incs/Probs&amp;lt;/OPTION&amp;gt;&amp;quot;;&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Step 4. Create a Detail and List page ===&lt;br /&gt;
The system expects both a detail and a list file for each factory. To fulfill this requirement we will create a new detail_zallcrs.htmpl and list_zallcrs.htmpl file. To simplify administration of these files, as well as the implementation of this customization, we will put only a single line of code in both files. &lt;br /&gt;
&lt;br /&gt;
'''Entire content of detail_zallcrs.htmpl:'''&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&amp;lt;PDM_INCLUDE FILE=detail_cr.htmpl&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Entire content of list_zallcrs.htmpl:'''&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&amp;lt;PDM_INCLUDE FILE=list_cr.htmpl&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The PDM_INCLUDE is a redirect function. In both cases we are redirecting to the default Request pages. &lt;br /&gt;
&lt;br /&gt;
Ensure the new files reside in the [[$NX_ROOT]]\site\mods\www\htmpl\web\analyst directory.&lt;br /&gt;
&lt;br /&gt;
=== Step 5. Clear the web cache ===&lt;br /&gt;
The final step is to clear Service Desk's cache. The methods vary depending on release.&lt;br /&gt;
 &lt;br /&gt;
''For r11.x releases'' publish your changes via the [[Web Screen Painter]]. The process of publishing automatically initiates a [[pdm_webcache]].&lt;br /&gt;
&lt;br /&gt;
''For older releases'' execute [[pdm_webcache]] from a command prompt on the [[Primary Server]]. There is no need to run this command on the [[Secondary Server|Secondary Servers]].&lt;br /&gt;
&lt;br /&gt;
== Additional Considerations ==&lt;br /&gt;
You may find that you no longer have a need for the individual Incident, Problem and Request items in the drop-down.&lt;br /&gt;
&lt;br /&gt;
 You can remove these one of two ways&lt;br /&gt;
A: At the role level detail you can add/remove go resources. Find the appropriate role detail page from the admin tab --&amp;gt; security and role management --&amp;gt; role management --&amp;gt; role list --&amp;gt; role. On the Go Resource tab remove the individual R/I/P items.&lt;br /&gt;
&lt;br /&gt;
B: To remove them, simply comment out the entries as shown below from gobtn.html:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;//			if ( propIsITIL ) {&lt;br /&gt;
//				html += &amp;quot;&amp;lt;OPTION VALUE='in.ref_num'&amp;gt;Incident&amp;lt;/OPTION&amp;gt;&amp;quot;;&lt;br /&gt;
//				html += &amp;quot;&amp;lt;OPTION VALUE='pr.ref_num'&amp;gt;Problem&amp;lt;/OPTION&amp;gt;&amp;quot;;&lt;br /&gt;
//			} &lt;br /&gt;
//			html += &amp;quot;&amp;lt;OPTION VALUE='cr.ref_num'&amp;gt;Request&amp;lt;/OPTION&amp;gt;&amp;quot;;&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bz0rvc</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Search_Requests,_Incidents,_and_Problems_Simultaneously_for_Ticket_Number&amp;diff=4570</id>
		<title>Search Requests, Incidents, and Problems Simultaneously for Ticket Number</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Search_Requests,_Incidents,_and_Problems_Simultaneously_for_Ticket_Number&amp;diff=4570"/>
				<updated>2012-04-05T21:19:19Z</updated>
		
		<summary type="html">&lt;p&gt;Bz0rvc: /* Additional Considerations */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[Category:Customizations]]&lt;br /&gt;
[[Category:Incidents]]&lt;br /&gt;
[[Category:Problems]]&lt;br /&gt;
[[Category:Requests]]&lt;br /&gt;
[[Category:r11]]&lt;br /&gt;
{{Global Header}}&lt;br /&gt;
{{Global Announcement}}&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
This article provides instructions for implementing a customization that will allow searching for an Incident, Request, and Problem ticket number simultaneously via the Go Button Search.&lt;br /&gt;
&lt;br /&gt;
''&amp;lt;font color=red&amp;gt;Notice: This customization does NOT work for r12.&amp;lt;/font&amp;gt;''&lt;br /&gt;
&lt;br /&gt;
== Procedures ==&lt;br /&gt;
=== Step 1. Create the new factory ===&lt;br /&gt;
This step is to create the factory that will allow for searching through all three ticket types. &lt;br /&gt;
&lt;br /&gt;
Create a [[.mod file]] and placing it in the [[$NX_ROOT]]/site/mods/majic directory. Name the [[.mod file|.mod]] anything you like, but it is recommended that it be preceded with a 'z'.&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;OBJECT cr {&lt;br /&gt;
  FACTORY zallcrs {&lt;br /&gt;
    STANDARD_LISTS {&lt;br /&gt;
      SORT_BY &amp;quot;open_date DESC, id DESC, status, priority DESC, ref_num&amp;quot;;&lt;br /&gt;
      MLIST OFF;&lt;br /&gt;
      RLIST OFF;&lt;br /&gt;
    };&lt;br /&gt;
    FUNCTION_GROUP &amp;quot;call_mgr&amp;quot;;&lt;br /&gt;
    REL_ATTR persistent_id;&lt;br /&gt;
    COMMON_NAME ref_num;&lt;br /&gt;
  };&lt;br /&gt;
};&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Step 2. Publish the Schema changes ===&lt;br /&gt;
Recycle the Service Desk service.&lt;br /&gt;
&lt;br /&gt;
=== Step 3. Modify gobtn.html ===&lt;br /&gt;
For r11.x releases it is recommended that you edit your pages via the [[Web Screen Painter]]. For older releases you must edit the files directly. The default gobtn.html, located in [[$NX_ROOT]]\bopcfg\www\wwwroot\html, must be copied and placed in the [[$NX_ROOT]]\site\mods\www\wwwroot\html directory. Remember to edit the copy, never the original.&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Search for the '''''if (cfgAccessReqMgr)''''' statement in gobtn.html and add the following:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;html += &amp;quot;&amp;lt;OPTION VALUE='zallcrs.ref_num'&amp;gt;Reqs/Incs/Probs&amp;lt;/OPTION&amp;gt;&amp;quot;;&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Step 4. Create a Detail and List page ===&lt;br /&gt;
The system expects both a detail and a list file for each factory. To fulfill this requirement we will create a new detail_zallcrs.htmpl and list_zallcrs.htmpl file. To simplify administration of these files, as well as the implementation of this customization, we will put only a single line of code in both files. &lt;br /&gt;
&lt;br /&gt;
'''Entire content of detail_zallcrs.htmpl:'''&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&amp;lt;PDM_INCLUDE FILE=detail_cr.htmpl&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Entire content of list_zallcrs.htmpl:'''&amp;lt;source lang=&amp;quot;html4strict&amp;quot;&amp;gt;&amp;lt;PDM_INCLUDE FILE=list_cr.htmpl&amp;gt;&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The PDM_INCLUDE is a redirect function. In both cases we are redirecting to the default Request pages. &lt;br /&gt;
&lt;br /&gt;
Ensure the new files reside in the [[$NX_ROOT]]\site\mods\www\htmpl\web\analyst directory.&lt;br /&gt;
&lt;br /&gt;
=== Step 5. Clear the web cache ===&lt;br /&gt;
The final step is to clear Service Desk's cache. The methods vary depending on release.&lt;br /&gt;
 &lt;br /&gt;
''For r11.x releases'' publish your changes via the [[Web Screen Painter]]. The process of publishing automatically initiates a [[pdm_webcache]].&lt;br /&gt;
&lt;br /&gt;
''For older releases'' execute [[pdm_webcache]] from a command prompt on the [[Primary Server]]. There is no need to run this command on the [[Secondary Server|Secondary Servers]].&lt;br /&gt;
&lt;br /&gt;
== Additional Considerations ==&lt;br /&gt;
You may find that you no longer have a need for the individual Incident, Problem and Request items in the drop-down.&lt;br /&gt;
&lt;br /&gt;
You can remove these one of two ways&lt;br /&gt;
A: At the role level detail you can add/remove go resources. Find the appropriate role detail page from the admin tab --&amp;gt; security and role management --&amp;gt; role management --&amp;gt; role list --&amp;gt; role. On the Go Resource tab remove the individual R/I/P items.&lt;br /&gt;
 or &lt;br /&gt;
B: To remove them, simply comment out the entries as shown below from gobtn.html:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;//			if ( propIsITIL ) {&lt;br /&gt;
//				html += &amp;quot;&amp;lt;OPTION VALUE='in.ref_num'&amp;gt;Incident&amp;lt;/OPTION&amp;gt;&amp;quot;;&lt;br /&gt;
//				html += &amp;quot;&amp;lt;OPTION VALUE='pr.ref_num'&amp;gt;Problem&amp;lt;/OPTION&amp;gt;&amp;quot;;&lt;br /&gt;
//			} &lt;br /&gt;
//			html += &amp;quot;&amp;lt;OPTION VALUE='cr.ref_num'&amp;gt;Request&amp;lt;/OPTION&amp;gt;&amp;quot;;&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Bz0rvc</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Data_Partitions&amp;diff=4387</id>
		<title>Data Partitions</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Data_Partitions&amp;diff=4387"/>
				<updated>2011-10-25T17:53:06Z</updated>
		
		<summary type="html">&lt;p&gt;Bz0rvc: /* Example Constraints */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[Category:Configuration]]&lt;br /&gt;
{{Global Header}}&lt;br /&gt;
{{Global Announcement}}&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
Data Partitions are subsets of the database with restricted access based on their content. A Data Partition restricts access with a defined set of constraints. The Data Partitions are associated with Contacts via their Access Type. For legacy purposes Data Partitions can also be associated with a Contact Record directly, however this is not a recommended method. &lt;br /&gt;
&lt;br /&gt;
== Controlled Tables ==&lt;br /&gt;
Constraints can only be created for tables in the Controlled Tables list. There is no GUI supported method of adding tables to the Controlled Tables list, but the process can be achieved via a data load.&lt;br /&gt;
&lt;br /&gt;
Example load:&amp;lt;source lang=&amp;quot;text&amp;quot;&amp;gt;TABLE Controlled_Table&lt;br /&gt;
   del desc obj_name sym&lt;br /&gt;
   { &amp;quot;0&amp;quot; ,&amp;quot;Activity Log tables&amp;quot; ,&amp;quot;alg&amp;quot; ,&amp;quot;Act_Log&amp;quot; }&lt;br /&gt;
   { &amp;quot;0&amp;quot; ,&amp;quot;Change Activity Log tables&amp;quot; ,&amp;quot;chgalg&amp;quot; ,&amp;quot;Change_Act_Log&amp;quot; }&lt;br /&gt;
   { &amp;quot;0&amp;quot; ,&amp;quot;Issue Activity Log tables&amp;quot; ,&amp;quot;issalg&amp;quot; ,&amp;quot;Issue_Act_Log&amp;quot; }&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Constraint Types ==&lt;br /&gt;
* '''Create''' - New records must satisfy this constraint before a save can be completed.&lt;br /&gt;
* '''Defaults''' - Sets default values to be set on an empty field of a new record.&lt;br /&gt;
* '''Delete''' - Specifies what records can be deleted by the user.&lt;br /&gt;
* '''Pre-update''' - Identifies the records that can be updated by the user. Records not satisfying this constraint can only be view as read-only.&lt;br /&gt;
* '''Update''' - Updated records must satisfy this constraint in order to be saved.&lt;br /&gt;
* '''View''' - Identifies the records that can be viewed.&lt;br /&gt;
&lt;br /&gt;
== Example Constraints ==&lt;br /&gt;
{| style=&amp;quot;width:100%;vertical-align:top;&amp;quot; cellpadding=&amp;quot;10&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! style=&amp;quot;width:15%;&amp;quot; | Table&lt;br /&gt;
! style=&amp;quot;width:15%;&amp;quot; | Type&lt;br /&gt;
! style=&amp;quot;width:25%;&amp;quot; | Syntax&lt;br /&gt;
! style=&amp;quot;width:45%;&amp;quot; | Description&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Act_Log'''&lt;br /&gt;
| Pre-Update&lt;br /&gt;
| id = 1&lt;br /&gt;
| Prevents the update of Activities in the Request, Incident, and Problem Activity Log.*&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''ca_contact'''&lt;br /&gt;
| Pre-Update&lt;br /&gt;
| id = @root.id&lt;br /&gt;
| Only permit update of your own Contact Record.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''ca_contact'''&lt;br /&gt;
| Pre-Update&lt;br /&gt;
| id = U'00'&lt;br /&gt;
| Prevent updating of any Contact.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''ca_contact'''&lt;br /&gt;
| View&lt;br /&gt;
| last_name NOT LIKE 'KT%'&lt;br /&gt;
| Prevent display of any Groups beginning with the letters 'KT'&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Call_Req'''&lt;br /&gt;
| Create&lt;br /&gt;
| customer = @root.id&lt;br /&gt;
| Allowing only the creation of tickets where you are the End User&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Call_Req'''&lt;br /&gt;
| Default&lt;br /&gt;
| type = 'I'&lt;br /&gt;
| Create an Incident&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Call_Req'''&lt;br /&gt;
| Default&lt;br /&gt;
| category = 'pcat:400001'&lt;br /&gt;
| Set a default Request/Incident/Problem Area&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Call_Req'''&lt;br /&gt;
| Default&lt;br /&gt;
| group = U'807AEA15E8A2CF4ABF9181CBFEA12899'&lt;br /&gt;
| Set a default Group&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Call_Req'''&lt;br /&gt;
| Delete&lt;br /&gt;
| id = 1&lt;br /&gt;
| Prevent the deletion of any tickets&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Call_Req'''&lt;br /&gt;
| Pre-Update&lt;br /&gt;
| customer = @root.id&lt;br /&gt;
| Allowing only the updating of tickets where you are the End User&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Call_Req'''&lt;br /&gt;
| View&lt;br /&gt;
| customer = @root.id&lt;br /&gt;
| Allowing only the viewing of tickets where you are the End User&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Change_Act_Log'''&lt;br /&gt;
| Pre-Update&lt;br /&gt;
| id = 1&lt;br /&gt;
| Prevents the update of Activities in the CO Activity Log.*&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Change_Request'''&lt;br /&gt;
| Create&lt;br /&gt;
| id = 1&lt;br /&gt;
| Prevents the creation of a new Change Order&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Cr_Status'''&lt;br /&gt;
| View&lt;br /&gt;
| code IN ('ACK','OP','RE','WIP')&lt;br /&gt;
| Display a set list of Status Options&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''prob_ctg'''&lt;br /&gt;
| View&lt;br /&gt;
| sym like 'Application'&lt;br /&gt;
| Display only the Application Areas&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Workflow_Task'''&lt;br /&gt;
| Delete&lt;br /&gt;
| task != 'APP'&lt;br /&gt;
| Prevents the deletion of the Approval task.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Workflow_Task'''&lt;br /&gt;
| Delete&lt;br /&gt;
| status = 'WAIT' OR status = 'PEND'&lt;br /&gt;
| Prevents the deletion of completed tasks.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Workflow_Task'''&lt;br /&gt;
| View&lt;br /&gt;
| status != 'SKIP'&lt;br /&gt;
| Prevents view of the SKIP status.&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''ca_contact'''&lt;br /&gt;
| View&lt;br /&gt;
| (last_name NOT LIKE 'Group_Name')&lt;br /&gt;
| when we insert the above to access type; that access type wont be able to see the above group name&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
| '''Call_Req'''&lt;br /&gt;
| View&lt;br /&gt;
| organization is null&lt;br /&gt;
| Allowing only the viewing of tickets where the organization is null&lt;br /&gt;
|-valign=&amp;quot;top&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Bz0rvc</name></author>	</entry>

	</feed>