REDUCE grasa y celulitis - CALMA DOLORES - - TONIFICA -hace MASAJES

2012-03-28 Thread Salud Natural
Esto es una parte del texto del mensaje.
Este se muestra para los usuarios de antiguos clientes de e-mail

[demime 1.01d removed an attachment of type image/jpeg which had a name of 
1.15cint58.jpg]



Re: Pipe text from mg to external command

2012-03-28 Thread Kjell Wooding
There's nothing *technically* wrong with "irrespective," but it is a tad
awkward when compared with "regardless."

"irregardless" is a hangable offense.

On Wed, Mar 28, 2012 at 1:40 AM, Jason McIntyre wrote:

> On Tue, Mar 27, 2012 at 10:46:46PM -0400, Kjell Wooding wrote:
> > s/irrespective/regardless/
> >
>
> there's nothing wrong with "irrespective". it's used correctly here (to
> mean exactly the same as "regardless"). are you maybe confusing it with
> the classic "irregardless"?
>
> "irregardless" is sometimes worth slipping in, in my opinion ;)
>
> jmc
>
> > On Tue, Mar 27, 2012 at 12:57 PM, Sunil Nimmagadda <
> > su...@sunilnimmagadda.com> wrote:
> >
> > > This version implements some off-list review comments...
> > >
> > > 1. Discard explicit checking whether command exists and it's
> > > permissions since shell already does and reports error.
> > >
> > > 2. Remove unnecessary bzero call.
> > >
> > > 3. Document minor deviation from emacs behaviour in README.
> > >
> > > Index: README
> > > ===
> > > RCS file: /cvs/src/usr.bin/mg/README,v
> > > retrieving revision 1.8
> > > diff -u -p -r1.8 README
> > > --- README  1 Aug 2011 12:15:23 -   1.8
> > > +++ README  20 Mar 2012 17:54:12 -
> > > @@ -61,7 +61,9 @@ recognized as special cases.
> > >  On systems with 16 bit integers, the kill buffer cannot exceed 32767
> > >  bytes.
> > >
> > > -
> > > +Unlike GNU Emacs, Mg's minibuffer isn't multi-line aware and hence
> > > +some commands like "shell-command-on-region" always pop up a buffer to
> > > +display output irrespective of output's size.
> > >
> > >  New implementation oddities:



Re: Thecus N1200 fix

2012-03-28 Thread Ivan Solonin

On Wed, 28 Mar 2012 17:07:45 +0600, Tobias Ulmer  wrote:


On Wed, Mar 28, 2012 at 01:58:44PM +0600, Ivan Solonin wrote:

Looks like fdisk can't handle the damaged partition table. Can you try
fdisk -i wd0? Or even dd if=/dev/zero of=/dev/rwd0c bs=1m count=1

For the record my installation of this snapshot went fine. The disk was
zero'ed beforehand though.



Mostly you are right but nevertheless "Illegal instruction (core dumped)"  
bug appears. In my case installation almost finishes on zeroed HDD with  
this error message:


man51.tgz100% |*|  9499 KB00:13
Location of sets? (disk ftp http nfs or 'done') [done]
Time appears wrong.  Set to 'Wed Mar 28 23:37:41 YEKT 2012'? [yes]
Saving configuration files...done.
Generating initial host.random file...done.
Making all device nodes...done.
dd: /dev/wd0i: Device not configured
Failed to install bootblocks.
You will not be able to boot OpenBSD from wd0.

#

This error appears even if I use auto layout of filesystems in disklabel  
where wd0i have mount point /usr/src. If I use my custom layout without  
wd0i error message will be the same.

If installation started on nonzeroed HDD I`ve got:

uid 0 on /: file system full

/: write failed, pid 18705 (sleep): user write of 126976@0xfffe at  
550116 failed: 28

file system is full
Illegal instruction
Illegal instruction (core dumped)
Illegal instruction (core dumped)


Ivan



UPDATE: xf86-input-synaptics

2012-03-28 Thread Alexandr Shadchin
Hi,

This update xf86-input-synaptics to the latest release 1.5.2.
http://koba.devio.us/distfiles/xf86-input-synaptics-1.5.2.diff

Tested on amd64.

Comments ? OK ?

-- 
Alexandr Shadchin



UPDATE: xf86-input-mouse

2012-03-28 Thread Alexandr Shadchin
Hi,

This update xf86-input-mouse to the latest release 1.7.2.
http://koba.devio.us/distfiles/xf86-input-mouse-1.7.2.diff

Tested on amd64.

Comments ? OK ?

-- 
Alexandr Shadchin



Keycode print mode (-r) for wsconsctl(8), II.

2012-03-28 Thread Steffen Daode Nurpmeso
Hi,

just want to post a corrected and better version which prints the
(correct) keycode on the left and the current assignments on the
right (if any).
The entire code is conditionalized on !SMALL.
Plain I/O tested a lot outside of wsconsctl(8).

wsconsctl(8) supports -f with default/-a, so i've also updated
that in respect to manual and usage.
May have been left off deliberately though.

--steffen
Forza Figa!

Index: util.c
===
RCS file: /Users/steffen/arena/code.openbsd/src/sbin/wsconsctl/util.c,v
retrieving revision 1.55
diff -a -p -u -r1.55 util.c
--- util.c  20 Sep 2011 17:00:24 -  1.55
+++ util.c  28 Mar 2012 17:38:28 -
@@ -457,35 +457,41 @@ rd_field(struct field *f, char *val, int
 void
 print_kmap(struct wskbd_map_data *map)
 {
-   struct wscons_keymap *mp;
int i;
 
-   for (i = 0; i < map->maplen; i++) {
-   mp = map->map + i;
+   for (i = 0; i < (int)map->maplen; i++)
+   print_kmap_entry(map->map + i, i);
+   ksymenc(0);
+}
 
-   if (mp->command == KS_voidSymbol &&
-   mp->group1[0] == KS_voidSymbol &&
-   mp->group1[1] == KS_voidSymbol &&
-   mp->group2[0] == KS_voidSymbol &&
-   mp->group2[1] == KS_voidSymbol)
-   continue;
-   printf("\n");
-   printf("keycode %u =", i);
-   if (mp->command != KS_voidSymbol)
-   printf(" %s", ksym2name(mp->command));
-   printf(" %s", ksym2name(mp->group1[0]));
-   if (mp->group1[0] != mp->group1[1] ||
-   mp->group1[0] != mp->group2[0] ||
-   mp->group1[0] != mp->group2[1]) {
-   printf(" %s", ksym2name(mp->group1[1]));
-   if (mp->group1[0] != mp->group2[0] ||
-   mp->group1[1] != mp->group2[1]) {
-   printf(" %s", ksym2name(mp->group2[0]));
-   printf(" %s", ksym2name(mp->group2[1]));
-   }
+void
+print_kmap_entry(struct wscons_keymap *mp, int keycode)
+{
+   if (mp->command == KS_voidSymbol &&
+   mp->group1[0] == KS_voidSymbol &&
+   mp->group1[1] == KS_voidSymbol &&
+   mp->group2[0] == KS_voidSymbol &&
+   mp->group2[1] == KS_voidSymbol)
+   return;
+
+   if (keycode >= 0)
+   printf("\nkeycode %u ", keycode);
+   putchar('=');
+
+   if (mp->command != KS_voidSymbol)
+   printf(" %s", ksym2name(mp->command));
+   printf(" %s", ksym2name(mp->group1[0]));
+   if (mp->group1[0] != mp->group1[1] ||
+   mp->group1[0] != mp->group2[0] ||
+   mp->group1[0] != mp->group2[1]) {
+   printf(" %s", ksym2name(mp->group1[1]));
+   if (mp->group1[0] != mp->group2[0] ||
+   mp->group1[1] != mp->group2[1]) {
+   printf(" %s", ksym2name(mp->group2[0]));
+   printf(" %s", ksym2name(mp->group2[1]));
}
}
-   ksymenc(0);
+   return;
 }
 
 void
Index: wsconsctl.8
===
RCS file: /Users/steffen/arena/code.openbsd/src/sbin/wsconsctl/wsconsctl.8,v
retrieving revision 1.23
diff -a -p -u -r1.23 wsconsctl.8
--- wsconsctl.8 4 Aug 2008 07:32:51 -   1.23
+++ wsconsctl.8 28 Mar 2012 18:03:32 -
@@ -37,6 +37,7 @@
 .Sh SYNOPSIS
 .Nm wsconsctl
 .Op Fl an
+.Op Fl f Ar file
 .Nm wsconsctl
 .Op Fl n
 .Op Fl f Ar file
@@ -49,6 +50,8 @@
 .Op Fl n
 .Op Fl f Ar file
 .Ar name Ns += Ns Ar value ...
+.Nm wsconsctl
+.Fl r
 .Sh DESCRIPTION
 The
 .Nm
@@ -81,6 +84,13 @@ symbol.
 See the
 .Sx EXAMPLES
 section for more details.
+.It Fl r
+Enters an interactive mode in which keypresses are displayed
+as their raw keyboard scancodes.
+This mode always operates on standard input
+and does not work on pseudo terminals.
+It is not available in SMALL environments.
+After five seconds of inactivity the program terminates.
 .El
 .Pp
 The
Index: wsconsctl.c
===
RCS file: /Users/steffen/arena/code.openbsd/src/sbin/wsconsctl/wsconsctl.c,v
retrieving revision 1.26
diff -a -p -u -r1.26 wsconsctl.c
--- wsconsctl.c 20 Aug 2010 00:20:55 -  1.26
+++ wsconsctl.c 28 Mar 2012 17:46:06 -
@@ -37,8 +37,23 @@
 #include 
 #include 
 #include 
+
+#ifndef SMALL
+# include 
+# include 
+# include 
+# include 
+# include 
+# include 
+#endif
+
 #include "wsconsctl.h"
 
+#ifndef SMALL
+/* How many seconds of inactivity before termination in -r mode */
+# define ALARM_DELAY   5
+#endif
+
 extern const char *__progname; /* from crt0.o */
 
 extern struct field keyboard_field_tab[];
@@ -64,6 +79,9 @@ struct vartypesw {
 };
 
 struct vartypesw *tab_by_name(const char *, int *);
+#ifndef SMALL
+

Re: kf->f_wbytes = fp->f_rbytes ?

2012-03-28 Thread Philip Guenther
On Wed, Mar 28, 2012 at 1:14 AM, Paulm  wrote:
> sys/kern/kern_sysctl.c
>
> In fill_file2(...)
>
> kf->f_wbytes = fp->f_rbytes
>
> This produces erroneous output in fstat. Diff is below if this is
> indeed a typo.

Yep.  libkvm had the same typo; fix for both committed; thanks!


Philip Guenther



Re: Thecus N1200 fix

2012-03-28 Thread Tobias Ulmer
On Wed, Mar 28, 2012 at 01:58:44PM +0600, Ivan Solonin wrote:
> Available disks are: wd0.
> Which one is the root disk? (or 'done') [wd0]
> Use DUIDs rather than device names in fstab? [yes] no
> Disk: wd0   geometry: 232581/16/63 [234441648 Sectors]
> Offset: 0   Signature: 0xAA55
> Starting Ending LBA Info:
>  #: id  C   H   S -  C   H   S [   start:size ]
> ---
> *0: A6  0   1   1 -  16643  15  63 [  63:16777089 ] OpenBSD
>  1: A6  16644   0   1 - 232437  15  63 [16777152:   217520352 ] OpenBSD
>  2: 00  0   0   0 -  0   0   0 [   0:   0 ] unused
>  3: A6 232438   0   1 - 232580  15  63 [   234297504:  144144 ] OpenBSD
> Use (W)hole disk, use the (O)penBSD area, or (E)dit the MBR?
> [OpenBSD] Illegal instruction (core dumped)
> Illegal instruction (core dumped)

Looks like fdisk can't handle the damaged partition table. Can you try
fdisk -i wd0? Or even dd if=/dev/zero of=/dev/rwd0c bs=1m count=1

For the record my installation of this snapshot went fine. The disk was
zero'ed beforehand though.



Re: kf->f_wbytes = fp->f_rbytes ?

2012-03-28 Thread David Coppa
On Wed, Mar 28, 2012 at 10:14 AM, Paulm  wrote:
> sys/kern/kern_sysctl.c
>
> In fill_file2(...)
>
> kf->f_wbytes = fp->f_rbytes
>
> This produces erroneous output in fstat. Diff is below if this is
> indeed a typo.

I think so. ok for me

ciao,
David



kf->f_wbytes = fp->f_rbytes ?

2012-03-28 Thread Paulm
sys/kern/kern_sysctl.c 

In fill_file2(...)

kf->f_wbytes = fp->f_rbytes

This produces erroneous output in fstat. Diff is below if this is
indeed a typo.



Index: kern_sysctl.c
===
RCS file: /cvs/src/sys/kern/kern_sysctl.c,v
retrieving revision 1.217
diff -N -u -p kern_sysctl.c
--- kern_sysctl.c   23 Mar 2012 15:51:26 -  1.217
+++ kern_sysctl.c   28 Mar 2012 07:55:55 -
@@ -1092,7 +1092,7 @@ fill_file2(struct kinfo_file2 *kf, struct file
*fp, st
kf->f_rwfer = fp->f_wxfer;
kf->f_seek = fp->f_seek;
kf->f_rbytes = fp->f_rbytes;
-   kf->f_wbytes = fp->f_rbytes;
+   kf->f_wbytes = fp->f_wbytes;
} else
kf->f_offset = -1;
} else if (vp != NULL) {



Re: vmmap speed increase diff

2012-03-28 Thread Norman Golisz
On Tue Mar 27 2012 17:08, patrick keshishian wrote:
> FF11 was dog-slow, at least on my netbook. This patch makes FF11 more
> tolerable.

same here with libreoffice and xxxterm.

I'm extensively using my Thinkpad T400 since Saturday with this patch
without apparent problems.



bgplg: remember entered address in form field

2012-03-28 Thread Stuart Henderson
Seeing gsoares@ diff reminded me I've had this diff lying in my tree
for a while.

- change the variable name from cmd= to arg= to match most other looking
glasses, giving a hint to browser autocomplete for addresses you type
regularly.

- default the form input field to the previously entered text.
lg_getenv already protects against characters which do not match
isalnum(_x) || strchr("-_.:/= ", _x)

Any OKs for one or both of these changes?


Index: bgplg.c
===
RCS file: /cvs/src/usr.bin/bgplg/bgplg.c,v
retrieving revision 1.9
diff -u -p -r1.9 bgplg.c
--- bgplg.c 2 Apr 2010 21:20:49 -   1.9
+++ bgplg.c 28 Mar 2012 08:11:34 -
@@ -244,7 +244,7 @@ lg_incl(const char *file)
 int
 main(void)
 {
-   char *query, *self, *cmd = NULL, *req;
+   char *query, *self, *cmd = NULL, *req = NULL;
char **argv = NULL;
char myname[MAXHOSTNAMELEN];
int ret = 1, argc = 0, query_length = 0;
@@ -282,8 +282,10 @@ main(void)
printf("fatal error: invalid request\n");
goto err;
}
-   if ((query = lg_getenv("QUERY_STRING", &query_length)) != NULL)
+   if ((query = lg_getenv("QUERY_STRING", &query_length)) != NULL) {
cmd = lg_getarg("cmd=", query, query_length);
+   req = lg_getarg("arg=", query, query_length);
+   }
printf(
"\n"
"\n"
@@ -302,7 +304,10 @@ main(void)
cmds[i].name, cmds[i].name);
}
printf("\n"
-   "\n"
+   "\n"
"\n"
"\n"
"\n"
@@ -325,8 +330,7 @@ main(void)
printf("unspecified command\n");
goto err;
}
-   if ((req = lg_getarg("req=", query, query_length)) != NULL) {
-   /* Could be NULL */
+   if (req != NULL) {
argv = lg_arg2argv(req, &argc);
}



Re: bgplg: use -A with traceroute6 to print the AS number

2012-03-28 Thread Stuart Henderson
I think this pushes the width of the page a bit too far, it's ok on my
desktop machine, and maybe on my netbook when tracing over networks that
don't use long v6 addresses in their network, but I would prefer to
bump the  width in bgplg.head too. It's currently 599, increasing
this to 800 or so works a lot better for me.

On 2012/03/27 20:15, Gleydson Soares wrote:
> now that we've the option -A with traceroute6, bgplg is happy to use
> 
> OK ?
> Index: bgplg.h
> ===
> RCS file: /cvs/src/usr.bin/bgplg/bgplg.h,v
> retrieving revision 1.8
> diff -u -p -r1.8 bgplg.h
> --- bgplg.h   8 Nov 2011 12:21:29 -   1.8
> +++ bgplg.h   28 Mar 2012 01:51:38 -
> @@ -67,7 +67,7 @@ struct cmd {
>   { "ping", 1, 1, "
", \ > { PING, "-c4", "-w2", NULL } }, \ > { "traceroute6", 1, 1, "
", \ > - { TRACEROUTE6, "-l", NULL } }, \ > + { TRACEROUTE6, "-Al", NULL } }, \ > { "ping6", 1, 1, "
", \ > { PING6, "-c4", "-i2", NULL } },\ > { "help", 0, 0, NULL, { NULL }, lg_help }, \

Re: Thecus N1200 fix

2012-03-28 Thread Ivan Solonin

Hello!

Thank you for the snapshot I`ve tested this one. This is my report of
installation.
Boot of bsd.bin is successful but further another problems appeared: 
this
is a full console output from power on to power down events without
editing.



U-Boot 1.1.3 (FSL Development) (Feb  6 2007 - 12:26:26) MPC83XX

Clock configuration:
  Coherent System Bus:  266 MHz
  Core: 266 MHz
  Local Bus Controller: 266 MHz
  Local Bus: 33 MHz
  DDR:  266 MHz
  I2C:  266 MHz
  TSEC1:266 MHz
  TSEC2:266 MHz
  USB MPH:   88 MHz
  USB DR:88 MHz
CPU: MPC83xx, Rev: 11 at 266.666 MHz
Board: Thecus N1200
I2C:   ready
DRAM:  SDRAM on Local Bus is NOT available!
   DDR RAM: 128 MB
FLASH:  8 MB
PCI1 32bit on PMC1 & PMC2 & PMC3
In:serial
Out:   serial
Err:   serial
Net:   Freescale TSEC0: PHY is Realtek RTL8211B (1cc912)
Freescale TSEC1: PHY id 1410c87 is not supported!
Freescale TSEC1: No PHY found
Freescale TSEC0, Freescale TSEC1
Thecus Version: 4, PIC version: 4
Hit any key to stop autoboot:  0
=> setenv ipaddr 192.168.252.61
=> setenv serverip 192.168.252.62
=> setenv gatewayip 192.168.252.62
=> tftpboot 20 bsd.bin
Speed: 100, full duplex
Using Freescale TSEC0 device
TFTP from server 192.168.252.62; our IP address is 192.168.252.61
Filename 'bsd.bin'.
Load address: 0x20
Loading: #
 #
 #
 #
 #
 #
 #
 #
 #
 #
 #
 #
 #
 #
 #
 #
 #
 #
 #
done
Bytes transferred = 6240540 (5f391c hex)
=> go 20
## Starting application at 0x0020 ...
Copyright (c) 1982, 1986, 1989, 1991, 1993
The Regents of the University of California.  All rights reserved.
Copyright (c) 1995-2012 OpenBSD. All rights reserved.
http://www.OpenBSD.org

uvm_km_kmem_grow: grown to 0xe800
OpenBSD 5.1-current (RAMDISK) #70: Sun Mar 25 06:14:05 MDT 2012
dera...@socppc.openbsd.org:/usr/src/sys/arch/socppc/compile/RAMDISK
real mem = 134217728 (128MB)
avail mem = 121892864 (116MB)
mainbus0 at root
cpu0 at mainbus0: 8347
obio0 at mainbus0
"wdt" at obio0 offset 0x00200 not configured
sociic0 at obio0 offset 0x03000 ivec 14
iic0 at sociic0
ricohrtc0 at iic0 addr 0x32: RICOH RS5C372[AB] Real-time Clock
fintek0 at iic0 addr 0x2e: F75375 rev 1.5
sociic1 at obio0 offset 0x03100 ivec 15
iic1 at sociic1
ehci0 at obio0 offset 0x22000 ivec 39
usb0 at ehci0: USB revision 2.0
uhub0 at usb0 "Freescale EHCI root hub" rev 2.00/1.00 addr 1
tsec0 at obio0 offset 0x24000 ivec 32: address 00:14:fd:10:b9:c8
rgephy0 at tsec0 phy 17: RTL8169S/8110S PHY, rev. 2
tsec1 at obio0 offset 0x25000 ivec 35: address 00:14:fd:10:b9:c9
ukphy0 at tsec1 phy 5: Generic IEEE 802.3u media interface, rev. 0: OUI
0x001400, model 0x0005
ifmedia_set: no match for 0x20/0x
com0 at obio0 offset 0x04500 ivec 9: st16650, no working fifo
com0: console
ipic0 at obio0 offset 0x00700
socpcic0 at mainbus0
pci0 at socpcic0 bus 0
"Freescale MPC8347 PBGA" rev 0x11 at pci0 dev 0 function 0 not configured
pciide0 at pci0 dev 16 function 0 "CMD Technology SiI3512 SATA" rev 0x01:
DMA
pciide0: using ivec 20 for native-PCI interrupt
pciide0: port 0: device present, speed: 1.5Gb/s
wd0 at pciide0 channel 0 drive 0: 
wd0: 16-sector PIO, LBA48, 114473MB, 234441648 sectors
wd0(pciide0:0:0): using BIOS timings, Ultra-DMA mode 5
root on rd0a swap on rd0b dump on rd0b
WARNING: clock lost 7356 days, using FS time -- CHECK AND RESET THE DATE!
%P+,T-B&V 7B&b",B&5B&P9Q+P4=F!L3>kP
Welcome to the OpenBSD/socppc 5.1 installation program.
(I)nstall, (U)pgrade or (S)hell? i
At any prompt except password prompts you can escape to a shell by
typing '!'. Default

Re: bgplg: use -A with traceroute6 to print the AS number

2012-03-28 Thread David Coppa
On Wed, Mar 28, 2012 at 1:15 AM, Gleydson Soares  wrote:
> now that we've the option -A with traceroute6, bgplg is happy to use
>
> OK ?

sure!