#!/bin/bash
#
# webbuild cgi script
# Copyright (c) 2012-2026 by Silvan Calarco <silvan.calarco@mambasoft.it>
#
. /usr/share/autodist/webbuild-functions
. /usr/share/autodist/webbuild-functions-private

AUTOSPEC_CMD="autospec --colors web"
# register all GET and POST variables
cgi_getvars BOTH ALL

#[ "$PACKAGE" ] && PACKAGEENCODED=`cgi_encodevar "$PACKAGE"` || PACKAGEENCODED=
[ "$PACKAGE" ] && PACKAGEENCODED=`cgi_encodevar "$PACKAGE"` || PACKAGEENCODED=

#cgi_getvars POST
if [ "${REQUEST:0:7}" != "refresh" ]; then
   echo "`date` - USER=$USER&REQUEST=$REQUEST&ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGE&MAINTAINERMODE=$MAINTAINERMODE" >> $LOG
fi

# read configuration after cgi_getvars to prevent variables overriding
. /etc/autodist/autoport

if [ "$REQUEST" != "rpmmanagerdownload" ]; then
   echo -e "Content-type: text/xml\nPragma: no-cache\n"
   echo -n "<webbuild>"
fi

# SECURITY
USER_ENABLED=
USER_ADMIN=
USER_CANMAINTAIN=
USER_CANSENDMESSAGES=
USER=${USER/.*\/}

if [ "$REMOTE_ADDR" = "127.0.0.1" -a "$USER" = "" ]; then
   USER=admin
fi
if [ "$USER" ]; then
   if [ -r "$WEBBUILD_STATEDIR/users/$USER.conf" ]; then
      . $WEBBUILD_STATEDIR/users/$USER.conf
   fi
   if [ "$USER_ENABLED" ]; then
      if [ "$USER_EMAIL" ]; then
         grep "USER_EMAIL=" $WEBBUILD_STATEDIR/users/$USER.conf >/dev/null ||
            echo "USER_EMAIL=$USER_EMAIL" >> $WEBBUILD_STATEDIR/users/$USER.conf
      fi
      USER_ENABLED=
      if [ "$SECRET" = "$USER_SECRET" ]; then
         [ "$REMOTE_ADDR" = "127.0.0.1" -o "$USER_SECRET" ] && USER_ENABLED=1 || USER_ENABLED=
      elif [ "$REQUEST" = "password" ]; then
         /usr/libexec/webbuild-checkpassword "$PASSWORD" "$USER_SECRET" 2>/dev/null
         if [ $? -eq 0 ]; then
            USER_ENABLED=1
         else
            USER_ENABLED=
         fi
      elif [ "${REQUEST:0:7}" != "refresh" ]; then
         if [ "$SECRET" ]; then
            echo "webbuild: invalid credentials: REQUEST=${REQUEST} USER=${USER} SECRET=${SECRET}" >&2
         fi
         # no "$USER_SECRET" set; require password
         echo -n "<output><![CDATA[Please enter your password: <input type=password id=password "
         echo -n "onkeypress=if(checkEnter(event))"
         echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
         echo -n "REQUEST=password&PASSWORD=\"+encodeURIComponent(getElementById('password').value));>"
         echo -n " <input type=button value=\"Submit\" onClick="
         echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
         echo -n "REQUEST=password&PASSWORD=\"+encodeURIComponent(getElementById('password').value));>"
         echo -n "]]></output>"
         echo -n "<environments> </environments>"
         echo -n "<speccreate> </speccreate>"
         echo -n "<specedit> </specedit>"
         echo -n "<repositories> </repositories>"
         echo -n "<packages> </packages>"
         echo -n "<editcontrols> </editcontrols>"
         echo -n "<showlogcontrols> </showlogcontrols>"
         echo -n "<editor> </editor>"
         echo -n "<operationpanel> </operationpanel>"
         echo -n "</webbuild>"
         exit
      fi
   fi
elif [ "${REQUEST:0:7}" != "refresh" ]; then
   echo -n "<output><![CDATA[Please enter your username: <input type=text id=username "
   echo -n "onkeypress=if(checkEnter(event)){"
   echo -n "user=encodeURIComponent(getElementById('username').value);"
   echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED\");};>"
   echo -n " <input type=button value=\"Submit\" onClick="
   echo -n "user=encodeURIComponent(getElementById('username').value);"
   echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED\");>"
   echo -n "]]></output>"
   echo -n "<environments> </environments>"
   echo -n "<speccreate> </speccreate>"
   echo -n "<specedit> </specedit>"
   echo -n "<repositories> </repositories>"
   echo -n "<packages> </packages>"
   echo -n "<editcontrols> </editcontrols>"
   echo -n "<showlogcontrols> </showlogcontrols>"
   echo -n "<editor> </editor>"
   echo -n "<operationpanel> </operationpanel>"
   echo -n "</webbuild>"
   exit
fi

if [ "$USER_ENABLED" != "1" -a "${REQUEST:0:7}" != "refresh" ]; then
   echo -n "<environments> </environments>"
   echo -n "<speccreate> </speccreate>"
   echo -n "<specedit> </specedit>"
   echo -n "<repositories> </repositories>"
   echo -n "<packages> </packages>"
   echo -n "<editcontrols> </editcontrols>"
   echo -n "<showlogcontrols> </showlogcontrols>"
   echo -n "<editor> </editor>"
   if [ "$USER" ]; then
      if [ "$REQUEST" = "enablerequest" ]; then
         echo "REQUEST_DATE=\"`date`\" REQUEST_USER=$USER REQUEST_USER_EMAIL=$USER_EMAIL REQUEST_TYPE=$REQUEST REQUEST_SECRET='$SECRET'" >> $WEBBUILD_STATEDIR/requests
         echo -n "<output>Your request has been submitted. Please wait for approval and retry later.</output>"
      elif [ "$REQUEST" = "password" ]; then
         echo -n "<output>Invalid password. Please reload and retry or ask the maintainer in case of problems.</output>"
      elif [ "`grep \" REQUEST_USER=$USER \" $WEBBUILD_STATEDIR/requests`" ]; then
         echo -n "<output>Your request is pending for approval. Please try again later or ask the maintainer in case of problems.</output>"
      else
         echo -n "<output><![CDATA[Your account is not enabled to use this service!"
         echo -n " <input type=button value=\"Send enable request\" onClick="
         echo -n "ajax_getvalues(\"REQUEST=enablerequest\");>"
         echo -n "]]></output>"
      fi
#   else
#      echo -n "<output>Unauthorized!</output>"
   fi
   echo -n "<operationpanel> </operationpanel>"
   echo -n "</webbuild>"
   exit
fi

if [ "$USER_ADMIN" -a "$FAKEUSERSWITCH" != "" ]; then
   if [ "$FAKEUSERSWITCH" = "_disabled_" ]; then
      set_user_state_var STATE_FAKEUSER
      FAKEUSER=
   else
      set_user_state_var STATE_FAKEUSER $FAKEUSERSWITCH
   fi
fi

if [ "$USER" -a "$USER_ENABLED" ]; then
   # set user state changes
   if [ "$AUTODISTCURRENT" != "" ]; then
      if [ "$AUTODISTCURRENT" = "true" ]; then
         set_user_state_var STATE_AUTODISTCURRENT 1
      else
         set_user_state_var STATE_AUTODISTCURRENT 0
      fi
   fi
   if [ "$ADVANCEDCONTROLSSWITCH" != "" ]; then
      if [ "$ADVANCEDCONTROLSSWITCH" = "true" ]; then
         set_user_state_var STATE_ADVANCEDCONTROLS 1
      else
         set_user_state_var STATE_ADVANCEDCONTROLS
      fi
   fi
   if [ "$PRIVACYMODESWITCH" != "" ]; then
      if [ "$PRIVACYMODESWITCH" = "true" ]; then
         set_user_state_var STATE_PRIVACYMODE 1
      else
         set_user_state_var STATE_PRIVACYMODE
      fi
   fi
   if [ "$JOBSSHOWALL" != "" ]; then
      if [ "$JOBSSHOWALL" = "true" ]; then
         set_user_state_var STATE_JOBSSHOWALL 1
      else
         set_user_state_var STATE_JOBSSHOWALL
      fi
   fi

   # read user state file
   [ -e $WEBBUILD_STATEDIR/users/$USER.state ] && . $WEBBUILD_STATEDIR/users/$USER.state

   if [ "$USER_ADMIN" -a "$STATE_FAKEUSER" != "" ]; then
      USER=$STATE_FAKEUSER
      USER_ENABLED=
      USER_ADMIN=
      USER_CANMAINTAIN=
      USER_CANINSTALL=
      USER_ENVIRONMENTS=
      USER_ALLENVIRONMENTS=
      USER_ALLREPOSITORIES=
      [ -e $WEBBUILD_STATEDIR/users/$USER.conf ] && . $WEBBUILD_STATEDIR/users/$USER.conf
      STATE_ADVANCEDCONTROLS=
      [ -e $WEBBUILD_STATEDIR/users/$USER.state ] && . $WEBBUILD_STATEDIR/users/$USER.state
   fi
else
   USER=
fi

#
# Public requests
#
if [ "$REQUEST" = "refresh" -o "$REQUEST" = "refreshsocial" -o ! "$USER" ]; then
   echo -n "<socialbox>"
   SID=0
   if [ ! "$FROMID" -o "$FROMID" = "0" -o "$FROMID" = "NaN" ]; then
      FROMID=0
   fi
   eval `autodist-distroquery social-log get $FROMID 100`
   for entry in "${social_log_entries[@]}"; do
      SAVEIFS=$IFS
      IFS="|"
      set -- $entry
      IFS=$SAVEIFS
      SID="$1"
      SPRIVACY="$2"
      SUSER="$3"
      STYPE="$4"
      STARGET="$5"
      SEMAIL="$6"
      STEXT="$7"
      STIME="$8"
      [ "$STARGET" = "developers" -a ! "$USER" ] && continue
      [ "$SUSER" = "$USER" -a "$STARGET" = "developers" ] && continue
      if [ "$SPRIVACY" -a ! "$USER" ]; then
         USER_GRAVATAR=
      else
         USER_GRAVATAR=`echo -n $SEMAIL | md5sum | sed "s| .*||"`
      fi
      echo -n "<add id=\"$SID\"><![CDATA[<div style=\"margin:0;padding:0;\"><div style=\"vertical-align:middle;position:relative;float:left;height:24px;width:24px;margin-right:2px;\">"
      echo -n "<img src=\"https://www.gravatar.com/avatar/$USER_GRAVATAR?s=24&d=https://www.gravatar.com/avatar/ad516503a11cd5ca435acc9bb6523536?s=24\" /></div>"
      if [ "$SPRIVACY" -a ! "$USER" ]; then
         SUSER="a developer"
      elif [ "$USER" = "$SUSER" ]; then
         SUSER="you"
      fi
      echo -n "<div style=\"position:relative;margin-left:24px;height:auto;padding:0;\"><b>$SUSER</b> $STEXT <i><span name=socialtime time=$STIME></span></i></div>"
      echo -n "</div><div style=\"clear:both;\"><hr></div>]]></add>"
   done
   echo -n "</socialbox>"
fi

if [ "$USER_ENABLED" != "1" -o "$REQUEST" = "refreshsocial" ]; then
   echo -n "</webbuild>"
   exit
fi

#
# Enabled users requests
#

rm -f $WEBBUILD_STATEDIR/cache/config-dynamic
if [ "${#AUTOPORT_ARCH[*]}" = "0" ]; then
   LOCAL_PACKAGER_USERS=`getent group packager | cut -d: -f4 | tr , ' '`
   LOCAL_ARCH=`uname -m`
   case $LOCAL_ARCH in
      i386|i486|i686|athlon) LOCAL_ARCH="i586" ;;
   esac
   i=0
   for u in $LOCAL_PACKAGER_USERS; do
      cat >> $WEBBUILD_STATEDIR/cache/config-dynamic << _EOF
AUTOPORT_DISABLE[$i]=1
AUTOPORT_CHROOT_USER[$i]=$u
AUTOPORT_NATIVE[$i]=1
AUTOPORT_ARCH[$i]="$LOCAL_ARCH"
_EOF
      i=$((i + 1))
   done   
   . $WEBBUILD_STATEDIR/cache/config-dynamic
fi


if [ "$REQUEST" = "rpmmanagerdownload" ]; then
   resolve_rpmmanagerdir "$RPMMANAGERDIR" "${AUTOPORT_ARCH[$ENVIRONMENT]}" "$REPOSITORY"
   for f in $RPMMANAGERPACKAGES; do
      installpackages="$installpackages $rpmmanagerdir/$f"
   done
   if [ "$rpmmanagermode" = "environment" ]; then
      download_file $ENVIRONMENT "$installpackages"
   else
      download_file "" "$installpackages"
   fi
   RET=$?
   exit
fi

# delete a note
if [ "$REQUEST" = "removenote" ]; then
   if [ "$USER" = "$NOTEUSER" -o "$USER_ADMIN" ]; then
      [ -e $WEBBUILD_STATEDIR/notes/$PACKAGE.notes ] || break
      sed -i "/^$NOTEDATE $NOTEUSER /d" $WEBBUILD_STATEDIR/notes/$PACKAGE.notes
      [ ! -s $WEBBUILD_STATEDIR/notes/$PACKAGE.notes ] && rm -f $WEBBUILD_STATEDIR/notes/$PACKAGE.notes
   fi
   echo -n "</webbuild>"
   exit
fi

# enable user
if [ "$USER_ADMIN" -a "$REQUEST" = "enableuser" ]; then
   if [ ! -e $WEBBUILD_STATEDIR/users/$REQUEST_USER.conf ]; then
      if [ "$REQUEST_ACCEPT" = "true" ]; then
         cat >> $WEBBUILD_STATEDIR/users/$REQUEST_USER.conf << _EOF
USER_ENABLED=1
USER_SECRET='$REQUEST_SECRET'
USER_EMAIL='$REQUEST_USER_EMAIL'
_EOF
      else
         cat >> $WEBBUILD_STATEDIR/users/$REQUEST_USER.conf << _EOF
USER_ENABLED=0
USER_EMAIL='$REQUEST_USER_EMAIL'
_EOF
      fi
   fi
   sed -i "/ REQUEST_USER=$REQUEST_USER /d" $WEBBUILD_STATEDIR/requests
   echo -n "</webbuild>"
   exit
fi

# send data for cookie
if [ "$REQUEST" = "password" ]; then
   echo -n "<cookie-user>$USER</cookie-user><cookie-secret>$USER_SECRET</cookie-secret>"
fi

# kill processes or clean log
if [ "$REQUEST" = "killtree" ]; then
   killline=`grep "^$KILLPID " $WEBBUILD_STATEDIR/processes`
   if [ "$killline" ]; then
      if [ $KILLPID -ge 1 ]; then
         if [ -e /proc/$KILLPID ]; then
            $SUDO_WRAPPER killtree $KILLPID "$USER"
         else
            set -- $killline
            rm -f $5
            sed -i "/^$KILLPID /d" $WEBBUILD_STATEDIR/processes
         fi
      else
         echo "<output>ERROR: Invalid PID</output>"
      fi
   fi
   REQUEST=refresh
fi

# refresh processes list
if [ "$REQUEST" = "refresh" -o "$REQUEST" = "refreshjobs" ]; then

   echo -n "<processes><![CDATA["
   if [ "$USER_ADMIN" -a -s $WEBBUILD_STATEDIR/requests ]; then
      echo -n "<div align=left class=processes><b>Pending admin requests:</b>"
      while read line; do
         eval $line
         echo -n "<br><b>$REQUEST_USER</b>: "
         case $REQUEST_TYPE in
            "enablerequest") echo -n "enable request" ;;
            *) echo -n "unknown request" ;;
         esac
         echo -n "&nbsp;<input type=button id=enableuser value=\"Accept\" onclick="
         echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&PACKAGE=$PACKAGEENCODED&"
         echo -n "REQUEST=enableuser&REQUEST_ACCEPT=true&REQUEST_USER=$REQUEST_USER&REQUEST_USER_EMAIL=$REQUEST_USER_EMAIL&REQUEST_SECRET=`cgi_encodevar $REQUEST_SECRET`\");>"
         echo -n "&nbsp;<input type=button id=enableuser value=\"Deny\" onclick="
         echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&PACKAGE=$PACKAGEENCODED&"
         echo -n "REQUEST=enableuser&REQUEST_ACCEPT=&REQUEST_USER=$REQUEST_USER&REQUEST_USER_EMAIL=$REQUEST_USER_EMAIL&REQUEST_SECRET=`cgi_encodevar $REQUEST_SECRET`\");>"
      done < $WEBBUILD_STATEDIR/requests
      echo -n "</div>"
   fi

#   echo -n "<div align=left class=processes>"
   u="$(uptime)"
   f="$(df / -k -h --output=avail,pcent|tail -n1)"
   [ -z "/var/autoport" ] && fap="$(df /var/autoport/* -k -h --output=avail,pcent|tail -n+2)"
   [ "$fap" ] && f="$f | ${fap/$'\n'/ | }"
   b=`ps ax|grep "rpmbuild .*\.spec$"|while read l; do basename "${l/.spec}"; done`
   echo -n "Load: <b>${u/*: }</b> | Disk: <b>$f</b> | "
   [ "$b" ] && echo -n "Building now: <b>$b</b> | "
   [ "`ps cax|grep dnf`" ] && echo "<b style=\"color:red\">Updating</b> | "
   if [ "$STATE_JOBSSHOWALL" != "1" ]; then
      echo "$USER's jobs: [<a href=# onclick=ajax_getvalues(\"REQUEST=refreshjobs&JOBSSHOWALL=true\");>Show all jobs</a>]"
   else
      echo "All jobs: [<a href=# onclick=ajax_getvalues(\"REQUEST=refreshjobs&JOBSSHOWALL=false\");>Only show my jobs</a>]"
   fi
   echo -n "<br>"

   numprocess=0
   tac $WEBBUILD_STATEDIR/processes | \
   while read line; do
      set -- $line
      CMDPID=$1
      CMDUSER=$2
      PROCESSLOG=$5
      ORIGRETCODE=$6
      NOTIFIED=
      if [ "${ORIGRETCODE: -1}" == "+" ]; then
         NOTIFIED=1
         RETCODE="${ORIGRETCODE/+*}"
      else
         RETCODE=$ORIGRETCODE
      fi
      numprocess=$(($numprocess + 1))
      cmdline=`echo "$line" | sed "s|$1 $2 $3 $4 $5 $ORIGRETCODE ||"`
      cmdline=`echo "$cmdline" | sed "s| --colors web||"`
      PACKAGE_ENCODED=`cgi_encodevar $4`
      [ "$STATE_JOBSSHOWALL" = "1" -o "$USER" = "$2" ] || continue
      if [ $RETCODE -eq 256 -a -e /proc/$1 ]; then
         echo -n "<style>@keyframes wb-spin{to{transform:rotate(360deg)}}</style>"
         echo -n "<span style=\"display:inline-block;animation:wb-spin 1s linear infinite;color:white;font-size:10px;padding:1px;\" title=\"running...\">🌀</span>"
      elif [ ! -e $PROCESSLOG ]; then
         sed -i "\,$CMDPID $CMDUSER.* $PROCESSLOG ,d" $WEBBUILD_STATEDIR/processes
         continue
      else
         if [ $RETCODE -eq 256 ]; then
            $SUDO_WRAPPER finishprocess $1 "$USER" $5
            RETCODE=$?
         fi
         # Process finished: add + to retcode to report notification
         if [ ! "$NOTIFIED" ]; then
            sed -i "s|^\($CMDPID $CMDUSER.* $PROCESSLOG $RETCODE\)|\1\+|" $WEBBUILD_STATEDIR/processes
         fi
         CMDEMAIL=`grep "USER_EMAIL" $WEBBUILD_STATEDIR/users/$CMDUSER.conf|sed "s|USER_EMAIL=||"`
         if [ $RETCODE -eq 0 ]; then
             [ "$NOTIFIED" ] || \
                social_log "SUSER=$CMDUSER STYPE=job SEMAIL=$CMDEMAIL STEXT=\"''$cmdline'' <b>succesfully completed</b>!\" STIME=`date +%s`"
#            echo -n "<font color=lightgreen><b>OK</b></font>"
            echo -n "<span style=\"font-size:8px;padding:2px;\" title=\"Job successfully completed\">🟢</span>"
         else
             [ "$NOTIFIED" ] || \
                social_log "SUSER=$CMDUSER STYPE=job SEMAIL=$CMDEMAIL STEXT=\"''$cmdline'' <b>failed</b>\" STIME=`date +%s`"
#            echo -n "<font color=red><b>ERROR ($RETCODE)</b></font>"
            echo -n "<span style=\"font-size:8px;padding:2px;\" title=\"Job returned with error $RETCODE\">🔴</span>"
         fi
      fi
      echo -n "<b>$2</b> on <i>`print_environment_descr $3`</i>: "
      if [ $RETCODE -eq 256 -a -e /proc/$1 ]; then
         echo -n "\"<a href=# title=\"Click to see live output log\" onclick=ajax_getvalues(\"ENVIRONMENT=$3&PACKAGE=$PACKAGE_ENCODED&"
         echo -n "REQUEST=showlog&LOGTYPE=processtail&PROCESSPID=$1&LOGFILE=$5\")>"
         echo -n "<b><i>$cmdline</i></b></a>\" "
      else
         echo -n "\"<a href=# title=\"Click to see output log\" onClick=ajax_getvalues(\"ENVIRONMENT=$3&PACKAGE=$PACKAGE_ENCODED&"
         echo -n "REQUEST=showlog&LOGTYPE=processoutput&LOGFILE=$5\")>"
         echo -n "<b><i>$cmdline</i></b>\"</a> (`date -r $5 +'%F %T'`)"
      fi
      if [ "$2" = "$USER" -o "$USER_ADMIN" ]; then
         if [ $RETCODE -eq 256 -a -e /proc/$1 ]; then
            echo -n " [<a href=# title=\"Click to kill this running job\" onclick=ajax_getvalues(\"ENVIRONMENT=$3&PACKAGE=$PACKAGE_ENCODED&"
            echo -n "REQUEST=killtree&KILLPID=$1\")>"
            echo -n "kill"
         else
            echo -n " [<a href=# title=\"Click to clean job output when you are done\" onclick=ajax_getvalues(\"ENVIRONMENT=$3&PACKAGE=$PACKAGE_ENCODED&"
            echo -n "REQUEST=killtree&KILLPID=$1\")>"
            echo -n "x"
         fi
         echo -n "</a>]"
      fi
      echo -n "<br>"
   done

#   [ $numprocess -gt 0 ] && echo -n "</div>"
   echo -n "]]></processes></webbuild>"
   exit
fi

# message send request (social_log)
if [ "$REQUEST" = "message" -a "$USER" -a "$USER_CANSENDMESSAGES" ]; then
   # external (autodist) social messages
   [ "$MESSAGETYPE" ] || MESSAGETYPE=broadcastmessage
   social_log "SUSER=$USER STYPE=$MESSAGETYPE STARGET=\"$TARGET\" SEMAIL=$USER_EMAIL STEXT=\"$MESSAGE\" STIME=`date +%s`"
   echo "</webbuild>"
   exit
fi

# repsearch request
if [ "$REQUEST" = "repsearch" ]; then
   echo -n "<output><![CDATA["
   echo -n "<hr><div align=left class=\"outputbox\" id=outputtop>"
   autodist-distroquery search-html "$REPSEARCHTEXT"
   echo "</div>"
   echo "]]></output></webbuild>"
   exit
fi

# environment search request
if [ "$REQUEST" = "environmentsearch" ]; then
   echo -n "<output><![CDATA["
   echo -n "<hr><b>Environment search results for \"$ENVSEARCHTEXT\":</b><div align=left class=\"outputbox\" id=outputtop>"
   echo -n "<pre><!-- SCROLL -->"
   echo -n "<font style=\"background-color:gray\">Installed packages providing '$ENVSEARCHTEXT':</font><br>"
   WHAT_PROVIDES=`$SUDO_WRAPPER binary $ENVIRONMENT "$USER" "" "rpm -q --what-provides \"$ENVSEARCHTEXT\"" | sort -u`
   echo -n "$WHAT_PROVIDES<br>"
   if [ "${WHAT_PROVIDES:0:10}" != "no package" ]; then
      for f in $WHAT_PROVIDES; do
         echo -n "<br><font style=\"background-color:gray\">$f installed package info:</font><br>"
         $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "rpm -qi $f"
         if [ $? -eq 0 ]; then
            echo -n "<br><font style=\"color:gold\">$f provides:</font><br>"
            $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "rpm -q $f --provides"
            echo -n "<br><font style=\"color:gold\">$f requirements:</font><br>"
            $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "rpm -q $f --requires"
         fi
      done
   fi
#      sed "s|\(.*(source).*\)|<font color=white><b>\1</b></font>|;
#           s|\(.*(${AUTOPORT_ARCH[$ENVIRONMENT]}).*\)|<font color=lightgreen>\1</font>|"
   echo -n "<!-- ENDSCROLL --></pre>"
   echo "</div>]]></output></webbuild>"
   exit
fi

# rpm manager
if [ "$REQUEST" = "rpmmanager" ]; then
   environment_descr=`print_environment_descr $ENVIRONMENT`
   echo -n "<window><![CDATA["
   echo -n "<div class=windowcontainer><div class=windowopaquebackground></div>"
   echo -n "<div class=windowbox style=\"top:-50px;\"><div style=\"overflow:auto;width:600px;height:420px\">"
   echo -n "RPM manager for <b>$environment_descr</b> environment<br>"

   # select rpm manager resource directory to display
   echo "<select id=rpmmanagerdir "
   echo -n "onchange=ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
   echo -n "REQUEST=rpmmanager&RPMMANAGERDIR=\"+this.value);>"
   [ "$RPMMANAGERDIR" = "RPMS" ] && SELECTED="selected=selected" || SELECTED=
   echo -n "<option value=\"RPMS\" $SELECTED>Local *.${AUTOPORT_ARCH[$ENVIRONMENT]}.rpm</option>"
   [ "$RPMMANAGERDIR" = "RPMSNOARCH" ] && SELECTED="selected=selected" || SELECTED=
   echo -n "<option value=\"RPMSNOARCH\" $SELECTED>Local *.noarch.rpm</option>"
   if [ "${AUTOPORT_ARCH[$ENVIRONMENT]}" == "x86_64" ]; then
      [ "$RPMMANAGERDIR" = "RPMS_i586" ] && SELECTED="selected=selected" || SELECTED=
      echo -n "<option value=\"RPMS_i586\" $SELECTED>Local *.i586.rpm</option>"
   fi
   if [ "${AUTOPORT_ARCH[$ENVIRONMENT]}" == "x86_64" -o "${AUTOPORT_ARCH[$ENVIRONMENT]}" == "i586" ]; then
      [ "$RPMMANAGERDIR" = "RPMS_arm" ] && SELECTED="selected=selected" || SELECTED=
      echo -n "<option value=\"RPMS_arm\" $SELECTED>Local *.arm.rpm</option>"
   fi
   [ "$RPMMANAGERDIR" = "SRPMS" ] && SELECTED="selected=selected" || SELECTED=
   echo -n "<option value=\"SRPMS\" $SELECTED>Local *.src.rpm</option>"
   if [ "$REPOSITORY" -a -e $local_ftp/$REPOSITORY ]; then
      [ "$RPMMANAGERDIR" = "REP_RPMS" ] && SELECTED="selected=selected" || SELECTED=
      echo -n "<option value=\"REP_RPMS\" $SELECTED>$REPOSITORY *.${AUTOPORT_ARCH[$ENVIRONMENT]}.rpm</option>"
      [ "$RPMMANAGERDIR" = "REP_RPMSNOARCH" ] && SELECTED="selected=selected" || SELECTED=
      echo -n "<option value=\"REP_RPMSNOARCH\" $SELECTED>$REPOSITORY *.noarch.rpm</option>"
      [ "$RPMMANAGERDIR" = "REP_SRPMS" ] && SELECTED="selected=selected" || SELECTED=
      echo -n "<option value=\"REP_SRPMS\" $SELECTED>$REPOSITORY *.src.rpm</option>"
   fi
   echo -n "</select>"

   # multiselect
   echo -n "<div style=\"text-align:left\"><label><input type=checkbox name=pkgsselectallcheckbox value=\"\" onclick=checkAllBoxes('rpmmanagercheckbox',this.checked);>select/unselect all</label>"
   echo -n "</div>"
   echo -n "<div class=multiselect style=\"height:350px;text-align:left;\">"

   resolve_rpmmanagerdir "$RPMMANAGERDIR" "${AUTOPORT_ARCH[$ENVIRONMENT]}" "$REPOSITORY"
   rpmmanagerfiles=$rpmmanagerdir/$rpmmanagermask
   if [ "${rpmmanagermode}" = "environment" ]; then
      # local files in environment
      $SUDO_WRAPPER binary $ENVIRONMENT "$USER" "" "ls -t $rpmmanagerfiles 2>/dev/null" | \
      while read f; do
         pkgname=`basename $f`
         echo -n "<label>"
         echo -n "<input type=checkbox name=rpmmanagercheckbox value=\"$pkgname\">${pkgname} "
         echo -n "<a title=\"Click to download file\" href=\"#\" "
         echo -n "onclick=getDownload(\"ENVIRONMENT=$ENVIRONMENT&REQUEST=rpmmanagerdownload&RPMMANAGERDIR=$RPMMANAGERDIR&"
         echo -n "&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&RPMMANAGERPACKAGES=\"+encodeURIComponent('$pkgname'));>"
         echo -n "⬇️</a>"
         echo -n "</label>"
      done
   else
      # files in real local repositories
      ls -t $rpmmanagerfiles 2>/dev/null | \
      while read f; do
         pkgname=`basename $f`
         echo -n "<label>"
         echo -n "<input type=checkbox name=rpmmanagercheckbox value=\"$pkgname\">${pkgname} "
         echo -n "<a title=\"Click to download file\" href=\"#\" "
         echo -n "onclick=getDownload(\"ENVIRONMENT=$ENVIRONMENT&REQUEST=rpmmanagerdownload&RPMMANAGERDIR=$RPMMANAGERDIR&"
         echo -n "&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&RPMMANAGERPACKAGES=\"+encodeURIComponent('$pkgname'));>"
         echo -n "⬇️</a>"
         echo -n "</label>"
      done
   fi
   echo -n "</div>"
   echo -n "</div>"

   if [ "$USER_CANINSTALL" ]; then
      # force rpm install/upgrade operation
      echo -n "<label style=\"background-color:red;padding:1px;\"><input type=checkbox id=\"rpmmanagerforce\" value=\"force\">force&nbsp;</label>&nbsp;&nbsp;"
      # rpm manager install packages
      echo -n "<input type=button value=\"install\" onclick="
      echo -n "p=getCheckedValuesByName('rpmmanagercheckbox');"
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
      echo -n "RPMMANAGERDIR=$RPMMANAGERDIR&"
      echo -n "RPMMANAGERPACKAGES=\"+encodeURIComponent(p)+\"&"
      echo -n "RPMMANAGERPACKAGES=\"+encodeURIComponent(p)+\"&"
      echo -n "RPMMANAGERFORCE=\"+getElementById('rpmmanagerforce').checked+\"&"
      echo -n "REQUEST=rpmmanagerinstall\""
      echo -n ",\"`cgi_encodevar "Install <b>"`\"+p+"
      echo -n "\"`cgi_encodevar "</b> in <b>$environment_descr</b> environment?"`\""
      echo -n ");>&nbsp;&nbsp;"
      # rpm manager upgrade packages
      echo -n "<input type=button value=\"upgrade\" onclick="
      echo -n "p=getCheckedValuesByName('rpmmanagercheckbox');"
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
      echo -n "RPMMANAGERDIR=$RPMMANAGERDIR&"
      echo -n "RPMMANAGERPACKAGES=\"+encodeURIComponent(p)+\"&"
      echo -n "RPMMANAGERFORCE=\"+getElementById('rpmmanagerforce').checked+\"&"
      echo -n "REQUEST=rpmmanagerupgrade\""
      echo -n ",\"`cgi_encodevar "Upgrade <b>"`\"+p+"
      echo -n "\"`cgi_encodevar "</b> in <b>$environment_descr</b> environment?"`\""
      echo -n ");>&nbsp;&nbsp;"
   fi

   # rpm manager close link
   echo -n "<br><a href=# onclick=clearid(\"window\")>CLOSE</a></div></div>"
   echo "]]></window></webbuild>"
   exit
fi

# set current user environment if not passed
if [ ! "$ENVIRONMENT" ]; then
   for i in `seq 0 ${#AUTOPORT_ARCH[*]}`; do
      [ "${AUTOPORT_ARCH[$i]}" ] || continue
      if [ "${AUTOPORT_CHROOT_USER[$i]}" = "$USER" ]; then
         ENVIRONMENT=$i
         break
      fi
      if [ "${AUTOPORT_CHROOT_USER[$i]}" = "contrib" ]; then
         ENVIRONMENT=$i
      fi
   done
   [ "$ENVIRONMENT" ] || ENVIRONMENT=$DEFAULT_ENVIRONMENT
fi

if [ "${AUTOPORT_CHROOT[$ENVIRONMENT]}" ]; then
   WORKINGROOT="/var/autoport/${AUTOPORT_CHROOT[$ENVIRONMENT]}/"
   WORKINGHOME="/var/autoport/${AUTOPORT_CHROOT[$ENVIRONMENT]}/usr/src/"
   BUILDLOGDIR="/var/autoport/${AUTOPORT_CHROOT[$ENVIRONMENT]}/home/${AUTOPORT_CHROOT_USER[$ENVIRONMENT]}/.autodist/log/"
   AUTOPORTLOGDIR="/var/autoport/${AUTOPORT_CHROOT[$ENVIRONMENT]}/home/${AUTOPORT_CHROOT_USER[$ENVIRONMENT]}/.autoport/${AUTOPORT_ARCH[$ENVIRONMENT]}/"
elif [ "${AUTOPORT_NATIVE[$ENVIRONMENT]}" ]; then
   WORKINGROOT="/"
   WORKINGHOME=`getent passwd ${AUTOPORT_CHROOT_USER[$ENVIRONMENT]} | cut -d: -f6`
   [ -e "$WORKINGHOME/RPM" ] || WORKINGHOME="/usr/src/"
   BUILDLOGDIR="/home/${AUTOPORT_CHROOT_USER[$ENVIRONMENT]}/.autodist/log/"
   AUTOPORTLOGDIR="/home/${AUTOPORT_CHROOT_USER[$ENVIRONMENT]}/.autoport/${AUTOPORT_ARCH[$ENVIRONMENT]}/"
else
   WORKINGROOT="/"
   WORKINGHOME="/var/autodist/"
   BUILDLOGDIR="/var/autodist/log/"
   AUTOPORTLOGDIR="/var/autodist/.autoport/${AUTOPORT_ARCH[$ENVIRONMENT]}/"
fi

# show log
if [ "$REQUEST" = "showlog" -o "$REQUEST" = "autobuildedit" ]; then
   showlog
   if [ "$REQUEST" = "autobuildedit" ]; then
      REQUEST=edit
   else
      echo -n "</webbuild>"
      exit
   fi
fi

echo -n "<topcontrols><![CDATA["
# new session button
echo -n "<input type=button id=newsessionbutton value=\"New session\" onclick="
echo -n "window.open(document.URL);>"
# rpm manager
echo -n "<input type=button id=rpmmanager value=\"RPM manager\" onclick="
echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
echo -n "REQUEST=rpmmanager\");>"
# expert mode checkbox
[ "$STATE_ADVANCEDCONTROLS" ] && CHECKED="checked=checked" || CHECKED=
echo -n " <span>Autodist:<input type=checkbox id=\"advancedcontrols\" "
echo -n "onclick=ajax_getvalues(\""
echo -n "ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
echo -n "ADVANCEDCONTROLSSWITCH=\"+getElementById('advancedcontrols').checked); $CHECKED>"
# privacy mode checkbox
[ "$STATE_PRIVACYMODE" ] && CHECKED="checked=checked" || CHECKED=
echo -n " <span style=\"white-space:nowrap\">Privacy:<input type=checkbox id=\"privacymode\" "
echo -n "onclick=ajax_getvalues(\""
echo -n "ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
echo -n "PRIVACYMODESWITCH=\"+getElementById('privacymode').checked); $CHECKED>"
echo -n "</span>"
# maintainer mode checkbox
if [ "$USER_CANMAINTAIN" ]; then
   [ "$MAINTAINERMODE" = "true" ] && CHECKED="checked"
   echo -n "Maintainer:<input type=checkbox id=\"maintain\" $CHECKED onclick="
   echo -n "ajax_getvalues(\"REPOSITORY=$REPOSITORY"
   echo -n "&MAINTAINERMODE=\"+getElementById('maintain').checked+\""
   echo -n "&PACKAGE=$PACKAGEENCODED&ENVIRONMENT=$ENVIRONMENT&REQUEST=switchmaintainermode\");>"
fi
# switch user select
if [ "$USER_ADMIN" -o "$STATE_FAKEUSER" ]; then
   echo -n " | "
   echo -n " Test user: <select id=adminuser "
   echo -n "onchange=ajax_getvalues(\"REQUEST=adminuser&"
   echo -n "FAKEUSERSWITCH=\"+this.value);>"
   echo -n "<option value=\"_disabled_\">-- disabled --</option>"
   for f in $WEBBUILD_STATEDIR/users/*.conf; do
      adminuser=`basename ${f/.conf}`
      [ "$STATE_FAKEUSER" = "$adminuser" ] && SELECTED="selected=\"selected\"" || SELECTED=
      echo -n "<option value=\"$adminuser\" $SELECTED>$adminuser</option>"
   done
   echo -n "</select>"
fi
echo -n "]]></topcontrols>"

if [ "$HOST_IS_X86_64" -a "${AUTOPORT_ARCH[$ENVIRONMENT]}" != "x86_64" ]; then
   SUDO_WRAPPER="linux32 $SUDO_WRAPPER"
fi

echo -n "<environments><![CDATA["
# ENVIRONMENT select
echo -n "<br>Build environment:<select id=environment "
echo -n "onchange=ajax_getvalues(\"ENVIRONMENT=\"+this.value+\"&REQUEST=changeenvironment\");>"
echo "<option value=\"\">-- Select a build environment --</option>"

for i in `seq 0 ${#AUTOPORT_ARCH[*]}`; do
   [ "${AUTOPORT_ARCH[$i]}" ] || continue
#   [ "${AUTOPORT_DISABLE[$i]}" -a "${AUTOPORT_DISABLE[$i]}" != "0" ] && continue
   SELECTED=
   [ "$ENVIRONMENT" = "$i" ] && SELECTED="selected=\"selected\"" || SELECTED=

   if [ "$USER_ENVIRONMENTS" ]; then
      for u in $USER_ENVIRONMENTS; do
         if [ "$i" = "$u" ]; then
            echo -n "<option value=\"$i\" $SELECTED>"
            print_environment_descr $i
            echo -n "</option>"
            break
         fi
      done
   elif [ "${AUTOPORT_CHROOT_USER[$i]}" = "$USER" -o "${AUTOPORT_CHROOT_USER[$i]}" = "contrib" -o "$USER_ALLENVIRONMENTS" ]; then
      echo -n "<option value=\"$i\" $SELECTED>"
      print_environment_descr $i
      echo -n "</option>"
   fi
done
echo -n "</select>"
echo -n "]]></environments>"

if [ "$MAINTAINERMODE" = "true" ]; then
   echo -n "<specedit> </specedit>"
elif [ ! "$REQUEST" -o "$REQUEST" = "changeenvironment" -o "$REQUEST" = "switchmaintainermode" \
       -o "$REQUEST" = "prepare" -o "$REQUEST" = "reloadspec" -o "$REQUEST" = "edit" \
       -o "$REQUEST" = "reloadspeclist" -o "$REQUEST" = "prepare" ]; then
   # SPECFILES select
   echo -n "<specedit><![CDATA["
   echo -n " Edit:<select id=specfile "
   echo -n "onchange=ajax_getvalues(\"REQUEST=edit&ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&"
   echo -n "PACKAGE=\"+encodeURIComponent(this.value)+\"&REQUEST=changespec\");>"
   echo -n "<option value=\"\">-- Select a .spec file --</option>"
   $SUDO_WRAPPER binary $ENVIRONMENT "$USER" "" "ls *.spec 2>/dev/null| sed \"s|.spec$||\" | sort -f" | while read f; do
      specname=${f/.spec}
      [ "$PACKAGE" = "$specname" ] && SELECTED="selected=\"selected\"" || SELECTED=
      echo -n "<option value=\"$specname\" $SELECTED>${specname}</option>"
   done
   echo -n "</select>.spec"
   echo -n "&nbsp<span class=\"button\" style=\"cursor:pointer\" title=\"Refresh spec list\" onclick="
   echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
   echo -n "MAINTAINERMODE=$MAINTAINERMODE&REQUEST=reloadspeclist\");>🔄</span>"
   echo -n "]]></specedit>"
fi

[ "$PACKAGE" -a ! "$REQUEST" ] && REQUEST=edit

# clean output when changing environment
if [ ! "$REPOSITORY" -a ! "$PACKAGE" -a ! "$REQUEST" = "repsearch" ]; then
   echo -n "<editor> </editor>"
   echo -n "<editcontrols> </editcontrols>"
   echo -n "<showlogcontrols> </showlogcontrols>"
fi

# REPOSITORIES search
if [ ! "$REPSEARCHTEXT" ]; then
   echo -n "<searchbox><![CDATA["
   echo -n "<div class=searchbox>Search repositories:"

#<input type=button id=repsearchbutton value=\"Search repositories:\" onclick=ajax_getvalues(\""
#   echo -n "ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
#   echo -n "REQUEST=repsearch&REPSEARCHTEXT=\"+encodeURIComponent(getElementById('repsearchtext').value));>"

   if [ "$PACKAGE" ]; then
      echo -n "<br><input type=text id=\"repsearchtext\" value=\"${PACKAGE/*\/}\" "
   else
      echo -n "<br><input type=text id=\"repsearchtext\" value=\"Enter a package name to search...\" "
      echo -n "onfocus=\"if (this.value==this.defaultValue) this.value=''\" "
   fi
   echo -n "onkeypress=if(checkEnter(event))ajax_getvalues(\""
   echo -n "ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
   echo -n "REQUEST=repsearch&REPSEARCHTEXT=\"+encodeURIComponent(getElementById('repsearchtext').value));>"
   echo -n "</div>]]></searchbox>"
fi

if [ ! "${AUTOPORT_UPDATE[$ENVIRONMENT]}" -o "$MAINTAINERMODE" = "true" ]; then
   # REPOSITORIES select
   if [ "$MAINTAINERMODE" = "true" -o ! "$REPOSITORY" -o "$REQUEST" = "changeenvironment" ]; then
      echo -n "<repositories><![CDATA[Repository:<select id=repository "
      echo -n "onchange=ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=\"+this.value+\""
      if [ "$USER_CANMAINTAIN" ]; then
         echo -n "&MAINTAINERMODE=\"+getElementById('maintain').checked+\""
      fi
      if [ ! "$MAINTAINERMODE" ]; then
         echo -n "&PACKAGE=\"+encodeURIComponent(getSelectedValueById('specfile'))+\""
      fi
      echo -n "&REQUEST=changerepository\");>"
      echo -n "<option value=\"\">-- Select a repository --</option>"
      for f in `repository_list`; do
         repname=`basename $f`
         [ "$repname" = "$REPOSITORY" ] && SELECTED="selected=selected" || SELECTED=
         if [ "$MAINTAINERMODE" = "true" -a ! "$USER_ALLREPOSITORIES" ]; then
            for u in $USER_CANMAINTAIN_REPOSITORIES; do
               [ "$u" = "$repname" ] && echo -n "<option value=\"$repname\" $SELECTED>$repname</option>"
            done
         else
            echo -n "<option value=\"$repname\" $SELECTED>$repname</option>"
         fi
      done
      echo -n "</select>"
      echo -n "]]></repositories>"
#      echo -n "<editcontrols> </editcontrols>"
      echo -n "<packages> </packages>"
      echo -n "<operations> </operations>"
   fi
else
   if [ "${AUTOBUILDS_STATUS_URL}" == "" ]; then
      AUTOBUILDS_STATUS_URL="/autobuilds.html"
   fi
   echo -n "<repositories><![CDATA[Review <a href=\"$AUTOBUILDS_STATUS_URL\" target=\"autobuilds\""
   echo -n " title=\"Open autobuilds status page in a new window\">autobuilds</a>:"

   # autobuild edit previous
   echo -n "<input type=button name=autobuildeditprev value=\" < \" onclick="
   echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&"
   echo -n "PACKAGE=\"+encodeURIComponent(getSelectedValueById(\"autobuildedit\",-1).substring(0,getSelectedValueById(\"autobuildedit\",-1).indexOf(';')))+\"&"
   echo -n "LOGTYPE=\"+getSelectedValueById(\"autobuildedit\",-1).substring(getSelectedValueById(\"autobuildedit\",-1).indexOf(';')+1)+\"&LOGSTATUSOK=&"
   echo -n "REQUEST=autobuildedit\");>"
   # autobuild edit select
   echo -n "<select id=autobuildedit "
   echo -n "onchange=ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&"
   echo -n "PACKAGE=\"+encodeURIComponent(this.value.substring(0,this.value.indexOf(';')))+\"&"
   echo -n "LOGTYPE=\"+this.value.substring(this.value.indexOf(';')+1)+\"&LOGSTATUSOK=&"
   echo -n "REQUEST=autobuildedit\");>"
   echo -n "<option value=\"\">-- Select a failed build to review --</option>"
   SELECTED=
   [ "$STATE_AUTODISTCURRENT" = "1" ] && AUTOUPDATEFILE=$BUILDLOGDIR/autoupdate-current || AUTOUPDATEFILE=$BUILDLOGDIR/autoupdate-last
   while read line; do
      set -- $line
      if [ "$3" != "ok" -a "$3" != "skipped" ]; then
         if [ "$REQUEST" != "skip" ]; then
            [ "$PACKAGE" = "$1" ] && SELECTED="selected=selected" || SELECTED=
         else
            [ "$SELECTED" ] && {
               NEXTPACKAGE=$1
               NEXTLOGTYPE=$2
            }
         fi
         # skip 'higher version' (2), 'cant' find update' (3) 
         # 'no updates available' (4) autospec return codes
         if [ "$2-$3" != "update-2" -a "$2-$3" != "autoupdate-2" -a \
              "$2-$3" != "update-3" -a "$2-$3" != "autoupdate-3" -a \
              "$2-$3" != "update-4" -a "$2-$3" != "autoupdate-4" ]; then
            echo -n "<option value=\"$1;$2\" $SELECTED>$1 ($2)</option>"
         fi
         if [ "$PACKAGE" = "$1" -a "$REQUEST" = "skip" ]; then
            SELECTED="selected=selected"
         else
            SELECTED=
         fi
      fi
   done < $AUTOUPDATEFILE
   echo -n "</select>"
   # autobuild edit next
   echo -n "<input type=button name=autobuildeditnext value=\" > \" onclick="
   echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&"
   echo -n "PACKAGE=\"+encodeURIComponent(getSelectedValueById(\"autobuildedit\",1).substring(0,getSelectedValueById(\"autobuildedit\",1).indexOf(';')))+\"&"
   echo -n "LOGTYPE=\"+getSelectedValueById(\"autobuildedit\",1).substring(getSelectedValueById(\"autobuildedit\",1).indexOf(';')+1)+\"&LOGSTATUSOK=&"
   echo -n "REQUEST=autobuildedit\");>"
   # autodist current checkbox (in progress)
   [ "$STATE_AUTODISTCURRENT" = "1" ] && SELECTED="checked" || SELECTED=
   echo -n "<label><input type=checkbox id=\"autodistcurrentcheckbox\" value=\"autodistcurrent\" $SELECTED onclick="
   echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&"
   echo -n "AUTODISTCURRENT=\"+getElementById('autodistcurrentcheckbox').checked+\"&"
   echo -n "PACKAGE=\"+encodeURIComponent(getSelectedValueById(\"autobuildedit\").substring(0,getSelectedValueById(\"autobuildedit\").indexOf(';')))+\"&"
   echo -n "LOGTYPE=\"+getSelectedValueById(\"autobuildedit\").substring(getSelectedValueById(\"autobuildedit\").indexOf(';'))+\"&REQUEST=autobuildedit\");>"
   echo -n "in progress</label>"
   echo -n " ]]></repositories>"
   echo -n "<operations> </operations>"
   echo -n "<speccreate> </speccreate>"
   echo -n "<packages> </packages>"
   if [ "$REQUEST" = "skip" ]; then
      $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "autodist-tool skip $AUTODISTJOB"
      RET=$?
      if [ $RET -eq 0 ]; then
         social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"added autodist job <b>$AUTODISTJOB</b> to skipped list\" STIME=`date +%s`"
      fi
      if [ "$NEXTPACKAGE" ]; then
         PACKAGE=$NEXTPACKAGE
         PACKAGEENCODED=`cgi_encodevar $PACKAGE`
         LOGTYPE=$NEXTLOGTYPE
         AUTODISTJOB=
         showlog
         REQUEST="edit"
      fi
   fi
fi

if [ "$MAINTAINERMODE" = "true" -o ! "${AUTOPORT_UPDATE[$ENVIRONMENT]}" ]; then
   # PACKAGES (SRPM) select
   if [ "$REQUEST" = "changerepository" -o "$REQUEST" = "switchmaintainermode" -a "$MAINTAINERMODE" != "true" ]; then
      echo -n "<packages><![CDATA[ SRPMS:"
      echo -n "<select id=package onchange="
      echo -n "getElementById('preparebutton').disabled=0;getElementById('portbutton').disabled=0;>"
      #(getElementById('package').selectedIndex);>"
      echo "<option value=\"\">-- Select a SRPM package --</option>"
      SRPMBUTTONDISABLED="disabled=disabled"
      if [ "$local_ftp" -a -e $local_ftp/$REPOSITORY ]; then
         if [ ! -s $WEBBUILD_STATEDIR/cache/repository-src-$REPOSITORY -o $local_ftp/$REPOSITORY/SRPMS.base -nt $WEBBUILD_STATEDIR/cache/repository-src-$REPOSITORY ]; then
            ls --color=none $local_ftp/$REPOSITORY/SRPMS.base/ | grep ".src.rpm$" | sort -f > $WEBBUILD_STATEDIR/cache/repository-src-$REPOSITORY
         fi
      else
         curl -L -s $REPS_BASE_URL/$REPOSITORY/SRPMS.base/ | grep .src.rpm | \
            sed "s|.*\.src\.rpm\">\(.*\)</a>.*|\1|" | sort -f > $WEBBUILD_STATEDIR/cache/repository-src-$REPOSITORY
      fi
      while read f; do
         pkgname=${f%.src.rpm}
         pkgrel=${pkgname/*-}
         pkgname=${pkgname%-$pkgrel}
         pkgver=${pkgname/*-}
         pkgname=${pkgname%-$pkgver}
         if [ "$PACKAGE" = "$pkgname" ]; then
            SELECTED="selected=\"selected\""
            SRPMBUTTONDISABLED=
         else
            SELECTED=
         fi
         echo -n "<option value=\"$pkgname\" $SELECTED>${pkgname} ${pkgver}-${pkgrel}</option>"
      done < $WEBBUILD_STATEDIR/cache/repository-src-$REPOSITORY
      echo -n "</select>"
      echo -n "]]></packages>"
      if [ "$MAINTAINERMODE" != "true" ]; then
         echo -n "<operations><![CDATA["
         echo -n "<input type=button name=prepare value=\"Unpack and edit\" id=preparebutton onclick="
         echo -n "ajax_getvalues(\"REQUEST=prepare&REPOSITORY=\"+getSelectedValueById('repository')+\""
         echo -n "&ENVIRONMENT=$ENVIRONMENT&"
         if [ "$USER_CANMAINTAIN" ]; then
            echo -n "MAINTAINERMODE=\"+getElementById('maintain').checked+\"&"
         fi
         echo -n "PACKAGE=\"+encodeURIComponent(getSelectedValueById('package'))); $SRPMBUTTONDISABLED>"
         if [ "${AUTOPORT_PORT_REPOSITORY[$ENVIRONMENT]}" ]; then
            echo -n "<input type=button name=port value=\"Port\" id=portbutton onclick="
            echo -n "ajax_getvalues(\"REQUEST=autoport&REPOSITORY=\"+getSelectedValueById('repository')+\""
            echo -n "&ENVIRONMENT=$ENVIRONMENT&"
            if [ "${AUTOPORT_PORT_REPOSITORY[$ENVIRONMENT]}" != "#SELF" ]; then
               echo -n "AUTOPORTRELEASEREPOSITORY=${AUTOPORT_PORT_REPOSITORY[$ENVIRONMENT]}&"
            fi
            if [ "$USER_CANMAINTAIN" ]; then
               echo -n "MAINTAINERMODE=\"+getElementById('maintain').checked+\"&"
            fi
            echo -n "PACKAGE=\"+encodeURIComponent(getSelectedValueById('specfile'))+\"&"
            echo -n "AUTODISTFORCE=\"+getElementById('rpmforce').checked+\"&"
            echo -n "AUTOPORTPACKAGE=\"+encodeURIComponent(getSelectedValueById('package'))); $SRPMBUTTONDISABLED>"
         fi
         echo -n "]]></operations>"
      fi
   fi

   # SPECFILE creation
   if [ ! "${AUTOPORT_UPDATE[$ENVIRONMENT]}" -a "$MAINTAINERMODE" != "true" ]; then
      SPECCREATENAME=""
      [ "$SPECCREATEURL" != "" ] && SPECCREATENAME=$PACKAGE
      DISABLED="disabled"
      [ "$SPECCREATEURL" != "" ] && DISABLED=""
      DISABLED_GIT="disabled"
      [ "$SPECCREATEGITBRANCH" != "" ] && DISABLED_GIT=""
      echo -n "<speccreate><![CDATA[<div class=\"speccreate\">"
      echo -n " Start from URL:<input onChange=\"suggestSpecName()\" type=text id=speccreateurl value=\"$SPECCREATEURL\" style=\"width:32%\">"
      echo -n " name:<input type=text id=speccreatename $DISABLED value=\"$SPECCREATENAME\" style=\"width:10%\">"
      echo -n " type:<select id=speccreatetype $DISABLED>"
      for t in `ls /usr/share/autospec/templates`; do
         [ "$t" = "$SPECCREATETYPE" ] && SELECTED="selected=selected" || SELECTED=
         echo -n "<option id=speccreatetype value=\"$t\" $SELECTED>$t</option>"
      done
      echo -n "</select>"
      echo -n " version:<input type=text $DISABLED id=speccreateversion value=\"$SPECCREATEVERSION\" style=\"width:5%\">"
      echo -n " branch/tag:<input type=text $DISABLED_GIT id=speccreategitbranch value=\"$SPECCREATEGITBRANCH\" style=\"width:5%\">"
      echo -n "<input type=button $DISABLED id=speccreatebutton value=\"Create .spec\" onclick=ajax_getvalues(\""
      echo -n "REQUEST=speccreate&ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&"
      echo -n "PACKAGE=\"+encodeURIComponent(getElementById('speccreatename').value)+\"&"
      echo -n "SPECCREATETYPE=\"+getElementById('speccreatetype').value+\"&"
      echo -n "SPECCREATEVERSION=\"+encodeURIComponent(getElementById('speccreateversion').value)+\"&"
      echo -n "SPECCREATEGITBRANCH=\"+encodeURIComponent(getElementById('speccreategitbranch').value)+\"&"
      echo -n "SPECCREATEURL=\"+encodeURIComponent(getElementById('speccreateurl').value));>"
      echo "</div>]]></speccreate>"
   elif [ "$MAINTAINERMODE" = "true" ]; then
      echo -n "<speccreate> </speccreate>"
   fi
#else
#   echo -n "<repositories> </repositories><packages> </packages><operations> </operations><speccreate> </speccreate> <operations></operations>"
fi

if [ "$REQUEST" = "changespec" ]; then
   if [ "$PACKAGE" ]; then
      REQUEST="edit";
   fi
elif [ "$REQUEST" = "broadcastmessage" ]; then
   social_log "SUSER=$USER STYPE=broadcastmessage SEMAIL=$USER_EMAIL STEXT=\"said:&quot;<i>`var2html BROADCASTMESSAGE`</i>&quot;\" STIME=`date +%s`"
   REQUEST=
fi

if [ "$SPECTEXT" ]; then
   # save specfile
   tmpfile=`mktemp --suffix=.webbuildspectmp`
   echo -n $SPECTEXT | perl -MURI::Escape -e 'print uri_unescape(<>)' > $tmpfile
   chmod 644 $tmpfile
   if [ "REQUEST" = "renamespec" -a "$RENAMESPECFROM" ]; then
      $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" ${PACKAGE/*\/} "cat $tmpfile > ${RENAMESPECFROM/*\/}.spec" $tmpfile
   else
      $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" ${PACKAGE/*\/} "cat $tmpfile > ${PACKAGE/*\/}.spec" $tmpfile
   fi
   RET=$?
   [ $RET -eq 0 ] || {
      echo -n "<output><![CDATA[<div class=\"outputbox\">ERROR: could not save file ${PACKAGE/*\/}.spec! Please report the problem, thanks.</div>]]></output></webbuild>"
      exit 1
   }
   rm -f $tmpfile
fi

if [ "$REQUEST" = "edit" -o "$REQUEST" = "prepare" ]; then
   if [ ! "${AUTOPORT_UPDATE[$ENVIRONMENT]}" ]; then
      social_log "SUSER=$USER SEMAIL=$USER_EMAIL STARGET=developers STEXT=\"is working on <b>$PACKAGE</b> in <b>`print_environment_descr $ENVIRONMENT`</b> environment\" STIME=`date +%s`"
   fi
fi

# Here requests which update the specfile, so editor is refreshed after
if [ "$REQUEST" = "prepare" -o "$REQUEST" = "updatespec" -o "$REQUEST" = "speccreate" -o \
     "$REQUEST" = "rebuildspec" -o "$REQUEST" = "renamespec" -o "$REQUEST" = "deletespec" -o \
     "$REQUEST" = "autodistprepare" -o "$REQUEST" = "autodistupdate" -o "$REQUEST" = "addpkgnote" ]; then
   if [ "$REQUEST" = "speccreate" ]; then
      OUTPUTMODE="outputtop"
   else
      OUTPUTMODE="outputbottom"
   fi
   echo -n "<output><![CDATA[<hr><b>Console output:</b><div align=left class=\"outputbox\" id=$OUTPUTMODE>"
   echo -n "<pre>"
   RET=255
   case $REQUEST in
      "prepare") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "$AUTOSPEC_CMD -u $PACKAGE -a1 --server $REPOSITORY"; RET=$? ;;
      "updatespec") [ "$RPMFORCE" = "true" ] && RPMFORCEADD="--force-update"
                    [ "$DEBUG" = "true" ] && RPMFORCEADD="$RPMFORCEADD --debug"
                    [ "$USER_FULLNAME" -a "$USER_EMAIL" ] && RPMUSERADD="--packager-fullname=\"$USER_FULLNAME\" --packager-email=\"$USER_EMAIL\""
                    if [ "$UPDATESPECVERSION" -a "$REBUILDSPECCHANGELOG" ]; then
                       echo "ERROR: new version and changelog can't be specified together"
                    elif [ "$REBUILDSPECCHANGELOG" ]; then
                       $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "$AUTOSPEC_CMD -u $PACKAGE -a4 $RPMFORCEADD --rebuild \
                          --changelog \"$REBUILDSPECCHANGELOG\" $RPMUSERADD"
                    elif [ "$UPDATESPECVERSION" ]; then
                       $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "$AUTOSPEC_CMD -u $PACKAGE -a3,4 $RPMFORCEADD $UPDATESPECVERSION \
                          $RPMUSERADD"
                    else
                       $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "$AUTOSPEC_CMD -u $PACKAGE -a2:4 $RPMFORCEADD $UPDATESPECVERSION \
                          $RPMUSERADD"
                    fi
                    RET=$?
                    ;;
      "speccreate") if [ "$SPECCREATEURL" -a "$PACKAGE" ]; then
                       FOUND_EXISTING=""
                       FOUND_REPOS_HTML=""
                       for _repo in ${AUTODIST_REPOSITORIES[*]}; do
                          eval $(autodist-distroquery package $_repo $PACKAGE 2>/dev/null)
                          if [ "$pkg_name" ]; then
                             FOUND_EXISTING="1"
                             FOUND_REPOS_HTML="${FOUND_REPOS_HTML}<li><b>${pkg_name}-${pkg_version}-${pkg_release}</b>"
                             FOUND_REPOS_HTML="${FOUND_REPOS_HTML} in <b>${_repo}</b>"
                             [ "$pkg_summary" ] && FOUND_REPOS_HTML="${FOUND_REPOS_HTML}: ${pkg_summary}"
                             [ "${pkg_archs[*]}" ] && FOUND_REPOS_HTML="${FOUND_REPOS_HTML} [${pkg_archs[*]}]"
                             FOUND_REPOS_HTML="${FOUND_REPOS_HTML}</li>"
                          fi
                       done
                       if [ "$FOUND_EXISTING" ]; then
                          echo -n "<div align=left class=\"output\" id=outputtop>"
                          echo "<b><font color=red>ERROR: package already exists, please update from appropriate version:</font></b>"
                          echo -n "<hr><b>Search results for \"$PACKAGE\":</b><ul>${FOUND_REPOS_HTML}</ul>"
                          echo -n "</div>"
                          RET=1
                          continue
                       else
                          if [ "${SPECCREATEURL/\/}" = "$SPECCREATEURL" ]; then
                             # local source in /SOURCES
                             SPECCREATEURL="../SOURCES/$SPECCREATEURL"
                          fi
                          AUTOSPEC_CMDLINE="-n $PACKAGE -o $PACKAGE.spec"
                          #DECODEDURL=`cgi_decodevar $SPECCREATEURL`
                          [ "$SPECCREATETYPE" ] && AUTOSPEC_CMDLINE="$AUTOSPEC_CMDLINE -t $SPECCREATETYPE"
                          [ "$SPECCREATEVERSION" ] && AUTOSPEC_CMDLINE="$AUTOSPEC_CMDLINE -v $SPECCREATEVERSION"
                          [ "$SPECCREATEGITBRANCH" ] && AUTOSPEC_CMDLINE="$AUTOSPEC_CMDLINE --git-branch $SPECCREATEGITBRANCH"
                          [ "$USER_FULLNAME" -a "$USER_EMAIL" ] && AUTOSPEC_CMDLINE="$AUTOSPEC_CMDLINE --packager-fullname=\"$USER_FULLNAME\" --packager-email=\"$USER_EMAIL\""
                          $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "$AUTOSPEC_CMD -s \"$SPECCREATEURL\" $AUTOSPEC_CMDLINE \
                             --changelog \"package created using the webbuild interface\""
                          RET=$?
                          [ $RET -eq 0 ] && {
                             eval `$SUDO_WRAPPER specinfo $ENVIRONMENT "$USER" $PACKAGE ""`
                             social_log "SUSER=$USER SEMAIL=$USER_EMAIL STARGET=developers STEXT=\"is working on <b>$PACKAGE</b> new package in <b>`print_environment_descr $ENVIRONMENT`</b> environment\" STIME=`date +%s`"
                             # prepare
                             $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "rpmbuild -bp $PACKAGE.spec --nodeps --define=\"_topdir $SPECVAR_WORKINGHOME/RPM\""
                             RET=$?
                             if [ $RET -eq 0 ]; then
                             :
                                REQUEST_NEXT="showbuilddocs"
                             fi
                          }
                       fi
                    else
                       echo "ERROR: both source archive URL and name are needed."
                       RET=1
                    fi
                    ;;
      "renamespec") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "mv $RENAMESPECFROM.spec $PACKAGE.spec && sed -i \"s|\(Name:[[:space:]]*\).*|\1$PACKAGE|\" $PACKAGE.spec"
                    RET=$?
                    [ $RET -eq 0 ] && {
                       social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"renamed <b>$RENAMESPECFROM</b> to <b>$PACKAGE</b> in <b>`print_environment_descr $ENVIRONMENT`</b> environment\" STIME=`date +%s`"
                       echo "Specfile $RENAMESPECFROM successfully renamed to <b>$PACKAGE</b>."
                    }
                    ;;
      "deletespec") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "rm -f $PACKAGE.spec"
                    RET=$?
                    [ $RET -eq 0 ] && REQUEST="exit"
                    ;;
      "autodistprepare") [ "$AUTODISTFORCE" = "true" ] && AUTODISTADD="--force" || AUTODISTADD=
                    autodistjobs=
                    if [ "$AUTODISTPKGS" ]; then
                       for p in $AUTODISTPKGS; do
                          autodistjobs="$autodistjobs $AUTODISTJOB/$p"
                       done
                    else
                       autodistjobs="$AUTODISTJOB"
                    fi
                    [ "$REPOSITORY" ] && REPOSITORYADD="--repository $REPOSITORY" || REPOSITORYADD="--repository ${AUTOPORT_BASE_REPOSITORY[$ENVIRONMENT]}"
                    $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "autodist -v -p $autodistjobs $REPOSITORYADD --arch $AUTODISTARCH --user $USER $AUTODISTADD -- --colors web"
                    RET=$?
                    ;;
      "autodistupdate") [ "$AUTODISTFORCE" = "true" ] && AUTODISTADD="--force" || AUTODISTADD=
                        [ "$DEBUG" = "true" ] && AUTODISTADD="$AUTODISTADD --debug" || AUTODISTADD=
                        if [ "$AUTODISTUPDATECHANGELOG" ]; then
                           AUTODISTADD="$AUTODISTADD --rebuild -- --changelog \"${AUTODISTUPDATECHANGELOG}\""
                        fi
                    autodistjobs=
                    if [ "$AUTODISTVERSION" ]; then
                       AUTODISTVER="\#$AUTODISTVERSION"
                    fi
                    if [ "$AUTODISTPKGS" ]; then
                       for p in $AUTODISTPKGS; do
                          autodistjobs="$autodistjobs $AUTODISTJOB/$p${AUTODISTVER}"
                       done
                    else
                       autodistjobs="$AUTODISTJOB${AUTODISTVER}"
                    fi
                    [ "$REPOSITORY" ] && REPOSITORYADD="--repository $REPOSITORY" || REPOSITORYADD="--repository ${AUTOPORT_BASE_REPOSITORY[$ENVIRONMENT]}"
                    $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "autodist -v -u $autodistjobs $REPOSITORYADD --arch $AUTODISTARCH --user $USER $AUTODISTADD -- --colors web"
                    RET=$?
                    ;;
      "addpkgnote") echo "`date +%s` $USER $ENVIRONMENT $PKGNOTE" >> $WEBBUILD_STATEDIR/notes/$PACKAGE.notes; RET=$? ;;
   esac
   echo -n "</pre>"
   if [ $RET -eq 0 ]; then
      echo "Result: <font color=lightgreen><b>OK</b></font>"
   else
      echo "Result: <font color=red><b>ERROR ($RET)</b></font>"
   fi
   echo -n "</div>"
   echo -n "]]></output>"
   if [ "$REQUEST" = "exit" ]; then
      echo -n "<editcontrols> </editcontrols>"
      echo -n "<showlogcontrols> </showlogcontrols>"
      echo -n "<operations> </operations>"
      echo -n "<editor> </editor>"
      echo -n "</webbuild>"
      exit
   fi
   if [ $RET -eq 0 ]; then
      REQUEST="edit"
      print_editorcontrols
      if [ "$PACKAGE" ]; then
         if [ "$STATE_ADVANCEDCONTROLS" -o "${AUTOPORT_UPDATE[$ENVIRONMENT]}" ]; then
            print_showlogcontrols
         fi
      fi
   else
      REQUEST=
   fi
fi

# maintainer mode editor
if [ "$MAINTAINERMODE" = "true" ]; then
   if [ ! "$REQUEST" -o "$REQUEST" = "changerepository" -o \
          "$REQUEST" = "switchmaintainermode" -o "$REQUEST" = "reloadmaintainer" ]; then
      echo -n "<editcontrols> </editcontrols>"
      echo -n "<showlogcontrols> </showlogcontrols>"
      echo -n "<operations> </operations>"
      if [ "$REPOSITORY" ]; then
         echo -n "<editor><![CDATA["
         echo -n "<div class=maintainer>"
         autodist-distroquery recent-html $REPOSITORY | tr -d '\000-\011\013\014\016-\037' | sed "s|a \(href=.\)/|a target=new \1${SITE_BASE_URL}/|g"
         echo -n "<br><hr><br>"
         autodist-distroquery repository-log $REPOSITORY | tr -d '\000-\011\013\014\016-\037'
         echo -n "</div>"
         echo -n "<input type=button id=updatespecbutton value=\"refresh\" onclick="
         echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
         echo -n "MAINTAINERMODE=$MAINTAINERMODE&REQUEST=reloadmaintainer\");>"
         echo -n "<script>refreshTooltips();</script>"
         echo -n "]]></editor>"
      else
         echo -n "<editor> </editor>"
      fi
      REQUEST=
   fi
fi

if [ "$REQUEST" = "changerepository" -o "$REQUEST" = "switchmaintainermode" -o "$REQUEST" = "changeenvironment" ]; then
   REQUEST=
fi

if [ "$PACKAGE" ]; then
   [ "$AUTODISTJOB" ] || AUTODISTJOB=${PACKAGE/\/*}
   AUTODISTJOB="${AUTODISTJOB//[-]/_}"
   PACKAGE=${PACKAGE/*\/}
   eval `$SUDO_WRAPPER specinfo $ENVIRONMENT "$USER" $PACKAGE ""`
   [ $? -eq 0 ] && SPECAVAILABLE=1
fi

# specfile editor
if [ "$REQUEST" = "edit" -o "$REQUEST" = "reloadspec" -o "$REQUEST" = "switchmaintainermode" -o \
     "$REQUEST" = "renamespec" -o "$REQUEST" = "addpkgnote" -a "$MAINTAINERMODE" != "true" ]; then
   if [ "$SPECAVAILABLE" ]; then
      # editor textarea
      echo -n "<editor><![CDATA["
      if [ -s $WEBBUILD_STATEDIR/notes/$PACKAGE.notes ]; then
         echo -n "<div align=left class=notes>"
         echo -n "<b>Packaging notes for $PACKAGE:</b>"
         while read ndate nuser nenv line; do
            echo "<br><b>$nuser</b>: \"$line\""
            if [ "$USER" = "$nuser" -o "$USER_ADMIN" ]; then
               echo -n " [<a href=# title=\"Click to remove this note\" onclick=ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&PACKAGE=$PACKAGEENCODED&"
               echo -n "REQUEST=removenote&NOTEDATE=$ndate&NOTEUSER=$nuser\")>"
               echo -n "x</a>]"
            fi
         done < $WEBBUILD_STATEDIR/notes/$PACKAGE.notes
         echo -n "</div>"
      fi
      echo -n "Current <b>$PACKAGE.spec</b> in build environment:<textarea id=spectext class=editor>"
      $SUDO_WRAPPER binary $ENVIRONMENT "$USER" $PACKAGE "cat $PACKAGE.spec"
      echo -n "</textarea>]]></editor>"
#   else
#      echo "<output><![CDATA[<div align=left class=output id=outputtop>"
#      echo "No pre-existing .spec file $PACKAGE.spec in current working environment. Choose package from a repository and press 'Unpack and edit' to edit."
#      echo -n "</div>"
#      echo -n "]]></output>"
      print_editorcontrols
      if [ "$PACKAGE" ]; then
         if [ "$STATE_ADVANCEDCONTROLS" -o "${AUTOPORT_UPDATE[$ENVIRONMENT]}" ]; then
            print_showlogcontrols
         fi
      fi
   fi
   REQUEST=$REQUEST_NEXT
fi

# operation panel
if [ "$MAINTAINERMODE" != "true" ]; then
   echo -n "<operationpanel><![CDATA["
   echo -n "<div class=\"operationpanelinfo\">"
   if [ "$PACKAGE" ]; then
      echo -n "Package: <b>$PACKAGE</b><br>Version: "
      [ "${SPECVAR_Epoch[0]}" ] && echo -n "${SPECVAR_Epoch[0]}:"
      echo -n "<b>${SPECVAR_Version[0]}-${SPECVAR_Release[0]}</b><br>"
   fi
   showEnvironmentPanel
   echo -n "</div>"
   echo -n "<div class=\"operationpanelsend\">"
   echo -n "<b>Build/Send options:</b><br>Arch:<select id=rpmbuildarch>"
   for f in i586 arm x86_64 aarch64; do
      SELECTED=
      if [ "$f" = "$RPMBUILDARCH" ]; then
         SELECTED="selected=\"selected\"";
      elif [ ! "$RPMBUILDARCH" -a "$f" = "${AUTOPORT_ARCH[$ENVIRONMENT]}" ]; then
         SELECTED="selected=\"selected\"";
      fi
      echo -n "<option value=\"$f\" $SELECTED>$f</option>"
   done
   echo -n "</select>"
   echo -n "&nbsp;<label style=\"background-color:red;padding:1px;\"><input type=checkbox id=\"rpmforce\" value=\"force\">force&nbsp;</label>"
   echo -n "&nbsp;<label style=\"padding:1px;\"><input type=checkbox id=\"noprep\" value=\"noprep\">no prep</label>"
   echo -n "&nbsp;<label style=\"padding:1px;\"><input type=checkbox id=\"debug\" value=\"debug\">debug</label>"
   # destination repository select
   echo -n "<br>Send to:"
   echo -n "<select id=sendrepository>"
   if [ "$USER_ALLREPOSITORIES" ]; then
      SEND_REPS="`repository_list`"
   elif [ "$USER_CANMAINTAIN_REPOSITORIES" ]; then
      SEND_REPS="$USER_CANMAINTAIN_REPOSITORIES"
   else
      SEND_REPS="devel-contrib"
   fi
   for repname in $SEND_REPS; do
      # skip different milestone repositories
      [ "${AUTOPORT_IMPORT_REPOSITORIES[$ENVIRONMENT]/$repname}" = "${AUTOPORT_IMPORT_REPOSITORIES[$ENVIRONMENT]}" -a \
        $repname != "devel-$USER" ] && continue
      SELECTED=
      if [ "$SENDREPOSITORY" = "$repname" ]; then
         SELECTED="selected=\"selected\"";
      elif [ ! "$SENDREPOSITORY" -a "$REPOSITORY" = "$repname" ]; then
         SELECTED="selected=\"selected\"";
      elif [ ! "$SENDREPOSITORY" -a "${AUTOPORT_BASE_REPOSITORY[$ENVIRONMENT]}" = "$repname" -a ! "$SELECTED" ]; then
         SELECTED="selected=\"selected\"";
      fi
      echo -n "<option value=\"$repname\" $SELECTED>$repname</option>"
   done
   echo -n "</select></div>"
   [ "${AUTOPORT_UPDATE[$ENVIRONMENT]}" -o "$STATE_ADVANCEDCONTROLS" ] && echo -n "<div class=\"operationpanelautodist\"><b>Autodist batch builds:</b><br>"
   if [ "$PACKAGE" ]; then
      if [ "${AUTOPORT_UPDATE[$ENVIRONMENT]}" ]; then
         echo -n "Patch for $PACKAGE:<br>"
         # autodist show patch
         echo -n "<input type=button value=\"show current\" onclick="
         echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
         echo -n "REQUEST=showpatch\");>"
         # autodist remove patch
         echo -n "<input type=button value=\"remove\" onclick="
         echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
         echo -n "REQUEST=removepatch\""
         echo -n ",\"`cgi_encodevar "Remove current autodist patch for package <b>$PACKAGE</b>?"`\"); class=redbutton>"
         # autodist auto patch
         echo -n "<input type=button id=updatepatchbutton value=\"create/refresh\" onclick="
         echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
         echo -n "SPECTEXT=\"+encodeURIComponent(editor.getValue())+\"&"
         echo -n "REQUEST=autopatch\""
         echo -n ",\"`cgi_encodevar "Create or refresh autodist patch for package <b>$PACKAGE</b>?"`\"); class=redboldbutton>"
         ## autodist update patch
         #echo -n "<input type=button id=updatepatchbutton value=\"update\" onclick="
         #echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
         #echo -n "SPECTEXT=\"+encodeURIComponent(editor.getValue())+\"&"
         #echo -n "REQUEST=updatepatch\""
         #echo -n ",\"`cgi_encodevar "Create an autodist <b>update</b> patch for package <b>$PACKAGE</b>?"`\"); class=redbutton>"
         ## autodist build patch
         #echo -n "<input type=button id=buildpatchbutton value=\"build\" onclick="
         #echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
         #echo -n "SPECTEXT=\"+encodeURIComponent(editor.getValue())+\"&"
         #echo -n "REQUEST=buildpatch\""
         #echo -n ",\"`cgi_encodevar "Create an autodist <b>build</b> patch for package <b>$PACKAGE</b>?"`\"); class=redbutton>"
      fi
   fi
   if [ "$STATE_ADVANCEDCONTROLS" -o "${AUTOPORT_UPDATE[$ENVIRONMENT]}" ]; then
      # autodist list-jobs
      [ "$PACKAGE" -a "${AUTOPORT_UPDATE[$ENVIRONMENT]}" ] && echo -n "<hr>"
      echo -n "Job:<select id=autodistjobs onchange="
      echo -n "ajax_getvalues(\""
      echo -n "AUTODISTFORCE=\"+getElementById('rpmforce').checked+\"&"
      echo -n "AUTODISTARCH=\"+getSelectedValueById('rpmbuildarch')+\"&"
      echo -n "AUTODISTJOB=\"+getSelectedValueById('autodistjobs')+\"&"
      echo -n "ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=autodistjobchange\");>"
      echo -n "<option value=\"\">-- select a job --</option>"
      AUTODISTJOBSELECTED=
      for f in `$SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "autodist --list-jobs"`; do
         SELECTED=
         if [ "$AUTODISTJOB" -a "$AUTODISTJOB" = "$f" ]; then
            SELECTED="selected=\"selected\""
            AUTODISTJOBSELECTED=1
         elif [ "${PACKAGE}" = "$f" -a ! "$AUTODISTJOB" ]; then
#         elif [ "$PACKAGE" = "$f" -a ! "$AUTODISTJOBSELECTED" -a "$REQUEST" != "autodistjobchange" ]; then
            SELECTED="selected=\"selected\""
            AUTODISTJOB=${f//[-]/_}
            AUTODISTJOBSELECTED=1
         fi
         JOBENCODED=`cgi_encodevar $f`
         echo -n "<option value=\"$JOBENCODED\" $SELECTED>$f</option>"
      done
      if [ "$PACKAGE" -a ! "$AUTODISTJOBSELECTED" ]; then
         SELECTED="selected=\"selected\""
         AUTODISTJOB=$PACKAGE
         echo -n "<option value=\"$PACKAGEENCODED\" $SELECTED>$PACKAGE (defaults)</option>"
      fi
      echo -n "</select>"
      if [ "$AUTODISTJOBSELECTED" -a "$AUTODISTJOB" = "${PACKAGE//[-]/_}" ]; then
         echo -n "<br><font color=red>You should use autodist for this package!</font>"
      fi
      if [ "$AUTODISTJOB" ]; then
         echo -n "<br>Job packages:"
         echo -n "<label><input type=checkbox name=autodistpkgsselectallcheckbox value=\"\" onclick=checkAllBoxes('autodistpkgscheckbox',this.checked);>select/unselect all</label>"
         echo -n "<div class=multiselect style=\"height:60px;\">"
         for p in `$SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "autodist --list-pkgs $AUTODISTJOB"`; do
            if [ "$AUTODISTPKGS" ]; then
               for i in $AUTODISTPKGS; do
                  [ "$i" = "$p" ] && { SELECTED=checked; break; } || SELECTED=
               done
            else
               [ "$p" = "$PACKAGE" ] && SELECTED=checked || SELECTED=
            fi
            echo -n "<label><input type=checkbox name=autodistpkgscheckbox value=\"$p\" $SELECTED>${p}</label>"
         done
         echo -n "</div>"
         # autodist prepare
         echo -n "<input type=button value=\"prepare\" onclick="
         echo -n "p=getCheckedValuesByName('autodistpkgscheckbox');ajax_getvalues(\""
         echo -n "AUTODISTFORCE=\"+getElementById('rpmforce').checked+\"&"
         echo -n "AUTODISTARCH=\"+getSelectedValueById('rpmbuildarch')+\"&"
         echo -n "AUTODISTJOB=\"+getSelectedValueById('autodistjobs')+\"&"
         echo -n "AUTODISTPKGS=\"+encodeURIComponent(p)+\"&"
         echo -n "ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=autodistprepare\");>"
         # autodist update
         echo -n "<input type=button value=\"update\" onclick="
         echo -n "p=getCheckedValuesByName('autodistpkgscheckbox');ajax_getvalues(\""
         echo -n "AUTODISTFORCE=\"+getElementById('rpmforce').checked+\"&"
         echo -n "DEBUG=\"+getElementById('debug').checked+\"&"
         echo -n "AUTODISTARCH=\"+getSelectedValueById('rpmbuildarch')+\"&"
         echo -n "AUTODISTJOB=\"+getSelectedValueById('autodistjobs')+\"&"
         echo -n "AUTODISTPKGS=\"+encodeURIComponent(p)+\"&"
         echo -n "AUTODISTUPDATECHANGELOG=\"+encodeURIComponent(getElementById('autodistupdatechangelog').value)+\"&"
         echo -n "AUTODISTVERSION=\"+getElementById('autodistversion').value+\"&"
         echo -n "ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=autodistupdate\");>"
         # autodist build
         echo -n "<input type=button value=\"build\" onclick="
         echo -n "p=getCheckedValuesByName('autodistpkgscheckbox');ajax_getvalues(\""
         echo -n "AUTODISTFORCE=\"+getElementById('rpmforce').checked+\"&"
         echo -n "AUTODISTNOPREP=\"+getElementById('noprep').checked+\"&"
         echo -n "AUTODISTARCH=\"+getSelectedValueById('rpmbuildarch')+\"&"
         echo -n "AUTODISTJOB=\"+getSelectedValueById('autodistjobs')+\"&"
         echo -n "AUTODISTPKGS=\"+encodeURIComponent(p)+\"&"
         echo -n "SPECTEXT=\"+encodeURIComponent(editor.getValue())+\"&"
         echo -n "ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=autodistbuild\"); class=boldbutton>"
         # autodist install
         [ ! "$USER_CANINSTALL" ] && DISABLED="disabled=disabled" || DISABLED=
         echo -n "<input type=button value=\"install\" onclick="
         echo -n "p=getCheckedValuesByName('autodistpkgscheckbox');ajax_getvalues(\""
         echo -n "AUTODISTFORCE=\"+getElementById('rpmforce').checked+\"&"
         echo -n "AUTODISTARCH=\"+getSelectedValueById('rpmbuildarch')+\"&"
         echo -n "AUTODISTJOB=\"+getSelectedValueById('autodistjobs')+\"&"
         echo -n "AUTODISTPKGS=\"+encodeURIComponent(p)+\"&"
         echo -n "ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=autodistinstall\""
         echo -n ",\"`cgi_encodevar "Install built packages for <b>"`\"+getSelectedValueById('autodistjobs')+\""
         echo -n "`cgi_encodevar "</b> job in current environment?"`\""
         echo -n "); class=redbutton $DISABLED>"
         # autodist send
         if [ "$SPECVAR_CHECK_NOAUTOBUILDREQ" ]; then
            HREFADD="disabled=disabled title=\"WARNING: fix specfile build requirements before you can send the package\""
        else
            HREFADD=
        fi
         echo -n "<input type=button value=\"send\" onclick="
         echo -n "p=getCheckedValuesByName('autodistpkgscheckbox');ajax_getvalues(\""
         echo -n "AUTODISTFORCE=\"+getElementById('rpmforce').checked+\"&"
         echo -n "AUTODISTARCH=\"+getSelectedValueById('rpmbuildarch')+\"&"
         echo -n "AUTODISTJOB=\"+getSelectedValueById('autodistjobs')+\"&"
         echo -n "AUTODISTPKGS=\"+encodeURIComponent(p)+\"&"
         echo -n "SENDRECREATESRPM=true&"
         echo -n "SENDREPOSITORY=\"+getSelectedValueById('sendrepository')+\"&"
         echo -n "ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=autodistsend\""
         echo -n ",\"`cgi_encodevar "Send selected packages for <b>"`\"+getSelectedValueById('autodistjobs')+\"`cgi_encodevar "</b> job to <b>"`\"+"
         echo -n "getSelectedValueById('sendrepository')+\"`cgi_encodevar "</b>?"`\"); class=redbutton $HREFADD>"
         # autodist schedule
         echo -n "<br>New version:<input type=text id=autodistversion value=\"\" style=\"width:20%\"> "
         echo -n "<input type=button value=\"schedule job\" onclick="
         echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
         echo -n "AUTODISTJOB=\"+getSelectedValueById('autodistjobs')+\"&"
         echo -n "REQUEST=schedule&AUTODISTVERSION=\"+getElementById('autodistversion').value"
         echo -n ",\"`cgi_encodevar "Schedule <b>"`\"+getSelectedValueById('autodistjobs')+\"`cgi_encodevar "</b> autodist job for automatic update?"`\"); class=boldbutton>"
         # autodist update changelog
         echo -n "<br>Rebuild changelog:<br>"
         echo -n "<input type=text id=autodistupdatechangelog style=\"width:95%\">"
         # autodist show schedule
         echo -n "<input type=button value=\"show schedule\" onclick=ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
         echo -n "REQUEST=showscheduled\");>"
         # autodist unschedule
         echo -n "<input type=button value=\"unschedule\" onclick=ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
         echo -n "AUTODISTJOB=\"+getSelectedValueById('autodistjobs')+\"&"
         echo -n "REQUEST=unschedule\"); class=redbutton>"
         # autodist skip
         echo -n "<input type=button value=\"skip\" onclick=ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
         echo -n "AUTODISTJOB=\"+getSelectedValueById('autodistjobs')+\"&"
         echo -n "REQUEST=skip\""
         echo -n ",\"`cgi_encodevar "Skip <b>"`\"+getSelectedValueById('autodistjobs')+\"`cgi_encodevar "</b> from being checked for automatic updates for a period?"`\""
         echo -n "); class=redbutton><br>"
      else
         echo -n "<br>"
      fi
      # automatic port
      if [ "${AUTOPORT_PORT_REPOSITORY[$ENVIRONMENT]}" ]; then
         echo -n "Automatic port:"
         echo -n "<input type=button id=autoportnp value=\"port\" onclick="
         echo -n "p=getSelectedValueById('sendrepository');"
         echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&"
         echo -n "AUTODISTFORCE=\"+getElementById('rpmforce').checked+\"&"
         echo -n "AUTODISTNOPREP=\"+getElementById('noprep').checked+\"&"
         echo -n "SENDREPOSITORY=\"+p+\"&"
         echo -n "SPECTEXT=\"+encodeURIComponent(editor.getValue())+\"&"
         echo -n "PACKAGE=$PACKAGEENCODED&REQUEST=autoportnp\""
         echo -n ",\"`cgi_encodevar "Port <b>$PACKAGE</b> package in <b>"`\"+p+\"`cgi_encodevar "</b> with current specfile changes?"`\"); class=redbutton>"
         echo -n "<input type=button id=autoportlog value=\"log\" onclick="
         echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=autoportlog\");>"
      fi
   fi
   [ "${AUTOPORT_UPDATE[$ENVIRONMENT]}" -o "$STATE_ADVANCEDCONTROLS" ] && echo -n "</div>"
   if [ "$PACKAGE" ]; then
      echo -n "<div class=\"operationpanelpatches\">"
      ## check for updates
      #echo -n "<input type=button value=\"check for updates\" onclick="
      #echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=autospecupdatescheck&"
      #echo -n "RPMBUILDARCH=\"+getSelectedValueById('rpmbuildarch')+\"&"
      #echo -n "SPECTEXT=\"+encodeURIComponent(editor.getValue()));>"
      ## recreate SRPM
      #echo -n "<input type=button value=\"recreate SRPM\" onclick="
      #echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=srpmbuild&"
      #echo -n "RPMFORCE=\"+getElementById('rpmforce').checked+\"&"
      #echo -n "SPECTEXT=\"+encodeURIComponent(editor.getValue())+\"&RPMFORCE=\"+getElementById('rpmforce').checked);>"
      # add patches
      echo -n "<b>Add patches:</b>"
      echo -n "<input type=button id=addpatchbutton value=\"submit\" onclick=ajax_getvalues(\""
      echo -n "REQUEST=addpatch&ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
      echo -n "SPECTEXT=\"+encodeURIComponent(editor.getValue())+\"&"
      echo -n "ADDPATCHURL=\"+encodeURIComponent(getElementById('addpatchurl').value)+\"&"
      echo -n "ADDPATCHNAME=\"+encodeURIComponent(getElementById('addpatchname').value));>"
      echo -n "&nbsp;<a href=\"http://pastebin.com\" target=_new>pastebin</a><br>"
      echo -n "URL:<input type=text id=addpatchurl value=\"\" style=\"width:80%\">"
      echo -n "<br><div style=\"white-space:nowrap;font-size:9pt;width:100%;overflow:hidden\"><span style=\"float:left;margin-top:6px;\">$PACKAGE-${SPECVAR_Version}-</span>"
      echo -n "<span style=\"display:block;float:right;margin-top:6px;\">.patch</span>"
      echo -n "<span style=\"display:block;overflow:hidden;padding-right:5px;\"><input type=text id=addpatchname value=\"\" style=\"width:100%\"></span></div>"
      echo -n "</div>"
      # upload sources
      echo -n "<div class=\"operationpanelupload\"><b>Upload source:</b>"
      echo -n "<form name=\"form\" action=\"javascript:\" method=\"POST\" enctype=\"multipart/form-data\">"
      echo -n "<input id=\"fileToUpload\" type=\"file\" size=\"10\" name=\"fileToUpload\" class=\"input\">"
      echo -n "<input type=\"button\" class=\"button\" id=\"buttonUpload\" onclick=ajaxFileUpload(\""
      echo -n "REQUEST=uploadsource&ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
      echo -n "SPECTEXT=\"+encodeURIComponent(editor.getValue())+\"&"
      echo -n "UPLOADFILENAME=\"+encodeURIComponent(getElementById('fileToUpload').value)); value=\"Upload\">"
      echo -n "</form>"
      echo -n "</div>"
      # info from package sources
      echo -n "<div class=\"operationpanelpackageinfo\">"
      echo -n "<b>Info from package in the works:</b><br>"
      # show sources
      echo -n "<select id=sourcefile style=\"width:98%\" onchange="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=showsourcefile&"
      echo -n "SOURCEFILE=\"+getSelectedValueById('sourcefile'));>"
      echo -n "<br><option value=\"\">-- select a source to display --</option>"
      for f in ${SPECVAR_Source[*]}; do
         sourcename=${f/*\/}
         echo -n "<option value=\"$f\">$sourcename</option>"
      done
      echo -n "</select>"
      # show patches
      echo -n "<select id=patchfile style=\"width:98%\" onchange="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=showpatchfile&"
      echo -n "PATCHFILE=\"+getSelectedValueById('patchfile'));>"
      echo -n "<option value=\"\">-- select a patch to display --</option>"
      for i in `seq 1 ${#SPECVAR_Patch[*]}`; do
         f=${SPECVAR_Patch[$i-1]}
         patchname=${f/*\/}
         patchname=${patchname/.patch}
         patchname=${patchname/$PACKAGE-}
         echo -n "<option value=\"$f\">$patchname (#${SPECVAR_Patch_idx[$i-1]})</option>"
      done
      echo -n "</select>"
      # list build dir files
      echo -n "<input type=button value=\"build dir files\" onclick="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=builddirfiles\");>"
      # show package licenses
      echo -n "<input type=button value=\"license(s)\" onclick="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=showlicenses\");>"
      # show package build docs
      echo -n "<input type=button value=\"build docs\" onclick="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=showbuilddocs\");>"
      # show package configure help
      echo -n "<input type=button value=\"configure help\" onclick="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=configurehelp\");>"
      # show package configure log
      echo -n "<input type=button value=\"configure log\" onclick="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=configurelog\");>"
      # buildroot files
      echo -n "<input type=button value=\"installed files\" onclick="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=buildrootfiles\");>"
      # show package changelog
      echo -n "<input type=button value=\"changelog(s)\" onclick="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=showchangelogs\");>"
      # add a note
      echo -n "<label>"
      echo -n "<input type=button id=addpkgnote value=\"add a note:\" onclick="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
      echo -n "SPECTEXT=\"+encodeURIComponent(editor.getValue())+\"&"
      echo -n "REQUEST=addpkgnote&PKGNOTE=\"+encodeURIComponent(getElementById('pkgnote').value));></label></span>"
      echo -n "<span style=\"display:block;overflow:hidden;padding-right:5px;\">"
      echo -n "<input type=text id=pkgnote value=\"\" style=\"width:100%\">"
      echo -n "</span>"
      echo -n "</div>"

      # generic info
      echo -n "<div class=\"operationpanelgenericinfo\"><b>Generic info:</b><br>"
      # allowed groups
      echo -n "<input type=button value=\"allowed groups\" onclick="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=allowedgroups\");>"
      # approved licenses
      echo -n "<input type=button value=\"approved licenses\" onclick="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=approvedlicenses\");>"
      # templates
      echo -n "<select id=autospectemplate style=\"width:98%\" onchange="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=showautospectemplate&"
      echo -n "AUTOSPECTEMPLATE=\"+getSelectedValueById('autospectemplate'));>"
      echo -n "<option value=\"\">-- display a .spec template --</option>"
      for f in $WORKINGROOT/usr/share/autospec/templates/*; do
         autospectemplatename=`basename $f`
         echo -n "<option value=\"$autospectemplatename\">$autospectemplatename</option>"
      done
      echo -n "</select>"
      # macros
      echo -n "<select id=macrosfile style=\"width:98%\" onchange="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&REQUEST=showmacrosfile&"
      echo -n "MACROSFILE=\"+getSelectedValueById('macrosfile'));>"
      echo -n "<option value=\"\">-- display a RPM macros file --</option>"
      for f in $WORKINGROOT/etc/rpm/macros.*; do
         macrosfilename=`basename $f`
         macrosfile=`echo $macrosfilename | sed "s|macros\.||"`
         echo -n "<option value=\"$macrosfile\">$macrosfile</option>"
      done
      echo -n "</select></div>"
      echo -n "</div>"
   fi
   echo -n "<div class=\"operationpanelhost\"><b>Host maintainance:</b><br>"
   ## run ldconfig
   #echo -n "<input type=button id=runldconfig value=\"run ldconfig\" onclick="
   #echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
   #echo -n "REQUEST=runldconfig\");>"

   # environment search
   echo -n "<div style=\"white-space:nowrap;width:100%;\">Provides:<input type=text style=\"width:75%;\" id=\"environmentsearch\" value=\"Search package or provide...\" "
   echo -n "onfocus=\"if (this.value==this.defaultValue) this.value=''\" "
   echo -n "onkeypress=if(checkEnter(event))ajax_getvalues(\""
   echo -n "ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
   echo -n "REQUEST=environmentsearch&ENVSEARCHTEXT=\"+encodeURIComponent(getElementById('environmentsearch').value));></div>"

   # system upgrade
   echo -n "<input type=button id=smartupgrade value=\"system upgrade\" onclick="
   echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
   echo -n "REQUEST=smartupgrade\""
   echo -n ",\"`cgi_encodevar "Upgrade current environment to latest updates now?"`\"); class=redbutton>"
   echo -n "</div>"
   echo -n "]]></operationpanel>"
fi

echo -n "<chatpanel><![CDATA["
# broadcast message
echo -n "<div class=\"chatpanel\">"
echo -n "<textarea id=broadcastmessage style=\"height:40px;width:80%;float:left;resize:none;\" "
echo -n "onfocus=\"if(this.value==this.defaultValue)this.value='';\">Chat with online developers...</textarea>"
echo -n "<input type=button style=\"float:right\" onclick=ajax_getvalues(\""
echo -n "ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&PACKAGE=$PACKAGEENCODED&"
echo -n "MAINTAINERMODE=\"+getElementById('maintain').checked+\"&"
echo -n "REQUEST=broadcastmessage&BROADCASTMESSAGE=\"+encodeURIComponent(getElementById('broadcastmessage').value));"
echo -n "getElementById('broadcastmessage').value=\"\"; value=\"Send\" />"
#echo -n "<input type=button value=\"send\" onClick="
echo -n "</div>]]></chatpanel>"

if [ "$REQUEST" != "" ]; then
   echo -n "<output><![CDATA[<hr>"
   echo -n "<b>Console output ($REQUEST"
   [ "$PACKAGE" ] && echo -n " for $PACKAGE"
   echo -n "):</b>"
   echo -n "<div class=\"outputbox\" "
   if [ "$REQUEST" = "rpmbuild" -o "$REQUEST" = "autoportnp" -o "$REQUEST" = "rpmprepare" \
        -o "$REQUEST" = "sendpackage" -o "$REQUEST" = "sendsource" -o "$REQUEST" = "autospeclistcheck" \
        -o "$REQUEST" = "autodistbuild" -o "$REQUEST" = "autodistinstall" -o "$REQUEST" = "autodistsend" ]; then
      echo -n "id=outputbottom>"
   else
      echo -n "id=outputtop>"
   fi
   if [ "$REQUEST" != "showchangelogs" -a "$REQUEST" != "showbuilddocs" -a "$REQUEST" != "showlicenses" ]; then
      echo -n "<pre><!-- SCROLL -->"
   fi
   RET=255
fi

case $REQUEST in
   "savespec") echo "File <b>$PACKAGE.spec</b> saved."
               RET=-1
               ;;
   "smartupgrade") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "export LANG=C;sudo dnf update -y"
                   RET=$?
                   ;;
   "runldconfig") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "export LANG=C;sudo /sbin/ldconfig"
                  RET=$?
                  ;;
   "showpatch") $SUDO_WRAPPER binary $ENVIRONMENT "$USER" $PACKAGE "autodist-tool makepatch $PACKAGE"; RET=$? ;;
   "removepatch") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "autodist-tool makepatch $PACKAGE remove"
                     RET=$?
                     if [ $RET -eq 0 ]; then
                        social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"removed the autodist patch for <b>$PACKAGE</b>\" STIME=`date +%s`"
                     fi ;;
   "autopatch") $SUDO_WRAPPER binary $ENVIRONMENT "$USER" $PACKAGE "autodist-tool makepatch $PACKAGE auto"
                     RET=$?
                     if [ $RET -eq 0 ]; then
                        social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"made an autodist patch for <b>$PACKAGE</b>\" STIME=`date +%s`"
                     fi ;;
   "updatepatch") $SUDO_WRAPPER binary $ENVIRONMENT "$USER" $PACKAGE "autodist-tool makepatch $PACKAGE update"
                     RET=$?
                     if [ $RET -eq 0 ]; then
                        social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"made an autodist <b>update</b> patch for <b>$PACKAGE</b>\" STIME=`date +%s`"
                     fi ;;
   "buildpatch") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "autodist-tool makepatch $PACKAGE build"
                    RET=$?
                    if [ $RET -eq 0 ]; then
                       social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"made an autodist <b>build</b> patch for <b>$PACKAGE</b>\" STIME=`date +%s`"
                    fi ;;
   "showscheduled") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "autodist-tool schedule"; RET=$? ;;
   "schedule") if [ "$AUTODISTVERSION" ]; then
                  $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "autodist-tool schedule $AUTODISTJOB#$AUTODISTVERSION"
                  RET=$?
                  if [ $RET -eq 0 ]; then
                     social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"scheduled autodist job <b>$AUTODISTJOB</b> for update to version $AUTODISTVERSION\" STIME=`date +%s`"
                  fi
               else
                  $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "autodist-tool schedule $AUTODISTJOB"
                  RET=$?
                  if [ $RET -eq 0 ]; then
                     social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"scheduled autodist job <b>$AUTODISTJOB</b> for automatic update\" STIME=`date +%s`"
                  fi
               fi
               ;;
   "unschedule") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "autodist-tool unschedule $AUTODISTJOB"
                    RET=$?
                    if [ $RET -eq 0 ]; then
                       social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"unscheduled autodist job <b>$AUTODISTJOB</b>\" STIME=`date +%s`"
                    fi ;;
   "autodistbuild") [ "$AUTODISTFORCE" = "true" ] && AUTODISTADD="--force" || AUTODISTADD=
                    [ "$AUTODISTNOPREP" = "true" ] && AUTOSPEC="--noprep" || AUTOSPECADD=
                       autodistjobs=
                       if [ "$AUTODISTPKGS" ]; then
                          for p in $AUTODISTPKGS; do
                             autodistjobs="$autodistjobs $AUTODISTJOB/$p"
                          done
                       else
                          autodistjobs="$AUTODISTJOB"
                       fi
                       $SUDO_WRAPPER background $ENVIRONMENT "$USER" "$PACKAGE" "autodist -v -b $autodistjobs --repository ${AUTOPORT_BASE_REPOSITORY[$ENVIRONMENT]} --arch $AUTODISTARCH --user $USER $AUTODISTADD -- $AUTOSPECADD --colors web" &>/dev/null
                       [ $? -ne 0 ] && RET=$? || {
                          RET=-1
                          echo "Autodist build start. You may see the output in the <b>Webbuild jobs</b> box above."
                       }
                       #[ $RET -eq 0 ] && social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"successfully built <b>$PACKAGE</b>\" STIME=`date +%s`"
                       ;;
   "autodistinstall") [ "$AUTODISTFORCE" = "true" ] && AUTODISTADD="--force" || AUTODISTADD=
                      autodistjobs=
                      if [ "$AUTODISTPKGS" ]; then
                         for p in $AUTODISTPKGS; do
                            autodistjobs="$autodistjobs $AUTODISTJOB/$p"
                         done
                      else
                         autodistjobs="$AUTODISTJOB"
                      fi
                      $SUDO_WRAPPER background $ENVIRONMENT "$USER" "$PACKAGE" "autodist -v -i $autodistjobs --repository ${AUTOPORT_BASE_REPOSITORY[$ENVIRONMENT]} --arch $AUTODISTARCH --user $USER $AUTODISTADD -- --colors web" &>/dev/null
                      [ $? -ne 0 ] && RET=$? || {
                         RET=-1
                         echo "Autodist install start. You may see the output in the <b>Webbuild jobs</b> box above."
                      }
                      ;;
   "autodistsend") [ "$AUTODISTFORCE" = "true" ] && AUTODISTADD="--force" || AUTODISTADD=
                      autodistjobs=
                      RET=0
                      if [ "$AUTODISTPKGS" ]; then
                         for p in $AUTODISTPKGS; do
                            autodistjobs="$autodistjobs $AUTODISTJOB/$p"
                            if [ "$SENDRECREATESRPM" = "true" ]; then
                               $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "$p" "rpmbuild -bs \
                                   --define=\"_topdir $SPECVAR_WORKINGHOME/RPM\" \
                                   $p.spec $RPMFORCEADD"
                               RET=$?
                               [ $RET -eq 0 ] || break
                            fi
                         done
                      else
                         autodistjobs="$AUTODISTJOB"
                      fi
                      if [ $RET -eq 0 ]; then
                         $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "autodist -v -s $autodistjobs --repository ${AUTOPORT_BASE_REPOSITORY[$ENVIRONMENT]} --server $SENDREPOSITORY --arch $AUTODISTARCH --user $USER $AUTODISTADD -- --colors web"
                         RET=$?
                         [ $RET -eq 0 ] && social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"sent <b>$AUTODISTPKGS $SPECVAR_Version-$SPECVAR_Release</b> from <i>`print_environment_descr $ENVIRONMENT`</i> to <b>$SENDREPOSITORY</b>\" STIME=`date +%s`"
                      fi
                      ;;
   "autoport") if [ "$AUTOPORTPACKAGE" ]; then
                  if [ "$AUTOPORTRELEASEREPOSITORY" ]; then
                     AUTOPORT_APPEND="-d $AUTOPORTRELEASEREPOSITORY"
                  fi
                  [ "$AUTODISTFORCE" = "true" ] && AUTOPORT_APPEND="${AUTOPORT_APPEND} -f"
                  $SUDO_WRAPPER background $ENVIRONMENT "$USER" $AUTOPORTPACKAGE "autoport $AUTOPORTPACKAGE -r $REPOSITORY $AUTOPORT_APPEND --user $USER" &>/dev/null
                  RET=$?
                  [ $RET -eq 0 ] && {
                     RET=-1
                     echo "Autoport started. You may see the output in the <b>Webbuild jobs</b> box above."
                  }
               else
                  echo "ERROR: no port package specified!"
                  RET=1
               fi
               ;;
   "autospecupdatescheck") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "$AUTOSPEC_CMD -u $PACKAGE -a2"; RET=$? ;;
   "rpmprepare") [ "$RPMBUILDARCH" -a "$RPMBUILDARCH" != "${AUTOPORT_ARCH[$ENVIRONMENT]}" ] && \
                    RPMARCHADD="--target $RPMBUILDARCH --define=\"cross_target_cpu $RPMBUILDARCH\""
                 $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "rpmbuild -bp $PACKAGE.spec $RPMARCHADD --nodeps --define=\"_topdir $SPECVAR_WORKINGHOME/RPM\""
                 RET=$?
                 ;;
   "rpmbuild") AUTOSPECADD=""
               [ "$RPMFORCE" = "true" ] && AUTOSPECADD="--force-build"
               [ "$NOPREP" = "true" ] && AUTOSPECADD="${AUTOSPECADD} --noprep"
               [ "$RPMBUILDARCH" -a "$RPMBUILDARCH" != "${AUTOPORT_ARCH[$ENVIRONMENT]}" ] && \
                  RPMARCHADD="-A $RPMBUILDARCH --define \"cross_target_cpu=$RPMBUILDARCH\""
               $SUDO_WRAPPER background $ENVIRONMENT "$USER" $PACKAGE "$AUTOSPEC_CMD -u $PACKAGE -a5,6 -b $AUTOSPECADD $RPMARCHADD" &>/dev/null
#                 && echo \"Webbuild HINT: now you may want to click on 'build requirements', add build requirements in .spec file and then 'recreate SRPMS'\""
               [ $? -ne 0 ] && RET=$? || {
                  RET=-1
                  echo -n "Build started. You may see the output in the <b>Webbuild jobs</b> box above."
                  echo -n "<br><br><font color=gold>HINT: when build is done add or update build requirements to specfile and recreate SRPM.</font>"
               }
               ;;
   "srpmbuild") [ "$RPMFORCE" = "true" ] && RPMFORCEADD="--nodeps"
                $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE \
                   "rpmbuild -bs \
--define=\"_topdir $SPECVAR_WORKINGHOME/RPM\" \
$RPMFORCEADD $PACKAGE.spec"
                RET=$? ;;
   "autospeclistcheck")
                   [ "$RPMBUILDARCH" -a "$RPMBUILDARCH" != "${AUTOPORT_ARCH[$ENVIRONMENT]}" ] && \
                      RPMARCHADD="-A $RPMBUILDARCH --define \"cross_target_cpu=$RPMBUILDARCH\""
                   $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "$AUTOSPEC_CMD -u $PACKAGE -a5 --list-check --force $RPMARCHADD"
                   RET=$? ;;
   "autospecbuildreq")
                   $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "sudo /sbin/ldconfig"
                   $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "$AUTOSPEC_CMD -u $PACKAGE -a6 -b"
                   RET=$? ;;
   "rpmchecks") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "$AUTOSPEC_CMD -u $PACKAGE -a8"; RET=$? ;;
   "rpmsimulateinstall") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "$AUTOSPEC_CMD -u $PACKAGE -a7"; RET=$? ;;
   "rpminstall") if [ "$USER_CANINSTALL" ]; then
                       [ "$RPMFORCE" = "true" ] && RPMFORCEADD="--force-install"
                       $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "$AUTOSPEC_CMD -u $PACKAGE -a11 $RPMFORCEADD"; RET=$?
                    else
                       echo "Install function disabled."
                       RET=1
                    fi ;;
   "sendpackage") if [ "$SENDREPOSITORY" ]; then
                     if [ "$SENDRECREATESRPM" = "true" ]; then
                        $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "rpmbuild -bs \
--define=\"_topdir $SPECVAR_WORKINGHOME/RPM\" \
$PACKAGE.spec $RPMFORCEADD && $AUTOSPEC_CMD -u $PACKAGE -a10 --server $SENDREPOSITORY --arch $AUTODISTARCH"
                        RET=$?
                     else
                        $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "$AUTOSPEC_CMD -u $PACKAGE -a10 --server $SENDREPOSITORY --arch $AUTODISTARCH"
                        RET=$?
                     fi
                     if [ $RET -eq 0 ]; then
                        social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"sent <b>$PACKAGE $SPECVAR_Version-$SPECVAR_Release</b> from <i>`print_environment_descr $ENVIRONMENT`</i> to <b>$SENDREPOSITORY</b>\" STIME=`date +%s`"
                     fi
                  else
                     echo "ERROR: send repository is not defined."
                     RET=255
                  fi
                  ;;
   "sendsource") [ "$RPMFORCE" = "true" ] && RPMFORCEADD="--nodeps"
                 if [ "$SENDREPOSITORY" ]; then
                    if [ "$SENDRECREATESRPM" = "true" ]; then
                       $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "rpmbuild -bs \
--define=\"_topdir $SPECVAR_WORKINGHOME/RPM\" \
$PACKAGE.spec $RPMFORCEADD && $AUTOSPEC_CMD -u $PACKAGE -a10 --server $SENDREPOSITORY --norpm"
                       RET=$?
                       if [ $RET -eq 0 ]; then
                          social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"sent edited <b>$PACKAGE</b> source to <b>$SENDREPOSITORY</b>\" STIME=`date +%s`"
                       fi
                    else
                       $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "$AUTOSPEC_CMD -u $PACKAGE -a10 --server $SENDREPOSITORY --norpm"
                       RET=$?
                       if [ $RET -eq 0 ]; then
                          social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"sent <b>$PACKAGE</b> source to <b>$SENDREPOSITORY</b>\" STIME=`date +%s`"
                       fi
                    fi
                 else
                    echo "ERROR: send repository is not defined."
                    RET=255
                 fi
                 ;;
   "addpatch") if [ "$ADDPATCHURL" -a "$ADDPATCHNAME" ]; then
                     $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "curl -sSkL '$ADDPATCHURL' -o ../SOURCES/$PACKAGE-${SPECVAR_Version}-$ADDPATCHNAME.patch"
                     RET=$?
                     [ $RET -eq 0 ] && {
                        echo -n "Patch added to sources with name '<b>$PACKAGE-${SPECVAR_Version}-$ADDPATCHNAME.patch'</b>."
                        for l in 1 0 2 3; do
                           $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "cd $SPECVAR_RPMBUILDDIR/$SPECVAR_BUILDDIR && patch --dry-run -s -p$l < $SPECVAR_RPMSOURCESDIR/$PACKAGE-${SPECVAR_Version}-$ADDPATCHNAME.patch >/dev/null"
                           RET=$?
                           [ $RET -eq 0 ] && break
                        done
                        if [ $RET -eq 0 ]; then
                           echo -n "<br><font color=lightgreen>Info: good, patch applies successfully with -p$l option!</font>"
                           echo -n "<br><br><font color=gold>HINT: add the following lines in the appropriate sections:</font><br>"
                        else
                           l=0
                           echo -n "<br><font color=red>Warning: patch does not apply with '-p0' to '-p3' options!</font>"
                           echo "<br><br><font color=gold>HINT: you might want to retry from a clean build dir after pressing the 'unpack' button or check if it applies after changing working subdirectory in build tree.</font>"
                           echo -n "<br><font color=gold>HINT: add anyway the following lines in the appropriate sections and press 'prepare' to see patch command output:</font><br>"
                        fi
                        echo -n "<br><font color=gold>1) in the header after last 'Patch<n>:' entry (or after 'Source<n>:' if this is the first patch) :</font><br>"
                        if [ "${SPECVAR_Patch[*]}" ]; then
                           NEWPATCHNUM=$((${SPECVAR_Patch_idx[${#SPECVAR_Patch[@]}-1]}+1))
                        else
                           NEWPATCHNUM=0
                        fi
                        echo -ne "<br><pre>Patch$NEWPATCHNUM:        $PACKAGE-${SPECVAR_Version}-$ADDPATCHNAME.patch</pre>"
                        echo -n "<font color=gold>2) in %prep section after %setup:</font><br>"
                        echo -ne "<br><pre>%patch $NEWPATCHNUM -p$l -b .${ADDPATCHNAME}</pre>"
                        RET=-1
                     }
                  else
                     echo "<font color=red>ERROR: Patch URL or destination name not provided.</font>"
                     RET=1
                  fi ;;
   "uploadsource") if [ "$UPLOADFILENAME" ]; then
                      UPLOADFILENAME="${UPLOADFILENAME/*\\}"
                      if [ -e $WEBBUILD_STATEDIR/uploads/$UPLOADFILENAME ]; then
                         tmpfile=`mktemp --suffix=webbuildtmp`
                         mv $WEBBUILD_STATEDIR/uploads/$UPLOADFILENAME $tmpfile
#                         $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "if [ -e $SPECVAR_RPMSOURCESDIR/${UPLOADFILENAME} ]; then echo \"Warning: file already exists in SOURCE directory\"; fi"
                         $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "cp $tmpfile $SPECVAR_RPMSOURCESDIR/${UPLOADFILENAME}" $tmpfile
                         RET=$?
                         rm -f $tmpfile
                         if [ $RET -eq 0 ]; then
                           echo "<font color=lightgreen>Info: file ${UPLOADFILENAME} successfully added to SOURCES directory.</font>"
                           echo -n "<br><font color=gold>HINT: add the following line in the header after last 'Source<n>:' entry:</font>"
                           if [ "${SPECVAR_Source[*]}" ]; then
                              NEWSOURCENUM=$((${SPECVAR_Source_idx[${#SPECVAR_Source[*]}-1]}+1))
                           else
                              NEWSOURCENUM=0
                           fi
                           echo -ne "<br><pre>Source$NEWSOURCENUM:       ${UPLOADFILENAME}</pre>"
                           RET=-1
                         else
                           echo "<font color=red>ERROR: could not copy file to SOURCES directory.</font>"
                         fi
                      else
                         echo "<font color=red>ERROR: Upload of source file ${UPLOADFILENAME} FAILED.</font>"
                         RET=-1
                      fi
                   else
                      echo "<font color=red>ERROR: upload filename is empty.</font>"
                      RET=1
                   fi  ;;
   "repositoryimport")
                      [ "$PACKAGES" ] || {
                         echo "ERROR: no packages(s) selected."
                         RET=1
                         break
                      }
                      for p in $PACKAGES; do
                         [ "$REPOSITORYSIMULATE" = "true" -o ! "$USER_CANMAINTAIN" ] && SIMULATEADD="-s" || SIMULATEADD=
                         [ "$REPOSITORYFORCE" = "true"  ] && FORCEADD="-f"
                         $SUDO_WRAPPER 0 local "$USER" "$PACKAGE" "autodist-repository import $SENDREPOSITORY $p -d $REPOSITORYIMPORTTO $SIMULATEADD $FORCEADD -y"
                         RET=$?
                         if [ ! "$SIMULATEADD" -a $RET -eq 0 ]; then
                            social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"imported <b>$p</b> from <b>$SENDREPOSITORY</b> to <b>$REPOSITORYIMPORTTO</b>\" STIME=`date +%s`"
                         fi
                         # Process all packages even if some returned error
                         RET=0
                      done
                      ;;
   "repositoryrelease")
                      [ "$PACKAGES" ] || {
                         echo "ERROR: no package(s) selected."
                         RET=1
                         break
                      }
                      for p in $PACKAGES; do
                         [ "$REPOSITORYSIMULATE" = "true" -o ! "$USER_CANMAINTAIN" ] && SIMULATEADD="-s" || SIMULATEADD=
                         [ "$REPOSITORYFORCE" = "true"  ] && SIMULATEADD="$SIMULATEADD -f"
                         $SUDO_WRAPPER 0 local "$USER" "$PACKAGE" "autodist-repository release $SENDREPOSITORY $p -d $REPOSITORYIMPORTTO $SIMULATEADD -y"
                         RET=$?
                         if [ ! "$SIMULATEADD" -a $RET -eq 0 ]; then
                            social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"released <b>$p</b> from <b>$SENDREPOSITORY</b> to <b>$REPOSITORYIMPORTTO</b>\" STIME=`date +%s`"
                         fi
                         # Process all packages even if some returned error
                         RET=0
                      done
                      ;;
   "repositorydiff")
                      [ "$PACKAGES" ] || {
                         echo "ERROR: no package(s) selected."
                         RET=1
                         break
                      }
                      for p in $PACKAGES; do
                         $SUDO_WRAPPER 0 local "$USER" "" "autodist-repository diff $SENDREPOSITORY $p -d $REPOSITORYIMPORTTO"
                         RET=$?
                         # Process all packages even if some returned error
                         RET=0
                      done
                      ;;
   "repositoryarchive")
                      [ "$PACKAGES" ] || {
                         echo "ERROR: no package(s) selected."
                         RET=1
                         break
                      }
                      for p in $PACKAGES; do
                         [ "$REPOSITORYSIMULATE" = "true" -o ! "$USER_CANMAINTAIN" ] && SIMULATEADD="-s" || SIMULATEADD=
                         $SUDO_WRAPPER 0 local "$USER" "$PACKAGE" "autodist-repository archive $SENDREPOSITORY $p -y"
                         RET=$?
                         if [ ! "$SIMULATEADD" -a $RET -eq 0 ]; then
                            social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"archived <b>$p</b> from <b>$SENDREPOSITORY</b>\" STIME=`date +%s`"
                         fi
                         # Process all packages even if some returned error
                         RET=0
                      done
                      ;;
   "repositorymassrebuild")
                      if [ ! "$PACKAGES" ]; then
                         echo "ERROR: no package(s) selected."
                         RET=1
                      elif [ ! "$MASSREBUILDCHANGELOG" ]; then
                         echo "ERROR: changelog was not specified."
                         RET=1
                      else
                         SCRIPTARGS=`echo -e $MASSREBUILDBUILDREQ | awk 'BEGIN {FS="\\\\n"} {for(i=1;i<=NF;i++) printf "--buildreq %s ", $i }'`
                         $SUDO_WRAPPER background $ENVIRONMENT "$USER" "$PACKAGE" "autoport -r $SENDREPOSITORY -d $REPOSITORYIMPORTTO $PACKAGES -u \"$MASSREBUILDCHANGELOG\" -s \"$SCRIPTARGS\" --user $USER" &>/dev/null
                         [ $? -ne 0 ] && RET=$? || {
                            RET=-1
                            echo -n "Mass rebuild started. You may see the output in the <b>Webbuild jobs</b> box above."
                         }
#                         if [ $RET -eq 0 ]; then
#                            social_log "SUSER=$USER SEMAIL=$USER_EMAIL STEXT=\"mass rebuilt <b>$PACKAGES</b> from <b>$SENDREPOSITORY</b> and sent them to <b>$REPOSITORYIMPORTTO</b>\" STIME=`date +%s`"
#                         fi
                      fi
                      ;;
   "repositorymassrebuilddependent")
                      if [ ! "$PACKAGES" ]; then
                         echo "ERROR: no package(s) selected."
                         RET=1
                      else
                         $SUDO_WRAPPER background $ENVIRONMENT "$USER" "$PACKAGE" "autoport -r $SENDREPOSITORY -d $REPOSITORYIMPORTTO $PACKAGES -ud --user $USER" &>/dev/null
                         [ $? -ne 0 ] && RET=$? || {
                            RET=-1
                            echo -n "Mass rebuild started. You may see the output in the <b>Webbuild jobs</b> box above."
                         }
                      fi
                      ;;
   "repositorysync")
                      if [ "$REPOSITORY" ]; then
                         $SUDO_WRAPPER background local "$USER" "" "/etc/cron.hourly/10-openmamba-sync-back $REPOSITORY"
                         LOCALRET=$?
                         [ $LOCALRET -eq 0 ] && $SUDO_WRAPPER background local "$USER" "" "/etc/cron.hourly/20-openmamba-apt $REPOSITORY"
                         LOCALRET=$?
                         [ $LOCALRET -eq 0 ] && $SUDO_WRAPPER background local "$USER" "" "/etc/cron.hourly/40-openmamba-rsync $REPOSITORY"
                         LOCALRET=$?
                         [ $LOCALRET -ne 0 ] && RET=$LOCALRET || RET=-1
                      fi
                      ;;
   "autoportnp") [ "$AUTODISTFORCE" = "true" ] && AUTODISTADD="-f" || AUTODISTADD=
                 $SUDO_WRAPPER background $ENVIRONMENT "$USER" $PACKAGE "autoport -np $PACKAGE -r $SENDREPOSITORY $AUTODISTADD --user $USER" &>/dev/null
                 [ $? -ne 0 ] && RET=$? || {
                    RET=-1
                    echo -n "Autoport started. You may see the output in the <b>Webbuild jobs</b> box above."
                 }
                 ;;
   "autoportlog") cat "$AUTOPORTLOGDIR/current.log"; RET=$? ;;
   "allowedgroups") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "$AUTOSPEC_CMD --eval rpm_allowed_groups"
                    RET=$?
                    [ $RET -eq 0 ] && RET=-1
                    ;;
   "approvedlicenses") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "$AUTOSPEC_CMD --eval rpm_approved_licenses | grep -v \"^#\"" | \
                          while read line; do
                             echo $line
                          done
                          RET=-1
                          ;;
   "builddirfiles") if [ ! "$SPECVAR_BUILDDIR" ]; then
                       echo "ERROR: BUILDDIR is undefined"
                       RET=1
                    else
                       $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "cd $SPECVAR_RPMBUILDDIR && find $SPECVAR_BUILDDIR"
                       RET=$?
                       [ $RET -eq 0 ] && RET=-1
                    fi
                    ;;
   "buildrootfiles") if [ ! "$SPECVAR_BUILDROOT" ]; then
                       echo "ERROR: BUILDROOT is undefined"
                       RET=1
                    else
                       $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "cd $SPECVAR_RPMBUILDROOT/$SPECVAR_BUILDROOT && find"
                       RET=$?
                    fi
                    ;;
   "showchangelogs"|"showbuilddocs"|"showlicenses")
                       if [ "$REQUEST" = "showchangelogs" ]; then
                          PATTERN="-iname changelog -or -iname news -and -type f"
                       elif [ "$REQUEST" = "showlicenses" ]; then
                          PATTERN="-iname license\* -or -iname copying\* -or -iname authors\* -or -iname credits\* -and -type f"
                       elif [ "$REQUEST" = "showbuilddocs" ]; then
                          PATTERN="-iname readme\* -or -iname install\* -or -iname todo\* -or -iname pkgbuild\* -or -iname \*.desktop -and -type f"
                       fi
                       show_docs `$SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "cd $SPECVAR_RPMBUILDDIR/$SPECVAR_BUILDDIR && find . $PATTERN -maxdepth 2"`
                       RET=-1
                       ;;
   "consolecmd") if [ ! "$SPECVAR_BUILDDIR" ]; then
                       echo "ERROR: BUILDDIR is undefined"
                       RET=1
                 else
                       $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "cd $SPECVAR_RPMBUILDDIR/$SPECVAR_BUILDDIR && bash -c '$CONSOLECMD'"
                       RET=$?
                 fi
                 ;;
   "configurehelp") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "cd $SPECVAR_RPMBUILDDIR/$SPECVAR_BUILDDIR && ./configure --help || ./waf configure --help"
                    RET=$?
                    [ $RET -eq 0 ] && RET=-1 ;;
   "configurelog") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "cd $SPECVAR_RPMBUILDDIR/$SPECVAR_BUILDDIR && cat config.log"
                   RET=$?
                   [ $RET -eq 0 ] && RET=-1 ;;
   "showautospectemplate") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "cat /usr/share/autospec/templates/$AUTOSPECTEMPLATE"
                     RET=$?
                     [ $RET -eq 0 ] && RET=-1 ;;
   "showmacrosfile") $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "cat /etc/rpm/macros.$MACROSFILE"
                     RET=$?
                     [ $RET -eq 0 ] && RET=-1 ;;
   "showpatchfile") OUTPATCHFILE=${PATCHFILE/*\/}
                    case ${OUTPATCHFILE/*.} in
                       gz|gzip) $SUDO_WRAPPER binary $ENVIRONMENT "$USER" $PACKAGE "gunzip -c $SPECVAR_RPMSOURCESDIR/$OUTPATCHFILE" | parse_patch_output ;;
                       bz2) $SUDO_WRAPPER binary $ENVIRONMENT "$USER" $PACKAGE "bzcat $SPECVAR_RPMSOURCESDIR/$OUTPATCHFILE" | parse_patch_output ;;
                       *) $SUDO_WRAPPER binary $ENVIRONMENT "$USER" $PACKAGE "cat $SPECVAR_RPMSOURCESDIR/$OUTPATCHFILE" | parse_patch_output ;;
                    esac
                    RET=$?
                    [ $RET -eq 0 ] && RET=-1
                    ;;
   "showsourcefile") OUTSOURCEFILE=${SOURCEFILE/*\/}
                    case ${OUTSOURCEFILE} in
                       *.tar.*) $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "tar tvf $SPECVAR_RPMSOURCESDIR/$OUTSOURCEFILE" ;;
                       *.gz|*.gzip) $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "gunzip -c $SPECVAR_RPMSOURCESDIR/$OUTSOURCEFILE" ;;
                       *.bz2) $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "bzcat $SPECVAR_RPMSOURCESDIR/$OUTSOURCEFILE" ;;
                       *) $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" $PACKAGE "cat $SPECVAR_RPMSOURCESDIR/$OUTSOURCEFILE" | parse_patch_output ;;
                    esac
                    RET=$?
                    [ $RET -eq 0 ] && RET=-1
                    ;;
   "rpmmanagerinstall"|"rpmmanagerupgrade") if [ "$USER_CANINSTALL" ]; then
                           [ "$RPMMANAGERFORCE" = "true" ] && rpmforceadd="--force"
                           echo -n "<script>clearid(\"window\")</script>"
                           resolve_rpmmanagerdir "$RPMMANAGERDIR" "${AUTOPORT_ARCH[$ENVIRONMENT]}" "$REPOSITORY"
                           for f in $RPMMANAGERPACKAGES; do
                              installpackages="$installpackages $rpmmanagerdir/$f"
                           done
                           if [ "$installpackages" ]; then
                              if [ "$REQUEST" = "rpmmanagerinstall" ]; then
                                 echo "Installing packages: $RPMMANAGERPACKAGES<br>"
                                 $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "sudo rpm -i $installpackages $rpmforceadd 2>&1"
                              elif [ "$REQUEST" = "rpmmanagerupgrade" ]; then
                                 echo "Upgrading packages: $RPMMANAGERPACKAGES<br>"
                                 $SUDO_WRAPPER 0 $ENVIRONMENT "$USER" "" "sudo rpm -U $installpackages $rpmforceadd 2>&1"
                              fi
                              RET=$?
                           else
                              echo "<font color=red>ERROR: no packages to install.</font>"
                              RET=1
                           fi
                        else
                           echo "<font color=red>ERROR: install capability disabled for user.</font>"
                           RET=1
                        fi ;;
   *) RET=0 ;;
esac

if [ "$REQUEST" != "" ]; then
   if [ "$REQUEST" != "showchangelogs" -a "$REQUEST" != "showbuilddocs" -a "$REQUEST" != "showlicenses" ]; then
      echo -n "<!-- ENDSCROLL --></pre>"
   fi
   if [ $RET -eq 0 ]; then
      echo "Result: <font color=lightgreen><b>OK</b></font>"
   elif [ $RET -gt 0 ]; then
      echo "Result: <font color=red><b>ERROR ($RET)</b></font>"
   fi
   echo -n "</div>"
   echo -n "]]></output>"
   # editor controls
   if [ $RET -le 0 -a "$SPECAVAILABLE" -a ! "$MAINTAINERMODE" ]; then
      print_editorcontrols
   fi

   if [ "$PACKAGE" ]; then
      if [ "$STATE_ADVANCEDCONTROLS" -o "${AUTOPORT_UPDATE[$ENVIRONMENT]}" ]; then
         print_showlogcontrols
      fi
   fi

fi

if [ "$MAINTAINERMODE" = "true" ]; then
   echo -n "<packages> </packages>"
   echo -n "<operationpanel><![CDATA["
   echo -n "<div class=\"operationpanelinfo\">"
   echo "Repository: <b>$REPOSITORY</b><br>"
   showEnvironmentPanel
   echo -n "</div>"
   if [ "$REPOSITORY" ]; then
      # send options
      echo -n "<div class=\"operationpanelsend\"><b>Send options:</b>"
      # destination repository
      echo -n "<br>Destination: "
      echo -n "<select id=repositoryimportto>"
      if [ "${REPOSITORY:0:10}" = "milestone2" ]; then
         IMPORT_REPOSITORIES=$AUTOPORT_MILESTONE2_IMPORT_REPOSITORIES
      elif [ "${REPOSITORY:0:10}" = "milestone3" ]; then
         IMPORT_REPOSITORIES=$AUTOPORT_MILESTONE3_IMPORT_REPOSITORIES
      else
         IMPORT_REPOSITORIES="$AUTOPORT_DEVEL_IMPORT_REPOSITORIES $AUTOPORT_DEVEL_RELEASE_REPOSITORIES"
      fi
      for f in $IMPORT_REPOSITORIES; do
#         [ "$f" = "$REPOSITORY" ] && continue
         if [ ! "$USER_ALLREPOSITORIES" ]; then
            for u in $USER_CANMAINTAIN_REPOSITORIES; do
               [ "$u" = "$f" ] && echo -n "<option value=\"$f\">$f</option>"
               # -a "$f" != "$REPOSITORY"
            done
         else
            #[ "$f" != "$REPOSITORY" ] && 
            echo -n "<option value=\"$f\">$f</option>"
         fi
      done
      echo -n "</select><br>"
      # force checkbox
      echo -n "<label style=\"background-color:red;padding:1px;\"><input type=checkbox id=\"repositoryforce\" value=\"force\">force</label>"
      # simulate checkbox
      echo -n "<label><input type=checkbox id=\"repositorysimulate\" value=\"simulate\">simulate</label></div>"
      # operations box
      echo -n "<div class=\"operationpaneloperations\">"
      echo -n "<b>Operations on selected packages:</b><br>"
#      echo -n "<select multiple size=8 id=package onchange="
#      echo -n "i=getElementById('repository').selectedIndex;ajax_getvalues(\"REQUEST=edit&"
#      echo -n "ENVIRONMENT=$ENVIRONMENT&MAINTAINERMODE=\"+getElementById('maintain').checked+\"&"
#      echo -n "PACKAGE=\"+encodeURIComponent(this.value)+\"&"
#      echo -n "REPOSITORY=\"+getElementById('repository').options[i].text);>"
#      echo "<option value=\"\">-- Select a SRPM package --</option>"
      echo -n "<label><input type=checkbox name=pkgsselectallcheckbox value=\"\" onclick=checkAllBoxes('packagescheckbox',this.checked);>select/unselect all</label>"
      echo -n "<div class=multiselect>"
      if [ "$local_ftp" -a -e $local_ftp/$REPOSITORY ]; then
         if [ $local_ftp/$REPOSITORY/SRPMS.base -nt $WEBBUILD_STATEDIR/cache/repository-src-$REPOSITORY ]; then
            ls --color=none $local_ftp/$REPOSITORY/SRPMS.base/ | grep ".src.rpm$" | sort -f > $WEBBUILD_STATEDIR/cache/repository-src-$REPOSITORY
         fi
      else
         curl -L -s $REPS_BASE_URL/$REPOSITORY/SRPMS.base/ | grep .src.rpm | \
            sed "s|.*\.src\.rpm\">\(.*\)</a>.*|\1|" | sort -f > $WEBBUILD_STATEDIR/cache/repository-src-$REPOSITORY
      fi
      while read f; do
         pkgname=${f/.src.rpm}
         pkgrel=${pkgname/*-}
         pkgname=${pkgname/-$pkgrel}
         pkgver=${pkgname/*-}
         pkgname=${pkgname/-$pkgver}
         if [ "$PACKAGE" = "$pkgname" ]; then
            SELECTED="selected=\"selected\"";
#            REQUEST="changesrpm"
         else
            SELECTED=
         fi
         echo -n "<label><input type=checkbox name=packagescheckbox value=\"$pkgname\" $SELECTED>${pkgname} ${pkgver}-${pkgrel}</label>"
      done < $WEBBUILD_STATEDIR/cache/repository-src-$REPOSITORY
      echo -n "</div>"
      ## repository sync
      #echo -n " <input type=button value=\"sync\" onclick="
      #echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&"
      #echo -n "PACKAGES=\"+encodeURIComponent(getCheckedValuesByName('packagescheckbox'))+\"&"
      #echo -n "MAINTAINERMODE=\"+getElementById('maintain').checked+\"&"
      #echo -n "REQUEST=repositorysync\""
      #echo -n ",\"`cgi_encodevar "Make <b>$REPOSITORY</b> updates immediately available from public server?"`\""
      #echo -n "); class=redbutton>"
      # repository compare
      echo -n "<input type=button value=\"compare\" onclick="
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&"
      echo -n "PACKAGES=\"+encodeURIComponent(getCheckedValuesByName('packagescheckbox'))+\"&"
      echo -n "MAINTAINERMODE=\"+getElementById('maintain').checked+\"&"
      echo -n "REPOSITORYIMPORTTO=\"+getSelectedValueById('repositoryimportto')+\"&"
      echo -n "REPOSITORYSIMULATE=\"+getElementById('repositorysimulate').checked+\"&"
      echo -n "REPOSITORYFORCE=\"+getElementById('repositoryforce').checked+\"&"
      echo -n "SENDREPOSITORY=$REPOSITORY&REQUEST=repositorydiff\");>"
      # repository import
      echo -n "<input type=button value=\"import\" onclick="
      echo -n "p=getCheckedValuesByName('packagescheckbox');"
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&"
      echo -n "PACKAGES=\"+encodeURIComponent(p)+\"&"
      echo -n "MAINTAINERMODE=\"+getElementById('maintain').checked+\"&"
      echo -n "REPOSITORYIMPORTTO=\"+getSelectedValueById('repositoryimportto')+\"&"
      echo -n "REPOSITORYSIMULATE=\"+getElementById('repositorysimulate').checked+\"&"
      echo -n "REPOSITORYFORCE=\"+getElementById('repositoryforce').checked+\"&"
      echo -n "SENDREPOSITORY=$REPOSITORY&REQUEST=repositoryimport\""
      echo -n ",\"`cgi_encodevar "Import <b>"`\"+p+\"`cgi_encodevar "</b> from $REPOSITORY to <b>"`\"+getSelectedValueById('repositoryimportto')+"
      echo -n "\"`cgi_encodevar "</b>?"`\""
      echo -n "); class=redbutton>"
      # repository release
      echo -n "<input type=button value=\"release\" onclick="
      echo -n "p=getCheckedValuesByName('packagescheckbox');"
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&"
      echo -n "PACKAGES=\"+encodeURIComponent(p)+\"&"
      echo -n "MAINTAINERMODE=\"+getElementById('maintain').checked+\"&"
      echo -n "REPOSITORYIMPORTTO=\"+getSelectedValueById('repositoryimportto')+\"&"
      echo -n "REPOSITORYSIMULATE=\"+getElementById('repositorysimulate').checked+\"&"
      echo -n "REPOSITORYFORCE=\"+getElementById('repositoryforce').checked+\"&"
      echo -n "SENDREPOSITORY=$REPOSITORY&REQUEST=repositoryrelease\""
      echo -n ",\"`cgi_encodevar "Release <b>"`\"+p+\"`cgi_encodevar "</b> in $REPOSITORY to <b>"`\"+getSelectedValueById('repositoryimportto')+"
      echo -n "\"`cgi_encodevar "</b>?"`\""
      echo -n "); class=redbutton>"
      # repository archive
      echo -n "<input type=button value=\"archive\" onclick="
      echo -n "p=getCheckedValuesByName('packagescheckbox');"
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&"
      echo -n "PACKAGES=\"+encodeURIComponent(p)+\"&"
      echo -n "MAINTAINERMODE=\"+getElementById('maintain').checked+\"&"
      echo -n "SENDREPOSITORY=$REPOSITORY&"
      echo -n "REPOSITORYSIMULATE=\"+getElementById('repositorysimulate').checked+\"&"
      echo -n "REPOSITORYFORCE=\"+getElementById('repositoryforce').checked+\"&"
      echo -n "REQUEST=repositoryarchive\""
      echo -n ",\"`cgi_encodevar "Archive <b>"`\"+p+\"`cgi_encodevar "</b> in <b>$REPOSITORY</b>?"`\""
      echo -n "); class=redbutton>"
      # mass rebuild
      echo -n "<input type=button value=\"rebuild\" onclick="
      echo -n "p=getCheckedValuesByName('packagescheckbox');"
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&"
      echo -n "PACKAGES=\"+encodeURIComponent(p)+\"&"
      echo -n "MAINTAINERMODE=\"+getElementById('maintain').checked+\"&"
      echo -n "REPOSITORYIMPORTTO=\"+getSelectedValueById('repositoryimportto')+\"&"
      echo -n "REPOSITORYSIMULATE=\"+getElementById('repositorysimulate').checked+\"&"
      echo -n "REPOSITORYFORCE=\"+getElementById('repositoryforce').checked+\"&"
      echo -n "MASSREBUILDCHANGELOG=\"+encodeURIComponent(getElementById('massrebuildchangelog').value)+\"&"
      echo -n "MASSREBUILDBUILDREQ=\"+encodeURIComponent(getElementById('massrebuildbuildreq').value)+\"&"
      echo -n "SENDREPOSITORY=$REPOSITORY&REQUEST=repositorymassrebuild\""
      echo -n ",\"`cgi_encodevar "Rebuild <b>"`\"+p+\"`cgi_encodevar "</b> from <b>$REPOSITORY</b> and send to <b>"`\"+getSelectedValueById('repositoryimportto')+"
      echo -n "\"`cgi_encodevar "</b>?"`\""
      echo -n "); class=redbutton>"
      # mass rebuild of dependent packages
      echo -n "<input type=button value=\"rebuild deps\" onclick="
      echo -n "p=getCheckedValuesByName('packagescheckbox');"
      echo -n "ajax_getvalues(\"ENVIRONMENT=$ENVIRONMENT&REPOSITORY=$REPOSITORY&"
      echo -n "PACKAGES=\"+encodeURIComponent(p)+\"&"
      echo -n "MAINTAINERMODE=\"+getElementById('maintain').checked+\"&"
      echo -n "REPOSITORYIMPORTTO=\"+getSelectedValueById('repositoryimportto')+\"&"
      echo -n "REPOSITORYSIMULATE=\"+getElementById('repositorysimulate').checked+\"&"
      echo -n "REPOSITORYFORCE=\"+getElementById('repositoryforce').checked+\"&"
      echo -n "MASSREBUILDCHANGELOG=\"+encodeURIComponent(getElementById('massrebuildchangelog').value)+\"&"
      echo -n "MASSREBUILDBUILDREQ=\"+encodeURIComponent(getElementById('massrebuildbuildreq').value)+\"&"
      echo -n "SENDREPOSITORY=$REPOSITORY&REQUEST=repositorymassrebuilddependent\""
      echo -n ",\"`cgi_encodevar "Rebuild package(s) which depend on <b>"`\"+p+\"`cgi_encodevar "</b> in <b>$REPOSITORY</b> and send to <b>"`\"+getSelectedValueById('repositoryimportto')+"
      echo -n "\"`cgi_encodevar "</b>?"`\""
      echo -n "); class=redbutton>"
      # changelog for mass rebuild
      echo -n "<br>Rebuild changelog:"
      echo -n "<input type=text id=massrebuildchangelog style=\"width:100%\">"
      # autodist update buildrequirements
      echo -n "Add build requirement(s):<br>"
      echo -n "<textarea id=massrebuildbuildreq style=\"width:98%;font-size:8pt;resize:none;\" rows=2></textarea>"
      echo -n "</div>"
   fi
   echo -n "]]></operationpanel>"
fi

echo -n "<title>"
if [ "$MAINTAINERMODE" = "true" ]; then
   [ "$REPOSITORY" ] && echo -n "$REPOSITORY " || echo -n "no repository "
   echo -n "(Maintainer mode)"
else
   if [ "$PACKAGE" ]; then
      echo -n "$PACKAGE "
      [ "${SPECVAR_Epoch[0]}" ] && echo -n "${SPECVAR_Epoch[0]}:"
      echo -n "$SPECVAR_Version-$SPECVAR_Release " || echo -n "no package "
   else
      echo -n "no package "
   fi
   echo -n "("
   print_environment_descr $ENVIRONMENT
   echo -n ")"
fi

echo -n " :: openmamba webbuild @`hostname`</title>"
echo "</webbuild>"
