Regarding Your Visa

2013-09-06 Thread Marium Bibi
GET UAE VISA IN 2 DAYS.
NO DEPOSIT / NO CHEQUES.
BRING YOUR FAMILY & FRIENDS TO UAE NOW.
15 Days - 450 DHS / 40 Days - 550 DHS.
60 Days - 1450 DHS / 90 Days - 2500 DHS.
Express Speed Service
We help to process & arrange all type of UAE Visas.
Discounted Air Tickets with visa package.
Super discounted hotel bookings in UAE & Worldwide
Luxury UAE tours:
Desert Safari - 150 DHS, Dhow Cruise - 120 DHS, City Tours - 130 DHS & 51 more 
amazing tours.. .all with FREE pick up & drop off.
Thanks & Regards
Marium Bibi
Regal Tours Dubai & Worldwide - UAE's Expert Visa Consultants
Mobile : + 971 50 370 3550 / 55 370 5507
Phone  :  +971 4   2635 888
Fax   :  +971 4   2635 889
P.O. Box  :  10304, Dubai, UAE
i...@regaltoursuae.com
www.regaltoursuae.com

 



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


openjdk; iced-tea; itweb-javaws does not open

2013-09-06 Thread Antonio Olivares
Dear folks,

While updating ports, openjdk and iced-tea the itweb-javaws jnlp
plugin does not launch.  It is downloaded, but iced-tea/plugin is not
executed.  Anybody else have this problem?

openjdk6=
icedtea-web =

Ideas?

Thanks,


Antonio
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: What's happening to my asciidoc?

2013-09-06 Thread Warren Block

On Fri, 6 Sep 2013, David Demelier wrote:


2013/9/6 Warren Block :


asciidoc \
  -a data-uri \
  -a icons \
  -a iconsdir=/usr/local/etc/asciidoc/images/icons \
  -d article \
  -a stylesheet=~/docs/stylesheets/wb-html.css \
  -a toc \
  -a revdate="2013-09-05" \
  -a year="2013" \
  -a max-width=80em \
  pxe.txt

That stylesheet is just my changes to the default, which change the link
visited color from pink to red and add rounded corners to listing blocks.


Did you touch the asciidoc configuration ? For me it seems to work
*only* if I use html5 backend, otherwise it produces this:
http://www.demelierdavid.fr/article.html.


Not that I recall, and pkg-info -g asciidoc-8.6.8_1 does not show 
anything.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: openjdk; iced-tea; itweb-javaws does not open

2013-09-06 Thread Antonio Olivares
Dear folks,

In case something changed in file /usr/local/bin/itweb-javaws, see the
following:

root@grullahighschool:/usr/local/bin # cat itweb-javaws
#!/usr/local/bin/bash

JAVA=/usr/local/openjdk6/jre/bin/java
LAUNCHER_BOOTCLASSPATH="-Xbootclasspath/a:/usr/local/share/icedtea-web/netx.jar"
LAUNCHER_FLAGS=-Xms8m
CLASSNAME=net.sourceforge.jnlp.runtime.Boot
BINARY_LOCATION=/usr/local/bin/itweb-javaws
SPLASH_LOCATION=/usr/local/share/icedtea-web/javaws_splash.png
PROGRAM_NAME=itweb-javaws
CP=/usr/local/openjdk6/jre/lib/rt.jar

PROPERTY_NAME=deployment.jre.dir
CUSTOM_JRE_REGEX="^$PROPERTY_NAME *= *"
CUSTOM_JRE=`grep "$CUSTOM_JRE_REGEX" ~/.icedtea/deployment.properties
2>/dev/null |  sed "s/$CUSTOM_JRE_REGEX//g"`
if [ "x$CUSTOM_JRE" = "x" ] ; then
  CUSTOM_JRE=`grep "$CUSTOM_JRE_REGEX"
/etc/.java/.deploy/deployment.properties 2>/dev/null |  sed
"s/$CUSTOM_JRE_REGEX//g"`
fi;
if [ "x$CUSTOM_JRE" != "x" ] ; then
  if [ -e  "$CUSTOM_JRE" -a -e "$CUSTOM_JRE/bin/java" -a -e
"$CUSTOM_JRE/lib/rt.jar" ] ; then
JAVA=$CUSTOM_JRE/bin/java
CP=$CUSTOM_JRE/lib/rt.jar
  else
echo "Your custom JRE $CUSTOM_JRE read from deployment.properties
under key $PROPERTY_NAME as $CUSTOM_JRE is not valid. Using default
($JAVA, $CP) in attempt to start. Please fix this."
  fi
fi;

JAVA_ARGS=( )
ARGS=( )
COMMAND=()

i=0
j=0

SPLASH="false"
if [ "x$ICEDTEA_WEB_SPLASH" = "x" ] ; then
SPLASH="true"
fi;
while [ "$#" -gt "0" ]; do
  case "$1" in
-J*)
  JAVA_ARGS[$i]="${1##-J}"
  i=$((i+1))
  ;;
*)
  ARGS[$j]="$1"
  j=$((j+1))
  if [ "$1" = "-headless" ] ; then
SPLASH="false"
  fi
  ;;
  esac
  shift
done

k=0
COMMAND[k]="${JAVA}"
k=$((k+1))
if [ "$SPLASH" = "true" ] ; then
COMMAND[k]="-splash:${SPLASH_LOCATION}"
k=$((k+1))
fi;
COMMAND[k]="${LAUNCHER_BOOTCLASSPATH}"
k=$((k+1))
COMMAND[k]="${LAUNCHER_FLAGS}"
k=$((k+1))
i=0
while [ "$i" -lt "${#JAVA_ARGS[@]}" ]; do
  COMMAND[k]="${JAVA_ARGS[$i]}"
  i=$((i+1))
  k=$((k+1))
done
COMMAND[k]="-classpath"
k=$((k+1))
COMMAND[k]="${CP}"
k=$((k+1))
COMMAND[k]="-Dicedtea-web.bin.name=${PROGRAM_NAME}"
k=$((k+1))
COMMAND[k]="-Dicedtea-web.bin.location=${BINARY_LOCATION}"
k=$((k+1))
COMMAND[k]="${CLASSNAME}"
k=$((k+1))
j=0
while [ "$j" -lt "${#ARGS[@]}" ]; do
  COMMAND[k]="${ARGS[$j]}"
  j=$((j+1))
  k=$((k+1))
done

exec -a "itweb-javaws" "${COMMAND[@]}"

exit $?
root@grullahighschool:/usr/local/bin #

Thanks in Advance,


Antonio

On Fri, Sep 6, 2013 at 10:45 AM, Antonio Olivares
 wrote:
> Dear folks,
>
> While updating ports, openjdk and iced-tea the itweb-javaws jnlp
> plugin does not launch.  It is downloaded, but iced-tea/plugin is not
> executed.  Anybody else have this problem?
>
> openjdk6=
> icedtea-web =
>
> Ideas?
>
> Thanks,
>
>
> Antonio
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Proper way to share ZFS via NFS

2013-09-06 Thread aurfalien
Hi,

Wondering whats the correct way to share ZFS, /etc/exports or via zfs commands 
which alter /etc/zfs/exports?

I see a lot of both on line.

Thanks in advance,

- aurf

 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Spam control (was: Let People Find You in Google!)

2013-09-06 Thread Frank Leonhardt

On 06/09/2013 11:21, Jerry wrote:

On Fri, 6 Sep 2013 09:32:39 +0100
Graham Todd articulated:


Isn't this pure SPAM?

Why yes it is. Would you prefer it mixed with non-spam to make it more
palatable?

Seriously, the ration of spam to non-spam is increasing exponentially
on this list. Until the moderators change this to a subscriber list it
will remain aa "any spammer can post" list.

There has indeed been a higher spam:ham ratio on this list of late, 
however making it subscriber-only won't help. The crims need only spoof 
the address of someone subscribed to the list to bypass that, and I 
suspect a few spammers have registered using false addresses anyway 
(leading to a bounce to anyone posting).


Piping it through Spamassassin as it arrives at mx1.freebsd.org, 
although this isn't so effective against people using freemail accounts. 
Closing down irresponsibly run freemail operators would be a big help, 
but it's not going to happen.


If anyone wants to discuss this OFF LIST, I'm up for it.

Regards, Frank.

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Let People Find You in Google!

2013-09-06 Thread Jerry
On Fri, 6 Sep 2013 09:32:39 +0100
Graham Todd articulated:

> Isn't this pure SPAM?

Why yes it is. Would you prefer it mixed with non-spam to make it more
palatable?

Seriously, the ration of spam to non-spam is increasing exponentially
on this list. Until the moderators change this to a subscriber list it
will remain aa "any spammer can post" list.

-- 
Jerry ♔

Disclaimer: off-list followups get on-list replies or get ignored.
Please do not ignore the Reply-To header.
__
How long a minute is depends on what side of the bathroom door you're on. 


signature.asc
Description: PGP signature


Re: Excessive bounces

2013-09-06 Thread Harald Weis
On Mon, Aug 26, 2013 at 06:28:32PM -0400, Robert Huff wrote:
 > 
 > Harald Weis writes:
 > 
 > >  My membership to this list has been disabled due to excessive bounces.
 > >  
 > >  Could somebody please tell me how to stop these bounces in the future ?
 > 
 >  You are not the only one with this problem.  I am subscribed,
 > from the same address, to about half a dozen Freebsd lists;
 > questions@ is the only one that insists I confirm my subscription
 > (roughly once a month).
 >  Attempts to work with the Freebsd mailing-lists admins have
 > been far from satisfactory 
 > 
 > 
 >  Robert Huff
 > 
 > 

Thanks to all of you.

I'm just happy to know that I am not the only one having this problem with
freebsd-questions, and never ever with many other (FreeBSD or other)
lists since years.

Harald 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: Let People Find You in Google!

2013-09-06 Thread Graham Todd
Isn't this pure SPAM?

++ Graham Todd
Email created using gNewSense Linux 3.0 and hardened with
Liberté Linux 2012.3.
"Free Software, as free in free speech and freedom"


signature.asc
Description: PGP signature


Let People Find You in Google!

2013-09-06 Thread Ashish Vishwakarma
Hello  freebsd-questions@freebsd.org, Let your potential  
customers find you in Google and other search engines when they are looking  
for business like yours.
We specialize in Search Engine Optimization (SEO) and Search Engine  
Marketing (SEM)


Bring your website up to Google 1st page top positions.
Expose to people who are looking for business like yours.
Bring in highly targeted and relevant traffic to your website.

What if targeted traffic increase  
doesn’t lead to increase in sales?
 You might want to look into Landing Page Optimization &  
Userability Testing.

 Performance Measure: 

Measure success in SEO/SEM campaigns base on key performance metric,  
ex. Impression, clicks, Click thru  
rate, etc…


 
Web Analytics:

Measure the degree of engagement of website visitors, ex. avg time on  
site, bounce rate, goal conversion, goal funnel analysis, etc…

Identify leaks throughout conversion process.
Suggest user friendly design and implement userability testing.

 
ROI Analysis:

Measure on return on investment (ROI), base on assigned conversion  
& goal tracking, advertising cost, conversion rate, etc…


 
Please feel free to contact us for a free SEO/SEM audit or simply let us  
know your current search marketing issue or concern.  We can always  
customize an effective solution for you.

 
Regards
Ashish Vishwakarma,style="color: #99;"> Business Development Executive
Skype:  
ashish2717
Disclaimer: The CAN-SPAM Act of 2003  
(Controlling the Assault of Non-Solicited Pornography and Marketing Act)  
establishes requirements for those who send commercial email, spells out  
penalties for spammers and companies whose products are advertised in spam  
if they violate the law, and gives consumers the right to ask mailers to  
stop spamming them. The above mail is in accordance to the Can Spam act of  
2003: There are no deceptive subject lines and is a manual process through  
our efforts on World Wide Web. You can reply Remove in the subject line and  
we ensure you will not receive any such mails

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"


Re: What's happening to my asciidoc?

2013-09-06 Thread David Demelier
2013/9/6 Warren Block :
> On Thu, 5 Sep 2013, Warren Block wrote:
>
>> On Thu, 5 Sep 2013, David Demelier wrote:
>>
>>> Hi,
>>>
>>> I've been using asciidoc for a while, I've updating it to
>>> asciidoc-8.6.8_1. But now I can't generate any correct documentation.
>>> It does not even add :toc: field.
>>>
>>> For instance the following example should generate a HTML with its
>>> popular blue theme :
>>>
>>> Test
>>> ===
>>> :Author: David
>>> :toc:
>>>
>>> = Title
>>>
>>> Some data
>>>
>>> == Title 2
>>>
>>> Some data
>>>
>>> For me, it produces a very light HTML file with no table of content
>>> and everything is black, I also notice that it does not append any CSS
>>> code.
>>>
>>> Does anyone already have this issue?
>>
>>
>> It's working for me, I used it last night.
>
>
> Here is the command I use (generated from a Makefile), broken into separate
> lines:
>
> asciidoc \
>   -a data-uri \
>   -a icons \
>   -a iconsdir=/usr/local/etc/asciidoc/images/icons \
>   -d article \
>   -a stylesheet=~/docs/stylesheets/wb-html.css \
>   -a toc \
>   -a revdate="2013-09-05" \
>   -a year="2013" \
>   -a max-width=80em \
>   pxe.txt
>
> That stylesheet is just my changes to the default, which change the link
> visited color from pink to red and add rounded corners to listing blocks.

Did you touch the asciidoc configuration ? For me it seems to work
*only* if I use html5 backend, otherwise it produces this:
http://www.demelierdavid.fr/article.html.

Cheers,

-- 
Demelier David
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "freebsd-questions-unsubscr...@freebsd.org"