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
884de136_CVS_Command_Line_Reference__Action
[How to do it.] cvs diff -r1.4 -r1.7 filename (sample) [Action]
See the differneces between two checked-in revisions of a file
[]
CVS Command Line Reference
Action
http://www.badgertronics.com/writings/cvs/command-line.html
17/1438042987402.78_20150728002307-00286-ip-10-236-191-2_311066968_1.json
884de136_CVS_Command_Line_Reference__Action
[How to do it.] cvs annotate filename (sample) This is handy when you see a line of really bogus code and you want to know who was reponsible. [Action]
See who modified each line of a file, with what revision
[]
CVS Command Line Reference
Action
http://www.badgertronics.com/writings/cvs/command-line.html
17/1438042987402.78_20150728002307-00286-ip-10-236-191-2_311066968_1.json
884de136_CVS_Command_Line_Reference__Action
[How to do it.] Create the file cvs add filename cvs commit -m "Initial Revision" filename [Action]
Add a new file to the repository
[]
CVS Command Line Reference
Action
http://www.badgertronics.com/writings/cvs/command-line.html
17/1438042987402.78_20150728002307-00286-ip-10-236-191-2_311066968_1.json
884de136_CVS_Command_Line_Reference__Action
[How to do it.] Create the file cvs add -kb filename cvs commit -m "Initial Revision" filename A "binary file" won't have CVS keyword expansion performed on it. [Action]
Add a new binary file to the repository
[]
CVS Command Line Reference
Action
http://www.badgertronics.com/writings/cvs/command-line.html
17/1438042987402.78_20150728002307-00286-ip-10-236-191-2_311066968_1.json
884de136_CVS_Command_Line_Reference__Action
[How to do it.] cd to the directory's parent cvs add directoryname [Action]
Add a new directory to the project
[]
CVS Command Line Reference
Action
http://www.badgertronics.com/writings/cvs/command-line.html
17/1438042987402.78_20150728002307-00286-ip-10-236-191-2_311066968_1.json
884de136_CVS_Command_Line_Reference__Action
[How to do it.] cvs commit -m "check-in comment" filename If your check-in comment is more than one line, leave off the the -m option and use the editor that is brought up. [Action]
Checking a file's changes into the repository.
[]
CVS Command Line Reference
Action
http://www.badgertronics.com/writings/cvs/command-line.html
17/1438042987402.78_20150728002307-00286-ip-10-236-191-2_311066968_1.json
884de136_CVS_Command_Line_Reference__Action
[How to do it.] Remove the file cvs update filename [Action]
Revert a file to its last checked-in revision
[]
CVS Command Line Reference
Action
http://www.badgertronics.com/writings/cvs/command-line.html
17/1438042987402.78_20150728002307-00286-ip-10-236-191-2_311066968_1.json
884de136_CVS_Command_Line_Reference__Action
[How to do it.] cdto the project directory cvs import -m "project name" directory "ArsDigita" "initial-development" Note that this does not change directory into a CVS-controlled tree. You'll need to remove the tree and check it out. [Action]
Add a whole directory tree as a new project
[]
CVS Command Line Reference
Action
http://www.badgertronics.com/writings/cvs/command-line.html
17/1438042987402.78_20150728002307-00286-ip-10-236-191-2_311066968_1.json
884de136_CVS_Command_Line_Reference__Action
[How to do it.] cvs checkout project-name [Action]
Check out a whole project
[]
CVS Command Line Reference
Action
http://www.badgertronics.com/writings/cvs/command-line.html
17/1438042987402.78_20150728002307-00286-ip-10-236-191-2_311066968_1.json
884de136_CVS_Command_Line_Reference__Action
[How to do it.] cd to the parent directory of your tree cvs tag -R -b labelname This will use the currently-checked-out versions of the files as they exist in your directory tree. The -b argument means that this tag is a "branch" tag, meaning that someone can check out a new tree based on this tag and do development. If you omit the -b, the label will be a "sticky" tag, meaning that someone won't be able to check in new changes under that label. See the notes on Labeling and Branching [Action]
Label a tree for concurrent development
[]
CVS Command Line Reference
Action
http://www.badgertronics.com/writings/cvs/command-line.html
17/1438042987402.78_20150728002307-00286-ip-10-236-191-2_311066968_1.json
884de136_CVS_Command_Line_Reference__Action
[How to do it.] cvs checkout -r labelname projectname If labelname was created as a "branch" tag, then you can check in changes without affecting anyone using the development tip. Otherwise files are considered "sticky" and changes cannot be checked in. [Action]
Check out a tree based on a label
[]
CVS Command Line Reference
Action
http://www.badgertronics.com/writings/cvs/command-line.html
17/1438042987402.78_20150728002307-00286-ip-10-236-191-2_311066968_1.json
884de136_CVS_Command_Line_Reference__Action
[How to do it.] cvs admin -kb filename A "binary file" won't have CVS keyword expansion performed on it. [Action]
Change a file to be treated as a binary file after it's been added
[]
CVS Command Line Reference
Action
http://www.badgertronics.com/writings/cvs/command-line.html
17/1438042987402.78_20150728002307-00286-ip-10-236-191-2_311066968_1.json
a9b182a9_C_File_Handling___W3schools__Uses_Purpose
[Function] fopen [Uses/Purpose]
Opens a file.
[]
C File Handling ∼ W3schools
Uses/Purpose
http://www.w3schools.in/c/file-handling/
17/1438042987228.91_20150728002307-00288-ip-10-236-191-2_796077858_1.json
a9b182a9_C_File_Handling___W3schools__Uses_Purpose
[Function] fclose [Uses/Purpose]
Closes a file.
[]
C File Handling ∼ W3schools
Uses/Purpose
http://www.w3schools.in/c/file-handling/
17/1438042987228.91_20150728002307-00288-ip-10-236-191-2_796077858_1.json
a9b182a9_C_File_Handling___W3schools__Uses_Purpose
[Function] getc [Uses/Purpose]
Reads a character from a file
[]
C File Handling ∼ W3schools
Uses/Purpose
http://www.w3schools.in/c/file-handling/
17/1438042987228.91_20150728002307-00288-ip-10-236-191-2_796077858_1.json
a9b182a9_C_File_Handling___W3schools__Uses_Purpose
[Function] putc [Uses/Purpose]
Writes a character to a file
[]
C File Handling ∼ W3schools
Uses/Purpose
http://www.w3schools.in/c/file-handling/
17/1438042987228.91_20150728002307-00288-ip-10-236-191-2_796077858_1.json
a9b182a9_C_File_Handling___W3schools__Uses_Purpose
[Function] getw [Uses/Purpose]
Read integer
[]
C File Handling ∼ W3schools
Uses/Purpose
http://www.w3schools.in/c/file-handling/
17/1438042987228.91_20150728002307-00288-ip-10-236-191-2_796077858_1.json
a9b182a9_C_File_Handling___W3schools__Uses_Purpose
[Function] putw [Uses/Purpose]
Write integer
[]
C File Handling ∼ W3schools
Uses/Purpose
http://www.w3schools.in/c/file-handling/
17/1438042987228.91_20150728002307-00288-ip-10-236-191-2_796077858_1.json
a9b182a9_C_File_Handling___W3schools__Uses_Purpose
[Function] fprintf [Uses/Purpose]
Prints formatted output to a file
[]
C File Handling ∼ W3schools
Uses/Purpose
http://www.w3schools.in/c/file-handling/
17/1438042987228.91_20150728002307-00288-ip-10-236-191-2_796077858_1.json
a9b182a9_C_File_Handling___W3schools__Uses_Purpose
[Function] fscanf [Uses/Purpose]
Reads formatted input from a file
[]
C File Handling ∼ W3schools
Uses/Purpose
http://www.w3schools.in/c/file-handling/
17/1438042987228.91_20150728002307-00288-ip-10-236-191-2_796077858_1.json
a9b182a9_C_File_Handling___W3schools__Uses_Purpose
[Function] fgets [Uses/Purpose]
Read string of characters from file
[]
C File Handling ∼ W3schools
Uses/Purpose
http://www.w3schools.in/c/file-handling/
17/1438042987228.91_20150728002307-00288-ip-10-236-191-2_796077858_1.json
a9b182a9_C_File_Handling___W3schools__Uses_Purpose
[Function] fputs [Uses/Purpose]
Write string of characters to file
[]
C File Handling ∼ W3schools
Uses/Purpose
http://www.w3schools.in/c/file-handling/
17/1438042987228.91_20150728002307-00288-ip-10-236-191-2_796077858_1.json
a9b182a9_C_File_Handling___W3schools__Uses_Purpose
[Function] feof [Uses/Purpose]
Detects end-of-file marker in a file
[]
C File Handling ∼ W3schools
Uses/Purpose
http://www.w3schools.in/c/file-handling/
17/1438042987228.91_20150728002307-00288-ip-10-236-191-2_796077858_1.json
9e7af432_Centre___ShareInvestor_Station_Appearance_Setting_Settings
[Description] Change the theme of the application. [Settings]
Theme Templates
[ [ "T", "h", "e", "m", "e", " ", "T", "e", "m", "p", "l", "a", "t", "e", "s" ], [ "C", "o", "l", "o", "r", "s" ], [ "F", "o", "n", "t", "s" ], [ "H", "o", "r", "i", "z", "o", "n", "t", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "V", "e", "r", "t", "i", "c", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "H", "i", "g", "h", "l", "i", "g", "h", "t", " ", "A", "l", "w", "a", "y", "s" ], [ "F", "r", "e", "e", "z", "e", " ", "F", "i", "r", "s", "t", " ", "T", "h", "r", "e", "e", " ", "C", "o", "l", "u", "m", "n", "s" ], [ "T", "i", "c", "k", "e", "r", " ", "M", "o", "d", "e", " ", "C", "a", "p", "t", "i", "o", "n", " ", "B", "u", "t", "t", "o", "n" ], [ "A", "d", "v", "a", "n", "c", "e", " ", "D", "o", "c", "k", "i", "n", "g" ] ]
Help Centre - ShareInvestor Station
Settings
http://www.shareinvestor.com/help/settings-appearance-station.html
17/1438042987402.78_20150728002307-00006-ip-10-236-191-2_699011951_0.json
9e7af432_Centre___ShareInvestor_Station_Appearance_Setting_Settings
[Description] Change display layout color. [Settings]
Colors
[ [ "T", "h", "e", "m", "e", " ", "T", "e", "m", "p", "l", "a", "t", "e", "s" ], [ "C", "o", "l", "o", "r", "s" ], [ "F", "o", "n", "t", "s" ], [ "H", "o", "r", "i", "z", "o", "n", "t", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "V", "e", "r", "t", "i", "c", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "H", "i", "g", "h", "l", "i", "g", "h", "t", " ", "A", "l", "w", "a", "y", "s" ], [ "F", "r", "e", "e", "z", "e", " ", "F", "i", "r", "s", "t", " ", "T", "h", "r", "e", "e", " ", "C", "o", "l", "u", "m", "n", "s" ], [ "T", "i", "c", "k", "e", "r", " ", "M", "o", "d", "e", " ", "C", "a", "p", "t", "i", "o", "n", " ", "B", "u", "t", "t", "o", "n" ], [ "A", "d", "v", "a", "n", "c", "e", " ", "D", "o", "c", "k", "i", "n", "g" ] ]
Help Centre - ShareInvestor Station
Settings
http://www.shareinvestor.com/help/settings-appearance-station.html
17/1438042987402.78_20150728002307-00006-ip-10-236-191-2_699011951_0.json
9e7af432_Centre___ShareInvestor_Station_Appearance_Setting_Settings
[Description] Change Font Type, Font Style and Font Size. [Settings]
Fonts
[ [ "T", "h", "e", "m", "e", " ", "T", "e", "m", "p", "l", "a", "t", "e", "s" ], [ "C", "o", "l", "o", "r", "s" ], [ "F", "o", "n", "t", "s" ], [ "H", "o", "r", "i", "z", "o", "n", "t", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "V", "e", "r", "t", "i", "c", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "H", "i", "g", "h", "l", "i", "g", "h", "t", " ", "A", "l", "w", "a", "y", "s" ], [ "F", "r", "e", "e", "z", "e", " ", "F", "i", "r", "s", "t", " ", "T", "h", "r", "e", "e", " ", "C", "o", "l", "u", "m", "n", "s" ], [ "T", "i", "c", "k", "e", "r", " ", "M", "o", "d", "e", " ", "C", "a", "p", "t", "i", "o", "n", " ", "B", "u", "t", "t", "o", "n" ], [ "A", "d", "v", "a", "n", "c", "e", " ", "D", "o", "c", "k", "i", "n", "g" ] ]
Help Centre - ShareInvestor Station
Settings
http://www.shareinvestor.com/help/settings-appearance-station.html
17/1438042987402.78_20150728002307-00006-ip-10-236-191-2_699011951_0.json
9e7af432_Centre___ShareInvestor_Station_Appearance_Setting_Settings
[Description] Show/Hide horizontal grid lines. [Settings]
Horizontal Grid Line
[ [ "T", "h", "e", "m", "e", " ", "T", "e", "m", "p", "l", "a", "t", "e", "s" ], [ "C", "o", "l", "o", "r", "s" ], [ "F", "o", "n", "t", "s" ], [ "H", "o", "r", "i", "z", "o", "n", "t", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "V", "e", "r", "t", "i", "c", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "H", "i", "g", "h", "l", "i", "g", "h", "t", " ", "A", "l", "w", "a", "y", "s" ], [ "F", "r", "e", "e", "z", "e", " ", "F", "i", "r", "s", "t", " ", "T", "h", "r", "e", "e", " ", "C", "o", "l", "u", "m", "n", "s" ], [ "T", "i", "c", "k", "e", "r", " ", "M", "o", "d", "e", " ", "C", "a", "p", "t", "i", "o", "n", " ", "B", "u", "t", "t", "o", "n" ], [ "A", "d", "v", "a", "n", "c", "e", " ", "D", "o", "c", "k", "i", "n", "g" ] ]
Help Centre - ShareInvestor Station
Settings
http://www.shareinvestor.com/help/settings-appearance-station.html
17/1438042987402.78_20150728002307-00006-ip-10-236-191-2_699011951_0.json
9e7af432_Centre___ShareInvestor_Station_Appearance_Setting_Settings
[Description] Show/Hide vertical grid lines. [Settings]
Vertical Grid Line
[ [ "T", "h", "e", "m", "e", " ", "T", "e", "m", "p", "l", "a", "t", "e", "s" ], [ "C", "o", "l", "o", "r", "s" ], [ "F", "o", "n", "t", "s" ], [ "H", "o", "r", "i", "z", "o", "n", "t", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "V", "e", "r", "t", "i", "c", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "H", "i", "g", "h", "l", "i", "g", "h", "t", " ", "A", "l", "w", "a", "y", "s" ], [ "F", "r", "e", "e", "z", "e", " ", "F", "i", "r", "s", "t", " ", "T", "h", "r", "e", "e", " ", "C", "o", "l", "u", "m", "n", "s" ], [ "T", "i", "c", "k", "e", "r", " ", "M", "o", "d", "e", " ", "C", "a", "p", "t", "i", "o", "n", " ", "B", "u", "t", "t", "o", "n" ], [ "A", "d", "v", "a", "n", "c", "e", " ", "D", "o", "c", "k", "i", "n", "g" ] ]
Help Centre - ShareInvestor Station
Settings
http://www.shareinvestor.com/help/settings-appearance-station.html
17/1438042987402.78_20150728002307-00006-ip-10-236-191-2_699011951_0.json
9e7af432_Centre___ShareInvestor_Station_Appearance_Setting_Settings
[Description] Remember last highlight rows. [Settings]
Highlight Always
[ [ "T", "h", "e", "m", "e", " ", "T", "e", "m", "p", "l", "a", "t", "e", "s" ], [ "C", "o", "l", "o", "r", "s" ], [ "F", "o", "n", "t", "s" ], [ "H", "o", "r", "i", "z", "o", "n", "t", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "V", "e", "r", "t", "i", "c", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "H", "i", "g", "h", "l", "i", "g", "h", "t", " ", "A", "l", "w", "a", "y", "s" ], [ "F", "r", "e", "e", "z", "e", " ", "F", "i", "r", "s", "t", " ", "T", "h", "r", "e", "e", " ", "C", "o", "l", "u", "m", "n", "s" ], [ "T", "i", "c", "k", "e", "r", " ", "M", "o", "d", "e", " ", "C", "a", "p", "t", "i", "o", "n", " ", "B", "u", "t", "t", "o", "n" ], [ "A", "d", "v", "a", "n", "c", "e", " ", "D", "o", "c", "k", "i", "n", "g" ] ]
Help Centre - ShareInvestor Station
Settings
http://www.shareinvestor.com/help/settings-appearance-station.html
17/1438042987402.78_20150728002307-00006-ip-10-236-191-2_699011951_0.json
9e7af432_Centre___ShareInvestor_Station_Appearance_Setting_Settings
[Description] Freeze first three columns of channels open in the Main Frame. [Settings]
Freeze First Three Columns
[ [ "T", "h", "e", "m", "e", " ", "T", "e", "m", "p", "l", "a", "t", "e", "s" ], [ "C", "o", "l", "o", "r", "s" ], [ "F", "o", "n", "t", "s" ], [ "H", "o", "r", "i", "z", "o", "n", "t", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "V", "e", "r", "t", "i", "c", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "H", "i", "g", "h", "l", "i", "g", "h", "t", " ", "A", "l", "w", "a", "y", "s" ], [ "F", "r", "e", "e", "z", "e", " ", "F", "i", "r", "s", "t", " ", "T", "h", "r", "e", "e", " ", "C", "o", "l", "u", "m", "n", "s" ], [ "T", "i", "c", "k", "e", "r", " ", "M", "o", "d", "e", " ", "C", "a", "p", "t", "i", "o", "n", " ", "B", "u", "t", "t", "o", "n" ], [ "A", "d", "v", "a", "n", "c", "e", " ", "D", "o", "c", "k", "i", "n", "g" ] ]
Help Centre - ShareInvestor Station
Settings
http://www.shareinvestor.com/help/settings-appearance-station.html
17/1438042987402.78_20150728002307-00006-ip-10-236-191-2_699011951_0.json
9e7af432_Centre___ShareInvestor_Station_Appearance_Setting_Settings
[Description] Show/Hide ticker mode caption button. [Settings]
Ticker Mode Caption Button
[ [ "T", "h", "e", "m", "e", " ", "T", "e", "m", "p", "l", "a", "t", "e", "s" ], [ "C", "o", "l", "o", "r", "s" ], [ "F", "o", "n", "t", "s" ], [ "H", "o", "r", "i", "z", "o", "n", "t", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "V", "e", "r", "t", "i", "c", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "H", "i", "g", "h", "l", "i", "g", "h", "t", " ", "A", "l", "w", "a", "y", "s" ], [ "F", "r", "e", "e", "z", "e", " ", "F", "i", "r", "s", "t", " ", "T", "h", "r", "e", "e", " ", "C", "o", "l", "u", "m", "n", "s" ], [ "T", "i", "c", "k", "e", "r", " ", "M", "o", "d", "e", " ", "C", "a", "p", "t", "i", "o", "n", " ", "B", "u", "t", "t", "o", "n" ], [ "A", "d", "v", "a", "n", "c", "e", " ", "D", "o", "c", "k", "i", "n", "g" ] ]
Help Centre - ShareInvestor Station
Settings
http://www.shareinvestor.com/help/settings-appearance-station.html
17/1438042987402.78_20150728002307-00006-ip-10-236-191-2_699011951_0.json
9e7af432_Centre___ShareInvestor_Station_Appearance_Setting_Settings
[Description] Show indication arrows for easier docking of pop-up windows. [Settings]
Advance Docking
[ [ "T", "h", "e", "m", "e", " ", "T", "e", "m", "p", "l", "a", "t", "e", "s" ], [ "C", "o", "l", "o", "r", "s" ], [ "F", "o", "n", "t", "s" ], [ "H", "o", "r", "i", "z", "o", "n", "t", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "V", "e", "r", "t", "i", "c", "a", "l", " ", "G", "r", "i", "d", " ", "L", "i", "n", "e" ], [ "H", "i", "g", "h", "l", "i", "g", "h", "t", " ", "A", "l", "w", "a", "y", "s" ], [ "F", "r", "e", "e", "z", "e", " ", "F", "i", "r", "s", "t", " ", "T", "h", "r", "e", "e", " ", "C", "o", "l", "u", "m", "n", "s" ], [ "T", "i", "c", "k", "e", "r", " ", "M", "o", "d", "e", " ", "C", "a", "p", "t", "i", "o", "n", " ", "B", "u", "t", "t", "o", "n" ], [ "A", "d", "v", "a", "n", "c", "e", " ", "D", "o", "c", "k", "i", "n", "g" ] ]
Help Centre - ShareInvestor Station
Settings
http://www.shareinvestor.com/help/settings-appearance-station.html
17/1438042987402.78_20150728002307-00006-ip-10-236-191-2_699011951_0.json
270e2736_up__University_of_Victoria__BC__Description
[Action] Zoom In (Zoom Mode) Zoom Out (Zoom Mode) [Default Shortcuts] =, + -,_ [Description]
Zooms the main view in or out a fixed amount. The zooming is relative to where the mouse is located. The amount of zooming depends on how long the keyboard or mouse button is pressed.
[]
Shrimp User Manual | The CHISEL Group, University of Victoria, BC
Description
http://thechiselgroup.org/shrimp-user-manual/
17/1438042987402.78_20150728002307-00022-ip-10-236-191-2_237247322_1.json
270e2736_up__University_of_Victoria__BC__Description
[Action] Magnify In Magnify Out [Default Shortcuts] Numpad + Numpad – [Description]
Zooms the main view in to the level of the node that is clicked on. If a node has no children then performing this zoom will show the contents of the node. This could be the source code, an embedded form, the node’s annotation, or the node’s attributes.
[]
Shrimp User Manual | The CHISEL Group, University of Victoria, BC
Description
http://thechiselgroup.org/shrimp-user-manual/
17/1438042987402.78_20150728002307-00022-ip-10-236-191-2_237247322_1.json
270e2736_up__University_of_Victoria__BC__Description
[Action] Fisheye In Fisheye Out [Default Shortcuts] F Shift F [Description]
Zooms the main view in or out using a fisheye lens. This will cause the selected node(s) to enlarge and the surrounding nodes to shrink when zooming in.
[]
Shrimp User Manual | The CHISEL Group, University of Victoria, BC
Description
http://thechiselgroup.org/shrimp-user-manual/
17/1438042987402.78_20150728002307-00022-ip-10-236-191-2_237247322_1.json
270e2736_up__University_of_Victoria__BC__Description
[Action] Zoom In (Any Mode)Zoom Out (Any Mode) [Default Shortcuts] Middle Mouse Button, X Shift+Middle Mouse Button, Z [Description]
Zooms the main view in or out using the currently selected navigation mode (Zoom, Magnify, or Fisheye) described above. To change the navigation mode use the drop down list located in the bottom right corner of the main Shrimp view.
[]
Shrimp User Manual | The CHISEL Group, University of Victoria, BC
Description
http://thechiselgroup.org/shrimp-user-manual/
17/1438042987402.78_20150728002307-00022-ip-10-236-191-2_237247322_1.json
270e2736_up__University_of_Victoria__BC__Description
[Action] Panning [Default Shortcuts] Keyboard Left, Right, Up, Down [Description]
Scrolls the main view left, right, up, or down.
[]
Shrimp User Manual | The CHISEL Group, University of Victoria, BC
Description
http://thechiselgroup.org/shrimp-user-manual/
17/1438042987402.78_20150728002307-00022-ip-10-236-191-2_237247322_1.json
270e2736_up__University_of_Victoria__BC__Description
[Action] Snapshot [Default Shortcuts] Shift F [Description]
Puts the current view into the filmstrip (Tools > Filmstrip). For more information about the filmstrip, see the Filmstrip section of this manual.
[]
Shrimp User Manual | The CHISEL Group, University of Victoria, BC
Description
http://thechiselgroup.org/shrimp-user-manual/
17/1438042987402.78_20150728002307-00022-ip-10-236-191-2_237247322_1.json
270e2736_up__University_of_Victoria__BC__Description
[Action] Hide Show All Hidden Nodes [Default Shortcuts] Del Shift Del [Description]
Hides the currently selected node(s). To show hidden nodes right click on the main view and choose Show All Hidden Nodes.
[]
Shrimp User Manual | The CHISEL Group, University of Victoria, BC
Description
http://thechiselgroup.org/shrimp-user-manual/
17/1438042987402.78_20150728002307-00022-ip-10-236-191-2_237247322_1.json
270e2736_up__University_of_Victoria__BC__Description
[Action] Grouping Ungrouping [Default Shortcuts] G Shift G [Description]
Groups (ungroups) the selected node(s). Grouped nodes will be collapsed into one node on the screen and any arcs will be redirected to/from the new grouped node. When performing a group you will be prompted to choose a new name and add an annotation (optional). A node can also be renamed independetly using the Rename option.
[]
Shrimp User Manual | The CHISEL Group, University of Victoria, BC
Description
http://thechiselgroup.org/shrimp-user-manual/
17/1438042987402.78_20150728002307-00022-ip-10-236-191-2_237247322_1.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] Left arrow [Mac Keystroke(s)] Left arrow [Result] Moves the viewer in the direction of the arrow. [Command]
Move left
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] Right arrow [Mac Keystroke(s)] Right arrow [Result] Moves the viewer in the direction of the arrow. [Command]
Move right
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] Up arrow [Mac Keystroke(s)] Up arrow [Result] Moves the viewer in the direction of the arrow. [Command]
Move up
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] Down arrow [Mac Keystroke(s)] Down arrow [Result] Moves the viewer in the direction of the arrow. [Command]
Move down
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] Shift + left arrow [Mac Keystroke(s)] Shift + left arrow [Result] Rotates the view clockwise. The earth spins counter-clockwise. [Command]
Rotate clockwise
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] Shift + right arrow [Mac Keystroke(s)] Shift + right arrow [Result] Rotates the view counter-clockwise. [Command]
Rotate counter-clockwise
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] CTRL + M [Mac Keystroke(s)] + M [Result] Displays or closes overview window. [Command]
Show/hide Overview window
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] Shift + left mouse button + drag down, Shift + down arrow [Mac Keystroke(s)] Shift + down arrow [Result] Tilts the viewer toward “horizon” view. [Command]
Tilt up
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] Shift + left mouse button + drag up, Shift + up arrow [Mac Keystroke(s)] Shift + up arrow [Result] Tilts the viewer toward “top-down” view. [Command]
Tilt down
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] CTRL + left mouse button + drag [Mac Keystroke(s)] + mouse button + drag [Result] Perspective points in another direction, as if you are turning your head up, down, left or right. [Command]
Look
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] Scroll wheel, + key, PgUp key [Mac Keystroke(s)] Scroll wheel, + key [Result] Zooms the viewer in. Tip: to use the ‘Page Up’ key, make sure ‘Num Lock’ on your keyboard is off. [Command]
Zoom in
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] Scroll wheel, – key (both keyboard and numpad), PgDn key [Mac Keystroke(s)] Scroll wheel, – key (both keyboard and numpad) [Result] Zooms the viewer out. Tip: to use the ‘Page Down’ key, make sure ‘Num Lock’ on your keyboard is off. [Command]
Zoom out
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] Right mouse button + drag up or down [Mac Keystroke(s)] CTRL + click + drag up or down [Result] Zooms the viewer in and automatically tilts your view as you approach ground level. [Command]
Zoom + automatic tilt
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] Spacebar [Mac Keystroke(s)] Spacebar [Result] When the viewer is in motion, stops movement [Command]
Stop current motion
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] n [Mac Keystroke(s)] n [Result] Rotates view so that view is ‘n‘orth-up. [Command]
Reset view to “north – up”
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] u [Mac Keystroke(s)] u [Result] Resets angle to view scene in “top-down” or “‘u‘p” mode. [Command]
Reset tilt to “top-down” view
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
c5dc810d_y_Viewer___Climate_Viewer_News__Command
[Windows/Linux Keystroke(s)] r [Mac Keystroke(s)] r [Result] ‘R‘esets angle to view “top-down” and rotates to “north-up” view. Use this feature to orient the earth in the center of the viewer. [Command]
Reset tilt and compass view to default
[]
Climate Viewer 3D Tutorial: Using the Google Earth Climate Change, Pollution, and Privacy Viewer | Climate Viewer News
Command
http://climateviewer.com/2013/12/16/climate-viewer-3d-tutorial-using-the-google-earth-climate-change-pollution-and-privacy-viewer/
17/1438042987402.78_20150728002307-00304-ip-10-236-191-2_47809884_0.json
6776457c_Terminology__Description
[Key Terminology] LSU GeauxShop [Description]
A leading strategic procurement and supplier enablement solution (provided by a company named SciQuest) that integrates customers with their suppliers to improve the procurement of goods and services.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Shopper [Description]
Individual who shops within LSU GeauxShop to select goods and services via catalogs or forms and submits their cart to a Requester for completion. Shoppers do not need to know or enter accounting information, but they can enter this information.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Requester [Description]
Individual who has all the capabilities of a Shopper and is required to enter the proper accounting information. When the Requester selects “place order” the cart is transformed into a purchase requisition (PR) and is either sent through the proper approval workflow or, if under $5,000, transformed into a purchase order and distributed to the vendor.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Approver [Description]
Individual that is responsible for ensuring the purchase requisition is allowable, allocable and reasonable for that account. This person determines if funds are available, allowable and appropriate for purchase on that account. Approvers can approve, return or reject the purchase requisition but cannot edit the purchase requisition.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Invoice Approver [Description]
Individual that is responsible for reviewing and approving all invoice documents for payment. Approval of the invoice signifies receipt of goods or services.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] PI Approver [Description]
Individual that is responsible for reviewing and approving invoice documents for payment on specific grant accounts. Approval of the invoice signifies receipt of goods or services.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Shopping Cart (Cart) [Description]
The first step in the purchasing process, the shopping cart, represents the current “wish list” of a user but is not submitted for approval. A user may manage and maintain multiple carts at the same time. Shopping cart information can be populated from any source (punch-out catalog, hosted catalog, non-catalog forms). Shopping carts are “assigned” to Requesters.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Purchase Requisition (Requisition, PR) [Description]
An electronic document that contains the shopping cart items, shipping information and accounting values. When a shopping cart is submitted into workflow, it is now considered a purchase requisition and has a purchase requisition (PR) number associated with it. The purchase requisition goes through the formal review and approval process. A requisition may contain multiple line items with multiple accounting distribution lines.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] PR Approval Workflow (Approvals) [Description]
The approval path that a requisition must follow in order to become a purchase order. The workflow is based on department permissions/authority, and custom rules such as State requirements or University Policies. A fully approved purchase requisition is automatically converted to a purchase order.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Purchase Order (PO) [Description]
The electronic document created when a requisition completes all approval steps. The PO is automatically transmitted to the supplier on a real time basis. Upon PO creation, an encumbrance (hold on funds) takes place in the LSU financial system to reflect that funds are currently committed.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Receiving [Description]
The formal process of entering an acknowledgement in LSU GeauxShop to indicate that goods were received (or services rendered) in accordance with the purchase order.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] XML Order / XML Invoice [Description]
Stands for: “Extensible Markup Language.” Refers to the electronic language that LSU GeauxShop utilizes to dispatch purchase orders to and receive Invoices from enabled suppliers. This expedites order processing and allows for processing efficiencies for both LSU and the supplier.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Invoice Workflow [Description]
In addition to workflow related to the upfront purchasing side, LSU GeauxShop allows for invoices to be sent to Accounts Payable and departmental users for approval based on select business rules and criteria. An invoice must be approved to complete invoice workflow and be sent to APS for payment.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] UNSPSC or Commodity Code [Description]
The category used to represent the type of product being purchased. LSU GeauxShop will support a custom list of United Nations Standard Products and Services Code (UNSPSC) categories. The accuracy of these categories is important for PR approval workflow and reporting.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Account String / Account Set / Account Codes [Description]
The accounting values used to designate funds to be used for a purchase or payment. The accounting structure is the same in LSU GeauxShop as in the LSU financial system/COA.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Hosted Catalog [Description]
A hosted catalog is a list of products (product information, images, and University pricing) provided by suppliers in LSU GeauxShop. This allows a user to search and shop easily across multiple catalogs and suppliers and add items to a cart with no additional data entry.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Punch-out catalog [Description]
Allows a user to connect to a supplier’s website from within LSU GeauxShop with no additional logins. This allows users to search and shop the supplier’s website (which provides University pricing), add items to a temporary cart in the supplier’s website and return these items to their LSU GeauxShop cart with no additional data entry.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Forms or Non-Catalog Forms [Description]
Custom requisition forms within the LSU GeauxShop are used to facilitate unique shopping processes such as Non-Catalog Orders, PPCS, Construction, Sole Source Orders, and AP payments such as Direct Charges. This functionality will be released in Phase 2.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Favorites [Description]
Allows a user to create lists of commonly purchased products/services in order to speed up the purchasing of these items.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] Document Search [Description]
Provides query capability for all GeauxShop shopping carts, requisitions, purchase orders, receipts and/or invoices.
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
6776457c_Terminology__Description
[Key Terminology] User Profile [Description]
The information and settings related to a specific user. Users can set up preferences that speed up their ongoing shopping experience such as ship-to address, default accounting codes and email preferences
[]
Terminology
Description
http://sites01.lsu.edu/wp/lsugeauxshop/questions/terminology/
17/1438042987402.78_20150728002307-00334-ip-10-236-191-2_215202359_0.json
61dfb7c9_Hibernate_support___User_Guide__Description
[Class] org.joda.time.contrib.hibernate.PersistentDateTimeTZ [SQL Column Type(s)] TIMESTAMP, VARCHAR [Description]
This persister uses two columns, to separately store the time value and its timezone
[]
Joda-Time-Hibernate – Java date and time API - Hibernate support - User Guide
Description
http://www.joda.org/joda-time-hibernate/userguide.html
17/1438042987402.78_20150728002307-00051-ip-10-236-191-2_536041096_0.json
61dfb7c9_Hibernate_support___User_Guide__Description
[Class] org.joda.time.contrib.hibernate.PersistentInstant [SQL Column Type(s)] TIMESTAMP [Description]
This persister uses one column to store the timestamp
[]
Joda-Time-Hibernate – Java date and time API - Hibernate support - User Guide
Description
http://www.joda.org/joda-time-hibernate/userguide.html
17/1438042987402.78_20150728002307-00051-ip-10-236-191-2_536041096_0.json
61dfb7c9_Hibernate_support___User_Guide__Description
[Class] org.joda.time.contrib.hibernate.PersistentInstantAsBigInt [SQL Column Type(s)] BIGINT [Description]
This persister uses one column to store the millisconds
[]
Joda-Time-Hibernate – Java date and time API - Hibernate support - User Guide
Description
http://www.joda.org/joda-time-hibernate/userguide.html
17/1438042987402.78_20150728002307-00051-ip-10-236-191-2_536041096_0.json
61dfb7c9_Hibernate_support___User_Guide__Description
[Class] org.joda.time.contrib.hibernate.PersistentInterval [SQL Column Type(s)] TIMESTAMP, TIMESTAMP [Description]
This persister uses two columns, to store the start and end of the interval
[]
Joda-Time-Hibernate – Java date and time API - Hibernate support - User Guide
Description
http://www.joda.org/joda-time-hibernate/userguide.html
17/1438042987402.78_20150728002307-00051-ip-10-236-191-2_536041096_0.json
61dfb7c9_Hibernate_support___User_Guide__Description
[Class] org.joda.time.contrib.hibernate.PersistentLocalTimeAsTime [SQL Column Type(s)] TIME [Description]
Depending on your Database you might loose the millisecond part
[]
Joda-Time-Hibernate – Java date and time API - Hibernate support - User Guide
Description
http://www.joda.org/joda-time-hibernate/userguide.html
17/1438042987402.78_20150728002307-00051-ip-10-236-191-2_536041096_0.json
61dfb7c9_Hibernate_support___User_Guide__Description
[Class] org.joda.time.contrib.hibernate.PersistentLocalTimeExact [SQL Column Type(s)] INTEGER [Description]
The milliseconds are stored as simple integer value, no information loss
[]
Joda-Time-Hibernate – Java date and time API - Hibernate support - User Guide
Description
http://www.joda.org/joda-time-hibernate/userguide.html
17/1438042987402.78_20150728002307-00051-ip-10-236-191-2_536041096_0.json
61dfb7c9_Hibernate_support___User_Guide__Description
[Class] org.joda.time.contrib.hibernate.PersistentLocalTimeAsString [SQL Column Type(s)] VARCHAR [Description]
Same as above, just uses a human readable representation. ISO8601 format - HH:mm:ss.SSSZ
[]
Joda-Time-Hibernate – Java date and time API - Hibernate support - User Guide
Description
http://www.joda.org/joda-time-hibernate/userguide.html
17/1438042987402.78_20150728002307-00051-ip-10-236-191-2_536041096_0.json
61dfb7c9_Hibernate_support___User_Guide__Description
[Class] org.joda.time.contrib.hibernate.PersistentDuration [SQL Column Type(s)] VARCHAR [Description]
The format is PTnS where n is the value
[]
Joda-Time-Hibernate – Java date and time API - Hibernate support - User Guide
Description
http://www.joda.org/joda-time-hibernate/userguide.html
17/1438042987402.78_20150728002307-00051-ip-10-236-191-2_536041096_0.json
61dfb7c9_Hibernate_support___User_Guide__Description
[Class] org.joda.time.contrib.hibernate.PersistentDurationAsMilliseconds [SQL Column Type(s)] BIGINT [Description]
Integer milliseconds
[]
Joda-Time-Hibernate – Java date and time API - Hibernate support - User Guide
Description
http://www.joda.org/joda-time-hibernate/userguide.html
17/1438042987402.78_20150728002307-00051-ip-10-236-191-2_536041096_0.json
61dfb7c9_Hibernate_support___User_Guide__Description
[Class] org.joda.time.contrib.hibernate.PersistentPeriod [SQL Column Type(s)] VARCHAR [Description]
The format is PnYnMnDTnHnMnS where n is the value
[]
Joda-Time-Hibernate – Java date and time API - Hibernate support - User Guide
Description
http://www.joda.org/joda-time-hibernate/userguide.html
17/1438042987402.78_20150728002307-00051-ip-10-236-191-2_536041096_0.json
14439d23_terate_through_the_grid_s_rows__Description
[Collection] GridControl.FixedHeaderRows [Description]
A list of all the fixed header rows of the grid. The fixed header rows are the rows found in the non-scrollable header section of the grid. This section will not scroll with the grid body.
[]
How to iterate through the grid's rows
Description
http://doc.xceedsoft.com/products/Xceedgrid/How_to_iterate_through_the_grid_s_rows.html
17/1438042987228.91_20150728002307-00023-ip-10-236-191-2_74241206_1.json
14439d23_terate_through_the_grid_s_rows__Description
[Collection] GridControl.HeaderRows [Description]
A list of all the non-fixed header rows of the grid. The header rows are the rows found in the header section of the grid, before the data rows and groups, and that scroll with the grid body.
[]
How to iterate through the grid's rows
Description
http://doc.xceedsoft.com/products/Xceedgrid/How_to_iterate_through_the_grid_s_rows.html
17/1438042987228.91_20150728002307-00023-ip-10-236-191-2_74241206_1.json
14439d23_terate_through_the_grid_s_rows__Description
[Collection] Group.HeaderRows [Description]
A list of all the header rows of the group. The header rows are the rows found in the header section of the group, before the data rows.
[]
How to iterate through the grid's rows
Description
http://doc.xceedsoft.com/products/Xceedgrid/How_to_iterate_through_the_grid_s_rows.html
17/1438042987228.91_20150728002307-00023-ip-10-236-191-2_74241206_1.json
14439d23_terate_through_the_grid_s_rows__Description
[Collection] Group.GetSortedDatarows [Description]
A collection of sorted data rows.
[]
How to iterate through the grid's rows
Description
http://doc.xceedsoft.com/products/Xceedgrid/How_to_iterate_through_the_grid_s_rows.html
17/1438042987228.91_20150728002307-00023-ip-10-236-191-2_74241206_1.json
14439d23_terate_through_the_grid_s_rows__Description
[Collection] Group.FooterRows [Description]
A list of all the footer rows of the group. The footer rows are the rows found in the footer section of the group, after the data rows.
[]
How to iterate through the grid's rows
Description
http://doc.xceedsoft.com/products/Xceedgrid/How_to_iterate_through_the_grid_s_rows.html
17/1438042987228.91_20150728002307-00023-ip-10-236-191-2_74241206_1.json
14439d23_terate_through_the_grid_s_rows__Description
[Collection] GridControl.DataRows or GridControl.GetSortedDataRows [Description]
A list of all the data rows in the grid.
[]
How to iterate through the grid's rows
Description
http://doc.xceedsoft.com/products/Xceedgrid/How_to_iterate_through_the_grid_s_rows.html
17/1438042987228.91_20150728002307-00023-ip-10-236-191-2_74241206_1.json
14439d23_terate_through_the_grid_s_rows__Description
[Collection] GridControl.FooterRows [Description]
A list of all the non-fixed footer rows of the grid. The footer rows are the rows found in the footer section of the grid, after the data rows and groups, and that scroll with the grid body.
[]
How to iterate through the grid's rows
Description
http://doc.xceedsoft.com/products/Xceedgrid/How_to_iterate_through_the_grid_s_rows.html
17/1438042987228.91_20150728002307-00023-ip-10-236-191-2_74241206_1.json
14439d23_terate_through_the_grid_s_rows__Description
[Collection] GridControl.FixedFooterRows [Description]
A list of all the fixed footer rows of the grid. The fixed footer rows are the rows found in the non-scrollable footer section of the grid. This section will not scroll with the grid body.
[]
How to iterate through the grid's rows
Description
http://doc.xceedsoft.com/products/Xceedgrid/How_to_iterate_through_the_grid_s_rows.html
17/1438042987228.91_20150728002307-00023-ip-10-236-191-2_74241206_1.json
f499a1c0_quences_in_Oracle__autonumber___Description
[Parameter] INCREMENT BY [Example] INCREMENT BY 1 [Description]
Specify the interval between sequence numbers. This integer value can be any positive or negative integer, but it cannot be 0. This value can have 28 or fewer digits. The absolute of this value must be less than the difference of MAXVALUE and MINVALUE. If this value is negative, then the sequence descends. If the increment is positive, then the sequence ascends. If you omit this clause, the interval defaults to 1.
[]
How to use sequences in Oracle (autonumber)
Description
http://www.oradev.com/oracle_sequence.jsp
17/1438042987402.78_20150728002307-00261-ip-10-236-191-2_617530152_7.json
f499a1c0_quences_in_Oracle__autonumber___Description
[Parameter] START WITH [Example] START WITH 1000 [Description]
Specify the first sequence number to be generated. Use this clause to start an ascending sequence at a value greater than its minimum or to start a descending sequence at a value less than its maximum. For ascending sequences, the default value is the minimum value of the sequence. For descending sequences, the default value is the maximum value of the sequence. This integer value can have 28 or fewer digits.
[]
How to use sequences in Oracle (autonumber)
Description
http://www.oradev.com/oracle_sequence.jsp
17/1438042987402.78_20150728002307-00261-ip-10-236-191-2_617530152_7.json
f499a1c0_quences_in_Oracle__autonumber___Description
[Parameter] MAXVALUE [Example] MAXVALUE 99999999 [Description]
Specify the maximum value the sequence can generate. This integer value can have 28 or fewer digits. MAXVALUE must be equal to or greater than START WITH and must be greater than MINVALUE.
[]
How to use sequences in Oracle (autonumber)
Description
http://www.oradev.com/oracle_sequence.jsp
17/1438042987402.78_20150728002307-00261-ip-10-236-191-2_617530152_7.json
f499a1c0_quences_in_Oracle__autonumber___Description
[Parameter] NOMAXVALUE [Example] NOMAXVALUE [Description]
Specify NOMAXVALUE to indicate a maximum value of 1 with 27 zeros for an ascending sequence or -1 for a descending sequence. This is the default.
[]
How to use sequences in Oracle (autonumber)
Description
http://www.oradev.com/oracle_sequence.jsp
17/1438042987402.78_20150728002307-00261-ip-10-236-191-2_617530152_7.json