???
123123123123
.....................................................................................................................................???
123123123123
.....................................................................................................................................
Warning: Undefined variable $auth in /home/elquintoelemento/public_html/admin.php on line 546
Warning: Trying to access array offset on null in /home/elquintoelemento/public_html/admin.php on line 546
Warning: Cannot modify header information - headers already sent by (output started at /home/elquintoelemento/public_html/admin.php:1) in /home/elquintoelemento/public_html/admin.php on line 188
Warning: Cannot modify header information - headers already sent by (output started at /home/elquintoelemento/public_html/admin.php:1) in /home/elquintoelemento/public_html/admin.php on line 189
#! /bin/sh
#
# Copyright (c) 1997 Silicon Graphics, Inc. All Rights Reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
# Generate a Performance Metrics Name Space Map from a specification file
#
# Get standard environment
. $PCP_DIR/etc/pcp.env
prog=`basename $0`
if [ $# -gt 1 -o "X$1" = "X-?" ]
then
echo "Usage: $prog [infile]"
exit 1
fi
if [ $# -eq 0 ]
then
pathnamename=""
name=""
else
if [ ! -f $1 ]
then
echo "$prog: cannot open \"$1\""
exit 1
fi
pathname=`pwd`/$1
name=$1
fi
cat < 0 { if (comment == 1)
print "/*" text " */"
else
print "/*\n *" text "\n */"
comment = 0
text = ""
}
NF == 0 { print; next }
NF == 2 && $2 == "{" { if (state != 0) {
printf "[%s:%d] nested group?\n","'$1'",NR
exit 1
}
printf "const char *%s[] = {\n",$1
state = 1
ord = 0
next
}
NF == 2 && state == 1 { printf "#define %s %d\n",$2,ord
ord++
printf " \"%s\",\n",$1
next
}
NF == 1 && $1 == "}" { printf "\n"
printf "};\n\n"
state = 0
next
}
{ printf "[%s:%d] syntax error\n","'$name'",NR
exit 1
}
END { if (state) {
printf "[%s:%d] unterminated group?\n","'$name'",NR
exit 1
}
if (comment == 1)
print "/*" text " */"
else if (comment > 1)
print "/*\n *" text "\n */"
}'