[Rapc-commit] SF.net SVN: rapc: [10] trunk/rapc
Brought to you by:
maher_karim,
sdteffen
From: <mah...@us...> - 2006-11-14 06:04:17
|
Revision: 10 http://svn.sourceforge.net/rapc/?rev=10&view=rev Author: maher_karim Date: 2006-11-13 22:04:01 -0800 (Mon, 13 Nov 2006) Log Message: ----------- 2006-11-13 Maher Abdel karim <mah...@do...> * conf/dccssconfig.php.default: * conf/dccssconfig.php.default:Adjust parameter to save loaded images. * conf/identifyplugin.php: * conf/identifyplugin.php.default:Adjust layer name and path for plugin. * print.php:added the possibility to print inspection sheets. * rapc.nsi:adjust installer to include xajax folder and files. Modified Paths: -------------- trunk/rapc/changelog trunk/rapc/conf/identifyplugin.ini.default trunk/rapc/conf/rapc_en.map trunk/rapc/print.php trunk/rapc/rapc.nsi Modified: trunk/rapc/changelog =================================================================== --- trunk/rapc/changelog 2006-11-09 05:59:28 UTC (rev 9) +++ trunk/rapc/changelog 2006-11-14 06:04:01 UTC (rev 10) @@ -1,3 +1,12 @@ +2006-11-13 Maher Abdel karim <mah...@do...> + + * conf/dccssconfig.php.default: + * conf/dccssconfig.php.default:Adjust parameter to save loaded images. + * conf/identifyplugin.php: + * conf/identifyplugin.php.default:Adjust layer name and path for plugin. + * print.php:added the possibility to print inspection sheets. + * rapc.nsi:adjust installer to include xajax folder and files. + 2006-11-6 Maher Abdel karim <mah...@do...> * address_confirmation.php:fix to deal with multiple results, and zoom to Modified: trunk/rapc/conf/identifyplugin.ini.default =================================================================== --- trunk/rapc/conf/identifyplugin.ini.default 2006-11-09 05:59:28 UTC (rev 9) +++ trunk/rapc/conf/identifyplugin.ini.default 2006-11-14 06:04:01 UTC (rev 10) @@ -9,10 +9,10 @@ [Plugin1] ; Location of the image files in the file system (A directory). ; The token '%s' will be replaced by field value -ImageLocation = "c:\program files\dccss\data\plugin\%s\" +ImageLocation = "c:\program files\rapc\data\plugin\%s\" ; Location of the image files on the web server. A (preferably relative) URL. ; The token '%s' will be replaced by field value. -ImageLocationURL = "/dccss/data/plugin/%s/"; +ImageLocationURL = "/rapc/data/plugin/%s/"; ; Pattern to filter directory contents. ; A PERL regular expression. Pattern = "/.*\.[jJ][pP][gG]$/" Modified: trunk/rapc/conf/rapc_en.map =================================================================== --- trunk/rapc/conf/rapc_en.map 2006-11-09 05:59:28 UTC (rev 9) +++ trunk/rapc/conf/rapc_en.map 2006-11-14 06:04:01 UTC (rev 10) @@ -111,7 +111,11 @@ CLASS NAME 'Adminsub.shp' TEMPLATE 'template.html' - + #RASTERFILL_STYLE_SOLID + STYLE + #COLOR 255 251 195 + BACKGROUNDCOLOR 255 255 255 + END #STYLE #OUTLINE SYMBOL STYLE OUTLINECOLOR 0 0 0 Modified: trunk/rapc/print.php =================================================================== --- trunk/rapc/print.php 2006-11-09 05:59:28 UTC (rev 9) +++ trunk/rapc/print.php 2006-11-14 06:04:01 UTC (rev 10) @@ -79,8 +79,8 @@ <table border="1" summary="Map" width="98%" height="80%" cellspacing="0" cellpadding="0" nowrap="nowrap"> <tr> - - <td width="90%" height="80%" valign="top"> <?php + + <td width="90%" height="80%" valign="top"> <?php if ($_REQUEST['action']!='AC'){ $map_path="./"; $map = ms_newMapObj($map_path.sprintf($_SESSION["strMapFile"], @@ -195,12 +195,24 @@ $image_url ?>" alt="Workorder Map" style="width: 33cm; height: 25cm;"/></a> </td> + <?php + if (($_REQUEST['vill_no']!=0) && ($_REQUEST['vill_no']!='')){ + echo ('<td><table>'); + echo('<tr><td>Village No.:'.$_REQUEST['vill_no'].'</td></tr>'); + echo('<tr><td>Block No.:'.$_REQUEST['block'].'</td></tr>'); + echo('<tr><td>Sector No.:'.$_REQUEST['sector'].'</td></tr>'); + echo('<tr><td>Plot No.:'.$_REQUEST['plot'].'</td></tr>'); + echo('</table></td>');} + ?> </tr> - <tr><td><IMG SRC=<?=$url?> BORDER=0 ></td> - <td><img alt="North arrow" src="images/northarrow.png" ></td> + <tr><td> + <table><tr><td><IMG SRC=<?=$url?> BORDER=0 ></td> + <td><img width=25 height=25 alt="North arrow" src="images/northarrow.png" ></td></tr></table></td> + </tr> + </table> Modified: trunk/rapc/rapc.nsi =================================================================== --- trunk/rapc/rapc.nsi 2006-11-09 05:59:28 UTC (rev 9) +++ trunk/rapc/rapc.nsi 2006-11-14 06:04:01 UTC (rev 10) @@ -234,6 +234,7 @@ File "include\dcmpostgis.php" File "include\header.php" File "include\i18n.php" + File "include\xajax*.*" IfFileExists "$INSTDIR\conf\dccssconfig.php" keep_config File /oname=dccssconfig.php "conf\dccssconfig.php.default" ; Write PGCLIENTBINDIRECTORY to dcmconfig.php @@ -246,6 +247,9 @@ File "include\dataobject\RAPC.links.ini" File "include\dataobject\*.php" + SetOutPath "$INSTDIR\include\xajax_js" + File "include\xajax_js\*.js" + SetOutPath "$INSTDIR\doc\administration" File "doc\administration\RAPC_administration_guide.pdf" File "doc\administration\RAPC_administration_guide.chm" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |