task
stringlengths
12
101
input
stringlengths
0
3.73k
output
stringlengths
1
5.04k
options
sequence
pageTitle
stringlengths
0
320
outputColName
stringlengths
1
216
url
stringlengths
14
211
wdcFile
stringlengths
69
76
169dabe8_NetPDL_Expressions__NetBee___Description
[Variable] $packetlength [Data type] number (bytes) [Description]
It keeps the total length of the packet as it is provided by the link-layer. For instance, this value cannot be more than 1518 bytes on a standard Ethernet (without VLANs). Usually, this variable is equal to the framelength; it differs in case the packet has been captured on an Ethernet (with DIX format) and it is smaller than the minimum Ethernet size. For instance, an IP packet of 20 bytes will have packetlength equal to 38 (20 bytes IP plus 18 bytes Ethernet), while framelength will be 64 (the bytes traveling on the network, since the minimum Ethernet frame is 64 bytes).
[]
NetPDL Expressions [NetBee]
Description
http://www.nbee.org/doku.php?id=netpdl:expressions
14/1438042988860.88_20150728002308-00036-ip-10-236-191-2_609666358_29.json
169dabe8_NetPDL_Expressions__NetBee___Description
[Variable] $currentoffset [Data type] number (bytes) [Description]
It keeps the total number of bytes that have already been processed. The NetPDL engine must update this variable as soon as a new field is correctly recognized.
[]
NetPDL Expressions [NetBee]
Description
http://www.nbee.org/doku.php?id=netpdl:expressions
14/1438042988860.88_20150728002308-00036-ip-10-236-191-2_609666358_29.json
169dabe8_NetPDL_Expressions__NetBee___Description
[Variable] $currentprotooffset [Data type] number (bytes) [Description]
It keeps the total number of bytes that have already been processed within the current protocol. The decoder must update this variable as soon as a new field is correctly recognized. The variable is initialized to zero each time the dissector begins handling a new protocol.
[]
NetPDL Expressions [NetBee]
Description
http://www.nbee.org/doku.php?id=netpdl:expressions
14/1438042988860.88_20150728002308-00036-ip-10-236-191-2_609666358_29.json
169dabe8_NetPDL_Expressions__NetBee___Description
[Variable] $linklayer [Data type] number [Description]
It keeps the type of the link-layer the packet belongs to. This is needed in order to decide which is the first protocol that has to be examined.
[]
NetPDL Expressions [NetBee]
Description
http://www.nbee.org/doku.php?id=netpdl:expressions
14/1438042988860.88_20150728002308-00036-ip-10-236-191-2_609666358_29.json
169dabe8_NetPDL_Expressions__NetBee___Description
[Variable] $prevproto [Data type] protocol [Description]
It keeps the protocol that encapsulated the current one. For instance, in case of ethernet-IP-UDP, the value of this variable will be #ethernet when processing IP, #IP when processing UDP, and so on.
[]
NetPDL Expressions [NetBee]
Description
http://www.nbee.org/doku.php?id=netpdl:expressions
14/1438042988860.88_20150728002308-00036-ip-10-236-191-2_609666358_29.json
169dabe8_NetPDL_Expressions__NetBee___Description
[Variable] $nextproto [Data type] protocol [Description]
It keeps the protocol that follows the current one. For instance, in case of ethernet-IP-UDP, the value of this variable will be #IP after processing ethernet, #UDP after processing IP, and so on. Please note that this variable is updated only when the protocol processing ended, since there is no way to know the next protocol till the current one has been completely understood. Viceversa, variable $prevproto is updated before beginning the processing of the selected protocol.
[]
NetPDL Expressions [NetBee]
Description
http://www.nbee.org/doku.php?id=netpdl:expressions
14/1438042988860.88_20150728002308-00036-ip-10-236-191-2_609666358_29.json
169dabe8_NetPDL_Expressions__NetBee___Description
[Variable] $timestamp_sec [Data type] number [Description]
The timestamp is expressed by two different variables that look very similar to the struct timeval structure defined in BSD sockets. This variable keeps the number of seconds elapsed since midnight (00:00:00), January 1, 1970, coordinated universal time, according to the system clock of the host who captured the packet.
[]
NetPDL Expressions [NetBee]
Description
http://www.nbee.org/doku.php?id=netpdl:expressions
14/1438042988860.88_20150728002308-00036-ip-10-236-191-2_609666358_29.json
169dabe8_NetPDL_Expressions__NetBee___Description
[Variable] $timestamp_usec [Data type] number [Description]
The timestamp is expressed by two different variables that look very similar to the struct timeval structure defined in BSD sockets. This variable keeps the microsecond value according to the system clock of the host who captured the packet.
[]
NetPDL Expressions [NetBee]
Description
http://www.nbee.org/doku.php?id=netpdl:expressions
14/1438042988860.88_20150728002308-00036-ip-10-236-191-2_609666358_29.json
169dabe8_NetPDL_Expressions__NetBee___Description
[Variable] $begintokenlen [Data type] number [Description]
It is automatically updated only in case of tokenwrapped fields. This variable contains the length of the string that is used to locate the beginning of the field itself. Although this value is obvious in case of fixed tokens, it can computed only at run-time in case a regular expression is used to locate the field. For instance, a field whose value is email@domain.com (with ”<” as the beginning string and ”>” as the ending string), this variable is equal to 1.
[]
NetPDL Expressions [NetBee]
Description
http://www.nbee.org/doku.php?id=netpdl:expressions
14/1438042988860.88_20150728002308-00036-ip-10-236-191-2_609666358_29.json
169dabe8_NetPDL_Expressions__NetBee___Description
[Variable] $fieldtokenlen [Data type] number [Description]
It is automatically updated only in case of tokenended and tokenwrapped fields. This variable contains the length of the field, not including the beginning (if present) and ending strings that are used to locate the field itself. For instance, a field whose value is email@domain.com (with ”<” as the beginning string and ”>” as the ending string), this variable is equal to 16.
[]
NetPDL Expressions [NetBee]
Description
http://www.nbee.org/doku.php?id=netpdl:expressions
14/1438042988860.88_20150728002308-00036-ip-10-236-191-2_609666358_29.json
169dabe8_NetPDL_Expressions__NetBee___Description
[Variable] $endtokenlen [Data type] number [Description]
It is automatically updated only in case of tokenended and tokenwrapped fields. This variable contains the length of the string that is used to locate the ending point of the field itself. Although this value is obvious in case of fixed tokens, it can computed only at run-time in case a regular expression is used to terminate the field. For instance, a field whose value is email@domain.com (with ”<” as the beginning string and ”>” as the ending string), this variable is equal to 1.
[]
NetPDL Expressions [NetBee]
Description
http://www.nbee.org/doku.php?id=netpdl:expressions
14/1438042988860.88_20150728002308-00036-ip-10-236-191-2_609666358_29.json
7347d255_Developer_Program___WSDL_Files__Description
[File Name] manifest.wsdl [Description]
Interface definitions related to Manifest services
[]
Canada Post Developer Program – WSDL Files
Description
https://www.canadapost.ca/cpo/mc/business/productsservices/developers/soap/wsdlfiles.jsf
14/1438042988860.88_20150728002308-00254-ip-10-236-191-2_901224281_0.json
7347d255_Developer_Program___WSDL_Files__Description
[File Name] artifact.wsdl [Description]
Interface definitions to retrieve labels and other documents. Important: Needed for contract and non-contract shipping and for manifest services and authorized returns.
[]
Canada Post Developer Program – WSDL Files
Description
https://www.canadapost.ca/cpo/mc/business/productsservices/developers/soap/wsdlfiles.jsf
14/1438042988860.88_20150728002308-00254-ip-10-236-191-2_901224281_0.json
7347d255_Developer_Program___WSDL_Files__Description
[File Name] rating.wsdl [Description]
Interface definitions for Rating web services
[]
Canada Post Developer Program – WSDL Files
Description
https://www.canadapost.ca/cpo/mc/business/productsservices/developers/soap/wsdlfiles.jsf
14/1438042988860.88_20150728002308-00254-ip-10-236-191-2_901224281_0.json
7347d255_Developer_Program___WSDL_Files__Description
[File Name] shipment.wsdl [Description]
Interface definitions for Contract Shipping web services
[]
Canada Post Developer Program – WSDL Files
Description
https://www.canadapost.ca/cpo/mc/business/productsservices/developers/soap/wsdlfiles.jsf
14/1438042988860.88_20150728002308-00254-ip-10-236-191-2_901224281_0.json
7347d255_Developer_Program___WSDL_Files__Description
[File Name] ncshipment.wsdl [Description]
Interface definitions for Non-Contract Shipping web services
[]
Canada Post Developer Program – WSDL Files
Description
https://www.canadapost.ca/cpo/mc/business/productsservices/developers/soap/wsdlfiles.jsf
14/1438042988860.88_20150728002308-00254-ip-10-236-191-2_901224281_0.json
7347d255_Developer_Program___WSDL_Files__Description
[File Name] track.wsdl [Description]
Interface definitions for Tracking web services
[]
Canada Post Developer Program – WSDL Files
Description
https://www.canadapost.ca/cpo/mc/business/productsservices/developers/soap/wsdlfiles.jsf
14/1438042988860.88_20150728002308-00254-ip-10-236-191-2_901224281_0.json
7347d255_Developer_Program___WSDL_Files__Description
[File Name] pickup.wsdl [Description]
Interface definitions for Pickup Availability web services
[]
Canada Post Developer Program – WSDL Files
Description
https://www.canadapost.ca/cpo/mc/business/productsservices/developers/soap/wsdlfiles.jsf
14/1438042988860.88_20150728002308-00254-ip-10-236-191-2_901224281_0.json
7347d255_Developer_Program___WSDL_Files__Description
[File Name] postoffice.wsdl [Description]
Interface definitions for Find a Post Office web services
[]
Canada Post Developer Program – WSDL Files
Description
https://www.canadapost.ca/cpo/mc/business/productsservices/developers/soap/wsdlfiles.jsf
14/1438042988860.88_20150728002308-00254-ip-10-236-191-2_901224281_0.json
7347d255_Developer_Program___WSDL_Files__Description
[File Name] customerinfo.wsdl [Description]
Interface definitions for Get Customer Information and for Get MOBO customer Information web services
[]
Canada Post Developer Program – WSDL Files
Description
https://www.canadapost.ca/cpo/mc/business/productsservices/developers/soap/wsdlfiles.jsf
14/1438042988860.88_20150728002308-00254-ip-10-236-191-2_901224281_0.json
7347d255_Developer_Program___WSDL_Files__Description
[File Name] authreturn.wsdl [Description]
Interface definitions for Authorized Return web services
[]
Canada Post Developer Program – WSDL Files
Description
https://www.canadapost.ca/cpo/mc/business/productsservices/developers/soap/wsdlfiles.jsf
14/1438042988860.88_20150728002308-00254-ip-10-236-191-2_901224281_0.json
7347d255_Developer_Program___WSDL_Files__Description
[File Name] openreturn.wsdl [Description]
Interface definitions for Open Return web services
[]
Canada Post Developer Program – WSDL Files
Description
https://www.canadapost.ca/cpo/mc/business/productsservices/developers/soap/wsdlfiles.jsf
14/1438042988860.88_20150728002308-00254-ip-10-236-191-2_901224281_0.json
7347d255_Developer_Program___WSDL_Files__Description
[File Name] merchantregistration.wsdl [Description]
Interface definitions for e-commerce platforms registering merchants for Canada Post shipping
[]
Canada Post Developer Program – WSDL Files
Description
https://www.canadapost.ca/cpo/mc/business/productsservices/developers/soap/wsdlfiles.jsf
14/1438042988860.88_20150728002308-00254-ip-10-236-191-2_901224281_0.json
7347d255_Developer_Program___WSDL_Files__Description
[File Name] serviceinfo.wsdl [Description]
Interface definitions for Service Info web services
[]
Canada Post Developer Program – WSDL Files
Description
https://www.canadapost.ca/cpo/mc/business/productsservices/developers/soap/wsdlfiles.jsf
14/1438042988860.88_20150728002308-00254-ip-10-236-191-2_901224281_0.json
aafba2a1_CSS_Syntax__Description
[Property] font [Values] font-style font-variant font-weight font-size/line-height font-family caption icon menu message-box small-caption status-bar [NN] 4.0 [IE] 4.0 [W3C] CSS1 [Description]
A shorthand property for setting all of the properties for a font in one declaration
[]
CSS Syntax
Description
http://www.groupasystems.com/html/css.htm
3/1438042988317.67_20150728002308-00269-ip-10-236-191-2_492448752_33.json
aafba2a1_CSS_Syntax__Description
[Property] font-family [Values] family-name generic-family [NN] 4.0 [IE] 3.0 [W3C] CSS1 [Description]
A prioritized list of font family names and/or generic family names for an element
[]
CSS Syntax
Description
http://www.groupasystems.com/html/css.htm
3/1438042988317.67_20150728002308-00269-ip-10-236-191-2_492448752_33.json
aafba2a1_CSS_Syntax__Description
[Property] font-size [Values] xx-small x-small small medium large x-large xx-large smaller larger length % [NN] 4.0 [IE] 3.0 [W3C] CSS1 [Description]
Sets the size of a font
[]
CSS Syntax
Description
http://www.groupasystems.com/html/css.htm
3/1438042988317.67_20150728002308-00269-ip-10-236-191-2_492448752_33.json
aafba2a1_CSS_Syntax__Description
[Property] font-size-adjust [Values] none number [W3C] CSS2 [Description]
Specifies an aspect value for an element that will preserve the x-height of the first-choice font
[]
CSS Syntax
Description
http://www.groupasystems.com/html/css.htm
3/1438042988317.67_20150728002308-00269-ip-10-236-191-2_492448752_33.json
aafba2a1_CSS_Syntax__Description
[Property] font-stretch [Values] normal wider narrower ultra-condensed extra-condensed condensed semi-condensed semi-expanded expanded extra-expanded ultra-expanded [W3C] CSS2 [Description]
Condenses or expands the current font-family
[]
CSS Syntax
Description
http://www.groupasystems.com/html/css.htm
3/1438042988317.67_20150728002308-00269-ip-10-236-191-2_492448752_33.json
aafba2a1_CSS_Syntax__Description
[Property] font-style [Values] normal italic oblique [NN] 4.0 [IE] 4.0 [W3C] CSS1 [Description]
Sets the style of the font
[]
CSS Syntax
Description
http://www.groupasystems.com/html/css.htm
3/1438042988317.67_20150728002308-00269-ip-10-236-191-2_492448752_33.json
aafba2a1_CSS_Syntax__Description
[Property] font-variant [Values] normal small-caps [NN] 6.0 [IE] 4.0 [W3C] CSS1 [Description]
Displays text in a small-caps font or a normal font
[]
CSS Syntax
Description
http://www.groupasystems.com/html/css.htm
3/1438042988317.67_20150728002308-00269-ip-10-236-191-2_492448752_33.json
aafba2a1_CSS_Syntax__Description
[Property] font-weight [Values] normal bold bolder lighter 100 200 300 400 500 600 700 800 900 [NN] 4.0 [IE] 4.0 [W3C] CSS1 [Description]
Sets the weight of a font
[]
CSS Syntax
Description
http://www.groupasystems.com/html/css.htm
3/1438042988317.67_20150728002308-00269-ip-10-236-191-2_492448752_33.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] Social, Promotions, Updates, Forums (1) [Inbox by GMail] Travel, Purchases, Finances, Social, Updates, Forums, Promos, Low Priority (2) [Comments] As conversations are a collection of related messages, system categories are a collection of related conversations. [Function]
Auto-Organization
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] n/a [Inbox by GMail] Bundles (label+filter) (3) [Comments] Gmail does not have user-defined categories although the Priority Inbox allows for the display of a label which could be assigned with a filter (like a user-defined bundle). [Function]
User-Defined Organization
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] Tabs in the inbox [Inbox by GMail] Labels bundled in the inbox [Comments] Bundled labels can be system categories or user-defined. [Function]
Organization Display
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] Archive [Inbox by GMail] Done [Comments] Both result in the message being removed from the inbox. [Function]
Saving Messages
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] Unread, Stars, Important [Inbox by GMail] Pin [Comments] Marking messages that need further attention. [Function]
Marking Messages
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] n/a [Inbox by GMail] Snooze [Comments] Snooze hides a message until a specified date/time when it appears at the top of the inbox. [Function]
Delaying Messages
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] Classic, Important / Unread / Stared-First, Priority, Tabbed [Inbox by GMail] Unified (plus bundled labels) [Comments] The Inbox by Gmail inbox is functionally similar to the Gmail classic inbox, with optional bundled labels, although it looks very different. [Function]
Inbox Format
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] Report Spam [Inbox by GMail] Move to Spam [Comments] There is no one-click report spam in Inbox. [Function]
Spam Messages
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] Delete [Inbox by GMail] Move to Trash [Comments] There is no one-click delete in Inbox. [Function]
Deleting Messages
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] To tag and collect messages [Inbox by GMail] To collect messages [Comments] Labels are not displayed on messages in Inbox so they don't work as visual tags. [Function]
Labels
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] Label menu [Inbox by GMail] n/a [Comments] Inbox does not have a label command to assign multiple labels to a message. (4) [Function]
Add Label
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] Move-To menu [Inbox by GMail] Move-To menu [Comments] Removes current label (including inbox), adds new label, does not modify other labels. Inbox also marks the message as Done. [Function]
Move to Label
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] Settings->Filters, "filter messages like this" (from a message) [Inbox by GMail] from a message, from a label [Comments] In Inbox filters are used to create bundles (label+filter). (5) [Function]
Filter Creation
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] Archive, Mark as Read, Star, Label, Forward, Delete, Not Spam, Always/Never Mark Important, Categorize [Inbox by GMail] Bundle, Mark as Done [Comments] Most Gmail actions (like add a star) don't apply in Inbox (which doesn't have stars). In Inbox this creates a user-defined bundle (label+filter) although displaying it in the inbox is optional. [Function]
Filter Actions
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] Standard, Basic html, mobile/browser, mobile/app [Inbox by GMail] Inbox [Comments] Inbox has only one version for all platforms. [Function]
Versions
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] Font, Size, Bold / Italic / Underline, Foreground / Background-Color, Justification, Lists, Indent, Quoted Text, links [Inbox by GMail] Bold/Italic/Underline, Lists, Links [Comments] Inbox simple replies (not poped-out) have limited formatting using keyboard short-cuts. [Function]
Formatting
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
f4367c1a_Gmail_help_and_information__Function
[Gmail] Local file upload, Drive, Image, Link, Emoticon [Inbox by GMail] Local file upload, Link [Comments] Both support drag-and-drop: single image inline, multiple images or other file types attached. [Function]
Attachments
[]
Gmail help and information
Function
http://gmail-tips.blogspot.com/
3/1438042988250.59_20150728002308-00124-ip-10-236-191-2_108704247_0.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] min [Default] 0 [Description]
Minimum number of connections that will always be open to the backend server.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] max [Default] 1...n [Description]
Hard Maximum number of connections that will be allowed to the backend server. The default for a Hard Maximum for the number of connections is the number of threads per process in the active MPM. In the Prefork MPM, this is always 1, while with the Worker MPM it is controlled by the ThreadsPerChild. Apache will never create more than the Hard Maximum connections to the backend server.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] smax [Default] max [Description]
Upto the Soft Maximum number of connections will be created on demand. Any connections above smax are subject to a time to live or ttl.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] acquire [Default] - [Description]
If set this will be the maximum time to wait for a free connection in the connection pool, in milliseconds. If there are no free connections in the pool the Apache will return SERVER_BUSY status to the client.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] connectiontimeout [Default] timeout [Description]
Connect timeout in seconds. The number of seconds Apache waits for the creation of a connection to the backend to complete. By adding a postfix of ms the timeout can be also set in milliseconds.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] disablereuse [Default] Off [Description]
This parameter should be used when you want to force mod_proxy to immediately close a connection to the backend after being used, and thus, disable its persistent connection and pool for that backend. This helps in various situations where a firewall between Apache and the backend server (regardless of protocol) tends to silently drop connections or when backends themselves may be under round- robin DNS. To disable connection pooling reuse, set this property value to On.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] flushpackets [Default] off [Description]
Determines whether the proxy module will auto-flush the output brigade after each "chunk" of data. 'off' means that it will flush only when needed, 'on' means after each chunk is sent and 'auto' means poll/wait for a period of time and flush if no input has been received for 'flushwait' milliseconds. Currently this is in effect only for AJP.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] flushwait [Default] 10 [Description]
The time to wait for additional input, in milliseconds, before flushing the output brigade if 'flushpackets' is 'auto'.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] keepalive [Default] Off [Description]
This parameter should be used when you have a firewall between your Apache and the backend server, who tend to drop inactive connections. This flag will tell the Operating System to send KEEP_ALIVE messages on inactive connections (interval depends on global OS settings, generally 120ms), and thus prevent the firewall to drop the connection. To enable keepalive set this property value to On.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] lbset [Default] 0 [Description]
Sets the load balancer cluster set that the worker is a member of. The load balancer will try all members of a lower numbered lbset before trying higher numbered ones.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] ping [Default] 0 [Description]
Ping property tells webserver to send a CPING request on ajp13 connection before forwarding a request. The parameter is the delay in seconds to wait for the CPONG reply. This features has been added to avoid problem with hung and busy Tomcat's and require ajp13 ping/pong support which has been implemented on Tomcat 3.3.2+, 4.1.28+ and 5.0.13+. This will increase the network traffic during the normal operation which could be an issue, but it will lower the traffic in case some of the cluster nodes are down or busy. Currently this has an effect only for AJP. By adding a postfix of ms the delay can be also set in milliseconds.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] loadfactor [Default] 1 [Description]
Worker load factor. Used with BalancerMember. It is a number between 1 and 100 and defines the normalized weighted load applied to the worker.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] redirect [Default] - [Description]
Redirection Route of the worker. This value is usually set dynamically to enable safe removal of the node from the cluster. If set all requests without session id will be redirected to the BalancerMember that has route parametar equal as this value.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] retry [Default] 60 [Description]
Connection pool worker retry timeout in seconds. If the connection pool worker to the backend server is in the error state, Apache will not forward any requests to that server until the timeout expires. This enables to shut down the backend server for maintenance, and bring it back online later. A value of 0 means always retry workers in an error state with no timeout.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] route [Default] - [Description]
Route of the worker when used inside load balancer. The route is a value appended to session id.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] status [Default] - [Description]
Single letter value defining the initial status of this worker: 'D' is disabled, 'S' is stopped, 'I' is ignore-errors, 'H' is hot-standby and 'E' is in an error state. Status can be set (which is the default) by prepending with '+' or cleared by prepending with '-'. Thus, a setting of 'S-E' sets this worker to Stopped and clears the in-error flag.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] timeout [Default] ProxyTimeout [Description]
Connection timeout in seconds. The number of seconds Apache waits for data sent by / to the backend.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
6dd493ff_mod_proxy___Apache_HTTP_Server__Description
[Parameter] ttl [Default] - [Description]
Time To Live for the inactive connections above the smax connections in seconds. Apache will close all connections that has not been used inside that time period.
[]
mod_proxy - Apache HTTP Server
Description
http://www.softworksroes.com/manual/de/mod/mod_proxy.html
3/1438042988250.59_20150728002308-00050-ip-10-236-191-2_727575793_14.json
377b5012_User_Guide___Language_Features__Description
[Field] this code [Type] Text [Description]
The C# or VB.net code to execute.
[]
SharePoint Workflow Power Pack User Guide - Language Features
Description
http://blog.muhimbi.com/2009/12/workflow-power-pack-user-guide-language.html
3/1438042988317.67_20150728002308-00188-ip-10-236-191-2_30506959_0.json
377b5012_User_Guide___Language_Features__Description
[Field] Language [Type] C# or VB [Description]
The language the code is written in.
[]
SharePoint Workflow Power Pack User Guide - Language Features
Description
http://blog.muhimbi.com/2009/12/workflow-power-pack-user-guide-language.html
3/1438042988317.67_20150728002308-00188-ip-10-236-191-2_30506959_0.json
377b5012_User_Guide___Language_Features__Description
[Field] parameter 1 [Type] Object [Description]
An optional parameter to pass to the workflow.
[]
SharePoint Workflow Power Pack User Guide - Language Features
Description
http://blog.muhimbi.com/2009/12/workflow-power-pack-user-guide-language.html
3/1438042988317.67_20150728002308-00188-ip-10-236-191-2_30506959_0.json
377b5012_User_Guide___Language_Features__Description
[Field] parameter 2 [Type] Object [Description]
Another optional parameter to pass to the workflow.
[]
SharePoint Workflow Power Pack User Guide - Language Features
Description
http://blog.muhimbi.com/2009/12/workflow-power-pack-user-guide-language.html
3/1438042988317.67_20150728002308-00188-ip-10-236-191-2_30506959_0.json
377b5012_User_Guide___Language_Features__Description
[Field] this variable [Type] Object [Description]
An optional workflow parameter to fill with the result.
[]
SharePoint Workflow Power Pack User Guide - Language Features
Description
http://blog.muhimbi.com/2009/12/workflow-power-pack-user-guide-language.html
3/1438042988317.67_20150728002308-00188-ip-10-236-191-2_30506959_0.json
377b5012_User_Guide___Language_Features__Description
[Field] Enter an optional comment [Type] Text [Description]
An optional summary of what the code does.
[]
SharePoint Workflow Power Pack User Guide - Language Features
Description
http://blog.muhimbi.com/2009/12/workflow-power-pack-user-guide-language.html
3/1438042988317.67_20150728002308-00188-ip-10-236-191-2_30506959_0.json
f352a4d5_con_el_Profesor__John_Orellana__Value
[Attribute] class [Description] Specifies a classname for an element [DTD] STF [Value]
classname
[ [ "c", "l", "a", "s", "s", "n", "a", "m", "e" ], [ "r", "t", "l", " ", "l", "t", "r" ], [ "i", "d" ], [ "l", "a", "n", "g", "u", "a", "g", "e", "_", "c", "o", "d", "e" ], [ "s", "t", "y", "l", "e", "_", "d", "e", "f", "i", "n", "i", "t", "i", "o", "n" ], [ "t", "e", "x", "t" ] ]
CSS_CAPAS_J_VELASCO | programacion 3 con el Profesor: John Orellana
Value
https://csscapasjvelasco.wordpress.com/
3/1438042988317.67_20150728002308-00272-ip-10-236-191-2_847502580_1.json
f352a4d5_con_el_Profesor__John_Orellana__Value
[Attribute] dir [Description] Specifies the text direction for the content in an element [DTD] STF [Value]
rtl ltr
[ [ "c", "l", "a", "s", "s", "n", "a", "m", "e" ], [ "r", "t", "l", " ", "l", "t", "r" ], [ "i", "d" ], [ "l", "a", "n", "g", "u", "a", "g", "e", "_", "c", "o", "d", "e" ], [ "s", "t", "y", "l", "e", "_", "d", "e", "f", "i", "n", "i", "t", "i", "o", "n" ], [ "t", "e", "x", "t" ] ]
CSS_CAPAS_J_VELASCO | programacion 3 con el Profesor: John Orellana
Value
https://csscapasjvelasco.wordpress.com/
3/1438042988317.67_20150728002308-00272-ip-10-236-191-2_847502580_1.json
f352a4d5_con_el_Profesor__John_Orellana__Value
[Attribute] id [Description] Specifies a unique id for an element [DTD] STF [Value]
id
[ [ "c", "l", "a", "s", "s", "n", "a", "m", "e" ], [ "r", "t", "l", " ", "l", "t", "r" ], [ "i", "d" ], [ "l", "a", "n", "g", "u", "a", "g", "e", "_", "c", "o", "d", "e" ], [ "s", "t", "y", "l", "e", "_", "d", "e", "f", "i", "n", "i", "t", "i", "o", "n" ], [ "t", "e", "x", "t" ] ]
CSS_CAPAS_J_VELASCO | programacion 3 con el Profesor: John Orellana
Value
https://csscapasjvelasco.wordpress.com/
3/1438042988317.67_20150728002308-00272-ip-10-236-191-2_847502580_1.json
f352a4d5_con_el_Profesor__John_Orellana__Value
[Attribute] lang [Description] Specifies a language code for the content in an element [DTD] STF [Value]
language_code
[ [ "c", "l", "a", "s", "s", "n", "a", "m", "e" ], [ "r", "t", "l", " ", "l", "t", "r" ], [ "i", "d" ], [ "l", "a", "n", "g", "u", "a", "g", "e", "_", "c", "o", "d", "e" ], [ "s", "t", "y", "l", "e", "_", "d", "e", "f", "i", "n", "i", "t", "i", "o", "n" ], [ "t", "e", "x", "t" ] ]
CSS_CAPAS_J_VELASCO | programacion 3 con el Profesor: John Orellana
Value
https://csscapasjvelasco.wordpress.com/
3/1438042988317.67_20150728002308-00272-ip-10-236-191-2_847502580_1.json
f352a4d5_con_el_Profesor__John_Orellana__Value
[Attribute] style [Description] Specifies an inline style for an element [DTD] STF [Value]
style_definition
[ [ "c", "l", "a", "s", "s", "n", "a", "m", "e" ], [ "r", "t", "l", " ", "l", "t", "r" ], [ "i", "d" ], [ "l", "a", "n", "g", "u", "a", "g", "e", "_", "c", "o", "d", "e" ], [ "s", "t", "y", "l", "e", "_", "d", "e", "f", "i", "n", "i", "t", "i", "o", "n" ], [ "t", "e", "x", "t" ] ]
CSS_CAPAS_J_VELASCO | programacion 3 con el Profesor: John Orellana
Value
https://csscapasjvelasco.wordpress.com/
3/1438042988317.67_20150728002308-00272-ip-10-236-191-2_847502580_1.json
f352a4d5_con_el_Profesor__John_Orellana__Value
[Attribute] title [Description] Specifies extra information about an element [DTD] STF [Value]
text
[ [ "c", "l", "a", "s", "s", "n", "a", "m", "e" ], [ "r", "t", "l", " ", "l", "t", "r" ], [ "i", "d" ], [ "l", "a", "n", "g", "u", "a", "g", "e", "_", "c", "o", "d", "e" ], [ "s", "t", "y", "l", "e", "_", "d", "e", "f", "i", "n", "i", "t", "i", "o", "n" ], [ "t", "e", "x", "t" ] ]
CSS_CAPAS_J_VELASCO | programacion 3 con el Profesor: John Orellana
Value
https://csscapasjvelasco.wordpress.com/
3/1438042988317.67_20150728002308-00272-ip-10-236-191-2_847502580_1.json
f352a4d5_con_el_Profesor__John_Orellana__Value
[Attribute] xml:lang [Description] Specifies a language code for the content in an element, in XHTML documents [DTD] STF [Value]
language_code
[ [ "c", "l", "a", "s", "s", "n", "a", "m", "e" ], [ "r", "t", "l", " ", "l", "t", "r" ], [ "i", "d" ], [ "l", "a", "n", "g", "u", "a", "g", "e", "_", "c", "o", "d", "e" ], [ "s", "t", "y", "l", "e", "_", "d", "e", "f", "i", "n", "i", "t", "i", "o", "n" ], [ "t", "e", "x", "t" ] ]
CSS_CAPAS_J_VELASCO | programacion 3 con el Profesor: John Orellana
Value
https://csscapasjvelasco.wordpress.com/
3/1438042988317.67_20150728002308-00272-ip-10-236-191-2_847502580_1.json
2bab678b_CommentPlugin___TWiki___TWiki__Description
[Parameter] type [Default] "below" [Description]
This is the name of the template to use for this comment. Comment templates are defined in a TWiki template - see customization. If this attribute is not defined, the type is whatever is defined by COMMENTPLUGIN_DEFAULT_TYPE, either in this topic or in your WebPreferences.
[]
CommentPlugin < TWiki < TWiki
Description
http://www.mltframework.org/twiki/bin/view/TWiki/CommentPlugin
3/1438042988317.67_20150728002308-00314-ip-10-236-191-2_605035474_0.json
2bab678b_CommentPlugin___TWiki___TWiki__Description
[Parameter] default [Description]
Default text to put into the textarea of the prompt.
[]
CommentPlugin < TWiki < TWiki
Description
http://www.mltframework.org/twiki/bin/view/TWiki/CommentPlugin
3/1438042988317.67_20150728002308-00314-ip-10-236-191-2_605035474_0.json
2bab678b_CommentPlugin___TWiki___TWiki__Description
[Parameter] target [Default] the current topic [Description]
Name of the topic to add the comment to
[]
CommentPlugin < TWiki < TWiki
Description
http://www.mltframework.org/twiki/bin/view/TWiki/CommentPlugin
3/1438042988317.67_20150728002308-00314-ip-10-236-191-2_605035474_0.json
2bab678b_CommentPlugin___TWiki___TWiki__Description
[Parameter] location [Description]
Regular expression specifying the comment location in the target topic. Read carefully the CommentPlugin documentation!
[]
CommentPlugin < TWiki < TWiki
Description
http://www.mltframework.org/twiki/bin/view/TWiki/CommentPlugin
3/1438042988317.67_20150728002308-00314-ip-10-236-191-2_605035474_0.json
2bab678b_CommentPlugin___TWiki___TWiki__Description
[Parameter] mode [Description]
For compatibility with older versions only, synonymous with type
[]
CommentPlugin < TWiki < TWiki
Description
http://www.mltframework.org/twiki/bin/view/TWiki/CommentPlugin
3/1438042988317.67_20150728002308-00314-ip-10-236-191-2_605035474_0.json
2bab678b_CommentPlugin___TWiki___TWiki__Description
[Parameter] nonotify [Default] "off" [Description]
Set to "on" to disable change notification for target topics
[]
CommentPlugin < TWiki < TWiki
Description
http://www.mltframework.org/twiki/bin/view/TWiki/CommentPlugin
3/1438042988317.67_20150728002308-00314-ip-10-236-191-2_605035474_0.json
2bab678b_CommentPlugin___TWiki___TWiki__Description
[Parameter] noform [Default] "off" [Description]
Set to "on" to disable the automatic form that encloses your comment block - remember to insert tags yourself! See CommentPluginExamples#noform for an example.
[]
CommentPlugin < TWiki < TWiki
Description
http://www.mltframework.org/twiki/bin/view/TWiki/CommentPlugin
3/1438042988317.67_20150728002308-00314-ip-10-236-191-2_605035474_0.json
2bab678b_CommentPlugin___TWiki___TWiki__Description
[Parameter] nopost [Default] "off" [Description]
Set to "on" to disable insertion of the posted text into the topic.
[]
CommentPlugin < TWiki < TWiki
Description
http://www.mltframework.org/twiki/bin/view/TWiki/CommentPlugin
3/1438042988317.67_20150728002308-00314-ip-10-236-191-2_605035474_0.json
2bab678b_CommentPlugin___TWiki___TWiki__Description
[Parameter] remove [Default] "off" [Description]
Set to "on" to remove the comment prompt after the first time it is clicked.
[]
CommentPlugin < TWiki < TWiki
Description
http://www.mltframework.org/twiki/bin/view/TWiki/CommentPlugin
3/1438042988317.67_20150728002308-00314-ip-10-236-191-2_605035474_0.json
2bab678b_CommentPlugin___TWiki___TWiki__Description
[Parameter] button [Default] "Add comment" [Description]
Button label text
[]
CommentPlugin < TWiki < TWiki
Description
http://www.mltframework.org/twiki/bin/view/TWiki/CommentPlugin
3/1438042988317.67_20150728002308-00314-ip-10-236-191-2_605035474_0.json
2bab678b_CommentPlugin___TWiki___TWiki__Description
[Parameter] emailto [Description]
Send comment by email. Use comma "," to seperate multiple email addresses. This feature is disabled by default. To enable this feature, please set up "$TWiki::cfg{Plugins}{CommentPlugin}{EmailEnabled} = 1;".
[]
CommentPlugin < TWiki < TWiki
Description
http://www.mltframework.org/twiki/bin/view/TWiki/CommentPlugin
3/1438042988317.67_20150728002308-00314-ip-10-236-191-2_605035474_0.json
a53b5a33_ze__Part_2___A_way_of_Thinking__Take_the_shot
[Click!] If I’m shooting in the field I copy the card to my portable storage device. [Take the shot]
The card fills up
[]
Epic Edits » Archive » Organize: Part 2 – A way of Thinking
Take the shot
http://blog.epicedits.com/2008/01/16/organize-getting-to-grips-with-image-management-2/
3/1438042988250.59_20150728002308-00174-ip-10-236-191-2_29026906_0.json
a53b5a33_ze__Part_2___A_way_of_Thinking__Take_the_shot
[Click!] Create a new directory on my RAW hard disk drive and copy all files there from the card/portable HDD. [Take the shot]
Once at home
[]
Epic Edits » Archive » Organize: Part 2 – A way of Thinking
Take the shot
http://blog.epicedits.com/2008/01/16/organize-getting-to-grips-with-image-management-2/
3/1438042988250.59_20150728002308-00174-ip-10-236-191-2_29026906_0.json
a53b5a33_ze__Part_2___A_way_of_Thinking__Take_the_shot
[Click!] Copy all the files from the auto-generated sub-directories into the new top level directory and rename them all. [Take the shot]
In the new directory
[]
Epic Edits » Archive » Organize: Part 2 – A way of Thinking
Take the shot
http://blog.epicedits.com/2008/01/16/organize-getting-to-grips-with-image-management-2/
3/1438042988250.59_20150728002308-00174-ip-10-236-191-2_29026906_0.json
a53b5a33_ze__Part_2___A_way_of_Thinking__Take_the_shot
[Click!] Import all the files (into whatever RAW processing/image editing software you prefer), applying what metadata you can on the way. [Take the shot]
Load up Lightroom
[]
Epic Edits » Archive » Organize: Part 2 – A way of Thinking
Take the shot
http://blog.epicedits.com/2008/01/16/organize-getting-to-grips-with-image-management-2/
3/1438042988250.59_20150728002308-00174-ip-10-236-191-2_29026906_0.json
a53b5a33_ze__Part_2___A_way_of_Thinking__Take_the_shot
[Click!] Delete the duds, flag the picks and process. [Take the shot]
Process
[]
Epic Edits » Archive » Organize: Part 2 – A way of Thinking
Take the shot
http://blog.epicedits.com/2008/01/16/organize-getting-to-grips-with-image-management-2/
3/1438042988250.59_20150728002308-00174-ip-10-236-191-2_29026906_0.json
a53b5a33_ze__Part_2___A_way_of_Thinking__Take_the_shot
[Click!] Assign more detailed and descriptive metadata to the picks of the shoot. This is where I need to make the most improvements to my routine. [Take the shot]
Additional metadata
[]
Epic Edits » Archive » Organize: Part 2 – A way of Thinking
Take the shot
http://blog.epicedits.com/2008/01/16/organize-getting-to-grips-with-image-management-2/
3/1438042988250.59_20150728002308-00174-ip-10-236-191-2_29026906_0.json
a53b5a33_ze__Part_2___A_way_of_Thinking__Take_the_shot
[Click!] On my DERIV HDD, I prepare a new directory. [Take the shot]
Preparing for output
[]
Epic Edits » Archive » Organize: Part 2 – A way of Thinking
Take the shot
http://blog.epicedits.com/2008/01/16/organize-getting-to-grips-with-image-management-2/
3/1438042988250.59_20150728002308-00174-ip-10-236-191-2_29026906_0.json
a53b5a33_ze__Part_2___A_way_of_Thinking__Take_the_shot
[Click!] Using my preferred settings for the intended use, I export all the photos I want. [Take the shot]
Export
[]
Epic Edits » Archive » Organize: Part 2 – A way of Thinking
Take the shot
http://blog.epicedits.com/2008/01/16/organize-getting-to-grips-with-image-management-2/
3/1438042988250.59_20150728002308-00174-ip-10-236-191-2_29026906_0.json
a53b5a33_ze__Part_2___A_way_of_Thinking__Take_the_shot
[Click!] Upload, email, burn or otherwise disseminate the images. [Take the shot]
Share
[]
Epic Edits » Archive » Organize: Part 2 – A way of Thinking
Take the shot
http://blog.epicedits.com/2008/01/16/organize-getting-to-grips-with-image-management-2/
3/1438042988250.59_20150728002308-00174-ip-10-236-191-2_29026906_0.json