Display different content if JavaScript is disabled
i suppose that by disable java u will get a different visual content of the webpage ....hum..and then write the .bat putting in one single pixel and refresh the page
http://localhost:64651/
http://192.168.252.165:64651/
exit 0
:/usr/bin/searchd --pidfile --config /u/apps/vish/current/config/production.sphinx.conf
.htaccess
in your root directory.
# Enable Basic Auth
AuthType Basic
AuthName "SomeDescription"
# Point to our password file
AuthUserFile /path/to/.htpasswd
Require valid-user
# Redirect all `*.html` to `*.php`
RewriteEngine On
RewriteRule ^(.*)\.html$ $1.php [L]
.htpasswd
file, you can enter username/password pairs. Passwords are hashed using the MD5 algorithm. You can generate a password with
$ htpasswd /path/to/.htpasswd user1
.htpasswd
user1:$apr1$OS3sZCvx$KRmhPMpZ9bYs4INph8s6w.
user2:$apr1$3Vfr8Z9d$UeKjYDdJK2XFQRUPw7h9T.
book.json
:
{
"plugins": ["hidden"],
"pluginsConfig": {
"hidden": {
"usernames": ["user1", "user2"],
"path": "_book",
"env": "production"
}
}
}
usernames
: is an array of authorized users (default: [])path
: is the path to your generated html GitBook (default: _book
)env
: NODE_ENV
value you want this plugin to be fully executed in. Useful for local development as this plugin breaks functionality of gitbook serve
(default: production
)
{% hidden %}
### This will be hidden except for authorized users
{% endhidden %}
cookies.txt
file (generated with a Chrome extension) with Python Requests:import requests, cookielib
cj = cookielib.MozillaCookieJar('cookies.txt')
cj.load()
r = requests.get(url, cookies=cj)
wget
. Any idea what I'm doing wrong?cookielib.MozillaCookieJar._really_load
and can verify that the cookies are correctly parsed (i.e. they have the correct values for the domain
, path
, secure
, etc. tokens). But as the transaction is still resulting in the login form, it seems that wget
must be doing something additional (as the exact same cookies.txt
file works for it).MozillaCookieJar
inherits from FileCookieJar
which has the following docstring in its constructor:Cookies are NOT loaded from the named file until either the .load() or
.revert() method is called.
.load()
method then.# Netscape HTTP Cookie File
or # HTTP Cookie File
string. Files generated by the plugin you use do not contain such a string so you have to insert it yourself. I raised appropriate bug at http://code.google.com/p/cookie-txt-export/issues/detail?id=5ignore_expires=True
to load()
method all such cookies are discarded when loading from a file.session_cookie.txt
:# Netscape HTTP Cookie File
.domain.com TRUE / FALSE 0 name value
import cookielib
cj = cookielib.MozillaCookieJar('session_cookie.txt')
cj.load()
print len(cj)
0