path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
apps/report/css/report.css
malmostad/touch
.error { color:red; } .validateMessages { color:red; } .otherMessages { color:red; } #username { display:none; }
files/css/LoadingPage.css
bazgu/front-node
.LoadingPage { text-align: center; } .LoadingPage-aligner { display: inline-block; vertical-align: middle; height: 100%; } .LoadingPage-content { display: inline-block; vertical-align: middle; padding: 20px; background-color: white; }
2017w2/bar04.html
40423131/2017springcd_hw
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"></meta> <title>Three.js Solvespace Mesh</title> <script src="http://threejs.org/build/three.js"></script> <script src="http://hammerjs.github.io/dist/hammer.js"></script> <style type="text/css"> body { margin: 0; overflow: hidden; } </style> </head> <body> <script> </script> <script> window.devicePixelRatio = window.devicePixelRatio || 1; SolvespaceCamera = function(renderWidth, renderHeight, scale, up, right, offset) { THREE.Camera.call(this); this.type = 'SolvespaceCamera'; this.renderWidth = renderWidth; this.renderHeight = renderHeight; this.zoomScale = scale; /* Avoid namespace collision w/ THREE.Object.scale */ this.up = up; this.right = right; this.offset = offset; this.depthBias = 0; this.updateProjectionMatrix(); }; SolvespaceCamera.prototype = Object.create(THREE.Camera.prototype); SolvespaceCamera.prototype.constructor = SolvespaceCamera; SolvespaceCamera.prototype.updateProjectionMatrix = function() { var temp = new THREE.Matrix4(); var offset = new THREE.Matrix4().makeTranslation(this.offset.x, this.offset.y, this.offset.z); // Convert to right handed- do up cross right instead. var n = new THREE.Vector3().crossVectors(this.up, this.right); var rotate = new THREE.Matrix4().makeBasis(this.right, this.up, n); rotate.transpose(); /* FIXME: At some point we ended up using row-major. THREE.js wants column major. Scale/depth correct unaffected b/c diagonal matrices remain the same when transposed. makeTranslation also makes a column-major matrix. */ /* TODO: If we want perspective, we need an additional matrix here which will modify w for perspective divide. */ var scale = new THREE.Matrix4().makeScale(2 * this.zoomScale / this.renderWidth, 2 * this.zoomScale / this.renderHeight, this.zoomScale / 30000.0); temp.multiply(scale); temp.multiply(rotate); temp.multiply(offset); this.projectionMatrix.copy(temp); }; SolvespaceCamera.prototype.NormalizeProjectionVectors = function() { /* After rotating, up and right may no longer be orthogonal. However, their cross product will produce the correct rotated plane, and we can recover an orthogonal basis. */ var n = new THREE.Vector3().crossVectors(this.right, this.up); this.up = new THREE.Vector3().crossVectors(n, this.right); this.right.normalize(); this.up.normalize(); }; SolvespaceCamera.prototype.rotate = function(right, up) { var oldRight = new THREE.Vector3().copy(this.right).normalize(); var oldUp = new THREE.Vector3().copy(this.up).normalize(); this.up.applyAxisAngle(oldRight, up); this.right.applyAxisAngle(oldUp, right); this.NormalizeProjectionVectors(); } SolvespaceCamera.prototype.offsetProj = function(right, up) { var shift = new THREE.Vector3(right * this.right.x + up * this.up.x, right * this.right.y + up * this.up.y, right * this.right.z + up * this.up.z); this.offset.add(shift); } /* Calculate the offset in terms of up and right projection vectors that will preserve the world coordinates of the current mouse position after the zoom. */ SolvespaceCamera.prototype.zoomTo = function(x, y, delta) { // Get offset components in world coordinates, in terms of up/right. var projOffsetX = this.offset.dot(this.right); var projOffsetY = this.offset.dot(this.up); /* Remove offset before scaling so, that mouse position changes proportionally to the model and independent of current offset. */ var centerRightI = x/this.zoomScale - projOffsetX; var centerUpI = y/this.zoomScale - projOffsetY; var zoomFactor; /* Zoom 20% every 100 delta. */ if(delta < 0) { zoomFactor = (-delta * 0.002 + 1); } else if(delta > 0) { zoomFactor = (delta * (-1.0/600.0) + 1) } else { return; } this.zoomScale = this.zoomScale * zoomFactor; var centerRightF = x/this.zoomScale - projOffsetX; var centerUpF = y/this.zoomScale - projOffsetY; this.offset.addScaledVector(this.right, centerRightF - centerRightI); this.offset.addScaledVector(this.up, centerUpF - centerUpI); } SolvespaceControls = function(object, domElement) { var _this = this; this.object = object; this.domElement = ( domElement !== undefined ) ? domElement : document; var threePan = new Hammer.Pan({event : 'threepan', pointers : 3, enable : false}); var panAfterTap = new Hammer.Pan({event : 'panaftertap', enable : false}); this.touchControls = new Hammer.Manager(domElement, { recognizers: [ [Hammer.Pinch, { enable: true }], [Hammer.Pan], [Hammer.Tap], ] }); this.touchControls.add(threePan); this.touchControls.add(panAfterTap); var changeEvent = { type: 'change' }; var startEvent = { type: 'start' }; var endEvent = { type: 'end' }; var _changed = false; var _mouseMoved = false; //var _touchPoints = new Array(); var _offsetPrev = new THREE.Vector2(0, 0); var _offsetCur = new THREE.Vector2(0, 0); var _rotatePrev = new THREE.Vector2(0, 0); var _rotateCur = new THREE.Vector2(0, 0); // Used during touch events. var _rotateOrig = new THREE.Vector2(0, 0); var _offsetOrig = new THREE.Vector2(0, 0); var _prevScale = 1.0; this.handleEvent = function(event) { if (typeof this[event.type] == 'function') { this[event.type](event); } } function mousedown(event) { event.preventDefault(); event.stopPropagation(); switch (event.button) { case 0: _rotateCur.set(event.screenX/window.devicePixelRatio, event.screenY/window.devicePixelRatio); _rotatePrev.copy(_rotateCur); document.addEventListener('mousemove', mousemove, false); document.addEventListener('mouseup', mouseup, false); break; case 2: _offsetCur.set(event.screenX/window.devicePixelRatio, event.screenY/window.devicePixelRatio); _offsetPrev.copy(_offsetCur); document.addEventListener('mousemove', mousemove, false); document.addEventListener('mouseup', mouseup, false); break; default: break; } } function wheel( event ) { event.preventDefault(); /* FIXME: Width and height might not be supported universally, but can be calculated? */ var box = _this.domElement.getBoundingClientRect(); object.zoomTo(event.clientX - box.width/2 - box.left, -(event.clientY - box.height/2 - box.top), event.deltaY); _changed = true; } function mousemove(event) { switch (event.button) { case 0: _rotateCur.set(event.screenX/window.devicePixelRatio, event.screenY/window.devicePixelRatio); var diff = new THREE.Vector2().subVectors(_rotateCur, _rotatePrev) .multiplyScalar(1 / object.zoomScale); object.rotate(-0.3 * Math.PI / 180 * diff.x * object.zoomScale, -0.3 * Math.PI / 180 * diff.y * object.zoomScale); _changed = true; _rotatePrev.copy(_rotateCur); break; case 2: _mouseMoved = true; _offsetCur.set(event.screenX/window.devicePixelRatio, event.screenY/window.devicePixelRatio); var diff = new THREE.Vector2().subVectors(_offsetCur, _offsetPrev) .multiplyScalar(1 / object.zoomScale); object.offsetProj(diff.x, -diff.y); _changed = true; _offsetPrev.copy(_offsetCur) break; } } function mouseup(event) { /* TODO: Opera mouse gestures will intercept this event, making it possible to have multiple mousedown events consecutively without a corresponding mouseup (so multiple viewports can be rotated/panned simultaneously). Disable mouse gestures for now. */ event.preventDefault(); event.stopPropagation(); document.removeEventListener('mousemove', mousemove); document.removeEventListener('mouseup', mouseup); _this.dispatchEvent(endEvent); } function pan(event) { /* neWcur - prev does not necessarily equal (cur + diff) - prev. Floating point is not associative. */ touchDiff = new THREE.Vector2(event.deltaX, event.deltaY); _rotateCur.addVectors(_rotateOrig, touchDiff); incDiff = new THREE.Vector2().subVectors(_rotateCur, _rotatePrev) .multiplyScalar(1 / object.zoomScale); object.rotate(-0.3 * Math.PI / 180 * incDiff.x * object.zoomScale, -0.3 * Math.PI / 180 * incDiff.y * object.zoomScale); _changed = true; _rotatePrev.copy(_rotateCur); } function panstart(event) { /* TODO: Dynamically enable pan function? */ _rotateOrig.copy(_rotateCur); } function pinchstart(event) { _prevScale = event.scale; } function pinch(event) { /* FIXME: Width and height might not be supported universally, but can be calculated? */ var box = _this.domElement.getBoundingClientRect(); /* 16.6... pixels chosen heuristically... matches my touchpad. */ if (event.scale < _prevScale) { object.zoomTo(event.center.x - box.width/2 - box.left, -(event.center.y - box.height/2 - box.top), 100/6.0); _changed = true; } else if (event.scale > _prevScale) { object.zoomTo(event.center.x - box.width/2 - box.left, -(event.center.y - box.height/2 - box.top), -100/6.0); _changed = true; } _prevScale = event.scale; } /* A tap will enable panning/disable rotate. */ function tap(event) { panAfterTap.set({enable : true}); _this.touchControls.get('pan').set({enable : false}); } function panaftertap(event) { touchDiff = new THREE.Vector2(event.deltaX, event.deltaY); _offsetCur.addVectors(_offsetOrig, touchDiff); incDiff = new THREE.Vector2().subVectors(_offsetCur, _offsetPrev) .multiplyScalar(1 / object.zoomScale); object.offsetProj(incDiff.x, -incDiff.y); _changed = true; _offsetPrev.copy(_offsetCur); } function panaftertapstart(event) { _offsetOrig.copy(_offsetCur); } function panaftertapend(event) { panAfterTap.set({enable : false}); _this.touchControls.get('pan').set({enable : true}); } function contextmenu(event) { event.preventDefault(); } this.update = function() { if (_changed) { _this.dispatchEvent(changeEvent); _changed = false; } } this.domElement.addEventListener('mousedown', mousedown, false); this.domElement.addEventListener('wheel', wheel, false); this.domElement.addEventListener('contextmenu', contextmenu, false); /* Hammer.on wraps addEventListener */ // Rotate this.touchControls.on('pan', pan); this.touchControls.on('panstart', panstart); // Zoom this.touchControls.on('pinch', pinch); this.touchControls.on('pinchstart', pinchstart); //Pan this.touchControls.on('tap', tap); this.touchControls.on('panaftertapstart', panaftertapstart); this.touchControls.on('panaftertap', panaftertap); this.touchControls.on('panaftertapend', panaftertapend); } SolvespaceControls.prototype = Object.create(THREE.EventDispatcher.prototype); SolvespaceControls.prototype.constructor = SolvespaceControls; solvespace = function(obj, params) { var scene, edgeScene, camera, edgeCamera, renderer; var geometry, controls, material, mesh, edges; var width, height; var directionalLightArray = []; if (typeof params === "undefined" || !("width" in params)) { width = window.innerWidth; } else { width = params.width; } if (typeof params === "undefined" || !("height" in params)) { height = window.innerHeight; } else { height = params.height; } width *= window.devicePixelRatio; height *= window.devicePixelRatio; domElement = init(); render(); return domElement; function init() { scene = new THREE.Scene(); edgeScene = new THREE.Scene(); camera = new SolvespaceCamera(width/window.devicePixelRatio, height/window.devicePixelRatio, 5, new THREE.Vector3(0, 1, 0), new THREE.Vector3(1, 0, 0), new THREE.Vector3(0, 0, 0)); mesh = createMesh(obj); scene.add(mesh); edges = createEdges(obj); edgeScene.add(edges); for (var i = 0; i < obj.lights.d.length; i++) { var lightColor = new THREE.Color(obj.lights.d[i].intensity, obj.lights.d[i].intensity, obj.lights.d[i].intensity); var directionalLight = new THREE.DirectionalLight(lightColor, 1); directionalLight.position.set(obj.lights.d[i].direction[0], obj.lights.d[i].direction[1], obj.lights.d[i].direction[2]); directionalLightArray.push(directionalLight); scene.add(directionalLight); } var lightColor = new THREE.Color(obj.lights.a, obj.lights.a, obj.lights.a); var ambientLight = new THREE.AmbientLight(lightColor.getHex()); scene.add(ambientLight); renderer = new THREE.WebGLRenderer({ antialias: true}); renderer.setSize(width, height); renderer.autoClear = false; renderer.domElement.style = "width:"+width/window.devicePixelRatio+"px;height:"+height/window.devicePixelRatio+"px;"; controls = new SolvespaceControls(camera, renderer.domElement); controls.addEventListener("change", render); controls.addEventListener("change", lightUpdate); animate(); return renderer.domElement; } function animate() { requestAnimationFrame(animate); controls.update(); } function render() { var context = renderer.getContext(); camera.updateProjectionMatrix(); renderer.clear(); context.depthRange(0.1, 1); renderer.render(scene, camera); context.depthRange(0.1-(2/60000.0), 1-(2/60000.0)); renderer.render(edgeScene, camera); } function lightUpdate() { var changeBasis = new THREE.Matrix4(); // The original light positions were in camera space. // Project them into standard space using camera's basis // vectors (up, target, and their cross product). n = new THREE.Vector3().crossVectors(camera.up, camera.right); changeBasis.makeBasis(camera.right, camera.up, n); for (var i = 0; i < 2; i++) { var newLightPos = changeBasis.applyToVector3Array( [obj.lights.d[i].direction[0], obj.lights.d[i].direction[1], obj.lights.d[i].direction[2]]); directionalLightArray[i].position.set(newLightPos[0], newLightPos[1], newLightPos[2]); } } function createMesh(meshObj) { var geometry = new THREE.Geometry(); var materialIndex = 0; var materialList = []; var opacitiesSeen = {}; for (var i = 0; i < meshObj.points.length; i++) { geometry.vertices.push(new THREE.Vector3(meshObj.points[i][0], meshObj.points[i][1], meshObj.points[i][2])); } for (var i = 0; i < meshObj.faces.length; i++) { var currOpacity = ((meshObj.colors[i] & 0xFF000000) >>> 24) / 255.0; if (opacitiesSeen[currOpacity] === undefined) { opacitiesSeen[currOpacity] = materialIndex; materialIndex++; materialList.push(new THREE.MeshLambertMaterial({ vertexColors: THREE.FaceColors, opacity: currOpacity, transparent: true, side: THREE.DoubleSide })); } geometry.faces.push(new THREE.Face3(meshObj.faces[i][0], meshObj.faces[i][1], meshObj.faces[i][2], [new THREE.Vector3(meshObj.normals[i][0][0], meshObj.normals[i][0][1], meshObj.normals[i][0][2]), new THREE.Vector3(meshObj.normals[i][1][0], meshObj.normals[i][1][1], meshObj.normals[i][1][2]), new THREE.Vector3(meshObj.normals[i][2][0], meshObj.normals[i][2][1], meshObj.normals[i][2][2])], new THREE.Color(meshObj.colors[i] & 0x00FFFFFF), opacitiesSeen[currOpacity])); } geometry.computeBoundingSphere(); return new THREE.Mesh(geometry, new THREE.MultiMaterial(materialList)); } function createEdges(meshObj) { var geometry = new THREE.Geometry(); var material = new THREE.LineBasicMaterial(); for (var i = 0; i < meshObj.edges.length; i++) { geometry.vertices.push(new THREE.Vector3(meshObj.edges[i][0][0], meshObj.edges[i][0][1], meshObj.edges[i][0][2]), new THREE.Vector3(meshObj.edges[i][1][0], meshObj.edges[i][1][1], meshObj.edges[i][1][2])); } geometry.computeBoundingSphere(); return new THREE.LineSegments(geometry, material); } }; var solvespace_model_bar__ = { bounds: { x: 54.300000, y: 54.300000, near: 1.000000, far: 108.600000, z: 54.300000, edgeBias: 0.217200 }, lights: { d: [ { intensity: 1.000000, direction: [-1.000000, 1.000000, 0.000000] }, { intensity: 0.500000, direction: [1.000000, 0.000000, 0.000000] }, ], a: 0.300000 }, points: [ [-26.081982, 10.050485, 10.000000], [-26.760006, 9.605122, 10.000000], [-25.345793, 10.190908, 10.000000], [-24.609603, 10.050485, 10.000000], [-27.205369, 8.927097, 10.000000], [-23.931579, 9.605122, 10.000000], [-27.345793, 8.190908, 10.000000], [-23.486216, 8.927097, 10.000000], [-27.205369, 7.454719, 10.000000], [-23.345793, 8.190908, 10.000000], [-26.760006, 6.776694, 10.000000], [-23.486216, 7.454719, 10.000000], [-26.081982, 6.331331, 10.000000], [-23.931579, 6.776694, 10.000000], [-25.345793, 6.190908, 10.000000], [-24.609603, 6.331331, 10.000000], [-27.205369, 8.927097, 0.000000], [-26.760006, 9.605122, 0.000000], [-27.345793, 8.190908, 0.000000], [-27.205369, 7.454719, 0.000000], [-26.081982, 10.050485, 0.000000], [-26.760006, 6.776694, 0.000000], [-25.345793, 10.190908, 0.000000], [-26.081982, 6.331331, 0.000000], [-24.609603, 10.050485, 0.000000], [-25.345793, 6.190908, 0.000000], [-23.931579, 9.605122, 0.000000], [-24.609603, 6.331331, 0.000000], [-23.486216, 8.927097, 0.000000], [-23.931579, 6.776694, 0.000000], [-23.345793, 8.190908, 0.000000], [-23.486216, 7.454719, 0.000000], [13.218018, 10.050485, 10.000000], [12.539994, 9.605122, 10.000000], [13.954207, 10.190908, 10.000000], [14.690397, 10.050485, 10.000000], [12.094631, 8.927097, 10.000000], [15.368421, 9.605122, 10.000000], [11.954207, 8.190908, 10.000000], [15.813784, 8.927097, 10.000000], [12.094631, 7.454719, 10.000000], [15.954207, 8.190908, 10.000000], [12.539994, 6.776694, 10.000000], [15.813784, 7.454719, 10.000000], [13.218018, 6.331331, 10.000000], [15.368421, 6.776694, 10.000000], [13.954207, 6.190908, 10.000000], [14.690397, 6.331331, 10.000000], [12.094631, 8.927097, 0.000000], [12.539994, 9.605122, 0.000000], [11.954207, 8.190908, 0.000000], [12.094631, 7.454719, 0.000000], [13.218018, 10.050485, 0.000000], [12.539994, 6.776694, 0.000000], [13.954207, 10.190908, 0.000000], [13.218018, 6.331331, 0.000000], [14.690397, 10.050485, 0.000000], [13.954207, 6.190908, 0.000000], [15.368421, 9.605122, 0.000000], [14.690397, 6.331331, 0.000000], [15.813784, 8.927097, 0.000000], [15.368421, 6.776694, 0.000000], [15.954207, 8.190908, 0.000000], [15.813784, 7.454719, 0.000000], [-32.720583, 6.826185, 10.000000], [-32.319205, 5.430198, 10.000000], [-32.845793, 8.190908, 10.000000], [-32.720583, 9.555631, 10.000000], [-31.623259, 4.086835, 10.000000], [-32.319205, 10.951618, 10.000000], [-30.649094, 2.887607, 10.000000], [-31.623259, 12.294981, 10.000000], [-29.449866, 1.913442, 10.000000], [-25.345793, 12.190908, 10.000000], [-26.818172, 11.910061, 10.000000], [-28.106503, 1.217496, 10.000000], [-28.174220, 11.019335, 10.000000], [-26.710516, 0.816118, 10.000000], [-29.064946, 9.663287, 10.000000], [-29.345793, 8.190908, 10.000000], [-29.064946, 6.718529, 10.000000], [-28.174220, 5.362481, 10.000000], [-25.345793, 0.690908, 10.000000], [-26.818172, 4.471755, 10.000000], [-25.345793, 4.190908, 10.000000], [-23.873414, 4.471755, 10.000000], [13.954207, 0.690908, 10.000000], [-22.517366, 5.362481, 10.000000], [15.318930, 0.816118, 10.000000], [-21.626640, 6.718529, 10.000000], [16.714917, 1.217496, 10.000000], [-21.345793, 8.190908, 10.000000], [18.058280, 1.913442, 10.000000], [-21.626640, 9.663287, 10.000000], [19.257508, 2.887607, 10.000000], [-22.517366, 11.019335, 10.000000], [-23.873414, 11.910061, 10.000000], [-30.649094, 13.494209, 10.000000], [-29.449866, 14.468374, 10.000000], [-28.106503, 15.164320, 10.000000], [-26.710516, 15.565698, 10.000000], [-25.345793, 15.690908, 10.000000], [13.954207, 15.690908, 10.000000], [15.318930, 15.565698, 10.000000], [16.714917, 15.164320, 10.000000], [18.058280, 14.468374, 10.000000], [19.257508, 13.494209, 10.000000], [20.231673, 12.294981, 10.000000], [13.954207, 12.190908, 10.000000], [12.481828, 11.910061, 10.000000], [11.125780, 11.019335, 10.000000], [10.235054, 9.663287, 10.000000], [9.954207, 8.190908, 10.000000], [10.235054, 6.718529, 10.000000], [11.125780, 5.362481, 10.000000], [12.481828, 4.471755, 10.000000], [13.954207, 4.190908, 10.000000], [15.426586, 4.471755, 10.000000], [20.231673, 4.086835, 10.000000], [16.782634, 5.362481, 10.000000], [20.927619, 5.430198, 10.000000], [17.673360, 6.718529, 10.000000], [21.328997, 6.826185, 10.000000], [17.954207, 8.190908, 10.000000], [21.454207, 8.190908, 10.000000], [17.673360, 9.663287, 10.000000], [21.328997, 9.555631, 10.000000], [16.782634, 11.019335, 10.000000], [20.927619, 10.951618, 10.000000], [15.426586, 11.910061, 10.000000], [21.328997, 6.826185, 0.000000], [20.927619, 5.430198, 0.000000], [21.454207, 8.190908, 0.000000], [21.328997, 9.555631, 0.000000], [20.231673, 4.086835, 0.000000], [20.927619, 10.951618, 0.000000], [19.257508, 2.887607, 0.000000], [20.231673, 12.294981, 0.000000], [18.058280, 1.913442, 0.000000], [13.954207, 12.190908, 0.000000], [15.426586, 11.910061, 0.000000], [16.714917, 1.217496, 0.000000], [16.782634, 11.019335, 0.000000], [15.318930, 0.816118, 0.000000], [17.673360, 9.663287, 0.000000], [17.954207, 8.190908, 0.000000], [17.673360, 6.718529, 0.000000], [16.782634, 5.362481, 0.000000], [13.954207, 0.690908, 0.000000], [15.426586, 4.471755, 0.000000], [13.954207, 4.190908, 0.000000], [12.481828, 4.471755, 0.000000], [-25.345793, 0.690908, 0.000000], [11.125780, 5.362481, 0.000000], [-26.710516, 0.816118, 0.000000], [10.235054, 6.718529, 0.000000], [-28.106503, 1.217496, 0.000000], [9.954207, 8.190908, 0.000000], [-29.449866, 1.913442, 0.000000], [10.235054, 9.663287, 0.000000], [-30.649094, 2.887607, 0.000000], [11.125780, 11.019335, 0.000000], [12.481828, 11.910061, 0.000000], [19.257508, 13.494209, 0.000000], [18.058280, 14.468374, 0.000000], [16.714917, 15.164320, 0.000000], [15.318930, 15.565698, 0.000000], [13.954207, 15.690908, 0.000000], [-25.345793, 15.690908, 0.000000], [-26.710516, 15.565698, 0.000000], [-28.106503, 15.164320, 0.000000], [-29.449866, 14.468374, 0.000000], [-30.649094, 13.494209, 0.000000], [-31.623259, 12.294981, 0.000000], [-25.345793, 12.190908, 0.000000], [-23.873414, 11.910061, 0.000000], [-22.517366, 11.019335, 0.000000], [-21.626640, 9.663287, 0.000000], [-21.345793, 8.190908, 0.000000], [-21.626640, 6.718529, 0.000000], [-22.517366, 5.362481, 0.000000], [-23.873414, 4.471755, 0.000000], [-25.345793, 4.190908, 0.000000], [-26.818172, 4.471755, 0.000000], [-31.623259, 4.086835, 0.000000], [-28.174220, 5.362481, 0.000000], [-32.319205, 5.430198, 0.000000], [-29.064946, 6.718529, 0.000000], [-32.720583, 6.826185, 0.000000], [-29.345793, 8.190908, 0.000000], [-32.845793, 8.190908, 0.000000], [-29.064946, 9.663287, 0.000000], [-32.720583, 9.555631, 0.000000], [-28.174220, 11.019335, 0.000000], [-32.319205, 10.951618, 0.000000], [-26.818172, 11.910061, 0.000000], ], faces: [ [0, 1, 2], [2, 1, 3], [1, 4, 3], [3, 4, 5], [4, 6, 5], [5, 6, 7], [6, 8, 7], [7, 8, 9], [8, 10, 9], [9, 10, 11], [10, 12, 11], [11, 12, 13], [12, 14, 13], [13, 14, 15], [16, 17, 18], [18, 17, 19], [17, 20, 19], [19, 20, 21], [20, 22, 21], [21, 22, 23], [22, 24, 23], [23, 24, 25], [24, 26, 25], [25, 26, 27], [26, 28, 27], [27, 28, 29], [28, 30, 29], [29, 30, 31], [9, 11, 30], [30, 11, 31], [25, 27, 14], [14, 27, 15], [11, 13, 31], [31, 13, 29], [13, 15, 29], [29, 15, 27], [14, 12, 25], [25, 12, 23], [18, 19, 6], [6, 19, 8], [12, 10, 23], [23, 10, 21], [10, 8, 21], [21, 8, 19], [6, 4, 18], [18, 4, 16], [22, 20, 2], [2, 20, 0], [4, 1, 16], [16, 1, 17], [1, 0, 17], [17, 0, 20], [2, 3, 22], [22, 3, 24], [30, 28, 9], [9, 28, 7], [3, 5, 24], [24, 5, 26], [5, 7, 26], [26, 7, 28], [32, 33, 34], [34, 33, 35], [33, 36, 35], [35, 36, 37], [36, 38, 37], [37, 38, 39], [38, 40, 39], [39, 40, 41], [40, 42, 41], [41, 42, 43], [42, 44, 43], [43, 44, 45], [44, 46, 45], [45, 46, 47], [48, 49, 50], [50, 49, 51], [49, 52, 51], [51, 52, 53], [52, 54, 53], [53, 54, 55], [54, 56, 55], [55, 56, 57], [56, 58, 57], [57, 58, 59], [58, 60, 59], [59, 60, 61], [60, 62, 61], [61, 62, 63], [41, 43, 62], [62, 43, 63], [57, 59, 46], [46, 59, 47], [43, 45, 63], [63, 45, 61], [45, 47, 61], [61, 47, 59], [46, 44, 57], [57, 44, 55], [50, 51, 38], [38, 51, 40], [44, 42, 55], [55, 42, 53], [42, 40, 53], [53, 40, 51], [38, 36, 50], [50, 36, 48], [54, 52, 34], [34, 52, 32], [36, 33, 48], [48, 33, 49], [33, 32, 49], [49, 32, 52], [34, 35, 54], [54, 35, 56], [62, 60, 41], [41, 60, 39], [35, 37, 56], [56, 37, 58], [37, 39, 58], [58, 39, 60], [64, 65, 66], [66, 65, 67], [65, 68, 67], [67, 68, 69], [68, 70, 69], [69, 70, 71], [70, 72, 71], [73, 71, 74], [72, 75, 71], [74, 71, 76], [75, 77, 71], [76, 71, 78], [78, 71, 79], [79, 71, 80], [71, 77, 80], [80, 77, 81], [77, 82, 81], [81, 82, 83], [83, 82, 84], [84, 82, 85], [82, 86, 85], [85, 86, 87], [86, 88, 87], [87, 88, 89], [88, 90, 89], [89, 90, 91], [90, 92, 91], [91, 92, 93], [92, 94, 93], [93, 94, 95], [95, 94, 96], [71, 73, 97], [73, 96, 97], [96, 94, 97], [98, 97, 99], [99, 97, 100], [100, 97, 101], [101, 97, 102], [102, 97, 103], [103, 97, 104], [104, 97, 105], [105, 97, 106], [106, 97, 107], [107, 97, 108], [108, 97, 109], [109, 97, 110], [110, 97, 111], [111, 97, 112], [112, 97, 113], [113, 97, 114], [114, 97, 115], [97, 94, 115], [115, 94, 116], [116, 94, 117], [94, 118, 117], [117, 118, 119], [118, 120, 119], [119, 120, 121], [120, 122, 121], [121, 122, 123], [122, 124, 123], [123, 124, 125], [124, 126, 125], [125, 126, 127], [126, 128, 127], [127, 128, 129], [128, 107, 129], [129, 107, 108], [130, 131, 132], [132, 131, 133], [131, 134, 133], [133, 134, 135], [134, 136, 135], [135, 136, 137], [136, 138, 137], [139, 137, 140], [138, 141, 137], [140, 137, 142], [141, 143, 137], [142, 137, 144], [144, 137, 145], [145, 137, 146], [137, 143, 146], [146, 143, 147], [143, 148, 147], [147, 148, 149], [149, 148, 150], [150, 148, 151], [148, 152, 151], [151, 152, 153], [152, 154, 153], [153, 154, 155], [154, 156, 155], [155, 156, 157], [156, 158, 157], [157, 158, 159], [158, 160, 159], [159, 160, 161], [161, 160, 162], [137, 139, 163], [139, 162, 163], [162, 160, 163], [164, 163, 165], [165, 163, 166], [166, 163, 167], [167, 163, 168], [168, 163, 169], [169, 163, 170], [170, 163, 171], [171, 163, 172], [172, 163, 173], [173, 163, 174], [174, 163, 175], [175, 163, 176], [176, 163, 177], [177, 163, 178], [178, 163, 179], [179, 163, 180], [180, 163, 181], [163, 160, 181], [181, 160, 182], [182, 160, 183], [160, 184, 183], [183, 184, 185], [184, 186, 185], [185, 186, 187], [186, 188, 187], [187, 188, 189], [188, 190, 189], [189, 190, 191], [190, 192, 191], [191, 192, 193], [192, 194, 193], [193, 194, 195], [194, 173, 195], [195, 173, 174], [101, 102, 168], [168, 102, 167], [102, 103, 167], [167, 103, 166], [132, 133, 124], [124, 133, 126], [103, 104, 166], [166, 104, 165], [133, 135, 126], [126, 135, 128], [104, 105, 165], [165, 105, 164], [135, 137, 128], [128, 137, 107], [105, 106, 164], [164, 106, 163], [106, 107, 163], [163, 107, 137], [124, 122, 132], [132, 122, 130], [148, 143, 86], [86, 143, 88], [122, 120, 130], [130, 120, 131], [143, 141, 88], [88, 141, 90], [120, 118, 131], [131, 118, 134], [141, 138, 90], [90, 138, 92], [118, 94, 134], [134, 94, 136], [94, 92, 136], [136, 92, 138], [86, 82, 148], [148, 82, 152], [82, 77, 152], [152, 77, 154], [190, 188, 66], [66, 188, 64], [77, 75, 154], [154, 75, 156], [188, 186, 64], [64, 186, 65], [75, 72, 156], [156, 72, 158], [186, 184, 65], [65, 184, 68], [72, 70, 158], [158, 70, 160], [70, 68, 160], [160, 68, 184], [66, 67, 190], [190, 67, 192], [168, 169, 101], [101, 169, 100], [67, 69, 192], [192, 69, 194], [169, 170, 100], [100, 170, 99], [69, 71, 194], [194, 71, 173], [170, 171, 99], [99, 171, 98], [71, 97, 173], [173, 97, 172], [97, 98, 172], [172, 98, 171], [91, 93, 178], [178, 93, 177], [174, 175, 73], [73, 175, 96], [93, 95, 177], [177, 95, 176], [95, 96, 176], [176, 96, 175], [73, 74, 174], [174, 74, 195], [189, 191, 79], [79, 191, 78], [74, 76, 195], [195, 76, 193], [76, 78, 193], [193, 78, 191], [79, 80, 189], [189, 80, 187], [182, 183, 84], [84, 183, 83], [80, 81, 187], [187, 81, 185], [81, 83, 185], [185, 83, 183], [84, 85, 182], [182, 85, 181], [178, 179, 91], [91, 179, 89], [85, 87, 181], [181, 87, 180], [87, 89, 180], [180, 89, 179], [123, 125, 145], [145, 125, 144], [139, 140, 108], [108, 140, 129], [125, 127, 144], [144, 127, 142], [127, 129, 142], [142, 129, 140], [108, 109, 139], [139, 109, 162], [157, 159, 112], [112, 159, 111], [109, 110, 162], [162, 110, 161], [110, 111, 161], [161, 111, 159], [112, 113, 157], [157, 113, 155], [150, 151, 116], [116, 151, 115], [113, 114, 155], [155, 114, 153], [114, 115, 153], [153, 115, 151], [116, 117, 150], [150, 117, 149], [145, 146, 123], [123, 146, 121], [117, 119, 149], [149, 119, 147], [119, 121, 147], [147, 121, 146], ], normals: [ [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[28.284271, 0.000000, 0.000000], [29.543268, -11.695910, 0.000000], [28.284271, 0.000000, 0.000000]], [[28.284271, 0.000000, 0.000000], [29.543268, -11.695910, 0.000000], [29.543268, -11.695910, 0.000000]], [[-0.000000, -28.284271, -0.000000], [11.695910, -29.543268, 0.000000], [-0.000000, -28.284271, -0.000000]], [[-0.000000, -28.284271, -0.000000], [11.695910, -29.543268, 0.000000], [11.695910, -29.543268, 0.000000]], [[29.543268, -11.695910, 0.000000], [23.431458, -23.431458, 0.000000], [29.543268, -11.695910, 0.000000]], [[29.543268, -11.695910, 0.000000], [23.431458, -23.431458, 0.000000], [23.431458, -23.431458, 0.000000]], [[23.431458, -23.431458, 0.000000], [11.695910, -29.543268, 0.000000], [23.431458, -23.431458, 0.000000]], [[23.431458, -23.431458, 0.000000], [11.695910, -29.543268, 0.000000], [11.695910, -29.543268, 0.000000]], [[0.000000, -28.284271, 0.000000], [-11.695910, -29.543268, -0.000000], [0.000000, -28.284271, 0.000000]], [[0.000000, -28.284271, 0.000000], [-11.695910, -29.543268, -0.000000], [-11.695910, -29.543268, -0.000000]], [[-28.284271, 0.000000, 0.000000], [-29.543268, -11.695910, -0.000000], [-28.284271, 0.000000, 0.000000]], [[-28.284271, 0.000000, 0.000000], [-29.543268, -11.695910, -0.000000], [-29.543268, -11.695910, -0.000000]], [[-11.695910, -29.543268, -0.000000], [-23.431458, -23.431458, -0.000000], [-11.695910, -29.543268, -0.000000]], [[-11.695910, -29.543268, -0.000000], [-23.431458, -23.431458, -0.000000], [-23.431458, -23.431458, -0.000000]], [[-23.431458, -23.431458, -0.000000], [-29.543268, -11.695910, -0.000000], [-23.431458, -23.431458, -0.000000]], [[-23.431458, -23.431458, -0.000000], [-29.543268, -11.695910, -0.000000], [-29.543268, -11.695910, -0.000000]], [[-28.284271, 0.000000, 0.000000], [-29.543268, 11.695910, 0.000000], [-28.284271, 0.000000, 0.000000]], [[-28.284271, 0.000000, 0.000000], [-29.543268, 11.695910, 0.000000], [-29.543268, 11.695910, 0.000000]], [[0.000000, 28.284271, 0.000000], [-11.695910, 29.543268, 0.000000], [0.000000, 28.284271, 0.000000]], [[0.000000, 28.284271, 0.000000], [-11.695910, 29.543268, 0.000000], [-11.695910, 29.543268, 0.000000]], [[-29.543268, 11.695910, 0.000000], [-23.431458, 23.431458, 0.000000], [-29.543268, 11.695910, 0.000000]], [[-29.543268, 11.695910, 0.000000], [-23.431458, 23.431458, 0.000000], [-23.431458, 23.431458, 0.000000]], [[-23.431458, 23.431458, 0.000000], [-11.695910, 29.543268, 0.000000], [-23.431458, 23.431458, 0.000000]], [[-23.431458, 23.431458, 0.000000], [-11.695910, 29.543268, 0.000000], [-11.695910, 29.543268, 0.000000]], [[-0.000000, 28.284271, 0.000000], [11.695910, 29.543268, 0.000000], [-0.000000, 28.284271, 0.000000]], [[-0.000000, 28.284271, 0.000000], [11.695910, 29.543268, 0.000000], [11.695910, 29.543268, 0.000000]], [[28.284271, -0.000000, 0.000000], [29.543268, 11.695910, 0.000000], [28.284271, -0.000000, 0.000000]], [[28.284271, -0.000000, 0.000000], [29.543268, 11.695910, 0.000000], [29.543268, 11.695910, 0.000000]], [[11.695910, 29.543268, 0.000000], [23.431458, 23.431458, 0.000000], [11.695910, 29.543268, 0.000000]], [[11.695910, 29.543268, 0.000000], [23.431458, 23.431458, 0.000000], [23.431458, 23.431458, 0.000000]], [[23.431458, 23.431458, 0.000000], [29.543268, 11.695910, 0.000000], [23.431458, 23.431458, 0.000000]], [[23.431458, 23.431458, 0.000000], [29.543268, 11.695910, 0.000000], [29.543268, 11.695910, 0.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000], [-0.000000, 0.000000, 16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, 0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, 0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, 0.000000, -16.000000], [-0.000000, 0.000000, -16.000000], [-0.000000, -0.000000, -16.000000]], [[-0.000000, -0.000000, -16.000000], [-0.000000, 0.000000, -16.000000], [-0.000000, 0.000000, -16.000000]], [[28.284271, 0.000000, 0.000000], [29.543268, -11.695910, 0.000000], [28.284271, 0.000000, 0.000000]], [[28.284271, 0.000000, 0.000000], [29.543268, -11.695910, 0.000000], [29.543268, -11.695910, 0.000000]], [[-0.000000, -28.284271, -0.000000], [11.695910, -29.543268, 0.000000], [-0.000000, -28.284271, -0.000000]], [[-0.000000, -28.284271, -0.000000], [11.695910, -29.543268, 0.000000], [11.695910, -29.543268, 0.000000]], [[29.543268, -11.695910, 0.000000], [23.431458, -23.431458, 0.000000], [29.543268, -11.695910, 0.000000]], [[29.543268, -11.695910, 0.000000], [23.431458, -23.431458, 0.000000], [23.431458, -23.431458, 0.000000]], [[23.431458, -23.431458, 0.000000], [11.695910, -29.543268, 0.000000], [23.431458, -23.431458, 0.000000]], [[23.431458, -23.431458, 0.000000], [11.695910, -29.543268, 0.000000], [11.695910, -29.543268, 0.000000]], [[0.000000, -28.284271, 0.000000], [-11.695910, -29.543268, -0.000000], [0.000000, -28.284271, 0.000000]], [[0.000000, -28.284271, 0.000000], [-11.695910, -29.543268, -0.000000], [-11.695910, -29.543268, -0.000000]], [[-28.284271, 0.000000, 0.000000], [-29.543268, -11.695910, -0.000000], [-28.284271, 0.000000, 0.000000]], [[-28.284271, 0.000000, 0.000000], [-29.543268, -11.695910, -0.000000], [-29.543268, -11.695910, -0.000000]], [[-11.695910, -29.543268, -0.000000], [-23.431458, -23.431458, -0.000000], [-11.695910, -29.543268, -0.000000]], [[-11.695910, -29.543268, -0.000000], [-23.431458, -23.431458, -0.000000], [-23.431458, -23.431458, -0.000000]], [[-23.431458, -23.431458, -0.000000], [-29.543268, -11.695910, -0.000000], [-23.431458, -23.431458, -0.000000]], [[-23.431458, -23.431458, -0.000000], [-29.543268, -11.695910, -0.000000], [-29.543268, -11.695910, -0.000000]], [[-28.284271, -0.000000, -0.000000], [-29.543268, 11.695910, 0.000000], [-28.284271, -0.000000, -0.000000]], [[-28.284271, -0.000000, -0.000000], [-29.543268, 11.695910, 0.000000], [-29.543268, 11.695910, 0.000000]], [[0.000000, 28.284271, 0.000000], [-11.695910, 29.543268, 0.000000], [0.000000, 28.284271, 0.000000]], [[0.000000, 28.284271, 0.000000], [-11.695910, 29.543268, 0.000000], [-11.695910, 29.543268, 0.000000]], [[-29.543268, 11.695910, 0.000000], [-23.431458, 23.431458, 0.000000], [-29.543268, 11.695910, 0.000000]], [[-29.543268, 11.695910, 0.000000], [-23.431458, 23.431458, 0.000000], [-23.431458, 23.431458, 0.000000]], [[-23.431458, 23.431458, 0.000000], [-11.695910, 29.543268, 0.000000], [-23.431458, 23.431458, 0.000000]], [[-23.431458, 23.431458, 0.000000], [-11.695910, 29.543268, 0.000000], [-11.695910, 29.543268, 0.000000]], [[-0.000000, 28.284271, 0.000000], [11.695910, 29.543268, 0.000000], [-0.000000, 28.284271, 0.000000]], [[-0.000000, 28.284271, 0.000000], [11.695910, 29.543268, 0.000000], [11.695910, 29.543268, 0.000000]], [[28.284271, -0.000000, 0.000000], [29.543268, 11.695910, 0.000000], [28.284271, -0.000000, 0.000000]], [[28.284271, -0.000000, 0.000000], [29.543268, 11.695910, 0.000000], [29.543268, 11.695910, 0.000000]], [[11.695910, 29.543268, 0.000000], [23.431458, 23.431458, 0.000000], [11.695910, 29.543268, 0.000000]], [[11.695910, 29.543268, 0.000000], [23.431458, 23.431458, 0.000000], [23.431458, 23.431458, 0.000000]], [[23.431458, 23.431458, 0.000000], [29.543268, 11.695910, 0.000000], [23.431458, 23.431458, 0.000000]], [[23.431458, 23.431458, 0.000000], [29.543268, 11.695910, 0.000000], [29.543268, 11.695910, 0.000000]], [[0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [0.000000, -0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [0.000000, -0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [0.000000, -0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [0.000000, -0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [0.000000, -0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [0.000000, -0.000000, 814.500000]], [[0.000000, -0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000], [-0.000000, 0.000000, 814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, 0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, 0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, 0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, 0.000000, -814.500000], [-0.000000, 0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, 0.000000, -814.500000], [-0.000000, 0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, 0.000000, -814.500000], [-0.000000, 0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, 0.000000, -814.500000], [-0.000000, 0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, 0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, 0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, 0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, 0.000000, -814.500000]], [[-0.000000, 0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000], [-0.000000, -0.000000, -814.500000]], [[-0.000000, 393.000000, 0.000000], [-0.000000, 393.000000, 0.000000], [-0.000000, 393.000000, 0.000000]], [[-0.000000, 393.000000, 0.000000], [-0.000000, 393.000000, 0.000000], [-0.000000, 393.000000, 0.000000]], [[0.000000, 106.066017, 0.000000], [20.621312, 111.434966, 0.000000], [0.000000, 106.066017, 0.000000]], [[0.000000, 106.066017, 0.000000], [20.621312, 111.434966, 0.000000], [20.621312, 111.434966, 0.000000]], [[106.066017, 0.000000, 0.000000], [111.434966, 20.621312, 0.000000], [106.066017, 0.000000, 0.000000]], [[106.066017, 0.000000, 0.000000], [111.434966, 20.621312, 0.000000], [111.434966, 20.621312, 0.000000]], [[20.621312, 111.434966, 0.000000], [43.859664, 110.787255, 0.000000], [20.621312, 111.434966, 0.000000]], [[20.621312, 111.434966, 0.000000], [43.859664, 110.787255, 0.000000], [43.859664, 110.787255, 0.000000]], [[111.434966, 20.621312, 0.000000], [110.787255, 43.859664, 0.000000], [111.434966, 20.621312, 0.000000]], [[111.434966, 20.621312, 0.000000], [110.787255, 43.859664, 0.000000], [110.787255, 43.859664, 0.000000]], [[43.859664, 110.787255, 0.000000], [67.277078, 102.904986, 0.000000], [43.859664, 110.787255, 0.000000]], [[43.859664, 110.787255, 0.000000], [67.277078, 102.904986, 0.000000], [67.277078, 102.904986, 0.000000]], [[110.787255, 43.859664, 0.000000], [102.904986, 67.277078, 0.000000], [110.787255, 43.859664, 0.000000]], [[110.787255, 43.859664, 0.000000], [102.904986, 67.277078, 0.000000], [102.904986, 67.277078, 0.000000]], [[67.277078, 102.904986, 0.000000], [87.867966, 87.867966, 0.000000], [67.277078, 102.904986, 0.000000]], [[67.277078, 102.904986, 0.000000], [87.867966, 87.867966, 0.000000], [87.867966, 87.867966, 0.000000]], [[87.867966, 87.867966, 0.000000], [102.904986, 67.277078, 0.000000], [87.867966, 87.867966, 0.000000]], [[87.867966, 87.867966, 0.000000], [102.904986, 67.277078, 0.000000], [102.904986, 67.277078, 0.000000]], [[106.066017, 0.000000, 0.000000], [111.434966, -20.621312, 0.000000], [106.066017, 0.000000, 0.000000]], [[106.066017, 0.000000, 0.000000], [111.434966, -20.621312, 0.000000], [111.434966, -20.621312, 0.000000]], [[0.000000, -106.066017, 0.000000], [20.621312, -111.434966, 0.000000], [0.000000, -106.066017, 0.000000]], [[0.000000, -106.066017, 0.000000], [20.621312, -111.434966, 0.000000], [20.621312, -111.434966, 0.000000]], [[111.434966, -20.621312, 0.000000], [110.787255, -43.859664, 0.000000], [111.434966, -20.621312, 0.000000]], [[111.434966, -20.621312, 0.000000], [110.787255, -43.859664, 0.000000], [110.787255, -43.859664, 0.000000]], [[20.621312, -111.434966, 0.000000], [43.859664, -110.787255, 0.000000], [20.621312, -111.434966, 0.000000]], [[20.621312, -111.434966, 0.000000], [43.859664, -110.787255, 0.000000], [43.859664, -110.787255, 0.000000]], [[110.787255, -43.859664, 0.000000], [102.904986, -67.277078, 0.000000], [110.787255, -43.859664, 0.000000]], [[110.787255, -43.859664, 0.000000], [102.904986, -67.277078, 0.000000], [102.904986, -67.277078, 0.000000]], [[43.859664, -110.787255, 0.000000], [67.277078, -102.904986, 0.000000], [43.859664, -110.787255, 0.000000]], [[43.859664, -110.787255, 0.000000], [67.277078, -102.904986, 0.000000], [67.277078, -102.904986, 0.000000]], [[102.904986, -67.277078, 0.000000], [87.867966, -87.867966, 0.000000], [102.904986, -67.277078, 0.000000]], [[102.904986, -67.277078, 0.000000], [87.867966, -87.867966, 0.000000], [87.867966, -87.867966, 0.000000]], [[87.867966, -87.867966, 0.000000], [67.277078, -102.904986, 0.000000], [87.867966, -87.867966, 0.000000]], [[87.867966, -87.867966, 0.000000], [67.277078, -102.904986, 0.000000], [67.277078, -102.904986, 0.000000]], [[-0.000000, -393.000000, -0.000000], [-0.000000, -393.000000, -0.000000], [-0.000000, -393.000000, -0.000000]], [[-0.000000, -393.000000, -0.000000], [-0.000000, -393.000000, -0.000000], [-0.000000, -393.000000, -0.000000]], [[0.000000, -106.066017, 0.000000], [-20.621312, -111.434966, -0.000000], [0.000000, -106.066017, 0.000000]], [[0.000000, -106.066017, 0.000000], [-20.621312, -111.434966, -0.000000], [-20.621312, -111.434966, -0.000000]], [[-106.066017, 0.000000, 0.000000], [-111.434966, -20.621312, -0.000000], [-106.066017, 0.000000, 0.000000]], [[-106.066017, 0.000000, 0.000000], [-111.434966, -20.621312, -0.000000], [-111.434966, -20.621312, -0.000000]], [[-20.621312, -111.434966, -0.000000], [-43.859664, -110.787255, -0.000000], [-20.621312, -111.434966, -0.000000]], [[-20.621312, -111.434966, -0.000000], [-43.859664, -110.787255, -0.000000], [-43.859664, -110.787255, -0.000000]], [[-111.434966, -20.621312, -0.000000], [-110.787255, -43.859664, -0.000000], [-111.434966, -20.621312, -0.000000]], [[-111.434966, -20.621312, -0.000000], [-110.787255, -43.859664, -0.000000], [-110.787255, -43.859664, -0.000000]], [[-43.859664, -110.787255, -0.000000], [-67.277078, -102.904986, -0.000000], [-43.859664, -110.787255, -0.000000]], [[-43.859664, -110.787255, -0.000000], [-67.277078, -102.904986, -0.000000], [-67.277078, -102.904986, -0.000000]], [[-110.787255, -43.859664, -0.000000], [-102.904986, -67.277078, -0.000000], [-110.787255, -43.859664, -0.000000]], [[-110.787255, -43.859664, -0.000000], [-102.904986, -67.277078, -0.000000], [-102.904986, -67.277078, -0.000000]], [[-67.277078, -102.904986, -0.000000], [-87.867966, -87.867966, -0.000000], [-67.277078, -102.904986, -0.000000]], [[-67.277078, -102.904986, -0.000000], [-87.867966, -87.867966, -0.000000], [-87.867966, -87.867966, -0.000000]], [[-87.867966, -87.867966, -0.000000], [-102.904986, -67.277078, -0.000000], [-87.867966, -87.867966, -0.000000]], [[-87.867966, -87.867966, -0.000000], [-102.904986, -67.277078, -0.000000], [-102.904986, -67.277078, -0.000000]], [[-106.066017, 0.000000, 0.000000], [-111.434966, 20.621312, 0.000000], [-106.066017, 0.000000, 0.000000]], [[-106.066017, 0.000000, 0.000000], [-111.434966, 20.621312, 0.000000], [-111.434966, 20.621312, 0.000000]], [[-0.000000, 106.066017, 0.000000], [-20.621312, 111.434966, 0.000000], [-0.000000, 106.066017, 0.000000]], [[-0.000000, 106.066017, 0.000000], [-20.621312, 111.434966, 0.000000], [-20.621312, 111.434966, 0.000000]], [[-111.434966, 20.621312, 0.000000], [-110.787255, 43.859664, 0.000000], [-111.434966, 20.621312, 0.000000]], [[-111.434966, 20.621312, 0.000000], [-110.787255, 43.859664, 0.000000], [-110.787255, 43.859664, 0.000000]], [[-20.621312, 111.434966, 0.000000], [-43.859664, 110.787255, 0.000000], [-20.621312, 111.434966, 0.000000]], [[-20.621312, 111.434966, 0.000000], [-43.859664, 110.787255, 0.000000], [-43.859664, 110.787255, 0.000000]], [[-110.787255, 43.859664, 0.000000], [-102.904986, 67.277078, 0.000000], [-110.787255, 43.859664, 0.000000]], [[-110.787255, 43.859664, 0.000000], [-102.904986, 67.277078, 0.000000], [-102.904986, 67.277078, 0.000000]], [[-43.859664, 110.787255, 0.000000], [-67.277078, 102.904986, 0.000000], [-43.859664, 110.787255, 0.000000]], [[-43.859664, 110.787255, 0.000000], [-67.277078, 102.904986, 0.000000], [-67.277078, 102.904986, 0.000000]], [[-102.904986, 67.277078, 0.000000], [-87.867966, 87.867966, 0.000000], [-102.904986, 67.277078, 0.000000]], [[-102.904986, 67.277078, 0.000000], [-87.867966, 87.867966, 0.000000], [-87.867966, 87.867966, 0.000000]], [[-87.867966, 87.867966, 0.000000], [-67.277078, 102.904986, 0.000000], [-87.867966, 87.867966, 0.000000]], [[-87.867966, 87.867966, 0.000000], [-67.277078, 102.904986, 0.000000], [-67.277078, 102.904986, 0.000000]], [[-56.568542, 0.000000, 0.000000], [-59.086536, -23.391821, -0.000000], [-56.568542, 0.000000, 0.000000]], [[-56.568542, 0.000000, 0.000000], [-59.086536, -23.391821, -0.000000], [-59.086536, -23.391821, -0.000000]], [[-0.000000, -56.568542, -0.000000], [-23.391821, -59.086536, -0.000000], [-0.000000, -56.568542, -0.000000]], [[-0.000000, -56.568542, -0.000000], [-23.391821, -59.086536, -0.000000], [-23.391821, -59.086536, -0.000000]], [[-59.086536, -23.391821, -0.000000], [-46.862915, -46.862915, -0.000000], [-59.086536, -23.391821, -0.000000]], [[-59.086536, -23.391821, -0.000000], [-46.862915, -46.862915, -0.000000], [-46.862915, -46.862915, -0.000000]], [[-46.862915, -46.862915, -0.000000], [-23.391821, -59.086536, -0.000000], [-46.862915, -46.862915, -0.000000]], [[-46.862915, -46.862915, -0.000000], [-23.391821, -59.086536, -0.000000], [-23.391821, -59.086536, -0.000000]], [[0.000000, -56.568542, 0.000000], [23.391821, -59.086536, 0.000000], [0.000000, -56.568542, 0.000000]], [[0.000000, -56.568542, 0.000000], [23.391821, -59.086536, 0.000000], [23.391821, -59.086536, 0.000000]], [[56.568542, 0.000000, 0.000000], [59.086536, -23.391821, 0.000000], [56.568542, 0.000000, 0.000000]], [[56.568542, 0.000000, 0.000000], [59.086536, -23.391821, 0.000000], [59.086536, -23.391821, 0.000000]], [[23.391821, -59.086536, 0.000000], [46.862915, -46.862915, 0.000000], [23.391821, -59.086536, 0.000000]], [[23.391821, -59.086536, 0.000000], [46.862915, -46.862915, 0.000000], [46.862915, -46.862915, 0.000000]], [[46.862915, -46.862915, 0.000000], [59.086536, -23.391821, 0.000000], [46.862915, -46.862915, 0.000000]], [[46.862915, -46.862915, 0.000000], [59.086536, -23.391821, 0.000000], [59.086536, -23.391821, 0.000000]], [[56.568542, 0.000000, 0.000000], [59.086536, 23.391821, 0.000000], [56.568542, 0.000000, 0.000000]], [[56.568542, 0.000000, 0.000000], [59.086536, 23.391821, 0.000000], [59.086536, 23.391821, 0.000000]], [[0.000000, 56.568542, 0.000000], [23.391821, 59.086536, 0.000000], [0.000000, 56.568542, 0.000000]], [[0.000000, 56.568542, 0.000000], [23.391821, 59.086536, 0.000000], [23.391821, 59.086536, 0.000000]], [[59.086536, 23.391821, 0.000000], [46.862915, 46.862915, 0.000000], [59.086536, 23.391821, 0.000000]], [[59.086536, 23.391821, 0.000000], [46.862915, 46.862915, 0.000000], [46.862915, 46.862915, 0.000000]], [[46.862915, 46.862915, 0.000000], [23.391821, 59.086536, 0.000000], [46.862915, 46.862915, 0.000000]], [[46.862915, 46.862915, 0.000000], [23.391821, 59.086536, 0.000000], [23.391821, 59.086536, 0.000000]], [[0.000000, 56.568542, 0.000000], [-23.391821, 59.086536, 0.000000], [0.000000, 56.568542, 0.000000]], [[0.000000, 56.568542, 0.000000], [-23.391821, 59.086536, 0.000000], [-23.391821, 59.086536, 0.000000]], [[-56.568542, 0.000000, 0.000000], [-59.086536, 23.391821, 0.000000], [-56.568542, 0.000000, 0.000000]], [[-56.568542, 0.000000, 0.000000], [-59.086536, 23.391821, 0.000000], [-59.086536, 23.391821, 0.000000]], [[-23.391821, 59.086536, 0.000000], [-46.862915, 46.862915, 0.000000], [-23.391821, 59.086536, 0.000000]], [[-23.391821, 59.086536, 0.000000], [-46.862915, 46.862915, 0.000000], [-46.862915, 46.862915, 0.000000]], [[-46.862915, 46.862915, 0.000000], [-59.086536, 23.391821, 0.000000], [-46.862915, 46.862915, 0.000000]], [[-46.862915, 46.862915, 0.000000], [-59.086536, 23.391821, 0.000000], [-59.086536, 23.391821, 0.000000]], [[-56.568542, 0.000000, 0.000000], [-59.086536, -23.391821, -0.000000], [-56.568542, 0.000000, 0.000000]], [[-56.568542, 0.000000, 0.000000], [-59.086536, -23.391821, -0.000000], [-59.086536, -23.391821, -0.000000]], [[-0.000000, -56.568542, -0.000000], [-23.391821, -59.086536, -0.000000], [-0.000000, -56.568542, -0.000000]], [[-0.000000, -56.568542, -0.000000], [-23.391821, -59.086536, -0.000000], [-23.391821, -59.086536, -0.000000]], [[-59.086536, -23.391821, -0.000000], [-46.862915, -46.862915, -0.000000], [-59.086536, -23.391821, -0.000000]], [[-59.086536, -23.391821, -0.000000], [-46.862915, -46.862915, -0.000000], [-46.862915, -46.862915, -0.000000]], [[-46.862915, -46.862915, -0.000000], [-23.391821, -59.086536, -0.000000], [-46.862915, -46.862915, -0.000000]], [[-46.862915, -46.862915, -0.000000], [-23.391821, -59.086536, -0.000000], [-23.391821, -59.086536, -0.000000]], [[0.000000, -56.568542, 0.000000], [23.391821, -59.086536, 0.000000], [0.000000, -56.568542, 0.000000]], [[0.000000, -56.568542, 0.000000], [23.391821, -59.086536, 0.000000], [23.391821, -59.086536, 0.000000]], [[56.568542, 0.000000, 0.000000], [59.086536, -23.391821, 0.000000], [56.568542, 0.000000, 0.000000]], [[56.568542, 0.000000, 0.000000], [59.086536, -23.391821, 0.000000], [59.086536, -23.391821, 0.000000]], [[23.391821, -59.086536, 0.000000], [46.862915, -46.862915, 0.000000], [23.391821, -59.086536, 0.000000]], [[23.391821, -59.086536, 0.000000], [46.862915, -46.862915, 0.000000], [46.862915, -46.862915, 0.000000]], [[46.862915, -46.862915, 0.000000], [59.086536, -23.391821, 0.000000], [46.862915, -46.862915, 0.000000]], [[46.862915, -46.862915, 0.000000], [59.086536, -23.391821, 0.000000], [59.086536, -23.391821, 0.000000]], [[56.568542, -0.000000, 0.000000], [59.086536, 23.391821, 0.000000], [56.568542, -0.000000, 0.000000]], [[56.568542, -0.000000, 0.000000], [59.086536, 23.391821, 0.000000], [59.086536, 23.391821, 0.000000]], [[0.000000, 56.568542, 0.000000], [23.391821, 59.086536, 0.000000], [0.000000, 56.568542, 0.000000]], [[0.000000, 56.568542, 0.000000], [23.391821, 59.086536, 0.000000], [23.391821, 59.086536, 0.000000]], [[59.086536, 23.391821, 0.000000], [46.862915, 46.862915, 0.000000], [59.086536, 23.391821, 0.000000]], [[59.086536, 23.391821, 0.000000], [46.862915, 46.862915, 0.000000], [46.862915, 46.862915, 0.000000]], [[46.862915, 46.862915, 0.000000], [23.391821, 59.086536, 0.000000], [46.862915, 46.862915, 0.000000]], [[46.862915, 46.862915, 0.000000], [23.391821, 59.086536, 0.000000], [23.391821, 59.086536, 0.000000]], [[0.000000, 56.568542, 0.000000], [-23.391821, 59.086536, 0.000000], [0.000000, 56.568542, 0.000000]], [[0.000000, 56.568542, 0.000000], [-23.391821, 59.086536, 0.000000], [-23.391821, 59.086536, 0.000000]], [[-56.568542, 0.000000, 0.000000], [-59.086536, 23.391821, 0.000000], [-56.568542, 0.000000, 0.000000]], [[-56.568542, 0.000000, 0.000000], [-59.086536, 23.391821, 0.000000], [-59.086536, 23.391821, 0.000000]], [[-23.391821, 59.086536, 0.000000], [-46.862915, 46.862915, 0.000000], [-23.391821, 59.086536, 0.000000]], [[-23.391821, 59.086536, 0.000000], [-46.862915, 46.862915, 0.000000], [-46.862915, 46.862915, 0.000000]], [[-46.862915, 46.862915, 0.000000], [-59.086536, 23.391821, 0.000000], [-46.862915, 46.862915, 0.000000]], [[-46.862915, 46.862915, 0.000000], [-59.086536, 23.391821, 0.000000], [-59.086536, 23.391821, 0.000000]], ], colors: [ 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, 0xff646464, ], edges: [ [[13.954207, 15.690908, 0.000000], [-25.345793, 15.690908, 0.000000]], [[11.125780, 5.362481, 10.000000], [10.235054, 6.718529, 10.000000]], [[15.318930, 15.565698, 10.000000], [13.954207, 15.690908, 10.000000]], [[15.318930, 15.565698, 0.000000], [13.954207, 15.690908, 0.000000]], [[16.714917, 15.164320, 0.000000], [15.318930, 15.565698, 0.000000]], [[16.714917, 15.164320, 10.000000], [18.058280, 14.468374, 10.000000]], [[13.954207, 15.690908, 10.000000], [-25.345793, 15.690908, 10.000000]], [[10.235054, 9.663287, 10.000000], [11.125780, 11.019335, 10.000000]], [[20.231673, 12.294981, 0.000000], [19.257508, 13.494209, 0.000000]], [[9.954207, 8.190908, 10.000000], [10.235054, 9.663287, 10.000000]], [[19.257508, 13.494209, 10.000000], [18.058280, 14.468374, 10.000000]], [[12.481828, 11.910061, 10.000000], [13.954207, 12.190908, 10.000000]], [[18.058280, 14.468374, 0.000000], [16.714917, 15.164320, 0.000000]], [[11.125780, 11.019335, 10.000000], [12.481828, 11.910061, 10.000000]], [[12.481828, 4.471755, 10.000000], [11.125780, 5.362481, 10.000000]], [[19.257508, 13.494209, 10.000000], [20.231673, 12.294981, 10.000000]], [[10.235054, 6.718529, 10.000000], [9.954207, 8.190908, 10.000000]], [[15.318930, 15.565698, 10.000000], [16.714917, 15.164320, 10.000000]], [[19.257508, 13.494209, 0.000000], [18.058280, 14.468374, 0.000000]], [[20.231673, 12.294981, 10.000000], [20.927619, 10.951618, 10.000000]], [[13.954207, 12.190908, 0.000000], [15.426586, 11.910061, 0.000000]], [[20.927619, 10.951618, 0.000000], [20.231673, 12.294981, 0.000000]], [[13.954207, 12.190908, 10.000000], [15.426586, 11.910061, 10.000000]], [[12.481828, 11.910061, 0.000000], [13.954207, 12.190908, 0.000000]], [[17.673360, 9.663287, 10.000000], [16.782634, 11.019335, 10.000000]], [[10.235054, 9.663287, 0.000000], [11.125780, 11.019335, 0.000000]], [[16.782634, 11.019335, 10.000000], [15.426586, 11.910061, 10.000000]], [[-22.517366, 11.019335, 10.000000], [-21.626640, 9.663287, 10.000000]], [[21.328997, 9.555631, 0.000000], [20.927619, 10.951618, 0.000000]], [[20.927619, 10.951618, 10.000000], [21.328997, 9.555631, 10.000000]], [[11.125780, 11.019335, 0.000000], [12.481828, 11.910061, 0.000000]], [[-23.873414, 11.910061, 10.000000], [-22.517366, 11.019335, 10.000000]], [[15.426586, 11.910061, 0.000000], [16.782634, 11.019335, 0.000000]], [[16.782634, 11.019335, 0.000000], [17.673360, 9.663287, 0.000000]], [[-21.626640, 9.663287, 0.000000], [-22.517366, 11.019335, 0.000000]], [[-22.517366, 11.019335, 0.000000], [-23.873414, 11.910061, 0.000000]], [[18.058280, 1.913442, 0.000000], [16.714917, 1.217496, 0.000000]], [[17.673360, 6.718529, 0.000000], [17.954207, 8.190908, 0.000000]], [[-30.649094, 13.494209, 0.000000], [-29.449866, 14.468374, 0.000000]], [[-26.710516, 15.565698, 0.000000], [-25.345793, 15.690908, 0.000000]], [[17.954207, 8.190908, 0.000000], [17.673360, 9.663287, 0.000000]], [[16.714917, 1.217496, 0.000000], [15.318930, 0.816118, 0.000000]], [[-29.449866, 14.468374, 0.000000], [-28.106503, 15.164320, 0.000000]], [[19.257508, 2.887607, 0.000000], [18.058280, 1.913442, 0.000000]], [[-21.626640, 6.718529, 0.000000], [-21.345793, 8.190908, 0.000000]], [[-21.345793, 8.190908, 0.000000], [-21.626640, 9.663287, 0.000000]], [[-31.623259, 12.294981, 0.000000], [-30.649094, 13.494209, 0.000000]], [[-28.106503, 15.164320, 0.000000], [-26.710516, 15.565698, 0.000000]], [[-23.873414, 11.910061, 0.000000], [-25.345793, 12.190908, 0.000000]], [[-22.517366, 5.362481, 0.000000], [-21.626640, 6.718529, 0.000000]], [[-23.873414, 4.471755, 0.000000], [-22.517366, 5.362481, 0.000000]], [[20.231673, 4.086835, 0.000000], [19.257508, 2.887607, 0.000000]], [[17.673360, 9.663287, 10.000000], [17.954207, 8.190908, 10.000000]], [[12.539994, 9.605122, 10.000000], [13.218018, 10.050485, 10.000000]], [[13.954207, 10.190908, 10.000000], [13.218018, 10.050485, 10.000000]], [[15.368421, 9.605122, 10.000000], [14.690397, 10.050485, 10.000000]], [[12.539994, 9.605122, 0.000000], [12.094631, 8.927097, 0.000000]], [[21.328997, 9.555631, 10.000000], [21.454207, 8.190908, 10.000000]], [[12.539994, 9.605122, 10.000000], [12.094631, 8.927097, 10.000000]], [[15.368421, 9.605122, 0.000000], [14.690397, 10.050485, 0.000000]], [[-21.626640, 9.663287, 10.000000], [-21.345793, 8.190908, 10.000000]], [[18.058280, 1.913442, 10.000000], [19.257508, 2.887607, 10.000000]], [[13.954207, 10.190908, 10.000000], [14.690397, 10.050485, 10.000000]], [[15.813784, 8.927097, 10.000000], [15.368421, 9.605122, 10.000000]], [[12.094631, 8.927097, 10.000000], [11.954207, 8.190908, 10.000000]], [[14.690397, 10.050485, 0.000000], [13.954207, 10.190908, 0.000000]], [[21.454207, 8.190908, 0.000000], [21.328997, 9.555631, 0.000000]], [[13.954207, 10.190908, 0.000000], [13.218018, 10.050485, 0.000000]], [[15.813784, 8.927097, 0.000000], [15.368421, 9.605122, 0.000000]], [[13.218018, 10.050485, 0.000000], [12.539994, 9.605122, 0.000000]], [[15.813784, 8.927097, 10.000000], [15.954207, 8.190908, 10.000000]], [[11.954207, 8.190908, 10.000000], [12.094631, 7.454719, 10.000000]], [[15.954207, 8.190908, 0.000000], [15.813784, 8.927097, 0.000000]], [[12.094631, 8.927097, 0.000000], [11.954207, 8.190908, 0.000000]], [[9.954207, 8.190908, 0.000000], [10.235054, 9.663287, 0.000000]], [[14.690397, 6.331331, 0.000000], [13.954207, 6.190908, 0.000000]], [[13.218018, 6.331331, 0.000000], [12.539994, 6.776694, 0.000000]], [[13.954207, 6.190908, 0.000000], [13.218018, 6.331331, 0.000000]], [[15.368421, 6.776694, 0.000000], [14.690397, 6.331331, 0.000000]], [[20.927619, 5.430198, 0.000000], [20.231673, 4.086835, 0.000000]], [[12.539994, 6.776694, 0.000000], [12.094631, 7.454719, 0.000000]], [[12.094631, 7.454719, 0.000000], [11.954207, 8.190908, 0.000000]], [[-29.449866, 1.913442, 0.000000], [-30.649094, 2.887607, 0.000000]], [[21.328997, 6.826185, 10.000000], [21.454207, 8.190908, 10.000000]], [[15.954207, 8.190908, 10.000000], [15.813784, 7.454719, 10.000000]], [[17.954207, 8.190908, 10.000000], [17.673360, 6.718529, 10.000000]], [[16.714917, 1.217496, 10.000000], [18.058280, 1.913442, 10.000000]], [[15.813784, 7.454719, 0.000000], [15.954207, 8.190908, 0.000000]], [[21.328997, 6.826185, 0.000000], [21.454207, 8.190908, 0.000000]], [[-21.345793, 8.190908, 10.000000], [-21.626640, 6.718529, 10.000000]], [[12.094631, 7.454719, 10.000000], [12.539994, 6.776694, 10.000000]], [[15.368421, 6.776694, 10.000000], [15.813784, 7.454719, 10.000000]], [[15.368421, 6.776694, 0.000000], [15.813784, 7.454719, 0.000000]], [[12.539994, 6.776694, 10.000000], [13.218018, 6.331331, 10.000000]], [[10.235054, 6.718529, 0.000000], [9.954207, 8.190908, 0.000000]], [[21.328997, 6.826185, 10.000000], [20.927619, 5.430198, 10.000000]], [[15.368421, 6.776694, 10.000000], [14.690397, 6.331331, 10.000000]], [[13.954207, 6.190908, 10.000000], [14.690397, 6.331331, 10.000000]], [[13.218018, 6.331331, 10.000000], [13.954207, 6.190908, 10.000000]], [[20.927619, 5.430198, 0.000000], [21.328997, 6.826185, 0.000000]], [[11.125780, 5.362481, 0.000000], [10.235054, 6.718529, 0.000000]], [[-21.626640, 6.718529, 10.000000], [-22.517366, 5.362481, 10.000000]], [[17.673360, 6.718529, 10.000000], [16.782634, 5.362481, 10.000000]], [[17.673360, 6.718529, 0.000000], [16.782634, 5.362481, 0.000000]], [[15.318930, 0.816118, 10.000000], [16.714917, 1.217496, 10.000000]], [[-28.106503, 1.217496, 0.000000], [-29.449866, 1.913442, 0.000000]], [[-26.710516, 0.816118, 0.000000], [-28.106503, 1.217496, 0.000000]], [[15.426586, 4.471755, 10.000000], [16.782634, 5.362481, 10.000000]], [[16.782634, 5.362481, 0.000000], [15.426586, 4.471755, 0.000000]], [[12.481828, 4.471755, 0.000000], [11.125780, 5.362481, 0.000000]], [[20.231673, 4.086835, 10.000000], [20.927619, 5.430198, 10.000000]], [[-22.517366, 5.362481, 10.000000], [-23.873414, 4.471755, 10.000000]], [[13.954207, 0.690908, 10.000000], [15.318930, 0.816118, 10.000000]], [[13.954207, 4.190908, 10.000000], [15.426586, 4.471755, 10.000000]], [[13.954207, 4.190908, 0.000000], [12.481828, 4.471755, 0.000000]], [[-25.345793, 0.690908, 10.000000], [13.954207, 0.690908, 10.000000]], [[13.954207, 4.190908, 10.000000], [12.481828, 4.471755, 10.000000]], [[15.426586, 4.471755, 0.000000], [13.954207, 4.190908, 0.000000]], [[19.257508, 2.887607, 10.000000], [20.231673, 4.086835, 10.000000]], [[-25.345793, 0.690908, 0.000000], [13.954207, 0.690908, 0.000000]], [[13.954207, 0.690908, 0.000000], [15.318930, 0.816118, 0.000000]], [[-25.345793, 0.690908, 0.000000], [-26.710516, 0.816118, 0.000000]], [[-26.818172, 11.910061, 10.000000], [-25.345793, 12.190908, 10.000000]], [[-28.106503, 15.164320, 10.000000], [-26.710516, 15.565698, 10.000000]], [[-23.873414, 11.910061, 10.000000], [-25.345793, 12.190908, 10.000000]], [[-29.449866, 1.913442, 10.000000], [-28.106503, 1.217496, 10.000000]], [[-26.818172, 11.910061, 0.000000], [-25.345793, 12.190908, 0.000000]], [[-30.649094, 13.494209, 10.000000], [-31.623259, 12.294981, 10.000000]], [[-28.106503, 1.217496, 10.000000], [-26.710516, 0.816118, 10.000000]], [[-28.174220, 11.019335, 10.000000], [-26.818172, 11.910061, 10.000000]], [[-25.345793, 15.690908, 10.000000], [-26.710516, 15.565698, 10.000000]], [[-29.449866, 14.468374, 10.000000], [-28.106503, 15.164320, 10.000000]], [[-31.623259, 12.294981, 10.000000], [-32.319205, 10.951618, 10.000000]], [[-30.649094, 2.887607, 10.000000], [-29.449866, 1.913442, 10.000000]], [[-30.649094, 13.494209, 10.000000], [-29.449866, 14.468374, 10.000000]], [[-29.345793, 8.190908, 10.000000], [-29.064946, 9.663287, 10.000000]], [[-31.623259, 12.294981, 0.000000], [-32.319205, 10.951618, 0.000000]], [[-29.064946, 6.718529, 10.000000], [-29.345793, 8.190908, 10.000000]], [[-29.064946, 9.663287, 10.000000], [-28.174220, 11.019335, 10.000000]], [[-28.174220, 11.019335, 0.000000], [-26.818172, 11.910061, 0.000000]], [[-32.319205, 10.951618, 0.000000], [-32.720583, 9.555631, 0.000000]], [[-31.623259, 4.086835, 10.000000], [-30.649094, 2.887607, 10.000000]], [[-32.319205, 10.951618, 10.000000], [-32.720583, 9.555631, 10.000000]], [[-29.064946, 9.663287, 0.000000], [-28.174220, 11.019335, 0.000000]], [[-23.931579, 9.605122, 10.000000], [-23.486216, 8.927097, 10.000000]], [[-24.609603, 10.050485, 10.000000], [-23.931579, 9.605122, 10.000000]], [[-23.486216, 8.927097, 0.000000], [-23.931579, 9.605122, 0.000000]], [[-27.205369, 8.927097, 10.000000], [-27.345793, 8.190908, 10.000000]], [[-23.931579, 9.605122, 0.000000], [-24.609603, 10.050485, 0.000000]], [[-23.345793, 8.190908, 0.000000], [-23.486216, 8.927097, 0.000000]], [[-23.486216, 8.927097, 10.000000], [-23.345793, 8.190908, 10.000000]], [[-27.345793, 8.190908, 10.000000], [-27.205369, 7.454719, 10.000000]], [[-24.609603, 10.050485, 10.000000], [-25.345793, 10.190908, 10.000000]], [[-24.609603, 10.050485, 0.000000], [-25.345793, 10.190908, 0.000000]], [[-26.760006, 9.605122, 10.000000], [-27.205369, 8.927097, 10.000000]], [[-32.319205, 5.430198, 10.000000], [-31.623259, 4.086835, 10.000000]], [[-25.345793, 10.190908, 0.000000], [-26.081982, 10.050485, 0.000000]], [[-32.720583, 9.555631, 10.000000], [-32.845793, 8.190908, 10.000000]], [[-26.081982, 10.050485, 10.000000], [-25.345793, 10.190908, 10.000000]], [[-26.081982, 10.050485, 0.000000], [-26.760006, 9.605122, 0.000000]], [[-26.760006, 9.605122, 0.000000], [-27.205369, 8.927097, 0.000000]], [[-26.760006, 9.605122, 10.000000], [-26.081982, 10.050485, 10.000000]], [[-32.720583, 9.555631, 0.000000], [-32.845793, 8.190908, 0.000000]], [[-29.345793, 8.190908, 0.000000], [-29.064946, 9.663287, 0.000000]], [[-27.205369, 8.927097, 0.000000], [-27.345793, 8.190908, 0.000000]], [[-24.609603, 6.331331, 0.000000], [-25.345793, 6.190908, 0.000000]], [[-23.931579, 6.776694, 0.000000], [-24.609603, 6.331331, 0.000000]], [[-26.760006, 6.776694, 0.000000], [-27.205369, 7.454719, 0.000000]], [[-25.345793, 6.190908, 0.000000], [-26.081982, 6.331331, 0.000000]], [[-26.081982, 6.331331, 0.000000], [-26.760006, 6.776694, 0.000000]], [[-27.205369, 7.454719, 0.000000], [-27.345793, 8.190908, 0.000000]], [[-23.486216, 7.454719, 0.000000], [-23.345793, 8.190908, 0.000000]], [[-23.345793, 8.190908, 10.000000], [-23.486216, 7.454719, 10.000000]], [[-27.205369, 7.454719, 10.000000], [-26.760006, 6.776694, 10.000000]], [[-23.931579, 6.776694, 10.000000], [-24.609603, 6.331331, 10.000000]], [[-23.486216, 7.454719, 10.000000], [-23.931579, 6.776694, 10.000000]], [[-25.345793, 6.190908, 10.000000], [-24.609603, 6.331331, 10.000000]], [[-23.931579, 6.776694, 0.000000], [-23.486216, 7.454719, 0.000000]], [[-26.081982, 6.331331, 10.000000], [-25.345793, 6.190908, 10.000000]], [[-26.760006, 6.776694, 10.000000], [-26.081982, 6.331331, 10.000000]], [[-29.064946, 6.718529, 0.000000], [-29.345793, 8.190908, 0.000000]], [[-32.720583, 6.826185, 10.000000], [-32.319205, 5.430198, 10.000000]], [[-32.845793, 8.190908, 10.000000], [-32.720583, 6.826185, 10.000000]], [[-32.845793, 8.190908, 0.000000], [-32.720583, 6.826185, 0.000000]], [[-32.720583, 6.826185, 0.000000], [-32.319205, 5.430198, 0.000000]], [[-29.064946, 6.718529, 10.000000], [-28.174220, 5.362481, 10.000000]], [[-28.174220, 5.362481, 0.000000], [-29.064946, 6.718529, 0.000000]], [[-26.710516, 0.816118, 10.000000], [-25.345793, 0.690908, 10.000000]], [[-32.319205, 5.430198, 0.000000], [-31.623259, 4.086835, 0.000000]], [[-26.818172, 4.471755, 10.000000], [-28.174220, 5.362481, 10.000000]], [[-26.818172, 4.471755, 0.000000], [-28.174220, 5.362481, 0.000000]], [[-26.818172, 4.471755, 10.000000], [-25.345793, 4.190908, 10.000000]], [[-25.345793, 4.190908, 10.000000], [-23.873414, 4.471755, 10.000000]], [[-25.345793, 4.190908, 0.000000], [-26.818172, 4.471755, 0.000000]], [[-23.873414, 4.471755, 0.000000], [-25.345793, 4.190908, 0.000000]], [[-31.623259, 4.086835, 0.000000], [-30.649094, 2.887607, 0.000000]], ] }; document.body.appendChild(solvespace(solvespace_model_bar__)); </script> </body> </html>
doc/api/files/__/__/__/__/usr/local/lib64/ruby/gems/2_1_0/gems/activesupport-4_2_3/lib/active_support/number_helper/number_to_percentage_converter_rb.html
FiloSpaTeam/thinks
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>number_to_percentage_converter.rb</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link rel="stylesheet" href="../../../../../../../../../../../../../../../../css/reset.css" type="text/css" media="screen" /> <link rel="stylesheet" href="../../../../../../../../../../../../../../../../css/main.css" type="text/css" media="screen" /> <link rel="stylesheet" href="../../../../../../../../../../../../../../../../css/github.css" type="text/css" media="screen" /> <script src="../../../../../../../../../../../../../../../../js/jquery-1.3.2.min.js" type="text/javascript" charset="utf-8"></script> <script src="../../../../../../../../../../../../../../../../js/jquery-effect.js" type="text/javascript" charset="utf-8"></script> <script src="../../../../../../../../../../../../../../../../js/main.js" type="text/javascript" charset="utf-8"></script> <script src="../../../../../../../../../../../../../../../../js/highlight.pack.js" type="text/javascript" charset="utf-8"></script> </head> <body> <div class="banner"> <span>Ruby on Rails 4.2.3</span><br /> <h1> number_to_percentage_converter.rb </h1> <ul class="files"> <li> ../../../../usr/local/lib64/ruby/gems/2.1.0/gems/activesupport-4.2.3/lib/active_support/number_helper/number_to_percentage_converter.rb </li> <li>Last modified: 2015-08-02 14:43:36 +0200</li> </ul> </div> <div id="bodyContent"> <div id="content"> <!-- Namespace --> <div class="sectiontitle">Namespace</div> <ul> <li> <span class="type">MODULE</span> <a href="../../../../../../../../../../../../../../../../classes/ActiveSupport.html">ActiveSupport</a> </li> <li> <span class="type">MODULE</span> <a href="../../../../../../../../../../../../../../../../classes/ActiveSupport/NumberHelper.html">ActiveSupport::NumberHelper</a> </li> </ul> <!-- Methods --> </div> </div> </body> </html>
public/css/newpwd.css
niavok/syj
/* This file is part of Syj, Copyright (c) 2010-2011 Arnaud Renevier, and is published under the AGPL license. */ #message { width: 80%; margin-left: auto; margin-right: auto; } #newpwdform { width: 40em; } .form-table-elem { display: block; width: 100%; } .form-errors { color: red; font-weight: bold; }
report/html/com/rapidminer/gui/actions/SettingsAction.html
cm-is-dog/rapidminer-studio-core
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <link rel="SHORTCUT ICON" href="../../../../img/clover.ico" /> <link rel="stylesheet" href="../../../../aui/css/aui.min.css" media="all"/> <link rel="stylesheet" href="../../../../aui/css/aui-experimental.min.css" media="all"/> <!--[if IE 9]><link rel="stylesheet" href="../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]--> <style type="text/css" media="all"> @import url('../../../../style.css'); @import url('../../../../tree.css'); </style> <script src="../../../../jquery-1.8.3.min.js" type="text/javascript"></script> <script src="../../../../aui/js/aui.min.js" type="text/javascript"></script> <script src="../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script> <script src="../../../../aui/js/aui-soy.min.js" type="text/javascript"></script> <script src="../../../../package-nodes-tree.js" type="text/javascript"></script> <script src="../../../../clover-tree.js" type="text/javascript"></script> <script src="../../../../clover.js" type="text/javascript"></script> <script src="../../../../clover-descriptions.js" type="text/javascript"></script> <script src="../../../../cloud.js" type="text/javascript"></script> <title>rapidminer-studio-core 转换结果 </title> </head> <body onload="onLoad('rapidminer-studio-core 转换结果 : com.rapidminer.gui.actions.SettingsAction.java')"> <div id="page"> <header id="header" role="banner"> <nav class="aui-header aui-dropdown2-trigger-group" role="navigation"> <div class="aui-header-inner"> <div class="aui-header-primary"> <h1 id="logo" class="aui-header-logo aui-header-logo-clover"> <a href="http://www.atlassian.com/clover" title="Open Atlassian Clover home page"><span class="aui-header-logo-device">Clover</span></a> </h1> </div> <div class="aui-header-secondary"> <ul class="aui-nav"> <li id="system-help-menu"> <a class="aui-nav-link" title="Open online Clover documentation" target="_blank" href="https://confluence.atlassian.com/display/CLOVER/Clover+Documentation+Home"> <span class="aui-icon aui-icon-small aui-iconfont-help">&#160;Help</span> </a> </li> </ul> </div> </div> </nav> </header> <div class="aui-page-panel"> <div class="aui-page-panel-inner"> <div class="aui-page-panel-nav aui-page-panel-nav-clover"> <div class="aui-page-header-inner" style="margin-bottom: 20px;"> <div class="aui-page-header-image"> <div class="aui-avatar aui-avatar-large aui-avatar-project"> <div class="aui-avatar-inner"> <img src="../../../../img/clover_logo_large.png" alt="Clover icon"/> </div> </div> </div> <div class="aui-page-header-main" > <h1> rapidminer-studio-core 转换结果 </h1> </div> </div> <nav class="aui-navgroup aui-navgroup-vertical"> <div class="aui-navgroup-inner"> <ul class="aui-nav"> <li class=""> <a href="../../../../dashboard.html">Project overview</a> </li> </ul> <div class="aui-nav-heading packages-nav-heading"> <strong>Packages</strong> </div> <div class="aui-nav project-packages"> <form method="get" action="#" class="aui package-filter-container"> <input type="text" autocomplete="off" class="package-filter text" placeholder="Type to filter packages..." name="package-filter" id="package-filter" title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/> </form> <p class="package-filter-no-results-message hidden"> <small>No results found.</small> </p> <div class="packages-tree-wrapper" data-root-relative="../../../../" data-package-name="com.rapidminer.gui.actions"> <div class="packages-tree-container"></div> <div class="clover-packages-lozenges"></div> </div> </div> </div> </nav> </div> <section class="aui-page-panel-content"> <div class="aui-page-panel-content-clover"> <ol class="aui-nav aui-nav-breadcrumbs"> <li><a href="../../../../dashboard.html">Project Clover database 星期二 九月 5 2017 16:40:29 CST</a></li> <li><a href="pkg-summary.html"> Package com.rapidminer.gui.actions</a></li> </ol> <h1 class="aui-h2-clover"> File SettingsAction.java </h1> <div class="aui-message aui-message-warning"> <p class="title"> <strong>Evaluation License</strong> </p> <p> This report was generated with an evaluation server license. <a href="http://www.atlassian.com/software/clover">Purchase Clover</a> or <a href="http://confluence.atlassian.com/x/JAgQCQ">configure your license.</a> </p> </div> <div class="aui-tabs horizontal-tabs" id="tabs-file"> <div class="tabs-pane aui-tabs-pane-100-pcnt active-pane" id="tabs-file-source"> <div>&#160;</div> <div style="display: table; width: 100%"> <div style="display: table-cell; "> <div class="dashboard-widget"> <header class="dashboard-widget-header"> <h3>Code metrics</h3> </header> <div class="dashboard-widget-content"> <div id="td-header-stats" class="aui-item" style="display: "> <div style="display: table"> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of branches in this file">Branches:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of statements in this file">Statements:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of methods in this file">Methods:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of classes in this file">Classes:</label></div> <div class="stats-box-value">1</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of lines of code in this file">LOC:</label></div> <div class="stats-box-value">47</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of non-comment lines of code in this file">NCLOC:</label></div> <div class="stats-box-value">14</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Cyclomatic complexity is the number of paths in this file">Total complexity:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"> <label title="Complexity density is the complexity divided by the number of statements in this file">Complexity density:</label> </div> <div class="stats-box-value">-</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Number of statements per method.">Statements/Method:</label></div> <div class="stats-box-value">-</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Number of methods per class.">Methods/Class:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Complexity divided by the number of methods in this file">Average method complexity:</label></div> <div class="stats-box-value">-</div> </div> </div> <div class="subtle"> <small><strong>100%</strong> of code in this file is excluded from these metrics.</small> <label class="aui-button aui-button-subtle" onclick="toggleStats('td-header-stats', 'td-filtered-header-stats');" title="Include or exclude filtered elements from these statistics.">Remove Filter</label> </div> </div> <div id="td-filtered-header-stats" class="aui-item" style="display: none"> <div style="display: table"> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of branches in this file">Branches:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of statements in this file">Statements:</label></div> <div class="stats-box-value">2</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of methods in this file">Methods:</label></div> <div class="stats-box-value">2</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of classes in this file">Classes:</label></div> <div class="stats-box-value">1</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of lines of code in this file">LOC:</label></div> <div class="stats-box-value">47</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of non-comment lines of code in this file">NCLOC:</label></div> <div class="stats-box-value">14</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Cyclomatic complexity is the number of paths in this file">Total complexity:</label></div> <div class="stats-box-value">2</div> </div> <div class="stats-box"> <div class="stats-box-label"> <label title="Complexity density is the complexity divided by the number of statements in this file">Complexity density:</label> </div> <div class="stats-box-value">1</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Number of statements per method.">Statements/Method:</label></div> <div class="stats-box-value">1</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Number of methods per class.">Methods/Class:</label></div> <div class="stats-box-value">2</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Complexity divided by the number of methods in this file">Average method complexity:</label></div> <div class="stats-box-value">1</div> </div> </div> <div class="subtle"> <small>These metrics include <strong class='bold'>100%</strong> of code marked as filtered.</small> <label class="aui-button aui-button-subtle" onclick="toggleStats('td-filtered-header-stats', 'td-header-stats');" title="Include or exclude filtered elements from these statistics.">Apply Filter</label> </div> </div> </div> </div> </div> </div> <h2>Classes</h2> <table class="aui aui-table-sortable"> <thead> <tr> <th>Class</th> <th>Line #</th> <th class=""> <label title="The total number of statements.">Total Statements</label> </th> <th class=""> <label title="Cyclomatic complexity is a measure of the number of paths in your code.">Complexity</label> </th> <th class=""> <label title="The amount of code that was hit at least once during testing.">TOTAL Coverage</label> </th> <th>Actions</th> </tr> </thead> <tbody> <tr> <td id="SettingsAction"> <span><a href="#32" title="SettingsAction" onclick="closeDialogAndScrollTo('dialog-SettingsAction', '32');">SettingsAction</a></span> </td> <td>32<a name="sl-32"></a></td> <td class="">0</td> <td class="">0</td> <td class=""><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> <td><button data-dialog-id="dialog-SettingsAction" class="aui-button aui-button-link dialog-show-button">Show methods</button></td> </tr> </tbody> </table> <section role="dialog" id="dialog-SettingsAction" class="aui-layer aui-dialog2 aui-dialog2-xlarge" aria-hidden="true"> <header class="aui-dialog2-header"> <h1 class="aui-dialog2-header-main">Class SettingsAction</h1> <div class="aui-dialog2-header-secondary"> <input id="dialog-SettingsAction-method-filter" class="test-filter text" type="text" name="method-filter" placeholder="Type to filter methods..." autocomplete="off" onkeyup="filterMethods('dialog-SettingsAction-methods-body', 'dialog-SettingsAction-method-filter');"/> </div> </header> <div class="aui-dialog2-content"> <table class="aui aui-table-sortable"> <thead> <tr> <th id="SettingsAction"> Class<br/> <span><a href="#32" title="SettingsAction" onclick="closeDialogAndScrollTo('dialog-SettingsAction', '32');">SettingsAction</a></span> </th> <th>Line #<br/>32<a name="sl-32"></a></th> <th class=""><label title="The total number of statements.">Total Statements</label><br/>0</th> <th class=""><label title="Cyclomatic complexity is a measure of the number of paths in your code.">Complexity</label><br/>0</th> <th class=""><label title="The amount of code that was hit at least once during testing.">TOTAL Coverage</label><br/><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></th> </tr> </thead> <tbody id="dialog-SettingsAction-methods-body"> <tr id="SettingsAction-1"> <td id="summary-36-2"> <span class="sortValue">SettingsAction()</span> &#160;&#160;<a href="?line=29#36" title="SettingsAction()" name="sl-36" onclick="closeDialogAndScrollTo('dialog-SettingsAction', '36');">SettingsAction()</a> </td> <td align="right"><span class="sortValue">36</span>36</td> <td class="" align="right"><span class="sortValue">0.0</span>0</td> <td class="" align="right"><span class="sortValue">1.0</span>1</td> <td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> </tr> <tr id="SettingsAction-2"> <td id="summary-43-2"> <span class="sortValue">actionPerformed(ActionEvent)&#160;:&#160;void</span> &#160;&#160;<a href="?line=29#43" title="actionPerformed(ActionEvent)&#160;:&#160;void" name="sl-43" onclick="closeDialogAndScrollTo('dialog-SettingsAction', '43');">actionPerformed(ActionEvent)&#160;:&#160;void</a> </td> <td align="right"><span class="sortValue">43</span>43</td> <td class="" align="right"><span class="sortValue">0.0</span>0</td> <td class="" align="right"><span class="sortValue">1.0</span>1</td> <td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> </tr> </tbody> </table> <div>&#160;</div> </div> <footer class="aui-dialog2-footer"> <div class="aui-dialog2-footer-actions"> <button class="aui-button aui-button-primary dialog-close-button" data-dialog-id="dialog-SettingsAction">Close</button> </div> <div class="aui-dialog2-footer-hint">Click on a class or a method name to jump to source.</div> </footer> </section> <div>&#160;</div> <h2>Contributing tests</h2> <div class="aui-message"> <p>No tests hitting this source file were found.</p> </div> <h2>Source view</h2> <div style="display: table; width: 100%;"> <div style="display: table-cell"> <button class="aui-button aui-button-link" title="Toggles all methods in the source to be either expanded or collapsed." onclick="toggleAllInlineMethods(this); return false;" id="method-expander"> Collapse all methods </button> </div> <div style="display: table-cell"> <div style="text-align: right; margin-bottom: 10px"> <button class="aui-button aui-button-subtle" id="popupHelp"> <span class="aui-icon aui-icon-small aui-iconfont-help"></span>&#160;Show legend </button> <script> AJS.InlineDialog(AJS.$("#popupHelp"), "helpDialog", function(content, trigger, showPopup) { content.css({"padding":"20px"}).html(SRC_FILE_LEGEND_TEXT); showPopup(); return false; }, { width: 700, hideDelay: 60000 } ); </script> </div> </div> </div> <table cellspacing="0" cellpadding="0" class="srcView" width="100%"> <tbody> <tr id="l1"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=1#src-1">1</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-1" class="srcLine"><span class="comment">/**</span></span></td> </tr> <tr id="l2"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=2#src-2">2</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-2" class="srcLine"><span class="comment"> * Copyright (C) 2001-2017 by RapidMiner and the contributors</span></span></td> </tr> <tr id="l3"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=3#src-3">3</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-3" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l4"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=4#src-4">4</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-4" class="srcLine"><span class="comment"> * Complete list of developers available at our web site:</span></span></td> </tr> <tr id="l5"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=5#src-5">5</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-5" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l6"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=6#src-6">6</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-6" class="srcLine"><span class="comment"> * http://rapidminer.com</span></span></td> </tr> <tr id="l7"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=7#src-7">7</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-7" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l8"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=8#src-8">8</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-8" class="srcLine"><span class="comment"> * This program is free software: you can redistribute it and/or modify it under the terms of the</span></span></td> </tr> <tr id="l9"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=9#src-9">9</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-9" class="srcLine"><span class="comment"> * GNU Affero General Public License as published by the Free Software Foundation, either version 3</span></span></td> </tr> <tr id="l10"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=10#src-10">10</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-10" class="srcLine"><span class="comment"> * of the License, or (at your option) any later version.</span></span></td> </tr> <tr id="l11"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=11#src-11">11</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-11" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l12"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=12#src-12">12</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-12" class="srcLine"><span class="comment"> * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without</span></span></td> </tr> <tr id="l13"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=13#src-13">13</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-13" class="srcLine"><span class="comment"> * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span></span></td> </tr> <tr id="l14"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=14#src-14">14</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-14" class="srcLine"><span class="comment"> * Affero General Public License for more details.</span></span></td> </tr> <tr id="l15"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=15#src-15">15</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-15" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l16"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=16#src-16">16</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-16" class="srcLine"><span class="comment"> * You should have received a copy of the GNU Affero General Public License along with this program.</span></span></td> </tr> <tr id="l17"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=17#src-17">17</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-17" class="srcLine"><span class="comment"> * If not, see http://www.gnu.org/licenses/.</span></span></td> </tr> <tr id="l18"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=18#src-18">18</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-18" class="srcLine"><span class="comment">*/</span></span></td> </tr> <tr id="l19"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=19#src-19">19</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-19" class="srcLine"><span class="keyword">package</span> com.<a href="../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../gui/pkg-summary.html">gui</a>.<a href="../actions/pkg-summary.html">actions</a>;</span></td> </tr> <tr id="l20"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=20#src-20">20</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-20" class="srcLine"></span></td> </tr> <tr id="l21"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=21#src-21">21</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-21" class="srcLine"><span class="keyword">import</span> java.awt.event.ActionEvent;</span></td> </tr> <tr id="l22"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=22#src-22">22</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-22" class="srcLine"></span></td> </tr> <tr id="l23"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=23#src-23">23</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-23" class="srcLine"><span class="keyword">import</span> com.<a href="../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../gui/pkg-summary.html">gui</a>.<a href="../properties/pkg-summary.html">properties</a>.<a href="../../../../com/rapidminer/gui/properties/SettingsDialog.html#SettingsDialog">SettingsDialog</a>;</span></td> </tr> <tr id="l24"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=24#src-24">24</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-24" class="srcLine"><span class="keyword">import</span> com.<a href="../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../gui/pkg-summary.html">gui</a>.<a href="../tools/pkg-summary.html">tools</a>.<a href="../../../../com/rapidminer/gui/tools/ResourceAction.html#ResourceAction">ResourceAction</a>;</span></td> </tr> <tr id="l25"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=25#src-25">25</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-25" class="srcLine"></span></td> </tr> <tr id="l26"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=26#src-26">26</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-26" class="srcLine"></span></td> </tr> <tr id="l27"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=27#src-27">27</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-27" class="srcLine"><span class="comment">/**</span></span></td> </tr> <tr id="l28"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=28#src-28">28</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-28" class="srcLine"><span class="comment"> * Start the corresponding action.</span></span></td> </tr> <tr id="l29"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=29#src-29">29</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-29" class="srcLine"><span class="comment"> *</span></span></td> </tr> <tr id="l30"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=30#src-30">30</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-30" class="srcLine"><span class="comment"> * </span><span class="javadoc">@author</span><span class="comment"> Ingo Mierswa</span></span></td> </tr> <tr id="l31"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=31#src-31">31</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-31" class="srcLine"><span class="comment"> */</span></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="32" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-32' onclick="toggleInlineStats(this, 'inlinestats-32');"/> <td align="center" valign="middle"> <table id="inlinestats-32" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-32'), 'inlinestats-32');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 0</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l32"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=32#src-32">32</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" id="id-32"><span class="spacer"></span><span id="src-32" class="srcLine"><span class="keyword">public</span> <span class="keyword">class</span> <a href="../../../../com/rapidminer/gui/actions/SettingsAction.html#SettingsAction">SettingsAction</a> <span class="keyword">extends</span> <a href="../../../../com/rapidminer/gui/tools/ResourceAction.html#ResourceAction">ResourceAction</a> {</span></td> </tr> <tr id="l33"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=33#src-33">33</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-33" class="srcLine"></span></td> </tr> <tr id="l34"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=34#src-34">34</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-34" class="srcLine"> <span class="keyword">private</span> <span class="keyword">static</span> <span class="keyword">final</span> <span class="keyword">long</span> serialVersionUID = 4675057674892640002L;</span></td> </tr> <tr id="l35"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=35#src-35">35</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-35" class="srcLine"></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="36" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-36' onclick="toggleInlineStats(this, 'inlinestats-36');"/> <td align="center" valign="middle"> <table id="inlinestats-36" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-36'), 'inlinestats-36');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 1</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l36"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=36#src-36">36</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" methodStart srcCell" id="id-36"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 36,38);" id="img-36" src="../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-36" class="srcLineFiltered"><span class="nolink" title="Filtered by: constructor"> <span class="keyword">public</span> <a href="../../../../com/rapidminer/gui/actions/SettingsAction.html#SettingsAction">SettingsAction</a>() {</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-36'), 36,38);" id="e36" style="display:none;border:none;">...</span></span></td> </tr> <tr id="l37"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=37#src-37">37</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-37" class="srcLineFiltered"><span class="nolink" title="Filtered by: constructor"> <span class="keyword">super</span>(<span class="string">&quot;preferences&quot;</span>);</span></span></td> </tr> <tr id="l38"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=38#src-38">38</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-38" class="srcLine"> }</span></td> </tr> <tr id="l39"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=39#src-39">39</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-39" class="srcLine"></span></td> </tr> <tr id="l40"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=40#src-40">40</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-40" class="srcLine"> <span class="comment">/**</span></span></td> </tr> <tr id="l41"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=41#src-41">41</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-41" class="srcLine"><span class="comment"> * Opens the settings dialog</span></span></td> </tr> <tr id="l42"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=42#src-42">42</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-42" class="srcLine"><span class="comment"> */</span></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="43" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-43' onclick="toggleInlineStats(this, 'inlinestats-43');"/> <td align="center" valign="middle"> <table id="inlinestats-43" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-43'), 'inlinestats-43');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 1</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l43"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=43#src-43">43</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" methodStart srcCell" id="id-43"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 43,46);" id="img-43" src="../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-43" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-43'), 43,46);" id="e43" style="display:none;border:none;">...</span></span></td> </tr> <tr id="l44"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=44#src-44">44</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-44" class="srcLine"> <span class="keyword">public</span> <span class="keyword">void</span> actionPerformed(ActionEvent e) {</span></td> </tr> <tr id="l45"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=45#src-45">45</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-45" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">new</span> <a href="../../../../com/rapidminer/gui/properties/SettingsDialog.html#SettingsDialog">SettingsDialog</a>().setVisible(<span class="keyword">true</span>);</span></span></td> </tr> <tr id="l46"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=46#src-46">46</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-46" class="srcLine"> }</span></td> </tr> <tr id="l47"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=47#src-47">47</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-47" class="srcLine">}</span></td> </tr> </tbody></table> </div> </div><!-- .aui-tabs --> <script type="text/javascript"> var ol_bgclass = "overBG"; var ol_fgclass = "overFG"; var ol_cgclass = "overCaption"; var ol_captionfontclass= "overCaption"; var ol_closefontclass = "closeFont"; var ol_closeclick = 1; var ol_close = 'X'; var ol_wrap = 1; var rootRelPath = '../../../../'; var testsPerFile = -1; </script> <script src="SettingsAction.js" type="text/javascript"></script> </div> <!-- class="aui-page-panel-content-clover" --> <footer id="footer" role="contentinfo"> <section class="footer-body"> <ul> <li> Report generated by <a target="_new" href="http://www.atlassian.com/software/clover">Atlassian Clover</a> v 4.1.2 on 星期二 九月 5 2017 17:24:16 CST using coverage data from 星期四 一月 1 1970 08:00:00 CST. </li> </ul> <ul> <li>Clover Evaluation License registered to Clover Plugin. You have 29 day(s) before your license expires.</li> </ul> <div id="footer-logo"> <a target="_blank" href="http://www.atlassian.com/"> Atlassian </a> </div> </section> </footer> </section> <!-- class="aui-page-panel-content" --> </div> <!-- class="aui-page-panel-inner" --> </div> <!-- class="aui-page-panel" --> </div> <!-- id="page" --> </body> </html>
www/_assets/js/index.html
matthias-samwald/find-me-evidence
<?php $type = 'text/javascript'; $files = array( 'jqm-demos.js', 'view-source.js', 'h2widget.js', 'globalnav.js' ); require_once('../../../combine.html'); ?>
rules/rules-rgaa4.0/src/test/resources/testcases/rgaa40/Rgaa40Rule010206/Rgaa40.Test.1.2.6-1Passed-01.html
Asqatasun/Asqatasun
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Rgaa 4.0 Test.1.2.6 Passed 01</title> </head> <body class="Passed"> <div> <h1>Rgaa 4.0 Test.1.2.6 Passed 01</h1> <!-- START [test-detail] --> <div class="test-detail" lang="fr"> <p>Chaque image embarquée (balise <code>&lt;embed&gt;</code> avec l’attribut <code>type="image/…"</code>) <a href="https://www.numerique.gouv.fr/publications/rgaa-accessibilite/methode/glossaire/#image-de-decoration">de décoration</a>, sans <a href="https://www.numerique.gouv.fr/publications/rgaa-accessibilite/methode/glossaire/#legende">légende</a>, vérifie-t-elle ces conditions ?</p> <ul> <li>La balise <code>&lt;embed&gt;</code> possède un attribut WAI-ARIA <code>aria-hidden="true"</code>.</li> <li>La balise <code>&lt;embed&gt;</code> et ses enfants sont dépourvus d’<a href="https://www.numerique.gouv.fr/publications/rgaa-accessibilite/methode/glossaire/#alternative-textuelle-image">alternative textuelle</a>.</li> </ul> </div> <!-- END [test-detail] --> <!-- START [testcase] --> <div class="testcase"> <embed type="image" src="dummy.png" aria-hidden="true" class="decorative-image"> <figure> <embed type="image" src="dummy.png" aria-hidden="true" class="decorative-image"> </figure> </div> <!-- END [testcase] --> <!-- START [test-explanation] --> <div class="test-explanation"> Passed. </div> <!-- END [test-explanation] --> </div> </body> </html>
static/css/estilos.css
piratas/gti2py
@charset 'UTF-8'; /* Kopimi 2015 Desobediente Civil <desci@riseup.net> this file is released under public domain and you can use without limitations */ ul.botoes { list-style-type:none; display:inline; } ul.botoes li { padding:0.1em; }
html/classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_renderer_1_1_row_header_renderer-members.html
gayathery/amos
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.10"/> <title>Req Tracker: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="Logo_documentation.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">Req Tracker &#160;<span id="projectnumber">0.9</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.10 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Packages</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespacede.html">de</a></li><li class="navelem"><a class="el" href="namespacede_1_1fau.html">fau</a></li><li class="navelem"><a class="el" href="namespacede_1_1fau_1_1osr.html">osr</a></li><li class="navelem"><a class="el" href="namespacede_1_1fau_1_1osr_1_1gui.html">gui</a></li><li class="navelem"><a class="el" href="namespacede_1_1fau_1_1osr_1_1gui_1_1_view.html">View</a></li><li class="navelem"><a class="el" href="namespacede_1_1fau_1_1osr_1_1gui_1_1_view_1_1_renderer.html">Renderer</a></li><li class="navelem"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_renderer_1_1_row_header_renderer.html">RowHeaderRenderer</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">de.fau.osr.gui.View.Renderer.RowHeaderRenderer&lt; E &gt; Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_renderer_1_1_row_header_renderer.html">de.fau.osr.gui.View.Renderer.RowHeaderRenderer&lt; E &gt;</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_renderer_1_1_row_header_renderer.html#a4c3eec1549ade3c33b41d305b1fe5bbc">getListCellRendererComponent</a>(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus)</td><td class="entry"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_renderer_1_1_row_header_renderer.html">de.fau.osr.gui.View.Renderer.RowHeaderRenderer&lt; E &gt;</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_renderer_1_1_row_header_renderer.html#ab80bb4ce26b680c5e28bc74cb4f49015">RowHeaderRenderer</a>(JTable table)</td><td class="entry"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_renderer_1_1_row_header_renderer.html">de.fau.osr.gui.View.Renderer.RowHeaderRenderer&lt; E &gt;</a></td><td class="entry"></td></tr> </table></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.10 </small></address> </body> </html>
static/blog/40123133-wang-ji-2d-zheng-chi-lun-bao-gao.html
2015fallhw/cdw11
<!DOCTYPE html> <html lang="en" > <head> <title>40123133 網際 2D 正齒輪 報告 - CDW11 網頁 (虎尾科大MDE)</title> <!-- Using the latest rendering mode for IE --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style type="text/css"> /*some stuff for output/input prompts*/ div.cell{border:1px solid transparent;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch}div.cell.selected{border-radius:4px;border:thin #ababab solid} div.cell.edit_mode{border-radius:4px;border:thin #008000 solid} div.cell{width:100%;padding:5px 5px 5px 0;margin:0;outline:none} div.prompt{min-width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.21429em} @media (max-width:480px){div.prompt{text-align:left}}div.inner_cell{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1} div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;line-height:1.21429em} div.prompt:empty{padding-top:0;padding-bottom:0} div.input{page-break-inside:avoid;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;} div.inner_cell{width:90%;} div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;} div.input_prompt{color:navy;border-top:1px solid transparent;} div.output_wrapper{margin-top:5px;position:relative;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;width:100%;} div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);-moz-box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);} div.output_collapsed{margin:0px;padding:0px;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;width:100%;} div.out_prompt_overlay{height:100%;padding:0px 0.4em;position:absolute;border-radius:4px;} div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000000;-moz-box-shadow:inset 0 0 1px #000000;box-shadow:inset 0 0 1px #000000;background:rgba(240, 240, 240, 0.5);} div.output_prompt{color:darkred;} a.anchor-link:link{text-decoration:none;padding:0px 20px;visibility:hidden;} h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible;} /* end stuff for output/input prompts*/ .highlight-ipynb .hll { background-color: #ffffcc } .highlight-ipynb { background: #f8f8f8; } .highlight-ipynb .c { color: #408080; font-style: italic } /* Comment */ .highlight-ipynb .err { border: 1px solid #FF0000 } /* Error */ .highlight-ipynb .k { color: #008000; font-weight: bold } /* Keyword */ .highlight-ipynb .o { color: #666666 } /* Operator */ .highlight-ipynb .cm { color: #408080; font-style: italic } /* Comment.Multiline */ .highlight-ipynb .cp { color: #BC7A00 } /* Comment.Preproc */ .highlight-ipynb .c1 { color: #408080; font-style: italic } /* Comment.Single */ .highlight-ipynb .cs { color: #408080; font-style: italic } /* Comment.Special */ .highlight-ipynb .gd { color: #A00000 } /* Generic.Deleted */ .highlight-ipynb .ge { font-style: italic } /* Generic.Emph */ .highlight-ipynb .gr { color: #FF0000 } /* Generic.Error */ .highlight-ipynb .gh { color: #000080; font-weight: bold } /* Generic.Heading */ .highlight-ipynb .gi { color: #00A000 } /* Generic.Inserted */ .highlight-ipynb .go { color: #888888 } /* Generic.Output */ .highlight-ipynb .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ .highlight-ipynb .gs { font-weight: bold } /* Generic.Strong */ .highlight-ipynb .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ .highlight-ipynb .gt { color: #0044DD } /* Generic.Traceback */ .highlight-ipynb .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ .highlight-ipynb .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ .highlight-ipynb .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ .highlight-ipynb .kp { color: #008000 } /* Keyword.Pseudo */ .highlight-ipynb .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ .highlight-ipynb .kt { color: #B00040 } /* Keyword.Type */ .highlight-ipynb .m { color: #666666 } /* Literal.Number */ .highlight-ipynb .s { color: #BA2121 } /* Literal.String */ .highlight-ipynb .na { color: #7D9029 } /* Name.Attribute */ .highlight-ipynb .nb { color: #008000 } /* Name.Builtin */ .highlight-ipynb .nc { color: #0000FF; font-weight: bold } /* Name.Class */ .highlight-ipynb .no { color: #880000 } /* Name.Constant */ .highlight-ipynb .nd { color: #AA22FF } /* Name.Decorator */ .highlight-ipynb .ni { color: #999999; font-weight: bold } /* Name.Entity */ .highlight-ipynb .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ .highlight-ipynb .nf { color: #0000FF } /* Name.Function */ .highlight-ipynb .nl { color: #A0A000 } /* Name.Label */ .highlight-ipynb .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ .highlight-ipynb .nt { color: #008000; font-weight: bold } /* Name.Tag */ .highlight-ipynb .nv { color: #19177C } /* Name.Variable */ .highlight-ipynb .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ .highlight-ipynb .w { color: #bbbbbb } /* Text.Whitespace */ .highlight-ipynb .mf { color: #666666 } /* Literal.Number.Float */ .highlight-ipynb .mh { color: #666666 } /* Literal.Number.Hex */ .highlight-ipynb .mi { color: #666666 } /* Literal.Number.Integer */ .highlight-ipynb .mo { color: #666666 } /* Literal.Number.Oct */ .highlight-ipynb .sb { color: #BA2121 } /* Literal.String.Backtick */ .highlight-ipynb .sc { color: #BA2121 } /* Literal.String.Char */ .highlight-ipynb .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ .highlight-ipynb .s2 { color: #BA2121 } /* Literal.String.Double */ .highlight-ipynb .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ .highlight-ipynb .sh { color: #BA2121 } /* Literal.String.Heredoc */ .highlight-ipynb .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ .highlight-ipynb .sx { color: #008000 } /* Literal.String.Other */ .highlight-ipynb .sr { color: #BB6688 } /* Literal.String.Regex */ .highlight-ipynb .s1 { color: #BA2121 } /* Literal.String.Single */ .highlight-ipynb .ss { color: #19177C } /* Literal.String.Symbol */ .highlight-ipynb .bp { color: #008000 } /* Name.Builtin.Pseudo */ .highlight-ipynb .vc { color: #19177C } /* Name.Variable.Class */ .highlight-ipynb .vg { color: #19177C } /* Name.Variable.Global */ .highlight-ipynb .vi { color: #19177C } /* Name.Variable.Instance */ .highlight-ipynb .il { color: #666666 } /* Literal.Number.Integer.Long */ </style> <style type="text/css"> /* Overrides of notebook CSS for static HTML export */ div.entry-content { overflow: visible; padding: 8px; } .input_area { padding: 0.2em; } a.heading-anchor { white-space: normal; } .rendered_html code { font-size: .8em; } pre.ipynb { color: black; background: #f7f7f7; border: none; box-shadow: none; margin-bottom: 0; padding: 0; margin: 0px; font-size: 13px; } /* remove the prompt div from text cells */ div.text_cell .prompt { display: none; } /* remove horizontal padding from text cells, */ /* so it aligns with outer body text */ div.text_cell_render { padding: 0.5em 0em; } img.anim_icon{padding:0; border:0; vertical-align:middle; -webkit-box-shadow:none; -box-shadow:none} </style> <script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> <script type="text/javascript"> init_mathjax = function() { if (window.MathJax) { // MathJax loaded MathJax.Hub.Config({ tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], displayMath: [ ['$$','$$'], ["\\[","\\]"] ] }, displayAlign: 'left', // Change this to 'center' to center equations. "HTML-CSS": { styles: {'.MathJax_Display': {"margin": 0}} } }); MathJax.Hub.Queue(["Typeset",MathJax.Hub]); } } init_mathjax(); </script> <link rel="canonical" href="http://cdw11-ag100.rhcloud.com/static/blog/40123133-wang-ji-2d-zheng-chi-lun-bao-gao.html"> <meta name="author" content="40123133" /> <meta name="keywords" content="40123133,cdw14" /> <meta name="description" content="啟動 cdw14 協同專案" /> <meta property="og:site_name" content="CDW11 網頁 (虎尾科大MDE)" /> <meta property="og:type" content="article"/> <meta property="og:title" content="40123133 網際 2D 正齒輪 報告"/> <meta property="og:url" content="http://cdw11-ag100.rhcloud.com/static/blog/40123133-wang-ji-2d-zheng-chi-lun-bao-gao.html"/> <meta property="og:description" content="啟動 cdw14 協同專案"/> <meta property="article:published_time" content="2016-06-30" /> <meta property="article:section" content="bg1" /> <meta property="article:tag" content="40123133" /> <meta property="article:tag" content="cdw14" /> <meta property="article:author" content="40123133" /> <!-- Bootstrap --> <link rel="stylesheet" href="http://cdw11-ag100.rhcloud.com/static/blog/theme/css/bootstrap.united.min.css" type="text/css"/> <link href="http://cdw11-ag100.rhcloud.com/static/blog/theme/css/font-awesome.min.css" rel="stylesheet"> <link href="http://cdw11-ag100.rhcloud.com/static/blog/theme/css/pygments/monokai.css" rel="stylesheet"> <link href="http://cdw11-ag100.rhcloud.com/static/blog/theme/tipuesearch/tipuesearch.css" rel="stylesheet"> <link rel="stylesheet" href="http://cdw11-ag100.rhcloud.com/static/blog/theme/css/style.css" type="text/css"/> <link href="http://cdw11-ag100.rhcloud.com/static/blog/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="CDW11 網頁 (虎尾科大MDE) ATOM Feed"/> <script type="text/javascript" src="http://cad-lab.github.io/cadlab_data/files/syntaxhighlighter/shCore.js"></script> <script type="text/javascript" src="http://cad-lab.github.io/cadlab_data/files/syntaxhighlighter/shBrushJScript.js"></script> <script type="text/javascript" src="http://cad-lab.github.io/cadlab_data/files/syntaxhighlighter/shBrushJava.js"></script> <script type="text/javascript" src="http://cad-lab.github.io/cadlab_data/files/syntaxhighlighter/shBrushPython.js"></script> <script type="text/javascript" src="http://cad-lab.github.io/cadlab_data/files/syntaxhighlighter/shBrushSql.js"></script> <script type="text/javascript" src="http://cad-lab.github.io/cadlab_data/files/syntaxhighlighter/shBrushXml.js"></script> <script type="text/javascript" src="http://cad-lab.github.io/cadlab_data/files/syntaxhighlighter/shBrushPhp.js"></script> <script type="text/javascript" src="http://cad-lab.github.io/cadlab_data/files/syntaxhighlighter/shBrushCpp.js"></script> <script type="text/javascript" src="http://cad-lab.github.io/cadlab_data/files/syntaxhighlighter/shBrushCss.js"></script> <script type="text/javascript" src="http://cad-lab.github.io/cadlab_data/files/syntaxhighlighter/shBrushCSharp.js"></script> <script type='text/javascript'> (function(){ var corecss = document.createElement('link'); var themecss = document.createElement('link'); var corecssurl = "http://cad-lab.github.io/cadlab_data/files/syntaxhighlighter/css/shCore.css"; if ( corecss.setAttribute ) { corecss.setAttribute( "rel", "stylesheet" ); corecss.setAttribute( "type", "text/css" ); corecss.setAttribute( "href", corecssurl ); } else { corecss.rel = "stylesheet"; corecss.href = corecssurl; } document.getElementsByTagName("head")[0].insertBefore( corecss, document.getElementById("syntaxhighlighteranchor") ); var themecssurl = "http://cad-lab.github.io/cadlab_data/files/syntaxhighlighter/css/shThemeDefault.css?ver=3.0.9b"; if ( themecss.setAttribute ) { themecss.setAttribute( "rel", "stylesheet" ); themecss.setAttribute( "type", "text/css" ); themecss.setAttribute( "href", themecssurl ); } else { themecss.rel = "stylesheet"; themecss.href = themecssurl; } //document.getElementById("syntaxhighlighteranchor").appendChild(themecss); document.getElementsByTagName("head")[0].insertBefore( themecss, document.getElementById("syntaxhighlighteranchor") ); })(); SyntaxHighlighter.config.strings.expandSource = '+ expand source'; SyntaxHighlighter.config.strings.help = '?'; SyntaxHighlighter.config.strings.alert = 'SyntaxHighlighter\n\n'; SyntaxHighlighter.config.strings.noBrush = 'Can\'t find brush for: '; SyntaxHighlighter.config.strings.brushNotHtmlScript = 'Brush wasn\'t configured for html-script option: '; SyntaxHighlighter.defaults['pad-line-numbers'] = false; SyntaxHighlighter.defaults['toolbar'] = false; SyntaxHighlighter.all(); </script> </head> <body> <div class="navbar navbar-default navbar-fixed-top" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a href="http://cdw11-ag100.rhcloud.com/static/blog/" class="navbar-brand"> CDW11 網頁 (虎尾科大MDE) </a> </div> <div class="collapse navbar-collapse navbar-ex1-collapse"> <ul class="nav navbar-nav"> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag1.html">Ag1</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag10.html">Ag10</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag100.html">Ag100</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag2.html">Ag2</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag3.html">Ag3</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag4.html">Ag4</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag5.html">Ag5</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag6.html">Ag6</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag7.html">Ag7</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag8.html">Ag8</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag9.html">Ag9</a> </li> <li class="active"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg1.html">Bg1</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg10.html">Bg10</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg101.html">Bg101</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg11.html">Bg11</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg15.html">Bg15</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg2.html">Bg2</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg3.html">Bg3</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg4.html">Bg4</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg5.html">Bg5</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg6.html">Bg6</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg8.html">Bg8</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg9.html">Bg9</a> </li> <li > <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/g3.html">G3</a> </li> </ul> <ul class="nav navbar-nav navbar-right"> <li><span> <form class="navbar-search" action="http://cdw11-ag100.rhcloud.com/static/blog/search.html"> <input type="text" class="search-query" placeholder="Search" name="q" id="tipue_search_input" required> </form></span> </li> <li><a href="http://cdw11-ag100.rhcloud.com/static/blog/archives.html"><i class="fa fa-th-list"></i><span class="icon-label">Archives</span></a></li> </ul> </div> <!-- /.navbar-collapse --> </div> </div> <!-- /.navbar --> <!-- Banner --> <!-- End Banner --> <div class="container"> <div class="row"> <div class="col-sm-9"> <section id="content"> <article> <header class="page-header"> <h1> <a href="http://cdw11-ag100.rhcloud.com/static/blog/40123133-wang-ji-2d-zheng-chi-lun-bao-gao.html" rel="bookmark" title="Permalink to 40123133 網際 2D 正齒輪 報告"> 40123133 網際 2D 正齒輪 報告 </a> </h1> </header> <div class="entry-content"> <div class="panel"> <div class="panel-body"> <footer class="post-info"> <span class="label label-default">Date</span> <span class="published"> <i class="fa fa-calendar"></i><time datetime="2016-06-30T00:48:26.629807+08:00"> 四 30 六月 2016</time> </span> <span class="label label-default">By</span> <a href="http://cdw11-ag100.rhcloud.com/static/blog/author/40123133.html"><i class="fa fa-user"></i> 40123133</a> <span class="label label-default">Tags</span> <a href="http://cdw11-ag100.rhcloud.com/static/blog/tag/40123133.html">40123133</a> / <a href="http://cdw11-ag100.rhcloud.com/static/blog/tag/cdw14.html">cdw14</a> </footer><!-- /.post-info --> </div> </div> <p>啟動 cdw14 協同專案</p> <p>四個齒輪</p> <p><img src="http://i.imgur.com/0mOgGvd.png" /></p> <p>步驟:</p> <p>1.將老師程式碼複製下來</p> <p>2.增加一個齒輪,定義n4齒數,在模數裡面新增n4齒數,以及定義pr4節圓半徑</p> <p><img src="http://i.imgur.com/cfhLdwo.png" /></p> <p><img src="http://i.imgur.com/ntutKNl.png" /></p> <p><img src="http://i.imgur.com/EjJincD.png" /></p> <p>3.要將齒輪4與其他三個齒輪囓合,當第3齒從與第4齒囓合的定位線, 逆時鐘旋轉 180-180/n3 角度後, 原先囓合的第4齒必須要再配合旋轉(180-180/n2)<em>n2</em>n3/n4</p> <p><img src="http://i.imgur.com/CM8t7Zz.png" /></p> <p>心得:</p> <p>原先以為多增加一個齒數並不會很複雜,但在測試的時候在把第4齒囓合起來有蠻多問題的, 像是定位問題,一開始少加了一個pr3的半徑,第4齒就會與第3齒重疊,還有在囓合完成後旋轉也有滿多問題,經過反覆測試後才用好了。</p> </div> <!-- /.entry-content --> <hr/> <section class="comments" id="comments"> <h2>Comments</h2> <div id="disqus_thread"></div> <script type="text/javascript"> /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ var disqus_shortname = 'cadlabmanual'; // required: replace example with your forum shortname var disqus_identifier = '40123133-wang-ji-2d-zheng-chi-lun-bao-gao'; var disqus_url = 'http://cdw11-ag100.rhcloud.com/static/blog/40123133-wang-ji-2d-zheng-chi-lun-bao-gao.html'; var disqus_config = function () { this.language = "en"; }; /* * * DON'T EDIT BELOW THIS LINE * * */ (function () { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> <noscript>Please enable JavaScript to view the <a href="http://disqus.com/?ref_noscript">comments powered by Disqus.</a></noscript> <a href="http://disqus.com" class="dsq-brlink">comments powered by <span class="logo-disqus">Disqus</span></a> </section> </article> </section> </div> <div class="col-sm-3" id="sidebar"> <aside> <section class="well well-sm"> <ul class="list-group list-group-flush"> <li class="list-group-item"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Recent Posts</span></h4> <ul class="list-group" id="recentposts"> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/2016-nian-chun-ji-xie-tong-chan-pin-she-ji-shi-xi.html"> 2016 年春季協同產品設計實習 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/40123128-cdw11-bao-gao.html"> 40123128 cdw11 報告 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/40123128-cdw11-bao-gao-1.html"> 40123128 cdw11 報告-1 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/40123128-cdw13-bao-gao.html"> 40123128 cdw13 報告 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/40123128-cdw15-bao-gao.html"> 40123128 cdw15 報告 </a> </li> </ul> </li> <li class="list-group-item"><a href="http://cdw11-ag100.rhcloud.com/static/blog/categories.html"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Categories</span></h4></a> <ul class="list-group" id="categories"> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag1.html"> <i class="fa fa-folder-open fa-lg"></i> ag1 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag10.html"> <i class="fa fa-folder-open fa-lg"></i> ag10 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag100.html"> <i class="fa fa-folder-open fa-lg"></i> ag100 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag2.html"> <i class="fa fa-folder-open fa-lg"></i> ag2 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag3.html"> <i class="fa fa-folder-open fa-lg"></i> ag3 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag4.html"> <i class="fa fa-folder-open fa-lg"></i> ag4 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag5.html"> <i class="fa fa-folder-open fa-lg"></i> ag5 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag6.html"> <i class="fa fa-folder-open fa-lg"></i> ag6 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag7.html"> <i class="fa fa-folder-open fa-lg"></i> ag7 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag8.html"> <i class="fa fa-folder-open fa-lg"></i> ag8 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/ag9.html"> <i class="fa fa-folder-open fa-lg"></i> ag9 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg1.html"> <i class="fa fa-folder-open fa-lg"></i> bg1 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg10.html"> <i class="fa fa-folder-open fa-lg"></i> bg10 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg101.html"> <i class="fa fa-folder-open fa-lg"></i> bg101 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg11.html"> <i class="fa fa-folder-open fa-lg"></i> bg11 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg15.html"> <i class="fa fa-folder-open fa-lg"></i> bg15 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg2.html"> <i class="fa fa-folder-open fa-lg"></i> bg2 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg3.html"> <i class="fa fa-folder-open fa-lg"></i> bg3 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg4.html"> <i class="fa fa-folder-open fa-lg"></i> bg4 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg5.html"> <i class="fa fa-folder-open fa-lg"></i> bg5 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg6.html"> <i class="fa fa-folder-open fa-lg"></i> bg6 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg8.html"> <i class="fa fa-folder-open fa-lg"></i> bg8 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/bg9.html"> <i class="fa fa-folder-open fa-lg"></i> bg9 </a> </li> <li class="list-group-item"> <a href="http://cdw11-ag100.rhcloud.com/static/blog/category/g3.html"> <i class="fa fa-folder-open fa-lg"></i> g3 </a> </li> </ul> </li> <li class="list-group-item"><a href="http://cdw11-ag100.rhcloud.com/static/blog/tags.html"><h4><i class="fa fa-tags fa-lg"></i><span class="icon-label">Tags</span></h4></a> <ul class="list-group list-inline tagcloud" id="tags"> </ul> </li> <li class="list-group-item"><h4><i class="fa fa-external-link-square fa-lg"></i><span class="icon-label">Links</span></h4> <ul class="list-group" id="links"> <li class="list-group-item"> <a href="http://getpelican.com/" target="_blank"> Pelican </a> </li> <li class="list-group-item"> <a href="https://github.com/DandyDev/pelican-bootstrap3/" target="_blank"> pelican-bootstrap3 </a> </li> <li class="list-group-item"> <a href="https://github.com/getpelican/pelican-plugins" target="_blank"> pelican-plugins </a> </li> <li class="list-group-item"> <a href="https://github.com/Tipue/Tipue-Search" target="_blank"> Tipue search </a> </li> </ul> </li> </ul> </section> </aside> </div> </div> </div> <footer> <div class="container"> <hr> <div class="row"> <div class="col-xs-10">&copy; 2016 kmol &middot; Powered by <a href="https://github.com/DandyDev/pelican-bootstrap3" target="_blank">pelican-bootstrap3</a>, <a href="http://docs.getpelican.com/" target="_blank">Pelican</a>, <a href="http://getbootstrap.com" target="_blank">Bootstrap</a> </div> <div class="col-xs-2"><p class="pull-right"><i class="fa fa-arrow-up"></i> <a href="#">Back to top</a></p></div> </div> </div> </footer> <script src="http://cdw11-ag100.rhcloud.com/static/blog/theme/js/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="http://cdw11-ag100.rhcloud.com/static/blog/theme/js/bootstrap.min.js"></script> <!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) --> <script src="http://cdw11-ag100.rhcloud.com/static/blog/theme/js/respond.min.js"></script> <!-- Disqus --> <script type="text/javascript"> /* * * CONFIGURATION VARIABLES: EDIT BEFORE PASTING INTO YOUR WEBPAGE * * */ var disqus_shortname = 'cadlabmanual'; // required: replace example with your forum shortname /* * * DON'T EDIT BELOW THIS LINE * * */ (function () { var s = document.createElement('script'); s.async = true; s.type = 'text/javascript'; s.src = '//' + disqus_shortname + '.disqus.com/count.js'; (document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s); }()); </script> <!-- End Disqus Code --> </body> </html>
modules/friends/client/views/admin/list-friends.client.view.html
trendzetter/VegetableGardenPlanner
<section> <div class="page-header"> <h1> Friends <a class="btn btn-primary pull-right" data-ui-sref="admin.friends.create"> <i class="glyphicon glyphicon-plus"></i> </a> </h1> </div> <div class="list-group"> <a data-ng-repeat="friend in vm.friends" data-ui-sref="admin.friends.edit({friendId: friend._id})" class="list-group-item"> <small class="list-group-item-text"> Posted on <span data-ng-bind="friend.created | date:'mediumDate'"></span> by <span ng-if="friend.user" ng-bind="friend.user.displayName"></span> <span ng-if="!friend.user">Deleted User</span> </small> <h4 class="list-group-item-heading" data-ng-bind="friend.title"></h4> <p class="list-group-item-text" data-ng-bind="friend.content"></p> </a> </div> <div class="alert alert-warning text-center" data-ng-if="friends.$resolved && !friends.length"> No friends yet, why don't you <a data-ui-sref="admin.friends.create">create one</a>? </div> </section>
smlouvy/2021/01/07/Prikazni_smlouva_vovsik/index.html
pirati-web/smlouvy.pirati.cz
--- "layout": contract "datum podpisu": 2021-01-07 "datum účinnosti": 2020-12-14 "datum ukončení": 2021-10-31 "title": "Příkazní smlouva - Tomáš Vovsík" "použité smluvní typy": - příkazní smlouva "předmět": "správa soc. médií KS Praha" "stav": v plnění "náklady": 48000 "místo uložení": centrální archiv strany "výběrko": https://forum.pirati.cz/viewtopic.php?f=572&t=54324 "smluvní strany": - "jméno": "Tomáš Vovsík" "sídlo": Jihlava "soubory": - "podepsaná verze": Příkazní smlouva - Vovsík.pdf ---
templates/application/status/include/status_menu.html
jittat/ku-eng-direct-admission
<div class="status-menu-bar"> <a id="logout-link" href="{% url apply-logout %}"> <div class="menu-item"> ออกจากระบบ </div> </a> {% include "application/status/include/status_menu_items.html" %} <b>ขั้นตอน</b> {% if step_title %}{{ step_title }}{% else %}ตรวจสอบสถานะการสมัคร{% endif %} </div>
home/account/index.view.html
mvs-live/mvs-htmls
<div class="content"> <span class="headline">{{ 'NAV_ACCOUNT_SETTING' | translate }} - {{accountname}}</span> <ui-view /> </div>
themes/Atom9/IgnitionPacks/DefaultPack/Templates/css/home.css
RobiNN1/PHP-Fusion-Themes
.home_item { display: inline-block; padding: 15px 10px; margin-right: 0; color: #fff; background: transparent; height: 300px; overflow: hidden; } .home_item:after { color: rgba(0, 0, 0, 0.25); display: block; position: absolute; font-size: 380px; line-height: 200px; right: -80px; top: 30px; opacity: .2; } .home_item > .cat_img { display: inline-block; float: right; } .home_item .heading { font-size: 10px; font-weight: 800; text-transform: uppercase; } .home_item .subheading { font-size: 12px; font-weight: 600; margin-bottom: 10px; } .home_item h4 { font-size: 18px; font-weight: 800; margin-bottom: 10px; } .home_item span { font-size: 13px; font-weight: 400; } .home_item > .heading, .home_item > h4, .home_item > h4 a { font-weight: 800; } .home_content h4 a { font-family: "Lucida Sans", "Lucida Grande", Arial, Helvetica, sans-serif; font-size: 2rem; color: #fff; } .home_content h4 a:hover, .home_content h4 a:focus { color: #d4d4d4; } .home_item > .footer { bottom: 20px; display: block; width: 100%; position: absolute; } .home_item > .footer > .btn-primary { border-radius: 15px; font-weight: bold; text-transform: uppercase; font-size: 10px; -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .home_item > .footer > .btn-primary:hover, .home_item > .footer > .btn-primary:focus { color: #fff; } .home_item.articles { background: #130E38; } .home_item.articles:after { content: "a"; } .home_item.blogs { background: #222; } .home_item.blogs:after { content: "b"; } .home_item.downloads { background: #040505; } .home_item.downloads:after { content: "d"; } .home_item.news { background: #ebecee; color: #282828; } .home_item.news > .home_content > h4 a { color: #282828; } .home_item.news > .home_content > h4 a:hover, .home_item.news > .home_content > h4 a:focus { color: #0483d9; } .home_item.news:after { content: "n"; }
app/features/translation/word-translations/create/create-word-translation.html
asm-products/linguas
<div> <table class="word-translation-form"> <thead> <tr> <td> </td> <td> <div class="btn-group " dropdown> <button type="button" class="btn btn-primary dropdown-toggle"> {{fromLanguage.name}} <span class="fui-arrow-right"></span> {{toLanguage.name}} <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu"> <li ng-repeat="language in languages"> <a href="#" ng-click="setToLanguage(language)">{{language.name}}</a> </li> </ul> </div> </td> </tr> </thead> <tbody> <tr ng-repeat="word in words track by $index"> <td>{{word}}</td> <td> <input class="word-input" ng-model="wTranslations[$index]" type="text"/> </td> </tr> </tbody> <tfoot> <tr> <td></td> <td> <button class="button button-flat-action button-rounded" ng-click="addWordTranslations(bunch)" ng-disabled="isInProgress"> add words </button> </td> </tr> </tfoot> </table> </div>
ckanext/danepubliczne/templates/archiver/is_resource_broken.html
DanePubliczneGovPl/ckanext-danepubliczne
{# Displays whether the resource is broken or not Variable passed-in include: "resource": {} and all the Archival.as_dict() info from the package_show's resource['archiver'] e.g. "status_id": 0, "status": "Archived successfully", "is_broken": false, "is_broken_printable": "Downloaded OK", "reason": "", "url_redirected_to": null, # Details of last successful archival "cache_filepath": "/tmp/archive/ad/ad30c8f3-b3c7-4d5c-928f-df89f2cd7855/hospitals", "cache_url": "http://localhost:4050/ad/ad30c8f3-b3c7-4d5c-928f-df89f2cd7855/hospitals", "size": "7695" "mimetype": "text/html", "hash": "5466f7a55a2fc24fab4466c84fcde73d6d31c82a", # History "first_failure": null, "last_success": "2015-11-17T10:28:00.018577", "failure_count": 0, "created": "2015-11-16T18:15:14.391913", "updated": "2015-11-17T10:28:00.018577", "resource_timestamp": "2015-10-29T11:09:07.258784", #} {% if c.userobj %} <div class="archiver {% if is_broken %}link-broken{% elif is_broken == None %}link-not-sure{% else %}link-not-broken{% endif %}"> {%- if is_broken == True -%} <span class="icon icon-exclamation-sign text-error"></span> {% trans %}Link is broken{% endtrans %}<br> {% if reason %} {{ reason }}<br> {% endif %} {% if failure_count == 1 %} <span>{% trans %}This is a one-off failure{% endtrans %}</span><br> {% else %} <span>{% trans first_failure=h.render_datetime(first_failure) %}This resource has failed {{ failure_count }} times in a row since it first failed: {{ first_failure }}{% endtrans %}</span><br> {% endif %} {% if last_success %} <span>{% trans last_success=h.render_datetime(last_success) %}This resource was last ok: {{ last_success }}{% endtrans %}</span><br> {% else %} <span>{% trans created=h.render_datetime(created) %}We do not have a past record of it working since the first check: {{ created }}{% endtrans %}</span><br> {% endif %} {%- elif is_broken == None -%} {% trans %}Link check is not conclusive{% endtrans %}<br> {% if reason %} {{ reason }}<br> {% endif %} {%- else-%} {# silence is golden {% trans %}Link is ok{% endtrans %}<br> {% if reason %} {{ reason }}<br> {% endif %} #} {%- endif -%} {# doesn't work {% if resource_timestamp != resource['revision_timestamp'] %} This was tested with an older version of this resource. An update should occur soon.<!-- resource_timestamp {{resource_timestamp}} revision_timestamp {{resource['revision_timestamp']}}--> <br> {% endif %} #} {%- if is_broken != False -%} <span>{% trans updated=h.render_datetime(updated) %}Link checked: {{ updated }}{% endtrans %}</span><br> {%- endif -%} </div> {% endif %}
search/templates/askquestion.html
ictofnwi/steep
{% load staticfiles %} {% load widget_tweaks %} <script src="{% static 'jquery-ui.min.js' %}" type="text/javascript" charset="utf-8"></script> <script src="{% static 'tag-it.js' %}" type="text/javascript" charset="utf-8"></script> <link rel="stylesheet" type="text/css" href="{% static 'jquery-ui-1.10.3.custom.css' %}"> <link rel="stylesheet" type="text/css" href="{% static 'jquery.tagit.css' %}"> <form class="form-horizontal" method="post" onsubmit="return false" id=questionform>{% csrf_token %} <div class="form-group"> <h3>Ask a question</h3> </div> {{ form.media }} {% for field in form.visible_fields %} <div class="form-group"> {{ field.errors }} {{ field.label_tag }}: {% autoescape off %}{{ field|add_class:"form-control" }}{% endautoescape %} </div> {% endfor %} {% for field in form.hidden_fields %} <div class="form-group" style="display: none;"> {{ field.label_tag }}: {% autoescape off %}{{ field|add_class:"form-control" }}{% endautoescape %} </div> {% endfor %} <div class="form-group"> <button class="btn btn-default" onclick="submitquestion()">Submit</button> </div> <script language ="javascript" type = "text/javascript" > function submitquestion() { var formdata = $('#questionform').serialize(); $.post('/submitquestion', formdata, function(data) { if(data.success) { window.location = data.redirect } else { console.log(data) }; } ); } </script> </form> {# vim: set ft=htmldjango ts=2 sw=2 softtabstop=2: #}
src/frontend/prototipiV6/composizionePartenzaV6/src/app/composizione-partenza/shared/filterbar/composizione-filterbar.component.html
vvfosprojects/sovvf
<div class="border card-shadow bg-light rounded mt-1 mb-2"> <div class="row"> <div class="col-4 py-1 pl-4"> <ng-select [items]="generiMezzi" [multiple]="true" [maxSelectedItems]="2" [closeOnSelect]="false" [hideSelected]="true" placeholder="Genere Mezzo: Tutti"> </ng-select> </div> <div class="col-4 py-1"> <ng-select [items]="distaccamenti" [multiple]="true" [maxSelectedItems]="2" [closeOnSelect]="false" [hideSelected]="true" placeholder="Distaccamento: Tutti"> </ng-select> </div> <div class="col-4 py-1 pr-4"> <ng-select [items]="stati" [multiple]="true" [maxSelectedItems]="2" [closeOnSelect]="false" [hideSelected]="true" placeholder="Stato: Tutti"> <ng-template ng-option-tmp let-item="item" let-index="index" let-search="searchTerm"> <div><span class="fa fa-eercast mr-2" [ngClass]="iconaStatiClass(item)"></span>{{item}}</div> </ng-template> </ng-select> </div> </div> </div>
rules/rgaa4-2019/src/test/resources/testcases/rgaa42019/Rgaa42019Rule100902/Rgaa4-2019.Test.10.9.2-4NA-01.html
Tanaguru/Tanaguru
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <title>Rgaa4-2019 Test.10-9-2 NA 01</title> </head> <body> <div> <h1>Rgaa4-2019 Test.10-9-2 NA 01</h1> <div class="test-detail" lang="fr"> Dans chaque page web, l'information ne doit pas être donnée uniquement par la forme, taille ou position. Cette règle est-elle respectée ? </div> <div class="testcase"> </div> <div class="test-explanation"> NA. </div> </div> </body> </html>
modules/KalturaSupport/components/related/related.css
joanpuigsanz/mwEmbed
.fullscreen .related .screen-content { width: 960px; height: 570px; margin: auto; position: absolute; top: 0; bottom: 0; left: 0; right: 0; } .related .screen-content { padding: 0 5px; overflow: hidden; height: 100%; } .related .item { position: relative; float: left; width: 25%; height: 50%; box-sizing: border-box; cursor: pointer; } .fullscreen .related .item { height: 33.3%; } .related .item:hover .title { display: block; } .related .item-inner { position: absolute; left: 5px; right: 5px; top: 5px; bottom: 5px; overflow:hidden; } .related .item img { position: absolute; top: 0; left: 0; } .related .item img.wide { width: 100%; } .related .item img.square { height: 100%; } .related .item .title { display: none; position: absolute; top: 0; left: 0; z-index: 1; font-family: helvetica; font-size: 11px; word-break: break-all; background-color: rgba(0, 0, 0, 0.4); width: 100%; height: 100%; color: #fff; padding: 4px; box-sizing: border-box; } .related .featured .time { display: none; } .end-state .related .featured .time { display: inline-block; } .related .item.featured { width: 50%; height: 65.9%; } .related .item.featured .title { display: block; top: auto; bottom: 0; height: 40px; padding-top: 9px; } .fullscreen .related .wide { margin-top: 0px !important; margin-left: 0px !important; width: 100% !important; height: 100% !important; } .fullscreen .related .square { margin-top: 0px !important; margin-left: 0px !important; width: 100% !important; height: 100% !important; } @media only screen and (max-width: 480px) { .related .item { position: relative; float: left; width: 50%; height: 25%; box-sizing: border-box; cursor: pointer; } .related .featured { width: 100% !important; height: 50% !important; } } /* smartphone in app landscape */ @media only screen and (max-width: 650px) and (min-width: 481px) { .related .item { width: 25%!important; height: 33%!important; } .fullscreen .related .item { width: 25% !important; height: 33% !important; } .related .featured { width: 50% !important; height: 65.9% !important; } } /*smartphones*/ @media screen and (max-device-width : 321px) and (orientation: portrait){ /*2*/ .fullscreen .related .item { width: 50% !important; height: 25% !important; } .fullscreen .related .featured { width: 100% !important; height: 50% !important; } } @media screen and (max-device-width: 480px) and (orientation: landscape) { .related .item { width: 25% !important; height: 33% !important; } .related .featured { width: 50% !important; height: 65.9% !important; } } /* smartphone - portrait web*/ @media screen and (max-device-width: 480px) and (orientation: portrait){ /*2*/ .fullscreen .related .item { width: 50% !important; height: 25% !important; } .fullscreen .related .featured { width: 100% !important; height: 50% !important; } } /* Smartphones (landscape) ----------- */ @media only screen and (max-device-width : 321px) { .fullscreen .related .item { width: 25% !important; height: 33% !important; } .fullscreen .related .featured { width: 50% !important; height: 66% !important; } } /* smartphone - landscape web*/ @media only screen and (max-device-width: 640px) and (orientation: landscape) { .fullscreen .related .item { width: 25% !important; height: 33% !important; } .fullscreen .related .featured { width: 50% !important; height: 66% !important; } } @media only screen and (max-width: 1050px) and (min-width: 651px) {/*5*/ /* Small desktop / ipad view: 3 tiles */ .related .item { width: 25%; height: 33.3%; } .fullscreen .related .item { width: 25%; height: 33.3%; } .fullscreen .related .featured { width: 50%; height: 66%; } .screen-content{ width: 100% !important; } } @media only screen and (max-width: 1050px) and (min-width: 651px) and (orientation: portrait){ .screen-content{ height: 50% !important; } } @media only screen and (max-width: 1290px) and (min-width: 1051px) { /* Medium desktop: 4 tiles */ .related .item { width: 25%; height: 25%; } .related .featured { width: 75%; height: 74.8% ; } } @media only screen and (max-width: 1280px) and (-webkit-min-device-pixel-ratio: 2) { .fullscreen .related .screen-content { width: 100%; height: 100%; } }
docs/guide/emptyresult.html
ivaylokenov/MyTested.Mvc
<!DOCTYPE html> <!--[if IE]><![endif]--> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Add your introductions here! </title> <meta name="viewport" content="width=device-width"> <meta name="title" content="Add your introductions here! "> <meta name="generator" content="docfx 2.6.3.0"> <link rel="shortcut icon" href="../favicon.ico"> <link rel="stylesheet" href="../styles/docfx.vendor.css"> <link rel="stylesheet" href="../styles/docfx.css"> <link rel="stylesheet" href="../styles/main.css"> <meta property="docfx:navrel" content="../toc.html"> <meta property="docfx:tocrel" content="toc.html"> <meta property="docfx:rel" content="../"> <meta property="og:title" content="Flexible and asynchronous testing framework for ASP.NET Core MVC"> <meta property="og:site_name" content="My Tested ASP.NET Core MVC Docs"> <meta property="og:url" content="http://docs.mytestedasp.net/"> <meta property="og:description" content="A fluent unit testing library for ASP.NET Core MVC"> <meta property="og:image" content="https://mytestedasp.net/Content/Images/logosocial.jpg"> <meta property="og:type" content="website"> <meta property="og:locale" content="en_US"> <meta property="twitter:card" content="summary"> <meta property="twitter:title" content="Flexible and asynchronous testing framework for ASP.NET Core MVC"> <meta property="twitter:description" content="A fluent unit testing library for ASP.NET Core MVC"> <meta property="twitter:creator" content="@MyTestedASPNET"> <meta property="twitter:url" content="https://mytestedasp.net/"> <meta property="twitter:image" content="https://mytestedasp.net/Content/Images/logosocial.jpg"> </head> <body data-spy="scroll" data-target="#affix"> <div id="wrapper"> <header> <nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../index.html"> MY TESTED ASP.NET CORE MVC DOCS </a> </div> <div class="collapse navbar-collapse" id="navbar"> <form class="navbar-form navbar-right" role="search" id="search"> <div class="form-group"> <input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off"> </div> </form> </div> </div> </nav> <div class="subnav navbar navbar-default"> <div class="container hide-when-search" id="breadcrumb"> <ul class="breadcrumb"> <li></li> </ul> </div> </div> </header> <div role="main" class="container body-content hide-when-search"> <div class="sidenav hide-when-search"> <a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a> <div class="sidetoggle collapse" id="sidetoggle"> <div id="sidetoc"></div> </div> </div> <div class="article row grid-right"> <div class="col-md-10"> <article class="content wrap" id="_content" data-uid=""> <h1 id="add-your-introductions-here" sourcefile="guide/emptyresult.md" sourcestartlinenumber="2" sourceendlinenumber="2">Add your introductions here!</h1> </article> </div> <div class="hidden-sm col-md-2" role="complementary"> <div class="sideaffix"> <div class="contribution"> <ul class="nav"> <li> <a href="https://github.com/ivaylokenov/MyTested.AspNetCore.Mvc/blob/tutorial/docs/_docfx/guide/emptyresult.md/#L1" class="contribution-link">Improve this Doc</a> </li> </ul> </div> <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix"> <!-- <p><a class="back-to-top" href="#top">Back to top</a><p> --> </nav> </div> </div> </div> </div> <footer> <div class="grad-bottom"></div> <div class="footer"> <div class="container"> <span class="pull-right"> <a href="#top">Back to top</a> </span> <span>Copyright © 2015-2016 <strong><a href="http://mytestedasp.net">MyTestedASP.NET</a></strong>. All Rights Reserved. Generated by <strong><a href="http://dotnet.github.io/docfx/">DocFX</a></strong></span> </div> </div> </footer> </div> <script type="text/javascript" src="../styles/docfx.vendor.js"></script> <script type="text/javascript" src="../styles/docfx.js"></script> <script type="text/javascript" src="../styles/main.js"></script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-51720358-4', 'auto'); ga('send', 'pageview'); </script> <script> !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod? n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n; n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0; t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window, document,'script','https://connect.facebook.net/en_US/fbevents.js'); fbq('init', '884740311601716'); fbq('track', 'PageView'); </script> <noscript><img height="1" width="1" style="display:none" src="https://www.facebook.com/tr?id=884740311601716&ev=PageView&noscript=1"></noscript> </body> </html>
ckanext/workflow/fanstatic/css/main.css
abgov/ckanext-workflow
.process_state_draft { background-color: #ff9900; } .process_state_modified { background-color: #0066ff; } .process_state_submitted { background-color: #9900cc; } .process_state_pending { background-color: #804000; } .process_state_rejected { background-color: #ff3300; } .process_state_approved { background-color: #00b300; } .lable-danger-item-actions { color: #d9534f; } .wf_td { display: inline-block; vertical-align: middle; } div.container { display: block; width: auto; } .notice { background-color: #cce6ff; } .ready { background-color: #adebad; }
step-controller/step-controller-server-webapp/src/main/resources/webapp/partials/plans/planTreeEditor.html
denkbar/step
<plan-tree handle="handle" plan="model.plan" st-on-change="save()" interactive-session-handle="interactiveSession" class="st-flex-column"/>
spec/fixtures/static_pages/mp.php?mpn=Roger_Price&mpc=Chifley&house=representatives.html
mysociety/publicwhip
<!DOCTYPE html> <html class="no-js" lang="en"> <head> <meta charset="utf-8" /> <meta content="IE=edge" http-equiv="X-UA-Compatible" /> <meta content="width=device-width, initial-scale=1" name="viewport" /> <title> Roger Price MP, Chifley — They Vote For You </title> <link href="//code.cdn.mozilla.net/fonts/fira.css" media="screen" rel="stylesheet" /> <link href="/assets/application.css" media="screen" rel="stylesheet" /> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> <meta content="How Roger Price voted on issues in parliament." name="description" /> </head> <body class="members"> <nav class="site-header navbar" role="navigation"> <div class="navbar-header"> <button class="navbar-toggle" data-target="#bs-example-navbar-collapse-1" data-toggle="collapse" type="button"> <span class="sr-only">Expand navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="/">They Vote For You</a> </div> <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> <ul class="nav navbar-nav"> <li><a class="navlink-members" href="/people" title="All people currently in Federal Parliament">People</a></li> <li><a class="navlink-policies" href="/policies" title="Help to analyse MP&#39;s votes">Policies</a></li> <li><a class="navlink-divisions" href="/divisions" title="List of all votes in Parliament">Divisions</a></li> <li><a class="navlink-about" href="/about" title="Information about this website">About</a></li> </ul> <form action="/search" class="site-header-search navbar-form navbar-right" method="get" name="pw" role="search"> <div class="input-group"> <label class="sr-only" for="query"> Search They Vote For You </label> <input class="form-control input-sm" maxlength="256" name="query" placeholder="Search" type="search" /> <div class="input-group-btn"> <button class="btn btn-default input-sm" type="submit" value="Submit"> <span class="sr-only"> Submit </span> <span class="glyphicon glyphicon-search"></span> </button> </div> </div> </form> <ul class="account-nav nav navbar-nav navbar-right"> <li><a href="/users/sign_in" title="Log in to your account">Log in</a></li> <li><a href="/users/sign_up" title="Create an account to help improve this resource">Sign up</a></li> </ul> </div> </nav> <div class="container main-content"><div class="page-header"> <div class="media"> <a class="pull-left" href="/people/representatives/chifley/roger_price"><img alt="Photo of Roger Price" class="media-object" height="115" src="http://www.openaustralia.org/images/mpsL/10519.jpg" width="88" /> </a><div class="media-body"> <h1 class="media-heading"> Roger Price </h1> <p class="member-role lead">Former Australian Labor Party Representative for <span class="electorate">Chifley</span> <span class="member-period">December 1984 – August 2010</span></p> <p class="member-data object-data"> <span class="member-rebellions object-data-rebellion"> Never rebels <small><a href="/help/faq#rebellion">explain rebellions</a></small> </span> <span class="member-attendance object-data-attendance"> 100% attendance <small><a href="/help/faq#attendance">explain attendance.</a></small> </span> </p> </div> </div> </div> <aside class="social-share"> <h2 class="social-share-heading small text-muted">Share</h2> <ul class="list-inline small"> <li> <a class="share-link share-link-facebook" href="https://www.facebook.com/sharer/sharer.php?u=http://www.example.com/people/representatives/chifley/roger_price&amp;t=" title="Share on Facebook"><i class="fi-social-facebook"></i> Facebook </a></li> <li class="share-link share-link-twitter"> <a class="share-link share-link-twitter" href="https://twitter.com/intent/tweet?url=http://www.example.com/people/representatives/chifley/roger_price&amp;text=&amp;via=TheyVote4You" title="Share on Twitter"><i class="fi-social-twitter"></i> Twitter </a></li> </ul> </aside> <p class="member-description"> </p> <a class="btn btn-link btn-sm btn-lone-link" href="http://www.openaustralia.org.au/mp/?m=424">See speeches in Parliament</a> <section class="page-section" id="voting-stace"> <h2>How do they vote?</h2> <ul> <li> No policies match this person's votes. You can <a href="/policies">edit or make a policy</a> that will appear here. </li> </ul> <p class="small text-muted"> Please note that <a class="text-muted" href="/help/faq#timeperiod">our voting records start in 2006</a>. </p> </section> <section class="page-section" id="rebellions"> <h2>Rebel votes</h2> <p> Roger Price has never voted against the majority of their party since February 2006. <small><a href="/help/faq#rebellion">explain rebellions</a></small> </p> <ol class="display-house-all divisions-list list-unstyled"> </ol> </section> <section class="page-section" id="free-votes"> <h2>Free votes</h2> <p> Roger Price has taken part in 1 free vote since February 2006. <small><a href="/help/faq#free">explain “Free Votes”</a></small> </p> <ol class="display-house-all divisions-list list-unstyled"> <li> <a class="object-item panel-link" href="/divisions/representatives/2006-12-06/3" title="See full division page for Prohibition of Human Cloning for Reproduction and the Regulation of Human Embryo Research Amendment Bill 2006 - Consideration in Detail."><article class="division-item division-outcome-not-passed division-status-edited"> <div class="division-edit-notice pull-right text-muted"> edited 15th May 2014 </div> <div class="division-meta"> <time class="division-datetime" datetime="2006-12-06">6th Dec 2006, 7:29 PM</time> <span class="division-house pre">Representatives</span> </div> <h2 class="division-title panel-link-title"> Prohibition of Human Cloning for Reproduction and the Regulation of Human Embryo Research Amendment Bill 2006 - Consideration in Detail </h2> <p class="division-member-vote member-voted-yes object-primary">Roger Price voted Yes in this free vote</p> <p class="division-outcome object-primary">Not passed by a <span class="has-tooltip" title="76 No – 53 Yes">small majority</span></p> <p class="division-data object-data object-secondary"> <span class="division-rebellions object-data-rebellion"> No rebellions </span> <span class="division-attendance object-data-attendance"> 86% attendance </span> </p> </article> </a></li> </ol> </section> <section class="page-section" id="recent-votes"> <h2>Recent Votes</h2> <p> Recent votes in parliament that this Representative could have attended. </p> <ol class="display-house-all divisions-list list-unstyled"> <li> <a class="object-item panel-link" href="/divisions/representatives/2006-12-06/3" title="See full division page for Prohibition of Human Cloning for Reproduction and the Regulation of Human Embryo Research Amendment Bill 2006 - Consideration in Detail."><article class="division-item division-outcome-not-passed division-status-edited"> <div class="division-edit-notice pull-right text-muted"> edited 15th May 2014 </div> <div class="division-meta"> <time class="division-datetime" datetime="2006-12-06">6th Dec 2006, 7:29 PM</time> <span class="division-house pre">Representatives</span> </div> <h2 class="division-title panel-link-title"> Prohibition of Human Cloning for Reproduction and the Regulation of Human Embryo Research Amendment Bill 2006 - Consideration in Detail </h2> <p class="division-member-vote member-voted-yes object-primary">Roger Price voted Yes in this free vote</p> <p class="division-outcome object-primary">Not passed by a <span class="has-tooltip" title="76 No – 53 Yes">small majority</span></p> <p class="division-data object-data object-secondary"> <span class="division-rebellions object-data-rebellion"> No rebellions </span> <span class="division-attendance object-data-attendance"> 86% attendance </span> </p> </article> </a></li> </ol> <a class="btn btn-default btn-sm" href="/people/representatives/chifley/roger_price/divisions">View all votes</a> </section> <section class="page-section" id="friends"> <h2> Possible Friends </h2> <p> Shows which Representatives voted most similarly to this one in the Parliament. This is measured from 0% agreement (never voted the same) to 100% (always voted the same). Only votes that both Representatives attended are counted. This may reveal relationships between Representatives that were previously unsuspected. Or it may be nonsense. </p> <table class="table"> <thead> <tr class="headings"> <th>Agreement</th> <th>Name</th> <th>Electorate</th> <th>Party</th> </tr> </thead> <tbody> <tr> <td colspan="4">No results found</td> </tr> </tbody> </table> <a class="btn btn-default btn-sm" href="/people/representatives/chifley/roger_price/friends">More possible friends</a> </section> </div> <footer class="site-footer"> <div class="footer-main"> <div class="container"> <ul class="nav navbar-nav"> <li><a href="/about">About</a></li> <li><a href="/help/faq">Help / FAQ</a></li> <li><a href="/history">Recent changes</a></li> <li><a href="/help/data">API</a></li> </ul> <p class="author-msg"> An <a href="http://www.openaustraliafoundation.org.au/">OpenAustralia Foundation</a> project </p> <ul class="author-media list-inline small"> <li class="email"> <a href="mailto:contact@theyvoteforyou.org.au"><i class="fi-mail"></i> Contact </a></li> <li class="twitter"> <a href="https://twitter.com/TheyVote4You"><i class="fi-social-twitter"></i> Twitter </a></li> <li class="blog"><a href="https://www.openaustraliafoundation.org.au/blog/">Blog</a></li> <li class="donate"><a href="https://www.openaustraliafoundation.org.au/donate/">Donate</a></li> </ul> <p class="license-msg small"> This data and software are <a href="/help/licencing">free and open source</a> <span class="issues-link"><a href="https://github.com/openaustralia/publicwhip/issues" title="Report a bug or contribute an idea">report an issue</a></span> </p> </div> </div> <div class="author-projects"> <div class="container"> <div class="author-projects-heading">Explore our other projects:</div> <div class="row"> <ul class="author-projects-list list-unstyled container"> <li class="col-sm-6 col-md-3"> <a class="author-projects-list-item" href="http://www.openaustralia.org.au"><h4 class="author-project-name">OpenAustralia.org</h4> <p class="author-project-description small">Keep tabs on what your representative is saying in Parliament</p> </a></li> <li class="col-sm-6 col-md-3"> <a class="author-projects-list-item" href="http://www.electionleaflets.org.au"><h4 class="author-project-name">Election Leaflets</h4> <p class="author-project-description small">Live election leaflet monitoring</p> </a></li> <li class="col-sm-6 col-md-3"> <a class="author-projects-list-item" href="http://www.righttoknow.org.au"><h4 class="author-project-name">Right To Know</h4> <p class="author-project-description small">Access inside information about what your government is doing</p> </a></li> <li class="col-sm-6 col-md-3"> <a class="author-projects-list-item" href="http://www.planningalerts.org.au"><h4 class="author-project-name">PlanningAlerts</h4> <p class="author-project-description small">Email alerts of planning applications near you</p> </a></li> </ul> </div> </div> </div> </footer> <script src="/assets/application.js"></script> </body> </html>
lava_scheduler_app/templates/lava_scheduler_app/queue.html
Linaro/lava-server
{% extends "layouts/content.html" %} {% load django_tables2 %} {% block content %} <h2>Job Queue</h2> <ul class="pager"> <li class="btn btn-sm"><span class="glyphicon glyphicon-asterisk"> <a href="{% url 'lava.scheduler.job.list' %}">All Jobs</a></span></li> <li class="btn btn-sm"><span class="glyphicon glyphicon-play"> <a href="{% url 'lava.scheduler.job.active' %}">Active Jobs</a></span></li> <li class="btn btn-sm disabled"><span class="glyphicon glyphicon-pause"> <a href="{% url 'lava.scheduler.queue' %}">Queued Jobs</a></span></li> <li class="btn btn-sm"><span class="glyphicon glyphicon-heart"> <a href="{% url 'lava.scheduler.healthcheck' %}">Healthcheck Jobs</a></span></li> <li class="btn btn-sm"><span class="glyphicon glyphicon-flag"> <a href="{% url 'lava.scheduler.job.errors' %}">Job Errors</a></span></li> </ul> <h3>TestJobs in state 'submitted'</h3> {% render_table queue_table %} {% endblock %} {% block scripts %} <script type="text/javascript" src="{{ STATIC_URL }}lava_scheduler_app/js/tables.min.js"></script> {% endblock %}
cmsocial-web/views/navbar.html
elsantodel90/oia-juez
<div class="navbar navbar-inverse navbar-fixed-top"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" ui-sref="overview"><i class="fa fa-home fa-lg"></i> {{cm.getContest().top_left_name}}</a> </div> <div class="navbar-collapse collapse" ng-controller="SignCtrl"> <ul class="nav navbar-nav"> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown"> <i class="fa fa-archive fa-lg"></i> {{'Task & quiz archive' | l10n}} <b class="caret"></b> </a> <ul class="dropdown-menu"> <li><a ui-sref="tasklist.page({tag : 'tema:Principiante' , pageNum: 1})"><i class="fa fa-smile-o fa-fw"></i> {{'Beginner tasks' | l10n}}</a></li> <li><a ui-sref="tasklist.page({pageNum: 1})"><i class="fa fa-list-ol fa-fw"></i> {{'All tasks' | l10n}}</a></li> <li><a ui-sref="tags"><i class="fa fa-tag fa-fw"></i> {{'Task categories' | l10n}}</a></li> <li><a ui-sref="contesttags"><i class="fa fa-tag fa-fw"></i> {{'Contests' | l10n}}</a></li> <!-- <li><a href="#"><i class="fa fa-flask fa-fw"></i> Tutti i problemi, per tecnica</a></li> <li><a href="#"><i class="fa fa-ban fa-fw"></i> Fase nazionale OII, per anno</a></li> <li><a href="#"><i class="fa fa-ban fa-fw"></i> Fase territoriale OII, per anno</a></li> <li class="divider"></li> <li><a href="#"><i class="fa fa-ban fa-fw"></i> Problemi creati dagli utenti</a></li> <li class="divider"></li> <li><a ui-sref="lessons"><i class="fa fa-pencil fa-fw"></i> {{'Lessons' | l10n}}</a></li> <li><a ui-sref="tests"><i class="fa fa-pencil fa-fw"></i> {{'Quizzes' | l10n}}</a></li> --> </ul> </li> <li ng-class="{active: isActiveTab(4)}"> <a ui-sref="ranking.page({ pageNum: 1 })"><i class="fa fa-trophy fa-lg"></i> {{'Ranking' | l10n}}</a> </li> <li> <a href="http://foro.oia.unsam.edu.ar"><i class="fa fa-comments fa-lg"></i> {{'Forum' | l10n}}</a> </li> <li> <a href="/#/faq"><i class="fa fa-question-circle fa-lg"></i> FAQ</a> </li> <li ng-class="{active: isActiveTab(5)}" ng-if="!me.isLogged()"> <a ui-sref="signup"><i class="fa fa-pencil fa-lg"></i> {{'Sign up' | l10n}}</a> </li> <li ng-if="me.isLogged() && !cm.hasParticipation()"> <p class="navbar-btn"> <a ng-click="participate()" class="btn btn-success"><i class="fa fa-sign-in"></i>{{'Enter the contest' | l10n}}</a> </p> </li> </ul> <ul class="navbar navbar-right navbar-nav"> <form class="navbar-form form-inline"> <select class="input-small" ng-model="vars.language" ng-change="setLanguage()"> <option ng-repeat='lang in languages' value='{{lang.code}}'>{{lang.name}}</option> </select> </form> </ul> <ul class="nav navbar-nav navbar-right"> <li ng-if="!me.isLogged()" class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown"><i class="fa fa-sign-in fa-lg"></i> {{'Log in' | l10n}} <b class="caret"></b></a> <div class="dropdown-menu"> <form class="signin-form" role="form" name="signinform" ng-submit="signin()"> <div class="form-group"> <label class="sr-only" for="username">{{'Username' | l10n}}</label> <input class="form-control" maxlength="15" type="text" id="username" name="username" ng-model="user.username" placeholder="Username" /> </div> <div class="form-group"> <label class="sr-only" for="password">{{'Password' | l10n}}</label> <input class="form-control" type="password" id="password" name="password" ng-model="user.password" placeholder="Password" /> </div> <button type="submit" class="btn btn-success"><i class="fa fa-sign-in"></i> {{'Log in' | l10n}}</button> <div class="form-group" style="margin: 6px 0px 0px 0px" ng-if="cm.getContest().mail_enabled"> <a data-toggle="dropdown" ui-sref="forgot-account">{{'Forgot account?' | l10n}}</a> </div> </form> </div> </li> <li ng-if="me.isLogged()" class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown"> <i class="fa fa-user fa-lg"></i> <i>{{me.getUser().username}}</i> <b class="caret"></b> </a> <ul class="dropdown-menu"> <li> <a ui-sref="user.profile({userId: me.getUser().username})"> <i class="fa fa-list-ol fa-fw"></i> {{'My user profile' | l10n}} </a> </li> <li class="divider"></li> <li> <a ng-click="signout()"> <i class="fa fa-sign-out fa-fw"></i> {{'Log out' | l10n}} </a> </li> </ul> </li> </ul> </div><!--/.navbar-collapse --> </div> </div>
client/html/app/members/modal/confirm-subscription-changes.html
SYNHAK/spiff
<div class="modal-header"> <h3>Update Membership Subscriptions</h3> </div> <div class="modal-body"> <p>You are about to make the following changes:</p> <table class="table"> <tr> <th>Action</th> <th>Subscription</th> <th>Price</th> </tr> <tr class="info" ng-repeat="plan in additions track by $index"> <td>Add</td> <td>{{plan.name}}</td> <td>{{plan.periodCost}}</td> </tr> <tr class="warning" ng-repeat="subscription in removals"> <td>Remove</td> <td>{{subscription.plan.name}}</td> <td>{{subscription.plan.periodCost}}</td> </tr> </table> </div> <div class="modal-footer"> <div ng-if="pending == 0"> <button class="btn btn-success" ng-click="save()">Save</button> <button class="btn" ng-click="close()">Cancel</button> </div> <div ng-if="pending"> <progressbar max="maxPending" value="pending">Saving {{maxPending-pending}}/{{maxPending}}</progressbar> </div> </div>
webadapters/apidocs/org/fosstrak/webadapters/epcis/ws/epcis/queryparam/class-use/OrderDirection.html
Fosstrak/fosstrak.github.io
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_07) on Mon Dec 27 18:35:30 CET 2010 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class org.fosstrak.webadapters.epcis.ws.epcis.queryparam.OrderDirection (epcis-webadapter 0.1.0 API) </TITLE> <META NAME="date" CONTENT="2010-12-27"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.fosstrak.webadapters.epcis.ws.epcis.queryparam.OrderDirection (epcis-webadapter 0.1.0 API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../org/fosstrak/webadapters/epcis/ws/epcis/queryparam/OrderDirection.html" title="class in org.fosstrak.webadapters.epcis.ws.epcis.queryparam"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../../index.html?org/fosstrak/webadapters/epcis/ws/epcis/queryparam/\class-useOrderDirection.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="OrderDirection.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.fosstrak.webadapters.epcis.ws.epcis.queryparam.OrderDirection</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../../../../../org/fosstrak/webadapters/epcis/ws/epcis/queryparam/OrderDirection.html" title="class in org.fosstrak.webadapters.epcis.ws.epcis.queryparam">OrderDirection</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.fosstrak.webadapters.epcis.ws.epcis.query"><B>org.fosstrak.webadapters.epcis.ws.epcis.query</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.fosstrak.webadapters.epcis.ws.epcis.query"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../../../../../../org/fosstrak/webadapters/epcis/ws/epcis/queryparam/OrderDirection.html" title="class in org.fosstrak.webadapters.epcis.ws.epcis.queryparam">OrderDirection</A> in <A HREF="../../../../../../../../org/fosstrak/webadapters/epcis/ws/epcis/query/package-summary.html">org.fosstrak.webadapters.epcis.ws.epcis.query</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../../org/fosstrak/webadapters/epcis/ws/epcis/query/package-summary.html">org.fosstrak.webadapters.epcis.ws.epcis.query</A> that return <A HREF="../../../../../../../../org/fosstrak/webadapters/epcis/ws/epcis/queryparam/OrderDirection.html" title="class in org.fosstrak.webadapters.epcis.ws.epcis.queryparam">OrderDirection</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;<A HREF="../../../../../../../../org/fosstrak/webadapters/epcis/ws/epcis/queryparam/OrderDirection.html" title="class in org.fosstrak.webadapters.epcis.ws.epcis.queryparam">OrderDirection</A></CODE></FONT></TD> <TD><CODE><B>SEQuery.</B><B><A HREF="../../../../../../../../org/fosstrak/webadapters/epcis/ws/epcis/query/SEQuery.html#getOrderDirection()">getOrderDirection</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Method description</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../../../../../../org/fosstrak/webadapters/epcis/ws/epcis/query/package-summary.html">org.fosstrak.webadapters.epcis.ws.epcis.query</A> with parameters of type <A HREF="../../../../../../../../org/fosstrak/webadapters/epcis/ws/epcis/queryparam/OrderDirection.html" title="class in org.fosstrak.webadapters.epcis.ws.epcis.queryparam">OrderDirection</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>SEQuery.</B><B><A HREF="../../../../../../../../org/fosstrak/webadapters/epcis/ws/epcis/query/SEQuery.html#setOrderDirection(org.fosstrak.webadapters.epcis.ws.epcis.queryparam.OrderDirection)">setOrderDirection</A></B>(<A HREF="../../../../../../../../org/fosstrak/webadapters/epcis/ws/epcis/queryparam/OrderDirection.html" title="class in org.fosstrak.webadapters.epcis.ws.epcis.queryparam">OrderDirection</A>&nbsp;orderDirection)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Method description</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../org/fosstrak/webadapters/epcis/ws/epcis/queryparam/OrderDirection.html" title="class in org.fosstrak.webadapters.epcis.ws.epcis.queryparam"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../../index.html?org/fosstrak/webadapters/epcis/ws/epcis/queryparam/\class-useOrderDirection.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="OrderDirection.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2010. All Rights Reserved. </BODY> </HTML>
cpp_component/3rdparty/boost/doc/html/BOOST_INTRUSIVE_O_idm34771.html
qianqians/abelkhan
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Macro BOOST_INTRUSIVE_OPTION_TYPE</title> <link rel="stylesheet" href="../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> <link rel="up" href="intrusive/reference.html#header.boost.intrusive.pack_options_hpp" title="Header &lt;boost/intrusive/pack_options.hpp&gt;"> <link rel="prev" href="boost/intrusive/pack_options.html" title="Struct template pack_options"> <link rel="next" href="BOOST_INTRUSIVE_O_idm34785.html" title="Macro BOOST_INTRUSIVE_OPTION_CONSTANT"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../boost.png"></td> <td align="center"><a href="../../index.html">Home</a></td> <td align="center"><a href="../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="boost/intrusive/pack_options.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="intrusive/reference.html#header.boost.intrusive.pack_options_hpp"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="BOOST_INTRUSIVE_O_idm34785.html"><img src="../../doc/src/images/next.png" alt="Next"></a> </div> <div class="refentry"> <a name="BOOST_INTRUSIVE_O_idm34771"></a><div class="titlepage"></div> <div class="refnamediv"> <h2><span class="refentrytitle">Macro BOOST_INTRUSIVE_OPTION_TYPE</span></h2> <p>BOOST_INTRUSIVE_OPTION_TYPE</p> </div> <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: &lt;<a class="link" href="intrusive/reference.html#header.boost.intrusive.pack_options_hpp" title="Header &lt;boost/intrusive/pack_options.hpp&gt;">boost/intrusive/pack_options.hpp</a>&gt; </span>BOOST_INTRUSIVE_OPTION_TYPE(OPTION_NAME, TYPE, TYPEDEF_EXPR, TYPEDEF_NAME)</pre></div> <div class="refsect1"> <a name="id-1.3.20.42.22.5.4"></a><h2>Description</h2> <p>Defines an option class of name OPTION_NAME that can be used to specify a type of type TYPE...</p> <pre class="programlisting"><span class="keyword">struct</span> <span class="identifier">OPTION_NAME</span><span class="special">&lt;</span><span class="keyword">class</span> <span class="identifier">TYPE</span><span class="special">&gt;</span> <span class="special">{</span> <span class="identifier">unspecified_content</span> <span class="special">}</span><span class="special">;</span> </pre> <p>...that after being combined with <code class="computeroutput"><a class="link" href="boost/intrusive/pack_options.html" title="Struct template pack_options">boost::intrusive::pack_options</a></code>, will typedef TYPE as a typedef of name TYPEDEF_NAME. Example:</p> <pre class="programlisting"><span class="comment">//[includes and namespaces omitted for brevity]</span> <span class="comment">//This macro will create the following class:</span> <span class="comment">// template&lt;class VoidPointer&gt;</span> <span class="comment">// struct my_pointer</span> <span class="comment">// { unspecified_content };</span> <span class="identifier">BOOST_INTRUSIVE_OPTION_TYPE</span><span class="special">(</span><span class="identifier">my_pointer</span><span class="special">,</span> <span class="identifier">VoidPointer</span><span class="special">,</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">remove_pointer</span><span class="special">&lt;</span><span class="identifier">VoidPointer</span><span class="special">&gt;</span><span class="special">::</span><span class="identifier">type</span><span class="special">,</span> <span class="identifier">my_pointer_type</span><span class="special">)</span> <span class="keyword">struct</span> <span class="identifier">empty_default</span><span class="special">{</span><span class="special">}</span><span class="special">;</span> <span class="keyword">typedef</span> <span class="identifier">pack_options</span><span class="special">&lt;</span> <span class="identifier">empty_default</span><span class="special">,</span> <span class="keyword">typename</span> <span class="identifier">my_pointer</span><span class="special">&lt;</span><span class="keyword">void</span><span class="special">*</span><span class="special">&gt;</span> <span class="special">&gt;</span><span class="special">::</span><span class="identifier">type</span><span class="special">::</span><span class="identifier">my_pointer_type</span> <span class="identifier">type</span><span class="special">;</span> <span class="identifier">BOOST_STATIC_ASSERT</span><span class="special">(</span><span class="special">(</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">is_same</span><span class="special">&lt;</span><span class="identifier">type</span><span class="special">,</span> <span class="keyword">void</span><span class="special">&gt;</span><span class="special">::</span><span class="identifier">value</span> <span class="special">)</span><span class="special">)</span><span class="special">;</span> </pre> <p> </p> </div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright © 2005 Olaf Krzikalla<br>Copyright © 2006-2015 Ion Gaztanaga<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="boost/intrusive/pack_options.html"><img src="../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="intrusive/reference.html#header.boost.intrusive.pack_options_hpp"><img src="../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="index.html"><img src="../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="BOOST_INTRUSIVE_O_idm34785.html"><img src="../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
Common.Logging/doc/api/html/Common.Logging~Common.Logging.Factory.AbstractLogger.InfoFormat1.html
briandealwis/gt
<html dir="LTR" xmlns:ndoc="urn:ndoc-schema"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta content="history" name="save" /> <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" /> <title>AbstractLogger.InfoFormat(IFormatProvider, String, Object) Method</title> <xml> </xml> <link rel="stylesheet" type="text/css" href="MSDN.css" /> </head> <body id="bodyID" class="dtBODY"> <div id="nsbanner"> <div id="bannerrow1"> <table class="bannerparthead" cellspacing="0"> <tr id="hdr"> <td class="runninghead">Common Logging 2.0 API Reference</td> <td class="product"> </td> </tr> </table> </div> <div id="TitleRow"> <h1 class="dtH1">AbstractLogger.InfoFormat(IFormatProvider, String, Object) Method</h1> </div> </div> <div id="nstext"> <p> Log a message with the <a href="Common.Logging~Common.Logging.LogLevel.html">Info</a> level. </p> <div class="syntax"> <span class="lang">[Visual Basic]</span> <br />Public Overridable Overloads Sub InfoFormat( _<br />   ByVal <i>formatProvider</i> As <a href="">IFormatProvider</a>, _<br />   ByVal <i>format</i> As <a href="">String</a>, _<br />   ParamArray <i>args</i> As <a href="">Object</a> _<br />) _<div>    Implements <a href="Common.Logging~Common.Logging.ILog.InfoFormat3.html">ILog.InfoFormat</a></div></div> <div class="syntax"> <span class="lang">[C#]</span> <br />public virtual <a href="">void</a> InfoFormat(<br />   <a href="">IFormatProvider</a> <i>formatProvider</i>,<br />   <a href="">string</a> <i>format</i>,<br />   params <a href="">object</a>[] <i>args</i><br />);</div> <h4 class="dtH4">Parameters</h4> <dl> <dt> <i>formatProvider</i> </dt> <dd>An <a href="http://msdn.microsoft.com/en-us/library/System.IFormatProvider(VS.80).aspx">IFormatProvider</a> that supplies culture-specific formatting information.</dd> <dt> <i>format</i> </dt> <dd>The format of the message object to log.<a href="http://msdn.microsoft.com/en-us/library/System.String.Format(System.String,System.Object[])(VS.80).aspx">Format</a></dd> <dt> <i>args</i> </dt> <dd> </dd> </dl> <h4 class="dtH4">Implements</h4> <p> <a href="Common.Logging~Common.Logging.ILog.InfoFormat3.html">ILog.InfoFormat</a> </p> <h4 class="dtH4">See Also</h4> <p> <a href="Common.Logging~Common.Logging.Factory.AbstractLogger.html">AbstractLogger Class</a> | <a href="Common.Logging~Common.Logging.Factory.html">Common.Logging.Factory Namespace</a> | <a href="Common.Logging~Common.Logging.Factory.AbstractLogger.InfoFormat~Overloads.html">AbstractLogger.InfoFormat Overload List</a></p> <object type="application/x-oleobject" classid="clsid:1e2a7bd0-dab9-11d0-b93a-00c04fc99f9e" viewastext="true" style="display: none;"> <param name="Keyword" value="InfoFormat method&#xD;&#xA; "> </param> <param name="Keyword" value="InfoFormat method, AbstractLogger class"> </param> <param name="Keyword" value="AbstractLogger.InfoFormat method&#xD;&#xA; "> </param> </object> <hr /> <div id="footer"> <p> <a href="mailto:netcommon-developer@lists.sourceforge.net?subject=Common%20Logging%202.0%20API%20Reference%20Documentation%20Feedback:%20AbstractLogger.InfoFormat Method (IFormatProvider,%20String,%20Object)">Send comments on this topic.</a> </p> <p> <a>© The Common Infrastructure Libraries for .NET Team 2009 All Rights Reserved.</a> </p> <p>Generated from assembly Common.Logging [2.0.0.0] by <a href="http://ndoc3.sourceforget.net">NDoc3</a></p> </div> </div> </body> </html>
3rdparty/commons-math-1.2/docs/xref-test/org/apache/commons/math/analysis/Expm1Function.html
cacheonix/cacheonix-core
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" /> <title>Expm1Function xref</title> <link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" /> </head> <body> <pre> <a name="1" href="#1">1</a> <em class="jxr_comment">/*</em> <a name="2" href="#2">2</a> <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one or more</em> <a name="3" href="#3">3</a> <em class="jxr_comment"> * contributor license agreements. See the NOTICE file distributed with</em> <a name="4" href="#4">4</a> <em class="jxr_comment"> * this work for additional information regarding copyright ownership.</em> <a name="5" href="#5">5</a> <em class="jxr_comment"> * The ASF licenses this file to You under the Apache License, Version 2.0</em> <a name="6" href="#6">6</a> <em class="jxr_comment"> * (the "License"); you may not use this file except in compliance with</em> <a name="7" href="#7">7</a> <em class="jxr_comment"> * the License. You may obtain a copy of the License at</em> <a name="8" href="#8">8</a> <em class="jxr_comment"> *</em> <a name="9" href="#9">9</a> <em class="jxr_comment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em> <a name="10" href="#10">10</a> <em class="jxr_comment"> *</em> <a name="11" href="#11">11</a> <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing, software</em> <a name="12" href="#12">12</a> <em class="jxr_comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em> <a name="13" href="#13">13</a> <em class="jxr_comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em> <a name="14" href="#14">14</a> <em class="jxr_comment"> * See the License for the specific language governing permissions and</em> <a name="15" href="#15">15</a> <em class="jxr_comment"> * limitations under the License.</em> <a name="16" href="#16">16</a> <em class="jxr_comment"> */</em> <a name="17" href="#17">17</a> <strong class="jxr_keyword">package</strong> org.apache.commons.math.analysis; <a name="18" href="#18">18</a> <a name="19" href="#19">19</a> <strong class="jxr_keyword">import</strong> org.apache.commons.math.FunctionEvaluationException; <a name="20" href="#20">20</a> <a name="21" href="#21">21</a> <em class="jxr_javadoccomment">/**</em> <a name="22" href="#22">22</a> <em class="jxr_javadoccomment"> * Auxillary class for testing purposes.</em> <a name="23" href="#23">23</a> <em class="jxr_javadoccomment"> *</em> <a name="24" href="#24">24</a> <em class="jxr_javadoccomment"> * @version $Revision$ $Date$</em> <a name="25" href="#25">25</a> <em class="jxr_javadoccomment"> */</em> <a name="26" href="#26">26</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> Expm1Function implements DifferentiableUnivariateRealFunction { <a name="27" href="#27">27</a> <a name="28" href="#28">28</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">double</strong> value(<strong class="jxr_keyword">double</strong> x) <strong class="jxr_keyword">throws</strong> FunctionEvaluationException { <a name="29" href="#29">29</a> <em class="jxr_comment">// Math.expm1() is available in jdk 1.5 but not in jdk 1.4.2.</em> <a name="30" href="#30">30</a> <strong class="jxr_keyword">return</strong> Math.exp(x) - 1.0; <a name="31" href="#31">31</a> } <a name="32" href="#32">32</a> <a name="33" href="#33">33</a> <strong class="jxr_keyword">public</strong> UnivariateRealFunction derivative() { <a name="34" href="#34">34</a> <strong class="jxr_keyword">return</strong> <strong class="jxr_keyword">new</strong> UnivariateRealFunction() { <a name="35" href="#35">35</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">double</strong> value(<strong class="jxr_keyword">double</strong> x) <strong class="jxr_keyword">throws</strong> FunctionEvaluationException { <a name="36" href="#36">36</a> <strong class="jxr_keyword">return</strong> Math.exp(x); <a name="37" href="#37">37</a> } <a name="38" href="#38">38</a> }; <a name="39" href="#39">39</a> } <a name="40" href="#40">40</a> } </pre> <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body> </html>
javadoc/net/minecraft/entity/ai/EntityAIFleeSun.html
tera911/itc_minecraft
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_21) on Wed Apr 16 20:33:26 EDT 2014 --> <title>EntityAIFleeSun (Forge API)</title> <meta name="date" content="2014-04-16"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="EntityAIFleeSun (Forge API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../net/minecraft/entity/ai/EntityAIEatGrass.html" title="class in net.minecraft.entity.ai"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../net/minecraft/entity/ai/EntityAIFollowGolem.html" title="class in net.minecraft.entity.ai"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?net/minecraft/entity/ai/EntityAIFleeSun.html" target="_top">Frames</a></li> <li><a href="EntityAIFleeSun.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">net.minecraft.entity.ai</div> <h2 title="Class EntityAIFleeSun" class="title">Class EntityAIFleeSun</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li><a href="../../../../net/minecraft/entity/ai/EntityAIBase.html" title="class in net.minecraft.entity.ai">net.minecraft.entity.ai.EntityAIBase</a></li> <li> <ul class="inheritance"> <li>net.minecraft.entity.ai.EntityAIFleeSun</li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="strong">EntityAIFleeSun</span> extends <a href="../../../../net/minecraft/entity/ai/EntityAIBase.html" title="class in net.minecraft.entity.ai">EntityAIBase</a></pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../net/minecraft/entity/ai/EntityAIFleeSun.html#EntityAIFleeSun(net.minecraft.entity.EntityCreature, double)">EntityAIFleeSun</a></strong>(<a href="../../../../net/minecraft/entity/EntityCreature.html" title="class in net.minecraft.entity">EntityCreature</a>&nbsp;par1EntityCreature, double&nbsp;par2)</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../net/minecraft/entity/ai/EntityAIFleeSun.html#continueExecuting()">continueExecuting</a></strong>()</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>boolean</code></td> <td class="colLast"><code><strong><a href="../../../../net/minecraft/entity/ai/EntityAIFleeSun.html#shouldExecute()">shouldExecute</a></strong>()</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>void</code></td> <td class="colLast"><code><strong><a href="../../../../net/minecraft/entity/ai/EntityAIFleeSun.html#startExecuting()">startExecuting</a></strong>()</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_net.minecraft.entity.ai.EntityAIBase"> <!-- --> </a> <h3>Methods inherited from class&nbsp;net.minecraft.entity.ai.<a href="../../../../net/minecraft/entity/ai/EntityAIBase.html" title="class in net.minecraft.entity.ai">EntityAIBase</a></h3> <code><a href="../../../../net/minecraft/entity/ai/EntityAIBase.html#getMutexBits()">getMutexBits</a>, <a href="../../../../net/minecraft/entity/ai/EntityAIBase.html#isInterruptible()">isInterruptible</a>, <a href="../../../../net/minecraft/entity/ai/EntityAIBase.html#resetTask()">resetTask</a>, <a href="../../../../net/minecraft/entity/ai/EntityAIBase.html#setMutexBits(int)">setMutexBits</a>, <a href="../../../../net/minecraft/entity/ai/EntityAIBase.html#updateTask()">updateTask</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="EntityAIFleeSun(net.minecraft.entity.EntityCreature, double)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>EntityAIFleeSun</h4> <pre>public&nbsp;EntityAIFleeSun(<a href="../../../../net/minecraft/entity/EntityCreature.html" title="class in net.minecraft.entity">EntityCreature</a>&nbsp;par1EntityCreature, double&nbsp;par2)</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="shouldExecute()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>shouldExecute</h4> <pre>public&nbsp;boolean&nbsp;shouldExecute()</pre> <dl> <dt><strong>Specified by:</strong></dt> <dd><code><a href="../../../../net/minecraft/entity/ai/EntityAIBase.html#shouldExecute()">shouldExecute</a></code>&nbsp;in class&nbsp;<code><a href="../../../../net/minecraft/entity/ai/EntityAIBase.html" title="class in net.minecraft.entity.ai">EntityAIBase</a></code></dd> </dl> </li> </ul> <a name="continueExecuting()"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>continueExecuting</h4> <pre>public&nbsp;boolean&nbsp;continueExecuting()</pre> <dl> <dt><strong>Overrides:</strong></dt> <dd><code><a href="../../../../net/minecraft/entity/ai/EntityAIBase.html#continueExecuting()">continueExecuting</a></code>&nbsp;in class&nbsp;<code><a href="../../../../net/minecraft/entity/ai/EntityAIBase.html" title="class in net.minecraft.entity.ai">EntityAIBase</a></code></dd> </dl> </li> </ul> <a name="startExecuting()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>startExecuting</h4> <pre>public&nbsp;void&nbsp;startExecuting()</pre> <dl> <dt><strong>Overrides:</strong></dt> <dd><code><a href="../../../../net/minecraft/entity/ai/EntityAIBase.html#startExecuting()">startExecuting</a></code>&nbsp;in class&nbsp;<code><a href="../../../../net/minecraft/entity/ai/EntityAIBase.html" title="class in net.minecraft.entity.ai">EntityAIBase</a></code></dd> </dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../net/minecraft/entity/ai/EntityAIEatGrass.html" title="class in net.minecraft.entity.ai"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../net/minecraft/entity/ai/EntityAIFollowGolem.html" title="class in net.minecraft.entity.ai"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?net/minecraft/entity/ai/EntityAIFleeSun.html" target="_top">Frames</a></li> <li><a href="EntityAIFleeSun.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
themes/Adwaita/gtk-3.0/gtk-main-dark.css
cosimoc/gnome-themes-standard
/* Dark color scheme */ @define-color theme_base_color #333333; @define-color theme_bg_color #393f3f; @define-color theme_selected_bg_color #3465a4; @define-color theme_text_color #eeeeec; @define-color theme_fg_color @theme_text_color; @define-color theme_selected_fg_color @theme_text_color; @define-color placeholder_text_color shade(@theme_text_color, 0.4); @define-color theme_unfocused_base_color @theme_base_color; @define-color theme_unfocused_text_color mix(@theme_unfocused_base_color, @theme_text_color, 0.8); @define-color theme_unfocused_fg_color mix(@theme_unfocused_bg_color, @theme_text_color, 0.3); @define-color theme_unfocused_bg_color @theme_bg_color; @define-color theme_unfocused_selected_bg_color @unfocused_borders; @define-color theme_unfocused_selected_fg_color @theme_selected_fg_color; @define-color unfocused_button_background @theme_unfocused_bg_color; @define-color unfocused_borders mix(@theme_unfocused_bg_color, @theme_text_color, 0.15); @define-color unfocused_insensitive_borders mix(@theme_unfocused_bg_color, @unfocused_borders, 0.5); @define-color unfocused_insensitive_fg_color mix(@insensitive_fg_color, @insensitive_bg_color, 0.3); @define-color unfocused_insensitive_bg_color @insensitive_bg_color; @define-color unfocused_dark_bg mix(@theme_unfocused_bg_color, @borders, 0.5); @define-color menu_bg_color #555753; @define-color menu_fg_color @theme_text_color; @define-color menu_controls_color #aaa8ac; @define-color menu_combobox_border darker (@theme_selected_bg_color); @define-color menu_separator mix (@menu_fg_color, @menu_bg_color, 0.95); @define-color inactive_frame_color shade (@theme_bg_color, 0.8); @define-color sidebar_bg shade (@theme_bg_color, 1.02); @define-color sidebar_bg_unfocused mix(@sidebar_bg, @theme_unfocused_base_color, 0.5); @define-color button_gradient_color_a shade (@theme_bg_color, 1.15); @define-color button_gradient_color_b @theme_bg_color; @define-color button_gradient_color_c shade (@theme_bg_color, 0.8); @define-color borders #24282a; @define-color button_active_gradient_color_a shade (@button_gradient_color_b, 0.7); @define-color button_active_gradient_color_b shade (@button_gradient_color_a, 0.7); @define-color button_active_text @theme_selected_bg_color; @define-color button_active_text_shadow alpha(black, 0.6); @define-color button_text_shadow alpha(black, 0.7); @define-color button_hover_gradient_color_a shade (@button_gradient_color_a, 1.10); @define-color button_hover_gradient_color_b shade (@button_gradient_color_b, 1.02); @define-color insensitive_fg_color #535555; @define-color insensitive_bg_color mix(@theme_bg_color, @theme_base_color, 0.6); @define-color insensitive_borders #535555; @define-color trough_bg_color_a #30312f; @define-color trough_bg_color_b #41433f; @define-color scrollbar_trough shade(@theme_bg_color, 1.2); @define-color scrollbar_trough_insensitive shade(@theme_bg_color, 1.05); /* FIXME */ @define-color scrollbar_trough_unfocused shade(@theme_unfocused_bg_color, 1.2); @define-color scrollbar_slider mix(@scrollbar_trough, @theme_fg_color, 0.15); @define-color scrollbar_slider_prelight mix(@scrollbar_trough, @theme_fg_color, 0.3); @define-color scrollbar_slider_active @theme_selected_bg_color; @define-color scrollbar_slider_insensitive alpha(black, 0); /* FIXME should be transparent */ @define-color scrollbar_slider_unfocused shade(@theme_unfocused_base_color, 0.8); @define-color switch_slider_color shade(@theme_bg_color, 0.9); @define-color switch_trough_active_color @theme_text_color; @define-color switch_trough_active_bg_a shade(@theme_selected_bg_color, 0.6); @define-color switch_trough_active_bg_b @theme_selected_bg_color; @define-color progressbar_background_a shade(@theme_selected_bg_color, 1.15); @define-color progressbar_background_b shade(@theme_selected_bg_color, 0.8); @define-color progressbar_pattern @progressbar_background_b; @define-color progressbar_border shade(@switch_trough_active_bg_a, 0.60); @define-color progressbar_unfocused_background @unfocused_borders; @define-color progressbar_unfocused_border @theme_unfocused_fg_color; @define-color entry_text_color #ffffff; @define-color entry_background_a shade(@theme_base_color, 0.85); @define-color entry_background_b @theme_base_color; @define-color entry_inset alpha(black, 0.15); @define-color internal_element_color #595959; @define-color internal_element_prelight #eeeeee; @define-color internal_element_insensitive mix(@internal_element_color, @theme_base_color, 0.65); @define-color scale_progress_fill #2c85e2; @define-color notebook_active_tab_border shade(@theme_selected_bg_color, 0.5); @define-color notebook_selected_tab_color alpha(@theme_selected_bg_color, 0.75); @define-color notebook_tab_gradient_a shade(@theme_bg_color, 0.8); @define-color notebook_tab_gradient_b shade(@theme_bg_color, 0.75); @define-color notebook_tab_hilight shade(@theme_bg_color, 0.9); @define-color toolbar_gradient_a shade(@theme_bg_color, 0.75); @define-color toolbar_gradient_b shade(@theme_bg_color, 0.8); @define-color toolbar_gradient_c shade(@theme_bg_color, 0.9); @define-color toolbar_border_top shade(@borders, 0.7); @define-color toolbar_border_bottom shade(@borders, 1.05); @define-color toolbar_active_button_color #222222; @define-color toolbar_button_prelight alpha(black, 0.3); @define-color primary_toolbar_button_text_shadow alpha(black, 0.1); @define-color treeview_focus_border shade (@theme_selected_bg_color, 1.20); @define-color expander_row_selected_color alpha (@theme_base_color, 0.60); @define-color inset_light_color alpha(white, 0.05); @define-color inset_dark_color alpha(black, 0.25); /************** * GNOME Apps * **************/ @define-color entry_tag_bg #888a85; @define-color entry_tag_fg black; /****** * WM * ******/ @define-color wm_title @theme_fg_color; @define-color wm_unfocused_title @theme_unfocused_fg_color; @define-color wm_highlight shade(@theme_bg_color, 1.4); @define-color wm_title_highlight_dark @button_text_shadow; @define-color wm_title_highlight alpha(#000000, 0.0); @define-color wm_bg_a shade (@theme_bg_color, 1.3); @define-color wm_bg_b @theme_bg_color; @define-color wm_button_bg_a shade (@theme_bg_color, 1.0); @define-color wm_button_bg_b shade (@theme_bg_color, 0.85); @define-color wm_button_bg_c shade (@theme_bg_color, 0.8); @define-color wm_button_bg_d shade (@theme_bg_color, 0.9); @define-color wm_button_bg_hover_a shade (@wm_button_bg_a, 1.2); @define-color wm_button_bg_hover_b shade (@wm_button_bg_b, 1.2); @define-color wm_button_bg_hover_c shade (@wm_button_bg_c, 1.2); @define-color wm_button_bg_hover_d shade (@wm_button_bg_d, 1.2); @define-color wm_button_bg_active_a shade (@theme_bg_color, 0.5); @define-color wm_button_bg_active_b shade (@theme_bg_color, 0.7); @define-color wm_button_bg_active_c shade (@theme_bg_color, 0.7); @import url("gtk-main-common.css"); @import url("gtk-widgets-backgrounds.css"); @import url("gtk-widgets-borders-dark.css"); @import url("gtk-widgets-assets-dark.css"); @import url("gtk-widgets.css"); @import url("gtk-widgets-dark-overrides.css"); @import url("gnome-applications.css");
doc/html/classocilib_1_1_collection_1_1_iterator-members.html
Convey-Compliance/ocilib_own_repo
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.7"/> <title>OCILIB (C and C++ Driver for Oracle): Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">OCILIB (C and C++ Driver for Oracle) &#160;<span id="projectnumber">4.1.0</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.7 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>About</span></a></li> <li><a href="modules.html"><span>Documentation</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('classocilib_1_1_collection_1_1_iterator.html','');}); </script> <div id="doc-content"> <div class="header"> <div class="headertitle"> <div class="title">ocilib::Collection&lt; TDataType &gt;::Iterator Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="classocilib_1_1_collection_1_1_iterator.html">ocilib::Collection&lt; TDataType &gt;::Iterator</a>, including all inherited members.</p> <table class="directory"> </table></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated on Tue May 5 2015 22:47:03 for OCILIB (C and C++ Driver for Oracle) by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.7 </li> </ul> </div> </body> </html>
doc/avr-libc/avr-libc-user-manual/util_2twi_8h.html
eerimoq/avr-toolchain-windows
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1"> <title>avr-libc: twi.h File Reference</title> <link href="dox.css" rel="stylesheet" type="text/css"> </head> <body> <center> <table width="80%"> <tr> <td align="left"><a href="http://www.nongnu.org/avr-libc/">AVR Libc Home Page</a></td> <td align="center" colspan=4><img src="avrs.png" alt="AVRs" align="middle" border="0"></td> <td align="right"><a href="https://savannah.nongnu.org/projects/avr-libc/">AVR Libc Development Pages</a></td> </tr> <tr> <td align="center" width="13%"><a href="index.html">Main Page</a></td> <td align="center" width="13%"><a href="pages.html">User Manual</a></td> <td align="center" width="13%"><a href="modules.html">Library Reference</a></td> <td align="center" width="13%"><a href="FAQ.html">FAQ</a></td> <td align="center" width="13%"><a href="globals.html">Alphabetical Index</a></td> <td align="center" width="13%"><a href="group__demos.html">Example Projects</a></td> </tr> </table> </center> <hr width="80%"> <!-- Generated by Doxygen 1.6.3 --> <div class="contents"> <h1>twi.h File Reference</h1> <p><a href="util_2twi_8h_source.html">Go to the source code of this file.</a></p> <table border="0" cellpadding="0" cellspacing="0"> <tr><td colspan="2"><h2>Defines</h2></td></tr> <tr><td colspan="2"><div class="groupHeader">TWSR values</div></td></tr> <tr><td colspan="2"><div class="groupText"><p><a class="anchor" id="amgrp42f820ba9b5b7097b4fd1e83955bb8fc"></a> Mnemonics: <br/> TW_MT_xxx - master transmitter <br/> TW_MR_xxx - master receiver <br/> TW_ST_xxx - slave transmitter <br/> TW_SR_xxx - slave receiver </p> </div></td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga8ec630c2063d0353c53d140b99382d80">TW_START</a>&nbsp;&nbsp;&nbsp;0x08</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga8dce3e4b7e35355a8add9ed63d1fa3ab">TW_REP_START</a>&nbsp;&nbsp;&nbsp;0x10</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga85cae14b4190042335d25ed9a1b72369">TW_MT_SLA_ACK</a>&nbsp;&nbsp;&nbsp;0x18</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#gaca64b973c51d6548a962c1d7cae0663e">TW_MT_SLA_NACK</a>&nbsp;&nbsp;&nbsp;0x20</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga4c28186053b5298305b131ad3e1111f7">TW_MT_DATA_ACK</a>&nbsp;&nbsp;&nbsp;0x28</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga91c107a74d268f8578d866ed1bbbd4f3">TW_MT_DATA_NACK</a>&nbsp;&nbsp;&nbsp;0x30</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga5959251c4bd80f48b5a029447d86adb3">TW_MT_ARB_LOST</a>&nbsp;&nbsp;&nbsp;0x38</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#gad85222308836bfbe099255662ffb510c">TW_MR_ARB_LOST</a>&nbsp;&nbsp;&nbsp;0x38</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#gac16504b87d15d83b97bb0ce61577bb40">TW_MR_SLA_ACK</a>&nbsp;&nbsp;&nbsp;0x40</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga655325b6f8a1818103b126cc3774d8e8">TW_MR_SLA_NACK</a>&nbsp;&nbsp;&nbsp;0x48</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga3c8c79b2ecb8d22358839890161cc33b">TW_MR_DATA_ACK</a>&nbsp;&nbsp;&nbsp;0x50</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga532f0ffa12f684346c74a5cbec15950e">TW_MR_DATA_NACK</a>&nbsp;&nbsp;&nbsp;0x58</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga0ecd2ca38d00279194460e65028a0533">TW_ST_SLA_ACK</a>&nbsp;&nbsp;&nbsp;0xA8</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga1064659d0758206d43d69cd582d1f5da">TW_ST_ARB_LOST_SLA_ACK</a>&nbsp;&nbsp;&nbsp;0xB0</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga2de84bf7cbf1cd7ae43a6e0f0eeca719">TW_ST_DATA_ACK</a>&nbsp;&nbsp;&nbsp;0xB8</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#gacc1837317b1d45e9bb49b8e83cfe6d42">TW_ST_DATA_NACK</a>&nbsp;&nbsp;&nbsp;0xC0</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#gaf92d03d0051d47f5b9375f0ef9293d64">TW_ST_LAST_DATA</a>&nbsp;&nbsp;&nbsp;0xC8</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga9e9e761d674793772e6b3f77fc9d7fab">TW_SR_SLA_ACK</a>&nbsp;&nbsp;&nbsp;0x60</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga1c3ed5ed345d17972002b9fd07f4f829">TW_SR_ARB_LOST_SLA_ACK</a>&nbsp;&nbsp;&nbsp;0x68</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga6eb3b4230887a8b73d7787ff231ea911">TW_SR_GCALL_ACK</a>&nbsp;&nbsp;&nbsp;0x70</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga4756103341a65e0e3889996cdf15b2fa">TW_SR_ARB_LOST_GCALL_ACK</a>&nbsp;&nbsp;&nbsp;0x78</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#gac50f1a59c74c3109d4913dbecfb472c1">TW_SR_DATA_ACK</a>&nbsp;&nbsp;&nbsp;0x80</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga6c0fa701fe9d96b0b7df29e8af154f94">TW_SR_DATA_NACK</a>&nbsp;&nbsp;&nbsp;0x88</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga4abaad098fd92bed63719ffb01802c8d">TW_SR_GCALL_DATA_ACK</a>&nbsp;&nbsp;&nbsp;0x90</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga42234278f9b01b9af75dbbc617b97890">TW_SR_GCALL_DATA_NACK</a>&nbsp;&nbsp;&nbsp;0x98</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga98d2570f965790884cf1774e716ec629">TW_SR_STOP</a>&nbsp;&nbsp;&nbsp;0xA0</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#gabcff70642634cb53e9d8e93872f70c90">TW_NO_INFO</a>&nbsp;&nbsp;&nbsp;0xF8</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga90d373160b1d0a3f0c454af83c57df71">TW_BUS_ERROR</a>&nbsp;&nbsp;&nbsp;0x00</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga8d3aca0acc182f459a51797321728168">TW_STATUS_MASK</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#ga4440385d1818b4fe89b20341ea47b75a">TW_STATUS</a>&nbsp;&nbsp;&nbsp;(TWSR &amp; TW_STATUS_MASK)</td></tr> <tr><td colspan="2"><div class="groupHeader">R/~W bit in SLA+R/W address field.</div></td></tr> <tr><td colspan="2"><div class="groupText"><p><a class="anchor" id="amgrp8f939fc9c8471549ba6dd5932548fd46"></a> </p> </div></td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#gaf40f13cadca25e0a83dc096858907819">TW_READ</a>&nbsp;&nbsp;&nbsp;1</td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__util__twi.html#gac8a7cb1a91946c6e3955608a91371148">TW_WRITE</a>&nbsp;&nbsp;&nbsp;0</td></tr> </table> <hr/><a name="_details"></a><h2>Detailed Description</h2> </div> <hr width="80%"> <p><center>Automatically generated by Doxygen 1.6.3 on 7 Oct 2015.</center></p> </body> </html>
echarts/03/toolbox.html
weixianpin/test
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>ECharts</title> <!-- 引入 echarts.js --> <script src="../echarts.min.js"></script> </head> <body> <!-- 为ECharts准备一个具备大小(宽高)的Dom --> <div id="main" style="width: 900px;height:600px;"></div> <script type="text/javascript"> // 基于准备好的dom,初始化echarts实例 var myChart = echarts.init(document.getElementById('main')); // 指定图表的配置项和数据 var option = { title: { text: 'ECharts 入门示例', }, toolbox: { show: true, feature: { dataView:{ show:true }, restore:{ show:true }, dataZoom:{ show:true }, saveAsImage: { show: true }, magicType: { type: ['line', 'bar'] } } }, legend: { data: ['销量'] }, xAxis: { data: ["衬衫", "羊毛衫", "雪纺衫", "裤子", "高跟鞋", "袜子"] }, yAxis: {}, series: [{ name: '销量', type: 'bar', data: [5, 20, 36, 10, 10, 20] }] }; // 使用刚指定的配置项和数据显示图表。 myChart.setOption(option); </script> </body> </html>
doc/html/qtsvg.html
kobolabs/qt-everywhere-4.8.0
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- modules.qdoc --> <title>Qt 4.8: QtSvg Module</title> <link rel="stylesheet" type="text/css" href="style/offline.css" /> </head> <body> <div class="header" id="qtdocheader"> <div class="content"> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> </div> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Breadcrumbs go here --> <li><a href="modules.html">Modules</a></li> <li>QtSvg</li> </ul> </div> </div> <div class="content mainContent"> <div class="toc"> <h3><a name="toc">Contents</a></h3> <ul> <li class="level1"><a href="#classes">Classes</a></li> <li class="level1"><a href="#details">Detailed Description</a></li> <li class="level2"><a href="#license-information">License Information</a></li> </ul> </div> <h1 class="title">QtSvg Module</h1> <span class="subtitle"></span> <!-- $$$QtSvg-brief --> <p>The QtSvg module provides classes for displaying and creating SVG files. <a href="#details">More...</a></p> <!-- @@@QtSvg --> <p>This documentation was introduced in Qt 4.1.</p> <a name="classes"></a> <h2>Classes</h2> <table class="annotated"> <tr class="odd topAlign"><td class="tblName"><p><a href="qgraphicssvgitem.html">QGraphicsSvgItem</a></p></td><td class="tblDescr"><p>QGraphicsItem that can be used to render the contents of SVG files</p></td></tr> <tr class="even topAlign"><td class="tblName"><p><a href="qsvggenerator.html">QSvgGenerator</a></p></td><td class="tblDescr"><p>Paint device that is used to create SVG drawings</p></td></tr> <tr class="odd topAlign"><td class="tblName"><p><a href="qsvgrenderer.html">QSvgRenderer</a></p></td><td class="tblDescr"><p>Used to draw the contents of SVG files onto paint devices</p></td></tr> <tr class="even topAlign"><td class="tblName"><p><a href="qsvgwidget.html">QSvgWidget</a></p></td><td class="tblDescr"><p>Widget that is used to display the contents of Scalable Vector Graphics (SVG) files</p></td></tr> </table> <!-- $$$QtSvg-description --> <a name="details"></a> <div class="descr"> <h2>Detailed Description</h2> <p>To include the definitions of the module's classes, use the following directive:</p> <pre class="cpp"> <span class="preprocessor">#include &lt;QtSvg&gt;</span></pre> <p>To link against the module, add this line to your <a href="qmake-manual.html#qmake">qmake</a> <tt>.pro</tt> file:</p> <pre class="cpp"> QT += svg</pre> <a name="license-information"></a> <h2>License Information</h2> <p>Some code for arc handling in this module is derived from code with the following license:</p> <div class="LegaleseLeft"><p>Copyright 2002 USC/Information Sciences Institute</p> <p>Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Information Sciences Institute not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. Information Sciences Institute makes no representations about the suitability of this software for any purpose. It is provided &quot;as is&quot; without express or implied warranty.</p> <p>INFORMATION SCIENCES INSTITUTE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL INFORMATION SCIENCES INSTITUTE BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.</p> </div></div> <!-- @@@QtSvg --> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.</p> <p> All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p> <br /> <p> Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p> <p> Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> </div> </body> </html>
html-docs/contents/8d41dbb2baaa0bccbef1eb9ae9894eaa.html
jiangbo212/netty-init
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>ctx</title> <!-- <script src="http://use.edgefonts.net/source-sans-pro;source-code-pro.js"></script> --> <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic|Source+Code+Pro:300,400,700' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="../assets/css/bootstrap.css"> <link rel="stylesheet" href="../assets/css/jquery.bonsai.css"> <link rel="stylesheet" href="../assets/css/main.css"> <link rel="stylesheet" href="../assets/css/icons.css"> <script type="text/javascript" src="../assets/js/jquery-2.1.0.min.js"></script> <script type="text/javascript" src="../assets/js/bootstrap.js"></script> <script type="text/javascript" src="../assets/js/jquery.bonsai.js"></script> <!-- <script type="text/javascript" src="../assets/js/main.js"></script> --> </head> <body> <div> <!-- Name Title --> <h1>ctx</h1> <!-- Type and Stereotype --> <section style="margin-top: .5em;"> <span class="alert alert-info"> <span class="node-icon _icon-UMLParameter"></span> UMLParameter </span> </section> <!-- Path --> <section style="margin-top: 10px"> <span class="label label-info"><a href='cf9c8b720f3815adeccaf3ef6e48c6c4.html'><span class='node-icon _icon-Project'></span>Untitled</a></span> <span>::</span> <span class="label label-info"><a href='6550300e57d7fc770bd2e9afbcdb3ecb.html'><span class='node-icon _icon-UMLModel'></span>JavaReverse</a></span> <span>::</span> <span class="label label-info"><a href='7ff2d96ca3eb7f62f48c1a30b3c7c990.html'><span class='node-icon _icon-UMLPackage'></span>net</a></span> <span>::</span> <span class="label label-info"><a href='7adc4be4f2e4859086f068fc27512d85.html'><span class='node-icon _icon-UMLPackage'></span>gleamynode</a></span> <span>::</span> <span class="label label-info"><a href='bb15307bdbbaf31bfef4f71be74150ae.html'><span class='node-icon _icon-UMLPackage'></span>netty</a></span> <span>::</span> <span class="label label-info"><a href='785238236d089a3506bc5e7d05957743.html'><span class='node-icon _icon-UMLPackage'></span>example</a></span> <span>::</span> <span class="label label-info"><a href='3da50ee4fdaa97100f965c99217141dd.html'><span class='node-icon _icon-UMLPackage'></span>factorial</a></span> <span>::</span> <span class="label label-info"><a href='31b58c072cdfb51a485f3cef12e12750.html'><span class='node-icon _icon-UMLClass'></span>FactorialClientHandler</a></span> <span>::</span> <span class="label label-info"><a href='4858060cf0389214f7f8ee277194d488.html'><span class='node-icon _icon-UMLOperation'></span>exceptionCaught</a></span> <span>::</span> <span class="label label-info"><a href='8d41dbb2baaa0bccbef1eb9ae9894eaa.html'><span class='node-icon _icon-UMLParameter'></span>ctx</a></span> </section> <!-- Diagram --> <!-- Description --> <section> <h3>Description</h3> <div> <span class="label label-info">none</span> </div> </section> <!-- Specification --> <!-- Directed Relationship --> <!-- Undirected Relationship --> <!-- Classifier --> <!-- Interface --> <!-- Component --> <!-- Node --> <!-- Actor --> <!-- Use Case --> <!-- Template Parameters --> <!-- Literals --> <!-- Attributes --> <!-- Operations --> <!-- Receptions --> <!-- Extension Points --> <!-- Parameters --> <!-- Diagrams --> <!-- Behavior --> <!-- Action --> <!-- Interaction --> <!-- CombinedFragment --> <!-- Activity --> <!-- State Machine --> <!-- State Machine --> <!-- State --> <!-- Vertex --> <!-- Transition --> <!-- Properties --> <section> <h3>Properties</h3> <table class="table table-striped table-bordered"> <tr> <th width="50%">Name</th> <th width="50%">Value</th> </tr> <tr> <td>name</td> <td>ctx</td> </tr> <tr> <td>stereotype</td> <td><span class='label label-info'>null</span></td> </tr> <tr> <td>visibility</td> <td>public</td> </tr> <tr> <td>isStatic</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>isLeaf</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>type</td> <td><a href='b70f5f8c66e70a6b63058fab99d5b6b1.html'><span class='node-icon _icon-UMLClass'></span>ChannelHandlerContext</a></td> </tr> <tr> <td>multiplicity</td> <td></td> </tr> <tr> <td>isReadOnly</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>isOrdered</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>isUnique</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>defaultValue</td> <td></td> </tr> <tr> <td>direction</td> <td>in</td> </tr> </table> </section> <!-- Tags --> <!-- Constraints, Dependencies, Dependants --> <!-- Relationships --> <!-- Owned Elements --> </div> </body> </html>
javadoc/org/jgrapht/alg/cycle/class-use/TarjanSimpleCycles.html
martin-omburajr/Siyavula-Bona
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_25) on Sun Apr 05 16:22:15 PDT 2015 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.jgrapht.alg.cycle.TarjanSimpleCycles (JGraphT : a free Java graph library)</title> <meta name="date" content="2015-04-05"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.jgrapht.alg.cycle.TarjanSimpleCycles (JGraphT : a free Java graph library)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/jgrapht/alg/cycle/TarjanSimpleCycles.html" title="class in org.jgrapht.alg.cycle">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/jgrapht/alg/cycle/class-use/TarjanSimpleCycles.html" target="_top">Frames</a></li> <li><a href="TarjanSimpleCycles.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.jgrapht.alg.cycle.TarjanSimpleCycles" class="title">Uses of Class<br>org.jgrapht.alg.cycle.TarjanSimpleCycles</h2> </div> <div class="classUseContainer">No usage of org.jgrapht.alg.cycle.TarjanSimpleCycles</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/jgrapht/alg/cycle/TarjanSimpleCycles.html" title="class in org.jgrapht.alg.cycle">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?org/jgrapht/alg/cycle/class-use/TarjanSimpleCycles.html" target="_top">Frames</a></li> <li><a href="TarjanSimpleCycles.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2015. All rights reserved.</small></p> </body> </html>
epcis/apidocs/org/accada/epcis/utils/package-use.html
Fosstrak/fosstrak.github.io
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_05) on Sun Jul 13 14:54:41 CEST 2008 --> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <TITLE> Uses of Package org.accada.epcis.utils (epcis 0.3.3-SNAPSHOT API) </TITLE> <META NAME="date" CONTENT="2008-07-13"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package org.accada.epcis.utils (epcis 0.3.3-SNAPSHOT API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/accada/epcis/utils/package-use.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Package<br>org.accada.epcis.utils</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../../org/accada/epcis/utils/package-summary.html">org.accada.epcis.utils</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#org.accada.epcis.utils"><B>org.accada.epcis.utils</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="org.accada.epcis.utils"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Classes in <A HREF="../../../../org/accada/epcis/utils/package-summary.html">org.accada.epcis.utils</A> used by <A HREF="../../../../org/accada/epcis/utils/package-summary.html">org.accada.epcis.utils</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><B><A HREF="../../../../org/accada/epcis/utils/class-use/QueryCallbackListener.html#org.accada.epcis.utils"><B>QueryCallbackListener</B></A></B> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This class implements a simple web server listening for responses from the EPCIS Query Callback interface.</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/accada/epcis/utils/package-use.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2008. All Rights Reserved. </BODY> </HTML>
styles/geral/css/lightbox.css
marcelosoaressouza/estudiolivre
#lightbox { background-color:#aaaaaa; border:10px solid #aaaaaa; display:none; } #closeButton{ cursor:pointer; text-align:right; background-color:#ff0000; }
docs/api/Mapsui.Widgets.ScaleBar.ScaleBarWidget.html
tebben/Mapsui
<!DOCTYPE html> <!--[if IE]><![endif]--> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Class ScaleBarWidget </title> <meta name="viewport" content="width=device-width"> <meta name="title" content="Class ScaleBarWidget "> <meta name="generator" content="docfx 2.37.0.0"> <link rel="shortcut icon" href="../images/favicon.ico"> <link rel="stylesheet" href="../styles/docfx.vendor.css"> <link rel="stylesheet" href="../styles/docfx.css"> <link rel="stylesheet" href="../styles/main.css"> <meta property="docfx:navrel" content="../toc.html"> <meta property="docfx:tocrel" content="toc.html"> </head> <body data-spy="scroll" data-target="#affix" data-offset="120"> <div id="wrapper"> <header> <nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="../index.html"> <img id="logo" class="svg" src="../images/logo.svg" alt=""> </a> </div> <div class="collapse navbar-collapse" id="navbar"> <form class="navbar-form navbar-right" role="search" id="search"> <div class="form-group"> <input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off"> </div> </form> </div> </div> </nav> <div class="subnav navbar navbar-default"> <div class="container hide-when-search" id="breadcrumb"> <ul class="breadcrumb"> <li></li> </ul> </div> </div> </header> <div role="main" class="container body-content hide-when-search"> <div class="sidenav hide-when-search"> <a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a> <div class="sidetoggle collapse" id="sidetoggle"> <div id="sidetoc"></div> </div> </div> <div class="article row grid-right"> <div class="col-md-10"> <article class="content wrap" id="_content" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget"> <h1 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget" class="text-break">Class ScaleBarWidget </h1> <div class="markdown level0 summary"><p>A ScaleBarWidget displays the ratio of a distance on the map to the corresponding distance on the ground. It uses always the center of a given Viewport to calc this ratio.</p> <p>Usage To show a ScaleBarWidget, add a instance of the ScaleBarWidget to Map.Widgets by</p> <p>map.Widgets.Add(new ScaleBarWidget(map));</p> <p>Customize ScaleBarMode: Determins, how much scalebars are shown. Could be Single or Both. SecondaryUnitConverter: First UnitConverter for upper scalebar. There are UnitConverters for metric, imperial and nautical units. SecondaryUnitConverter = NauticalUnitConverter.Instance }); MaxWidth: Maximal width of the scalebar. Real width could be smaller. HorizontalAlignment: Where the ScaleBarWidget is shown. Could be Left, Right, Center or Position. VerticalAlignment: Where the ScaleBarWidget is shown. Could be Top, Bottom, Center or Position. PositionX: If HorizontalAlignment is Position, this value determins the distance to the left PositionY: If VerticalAlignment is Position, this value determins the distance to the top TextColor: Color for text and lines Halo: Color used around text and lines, so the scalebar is better visible TextAlignment: Alignment of scalebar text to the lines. Could be Left, Right or Center TextMargin: Space between text and lines of scalebar Font: Font which is used to draw text TickLength: Length of the ticks at scalebar</p> </div> <div class="markdown level0 conceptual"></div> <div class="inheritance"> <h5>Inheritance</h5> <div class="level0"><span class="xref">System.Object</span></div> <div class="level1"><a class="xref" href="Mapsui.Widgets.Widget.html">Widget</a></div> <div class="level2"><span class="xref">ScaleBarWidget</span></div> </div> <div classs="implements"> <h5>Implements</h5> <div><a class="xref" href="Mapsui.Widgets.IWidget.html">IWidget</a></div> <div><span class="xref">INotifyPropertyChanged</span></div> </div> <div class="inheritedMembers"> <h5>Inherited Members</h5> <div> <a class="xref" href="Mapsui.Widgets.Widget.html#Mapsui_Widgets_Widget_HorizontalAlignment">Widget.HorizontalAlignment</a> </div> <div> <a class="xref" href="Mapsui.Widgets.Widget.html#Mapsui_Widgets_Widget_VerticalAlignment">Widget.VerticalAlignment</a> </div> <div> <a class="xref" href="Mapsui.Widgets.Widget.html#Mapsui_Widgets_Widget_MarginX">Widget.MarginX</a> </div> <div> <a class="xref" href="Mapsui.Widgets.Widget.html#Mapsui_Widgets_Widget_MarginY">Widget.MarginY</a> </div> <div> <a class="xref" href="Mapsui.Widgets.Widget.html#Mapsui_Widgets_Widget_Envelope">Widget.Envelope</a> </div> <div> <a class="xref" href="Mapsui.Widgets.Widget.html#Mapsui_Widgets_Widget_CalculatePositionX_System_Single_System_Single_System_Single_">Widget.CalculatePositionX(Single, Single, Single)</a> </div> <div> <a class="xref" href="Mapsui.Widgets.Widget.html#Mapsui_Widgets_Widget_CalculatePositionY_System_Single_System_Single_System_Single_">Widget.CalculatePositionY(Single, Single, Single)</a> </div> </div> <h6><strong>Namespace</strong>: <a class="xref" href="Mapsui.Widgets.ScaleBar.html">Mapsui.Widgets.ScaleBar</a></h6> <h6><strong>Assembly</strong>: Mapsui.dll</h6> <h5 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_syntax">Syntax</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public class ScaleBarWidget : Widget, IWidget, INotifyPropertyChanged</code></pre> </div> <h3 id="constructors">Constructors </h3> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget__ctor.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.%23ctor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L46">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget__ctor_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.#ctor*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget__ctor" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.#ctor">ScaleBarWidget()</h4> <div class="markdown level1 summary"></div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public ScaleBarWidget()</code></pre> </div> <h3 id="properties">Properties </h3> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_Font.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.Font%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L170">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_Font_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.Font*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_Font" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.Font">Font</h4> <div class="markdown level1 summary"><p>Font to use for drawing text</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public Font Font { get; set; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Mapsui.Styles.Font.html">Font</a></td> <td></td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_Halo.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.Halo%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L123">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_Halo_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.Halo*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_Halo" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.Halo">Halo</h4> <div class="markdown level1 summary"><p>Halo color of scalebar and text, so that it is better visible</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public Color Halo { get; set; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Mapsui.Styles.Color.html">Color</a></td> <td></td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_Height.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.Height%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L87">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_Height_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.Height*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_Height" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.Height">Height</h4> <div class="markdown level1 summary"><p>Real height of scalebar. Depends on number of unit converters and text size. Is calculated by renderer.</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public float Height { get; set; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">System.Single</span></td> <td></td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_MaxWidth.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.MaxWidth%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L67">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_MaxWidth_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.MaxWidth*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_MaxWidth" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.MaxWidth">MaxWidth</h4> <div class="markdown level1 summary"><p>Maximum usable width for scalebar. The real used width could be less, because we want only integers as text.</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public float MaxWidth { get; set; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">System.Single</span></td> <td></td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_Scale.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.Scale%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L135">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_Scale_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.Scale*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_Scale" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.Scale">Scale</h4> <div class="markdown level1 summary"></div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public float Scale { get; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">System.Single</span></td> <td></td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_ScaleBarMode.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.ScaleBarMode%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L232">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_ScaleBarMode_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.ScaleBarMode*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_ScaleBarMode" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.ScaleBarMode">ScaleBarMode</h4> <div class="markdown level1 summary"><p>ScaleBarMode of scalebar. Could be Single to show only one or Both for showing two units.</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public ScaleBarMode ScaleBarMode { get; set; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Mapsui.Widgets.ScaleBar.ScaleBarMode.html">ScaleBarMode</a></td> <td></td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_SecondaryUnitConverter.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.SecondaryUnitConverter%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L212">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_SecondaryUnitConverter_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.SecondaryUnitConverter*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_SecondaryUnitConverter" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.SecondaryUnitConverter">SecondaryUnitConverter</h4> <div class="markdown level1 summary"><p>Secondary unit converter for lower text if ScaleBarMode is Both. Default is ImperialUnitConverter.</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public IUnitConverter SecondaryUnitConverter { get; set; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Mapsui.Widgets.ScaleBar.IUnitConverter.html">IUnitConverter</a></td> <td></td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_ShowEnvelop.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.ShowEnvelop%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L250">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_ShowEnvelop_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.ShowEnvelop*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_ShowEnvelop" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.ShowEnvelop">ShowEnvelop</h4> <div class="markdown level1 summary"><p>Draw a rectangle around the scale bar for testing</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public bool ShowEnvelop { get; set; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">System.Boolean</span></td> <td></td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_TextAlignment.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.TextAlignment%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L147">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_TextAlignment_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.TextAlignment*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_TextAlignment" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.TextAlignment">TextAlignment</h4> <div class="markdown level1 summary"><p>Alignment of text of scalebar</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public Alignment TextAlignment { get; set; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Mapsui.Widgets.Alignment.html">Alignment</a></td> <td></td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_TextColor.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.TextColor%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L106">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_TextColor_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.TextColor*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_TextColor" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.TextColor">TextColor</h4> <div class="markdown level1 summary"><p>Foreground color of scalebar and text</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public Color TextColor { get; set; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Mapsui.Styles.Color.html">Color</a></td> <td></td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_TextMargin.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.TextMargin%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L163">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_TextMargin_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.TextMargin*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_TextMargin" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.TextMargin">TextMargin</h4> <div class="markdown level1 summary"><p>Margin between end of tick and text</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public float TextMargin { get; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">System.Single</span></td> <td></td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_TickLength.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.TickLength%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L140">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_TickLength_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.TickLength*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_TickLength" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.TickLength">TickLength</h4> <div class="markdown level1 summary"><p>Length of the ticks</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public float TickLength { get; set; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">System.Single</span></td> <td></td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_UnitConverter.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.UnitConverter%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L188">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_UnitConverter_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.UnitConverter*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_UnitConverter" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.UnitConverter">UnitConverter</h4> <div class="markdown level1 summary"><p>Normal unit converter for upper text. Default is MetricUnitConverter.</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public IUnitConverter UnitConverter { get; set; }</code></pre> </div> <h5 class="propertyValue">Property Value</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Mapsui.Widgets.ScaleBar.IUnitConverter.html">IUnitConverter</a></td> <td></td> </tr> </tbody> </table> <h3 id="methods">Methods </h3> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_CanTransform_Mapsui_Map_.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.CanTransform(Mapsui.Map)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L460">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_CanTransform_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.CanTransform*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_CanTransform_Mapsui_Map_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.CanTransform(Mapsui.Map)">CanTransform(Map)</h4> <div class="markdown level1 summary"></div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public bool CanTransform(Map map)</code></pre> </div> <h5 class="parameters">Parameters</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Mapsui.Map.html">Map</a></td> <td><span class="parametername">map</span></td> <td></td> </tr> </tbody> </table> <h5 class="returns">Returns</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">System.Boolean</span></td> <td></td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_GetScaleBarLengthAndText_Mapsui_Map_Mapsui_IReadOnlyViewport_.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.GetScaleBarLengthAndText(Mapsui.Map%2CMapsui.IReadOnlyViewport)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L261">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_GetScaleBarLengthAndText_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.GetScaleBarLengthAndText*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_GetScaleBarLengthAndText_Mapsui_Map_Mapsui_IReadOnlyViewport_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.GetScaleBarLengthAndText(Mapsui.Map,Mapsui.IReadOnlyViewport)">GetScaleBarLengthAndText(Map, IReadOnlyViewport)</h4> <div class="markdown level1 summary"><p>Calculates the length and text for both scalebars</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public GetScaleBarLengthAndText(Map map, IReadOnlyViewport viewport)</code></pre> </div> <h5 class="parameters">Parameters</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Mapsui.Map.html">Map</a></td> <td><span class="parametername">map</span></td> <td></td> </tr> <tr> <td><a class="xref" href="Mapsui.IReadOnlyViewport.html">IReadOnlyViewport</a></td> <td><span class="parametername">viewport</span></td> <td></td> </tr> </tbody> </table> <h5 class="returns">Returns</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">System.</span></td> <td><p>Length of upper scalebar Text of upper scalebar Length of lower scalebar Text of lower scalebar</p> </td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_GetScaleBarLinePositions_Mapsui_Map_Mapsui_IReadOnlyViewport_System_Single_System_Single_System_Single_.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.GetScaleBarLinePositions(Mapsui.Map%2CMapsui.IReadOnlyViewport%2CSystem.Single%2CSystem.Single%2CSystem.Single)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L290">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_GetScaleBarLinePositions_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.GetScaleBarLinePositions*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_GetScaleBarLinePositions_Mapsui_Map_Mapsui_IReadOnlyViewport_System_Single_System_Single_System_Single_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.GetScaleBarLinePositions(Mapsui.Map,Mapsui.IReadOnlyViewport,System.Single,System.Single,System.Single)">GetScaleBarLinePositions(Map, IReadOnlyViewport, Single, Single, Single)</h4> <div class="markdown level1 summary"><p>Get pairs of points, which determin start and stop of the lines used to draw the scalebar</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public Point[] GetScaleBarLinePositions(Map map, IReadOnlyViewport viewport, float scaleBarLength1, float scaleBarLength2, float stroke)</code></pre> </div> <h5 class="parameters">Parameters</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Mapsui.Map.html">Map</a></td> <td><span class="parametername">map</span></td> <td></td> </tr> <tr> <td><a class="xref" href="Mapsui.IReadOnlyViewport.html">IReadOnlyViewport</a></td> <td><span class="parametername">viewport</span></td> <td></td> </tr> <tr> <td><span class="xref">System.Single</span></td> <td><span class="parametername">scaleBarLength1</span></td> <td><p>Length of upper scalebar</p> </td> </tr> <tr> <td><span class="xref">System.Single</span></td> <td><span class="parametername">scaleBarLength2</span></td> <td><p>Length of lower scalebar</p> </td> </tr> <tr> <td><span class="xref">System.Single</span></td> <td><span class="parametername">stroke</span></td> <td><p>Width of line</p> </td> </tr> </tbody> </table> <h5 class="returns">Returns</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Mapsui.Geometries.Point.html">Point</a>[]</td> <td><p>Array with pairs of Points. First is always the start point, the second is the end point.</p> </td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_GetScaleBarTextPositions_Mapsui_IReadOnlyViewport_Mapsui_Geometries_BoundingBox_Mapsui_Geometries_BoundingBox_Mapsui_Geometries_BoundingBox_System_Single_.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.GetScaleBarTextPositions(Mapsui.IReadOnlyViewport%2CMapsui.Geometries.BoundingBox%2CMapsui.Geometries.BoundingBox%2CMapsui.Geometries.BoundingBox%2CSystem.Single)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L402">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_GetScaleBarTextPositions_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.GetScaleBarTextPositions*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_GetScaleBarTextPositions_Mapsui_IReadOnlyViewport_Mapsui_Geometries_BoundingBox_Mapsui_Geometries_BoundingBox_Mapsui_Geometries_BoundingBox_System_Single_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.GetScaleBarTextPositions(Mapsui.IReadOnlyViewport,Mapsui.Geometries.BoundingBox,Mapsui.Geometries.BoundingBox,Mapsui.Geometries.BoundingBox,System.Single)">GetScaleBarTextPositions(IReadOnlyViewport, BoundingBox, BoundingBox, BoundingBox, Single)</h4> <div class="markdown level1 summary"><p>Calculates the top-left-position of upper and lower text</p> </div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public GetScaleBarTextPositions(IReadOnlyViewport viewport, BoundingBox textSize, BoundingBox textSize1, BoundingBox textSize2, float stroke)</code></pre> </div> <h5 class="parameters">Parameters</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Mapsui.IReadOnlyViewport.html">IReadOnlyViewport</a></td> <td><span class="parametername">viewport</span></td> <td></td> </tr> <tr> <td><a class="xref" href="Mapsui.Geometries.BoundingBox.html">BoundingBox</a></td> <td><span class="parametername">textSize</span></td> <td><p>Default textsize for the string &quot;9999 m&quot;</p> </td> </tr> <tr> <td><a class="xref" href="Mapsui.Geometries.BoundingBox.html">BoundingBox</a></td> <td><span class="parametername">textSize1</span></td> <td><p>Size of upper text of scalebar</p> </td> </tr> <tr> <td><a class="xref" href="Mapsui.Geometries.BoundingBox.html">BoundingBox</a></td> <td><span class="parametername">textSize2</span></td> <td><p>Size of lower text of scalebar</p> </td> </tr> <tr> <td><span class="xref">System.Single</span></td> <td><span class="parametername">stroke</span></td> <td><p>Width of line</p> </td> </tr> </tbody> </table> <h5 class="returns">Returns</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">System.</span></td> <td><p>posX1 as left position of upper scalebar text posY1 as top position of upper scalebar text posX2 as left position of lower scalebar text posY2 as top position of lower scalebar text</p> </td> </tr> </tbody> </table> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_HandleWidgetTouched_Mapsui_INavigator_Mapsui_Geometries_Point_.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.HandleWidgetTouched(Mapsui.INavigator%2CMapsui.Geometries.Point)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L456">View Source</a> </span> <a id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_HandleWidgetTouched_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.HandleWidgetTouched*"></a> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_HandleWidgetTouched_Mapsui_INavigator_Mapsui_Geometries_Point_" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.HandleWidgetTouched(Mapsui.INavigator,Mapsui.Geometries.Point)">HandleWidgetTouched(INavigator, Point)</h4> <div class="markdown level1 summary"></div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public override void HandleWidgetTouched(INavigator navigator, Point position)</code></pre> </div> <h5 class="parameters">Parameters</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Name</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><a class="xref" href="Mapsui.INavigator.html">INavigator</a></td> <td><span class="parametername">navigator</span></td> <td></td> </tr> <tr> <td><a class="xref" href="Mapsui.Geometries.Point.html">Point</a></td> <td><span class="parametername">position</span></td> <td></td> </tr> </tbody> </table> <h5 class="overrides">Overrides</h5> <div><a class="xref" href="Mapsui.Widgets.Widget.html#Mapsui_Widgets_Widget_HandleWidgetTouched_Mapsui_INavigator_Mapsui_Geometries_Point_">Widget.HandleWidgetTouched(INavigator, Point)</a></div> <h3 id="events">Events </h3> <span class="small pull-right mobile-hide"> <span class="divider">|</span> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget_PropertyChanged.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget.PropertyChanged%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a> </span> <span class="small pull-right mobile-hide"> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L59">View Source</a> </span> <h4 id="Mapsui_Widgets_ScaleBar_ScaleBarWidget_PropertyChanged" data-uid="Mapsui.Widgets.ScaleBar.ScaleBarWidget.PropertyChanged">PropertyChanged</h4> <div class="markdown level1 summary"></div> <div class="markdown level1 conceptual"></div> <h5 class="decalaration">Declaration</h5> <div class="codewrapper"> <pre><code class="lang-csharp hljs">public event PropertyChangedEventHandler PropertyChanged</code></pre> </div> <h5 class="eventType">Event Type</h5> <table class="table table-bordered table-striped table-condensed"> <thead> <tr> <th>Type</th> <th>Description</th> </tr> </thead> <tbody> <tr> <td><span class="xref">PropertyChangedEventHandler</span></td> <td></td> </tr> </tbody> </table> <h3 id="implements">Implements</h3> <div> <a class="xref" href="Mapsui.Widgets.IWidget.html">IWidget</a> </div> <div> <span class="xref">INotifyPropertyChanged</span> </div> </article> </div> <div class="hidden-sm col-md-2" role="complementary"> <div class="sideaffix"> <div class="contribution"> <ul class="nav"> <li> <a href="https://github.com/Mapsui/Mapsui/new/master/apiSpec/new?filename=Mapsui_Widgets_ScaleBar_ScaleBarWidget.md&amp;value=---%0Auid%3A%20Mapsui.Widgets.ScaleBar.ScaleBarWidget%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a> </li> <li> <a href="https://github.com/Mapsui/Mapsui/blob/master/Mapsui/Widgets/ScaleBar/ScaleBarWidget.cs/#L35" class="contribution-link">View Source</a> </li> </ul> </div> <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix"> <!-- <p><a class="back-to-top" href="#top">Back to top</a><p> --> </nav> </div> </div> </div> </div> <footer> <div class="grad-bottom"></div> <div class="footer"> <div class="container"> <span class="pull-right"> <a href="#top">Back to top</a> </span> <span>Generated by <strong>DocFX</strong></span> </div> </div> </footer> </div> <script type="text/javascript" src="../styles/docfx.vendor.js"></script> <script type="text/javascript" src="../styles/docfx.js"></script> <script type="text/javascript" src="../styles/main.js"></script> </body> </html>
doc/COM.sootNsmoke.instructions.Tableswitch.html
tmjee/oolong
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> <!--NewPage--> <html> <head> <!-- Generated by javadoc on Sun Jan 24 11:21:22 EST 1999 --> <title> Class COM.sootNsmoke.instructions.Tableswitch </title> </head> <body> <a name="_top_"></a> <pre> <a href="packages.html">All Packages</a> <a href="tree.html">Class Hierarchy</a> <a href="Package-COM.sootNsmoke.instructions.html">This Package</a> <a href="COM.sootNsmoke.instructions.Swap.html#_top_">Previous</a> <a href="COM.sootNsmoke.instructions.Wide.html#_top_">Next</a> <a href="AllNames.html">Index</a></pre> <hr> <h1> Class COM.sootNsmoke.instructions.Tableswitch </h1> <pre> java.lang.Object | +----<a href="COM.sootNsmoke.instructions.Sequence.html#_top_">COM.sootNsmoke.instructions.Sequence</a> | +----COM.sootNsmoke.instructions.Tableswitch </pre> <hr> <dl> <dt> public class <b>Tableswitch</b> <dt> extends <a href="COM.sootNsmoke.instructions.Sequence.html#_top_">Sequence</a> </dl> <hr> <a name="index"></a> <h2> <img src="images/constructor-index.gif" width=275 height=38 alt="Constructor Index"> </h2> <dl> <dt> <img src="images/yellow-ball-small.gif" width=6 height=6 alt=" o "> <a href="#Tableswitch(int, java.lang.String, java.lang.String[])"><b>Tableswitch</b></a>(int, String, String[]) <dd> </dl> <h2> <img src="images/method-index.gif" width=207 height=38 alt="Method Index"> </h2> <dl> <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o "> <a href="#toBytecodes(COM.sootNsmoke.jvm.Bytecodes)"><b>toBytecodes</b></a>(Bytecodes) <dd> Converts the instruction sequence to an array of bytecodes. <dt> <img src="images/red-ball-small.gif" width=6 height=6 alt=" o "> <a href="#toString()"><b>toString</b></a>() <dd> </dl> <a name="constructors"></a> <h2> <img src="images/constructors.gif" width=231 height=38 alt="Constructors"> </h2> <a name="Tableswitch"></a> <a name="Tableswitch(int, java.lang.String, java.lang.String[])"><img src="images/yellow-ball.gif" width=12 height=12 alt=" o "></a> <b>Tableswitch</b> <pre> public Tableswitch(int low, String dflt, String offsets[]) </pre> <a name="methods"></a> <h2> <img src="images/methods.gif" width=151 height=38 alt="Methods"> </h2> <a name="toString()"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a> <a name="toString"><b>toString</b></a> <pre> public String toString() </pre> <dl> <dd><dl> <dt> <b>Overrides:</b> <dd> <a href="java.lang.Object.html#toString()">toString</a> in class Object </dl></dd> </dl> <a name="toBytecodes(COM.sootNsmoke.jvm.Bytecodes)"><img src="images/red-ball.gif" width=12 height=12 alt=" o "></a> <a name="toBytecodes"><b>toBytecodes</b></a> <pre> public void toBytecodes(<a href="COM.sootNsmoke.jvm.Bytecodes.html#_top_">Bytecodes</a> bytecodes) </pre> <dl> <dd> Converts the instruction sequence to an array of bytecodes. <p> <dd><dl> <dt> <b>Overrides:</b> <dd> <a href="COM.sootNsmoke.instructions.Sequence.html#toBytecodes(COM.sootNsmoke.jvm.Bytecodes)">toBytecodes</a> in class <a href="COM.sootNsmoke.instructions.Sequence.html#_top_">Sequence</a> </dl></dd> </dl> <hr> <pre> <a href="packages.html">All Packages</a> <a href="tree.html">Class Hierarchy</a> <a href="Package-COM.sootNsmoke.instructions.html">This Package</a> <a href="COM.sootNsmoke.instructions.Swap.html#_top_">Previous</a> <a href="COM.sootNsmoke.instructions.Wide.html#_top_">Next</a> <a href="AllNames.html">Index</a></pre> </body> </html>
docs/plugins/html/gst-plugins-good-plugins-videocrop.html
mrchapp/gst-plugins-good
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>videocrop</title> <meta name="generator" content="DocBook XSL Stylesheets V1.75.2"> <link rel="home" href="index.html" title="GStreamer Good Plugins 0.10 Plugins Reference Manual"> <link rel="up" href="ch01.html" title="gst-plugins-good Elements"> <link rel="prev" href="gst-plugins-good-plugins-videobox.html" title="videobox"> <link rel="next" href="gst-plugins-good-plugins-videoflip.html" title="videoflip"> <meta name="generator" content="GTK-Doc V1.15 (XML mode)"> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"> <tr valign="middle"> <td><a accesskey="p" href="gst-plugins-good-plugins-videobox.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td> <td><a accesskey="u" href="ch01.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td> <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td> <th width="100%" align="center">GStreamer Good Plugins 0.10 Plugins Reference Manual</th> <td><a accesskey="n" href="gst-plugins-good-plugins-videoflip.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td> </tr> <tr><td colspan="5" class="shortcuts"> <a href="#gst-plugins-good-plugins-videocrop.synopsis" class="shortcut">Top</a>  |  <a href="#gst-plugins-good-plugins-videocrop.description" class="shortcut">Description</a>  |  <a href="#gst-plugins-good-plugins-videocrop.object-hierarchy" class="shortcut">Object Hierarchy</a>  |  <a href="#gst-plugins-good-plugins-videocrop.properties" class="shortcut">Properties</a> </td></tr> </table> <div class="refentry" title="videocrop"> <a name="gst-plugins-good-plugins-videocrop"></a><div class="titlepage"></div> <div class="refnamediv"><table width="100%"><tr> <td valign="top"> <h2><span class="refentrytitle"><a name="gst-plugins-good-plugins-videocrop.top_of_page"></a>videocrop</span></h2> <p>videocrop — Crops video into a user-defined region</p> </td> <td valign="top" align="right"></td> </tr></table></div> <div class="refsynopsisdiv" title="Synopsis"> <a name="gst-plugins-good-plugins-videocrop.synopsis"></a><h2>Synopsis</h2> <a name="GstVideoCrop"></a><pre class="synopsis"> <a class="link" href="gst-plugins-good-plugins-videocrop.html#GstVideoCrop-struct" title="GstVideoCrop">GstVideoCrop</a>; </pre> </div> <div class="refsect1" title="Object Hierarchy"> <a name="gst-plugins-good-plugins-videocrop.object-hierarchy"></a><h2>Object Hierarchy</h2> <pre class="synopsis"> <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a> +----<a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstObject.html">GstObject</a> +----<a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer/html/GstElement.html">GstElement</a> +----<a href="http://gstreamer.freedesktop.org/data/doc/gstreamer/head/gstreamer-libs/html/GstBaseTransform.html">GstBaseTransform</a> +----GstVideoCrop </pre> </div> <div class="refsect1" title="Properties"> <a name="gst-plugins-good-plugins-videocrop.properties"></a><h2>Properties</h2> <pre class="synopsis"> "<a class="link" href="gst-plugins-good-plugins-videocrop.html#GstVideoCrop--bottom" title='The "bottom" property'>bottom</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write "<a class="link" href="gst-plugins-good-plugins-videocrop.html#GstVideoCrop--left" title='The "left" property'>left</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write "<a class="link" href="gst-plugins-good-plugins-videocrop.html#GstVideoCrop--right" title='The "right" property'>right</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write "<a class="link" href="gst-plugins-good-plugins-videocrop.html#GstVideoCrop--top" title='The "top" property'>top</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write </pre> </div> <div class="refsect1" title="Description"> <a name="gst-plugins-good-plugins-videocrop.description"></a><h2>Description</h2> <p> This element crops video frames, meaning it can remove parts of the picture on the left, right, top or bottom of the picture and output a smaller picture than the input picture, with the unwanted parts at the border removed. </p> <p> The videocrop element is similar to the videobox element, but its main goal is to support a multitude of formats as efficiently as possible. Unlike videbox, it cannot add borders to the picture and unlike videbox it will always output images in exactly the same format as the input image. </p> <p> If there is nothing to crop, the element will operate in pass-through mode. </p> <p> Note that no special efforts are made to handle chroma-subsampled formats in the case of odd-valued cropping and compensate for sub-unit chroma plane shifts for such formats in the case where the <a class="link" href="gst-plugins-good-plugins-videocrop.html#GstVideoCrop--left" title='The "left" property'><span class="type">"left"</span></a> or <a class="link" href="gst-plugins-good-plugins-videocrop.html#GstVideoCrop--top" title='The "top" property'><span class="type">"top"</span></a> property is set to an odd number. This doesn't matter for most use cases, but it might matter for yours. </p> <div class="refsect2" title="Example launch line"> <a name="id602369"></a><h3>Example launch line</h3> <div class="informalexample"> <table class="listing_frame" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td class="listing_lines" align="right"><pre>1</pre></td> <td class="listing_code"><pre class="programlisting">gst<span class="symbol">-</span>launch <span class="symbol">-</span>v videotestsrc <span class="symbol">!</span> videocrop top<span class="symbol">=</span><span class="number">42</span> left<span class="symbol">=</span><span class="number">1</span> right<span class="symbol">=</span><span class="number">4</span> bottom<span class="symbol">=</span><span class="number">0</span> <span class="symbol">!</span> ximagesink</pre></td> </tr> </tbody> </table> </div> </div> </div> <div class="refsect1" title="Details"> <a name="gst-plugins-good-plugins-videocrop.details"></a><h2>Details</h2> <div class="refsect2" title="GstVideoCrop"> <a name="GstVideoCrop-struct"></a><h3>GstVideoCrop</h3> <pre class="programlisting">typedef struct _GstVideoCrop GstVideoCrop;</pre> <p> </p> </div> </div> <div class="refsect1" title="Property Details"> <a name="gst-plugins-good-plugins-videocrop.property-details"></a><h2>Property Details</h2> <div class="refsect2" title='The "bottom" property'> <a name="GstVideoCrop--bottom"></a><h3>The <code class="literal">"bottom"</code> property</h3> <pre class="programlisting"> "bottom" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre> <p>Pixels to crop at bottom.</p> <p>Allowed values: &gt;= 0</p> <p>Default value: 0</p> </div> <hr> <div class="refsect2" title='The "left" property'> <a name="GstVideoCrop--left"></a><h3>The <code class="literal">"left"</code> property</h3> <pre class="programlisting"> "left" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre> <p>Pixels to crop at left.</p> <p>Allowed values: &gt;= 0</p> <p>Default value: 0</p> </div> <hr> <div class="refsect2" title='The "right" property'> <a name="GstVideoCrop--right"></a><h3>The <code class="literal">"right"</code> property</h3> <pre class="programlisting"> "right" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre> <p>Pixels to crop at right.</p> <p>Allowed values: &gt;= 0</p> <p>Default value: 0</p> </div> <hr> <div class="refsect2" title='The "top" property'> <a name="GstVideoCrop--top"></a><h3>The <code class="literal">"top"</code> property</h3> <pre class="programlisting"> "top" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre> <p>Pixels to crop at top.</p> <p>Allowed values: &gt;= 0</p> <p>Default value: 0</p> </div> </div> <div class="refsect1" title="See Also"> <a name="gst-plugins-good-plugins-videocrop.see-also"></a><h2>See Also</h2> <a class="link" href="gst-plugins-good-plugins-videobox.html#GstVideoBox"><span class="type">GstVideoBox</span></a> </div> </div> <div class="footer"> <hr> Generated by GTK-Doc V1.15</div> </body> </html>
doc/html/qtextoption.html
sunblithe/qt-everywhere-opensource-src-4.7.1
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- qtextoption.cpp --> <title>Qt 4.7: QTextOption Class Reference</title> <link rel="stylesheet" type="text/css" href="style/style.css" /> <script src="scripts/jquery.js" type="text/javascript"></script> <script src="scripts/functions.js" type="text/javascript"></script> </head> <body class="offline narrow creator"> <div class="header" id="qtdocheader"> <div class="content"> <div id="nav-logo"> <a href="index.html">Home</a></div> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> <div id="nav-topright"> <ul> <li class="nav-topright-home"><a href="http://qt.nokia.com/">Qt HOME</a></li> <li class="nav-topright-dev"><a href="http://developer.qt.nokia.com/">DEV</a></li> <li class="nav-topright-labs"><a href="http://labs.qt.nokia.com/blogs/">LABS</a></li> <li class="nav-topright-doc nav-topright-doc-active"><a href="http://doc.qt.nokia.com/"> DOC</a></li> <li class="nav-topright-blog"><a href="http://blog.qt.nokia.com/">BLOG</a></li> </ul> </div> <div id="shortCut"> <ul> <li class="shortCut-topleft-inactive"><span><a href="index.html">Qt 4.7</a></span></li> <li class="shortCut-topleft-active"><a href="http://doc.qt.nokia.com">ALL VERSIONS </a></li> </ul> </div> <ul class="sf-menu sf-js-enabled sf-shadow" id="narrowmenu"> <li><a href="#">API Lookup</a> <ul id="topmenuLook"> <li><a href="classes.html">Class index</a></li> <li><a href="functions.html">Function index</a></li> <li><a href="modules.html">Modules</a></li> <li><a href="namespaces.html">Namespaces</a></li> <li><a href="qtglobal.html">Global Declarations</a></li> <li><a href="licensing.html">Licenses and Credits</a></li> </ul> </li> <li><a href="#">Qt Topics</a> <ul id="topmenuTopic"> <li><a href="qt-basic-concepts.html">Programming with Qt</a></li> <li><a href="qtquick.html">Device UI's &amp; Qt Quick</a></li> <li><a href="qt-gui-concepts.html">UI Design with Qt</a></li> <li><a href="developing-with-qt.html">Cross-platform and Platform-specific</a></li> <li><a href="platform-specific.html">Platform-specific info</a></li> <li><a href="technology-apis.html">Qt and Key Technologies</a></li> <li><a href="best-practices.html">How-To's and Best Practices</a></li> </ul> </li> <li><a href="#">Examples</a> <ul id="topmenuexample"> <li><a href="all-examples.html">Examples</a></li> <li><a href="tutorials.html">Tutorials</a></li> <li><a href="demos.html">Demos</a></li> <li><a href="qdeclarativeexamples.html">QML Examples</a></li> </ul> </li> </ul> </div> </div> <div class="wrapper"> <div class="hd"> <span></span> </div> <div class="bd group"> <div class="sidebar"> <div class="searchlabel"> Search index:</div> <div class="search"> <form id="qtdocsearch" action="" onsubmit="return false;"> <fieldset> <input type="text" name="searchstring" id="pageType" value="" /> </fieldset> </form> </div> <div class="box first bottombar" id="lookup"> <h2 title="API Lookup"><span></span> API Lookup</h2> <div id="list001" class="list"> <ul id="ul001" > <li class="defaultLink"><a href="classes.html">Class index</a></li> <li class="defaultLink"><a href="functions.html">Function index</a></li> <li class="defaultLink"><a href="modules.html">Modules</a></li> <li class="defaultLink"><a href="namespaces.html">Namespaces</a></li> <li class="defaultLink"><a href="qtglobal.html">Global Declarations</a></li> <li class="defaultLink"><a href="qdeclarativeelements.html">QML elements</a></li> </ul> </div> </div> <div class="box bottombar" id="topics"> <h2 title="Qt Topics"><span></span> Qt Topics</h2> <div id="list002" class="list"> <ul id="ul002" > <li class="defaultLink"><a href="qt-basic-concepts.html">Programming with Qt</a></li> <li class="defaultLink"><a href="qtquick.html">Device UI's &amp; Qt Quick</a></li> <li class="defaultLink"><a href="qt-gui-concepts.html">UI Design with Qt</a></li> <li class="defaultLink"><a href="developing-with-qt.html">Cross-platform and Platform-specific</a></li> <li class="defaultLink"><a href="platform-specific.html">Platform-specific info</a></li> <li class="defaultLink"><a href="technology-apis.html">Qt and Key Technologies</a></li> <li class="defaultLink"><a href="best-practices.html">How-To's and Best Practices</a></li> </ul> </div> </div> <div class="box" id="examples"> <h2 title="Examples"><span></span> Examples</h2> <div id="list003" class="list"> <ul id="ul003"> <li class="defaultLink"><a href="all-examples.html">Examples</a></li> <li class="defaultLink"><a href="tutorials.html">Tutorials</a></li> <li class="defaultLink"><a href="demos.html">Demos</a></li> <li class="defaultLink"><a href="qdeclarativeexamples.html">QML Examples</a></li> </ul> </div> </div> </div> <div class="wrap"> <div class="toolbar"> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Bread crumbs goes here --> <li><a href="modules.html">Modules</a></li> <li><a href="qtgui.html">QtGui</a></li> <li>QTextOption</li> </ul> </div> <div class="toolbuttons toolblock"> <ul> <li id="smallA" class="t_button">A</li> <li id="medA" class="t_button active">A</li> <li id="bigA" class="t_button">A</li> <li id="print" class="t_button"><a href="javascript:this.print();"> <span>Print</span></a></li> </ul> </div> </div> <div class="content"> <div class="toc"> <h3><a name="toc">Contents</a></h3> <ul> <li class="level1"><a href="#public-types">Public Types</a></li> <li class="level1"><a href="#public-functions">Public Functions</a></li> <li class="level1"><a href="#details">Detailed Description</a></li> </ul> </div> <h1 class="title">QTextOption Class Reference</h1> <!-- $$$QTextOption-brief --> <p>The QTextOption class provides a description of general rich text properties. <a href="#details">More...</a></p> <!-- @@@QTextOption --> <pre class="highlightedCode brush: cpp"> #include &lt;QTextOption&gt;</pre><p><b>Note:</b> All functions in this class are <a href="threads-reentrancy.html#reentrant">reentrant</a>.</p> <ul> <li><a href="qtextoption-members.html">List of all members, including inherited members</a></li> </ul> <a name="public-types"></a> <h2>Public Types</h2> <table class="alignedsummary"> <tr><td class="memItemLeft rightAlign topAlign"> class </td><td class="memItemRight bottomAlign"><b><a href="qtextoption-tab.html">Tab</a></b></td></tr> <tr><td class="memItemLeft rightAlign topAlign"> enum </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#Flag-enum">Flag</a></b> { IncludeTrailingSpaces, ShowTabsAndSpaces, ShowLineAndParagraphSeparators, AddSpaceForLineAndParagraphSeparators, SuppressColors }</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> flags </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#Flag-enum">Flags</a></b></td></tr> <tr><td class="memItemLeft rightAlign topAlign"> enum </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#TabType-enum">TabType</a></b> { LeftTab, RightTab, CenterTab, DelimiterTab }</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> enum </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#WrapMode-enum">WrapMode</a></b> { NoWrap, WordWrap, ManualWrap, WrapAnywhere, WrapAtWordBoundaryOrAnywhere }</td></tr> </table> <a name="public-functions"></a> <h2>Public Functions</h2> <table class="alignedsummary"> <tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#QTextOption">QTextOption</a></b> ()</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#QTextOption-2">QTextOption</a></b> ( Qt::Alignment <i>alignment</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#QTextOption-3">QTextOption</a></b> ( const QTextOption &amp; <i>other</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#dtor.QTextOption">~QTextOption</a></b> ()</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> Qt::Alignment </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#alignment">alignment</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> Flags </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#flags">flags</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#setAlignment">setAlignment</a></b> ( Qt::Alignment <i>alignment</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#setFlags">setFlags</a></b> ( Flags <i>flags</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#setTabArray">setTabArray</a></b> ( QList&lt;qreal&gt; <i>tabStops</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#setTabStop">setTabStop</a></b> ( qreal <i>tabStop</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#setTabs">setTabs</a></b> ( QList&lt;Tab&gt; <i>tabStops</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#setTextDirection">setTextDirection</a></b> ( Qt::LayoutDirection <i>direction</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#setUseDesignMetrics">setUseDesignMetrics</a></b> ( bool <i>enable</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> void </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#setWrapMode">setWrapMode</a></b> ( WrapMode <i>mode</i> )</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> QList&lt;qreal&gt; </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#tabArray">tabArray</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> qreal </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#tabStop">tabStop</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> QList&lt;Tab&gt; </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#tabs">tabs</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> Qt::LayoutDirection </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#textDirection">textDirection</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> bool </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#useDesignMetrics">useDesignMetrics</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> WrapMode </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#wrapMode">wrapMode</a></b> () const</td></tr> <tr><td class="memItemLeft rightAlign topAlign"> QTextOption &amp; </td><td class="memItemRight bottomAlign"><b><a href="qtextoption.html#operator-eq">operator=</a></b> ( const QTextOption &amp; <i>other</i> )</td></tr> </table> <a name="details"></a> <!-- $$$QTextOption-description --> <div class="descr"> <h2>Detailed Description</h2> <p>The QTextOption class provides a description of general rich text properties.</p> <p>QTextOption is used to encapsulate common rich text properties in a single object. It contains information about text alignment, layout direction, word wrapping, and other standard properties associated with text rendering and layout.</p> </div> <p>See also <a href="qtextedit.html">QTextEdit</a>, <a href="qtextdocument.html">QTextDocument</a>, and <a href="qtextcursor.html">QTextCursor</a>.</p> <!-- @@@QTextOption --> <div class="types"> <h2>Member Type Documentation</h2> <!-- $$$Flag$$$ShowTabsAndSpaces$$$ShowLineAndParagraphSeparators$$$AddSpaceForLineAndParagraphSeparators$$$SuppressColors$$$IncludeTrailingSpaces --> <h3 class="flags"><a name="Flag-enum"></a>enum QTextOption::Flag<br/>flags QTextOption::Flags</h3> <table class="valuelist"><tr class="odd"><tr><th class="tblConst">Constant</th><th class="tblval">Value</th><th class="tbldscr">Description</th></tr> <tr><td class="topAlign"><tt>QTextOption::IncludeTrailingSpaces</tt></td><td class=" topAlign"><tt>0x80000000</tt></td><td class="topAlign">When this option is set, <a href="qtextline.html#naturalTextWidth">QTextLine::naturalTextWidth</a>() and naturalTextRect() will return a value that includes the width of trailing spaces in the text; otherwise this width is excluded.</td></tr> <tr><td class="topAlign"><tt>QTextOption::ShowTabsAndSpaces</tt></td><td class=" topAlign"><tt>0x1</tt></td><td class="topAlign">Visualize spaces with little dots, and tabs with little arrows.</td></tr> <tr><td class="topAlign"><tt>QTextOption::ShowLineAndParagraphSeparators</tt></td><td class=" topAlign"><tt>0x2</tt></td><td class="topAlign">Visualize line and paragraph separators with appropriate symbol characters.</td></tr> <tr><td class="topAlign"><tt>QTextOption::AddSpaceForLineAndParagraphSeparators</tt></td><td class=" topAlign"><tt>0x4</tt></td><td class="topAlign">While determining the line-break positions take into account the space added for drawing a separator character.</td></tr> <tr><td class="topAlign"><tt>QTextOption::SuppressColors</tt></td><td class=" topAlign"><tt>0x8</tt></td><td class="topAlign">Suppress all color changes in the character formats (except the main selection).</td></tr> </table> <p>The Flags type is a typedef for <a href="qflags.html">QFlags</a>&lt;Flag&gt;. It stores an OR combination of Flag values.</p> <!-- @@@Flag --> <!-- $$$TabType$$$LeftTab$$$RightTab$$$CenterTab$$$DelimiterTab --> <h3 class="fn"><a name="TabType-enum"></a>enum QTextOption::TabType</h3> <p>This enum holds the different types of tabulator</p> <table class="valuelist"><tr class="odd"><tr><th class="tblConst">Constant</th><th class="tblval">Value</th><th class="tbldscr">Description</th></tr> <tr><td class="topAlign"><tt>QTextOption::LeftTab</tt></td><td class=" topAlign"><tt>0</tt></td><td class="topAlign">A left-tab</td></tr> <tr><td class="topAlign"><tt>QTextOption::RightTab</tt></td><td class=" topAlign"><tt>1</tt></td><td class="topAlign">A right-tab</td></tr> <tr><td class="topAlign"><tt>QTextOption::CenterTab</tt></td><td class=" topAlign"><tt>2</tt></td><td class="topAlign">A centered-tab</td></tr> <tr><td class="topAlign"><tt>QTextOption::DelimiterTab</tt></td><td class=" topAlign"><tt>3</tt></td><td class="topAlign">A tab stopping at a certain delimiter-character</td></tr> </table> <p>This enum was introduced or modified in Qt 4.4.</p> <!-- @@@TabType --> <!-- $$$WrapMode$$$NoWrap$$$WordWrap$$$ManualWrap$$$WrapAnywhere$$$WrapAtWordBoundaryOrAnywhere --> <h3 class="fn"><a name="WrapMode-enum"></a>enum QTextOption::WrapMode</h3> <p>This enum describes how text is wrapped in a document.</p> <table class="valuelist"><tr class="odd"><tr><th class="tblConst">Constant</th><th class="tblval">Value</th><th class="tbldscr">Description</th></tr> <tr><td class="topAlign"><tt>QTextOption::NoWrap</tt></td><td class=" topAlign"><tt>0</tt></td><td class="topAlign">Text is not wrapped at all.</td></tr> <tr><td class="topAlign"><tt>QTextOption::WordWrap</tt></td><td class=" topAlign"><tt>1</tt></td><td class="topAlign">Text is wrapped at word boundaries.</td></tr> <tr><td class="topAlign"><tt>QTextOption::ManualWrap</tt></td><td class=" topAlign"><tt>2</tt></td><td class="topAlign">Same as QTextOption::NoWrap</td></tr> <tr><td class="topAlign"><tt>QTextOption::WrapAnywhere</tt></td><td class=" topAlign"><tt>3</tt></td><td class="topAlign">Text can be wrapped at any point on a line, even if it occurs in the middle of a word.</td></tr> <tr><td class="topAlign"><tt>QTextOption::WrapAtWordBoundaryOrAnywhere</tt></td><td class=" topAlign"><tt>4</tt></td><td class="topAlign">If possible, wrapping occurs at a word boundary; otherwise it will occur at the appropriate point on the line, even in the middle of a word.</td></tr> </table> <!-- @@@WrapMode --> </div> <div class="func"> <h2>Member Function Documentation</h2> <!-- $$$QTextOption[overload1]$$$QTextOption --> <h3 class="fn"><a name="QTextOption"></a>QTextOption::QTextOption ()</h3> <p>Constructs a text option with default properties for text. The text alignment property is set to <a href="qt.html#AlignmentFlag-enum">Qt::AlignLeft</a>. The word wrap property is set to <a href="qtextoption.html#WrapMode-enum">QTextOption::WordWrap</a>. The using of design metrics flag is set to false.</p> <!-- @@@QTextOption --> <!-- $$$QTextOption$$$QTextOptionQt::Alignment --> <h3 class="fn"><a name="QTextOption-2"></a>QTextOption::QTextOption ( <a href="qt.html#AlignmentFlag-enum">Qt::Alignment</a> <i>alignment</i> )</h3> <p>Constructs a text option with the given <i>alignment</i> for text. The word wrap property is set to <a href="qtextoption.html#WrapMode-enum">QTextOption::WordWrap</a>. The using of design metrics flag is set to false.</p> <!-- @@@QTextOption --> <!-- $$$QTextOption$$$QTextOptionconstQTextOption& --> <h3 class="fn"><a name="QTextOption-3"></a>QTextOption::QTextOption ( const QTextOption &amp; <i>other</i> )</h3> <p>Construct a copy of the <i>other</i> text option.</p> <!-- @@@QTextOption --> <!-- $$$~QTextOption[overload1]$$$~QTextOption --> <h3 class="fn"><a name="dtor.QTextOption"></a>QTextOption::~QTextOption ()</h3> <p>Destroys the text option.</p> <!-- @@@~QTextOption --> <!-- $$$alignment[overload1]$$$alignment --> <h3 class="fn"><a name="alignment"></a><a href="qt.html#AlignmentFlag-enum">Qt::Alignment</a> QTextOption::alignment () const</h3> <p>Returns the text alignment defined by the option.</p> <p>See also <a href="qtextoption.html#setAlignment">setAlignment</a>().</p> <!-- @@@alignment --> <!-- $$$flags[overload1]$$$flags --> <h3 class="fn"><a name="flags"></a><a href="qtextoption.html#Flag-enum">Flags</a> QTextOption::flags () const</h3> <p>Returns the flags associated with the option.</p> <p>See also <a href="qtextoption.html#setFlags">setFlags</a>().</p> <!-- @@@flags --> <!-- $$$setAlignment[overload1]$$$setAlignmentQt::Alignment --> <h3 class="fn"><a name="setAlignment"></a>void QTextOption::setAlignment ( <a href="qt.html#AlignmentFlag-enum">Qt::Alignment</a> <i>alignment</i> )</h3> <p>Sets the option's text alignment to the specified <i>alignment</i>.</p> <p>See also <a href="qtextoption.html#alignment">alignment</a>().</p> <!-- @@@setAlignment --> <!-- $$$setFlags[overload1]$$$setFlagsFlags --> <h3 class="fn"><a name="setFlags"></a>void QTextOption::setFlags ( <a href="qtextoption.html#Flag-enum">Flags</a> <i>flags</i> )</h3> <p>Sets the flags associated with the option to the given <i>flags</i>.</p> <p>See also <a href="qtextoption.html#flags">flags</a>().</p> <!-- @@@setFlags --> <!-- $$$setTabArray[overload1]$$$setTabArrayQList<qreal> --> <h3 class="fn"><a name="setTabArray"></a>void QTextOption::setTabArray ( <a href="qlist.html">QList</a>&lt;<a href="qtglobal.html#qreal-typedef">qreal</a>&gt; <i>tabStops</i> )</h3> <p>Sets the tab positions for the text layout to those specified by <i>tabStops</i>.</p> <p>See also <a href="qtextoption.html#tabArray">tabArray</a>(), <a href="qtextoption.html#setTabStop">setTabStop</a>(), and <a href="qtextoption.html#setTabs">setTabs</a>().</p> <!-- @@@setTabArray --> <!-- $$$setTabStop[overload1]$$$setTabStopqreal --> <h3 class="fn"><a name="setTabStop"></a>void QTextOption::setTabStop ( <a href="qtglobal.html#qreal-typedef">qreal</a> <i>tabStop</i> )</h3> <p>Sets the default distance in device units between tab stops to the value specified by <i>tabStop</i>.</p> <p>See also <a href="qtextoption.html#tabStop">tabStop</a>(), <a href="qtextoption.html#setTabArray">setTabArray</a>(), <a href="qtextoption.html#setTabs">setTabs</a>(), and <a href="qtextoption.html#tabs">tabs</a>().</p> <!-- @@@setTabStop --> <!-- $$$setTabs[overload1]$$$setTabsQList<Tab> --> <h3 class="fn"><a name="setTabs"></a>void QTextOption::setTabs ( <a href="qlist.html">QList</a>&lt;<a href="qtextoption-tab.html">Tab</a>&gt; <i>tabStops</i> )</h3> <p>Set the Tab properties to <i>tabStops</i>.</p> <p>See also <a href="qtextoption.html#tabStop">tabStop</a>() and <a href="qtextoption.html#tabs">tabs</a>().</p> <!-- @@@setTabs --> <!-- $$$setTextDirection[overload1]$$$setTextDirectionQt::LayoutDirection --> <h3 class="fn"><a name="setTextDirection"></a>void QTextOption::setTextDirection ( <a href="qt.html#LayoutDirection-enum">Qt::LayoutDirection</a> <i>direction</i> )</h3> <p>Sets the direction of the text layout defined by the option to the given <i>direction</i>.</p> <p>See also <a href="qtextoption.html#textDirection">textDirection</a>().</p> <!-- @@@setTextDirection --> <!-- $$$setUseDesignMetrics[overload1]$$$setUseDesignMetricsbool --> <h3 class="fn"><a name="setUseDesignMetrics"></a>void QTextOption::setUseDesignMetrics ( bool <i>enable</i> )</h3> <p>If <i>enable</i> is true then the layout will use design metrics; otherwise it will use the metrics of the paint device (which is the default behavior).</p> <p>See also <a href="qtextoption.html#useDesignMetrics">useDesignMetrics</a>().</p> <!-- @@@setUseDesignMetrics --> <!-- $$$setWrapMode[overload1]$$$setWrapModeWrapMode --> <h3 class="fn"><a name="setWrapMode"></a>void QTextOption::setWrapMode ( <a href="qtextoption.html#WrapMode-enum">WrapMode</a> <i>mode</i> )</h3> <p>Sets the option's text wrap mode to the given <i>mode</i>.</p> <p>See also <a href="qtextoption.html#wrapMode">wrapMode</a>().</p> <!-- @@@setWrapMode --> <!-- $$$tabArray[overload1]$$$tabArray --> <h3 class="fn"><a name="tabArray"></a><a href="qlist.html">QList</a>&lt;<a href="qtglobal.html#qreal-typedef">qreal</a>&gt; QTextOption::tabArray () const</h3> <p>Returns a list of tab positions defined for the text layout.</p> <p>See also <a href="qtextoption.html#setTabArray">setTabArray</a>() and <a href="qtextoption.html#tabStop">tabStop</a>().</p> <!-- @@@tabArray --> <!-- $$$tabStop[overload1]$$$tabStop --> <h3 class="fn"><a name="tabStop"></a><a href="qtglobal.html#qreal-typedef">qreal</a> QTextOption::tabStop () const</h3> <p>Returns the distance in device units between tab stops. Convenient function for the above method</p> <p>See also <a href="qtextoption.html#setTabStop">setTabStop</a>(), <a href="qtextoption.html#tabArray">tabArray</a>(), <a href="qtextoption.html#setTabs">setTabs</a>(), and <a href="qtextoption.html#tabs">tabs</a>().</p> <!-- @@@tabStop --> <!-- $$$tabs[overload1]$$$tabs --> <h3 class="fn"><a name="tabs"></a><a href="qlist.html">QList</a>&lt;<a href="qtextoption-tab.html">Tab</a>&gt; QTextOption::tabs () const</h3> <p>Returns a list of tab positions defined for the text layout.</p> <p>This function was introduced in Qt 4.4.</p> <p>See also <a href="qtextoption.html#tabStop">tabStop</a>(), <a href="qtextoption.html#setTabs">setTabs</a>(), and <a href="qtextoption.html#setTabStop">setTabStop</a>().</p> <!-- @@@tabs --> <!-- $$$textDirection[overload1]$$$textDirection --> <h3 class="fn"><a name="textDirection"></a><a href="qt.html#LayoutDirection-enum">Qt::LayoutDirection</a> QTextOption::textDirection () const</h3> <p>Returns the direction of the text layout defined by the option.</p> <p>See also <a href="qtextoption.html#setTextDirection">setTextDirection</a>().</p> <!-- @@@textDirection --> <!-- $$$useDesignMetrics[overload1]$$$useDesignMetrics --> <h3 class="fn"><a name="useDesignMetrics"></a>bool QTextOption::useDesignMetrics () const</h3> <p>Returns true if the layout uses design rather than device metrics; otherwise returns false.</p> <p>See also <a href="qtextoption.html#setUseDesignMetrics">setUseDesignMetrics</a>().</p> <!-- @@@useDesignMetrics --> <!-- $$$wrapMode[overload1]$$$wrapMode --> <h3 class="fn"><a name="wrapMode"></a><a href="qtextoption.html#WrapMode-enum">WrapMode</a> QTextOption::wrapMode () const</h3> <p>Returns the text wrap mode defined by the option.</p> <p>See also <a href="qtextoption.html#setWrapMode">setWrapMode</a>().</p> <!-- @@@wrapMode --> <!-- $$$operator=[overload1]$$$operator=constQTextOption& --> <h3 class="fn"><a name="operator-eq"></a>QTextOption &amp; QTextOption::operator= ( const QTextOption &amp; <i>other</i> )</h3> <p>Returns true if the text option is the same as the <i>other</i> text option; otherwise returns false.</p> <!-- @@@operator= --> </div> <div class="feedback t_button"> [+] Documentation Feedback</div> </div> </div> </div> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2008-2010 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.</p> <p> All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p> <br /> <p> Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p> <p> Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> </div> <div id="feedbackBox"> <div id="feedcloseX" class="feedclose t_button">X</div> <form id="feedform" action="http://doc.qt.nokia.com/docFeedbck/feedback.php" method="get"> <p id="noteHead">Thank you for giving your feedback.</p> <p class="note">Make sure it is related to this specific page. For more general bugs and requests, please use the <a href="http://bugreports.qt.nokia.com/secure/Dashboard.jspa">Qt Bug Tracker</a>.</p> <p><textarea id="feedbox" name="feedText" rows="5" cols="40"></textarea></p> <p><input id="feedsubmit" class="feedclose" type="submit" name="feedback" /></p> </form> </div> <div id="blurpage"> </div> </body> </html>
doc/html/q3dictiterator-members.html
kobolabs/qt-everywhere-opensource-src-4.6.2
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <!-- q3dict.qdoc --> <head> <title>Qt 4.6: List of All Members for Q3DictIterator</title> <link href="classic.css" rel="stylesheet" type="text/css" /> </head> <body> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td align="left" valign="top" width="32"><a href="http://qt.nokia.com/"><img src="images/qt-logo.png" align="left" border="0" /></a></td> <td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">All&nbsp;Functions</font></a>&nbsp;&middot; <a href="overviews.html"><font color="#004faf">Overviews</font></a></td></tr></table><h1 class="title">List of All Members for Q3DictIterator</h1> <p>This is the complete list of members for <a href="q3dictiterator.html" class="compat">Q3DictIterator</a>, including inherited members.</p> <ul> <li><div class="fn"><b><a href="q3dictiterator.html#Q3DictIterator">Q3DictIterator</a></b> ( const Q3Dict&lt;type&gt; &amp; )</div></li> <li><div class="fn"><b><a href="q3dictiterator.html#dtor.Q3DictIterator">~Q3DictIterator</a></b> ()</div></li> <li><div class="fn"><b><a href="q3dictiterator.html#count">count</a></b> () const : uint</div></li> <li><div class="fn"><b><a href="q3dictiterator.html#current">current</a></b> () const : type *</div></li> <li><div class="fn"><b><a href="q3dictiterator.html#currentKey">currentKey</a></b> () const : QString</div></li> <li><div class="fn"><b><a href="q3dictiterator.html#isEmpty">isEmpty</a></b> () const : bool</div></li> <li><div class="fn"><b><a href="q3dictiterator.html#toFirst">toFirst</a></b> () : type *</div></li> <li><div class="fn"><b><a href="q3dictiterator.html#operator-type--2a">operator type *</a></b> () const</div></li> <li><div class="fn"><b><a href="q3dictiterator.html#operator-28-29">operator()</a></b> () : type *</div></li> <li><div class="fn"><b><a href="q3dictiterator.html#operator-2b-2b">operator++</a></b> () : type *</div></li> </ul> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td width="40%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td> <td width="20%" align="center"><a href="trademarks.html">Trademarks</a></td> <td width="40%" align="right"><div align="right">Qt 4.6.2</div></td> </tr></table></div></address></body> </html>
3rdparty/spring-framework-2.5.1/docs/api/org/springframework/context/annotation/class-use/Scope.html
cacheonix/cacheonix-core
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_03) on Wed Jan 09 13:25:38 CET 2008 --> <TITLE> Uses of Class org.springframework.context.annotation.Scope (Spring Framework API 2.5) </TITLE> <META NAME="date" CONTENT="2008-01-09"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.springframework.context.annotation.Scope (Spring Framework API 2.5)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/springframework/context/annotation/Scope.html" title="annotation in org.springframework.context.annotation"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <a href="http://www.springframework.org/" target="_top">The Spring Framework</a></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/springframework/context/annotation/\class-useScope.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Scope.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.springframework.context.annotation.Scope</B></H2> </CENTER> No usage of org.springframework.context.annotation.Scope <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../org/springframework/context/annotation/Scope.html" title="annotation in org.springframework.context.annotation"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <a href="http://www.springframework.org/" target="_top">The Spring Framework</a></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/springframework/context/annotation/\class-useScope.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Scope.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright &copy; 2002-2007 <a href=http://www.springframework.org/ target=_top>The Spring Framework</a>.</i> </BODY> </HTML>
modules/textmessage/tpl/index.html
umjinsun12/dngshin
<include target="header.html" /> <div class="content dashboard" id="content"> <div cond="!$isSetupCompleted" class="message update"> <p>{$lang->msg_config_required}</p> <p><a href="{getUrl('act','dispTextmessageAdminConfig')}">{$lang->cmd_goto_config}</a></p> </div> </div> <div class="x_control-group"> <div cond="$isSetupCompleted" class="portlet"> <h3>{$lang->recharging_state}</h3> <ul class="lined"> <li>{$lang->service_api_key} : {$config->api_key} <span class="side"><a href="{getUrl('act','dispTextmessageAdminConfig')}">{$lang->cmd_configure}</a></span></li> <li>{$lang->balance} : <b title="{$lang->sms} : {(int)($config->cs_cash / $config->sms_price)}, {$lang->lms} : {(int)($config->cs_cash / $config->lms_price)}, {$lang->mms} : {(int)($config->cs_cash / $config->mms_price)}">{number_format($config->cs_cash)}</b> {$lang->won} <span class="side"><a href="http://www.coolsms.co.kr/chg/" target="_blank">{$lang->recharge}</a></span></li> <li>{$lang->point} : <b title="{$lang->sms} : {(int)($config->cs_point / $config->sms_price)}, {$lang->lms} : {(int)($config->cs_point / $config->lms_price)}, {$lang->mms} : {(int)($config->cs_point / $config->mms_price)}">{number_format($config->cs_point)}</b> {sprintf($lang->point_guide,$config->sms_price)}</li> <li cond="$config->cs_mdrop">{$lang->mdrop} : <b>{number_format($config->cs_mdrop)}</b> 개 (SMS 1개, 장문 3개, 포토 10개 차감)</li> <li>{$lang->sms} : <b style="color:red"|cond="$config->sms_volume < 100">{number_format($config->sms_volume)}</b> {sprintf($lang->volume_guide,$config->sms_price)}</li> <li>{$lang->lms} : <b>{number_format($config->lms_volume)}</b> {sprintf($lang->volume_guide,$config->lms_price)}</li> <li>{$lang->mms} : <b>{number_format($config->mms_volume)}</b> {sprintf($lang->volume_guide,$config->mms_price)}</li> </ul> </div> </div> <div class="x_control-group"> <div class="notice_area"> <h3>{$lang->notice}</h3> <ul class="lined"> <!--@foreach($news AS $key=>$value)--> <li><a href="{$value->url}" target="_blank">{$value->title}</a> <span class="side">{zdate($value->date, 'Y-m-d')}</span></li> <!--@end--> <li cond="!is_array($news) || count($news) < 1">{$lang->no_data}</li> </ul> </div> </div>
doc/html/qabstractfileenginehandler-members.html
kobolabs/qt-everywhere-opensource-src-4.6.2
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <!-- qabstractfileengine.cpp --> <head> <title>Qt 4.6: List of All Members for QAbstractFileEngineHandler</title> <link href="classic.css" rel="stylesheet" type="text/css" /> </head> <body> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td align="left" valign="top" width="32"><a href="http://qt.nokia.com/"><img src="images/qt-logo.png" align="left" border="0" /></a></td> <td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">All&nbsp;Functions</font></a>&nbsp;&middot; <a href="overviews.html"><font color="#004faf">Overviews</font></a></td></tr></table><h1 class="title">List of All Members for QAbstractFileEngineHandler</h1> <p>This is the complete list of members for <a href="qabstractfileenginehandler.html">QAbstractFileEngineHandler</a>, including inherited members.</p> <ul> <li><div class="fn"><b><a href="qabstractfileenginehandler.html#QAbstractFileEngineHandler">QAbstractFileEngineHandler</a></b> ()</div></li> <li><div class="fn"><b><a href="qabstractfileenginehandler.html#dtor.QAbstractFileEngineHandler">~QAbstractFileEngineHandler</a></b> ()</div></li> <li><div class="fn"><b><a href="qabstractfileenginehandler.html#create">create</a></b> ( const QString &amp; ) const : QAbstractFileEngine *</div></li> </ul> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td width="40%" align="left">Copyright &copy; 2010 Nokia Corporation and/or its subsidiary(-ies)</td> <td width="20%" align="center"><a href="trademarks.html">Trademarks</a></td> <td width="40%" align="right"><div align="right">Qt 4.6.2</div></td> </tr></table></div></address></body> </html>
doc/html/itemviews-editabletreemodel-editabletreemodel-pro.html
kobolabs/qt-everywhere-4.8.0
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Qt 4.8: editabletreemodel.pro Example File (itemviews/editabletreemodel/editabletreemodel.pro)</title> <link rel="stylesheet" type="text/css" href="style/offline.css" /> </head> <body> <div class="header" id="qtdocheader"> <div class="content"> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> </div> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Breadcrumbs go here --> </ul> </div> </div> <div class="content mainContent"> <h1 class="title">editabletreemodel.pro Example File</h1> <span class="small-subtitle">itemviews/editabletreemodel/editabletreemodel.pro</span> <!-- $$$itemviews/editabletreemodel/editabletreemodel.pro-description --> <div class="descr"> <a name="details"></a> <pre class="cpp"> FORMS = mainwindow.ui HEADERS = mainwindow.h \ treeitem.h \ treemodel.h RESOURCES = editabletreemodel.qrc SOURCES = mainwindow.cpp \ treeitem.cpp \ treemodel.cpp \ main.cpp CONFIG += qt # install target.path = $$[QT_INSTALL_EXAMPLES]/itemviews/editabletreemodel sources.files = $$FORMS $$HEADERS $$RESOURCES $$SOURCES *.pro *.txt sources.path = $$[QT_INSTALL_EXAMPLES]/itemviews/editabletreemodel INSTALLS += target sources symbian: include($$QT_SOURCE_TREE/examples/symbianpkgrules.pri) maemo5: include($$QT_SOURCE_TREE/examples/maemo5pkgrules.pri)</pre> </div> <!-- @@@itemviews/editabletreemodel/editabletreemodel.pro --> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.</p> <p> All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p> <br /> <p> Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p> <p> Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> </div> </body> </html>
reader/apidocs/org/accada/reader/rp/client/actions/class-use/SetMessageFormatXML.html
Fosstrak/fosstrak.github.io
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_05) on Tue Mar 25 10:45:17 CET 2008 --> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <TITLE> Uses of Class org.accada.reader.rp.client.actions.SetMessageFormatXML (reader 0.4.1-SNAPSHOT API) </TITLE> <META NAME="date" CONTENT="2008-03-25"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.accada.reader.rp.client.actions.SetMessageFormatXML (reader 0.4.1-SNAPSHOT API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/accada/reader/rp/client/actions/SetMessageFormatXML.html" title="class in org.accada.reader.rp.client.actions"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?org/accada/reader/rp/client/actions/\class-useSetMessageFormatXML.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="SetMessageFormatXML.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>org.accada.reader.rp.client.actions.SetMessageFormatXML</B></H2> </CENTER> No usage of org.accada.reader.rp.client.actions.SetMessageFormatXML <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/accada/reader/rp/client/actions/SetMessageFormatXML.html" title="class in org.accada.reader.rp.client.actions"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../../index.html?org/accada/reader/rp/client/actions/\class-useSetMessageFormatXML.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="SetMessageFormatXML.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2008. All Rights Reserved. </BODY> </HTML>
html-docs/contents/6a2c8788188e3d14ea1fa709da807358.html
jiangbo212/netty-init
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>SslHandler</title> <!-- <script src="http://use.edgefonts.net/source-sans-pro;source-code-pro.js"></script> --> <link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic|Source+Code+Pro:300,400,700' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="../assets/css/bootstrap.css"> <link rel="stylesheet" href="../assets/css/jquery.bonsai.css"> <link rel="stylesheet" href="../assets/css/main.css"> <link rel="stylesheet" href="../assets/css/icons.css"> <script type="text/javascript" src="../assets/js/jquery-2.1.0.min.js"></script> <script type="text/javascript" src="../assets/js/bootstrap.js"></script> <script type="text/javascript" src="../assets/js/jquery.bonsai.js"></script> <!-- <script type="text/javascript" src="../assets/js/main.js"></script> --> </head> <body> <div> <!-- Name Title --> <h1>SslHandler</h1> <!-- Type and Stereotype --> <section style="margin-top: .5em;"> <span class="alert alert-info"> <span class="node-icon _icon-UMLOperation"></span> UMLOperation </span> <span style="margin-left: 10px" class="alert alert-info">«constructor»</span> </section> <!-- Path --> <section style="margin-top: 10px"> <span class="label label-info"><a href='cf9c8b720f3815adeccaf3ef6e48c6c4.html'><span class='node-icon _icon-Project'></span>Untitled</a></span> <span>::</span> <span class="label label-info"><a href='6550300e57d7fc770bd2e9afbcdb3ecb.html'><span class='node-icon _icon-UMLModel'></span>JavaReverse</a></span> <span>::</span> <span class="label label-info"><a href='7ff2d96ca3eb7f62f48c1a30b3c7c990.html'><span class='node-icon _icon-UMLPackage'></span>net</a></span> <span>::</span> <span class="label label-info"><a href='7adc4be4f2e4859086f068fc27512d85.html'><span class='node-icon _icon-UMLPackage'></span>gleamynode</a></span> <span>::</span> <span class="label label-info"><a href='bb15307bdbbaf31bfef4f71be74150ae.html'><span class='node-icon _icon-UMLPackage'></span>netty</a></span> <span>::</span> <span class="label label-info"><a href='7b76f92b4b514580a4bcf746956f6d64.html'><span class='node-icon _icon-UMLPackage'></span>handler</a></span> <span>::</span> <span class="label label-info"><a href='f4ff7d19df693e81f51ef48c77403ab0.html'><span class='node-icon _icon-UMLPackage'></span>ssl</a></span> <span>::</span> <span class="label label-info"><a href='26ed8e4c8e33915b126df76cfc9661ce.html'><span class='node-icon _icon-UMLClass'></span>SslHandler</a></span> <span>::</span> <span class="label label-info"><a href='6a2c8788188e3d14ea1fa709da807358.html'><span class='node-icon _icon-UMLOperation'></span>«constructor»SslHandler</a></span> </section> <!-- Diagram --> <!-- Description --> <section> <h3>Description</h3> <div> <span class="label label-info">none</span> </div> </section> <!-- Specification --> <!-- Directed Relationship --> <!-- Undirected Relationship --> <!-- Classifier --> <!-- Interface --> <!-- Component --> <!-- Node --> <!-- Actor --> <!-- Use Case --> <!-- Template Parameters --> <!-- Literals --> <!-- Attributes --> <!-- Operations --> <!-- Receptions --> <!-- Extension Points --> <!-- Parameters --> <section> <h3>Parameters</h3> <table class="table table-striped table-bordered"> <tr> <th>Direction</th> <th>Name</th> <th>Type</th> <th>Description</th> </tr> <tr> <td>in</td> <td><a href="f771bcc5bb7f2c51d0405634ec051978.html">engine</a></td> <td><a href='32ba4b1e76c89dd4378b28d0c33cb838.html'><span class='node-icon _icon-UMLClass'></span>SSLEngine</a></td> <td></td> </tr> <tr> <td>in</td> <td><a href="e57b6ad5f29a0eb2fb56f84e814cc7cf.html">bufferPool</a></td> <td><a href='bf4d7b6ba93c684cb406e333c34358f5.html'><span class='node-icon _icon-UMLClass'></span>SslBufferPool</a></td> <td></td> </tr> <tr> <td>in</td> <td><a href="b39722c80473ba0a1a8b0ebd0e7146f2.html">delegatedTaskExecutor</a></td> <td><a href='6fdb0c28f5682dbaa89ffa64d4df4014.html'><span class='node-icon _icon-UMLInterface'></span>Executor</a></td> <td></td> </tr> </table> </section> <!-- Diagrams --> <!-- Behavior --> <!-- Action --> <!-- Interaction --> <!-- CombinedFragment --> <!-- Activity --> <!-- State Machine --> <!-- State Machine --> <!-- State --> <!-- Vertex --> <!-- Transition --> <!-- Properties --> <section> <h3>Properties</h3> <table class="table table-striped table-bordered"> <tr> <th width="50%">Name</th> <th width="50%">Value</th> </tr> <tr> <td>name</td> <td>SslHandler</td> </tr> <tr> <td>stereotype</td> <td>constructor</td> </tr> <tr> <td>visibility</td> <td>public</td> </tr> <tr> <td>isStatic</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>isLeaf</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>parameters</td> <td> <a href='f771bcc5bb7f2c51d0405634ec051978.html'><span class='node-icon _icon-UMLParameter'></span>engine</a> <span>, </span> <a href='e57b6ad5f29a0eb2fb56f84e814cc7cf.html'><span class='node-icon _icon-UMLParameter'></span>bufferPool</a> <span>, </span> <a href='b39722c80473ba0a1a8b0ebd0e7146f2.html'><span class='node-icon _icon-UMLParameter'></span>delegatedTaskExecutor</a> </td> </tr> <tr> <td>raisedExceptions</td> <td> </td> </tr> <tr> <td>concurrency</td> <td>sequential</td> </tr> <tr> <td>isQuery</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>isAbstract</td> <td><span class='label label-info'>false</span></td> </tr> <tr> <td>specification</td> <td></td> </tr> </table> </section> <!-- Tags --> <!-- Constraints, Dependencies, Dependants --> <!-- Relationships --> <!-- Owned Elements --> </div> </body> </html>
html/tutorial/tutorial1/results/equal.html
dozed/align-api-project
<?xml version="1.0" encoding="utf-8" standalone="no"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN" "http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" xmlns:align='http://knowledgeweb.semanticweb.org/heterogeneity/alignment' xmlns:rdf='http://www.w3.org/1999/02/22-rdf-syntax-ns#' xmlns:xsd='http://www.w3.org/2001/XMLSchema#'> <head><title>Alignment</title></head> <body> <h1>Anonymous alignment</h1> <div typeof="align:Alignment"> <h2>Alignment metadata</h2> <table border="0"> <tr><td>onto1</td><td><div rel="align:onto1"><div typeof="align:Ontology" about="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl"><table> <tr><td>uri: </td><td>http://alignapi.gforge.inria.fr/tutorial/myOnto.owl</td></tr> <tr><td><span property="align:location" content="file:///Java/alignapi/html/tutorial/myOnto.owl"/>file:</td><td><a href="file:///Java/alignapi/html/tutorial/myOnto.owl">file:///Java/alignapi/html/tutorial/myOnto.owl</a></td></tr> <tr><td>type:</td><td><span rel="align:formalism"><span typeof="align:Formalism"><span property="align:name">OWL2.0</span><span property="align:uri" content="http://www.w3.org/2002/07/owl#"/></span></span></td></tr></table> </div></div></td></tr> <tr><td>onto2</td><td><div rel="align:onto2"><div typeof="align:Ontology" about="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl"><table> <tr><td>uri: </td><td>http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl</td></tr> <tr><td><span property="align:location" content="file:///Java/alignapi/html/tutorial/edu.mit.visus.bibtex.owl"/>file:</td><td><a href="file:///Java/alignapi/html/tutorial/edu.mit.visus.bibtex.owl">file:///Java/alignapi/html/tutorial/edu.mit.visus.bibtex.owl</a></td></tr> <tr><td>type:</td><td><span rel="align:formalism"><span typeof="align:Formalism"><span property="align:name">OWL2.0</span><span property="align:uri" content="http://www.w3.org/2002/07/owl#"/></span></span></td></tr></table> </div></div></td></tr> <tr><td>level</td><td property="align:level">0</td></tr> <tr><td>type</td><td property="align:type">**</td></tr> <tr><td>http://knowledgeweb.semanticweb.org/heterogeneity/alignment : time</td><td property="align:time">309</td></tr> <tr><td>http://knowledgeweb.semanticweb.org/heterogeneity/alignment : method</td><td property="align:method">fr.inrialpes.exmo.align.impl.method.StringDistAlignment</td></tr> </table> <h2>Correspondences</h2> <div rel="align:map"><table><tr><td>object1</td><td>relation</td><td>strength</td><td>object2</td><td>Id</td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#PhdThesis">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#PhdThesis</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Phdthesis">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Phdthesis</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#InCollection">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#InCollection</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Incollection">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Incollection</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#howPublished">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#howPublished</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#howPublished">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#howPublished</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Article">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Article</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Article">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Article</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Techreport">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Techreport</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Techreport">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Techreport</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#TechReport">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#TechReport</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Techreport">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Techreport</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Misc">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Misc</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Misc">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Misc</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Booklet">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Booklet</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Booklet">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Booklet</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Manual">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Manual</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Manual">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Manual</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#InBook">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#InBook</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Inbook">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Inbook</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Entry">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Entry</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Entry">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Entry</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#humanCreator">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#humanCreator</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#humanCreator">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#humanCreator</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#InProceedings">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#InProceedings</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Inproceedings">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Inproceedings</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Book">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Book</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Book">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Book</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Unpublished">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Unpublished</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Unpublished">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Unpublished</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Proceedings">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#Proceedings</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Proceedings">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Proceedings</td><td></td></tr> <tr typeof="align:Cell"><td rel="align:entity1" href="http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#MastersThesis">http://alignapi.gforge.inria.fr/tutorial/myOnto.owl#MastersThesis</td><td property="align:relation">=</td><td property="align:measure" datatype="xsd:float">1.0</td><td rel="align:entity2" href="http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Mastersthesis">http://alignapi.gforge.inria.fr/tutorial/edu.mit.visus.bibtex.owl#Mastersthesis</td><td></td></tr> </table> </div></div> </body> </html>
sources/FeatureExtractor/lib/hibernate-release-5.1.0.Final/documentation/javadocs/org/hibernate/annotations/class-use/FetchMode.html
1fechner/FeatureExtractor
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_40) on Wed Feb 10 11:30:57 CST 2016 --> <title>Uses of Class org.hibernate.annotations.FetchMode (Hibernate JavaDocs)</title> <meta name="date" content="2016-02-10"> <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.hibernate.annotations.FetchMode (Hibernate JavaDocs)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../org/hibernate/annotations/FetchMode.html" title="enum in org.hibernate.annotations">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/hibernate/annotations/class-use/FetchMode.html" target="_top">Frames</a></li> <li><a href="FetchMode.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.hibernate.annotations.FetchMode" class="title">Uses of Class<br>org.hibernate.annotations.FetchMode</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../org/hibernate/annotations/FetchMode.html" title="enum in org.hibernate.annotations">FetchMode</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.hibernate.annotations">org.hibernate.annotations</a></td> <td class="colLast"> <div class="block">Package containing all the Hibernate specific annotations.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.hibernate.annotations"> <!-- --> </a> <h3>Uses of <a href="../../../../org/hibernate/annotations/FetchMode.html" title="enum in org.hibernate.annotations">FetchMode</a> in <a href="../../../../org/hibernate/annotations/package-summary.html">org.hibernate.annotations</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../org/hibernate/annotations/package-summary.html">org.hibernate.annotations</a> that return <a href="../../../../org/hibernate/annotations/FetchMode.html" title="enum in org.hibernate.annotations">FetchMode</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../org/hibernate/annotations/FetchMode.html" title="enum in org.hibernate.annotations">FetchMode</a></code></td> <td class="colLast"><span class="typeNameLabel">FetchMode.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/annotations/FetchMode.html#valueOf-java.lang.String-">valueOf</a></span>(<a href="http://download.oracle.com/javase/6/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../org/hibernate/annotations/FetchMode.html" title="enum in org.hibernate.annotations">FetchMode</a>[]</code></td> <td class="colLast"><span class="typeNameLabel">FetchMode.</span><code><span class="memberNameLink"><a href="../../../../org/hibernate/annotations/FetchMode.html#values--">values</a></span>()</code> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../org/hibernate/annotations/FetchMode.html" title="enum in org.hibernate.annotations">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/hibernate/annotations/class-use/FetchMode.html" target="_top">Frames</a></li> <li><a href="FetchMode.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2001-2016 <a href="http://redhat.com">Red Hat, Inc.</a> All Rights Reserved.</small></p> </body> </html>
sdk/dox/html/classOutputMessageStream.html
einon/affymetrix-power-tools
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <title>Affymetrix Power Tools: OutputMessageStream Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css"/> </head> <body> <!-- Generated by Doxygen 1.7.1 --> <div class="navigation" id="top"> <div class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li><a href="dirs.html"><span>Directories</span></a></li> </ul> </div> <div class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li> <li><a href="classes.html"><span>Class&nbsp;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li> </ul> </div> </div> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> </div> <div class="headertitle"> <h1>OutputMessageStream Class Reference</h1> </div> </div> <div class="contents"> <!-- doxytag: class="OutputMessageStream" --><!-- doxytag: inherits="MessageStream" --> <p><code>#include &lt;<a class="el" href="OutputMessageStream_8h_source.html">OutputMessageStream.h</a>&gt;</code></p> <div class="dynheader"> Inheritance diagram for OutputMessageStream:</div> <div class="dyncontent"> <div class="center"> <img src="classOutputMessageStream.png" usemap="#OutputMessageStream_map" alt=""/> <map id="OutputMessageStream_map" name="OutputMessageStream_map"> <area href="classMessageStream.html" alt="MessageStream" shape="rect" coords="0,0,139,24"/> </map> </div> <p><a href="classOutputMessageStream-members.html">List of all members.</a></p> <table class="memberdecls"> <tr><td colspan="2"><h2><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOutputMessageStream.html#ade2d1a544303d044a6bdf4168038fb5f">OutputMessageStream</a> (int level, std::ostream *strm=&amp;std::cout)</td></tr> <tr><td class="memItemLeft" align="right" valign="top">void&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classOutputMessageStream.html#a5b8089e470d02b33fd436ae9a7743fdb">Write</a> (int level, const std::string &amp;msg)</td></tr> </table> <hr/><a name="_details"></a><h2>Detailed Description</h2> <p>Provides a base class definition for streaming back messages to the parent process. </p> <p>Definition at line <a class="el" href="OutputMessageStream_8h_source.html#l00032">32</a> of file <a class="el" href="OutputMessageStream_8h_source.html">OutputMessageStream.h</a>.</p> <hr/><h2>Constructor &amp; Destructor Documentation</h2> <a class="anchor" id="ade2d1a544303d044a6bdf4168038fb5f"></a><!-- doxytag: member="OutputMessageStream::OutputMessageStream" ref="ade2d1a544303d044a6bdf4168038fb5f" args="(int level, std::ostream *strm=&amp;std::cout)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">OutputMessageStream::OutputMessageStream </td> <td>(</td> <td class="paramtype">int&nbsp;</td> <td class="paramname"> <em>level</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">std::ostream *&nbsp;</td> <td class="paramname"> <em>strm</em> = <code>&amp;std::cout</code></td><td>&nbsp;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td><td></td> </tr> </table> </div> <div class="memdoc"> <p>Construct a class with the type of output. </p> <dl><dt><b>Parameters:</b></dt><dd> <table border="0" cellspacing="2" cellpadding="0"> <tr><td valign="top"></td><td valign="top"><em>level</em>&nbsp;</td><td>- level of verbosity desired. </td></tr> <tr><td valign="top"></td><td valign="top"><em>strm</em>&nbsp;</td><td>The output stream. </td></tr> </table> </dd> </dl> <p>Definition at line <a class="el" href="OutputMessageStream_8cpp_source.html#l00030">30</a> of file <a class="el" href="OutputMessageStream_8cpp_source.html">OutputMessageStream.cpp</a>.</p> <p>References <a class="el" href="MessageStream_8h_source.html#l00034">MessageStream::verbosity</a>.</p> </div> </div> <hr/><h2>Member Function Documentation</h2> <a class="anchor" id="a5b8089e470d02b33fd436ae9a7743fdb"></a><!-- doxytag: member="OutputMessageStream::Write" ref="a5b8089e470d02b33fd436ae9a7743fdb" args="(int level, const std::string &amp;msg)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">void OutputMessageStream::Write </td> <td>(</td> <td class="paramtype">int&nbsp;</td> <td class="paramname"> <em>level</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">const std::string &amp;&nbsp;</td> <td class="paramname"> <em>msg</em></td><td>&nbsp;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td><td><code> [virtual]</code></td> </tr> </table> </div> <div class="memdoc"> <p>Send a message. </p> <dl><dt><b>Parameters:</b></dt><dd> <table border="0" cellspacing="2" cellpadding="0"> <tr><td valign="top"></td><td valign="top"><em>level</em>&nbsp;</td><td>- level of verbosity desired. </td></tr> <tr><td valign="top"></td><td valign="top"><em>msg</em>&nbsp;</td><td>The message to send. </td></tr> </table> </dd> </dl> <p>Implements <a class="el" href="classMessageStream.html#a0aa2ad6a366f5fcdb94262528fbff50f">MessageStream</a>.</p> <p>Definition at line <a class="el" href="OutputMessageStream_8cpp_source.html#l00039">39</a> of file <a class="el" href="OutputMessageStream_8cpp_source.html">OutputMessageStream.cpp</a>.</p> <p>References <a class="el" href="MessageStream_8h_source.html#l00034">MessageStream::verbosity</a>.</p> </div> </div> <hr/>The documentation for this class was generated from the following files:<ul> <li>util/<a class="el" href="OutputMessageStream_8h_source.html">OutputMessageStream.h</a></li> <li>util/<a class="el" href="OutputMessageStream_8cpp_source.html">OutputMessageStream.cpp</a></li> </ul> </div> <hr class="footer"/><address class="footer"><small>Generated on Fri Mar 20 2015 18:03:47 for Affymetrix Power Tools by&nbsp; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.1 </small></address> </body> </html>
doc/html/qtconcurrent-progressdialog-main-cpp.html
kobolabs/qt-everywhere-4.8.0
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Qt 4.8: main.cpp Example File (qtconcurrent/progressdialog/main.cpp)</title> <link rel="stylesheet" type="text/css" href="style/offline.css" /> </head> <body> <div class="header" id="qtdocheader"> <div class="content"> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> </div> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Breadcrumbs go here --> </ul> </div> </div> <div class="content mainContent"> <h1 class="title">main.cpp Example File</h1> <span class="small-subtitle">qtconcurrent/progressdialog/main.cpp</span> <!-- $$$qtconcurrent/progressdialog/main.cpp-description --> <div class="descr"> <a name="details"></a> <pre class="cpp"> <span class="comment">/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** ** &quot;Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions are ** met: ** * Redistributions of source code must retain the above copyright ** notice, this list of conditions and the following disclaimer. ** * Redistributions in binary form must reproduce the above copyright ** notice, this list of conditions and the following disclaimer in ** the documentation and/or other materials provided with the ** distribution. ** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor ** the names of its contributors may be used to endorse or promote ** products derived from this software without specific prior written ** permission. ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot; ** $QT_END_LICENSE$ ** ****************************************************************************/</span> <span class="preprocessor">#include &lt;QtGui&gt;</span> <span class="preprocessor">#ifndef QT_NO_CONCURRENT</span> <span class="keyword">using</span> <span class="keyword">namespace</span> <span class="type"><a href="qtconcurrent.html">QtConcurrent</a></span>; <span class="keyword">const</span> <span class="type">int</span> iterations <span class="operator">=</span> <span class="number">20</span>; <span class="type">void</span> spin(<span class="type">int</span> <span class="operator">&amp;</span>iteration) { <span class="keyword">const</span> <span class="type">int</span> work <span class="operator">=</span> <span class="number">1000</span> <span class="operator">*</span> <span class="number">1000</span> <span class="operator">*</span> <span class="number">40</span>; <span class="keyword">volatile</span> <span class="type">int</span> v <span class="operator">=</span> <span class="number">0</span>; <span class="keyword">for</span> (<span class="type">int</span> j <span class="operator">=</span> <span class="number">0</span>; j <span class="operator">&lt;</span> work; <span class="operator">+</span><span class="operator">+</span>j) <span class="operator">+</span><span class="operator">+</span>v; <a href="qtglobal.html#qDebug">qDebug</a>() <span class="operator">&lt;</span><span class="operator">&lt;</span> <span class="string">&quot;iteration&quot;</span> <span class="operator">&lt;</span><span class="operator">&lt;</span> iteration <span class="operator">&lt;</span><span class="operator">&lt;</span> <span class="string">&quot;in thread&quot;</span> <span class="operator">&lt;</span><span class="operator">&lt;</span> <span class="type"><a href="qthread.html">QThread</a></span><span class="operator">::</span>currentThreadId(); } <span class="type">int</span> main(<span class="type">int</span> argc<span class="operator">,</span> <span class="type">char</span> <span class="operator">*</span><span class="operator">*</span>argv) { <span class="type"><a href="qapplication.html">QApplication</a></span> app(argc<span class="operator">,</span> argv); <span class="comment">// Prepare the vector.</span> <span class="type"><a href="qvector.html">QVector</a></span><span class="operator">&lt;</span><span class="type">int</span><span class="operator">&gt;</span> vector; <span class="keyword">for</span> (<span class="type">int</span> i <span class="operator">=</span> <span class="number">0</span>; i <span class="operator">&lt;</span> iterations; <span class="operator">+</span><span class="operator">+</span>i) vector<span class="operator">.</span>append(i); <span class="comment">// Create a progress dialog.</span> <span class="type"><a href="qprogressdialog.html">QProgressDialog</a></span> dialog; dialog<span class="operator">.</span>setLabelText(<span class="type"><a href="qstring.html">QString</a></span>(<span class="string">&quot;Progressing using %1 thread(s)...&quot;</span>)<span class="operator">.</span>arg(<span class="type"><a href="qthread.html">QThread</a></span><span class="operator">::</span>idealThreadCount())); <span class="comment">// Create a QFutureWatcher and connect signals and slots.</span> <span class="type"><a href="qfuturewatcher.html">QFutureWatcher</a></span><span class="operator">&lt;</span><span class="type">void</span><span class="operator">&gt;</span> futureWatcher; <span class="type"><a href="qobject.html">QObject</a></span><span class="operator">::</span>connect(<span class="operator">&amp;</span>futureWatcher<span class="operator">,</span> SIGNAL(finished())<span class="operator">,</span> <span class="operator">&amp;</span>dialog<span class="operator">,</span> SLOT(reset())); <span class="type"><a href="qobject.html">QObject</a></span><span class="operator">::</span>connect(<span class="operator">&amp;</span>dialog<span class="operator">,</span> SIGNAL(canceled())<span class="operator">,</span> <span class="operator">&amp;</span>futureWatcher<span class="operator">,</span> SLOT(cancel())); <span class="type"><a href="qobject.html">QObject</a></span><span class="operator">::</span>connect(<span class="operator">&amp;</span>futureWatcher<span class="operator">,</span> SIGNAL(progressRangeChanged(<span class="type">int</span><span class="operator">,</span><span class="type">int</span>))<span class="operator">,</span> <span class="operator">&amp;</span>dialog<span class="operator">,</span> SLOT(setRange(<span class="type">int</span><span class="operator">,</span><span class="type">int</span>))); <span class="type"><a href="qobject.html">QObject</a></span><span class="operator">::</span>connect(<span class="operator">&amp;</span>futureWatcher<span class="operator">,</span> SIGNAL(progressValueChanged(<span class="type">int</span>))<span class="operator">,</span> <span class="operator">&amp;</span>dialog<span class="operator">,</span> SLOT(setValue(<span class="type">int</span>))); <span class="comment">// Start the computation.</span> futureWatcher<span class="operator">.</span>setFuture(<span class="type"><a href="qtconcurrent.html">QtConcurrent</a></span><span class="operator">::</span>map(vector<span class="operator">,</span> spin)); <span class="comment">// Display the dialog and start the event loop.</span> dialog<span class="operator">.</span>exec(); futureWatcher<span class="operator">.</span>waitForFinished(); <span class="comment">// Query the future to check if was canceled.</span> <a href="qtglobal.html#qDebug">qDebug</a>() <span class="operator">&lt;</span><span class="operator">&lt;</span> <span class="string">&quot;Canceled?&quot;</span> <span class="operator">&lt;</span><span class="operator">&lt;</span> futureWatcher<span class="operator">.</span>future()<span class="operator">.</span>isCanceled(); } <span class="preprocessor">#else</span> <span class="type">int</span> main(<span class="type">int</span> argc<span class="operator">,</span> <span class="type">char</span> <span class="operator">*</span>argv<span class="operator">[</span><span class="operator">]</span>) { <span class="type"><a href="qapplication.html">QApplication</a></span> app(argc<span class="operator">,</span> argv); <span class="type"><a href="qstring.html">QString</a></span> text(<span class="string">&quot;Qt Concurrent is not yet supported on this platform&quot;</span>); <span class="type"><a href="qlabel.html">QLabel</a></span> <span class="operator">*</span>label <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qlabel.html">QLabel</a></span>(text); label<span class="operator">-</span><span class="operator">&gt;</span>setWordWrap(<span class="keyword">true</span>); <span class="preprocessor">#if defined(Q_WS_S60) || defined(Q_WS_MAEMO_5)</span> label<span class="operator">-</span><span class="operator">&gt;</span>showMaximized(); <span class="preprocessor">#else</span> label<span class="operator">-</span><span class="operator">&gt;</span>show(); <span class="preprocessor">#endif</span> <a href="qtglobal.html#qDebug">qDebug</a>() <span class="operator">&lt;</span><span class="operator">&lt;</span> text; app<span class="operator">.</span>exec(); } <span class="preprocessor">#endif</span></pre> </div> <!-- @@@qtconcurrent/progressdialog/main.cpp --> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.</p> <p> All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p> <br /> <p> Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p> <p> Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> </div> </body> </html>
documentation/api/html/sessiontest_8php.html
bisailb/phpwebtk
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.11"/> <title>PHP Web Toolkit 1.0.4 Alpha (phpwebtk): testscripts/sessiontest.php File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">PHP Web Toolkit 1.0.4 Alpha (phpwebtk) </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.11 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> <li><a href="globals.html"><span>File&#160;Members</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="dir_2a2b3cc892db4f0e8816f6fd2eaaab76.html">testscripts</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#var-members">Variables</a> </div> <div class="headertitle"> <div class="title">sessiontest.php File Reference</div> </div> </div><!--header--> <div class="contents"> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="var-members"></a> Variables</h2></td></tr> <tr class="memitem:a50a00e7de77365e00b117e73aa82fb9b"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="sessiontest_8php.html#a50a00e7de77365e00b117e73aa82fb9b">$start</a> = microtime ( 1 )</td></tr> <tr class="separator:a50a00e7de77365e00b117e73aa82fb9b"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a643b2b1f2dc44a503ee0f3d67a311f57"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="sessiontest_8php.html#a643b2b1f2dc44a503ee0f3d67a311f57">$Session</a> = new <a class="el" href="classSession.html">Session</a> ()</td></tr> <tr class="separator:a643b2b1f2dc44a503ee0f3d67a311f57"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:afec7403d7db1849b2bd2f3ce218f12a2"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="sessiontest_8php.html#afec7403d7db1849b2bd2f3ce218f12a2">$stop</a> = microtime ( 1 )</td></tr> <tr class="separator:afec7403d7db1849b2bd2f3ce218f12a2"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a78db1a0602e3b6ac1d9a1b5ec103c160"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="sessiontest_8php.html#a78db1a0602e3b6ac1d9a1b5ec103c160">$time</a> = $stop - $start</td></tr> <tr class="separator:a78db1a0602e3b6ac1d9a1b5ec103c160"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <h2 class="groupheader">Variable Documentation</h2> <a class="anchor" id="a643b2b1f2dc44a503ee0f3d67a311f57"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">$<a class="el" href="classSession.html">Session</a> = new <a class="el" href="classSession.html">Session</a> ()</td> </tr> </table> </div><div class="memdoc"> </div> </div> <a class="anchor" id="a50a00e7de77365e00b117e73aa82fb9b"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">$start = microtime ( 1 )</td> </tr> </table> </div><div class="memdoc"> </div> </div> <a class="anchor" id="afec7403d7db1849b2bd2f3ce218f12a2"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">$stop = microtime ( 1 )</td> </tr> </table> </div><div class="memdoc"> </div> </div> <a class="anchor" id="a78db1a0602e3b6ac1d9a1b5ec103c160"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">$time = $stop - $start</td> </tr> </table> </div><div class="memdoc"> </div> </div> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.11 </small></address> </body> </html>
doc/html/graphicsview-flowlayout-flowlayout-h.html
sunblithe/qt-everywhere-opensource-src-4.7.1
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Qt 4.7: flowlayout.h Example File (graphicsview/flowlayout/flowlayout.h)</title> <link rel="stylesheet" type="text/css" href="style/style.css" /> <script src="scripts/jquery.js" type="text/javascript"></script> <script src="scripts/functions.js" type="text/javascript"></script> </head> <body class="offline narrow creator"> <div class="header" id="qtdocheader"> <div class="content"> <div id="nav-logo"> <a href="index.html">Home</a></div> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> <div id="nav-topright"> <ul> <li class="nav-topright-home"><a href="http://qt.nokia.com/">Qt HOME</a></li> <li class="nav-topright-dev"><a href="http://developer.qt.nokia.com/">DEV</a></li> <li class="nav-topright-labs"><a href="http://labs.qt.nokia.com/blogs/">LABS</a></li> <li class="nav-topright-doc nav-topright-doc-active"><a href="http://doc.qt.nokia.com/"> DOC</a></li> <li class="nav-topright-blog"><a href="http://blog.qt.nokia.com/">BLOG</a></li> </ul> </div> <div id="shortCut"> <ul> <li class="shortCut-topleft-inactive"><span><a href="index.html">Qt 4.7</a></span></li> <li class="shortCut-topleft-active"><a href="http://doc.qt.nokia.com">ALL VERSIONS </a></li> </ul> </div> <ul class="sf-menu sf-js-enabled sf-shadow" id="narrowmenu"> <li><a href="#">API Lookup</a> <ul id="topmenuLook"> <li><a href="classes.html">Class index</a></li> <li><a href="functions.html">Function index</a></li> <li><a href="modules.html">Modules</a></li> <li><a href="namespaces.html">Namespaces</a></li> <li><a href="qtglobal.html">Global Declarations</a></li> <li><a href="licensing.html">Licenses and Credits</a></li> </ul> </li> <li><a href="#">Qt Topics</a> <ul id="topmenuTopic"> <li><a href="qt-basic-concepts.html">Programming with Qt</a></li> <li><a href="qtquick.html">Device UI's &amp; Qt Quick</a></li> <li><a href="qt-gui-concepts.html">UI Design with Qt</a></li> <li><a href="developing-with-qt.html">Cross-platform and Platform-specific</a></li> <li><a href="platform-specific.html">Platform-specific info</a></li> <li><a href="technology-apis.html">Qt and Key Technologies</a></li> <li><a href="best-practices.html">How-To's and Best Practices</a></li> </ul> </li> <li><a href="#">Examples</a> <ul id="topmenuexample"> <li><a href="all-examples.html">Examples</a></li> <li><a href="tutorials.html">Tutorials</a></li> <li><a href="demos.html">Demos</a></li> <li><a href="qdeclarativeexamples.html">QML Examples</a></li> </ul> </li> </ul> </div> </div> <div class="wrapper"> <div class="hd"> <span></span> </div> <div class="bd group"> <div class="sidebar"> <div class="searchlabel"> Search index:</div> <div class="search"> <form id="qtdocsearch" action="" onsubmit="return false;"> <fieldset> <input type="text" name="searchstring" id="pageType" value="" /> </fieldset> </form> </div> <div class="box first bottombar" id="lookup"> <h2 title="API Lookup"><span></span> API Lookup</h2> <div id="list001" class="list"> <ul id="ul001" > <li class="defaultLink"><a href="classes.html">Class index</a></li> <li class="defaultLink"><a href="functions.html">Function index</a></li> <li class="defaultLink"><a href="modules.html">Modules</a></li> <li class="defaultLink"><a href="namespaces.html">Namespaces</a></li> <li class="defaultLink"><a href="qtglobal.html">Global Declarations</a></li> <li class="defaultLink"><a href="qdeclarativeelements.html">QML elements</a></li> </ul> </div> </div> <div class="box bottombar" id="topics"> <h2 title="Qt Topics"><span></span> Qt Topics</h2> <div id="list002" class="list"> <ul id="ul002" > <li class="defaultLink"><a href="qt-basic-concepts.html">Programming with Qt</a></li> <li class="defaultLink"><a href="qtquick.html">Device UI's &amp; Qt Quick</a></li> <li class="defaultLink"><a href="qt-gui-concepts.html">UI Design with Qt</a></li> <li class="defaultLink"><a href="developing-with-qt.html">Cross-platform and Platform-specific</a></li> <li class="defaultLink"><a href="platform-specific.html">Platform-specific info</a></li> <li class="defaultLink"><a href="technology-apis.html">Qt and Key Technologies</a></li> <li class="defaultLink"><a href="best-practices.html">How-To's and Best Practices</a></li> </ul> </div> </div> <div class="box" id="examples"> <h2 title="Examples"><span></span> Examples</h2> <div id="list003" class="list"> <ul id="ul003"> <li class="defaultLink"><a href="all-examples.html">Examples</a></li> <li class="defaultLink"><a href="tutorials.html">Tutorials</a></li> <li class="defaultLink"><a href="demos.html">Demos</a></li> <li class="defaultLink"><a href="qdeclarativeexamples.html">QML Examples</a></li> </ul> </div> </div> </div> <div class="wrap"> <div class="toolbar"> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Bread crumbs goes here --> </ul> </div> <div class="toolbuttons toolblock"> <ul> <li id="smallA" class="t_button">A</li> <li id="medA" class="t_button active">A</li> <li id="bigA" class="t_button">A</li> <li id="print" class="t_button"><a href="javascript:this.print();"> <span>Print</span></a></li> </ul> </div> </div> <div class="content"> <h1 class="title">flowlayout.h Example File</h1> <span class="small-subtitle">graphicsview/flowlayout/flowlayout.h</span> <!-- $$$graphicsview/flowlayout/flowlayout.h-description --> <div class="descr"> <a name="details"></a> <pre class="highlightedCode brush: cpp"><span class="comment"> /**************************************************************************** ** ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** ** &quot;Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions are ** met: ** * Redistributions of source code must retain the above copyright ** notice, this list of conditions and the following disclaimer. ** * Redistributions in binary form must reproduce the above copyright ** notice, this list of conditions and the following disclaimer in ** the documentation and/or other materials provided with the ** distribution. ** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor ** the names of its contributors may be used to endorse or promote ** products derived from this software without specific prior written ** permission. ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot; ** $QT_END_LICENSE$ ** ****************************************************************************/</span> #include &lt;QtGui/qgraphicslayout.h&gt; class FlowLayout : public QGraphicsLayout { public: FlowLayout(); inline void addItem(QGraphicsLayoutItem *item); void insertItem(int index, QGraphicsLayoutItem *item); void setSpacing(Qt::Orientations o, qreal spacing); qreal spacing(Qt::Orientation o) const; <span class="comment">// inherited functions</span> void setGeometry(const QRectF &amp;geom); int count() const; QGraphicsLayoutItem *itemAt(int index) const; void removeAt(int index); protected: QSizeF sizeHint(Qt::SizeHint which, const QSizeF &amp;constraint = QSizeF()) const; private: qreal doLayout(const QRectF &amp;geom, bool applyNewGeometry) const; QSizeF minSize(const QSizeF &amp;constraint) const; QSizeF prefSize() const; QSizeF maxSize() const; QList&lt;QGraphicsLayoutItem*&gt; m_items; qreal m_spacing[2]; }; inline void FlowLayout::addItem(QGraphicsLayoutItem *item) { insertItem(-1, item); }</pre> </div> <!-- @@@graphicsview/flowlayout/flowlayout.h --> <div class="feedback t_button"> [+] Documentation Feedback</div> </div> </div> </div> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2008-2010 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.</p> <p> All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p> <br /> <p> Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p> <p> Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> </div> <div id="feedbackBox"> <div id="feedcloseX" class="feedclose t_button">X</div> <form id="feedform" action="http://doc.qt.nokia.com/docFeedbck/feedback.php" method="get"> <p id="noteHead">Thank you for giving your feedback.</p> <p class="note">Make sure it is related to this specific page. For more general bugs and requests, please use the <a href="http://bugreports.qt.nokia.com/secure/Dashboard.jspa">Qt Bug Tracker</a>.</p> <p><textarea id="feedbox" name="feedText" rows="5" cols="40"></textarea></p> <p><input id="feedsubmit" class="feedclose" type="submit" name="feedback" /></p> </form> </div> <div id="blurpage"> </div> </body> </html>
sources/FeatureExtractor/lib/hibernate-release-5.1.0.Final/documentation/javadocs/org/hibernate/sql/ordering/antlr/class-use/SortKey.html
1fechner/FeatureExtractor
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_40) on Wed Feb 10 11:30:58 CST 2016 --> <title>Uses of Class org.hibernate.sql.ordering.antlr.SortKey (Hibernate JavaDocs)</title> <meta name="date" content="2016-02-10"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.hibernate.sql.ordering.antlr.SortKey (Hibernate JavaDocs)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/hibernate/sql/ordering/antlr/SortKey.html" title="class in org.hibernate.sql.ordering.antlr">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/hibernate/sql/ordering/antlr/class-use/SortKey.html" target="_top">Frames</a></li> <li><a href="SortKey.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.hibernate.sql.ordering.antlr.SortKey" class="title">Uses of Class<br>org.hibernate.sql.ordering.antlr.SortKey</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/hibernate/sql/ordering/antlr/SortKey.html" title="class in org.hibernate.sql.ordering.antlr">SortKey</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.hibernate.sql.ordering.antlr">org.hibernate.sql.ordering.antlr</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.hibernate.sql.ordering.antlr"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/hibernate/sql/ordering/antlr/SortKey.html" title="class in org.hibernate.sql.ordering.antlr">SortKey</a> in <a href="../../../../../../org/hibernate/sql/ordering/antlr/package-summary.html">org.hibernate.sql.ordering.antlr</a></h3> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/hibernate/sql/ordering/antlr/package-summary.html">org.hibernate.sql.ordering.antlr</a> that return <a href="../../../../../../org/hibernate/sql/ordering/antlr/SortKey.html" title="class in org.hibernate.sql.ordering.antlr">SortKey</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/hibernate/sql/ordering/antlr/SortKey.html" title="class in org.hibernate.sql.ordering.antlr">SortKey</a></code></td> <td class="colLast"><span class="typeNameLabel">SortSpecification.</span><code><span class="memberNameLink"><a href="../../../../../../org/hibernate/sql/ordering/antlr/SortSpecification.html#getSortKey--">getSortKey</a></span>()</code> <div class="block">Locate the specified <a href="../../../../../../org/hibernate/sql/ordering/antlr/SortKey.html" title="class in org.hibernate.sql.ordering.antlr"><code>SortKey</code></a>.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/hibernate/sql/ordering/antlr/SortKey.html" title="class in org.hibernate.sql.ordering.antlr">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/hibernate/sql/ordering/antlr/class-use/SortKey.html" target="_top">Frames</a></li> <li><a href="SortKey.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2001-2016 <a href="http://redhat.com">Red Hat, Inc.</a> All Rights Reserved.</small></p> </body> </html>
themes/united/css/united.css
XavierSolerFR/diem25tiki
@import url("https://fonts.googleapis.com/css?family=Ubuntu:400,700"); /*! * Bootstrap v3.3.6 (http://getbootstrap.com) * Copyright 2011-2015 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ html { font-family: sans-serif; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; } body { margin: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; } audio, canvas, progress, video { display: inline-block; vertical-align: baseline; } audio:not([controls]) { display: none; height: 0; } [hidden], template { display: none; } a { background-color: transparent; } a:active, a:hover { outline: 0; } abbr[title] { border-bottom: 1px dotted; } b, strong { font-weight: bold; } dfn { font-style: italic; } h1 { font-size: 2em; margin: 0.67em 0; } mark { background: #ff0; color: #000; } small { font-size: 80%; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; } svg:not(:root) { overflow: hidden; } figure { margin: 1em 40px; } hr { box-sizing: content-box; height: 0; } pre { overflow: auto; } code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } button, input, optgroup, select, textarea { color: inherit; font: inherit; margin: 0; } button { overflow: visible; } button, select { text-transform: none; } button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; } button[disabled], html input[disabled] { cursor: default; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } input { line-height: normal; } input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; } input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } input[type="search"] { -webkit-appearance: textfield; box-sizing: content-box; } input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } legend { border: 0; padding: 0; } textarea { overflow: auto; } optgroup { font-weight: bold; } table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ @media print { *, *:before, *:after { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } a[href^="#"]:after, a[href^="javascript:"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } .navbar { display: none; } .btn > .caret, .dropup > .btn > .caret { border-top-color: #000 !important; } .label { border: 1px solid #000; } .table { border-collapse: collapse !important; } .table td, .table th { background-color: #fff !important; } .table-bordered th, .table-bordered td { border: 1px solid #ddd !important; } } @font-face { font-family: 'Glyphicons Halflings'; src: url('../fonts/glyphicons-halflings-regular.eot'); src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); } .glyphicon { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 1; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } .glyphicon-asterisk:before { content: "\002a"; } .glyphicon-plus:before { content: "\002b"; } .glyphicon-euro:before, .glyphicon-eur:before { content: "\20ac"; } .glyphicon-minus:before { content: "\2212"; } .glyphicon-cloud:before { content: "\2601"; } .glyphicon-envelope:before { content: "\2709"; } .glyphicon-pencil:before { content: "\270f"; } .glyphicon-glass:before { content: "\e001"; } .glyphicon-music:before { content: "\e002"; } .glyphicon-search:before { content: "\e003"; } .glyphicon-heart:before { content: "\e005"; } .glyphicon-star:before { content: "\e006"; } .glyphicon-star-empty:before { content: "\e007"; } .glyphicon-user:before { content: "\e008"; } .glyphicon-film:before { content: "\e009"; } .glyphicon-th-large:before { content: "\e010"; } .glyphicon-th:before { content: "\e011"; } .glyphicon-th-list:before { content: "\e012"; } .glyphicon-ok:before { content: "\e013"; } .glyphicon-remove:before { content: "\e014"; } .glyphicon-zoom-in:before { content: "\e015"; } .glyphicon-zoom-out:before { content: "\e016"; } .glyphicon-off:before { content: "\e017"; } .glyphicon-signal:before { content: "\e018"; } .glyphicon-cog:before { content: "\e019"; } .glyphicon-trash:before { content: "\e020"; } .glyphicon-home:before { content: "\e021"; } .glyphicon-file:before { content: "\e022"; } .glyphicon-time:before { content: "\e023"; } .glyphicon-road:before { content: "\e024"; } .glyphicon-download-alt:before { content: "\e025"; } .glyphicon-download:before { content: "\e026"; } .glyphicon-upload:before { content: "\e027"; } .glyphicon-inbox:before { content: "\e028"; } .glyphicon-play-circle:before { content: "\e029"; } .glyphicon-repeat:before { content: "\e030"; } .glyphicon-refresh:before { content: "\e031"; } .glyphicon-list-alt:before { content: "\e032"; } .glyphicon-lock:before { content: "\e033"; } .glyphicon-flag:before { content: "\e034"; } .glyphicon-headphones:before { content: "\e035"; } .glyphicon-volume-off:before { content: "\e036"; } .glyphicon-volume-down:before { content: "\e037"; } .glyphicon-volume-up:before { content: "\e038"; } .glyphicon-qrcode:before { content: "\e039"; } .glyphicon-barcode:before { content: "\e040"; } .glyphicon-tag:before { content: "\e041"; } .glyphicon-tags:before { content: "\e042"; } .glyphicon-book:before { content: "\e043"; } .glyphicon-bookmark:before { content: "\e044"; } .glyphicon-print:before { content: "\e045"; } .glyphicon-camera:before { content: "\e046"; } .glyphicon-font:before { content: "\e047"; } .glyphicon-bold:before { content: "\e048"; } .glyphicon-italic:before { content: "\e049"; } .glyphicon-text-height:before { content: "\e050"; } .glyphicon-text-width:before { content: "\e051"; } .glyphicon-align-left:before { content: "\e052"; } .glyphicon-align-center:before { content: "\e053"; } .glyphicon-align-right:before { content: "\e054"; } .glyphicon-align-justify:before { content: "\e055"; } .glyphicon-list:before { content: "\e056"; } .glyphicon-indent-left:before { content: "\e057"; } .glyphicon-indent-right:before { content: "\e058"; } .glyphicon-facetime-video:before { content: "\e059"; } .glyphicon-picture:before { content: "\e060"; } .glyphicon-map-marker:before { content: "\e062"; } .glyphicon-adjust:before { content: "\e063"; } .glyphicon-tint:before { content: "\e064"; } .glyphicon-edit:before { content: "\e065"; } .glyphicon-share:before { content: "\e066"; } .glyphicon-check:before { content: "\e067"; } .glyphicon-move:before { content: "\e068"; } .glyphicon-step-backward:before { content: "\e069"; } .glyphicon-fast-backward:before { content: "\e070"; } .glyphicon-backward:before { content: "\e071"; } .glyphicon-play:before { content: "\e072"; } .glyphicon-pause:before { content: "\e073"; } .glyphicon-stop:before { content: "\e074"; } .glyphicon-forward:before { content: "\e075"; } .glyphicon-fast-forward:before { content: "\e076"; } .glyphicon-step-forward:before { content: "\e077"; } .glyphicon-eject:before { content: "\e078"; } .glyphicon-chevron-left:before { content: "\e079"; } .glyphicon-chevron-right:before { content: "\e080"; } .glyphicon-plus-sign:before { content: "\e081"; } .glyphicon-minus-sign:before { content: "\e082"; } .glyphicon-remove-sign:before { content: "\e083"; } .glyphicon-ok-sign:before { content: "\e084"; } .glyphicon-question-sign:before { content: "\e085"; } .glyphicon-info-sign:before { content: "\e086"; } .glyphicon-screenshot:before { content: "\e087"; } .glyphicon-remove-circle:before { content: "\e088"; } .glyphicon-ok-circle:before { content: "\e089"; } .glyphicon-ban-circle:before { content: "\e090"; } .glyphicon-arrow-left:before { content: "\e091"; } .glyphicon-arrow-right:before { content: "\e092"; } .glyphicon-arrow-up:before { content: "\e093"; } .glyphicon-arrow-down:before { content: "\e094"; } .glyphicon-share-alt:before { content: "\e095"; } .glyphicon-resize-full:before { content: "\e096"; } .glyphicon-resize-small:before { content: "\e097"; } .glyphicon-exclamation-sign:before { content: "\e101"; } .glyphicon-gift:before { content: "\e102"; } .glyphicon-leaf:before { content: "\e103"; } .glyphicon-fire:before { content: "\e104"; } .glyphicon-eye-open:before { content: "\e105"; } .glyphicon-eye-close:before { content: "\e106"; } .glyphicon-warning-sign:before { content: "\e107"; } .glyphicon-plane:before { content: "\e108"; } .glyphicon-calendar:before { content: "\e109"; } .glyphicon-random:before { content: "\e110"; } .glyphicon-comment:before { content: "\e111"; } .glyphicon-magnet:before { content: "\e112"; } .glyphicon-chevron-up:before { content: "\e113"; } .glyphicon-chevron-down:before { content: "\e114"; } .glyphicon-retweet:before { content: "\e115"; } .glyphicon-shopping-cart:before { content: "\e116"; } .glyphicon-folder-close:before { content: "\e117"; } .glyphicon-folder-open:before { content: "\e118"; } .glyphicon-resize-vertical:before { content: "\e119"; } .glyphicon-resize-horizontal:before { content: "\e120"; } .glyphicon-hdd:before { content: "\e121"; } .glyphicon-bullhorn:before { content: "\e122"; } .glyphicon-bell:before { content: "\e123"; } .glyphicon-certificate:before { content: "\e124"; } .glyphicon-thumbs-up:before { content: "\e125"; } .glyphicon-thumbs-down:before { content: "\e126"; } .glyphicon-hand-right:before { content: "\e127"; } .glyphicon-hand-left:before { content: "\e128"; } .glyphicon-hand-up:before { content: "\e129"; } .glyphicon-hand-down:before { content: "\e130"; } .glyphicon-circle-arrow-right:before { content: "\e131"; } .glyphicon-circle-arrow-left:before { content: "\e132"; } .glyphicon-circle-arrow-up:before { content: "\e133"; } .glyphicon-circle-arrow-down:before { content: "\e134"; } .glyphicon-globe:before { content: "\e135"; } .glyphicon-wrench:before { content: "\e136"; } .glyphicon-tasks:before { content: "\e137"; } .glyphicon-filter:before { content: "\e138"; } .glyphicon-briefcase:before { content: "\e139"; } .glyphicon-fullscreen:before { content: "\e140"; } .glyphicon-dashboard:before { content: "\e141"; } .glyphicon-paperclip:before { content: "\e142"; } .glyphicon-heart-empty:before { content: "\e143"; } .glyphicon-link:before { content: "\e144"; } .glyphicon-phone:before { content: "\e145"; } .glyphicon-pushpin:before { content: "\e146"; } .glyphicon-usd:before { content: "\e148"; } .glyphicon-gbp:before { content: "\e149"; } .glyphicon-sort:before { content: "\e150"; } .glyphicon-sort-by-alphabet:before { content: "\e151"; } .glyphicon-sort-by-alphabet-alt:before { content: "\e152"; } .glyphicon-sort-by-order:before { content: "\e153"; } .glyphicon-sort-by-order-alt:before { content: "\e154"; } .glyphicon-sort-by-attributes:before { content: "\e155"; } .glyphicon-sort-by-attributes-alt:before { content: "\e156"; } .glyphicon-unchecked:before { content: "\e157"; } .glyphicon-expand:before { content: "\e158"; } .glyphicon-collapse-down:before { content: "\e159"; } .glyphicon-collapse-up:before { content: "\e160"; } .glyphicon-log-in:before { content: "\e161"; } .glyphicon-flash:before { content: "\e162"; } .glyphicon-log-out:before { content: "\e163"; } .glyphicon-new-window:before { content: "\e164"; } .glyphicon-record:before { content: "\e165"; } .glyphicon-save:before { content: "\e166"; } .glyphicon-open:before { content: "\e167"; } .glyphicon-saved:before { content: "\e168"; } .glyphicon-import:before { content: "\e169"; } .glyphicon-export:before { content: "\e170"; } .glyphicon-send:before { content: "\e171"; } .glyphicon-floppy-disk:before { content: "\e172"; } .glyphicon-floppy-saved:before { content: "\e173"; } .glyphicon-floppy-remove:before { content: "\e174"; } .glyphicon-floppy-save:before { content: "\e175"; } .glyphicon-floppy-open:before { content: "\e176"; } .glyphicon-credit-card:before { content: "\e177"; } .glyphicon-transfer:before { content: "\e178"; } .glyphicon-cutlery:before { content: "\e179"; } .glyphicon-header:before { content: "\e180"; } .glyphicon-compressed:before { content: "\e181"; } .glyphicon-earphone:before { content: "\e182"; } .glyphicon-phone-alt:before { content: "\e183"; } .glyphicon-tower:before { content: "\e184"; } .glyphicon-stats:before { content: "\e185"; } .glyphicon-sd-video:before { content: "\e186"; } .glyphicon-hd-video:before { content: "\e187"; } .glyphicon-subtitles:before { content: "\e188"; } .glyphicon-sound-stereo:before { content: "\e189"; } .glyphicon-sound-dolby:before { content: "\e190"; } .glyphicon-sound-5-1:before { content: "\e191"; } .glyphicon-sound-6-1:before { content: "\e192"; } .glyphicon-sound-7-1:before { content: "\e193"; } .glyphicon-copyright-mark:before { content: "\e194"; } .glyphicon-registration-mark:before { content: "\e195"; } .glyphicon-cloud-download:before { content: "\e197"; } .glyphicon-cloud-upload:before { content: "\e198"; } .glyphicon-tree-conifer:before { content: "\e199"; } .glyphicon-tree-deciduous:before { content: "\e200"; } .glyphicon-cd:before { content: "\e201"; } .glyphicon-save-file:before { content: "\e202"; } .glyphicon-open-file:before { content: "\e203"; } .glyphicon-level-up:before { content: "\e204"; } .glyphicon-copy:before { content: "\e205"; } .glyphicon-paste:before { content: "\e206"; } .glyphicon-alert:before { content: "\e209"; } .glyphicon-equalizer:before { content: "\e210"; } .glyphicon-king:before { content: "\e211"; } .glyphicon-queen:before { content: "\e212"; } .glyphicon-pawn:before { content: "\e213"; } .glyphicon-bishop:before { content: "\e214"; } .glyphicon-knight:before { content: "\e215"; } .glyphicon-baby-formula:before { content: "\e216"; } .glyphicon-tent:before { content: "\26fa"; } .glyphicon-blackboard:before { content: "\e218"; } .glyphicon-bed:before { content: "\e219"; } .glyphicon-apple:before { content: "\f8ff"; } .glyphicon-erase:before { content: "\e221"; } .glyphicon-hourglass:before { content: "\231b"; } .glyphicon-lamp:before { content: "\e223"; } .glyphicon-duplicate:before { content: "\e224"; } .glyphicon-piggy-bank:before { content: "\e225"; } .glyphicon-scissors:before { content: "\e226"; } .glyphicon-bitcoin:before { content: "\e227"; } .glyphicon-btc:before { content: "\e227"; } .glyphicon-xbt:before { content: "\e227"; } .glyphicon-yen:before { content: "\00a5"; } .glyphicon-jpy:before { content: "\00a5"; } .glyphicon-ruble:before { content: "\20bd"; } .glyphicon-rub:before { content: "\20bd"; } .glyphicon-scale:before { content: "\e230"; } .glyphicon-ice-lolly:before { content: "\e231"; } .glyphicon-ice-lolly-tasted:before { content: "\e232"; } .glyphicon-education:before { content: "\e233"; } .glyphicon-option-horizontal:before { content: "\e234"; } .glyphicon-option-vertical:before { content: "\e235"; } .glyphicon-menu-hamburger:before { content: "\e236"; } .glyphicon-modal-window:before { content: "\e237"; } .glyphicon-oil:before { content: "\e238"; } .glyphicon-grain:before { content: "\e239"; } .glyphicon-sunglasses:before { content: "\e240"; } .glyphicon-text-size:before { content: "\e241"; } .glyphicon-text-color:before { content: "\e242"; } .glyphicon-text-background:before { content: "\e243"; } .glyphicon-object-align-top:before { content: "\e244"; } .glyphicon-object-align-bottom:before { content: "\e245"; } .glyphicon-object-align-horizontal:before { content: "\e246"; } .glyphicon-object-align-left:before { content: "\e247"; } .glyphicon-object-align-vertical:before { content: "\e248"; } .glyphicon-object-align-right:before { content: "\e249"; } .glyphicon-triangle-right:before { content: "\e250"; } .glyphicon-triangle-left:before { content: "\e251"; } .glyphicon-triangle-bottom:before { content: "\e252"; } .glyphicon-triangle-top:before { content: "\e253"; } .glyphicon-console:before { content: "\e254"; } .glyphicon-superscript:before { content: "\e255"; } .glyphicon-subscript:before { content: "\e256"; } .glyphicon-menu-left:before { content: "\e257"; } .glyphicon-menu-right:before { content: "\e258"; } .glyphicon-menu-down:before { content: "\e259"; } .glyphicon-menu-up:before { content: "\e260"; } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html { font-size: 10px; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); } body { font-family: "Ubuntu", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.42857143; color: #333333; background-color: #ffffff; } input, button, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; } a { color: #dd4814; text-decoration: none; } a:hover, a:focus { color: #97310e; text-decoration: underline; } a:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } figure { margin: 0; } img { vertical-align: middle; } .img-responsive, .thumbnail > img, .thumbnail a > img, .carousel-inner > .item > img, .carousel-inner > .item > a > img { display: block; max-width: 100%; height: auto; } .img-rounded { border-radius: 6px; } .img-thumbnail { padding: 4px; line-height: 1.42857143; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 4px; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; display: inline-block; max-width: 100%; height: auto; } .img-circle { border-radius: 50%; } hr { margin-top: 20px; margin-bottom: 20px; border: 0; border-top: 1px solid #eeeeee; } .sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; margin: 0; overflow: visible; clip: auto; } [role="button"] { cursor: pointer; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: "Ubuntu", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif; font-weight: 500; line-height: 1.1; color: inherit; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small, h1 .small, h2 .small, h3 .small, h4 .small, h5 .small, h6 .small, .h1 .small, .h2 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { font-weight: normal; line-height: 1; color: #aea79f; } h1, .h1, h2, .h2, h3, .h3 { margin-top: 20px; margin-bottom: 10px; } h1 small, .h1 small, h2 small, .h2 small, h3 small, .h3 small, h1 .small, .h1 .small, h2 .small, .h2 .small, h3 .small, .h3 .small { font-size: 65%; } h4, .h4, h5, .h5, h6, .h6 { margin-top: 10px; margin-bottom: 10px; } h4 small, .h4 small, h5 small, .h5 small, h6 small, .h6 small, h4 .small, .h4 .small, h5 .small, .h5 .small, h6 .small, .h6 .small { font-size: 75%; } h1, .h1 { font-size: 36px; } h2, .h2 { font-size: 30px; } h3, .h3 { font-size: 24px; } h4, .h4 { font-size: 18px; } h5, .h5 { font-size: 14px; } h6, .h6 { font-size: 12px; } p { margin: 0 0 10px; } .lead { margin-bottom: 20px; font-size: 16px; font-weight: 300; line-height: 1.4; } @media (min-width: 768px) { .lead { font-size: 21px; } } small, .small { font-size: 85%; } mark, .mark { background-color: #fcf8e3; padding: .2em; } .text-left { text-align: left; } .text-right { text-align: right; } .text-center { text-align: center; } .text-justify { text-align: justify; } .text-nowrap { white-space: nowrap; } .text-lowercase { text-transform: lowercase; } .text-uppercase { text-transform: uppercase; } .text-capitalize { text-transform: capitalize; } .text-muted { color: #aea79f; } .text-primary { color: #dd4814; } a.text-primary:hover, a.text-primary:focus { color: #ae3910; } .text-success { color: #468847; } a.text-success:hover, a.text-success:focus { color: #356635; } .text-info { color: #3a87ad; } a.text-info:hover, a.text-info:focus { color: #2d6987; } .text-warning { color: #c09853; } a.text-warning:hover, a.text-warning:focus { color: #a47e3c; } .text-danger { color: #b94a48; } a.text-danger:hover, a.text-danger:focus { color: #953b39; } .bg-primary { color: #fff; background-color: #dd4814; } a.bg-primary:hover, a.bg-primary:focus { background-color: #ae3910; } .bg-success { background-color: #dff0d8; } a.bg-success:hover, a.bg-success:focus { background-color: #c1e2b3; } .bg-info { background-color: #d9edf7; } a.bg-info:hover, a.bg-info:focus { background-color: #afd9ee; } .bg-warning { background-color: #fcf8e3; } a.bg-warning:hover, a.bg-warning:focus { background-color: #f7ecb5; } .bg-danger { background-color: #f2dede; } a.bg-danger:hover, a.bg-danger:focus { background-color: #e4b9b9; } .page-header { padding-bottom: 9px; margin: 40px 0 20px; border-bottom: 1px solid #eeeeee; } ul, ol { margin-top: 0; margin-bottom: 10px; } ul ul, ol ul, ul ol, ol ol { margin-bottom: 0; } .list-unstyled { padding-left: 0; list-style: none; } .list-inline { padding-left: 0; list-style: none; margin-left: -5px; } .list-inline > li { display: inline-block; padding-left: 5px; padding-right: 5px; } dl { margin-top: 0; margin-bottom: 20px; } dt, dd { line-height: 1.42857143; } dt { font-weight: bold; } dd { margin-left: 0; } @media (min-width: 768px) { .dl-horizontal dt { float: left; width: 160px; clear: left; text-align: right; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .dl-horizontal dd { margin-left: 180px; } } abbr[title], abbr[data-original-title] { cursor: help; border-bottom: 1px dotted #aea79f; } .initialism { font-size: 90%; text-transform: uppercase; } blockquote { padding: 10px 20px; margin: 0 0 20px; font-size: 17.5px; border-left: 5px solid #eeeeee; } blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child { margin-bottom: 0; } blockquote footer, blockquote small, blockquote .small { display: block; font-size: 80%; line-height: 1.42857143; color: #aea79f; } blockquote footer:before, blockquote small:before, blockquote .small:before { content: '\2014 \00A0'; } .blockquote-reverse, blockquote.pull-right { padding-right: 15px; padding-left: 0; border-right: 5px solid #eeeeee; border-left: 0; text-align: right; } .blockquote-reverse footer:before, blockquote.pull-right footer:before, .blockquote-reverse small:before, blockquote.pull-right small:before, .blockquote-reverse .small:before, blockquote.pull-right .small:before { content: ''; } .blockquote-reverse footer:after, blockquote.pull-right footer:after, .blockquote-reverse small:after, blockquote.pull-right small:after, .blockquote-reverse .small:after, blockquote.pull-right .small:after { content: '\00A0 \2014'; } address { margin-bottom: 20px; font-style: normal; line-height: 1.42857143; } code, kbd, pre, samp { font-family: Menlo, Monaco, Consolas, "Courier New", monospace; } code { padding: 2px 4px; font-size: 90%; color: #444444; background-color: #f8f8f8; border-radius: 4px; } kbd { padding: 2px 4px; font-size: 90%; color: #ffffff; background-color: #333333; border-radius: 3px; box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25); } kbd kbd { padding: 0; font-size: 100%; font-weight: bold; box-shadow: none; } pre { display: block; padding: 9.5px; margin: 0 0 10px; font-size: 13px; line-height: 1.42857143; word-break: break-all; word-wrap: break-word; color: #333333; background-color: #f5f5f5; border: 1px solid #cccccc; border-radius: 4px; } pre code { padding: 0; font-size: inherit; color: inherit; white-space: pre-wrap; background-color: transparent; border-radius: 0; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .container { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; } @media (min-width: 768px) { .container { width: 750px; } } @media (min-width: 992px) { .container { width: 970px; } } @media (min-width: 1200px) { .container { width: 1170px; } } .container-fluid { margin-right: auto; margin-left: auto; padding-left: 15px; padding-right: 15px; } .row { margin-left: -15px; margin-right: -15px; } .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { position: relative; min-height: 1px; padding-left: 15px; padding-right: 15px; } .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { float: left; } .col-xs-12 { width: 100%; } .col-xs-11 { width: 91.66666667%; } .col-xs-10 { width: 83.33333333%; } .col-xs-9 { width: 75%; } .col-xs-8 { width: 66.66666667%; } .col-xs-7 { width: 58.33333333%; } .col-xs-6 { width: 50%; } .col-xs-5 { width: 41.66666667%; } .col-xs-4 { width: 33.33333333%; } .col-xs-3 { width: 25%; } .col-xs-2 { width: 16.66666667%; } .col-xs-1 { width: 8.33333333%; } .col-xs-pull-12 { right: 100%; } .col-xs-pull-11 { right: 91.66666667%; } .col-xs-pull-10 { right: 83.33333333%; } .col-xs-pull-9 { right: 75%; } .col-xs-pull-8 { right: 66.66666667%; } .col-xs-pull-7 { right: 58.33333333%; } .col-xs-pull-6 { right: 50%; } .col-xs-pull-5 { right: 41.66666667%; } .col-xs-pull-4 { right: 33.33333333%; } .col-xs-pull-3 { right: 25%; } .col-xs-pull-2 { right: 16.66666667%; } .col-xs-pull-1 { right: 8.33333333%; } .col-xs-pull-0 { right: auto; } .col-xs-push-12 { left: 100%; } .col-xs-push-11 { left: 91.66666667%; } .col-xs-push-10 { left: 83.33333333%; } .col-xs-push-9 { left: 75%; } .col-xs-push-8 { left: 66.66666667%; } .col-xs-push-7 { left: 58.33333333%; } .col-xs-push-6 { left: 50%; } .col-xs-push-5 { left: 41.66666667%; } .col-xs-push-4 { left: 33.33333333%; } .col-xs-push-3 { left: 25%; } .col-xs-push-2 { left: 16.66666667%; } .col-xs-push-1 { left: 8.33333333%; } .col-xs-push-0 { left: auto; } .col-xs-offset-12 { margin-left: 100%; } .col-xs-offset-11 { margin-left: 91.66666667%; } .col-xs-offset-10 { margin-left: 83.33333333%; } .col-xs-offset-9 { margin-left: 75%; } .col-xs-offset-8 { margin-left: 66.66666667%; } .col-xs-offset-7 { margin-left: 58.33333333%; } .col-xs-offset-6 { margin-left: 50%; } .col-xs-offset-5 { margin-left: 41.66666667%; } .col-xs-offset-4 { margin-left: 33.33333333%; } .col-xs-offset-3 { margin-left: 25%; } .col-xs-offset-2 { margin-left: 16.66666667%; } .col-xs-offset-1 { margin-left: 8.33333333%; } .col-xs-offset-0 { margin-left: 0%; } @media (min-width: 768px) { .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { float: left; } .col-sm-12 { width: 100%; } .col-sm-11 { width: 91.66666667%; } .col-sm-10 { width: 83.33333333%; } .col-sm-9 { width: 75%; } .col-sm-8 { width: 66.66666667%; } .col-sm-7 { width: 58.33333333%; } .col-sm-6 { width: 50%; } .col-sm-5 { width: 41.66666667%; } .col-sm-4 { width: 33.33333333%; } .col-sm-3 { width: 25%; } .col-sm-2 { width: 16.66666667%; } .col-sm-1 { width: 8.33333333%; } .col-sm-pull-12 { right: 100%; } .col-sm-pull-11 { right: 91.66666667%; } .col-sm-pull-10 { right: 83.33333333%; } .col-sm-pull-9 { right: 75%; } .col-sm-pull-8 { right: 66.66666667%; } .col-sm-pull-7 { right: 58.33333333%; } .col-sm-pull-6 { right: 50%; } .col-sm-pull-5 { right: 41.66666667%; } .col-sm-pull-4 { right: 33.33333333%; } .col-sm-pull-3 { right: 25%; } .col-sm-pull-2 { right: 16.66666667%; } .col-sm-pull-1 { right: 8.33333333%; } .col-sm-pull-0 { right: auto; } .col-sm-push-12 { left: 100%; } .col-sm-push-11 { left: 91.66666667%; } .col-sm-push-10 { left: 83.33333333%; } .col-sm-push-9 { left: 75%; } .col-sm-push-8 { left: 66.66666667%; } .col-sm-push-7 { left: 58.33333333%; } .col-sm-push-6 { left: 50%; } .col-sm-push-5 { left: 41.66666667%; } .col-sm-push-4 { left: 33.33333333%; } .col-sm-push-3 { left: 25%; } .col-sm-push-2 { left: 16.66666667%; } .col-sm-push-1 { left: 8.33333333%; } .col-sm-push-0 { left: auto; } .col-sm-offset-12 { margin-left: 100%; } .col-sm-offset-11 { margin-left: 91.66666667%; } .col-sm-offset-10 { margin-left: 83.33333333%; } .col-sm-offset-9 { margin-left: 75%; } .col-sm-offset-8 { margin-left: 66.66666667%; } .col-sm-offset-7 { margin-left: 58.33333333%; } .col-sm-offset-6 { margin-left: 50%; } .col-sm-offset-5 { margin-left: 41.66666667%; } .col-sm-offset-4 { margin-left: 33.33333333%; } .col-sm-offset-3 { margin-left: 25%; } .col-sm-offset-2 { margin-left: 16.66666667%; } .col-sm-offset-1 { margin-left: 8.33333333%; } .col-sm-offset-0 { margin-left: 0%; } } @media (min-width: 992px) { .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { float: left; } .col-md-12 { width: 100%; } .col-md-11 { width: 91.66666667%; } .col-md-10 { width: 83.33333333%; } .col-md-9 { width: 75%; } .col-md-8 { width: 66.66666667%; } .col-md-7 { width: 58.33333333%; } .col-md-6 { width: 50%; } .col-md-5 { width: 41.66666667%; } .col-md-4 { width: 33.33333333%; } .col-md-3 { width: 25%; } .col-md-2 { width: 16.66666667%; } .col-md-1 { width: 8.33333333%; } .col-md-pull-12 { right: 100%; } .col-md-pull-11 { right: 91.66666667%; } .col-md-pull-10 { right: 83.33333333%; } .col-md-pull-9 { right: 75%; } .col-md-pull-8 { right: 66.66666667%; } .col-md-pull-7 { right: 58.33333333%; } .col-md-pull-6 { right: 50%; } .col-md-pull-5 { right: 41.66666667%; } .col-md-pull-4 { right: 33.33333333%; } .col-md-pull-3 { right: 25%; } .col-md-pull-2 { right: 16.66666667%; } .col-md-pull-1 { right: 8.33333333%; } .col-md-pull-0 { right: auto; } .col-md-push-12 { left: 100%; } .col-md-push-11 { left: 91.66666667%; } .col-md-push-10 { left: 83.33333333%; } .col-md-push-9 { left: 75%; } .col-md-push-8 { left: 66.66666667%; } .col-md-push-7 { left: 58.33333333%; } .col-md-push-6 { left: 50%; } .col-md-push-5 { left: 41.66666667%; } .col-md-push-4 { left: 33.33333333%; } .col-md-push-3 { left: 25%; } .col-md-push-2 { left: 16.66666667%; } .col-md-push-1 { left: 8.33333333%; } .col-md-push-0 { left: auto; } .col-md-offset-12 { margin-left: 100%; } .col-md-offset-11 { margin-left: 91.66666667%; } .col-md-offset-10 { margin-left: 83.33333333%; } .col-md-offset-9 { margin-left: 75%; } .col-md-offset-8 { margin-left: 66.66666667%; } .col-md-offset-7 { margin-left: 58.33333333%; } .col-md-offset-6 { margin-left: 50%; } .col-md-offset-5 { margin-left: 41.66666667%; } .col-md-offset-4 { margin-left: 33.33333333%; } .col-md-offset-3 { margin-left: 25%; } .col-md-offset-2 { margin-left: 16.66666667%; } .col-md-offset-1 { margin-left: 8.33333333%; } .col-md-offset-0 { margin-left: 0%; } } @media (min-width: 1200px) { .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { float: left; } .col-lg-12 { width: 100%; } .col-lg-11 { width: 91.66666667%; } .col-lg-10 { width: 83.33333333%; } .col-lg-9 { width: 75%; } .col-lg-8 { width: 66.66666667%; } .col-lg-7 { width: 58.33333333%; } .col-lg-6 { width: 50%; } .col-lg-5 { width: 41.66666667%; } .col-lg-4 { width: 33.33333333%; } .col-lg-3 { width: 25%; } .col-lg-2 { width: 16.66666667%; } .col-lg-1 { width: 8.33333333%; } .col-lg-pull-12 { right: 100%; } .col-lg-pull-11 { right: 91.66666667%; } .col-lg-pull-10 { right: 83.33333333%; } .col-lg-pull-9 { right: 75%; } .col-lg-pull-8 { right: 66.66666667%; } .col-lg-pull-7 { right: 58.33333333%; } .col-lg-pull-6 { right: 50%; } .col-lg-pull-5 { right: 41.66666667%; } .col-lg-pull-4 { right: 33.33333333%; } .col-lg-pull-3 { right: 25%; } .col-lg-pull-2 { right: 16.66666667%; } .col-lg-pull-1 { right: 8.33333333%; } .col-lg-pull-0 { right: auto; } .col-lg-push-12 { left: 100%; } .col-lg-push-11 { left: 91.66666667%; } .col-lg-push-10 { left: 83.33333333%; } .col-lg-push-9 { left: 75%; } .col-lg-push-8 { left: 66.66666667%; } .col-lg-push-7 { left: 58.33333333%; } .col-lg-push-6 { left: 50%; } .col-lg-push-5 { left: 41.66666667%; } .col-lg-push-4 { left: 33.33333333%; } .col-lg-push-3 { left: 25%; } .col-lg-push-2 { left: 16.66666667%; } .col-lg-push-1 { left: 8.33333333%; } .col-lg-push-0 { left: auto; } .col-lg-offset-12 { margin-left: 100%; } .col-lg-offset-11 { margin-left: 91.66666667%; } .col-lg-offset-10 { margin-left: 83.33333333%; } .col-lg-offset-9 { margin-left: 75%; } .col-lg-offset-8 { margin-left: 66.66666667%; } .col-lg-offset-7 { margin-left: 58.33333333%; } .col-lg-offset-6 { margin-left: 50%; } .col-lg-offset-5 { margin-left: 41.66666667%; } .col-lg-offset-4 { margin-left: 33.33333333%; } .col-lg-offset-3 { margin-left: 25%; } .col-lg-offset-2 { margin-left: 16.66666667%; } .col-lg-offset-1 { margin-left: 8.33333333%; } .col-lg-offset-0 { margin-left: 0%; } } table { background-color: transparent; } caption { padding-top: 8px; padding-bottom: 8px; color: #aea79f; text-align: left; } th { text-align: left; } .table { width: 100%; max-width: 100%; margin-bottom: 20px; } .table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td { padding: 8px; line-height: 1.42857143; vertical-align: top; border-top: 1px solid #dddddd; } .table > thead > tr > th { vertical-align: bottom; border-bottom: 2px solid #dddddd; } .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > td { border-top: 0; } .table > tbody + tbody { border-top: 2px solid #dddddd; } .table .table { background-color: #ffffff; } .table-condensed > thead > tr > th, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > td { padding: 5px; } .table-bordered { border: 1px solid #dddddd; } .table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td { border: 1px solid #dddddd; } .table-bordered > thead > tr > th, .table-bordered > thead > tr > td { border-bottom-width: 2px; } .table-striped > tbody > tr:nth-of-type(odd) { background-color: #f9f9f9; } .table-hover > tbody > tr:hover { background-color: #f5f5f5; } table col[class*="col-"] { position: static; float: none; display: table-column; } table td[class*="col-"], table th[class*="col-"] { position: static; float: none; display: table-cell; } .table > thead > tr > td.active, .table > tbody > tr > td.active, .table > tfoot > tr > td.active, .table > thead > tr > th.active, .table > tbody > tr > th.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > tbody > tr.active > td, .table > tfoot > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr.active > th, .table > tfoot > tr.active > th { background-color: #f5f5f5; } .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th { background-color: #e8e8e8; } .table > thead > tr > td.success, .table > tbody > tr > td.success, .table > tfoot > tr > td.success, .table > thead > tr > th.success, .table > tbody > tr > th.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > tbody > tr.success > td, .table > tfoot > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr.success > th, .table > tfoot > tr.success > th { background-color: #dff0d8; } .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th { background-color: #d0e9c6; } .table > thead > tr > td.info, .table > tbody > tr > td.info, .table > tfoot > tr > td.info, .table > thead > tr > th.info, .table > tbody > tr > th.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > tbody > tr.info > td, .table > tfoot > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr.info > th, .table > tfoot > tr.info > th { background-color: #d9edf7; } .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th { background-color: #c4e3f3; } .table > thead > tr > td.warning, .table > tbody > tr > td.warning, .table > tfoot > tr > td.warning, .table > thead > tr > th.warning, .table > tbody > tr > th.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > tbody > tr.warning > td, .table > tfoot > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr.warning > th, .table > tfoot > tr.warning > th { background-color: #fcf8e3; } .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th { background-color: #faf2cc; } .table > thead > tr > td.danger, .table > tbody > tr > td.danger, .table > tfoot > tr > td.danger, .table > thead > tr > th.danger, .table > tbody > tr > th.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > tbody > tr.danger > td, .table > tfoot > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr.danger > th, .table > tfoot > tr.danger > th { background-color: #f2dede; } .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th { background-color: #ebcccc; } .table-responsive { overflow-x: auto; min-height: 0.01%; } @media screen and (max-width: 767px) { .table-responsive { width: 100%; margin-bottom: 15px; overflow-y: hidden; -ms-overflow-style: -ms-autohiding-scrollbar; border: 1px solid #dddddd; } .table-responsive > .table { margin-bottom: 0; } .table-responsive > .table > thead > tr > th, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > td { white-space: nowrap; } .table-responsive > .table-bordered { border: 0; } .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; } } fieldset { padding: 0; margin: 0; border: 0; min-width: 0; } legend { display: block; width: 100%; padding: 0; margin-bottom: 20px; font-size: 21px; line-height: inherit; color: #333333; border: 0; border-bottom: 1px solid #e5e5e5; } label { display: inline-block; max-width: 100%; margin-bottom: 5px; font-weight: bold; } input[type="search"] { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } input[type="radio"], input[type="checkbox"] { margin: 4px 0 0; margin-top: 1px \9; line-height: normal; } input[type="file"] { display: block; } input[type="range"] { display: block; width: 100%; } select[multiple], select[size] { height: auto; } input[type="file"]:focus, input[type="radio"]:focus, input[type="checkbox"]:focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } output { display: block; padding-top: 9px; font-size: 14px; line-height: 1.42857143; color: #333333; } .form-control { display: block; width: 100%; height: 38px; padding: 8px 12px; font-size: 14px; line-height: 1.42857143; color: #333333; background-color: #ffffff; background-image: none; border: 1px solid #cccccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .form-control:focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); } .form-control::-moz-placeholder { color: #aea79f; opacity: 1; } .form-control:-ms-input-placeholder { color: #aea79f; } .form-control::-webkit-input-placeholder { color: #aea79f; } .form-control::-ms-expand { border: 0; background-color: transparent; } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { background-color: #eeeeee; opacity: 1; } .form-control[disabled], fieldset[disabled] .form-control { cursor: not-allowed; } textarea.form-control { height: auto; } input[type="search"] { -webkit-appearance: none; } @media screen and (-webkit-min-device-pixel-ratio: 0) { input[type="date"].form-control, input[type="time"].form-control, input[type="datetime-local"].form-control, input[type="month"].form-control { line-height: 38px; } input[type="date"].input-sm, input[type="time"].input-sm, input[type="datetime-local"].input-sm, input[type="month"].input-sm, .input-group-sm input[type="date"], .input-group-sm input[type="time"], .input-group-sm input[type="datetime-local"], .input-group-sm input[type="month"] { line-height: 30px; } input[type="date"].input-lg, input[type="time"].input-lg, input[type="datetime-local"].input-lg, input[type="month"].input-lg, .input-group-lg input[type="date"], .input-group-lg input[type="time"], .input-group-lg input[type="datetime-local"], .input-group-lg input[type="month"] { line-height: 54px; } } .form-group { margin-bottom: 15px; } .radio, .checkbox { position: relative; display: block; margin-top: 10px; margin-bottom: 10px; } .radio label, .checkbox label { min-height: 20px; padding-left: 20px; margin-bottom: 0; font-weight: normal; cursor: pointer; } .radio input[type="radio"], .radio-inline input[type="radio"], .checkbox input[type="checkbox"], .checkbox-inline input[type="checkbox"] { position: absolute; margin-left: -20px; margin-top: 4px \9; } .radio + .radio, .checkbox + .checkbox { margin-top: -5px; } .radio-inline, .checkbox-inline { position: relative; display: inline-block; padding-left: 20px; margin-bottom: 0; vertical-align: middle; font-weight: normal; cursor: pointer; } .radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline { margin-top: 0; margin-left: 10px; } input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].disabled, input[type="checkbox"].disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] { cursor: not-allowed; } .radio-inline.disabled, .checkbox-inline.disabled, fieldset[disabled] .radio-inline, fieldset[disabled] .checkbox-inline { cursor: not-allowed; } .radio.disabled label, .checkbox.disabled label, fieldset[disabled] .radio label, fieldset[disabled] .checkbox label { cursor: not-allowed; } .form-control-static { padding-top: 9px; padding-bottom: 9px; margin-bottom: 0; min-height: 34px; } .form-control-static.input-lg, .form-control-static.input-sm { padding-left: 0; padding-right: 0; } .input-sm { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-sm { height: 30px; line-height: 30px; } textarea.input-sm, select[multiple].input-sm { height: auto; } .form-group-sm .form-control { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .form-group-sm select.form-control { height: 30px; line-height: 30px; } .form-group-sm textarea.form-control, .form-group-sm select[multiple].form-control { height: auto; } .form-group-sm .form-control-static { height: 30px; min-height: 32px; padding: 6px 10px; font-size: 12px; line-height: 1.5; } .input-lg { height: 54px; padding: 14px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } select.input-lg { height: 54px; line-height: 54px; } textarea.input-lg, select[multiple].input-lg { height: auto; } .form-group-lg .form-control { height: 54px; padding: 14px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .form-group-lg select.form-control { height: 54px; line-height: 54px; } .form-group-lg textarea.form-control, .form-group-lg select[multiple].form-control { height: auto; } .form-group-lg .form-control-static { height: 54px; min-height: 38px; padding: 15px 16px; font-size: 18px; line-height: 1.3333333; } .has-feedback { position: relative; } .has-feedback .form-control { padding-right: 47.5px; } .form-control-feedback { position: absolute; top: 0; right: 0; z-index: 2; display: block; width: 38px; height: 38px; line-height: 38px; text-align: center; pointer-events: none; } .input-lg + .form-control-feedback, .input-group-lg + .form-control-feedback, .form-group-lg .form-control + .form-control-feedback { width: 54px; height: 54px; line-height: 54px; } .input-sm + .form-control-feedback, .input-group-sm + .form-control-feedback, .form-group-sm .form-control + .form-control-feedback { width: 30px; height: 30px; line-height: 30px; } .has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label { color: #468847; } .has-success .form-control { border-color: #468847; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-success .form-control:focus { border-color: #356635; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b; } .has-success .input-group-addon { color: #468847; border-color: #468847; background-color: #dff0d8; } .has-success .form-control-feedback { color: #468847; } .has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label { color: #c09853; } .has-warning .form-control { border-color: #c09853; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-warning .form-control:focus { border-color: #a47e3c; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e; } .has-warning .input-group-addon { color: #c09853; border-color: #c09853; background-color: #fcf8e3; } .has-warning .form-control-feedback { color: #c09853; } .has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label { color: #b94a48; } .has-error .form-control { border-color: #b94a48; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); } .has-error .form-control:focus { border-color: #953b39; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392; } .has-error .input-group-addon { color: #b94a48; border-color: #b94a48; background-color: #f2dede; } .has-error .form-control-feedback { color: #b94a48; } .has-feedback label ~ .form-control-feedback { top: 25px; } .has-feedback label.sr-only ~ .form-control-feedback { top: 0; } .help-block { display: block; margin-top: 5px; margin-bottom: 10px; color: #737373; } @media (min-width: 768px) { .form-inline .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } .form-inline .form-control-static { display: inline-block; } .form-inline .input-group { display: inline-table; vertical-align: middle; } .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control { width: auto; } .form-inline .input-group > .form-control { width: 100%; } .form-inline .control-label { margin-bottom: 0; vertical-align: middle; } .form-inline .radio, .form-inline .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .form-inline .radio label, .form-inline .checkbox label { padding-left: 0; } .form-inline .radio input[type="radio"], .form-inline .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .form-inline .has-feedback .form-control-feedback { top: 0; } } .form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline { margin-top: 0; margin-bottom: 0; padding-top: 9px; } .form-horizontal .radio, .form-horizontal .checkbox { min-height: 29px; } .form-horizontal .form-group { margin-left: -15px; margin-right: -15px; } @media (min-width: 768px) { .form-horizontal .control-label { text-align: right; margin-bottom: 0; padding-top: 9px; } } .form-horizontal .has-feedback .form-control-feedback { right: 15px; } @media (min-width: 768px) { .form-horizontal .form-group-lg .control-label { padding-top: 15px; font-size: 18px; } } @media (min-width: 768px) { .form-horizontal .form-group-sm .control-label { padding-top: 6px; font-size: 12px; } } .btn { display: inline-block; margin-bottom: 0; font-weight: normal; text-align: center; vertical-align: middle; touch-action: manipulation; cursor: pointer; background-image: none; border: 1px solid transparent; white-space: nowrap; padding: 8px 12px; font-size: 14px; line-height: 1.42857143; border-radius: 4px; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus { outline: thin dotted; outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px; } .btn:hover, .btn:focus, .btn.focus { color: #ffffff; text-decoration: none; } .btn:active, .btn.active { outline: 0; background-image: none; -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .btn.disabled, .btn[disabled], fieldset[disabled] .btn { cursor: not-allowed; opacity: 0.65; filter: alpha(opacity=65); -webkit-box-shadow: none; box-shadow: none; } a.btn.disabled, fieldset[disabled] a.btn { pointer-events: none; } .btn-default { color: #ffffff; background-color: #aea79f; border-color: #aea79f; } .btn-default:focus, .btn-default.focus { color: #ffffff; background-color: #978e83; border-color: #6f675e; } .btn-default:hover { color: #ffffff; background-color: #978e83; border-color: #92897e; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { color: #ffffff; background-color: #978e83; border-color: #92897e; } .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus { color: #ffffff; background-color: #867c71; border-color: #6f675e; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background-image: none; } .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus { background-color: #aea79f; border-color: #aea79f; } .btn-default .badge { color: #aea79f; background-color: #ffffff; } .btn-primary { color: #ffffff; background-color: #dd4814; border-color: #dd4814; } .btn-primary:focus, .btn-primary.focus { color: #ffffff; background-color: #ae3910; border-color: #682209; } .btn-primary:hover { color: #ffffff; background-color: #ae3910; border-color: #a5360f; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { color: #ffffff; background-color: #ae3910; border-color: #a5360f; } .btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus { color: #ffffff; background-color: #8d2e0d; border-color: #682209; } .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background-image: none; } .btn-primary.disabled:hover, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary:hover, .btn-primary.disabled:focus, .btn-primary[disabled]:focus, fieldset[disabled] .btn-primary:focus, .btn-primary.disabled.focus, .btn-primary[disabled].focus, fieldset[disabled] .btn-primary.focus { background-color: #dd4814; border-color: #dd4814; } .btn-primary .badge { color: #dd4814; background-color: #ffffff; } .btn-success { color: #ffffff; background-color: #38b44a; border-color: #38b44a; } .btn-success:focus, .btn-success.focus { color: #ffffff; background-color: #2c8d3a; border-color: #1a5322; } .btn-success:hover { color: #ffffff; background-color: #2c8d3a; border-color: #298537; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { color: #ffffff; background-color: #2c8d3a; border-color: #298537; } .btn-success:active:hover, .btn-success.active:hover, .open > .dropdown-toggle.btn-success:hover, .btn-success:active:focus, .btn-success.active:focus, .open > .dropdown-toggle.btn-success:focus, .btn-success:active.focus, .btn-success.active.focus, .open > .dropdown-toggle.btn-success.focus { color: #ffffff; background-color: #23722f; border-color: #1a5322; } .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { background-image: none; } .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus { background-color: #38b44a; border-color: #38b44a; } .btn-success .badge { color: #38b44a; background-color: #ffffff; } .btn-info { color: #ffffff; background-color: #772953; border-color: #772953; } .btn-info:focus, .btn-info.focus { color: #ffffff; background-color: #511c39; border-color: #180811; } .btn-info:hover { color: #ffffff; background-color: #511c39; border-color: #491933; } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { color: #ffffff; background-color: #511c39; border-color: #491933; } .btn-info:active:hover, .btn-info.active:hover, .open > .dropdown-toggle.btn-info:hover, .btn-info:active:focus, .btn-info.active:focus, .open > .dropdown-toggle.btn-info:focus, .btn-info:active.focus, .btn-info.active.focus, .open > .dropdown-toggle.btn-info.focus { color: #ffffff; background-color: #371326; border-color: #180811; } .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { background-image: none; } .btn-info.disabled:hover, .btn-info[disabled]:hover, fieldset[disabled] .btn-info:hover, .btn-info.disabled:focus, .btn-info[disabled]:focus, fieldset[disabled] .btn-info:focus, .btn-info.disabled.focus, .btn-info[disabled].focus, fieldset[disabled] .btn-info.focus { background-color: #772953; border-color: #772953; } .btn-info .badge { color: #772953; background-color: #ffffff; } .btn-warning { color: #ffffff; background-color: #efb73e; border-color: #efb73e; } .btn-warning:focus, .btn-warning.focus { color: #ffffff; background-color: #e7a413; border-color: #a0720d; } .btn-warning:hover { color: #ffffff; background-color: #e7a413; border-color: #dd9d12; } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { color: #ffffff; background-color: #e7a413; border-color: #dd9d12; } .btn-warning:active:hover, .btn-warning.active:hover, .open > .dropdown-toggle.btn-warning:hover, .btn-warning:active:focus, .btn-warning.active:focus, .open > .dropdown-toggle.btn-warning:focus, .btn-warning:active.focus, .btn-warning.active.focus, .open > .dropdown-toggle.btn-warning.focus { color: #ffffff; background-color: #c68c10; border-color: #a0720d; } .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { background-image: none; } .btn-warning.disabled:hover, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning:hover, .btn-warning.disabled:focus, .btn-warning[disabled]:focus, fieldset[disabled] .btn-warning:focus, .btn-warning.disabled.focus, .btn-warning[disabled].focus, fieldset[disabled] .btn-warning.focus { background-color: #efb73e; border-color: #efb73e; } .btn-warning .badge { color: #efb73e; background-color: #ffffff; } .btn-danger { color: #ffffff; background-color: #df382c; border-color: #df382c; } .btn-danger:focus, .btn-danger.focus { color: #ffffff; background-color: #bc271c; border-color: #791912; } .btn-danger:hover { color: #ffffff; background-color: #bc271c; border-color: #b3251b; } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { color: #ffffff; background-color: #bc271c; border-color: #b3251b; } .btn-danger:active:hover, .btn-danger.active:hover, .open > .dropdown-toggle.btn-danger:hover, .btn-danger:active:focus, .btn-danger.active:focus, .open > .dropdown-toggle.btn-danger:focus, .btn-danger:active.focus, .btn-danger.active.focus, .open > .dropdown-toggle.btn-danger.focus { color: #ffffff; background-color: #9d2118; border-color: #791912; } .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { background-image: none; } .btn-danger.disabled:hover, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger:hover, .btn-danger.disabled:focus, .btn-danger[disabled]:focus, fieldset[disabled] .btn-danger:focus, .btn-danger.disabled.focus, .btn-danger[disabled].focus, fieldset[disabled] .btn-danger.focus { background-color: #df382c; border-color: #df382c; } .btn-danger .badge { color: #df382c; background-color: #ffffff; } .btn-link { color: #dd4814; font-weight: normal; border-radius: 0; } .btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link { background-color: transparent; -webkit-box-shadow: none; box-shadow: none; } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { border-color: transparent; } .btn-link:hover, .btn-link:focus { color: #97310e; text-decoration: underline; background-color: transparent; } .btn-link[disabled]:hover, fieldset[disabled] .btn-link:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:focus { color: #aea79f; text-decoration: none; } .btn-lg, .btn-group-lg > .btn { padding: 14px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } .btn-sm, .btn-group-sm > .btn { padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-xs, .btn-group-xs > .btn { padding: 1px 5px; font-size: 12px; line-height: 1.5; border-radius: 3px; } .btn-block { display: block; width: 100%; } .btn-block + .btn-block { margin-top: 5px; } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } .fade { opacity: 0; -webkit-transition: opacity 0.15s linear; -o-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } .fade.in { opacity: 1; } .collapse { display: none; } .collapse.in { display: block; } tr.collapse.in { display: table-row; } tbody.collapse.in { display: table-row-group; } .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition-property: height, visibility; transition-property: height, visibility; -webkit-transition-duration: 0.35s; transition-duration: 0.35s; -webkit-transition-timing-function: ease; transition-timing-function: ease; } .caret { display: inline-block; width: 0; height: 0; margin-left: 2px; vertical-align: middle; border-top: 4px dashed; border-top: 4px solid \9; border-right: 4px solid transparent; border-left: 4px solid transparent; } .dropup, .dropdown { position: relative; } .dropdown-toggle:focus { outline: 0; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; list-style: none; font-size: 14px; text-align: left; background-color: #ffffff; border: 1px solid #cccccc; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 4px; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); background-clip: padding-box; } .dropdown-menu.pull-right { right: 0; left: auto; } .dropdown-menu .divider { height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; } .dropdown-menu > li > a { display: block; padding: 3px 20px; clear: both; font-weight: normal; line-height: 1.42857143; color: #333333; white-space: nowrap; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { text-decoration: none; color: #ffffff; background-color: #dd4814; } .dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus { color: #ffffff; text-decoration: none; outline: 0; background-color: #dd4814; } .dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { color: #aea79f; } .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus { text-decoration: none; background-color: transparent; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); cursor: not-allowed; } .open > .dropdown-menu { display: block; } .open > a { outline: 0; } .dropdown-menu-right { left: auto; right: 0; } .dropdown-menu-left { left: 0; right: auto; } .dropdown-header { display: block; padding: 3px 20px; font-size: 12px; line-height: 1.42857143; color: #aea79f; white-space: nowrap; } .dropdown-backdrop { position: fixed; left: 0; right: 0; bottom: 0; top: 0; z-index: 990; } .pull-right > .dropdown-menu { right: 0; left: auto; } .dropup .caret, .navbar-fixed-bottom .dropdown .caret { border-top: 0; border-bottom: 4px dashed; border-bottom: 4px solid \9; content: ""; } .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { top: auto; bottom: 100%; margin-bottom: 2px; } @media (min-width: 768px) { .navbar-right .dropdown-menu { left: auto; right: 0; } .navbar-right .dropdown-menu-left { left: 0; right: auto; } } .btn-group, .btn-group-vertical { position: relative; display: inline-block; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; float: left; } .btn-group > .btn:hover, .btn-group-vertical > .btn:hover, .btn-group > .btn:focus, .btn-group-vertical > .btn:focus, .btn-group > .btn:active, .btn-group-vertical > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn.active { z-index: 2; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group { margin-left: -1px; } .btn-toolbar { margin-left: -5px; } .btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group { float: left; } .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group { margin-left: 5px; } .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-radius: 0; } .btn-group > .btn:first-child { margin-left: 0; } .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { border-bottom-right-radius: 0; border-top-right-radius: 0; } .btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) { border-bottom-left-radius: 0; border-top-left-radius: 0; } .btn-group > .btn-group { float: left; } .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-top-right-radius: 0; } .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { border-bottom-left-radius: 0; border-top-left-radius: 0; } .btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle { outline: 0; } .btn-group > .btn + .dropdown-toggle { padding-left: 8px; padding-right: 8px; } .btn-group > .btn-lg + .dropdown-toggle { padding-left: 12px; padding-right: 12px; } .btn-group.open .dropdown-toggle { -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); } .btn-group.open .dropdown-toggle.btn-link { -webkit-box-shadow: none; box-shadow: none; } .btn .caret { margin-left: 0; } .btn-lg .caret { border-width: 5px 5px 0; border-bottom-width: 0; } .dropup .btn-lg .caret { border-width: 0 5px 5px; } .btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn { display: block; float: none; width: 100%; max-width: 100%; } .btn-group-vertical > .btn-group > .btn { float: none; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: -1px; margin-left: 0; } .btn-group-vertical > .btn:not(:first-child):not(:last-child) { border-radius: 0; } .btn-group-vertical > .btn:first-child:not(:last-child) { border-top-right-radius: 4px; border-top-left-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn:last-child:not(:first-child) { border-top-right-radius: 0; border-top-left-radius: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { border-radius: 0; } .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { border-top-right-radius: 0; border-top-left-radius: 0; } .btn-group-justified { display: table; width: 100%; table-layout: fixed; border-collapse: separate; } .btn-group-justified > .btn, .btn-group-justified > .btn-group { float: none; display: table-cell; width: 1%; } .btn-group-justified > .btn-group .btn { width: 100%; } .btn-group-justified > .btn-group .dropdown-menu { left: auto; } [data-toggle="buttons"] > .btn input[type="radio"], [data-toggle="buttons"] > .btn-group > .btn input[type="radio"], [data-toggle="buttons"] > .btn input[type="checkbox"], [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none; } .input-group { position: relative; display: table; border-collapse: separate; } .input-group[class*="col-"] { float: none; padding-left: 0; padding-right: 0; } .input-group .form-control { position: relative; z-index: 2; float: left; width: 100%; margin-bottom: 0; } .input-group .form-control:focus { z-index: 3; } .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn { height: 54px; padding: 14px 16px; font-size: 18px; line-height: 1.3333333; border-radius: 6px; } select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn { height: 54px; line-height: 54px; } textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn, select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn { height: auto; } .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn { height: 30px; padding: 5px 10px; font-size: 12px; line-height: 1.5; border-radius: 3px; } select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn { height: 30px; line-height: 30px; } textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn, select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn { height: auto; } .input-group-addon, .input-group-btn, .input-group .form-control { display: table-cell; } .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) { border-radius: 0; } .input-group-addon, .input-group-btn { width: 1%; white-space: nowrap; vertical-align: middle; } .input-group-addon { padding: 8px 12px; font-size: 14px; font-weight: normal; line-height: 1; color: #333333; text-align: center; background-color: #eeeeee; border: 1px solid #cccccc; border-radius: 4px; } .input-group-addon.input-sm { padding: 5px 10px; font-size: 12px; border-radius: 3px; } .input-group-addon.input-lg { padding: 14px 16px; font-size: 18px; border-radius: 6px; } .input-group-addon input[type="radio"], .input-group-addon input[type="checkbox"] { margin-top: 0; } .input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn { border-bottom-right-radius: 0; border-top-right-radius: 0; } .input-group-addon:first-child { border-right: 0; } .input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn { border-bottom-left-radius: 0; border-top-left-radius: 0; } .input-group-addon:last-child { border-left: 0; } .input-group-btn { position: relative; font-size: 0; white-space: nowrap; } .input-group-btn > .btn { position: relative; } .input-group-btn > .btn + .btn { margin-left: -1px; } .input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active { z-index: 2; } .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group { margin-right: -1px; } .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group { z-index: 2; margin-left: -1px; } .nav { margin-bottom: 0; padding-left: 0; list-style: none; } .nav > li { position: relative; display: block; } .nav > li > a { position: relative; display: block; padding: 10px 15px; } .nav > li > a:hover, .nav > li > a:focus { text-decoration: none; background-color: #eeeeee; } .nav > li.disabled > a { color: #aea79f; } .nav > li.disabled > a:hover, .nav > li.disabled > a:focus { color: #aea79f; text-decoration: none; background-color: transparent; cursor: not-allowed; } .nav .open > a, .nav .open > a:hover, .nav .open > a:focus { background-color: #eeeeee; border-color: #dd4814; } .nav .nav-divider { height: 1px; margin: 9px 0; overflow: hidden; background-color: #e5e5e5; } .nav > li > a > img { max-width: none; } .nav-tabs { border-bottom: 1px solid #dddddd; } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li > a { margin-right: 2px; line-height: 1.42857143; border: 1px solid transparent; border-radius: 4px 4px 0 0; } .nav-tabs > li > a:hover { border-color: #eeeeee #eeeeee #dddddd; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { color: #777777; background-color: #ffffff; border: 1px solid #dddddd; border-bottom-color: transparent; cursor: default; } .nav-tabs.nav-justified { width: 100%; border-bottom: 0; } .nav-tabs.nav-justified > li { float: none; } .nav-tabs.nav-justified > li > a { text-align: center; margin-bottom: 5px; } .nav-tabs.nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-tabs.nav-justified > li { display: table-cell; width: 1%; } .nav-tabs.nav-justified > li > a { margin-bottom: 0; } } .nav-tabs.nav-justified > li > a { margin-right: 0; border-radius: 4px; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border: 1px solid #dddddd; } @media (min-width: 768px) { .nav-tabs.nav-justified > li > a { border-bottom: 1px solid #dddddd; border-radius: 4px 4px 0 0; } .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:focus { border-bottom-color: #ffffff; } } .nav-pills > li { float: left; } .nav-pills > li > a { border-radius: 4px; } .nav-pills > li + li { margin-left: 2px; } .nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus { color: #ffffff; background-color: #dd4814; } .nav-stacked > li { float: none; } .nav-stacked > li + li { margin-top: 2px; margin-left: 0; } .nav-justified { width: 100%; } .nav-justified > li { float: none; } .nav-justified > li > a { text-align: center; margin-bottom: 5px; } .nav-justified > .dropdown .dropdown-menu { top: auto; left: auto; } @media (min-width: 768px) { .nav-justified > li { display: table-cell; width: 1%; } .nav-justified > li > a { margin-bottom: 0; } } .nav-tabs-justified { border-bottom: 0; } .nav-tabs-justified > li > a { margin-right: 0; border-radius: 4px; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border: 1px solid #dddddd; } @media (min-width: 768px) { .nav-tabs-justified > li > a { border-bottom: 1px solid #dddddd; border-radius: 4px 4px 0 0; } .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus { border-bottom-color: #ffffff; } } .tab-content > .tab-pane { display: none; } .tab-content > .active { display: block; } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-right-radius: 0; border-top-left-radius: 0; } .navbar { position: relative; min-height: 50px; margin-bottom: 20px; border: 1px solid transparent; } @media (min-width: 768px) { .navbar { border-radius: 4px; } } @media (min-width: 768px) { .navbar-header { float: left; } } .navbar-collapse { overflow-x: visible; padding-right: 15px; padding-left: 15px; border-top: 1px solid transparent; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); -webkit-overflow-scrolling: touch; } .navbar-collapse.in { overflow-y: auto; } @media (min-width: 768px) { .navbar-collapse { width: auto; border-top: 0; box-shadow: none; } .navbar-collapse.collapse { display: block !important; height: auto !important; padding-bottom: 0; overflow: visible !important; } .navbar-collapse.in { overflow-y: visible; } .navbar-fixed-top .navbar-collapse, .navbar-static-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { padding-left: 0; padding-right: 0; } } .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 340px; } @media (max-device-width: 480px) and (orientation: landscape) { .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse { max-height: 200px; } } .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: -15px; margin-left: -15px; } @media (min-width: 768px) { .container > .navbar-header, .container-fluid > .navbar-header, .container > .navbar-collapse, .container-fluid > .navbar-collapse { margin-right: 0; margin-left: 0; } } .navbar-static-top { z-index: 1000; border-width: 0 0 1px; } @media (min-width: 768px) { .navbar-static-top { border-radius: 0; } } .navbar-fixed-top, .navbar-fixed-bottom { position: fixed; right: 0; left: 0; z-index: 1030; } @media (min-width: 768px) { .navbar-fixed-top, .navbar-fixed-bottom { border-radius: 0; } } .navbar-fixed-top { top: 0; border-width: 0 0 1px; } .navbar-fixed-bottom { bottom: 0; margin-bottom: 0; border-width: 1px 0 0; } .navbar-brand { float: left; padding: 15px 15px; font-size: 18px; line-height: 20px; height: 50px; } .navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } .navbar-brand > img { display: block; } @media (min-width: 768px) { .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand { margin-left: -15px; } } .navbar-toggle { position: relative; float: right; margin-right: 15px; padding: 9px 10px; margin-top: 8px; margin-bottom: 8px; background-color: transparent; background-image: none; border: 1px solid transparent; border-radius: 4px; } .navbar-toggle:focus { outline: 0; } .navbar-toggle .icon-bar { display: block; width: 22px; height: 2px; border-radius: 1px; } .navbar-toggle .icon-bar + .icon-bar { margin-top: 4px; } @media (min-width: 768px) { .navbar-toggle { display: none; } } .navbar-nav { margin: 7.5px -15px; } .navbar-nav > li > a { padding-top: 10px; padding-bottom: 10px; line-height: 20px; } @media (max-width: 767px) { .navbar-nav .open .dropdown-menu { position: static; float: none; width: auto; margin-top: 0; background-color: transparent; border: 0; box-shadow: none; } .navbar-nav .open .dropdown-menu > li > a, .navbar-nav .open .dropdown-menu .dropdown-header { padding: 5px 15px 5px 25px; } .navbar-nav .open .dropdown-menu > li > a { line-height: 20px; } .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-nav .open .dropdown-menu > li > a:focus { background-image: none; } } @media (min-width: 768px) { .navbar-nav { float: left; margin: 0; } .navbar-nav > li { float: left; } .navbar-nav > li > a { padding-top: 15px; padding-bottom: 15px; } } .navbar-form { margin-left: -15px; margin-right: -15px; padding: 10px 15px; border-top: 1px solid transparent; border-bottom: 1px solid transparent; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); margin-top: 6px; margin-bottom: 6px; } @media (min-width: 768px) { .navbar-form .form-group { display: inline-block; margin-bottom: 0; vertical-align: middle; } .navbar-form .form-control { display: inline-block; width: auto; vertical-align: middle; } .navbar-form .form-control-static { display: inline-block; } .navbar-form .input-group { display: inline-table; vertical-align: middle; } .navbar-form .input-group .input-group-addon, .navbar-form .input-group .input-group-btn, .navbar-form .input-group .form-control { width: auto; } .navbar-form .input-group > .form-control { width: 100%; } .navbar-form .control-label { margin-bottom: 0; vertical-align: middle; } .navbar-form .radio, .navbar-form .checkbox { display: inline-block; margin-top: 0; margin-bottom: 0; vertical-align: middle; } .navbar-form .radio label, .navbar-form .checkbox label { padding-left: 0; } .navbar-form .radio input[type="radio"], .navbar-form .checkbox input[type="checkbox"] { position: relative; margin-left: 0; } .navbar-form .has-feedback .form-control-feedback { top: 0; } } @media (max-width: 767px) { .navbar-form .form-group { margin-bottom: 5px; } .navbar-form .form-group:last-child { margin-bottom: 0; } } @media (min-width: 768px) { .navbar-form { width: auto; border: 0; margin-left: 0; margin-right: 0; padding-top: 0; padding-bottom: 0; -webkit-box-shadow: none; box-shadow: none; } } .navbar-nav > li > .dropdown-menu { margin-top: 0; border-top-right-radius: 0; border-top-left-radius: 0; } .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { margin-bottom: 0; border-top-right-radius: 4px; border-top-left-radius: 4px; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .navbar-btn { margin-top: 6px; margin-bottom: 6px; } .navbar-btn.btn-sm { margin-top: 10px; margin-bottom: 10px; } .navbar-btn.btn-xs { margin-top: 14px; margin-bottom: 14px; } .navbar-text { margin-top: 15px; margin-bottom: 15px; } @media (min-width: 768px) { .navbar-text { float: left; margin-left: 15px; margin-right: 15px; } } @media (min-width: 768px) { .navbar-left { float: left !important; } .navbar-right { float: right !important; margin-right: -15px; } .navbar-right ~ .navbar-right { margin-right: 0; } } .navbar-default { background-color: #dd4814; border-color: #bf3e11; } .navbar-default .navbar-brand { color: #ffffff; } .navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus { color: #ffffff; background-color: none; } .navbar-default .navbar-text { color: #ffffff; } .navbar-default .navbar-nav > li > a { color: #ffffff; } .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus { color: #ffffff; background-color: #97310e; } .navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus { color: #ffffff; background-color: #ae3910; } .navbar-default .navbar-nav > .disabled > a, .navbar-default .navbar-nav > .disabled > a:hover, .navbar-default .navbar-nav > .disabled > a:focus { color: #cccccc; background-color: transparent; } .navbar-default .navbar-toggle { border-color: #97310e; } .navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus { background-color: #97310e; } .navbar-default .navbar-toggle .icon-bar { background-color: #ffffff; } .navbar-default .navbar-collapse, .navbar-default .navbar-form { border-color: #bf3e11; } .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus { background-color: #ae3910; color: #ffffff; } @media (max-width: 767px) { .navbar-default .navbar-nav .open .dropdown-menu > li > a { color: #ffffff; } .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { color: #ffffff; background-color: #97310e; } .navbar-default .navbar-nav .open .dropdown-menu > .active > a, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { color: #ffffff; background-color: #ae3910; } .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #cccccc; background-color: transparent; } } .navbar-default .navbar-link { color: #ffffff; } .navbar-default .navbar-link:hover { color: #ffffff; } .navbar-default .btn-link { color: #ffffff; } .navbar-default .btn-link:hover, .navbar-default .btn-link:focus { color: #ffffff; } .navbar-default .btn-link[disabled]:hover, fieldset[disabled] .navbar-default .btn-link:hover, .navbar-default .btn-link[disabled]:focus, fieldset[disabled] .navbar-default .btn-link:focus { color: #cccccc; } .navbar-inverse { background-color: #772953; border-color: #511c39; } .navbar-inverse .navbar-brand { color: #ffffff; } .navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus { color: #ffffff; background-color: none; } .navbar-inverse .navbar-text { color: #ffffff; } .navbar-inverse .navbar-nav > li > a { color: #ffffff; } .navbar-inverse .navbar-nav > li > a:hover, .navbar-inverse .navbar-nav > li > a:focus { color: #ffffff; background-color: #3e152b; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { color: #ffffff; background-color: #511c39; } .navbar-inverse .navbar-nav > .disabled > a, .navbar-inverse .navbar-nav > .disabled > a:hover, .navbar-inverse .navbar-nav > .disabled > a:focus { color: #cccccc; background-color: transparent; } .navbar-inverse .navbar-toggle { border-color: #3e152b; } .navbar-inverse .navbar-toggle:hover, .navbar-inverse .navbar-toggle:focus { background-color: #3e152b; } .navbar-inverse .navbar-toggle .icon-bar { background-color: #ffffff; } .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { border-color: #5c2040; } .navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus { background-color: #511c39; color: #ffffff; } @media (max-width: 767px) { .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { border-color: #511c39; } .navbar-inverse .navbar-nav .open .dropdown-menu .divider { background-color: #511c39; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { color: #ffffff; } .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { color: #ffffff; background-color: #3e152b; } .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { color: #ffffff; background-color: #511c39; } .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { color: #cccccc; background-color: transparent; } } .navbar-inverse .navbar-link { color: #ffffff; } .navbar-inverse .navbar-link:hover { color: #ffffff; } .navbar-inverse .btn-link { color: #ffffff; } .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link:focus { color: #ffffff; } .navbar-inverse .btn-link[disabled]:hover, fieldset[disabled] .navbar-inverse .btn-link:hover, .navbar-inverse .btn-link[disabled]:focus, fieldset[disabled] .navbar-inverse .btn-link:focus { color: #cccccc; } .breadcrumb { padding: 8px 15px; margin-bottom: 20px; list-style: none; background-color: #f5f5f5; border-radius: 4px; } .breadcrumb > li { display: inline-block; } .breadcrumb > li + li:before { content: "/\00a0"; padding: 0 5px; color: #cccccc; } .breadcrumb > .active { color: #aea79f; } .pagination { display: inline-block; padding-left: 0; margin: 20px 0; border-radius: 4px; } .pagination > li { display: inline; } .pagination > li > a, .pagination > li > span { position: relative; float: left; padding: 8px 12px; line-height: 1.42857143; text-decoration: none; color: #dd4814; background-color: #ffffff; border: 1px solid #dddddd; margin-left: -1px; } .pagination > li:first-child > a, .pagination > li:first-child > span { margin-left: 0; border-bottom-left-radius: 4px; border-top-left-radius: 4px; } .pagination > li:last-child > a, .pagination > li:last-child > span { border-bottom-right-radius: 4px; border-top-right-radius: 4px; } .pagination > li > a:hover, .pagination > li > span:hover, .pagination > li > a:focus, .pagination > li > span:focus { z-index: 2; color: #97310e; background-color: #eeeeee; border-color: #dddddd; } .pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus { z-index: 3; color: #aea79f; background-color: #f5f5f5; border-color: #dddddd; cursor: default; } .pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus { color: #aea79f; background-color: #ffffff; border-color: #dddddd; cursor: not-allowed; } .pagination-lg > li > a, .pagination-lg > li > span { padding: 14px 16px; font-size: 18px; line-height: 1.3333333; } .pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span { border-bottom-left-radius: 6px; border-top-left-radius: 6px; } .pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span { border-bottom-right-radius: 6px; border-top-right-radius: 6px; } .pagination-sm > li > a, .pagination-sm > li > span { padding: 5px 10px; font-size: 12px; line-height: 1.5; } .pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span { border-bottom-left-radius: 3px; border-top-left-radius: 3px; } .pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span { border-bottom-right-radius: 3px; border-top-right-radius: 3px; } .pager { padding-left: 0; margin: 20px 0; list-style: none; text-align: center; } .pager li { display: inline; } .pager li > a, .pager li > span { display: inline-block; padding: 5px 14px; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 15px; } .pager li > a:hover, .pager li > a:focus { text-decoration: none; background-color: #eeeeee; } .pager .next > a, .pager .next > span { float: right; } .pager .previous > a, .pager .previous > span { float: left; } .pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span { color: #aea79f; background-color: #ffffff; cursor: not-allowed; } .label { display: inline; padding: .2em .6em .3em; font-size: 75%; font-weight: bold; line-height: 1; color: #ffffff; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: .25em; } a.label:hover, a.label:focus { color: #ffffff; text-decoration: none; cursor: pointer; } .label:empty { display: none; } .btn .label { position: relative; top: -1px; } .label-default { background-color: #aea79f; } .label-default[href]:hover, .label-default[href]:focus { background-color: #978e83; } .label-primary { background-color: #dd4814; } .label-primary[href]:hover, .label-primary[href]:focus { background-color: #ae3910; } .label-success { background-color: #38b44a; } .label-success[href]:hover, .label-success[href]:focus { background-color: #2c8d3a; } .label-info { background-color: #772953; } .label-info[href]:hover, .label-info[href]:focus { background-color: #511c39; } .label-warning { background-color: #efb73e; } .label-warning[href]:hover, .label-warning[href]:focus { background-color: #e7a413; } .label-danger { background-color: #df382c; } .label-danger[href]:hover, .label-danger[href]:focus { background-color: #bc271c; } .badge { display: inline-block; min-width: 10px; padding: 3px 7px; font-size: 12px; font-weight: bold; color: #ffffff; line-height: 1; vertical-align: middle; white-space: nowrap; text-align: center; background-color: #aea79f; border-radius: 10px; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .btn-xs .badge, .btn-group-xs > .btn .badge { top: 0; padding: 1px 5px; } a.badge:hover, a.badge:focus { color: #ffffff; text-decoration: none; cursor: pointer; } .list-group-item.active > .badge, .nav-pills > .active > a > .badge { color: #dd4814; background-color: #ffffff; } .list-group-item > .badge { float: right; } .list-group-item > .badge + .badge { margin-right: 5px; } .nav-pills > li > a > .badge { margin-left: 3px; } .jumbotron { padding-top: 30px; padding-bottom: 30px; margin-bottom: 30px; color: inherit; background-color: #eeeeee; } .jumbotron h1, .jumbotron .h1 { color: inherit; } .jumbotron p { margin-bottom: 15px; font-size: 21px; font-weight: 200; } .jumbotron > hr { border-top-color: #d5d5d5; } .container .jumbotron, .container-fluid .jumbotron { border-radius: 6px; padding-left: 15px; padding-right: 15px; } .jumbotron .container { max-width: 100%; } @media screen and (min-width: 768px) { .jumbotron { padding-top: 48px; padding-bottom: 48px; } .container .jumbotron, .container-fluid .jumbotron { padding-left: 60px; padding-right: 60px; } .jumbotron h1, .jumbotron .h1 { font-size: 63px; } } .thumbnail { display: block; padding: 4px; margin-bottom: 20px; line-height: 1.42857143; background-color: #ffffff; border: 1px solid #dddddd; border-radius: 4px; -webkit-transition: border 0.2s ease-in-out; -o-transition: border 0.2s ease-in-out; transition: border 0.2s ease-in-out; } .thumbnail > img, .thumbnail a > img { margin-left: auto; margin-right: auto; } a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active { border-color: #dd4814; } .thumbnail .caption { padding: 9px; color: #333333; } .alert { padding: 15px; margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; } .alert h4 { margin-top: 0; color: inherit; } .alert .alert-link { font-weight: bold; } .alert > p, .alert > ul { margin-bottom: 0; } .alert > p + p { margin-top: 5px; } .alert-dismissable, .alert-dismissible { padding-right: 35px; } .alert-dismissable .close, .alert-dismissible .close { position: relative; top: -2px; right: -21px; color: inherit; } .alert-success { background-color: #dff0d8; border-color: #d6e9c6; color: #468847; } .alert-success hr { border-top-color: #c9e2b3; } .alert-success .alert-link { color: #356635; } .alert-info { background-color: #d9edf7; border-color: #bce8f1; color: #3a87ad; } .alert-info hr { border-top-color: #a6e1ec; } .alert-info .alert-link { color: #2d6987; } .alert-warning { background-color: #fcf8e3; border-color: #fbeed5; color: #c09853; } .alert-warning hr { border-top-color: #f8e5be; } .alert-warning .alert-link { color: #a47e3c; } .alert-danger { background-color: #f2dede; border-color: #eed3d7; color: #b94a48; } .alert-danger hr { border-top-color: #e6c1c7; } .alert-danger .alert-link { color: #953b39; } @-webkit-keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } @keyframes progress-bar-stripes { from { background-position: 40px 0; } to { background-position: 0 0; } } .progress { overflow: hidden; height: 20px; margin-bottom: 20px; background-color: #f5f5f5; border-radius: 4px; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); } .progress-bar { float: left; width: 0%; height: 100%; font-size: 12px; line-height: 20px; color: #ffffff; text-align: center; background-color: #dd4814; -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15); -webkit-transition: width 0.6s ease; -o-transition: width 0.6s ease; transition: width 0.6s ease; } .progress-striped .progress-bar, .progress-bar-striped { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-size: 40px 40px; } .progress.active .progress-bar, .progress-bar.active { -webkit-animation: progress-bar-stripes 2s linear infinite; -o-animation: progress-bar-stripes 2s linear infinite; animation: progress-bar-stripes 2s linear infinite; } .progress-bar-success { background-color: #38b44a; } .progress-striped .progress-bar-success { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-bar-info { background-color: #772953; } .progress-striped .progress-bar-info { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-bar-warning { background-color: #efb73e; } .progress-striped .progress-bar-warning { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .progress-bar-danger { background-color: #df382c; } .progress-striped .progress-bar-danger { background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); } .media { margin-top: 15px; } .media:first-child { margin-top: 0; } .media, .media-body { zoom: 1; overflow: hidden; } .media-body { width: 10000px; } .media-object { display: block; } .media-object.img-thumbnail { max-width: none; } .media-right, .media > .pull-right { padding-left: 10px; } .media-left, .media > .pull-left { padding-right: 10px; } .media-left, .media-right, .media-body { display: table-cell; vertical-align: top; } .media-middle { vertical-align: middle; } .media-bottom { vertical-align: bottom; } .media-heading { margin-top: 0; margin-bottom: 5px; } .media-list { padding-left: 0; list-style: none; } .list-group { margin-bottom: 20px; padding-left: 0; } .list-group-item { position: relative; display: block; padding: 10px 15px; margin-bottom: -1px; background-color: #ffffff; border: 1px solid #dddddd; } .list-group-item:first-child { border-top-right-radius: 4px; border-top-left-radius: 4px; } .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 4px; border-bottom-left-radius: 4px; } a.list-group-item, button.list-group-item { color: #555555; } a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading { color: #333333; } a.list-group-item:hover, button.list-group-item:hover, a.list-group-item:focus, button.list-group-item:focus { text-decoration: none; color: #555555; background-color: #f5f5f5; } button.list-group-item { width: 100%; text-align: left; } .list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus { background-color: #eeeeee; color: #aea79f; cursor: not-allowed; } .list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading { color: inherit; } .list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text { color: #aea79f; } .list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus { z-index: 2; color: #ffffff; background-color: #dd4814; border-color: #dd4814; } .list-group-item.active .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > .small { color: inherit; } .list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text { color: #fad1c3; } .list-group-item-success { color: #468847; background-color: #dff0d8; } a.list-group-item-success, button.list-group-item-success { color: #468847; } a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading { color: inherit; } a.list-group-item-success:hover, button.list-group-item-success:hover, a.list-group-item-success:focus, button.list-group-item-success:focus { color: #468847; background-color: #d0e9c6; } a.list-group-item-success.active, button.list-group-item-success.active, a.list-group-item-success.active:hover, button.list-group-item-success.active:hover, a.list-group-item-success.active:focus, button.list-group-item-success.active:focus { color: #fff; background-color: #468847; border-color: #468847; } .list-group-item-info { color: #3a87ad; background-color: #d9edf7; } a.list-group-item-info, button.list-group-item-info { color: #3a87ad; } a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading { color: inherit; } a.list-group-item-info:hover, button.list-group-item-info:hover, a.list-group-item-info:focus, button.list-group-item-info:focus { color: #3a87ad; background-color: #c4e3f3; } a.list-group-item-info.active, button.list-group-item-info.active, a.list-group-item-info.active:hover, button.list-group-item-info.active:hover, a.list-group-item-info.active:focus, button.list-group-item-info.active:focus { color: #fff; background-color: #3a87ad; border-color: #3a87ad; } .list-group-item-warning { color: #c09853; background-color: #fcf8e3; } a.list-group-item-warning, button.list-group-item-warning { color: #c09853; } a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading { color: inherit; } a.list-group-item-warning:hover, button.list-group-item-warning:hover, a.list-group-item-warning:focus, button.list-group-item-warning:focus { color: #c09853; background-color: #faf2cc; } a.list-group-item-warning.active, button.list-group-item-warning.active, a.list-group-item-warning.active:hover, button.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, button.list-group-item-warning.active:focus { color: #fff; background-color: #c09853; border-color: #c09853; } .list-group-item-danger { color: #b94a48; background-color: #f2dede; } a.list-group-item-danger, button.list-group-item-danger { color: #b94a48; } a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading { color: inherit; } a.list-group-item-danger:hover, button.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list-group-item-danger:focus { color: #b94a48; background-color: #ebcccc; } a.list-group-item-danger.active, button.list-group-item-danger.active, a.list-group-item-danger.active:hover, button.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, button.list-group-item-danger.active:focus { color: #fff; background-color: #b94a48; border-color: #b94a48; } .list-group-item-heading { margin-top: 0; margin-bottom: 5px; } .list-group-item-text { margin-bottom: 0; line-height: 1.3; } .panel { margin-bottom: 20px; background-color: #ffffff; border: 1px solid transparent; border-radius: 4px; -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); } .panel-body { padding: 15px; } .panel-heading { padding: 10px 15px; border-bottom: 1px solid transparent; border-top-right-radius: 3px; border-top-left-radius: 3px; } .panel-heading > .dropdown .dropdown-toggle { color: inherit; } .panel-title { margin-top: 0; margin-bottom: 0; font-size: 16px; color: inherit; } .panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a { color: inherit; } .panel-footer { padding: 10px 15px; background-color: #f5f5f5; border-top: 1px solid #dddddd; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .list-group, .panel > .panel-collapse > .list-group { margin-bottom: 0; } .panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item { border-width: 1px 0; border-radius: 0; } .panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { border-top: 0; border-top-right-radius: 3px; border-top-left-radius: 3px; } .panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { border-bottom: 0; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { border-top-right-radius: 0; border-top-left-radius: 0; } .panel-heading + .list-group .list-group-item:first-child { border-top-width: 0; } .list-group + .panel-footer { border-top-width: 0; } .panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table { margin-bottom: 0; } .panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption { padding-left: 15px; padding-right: 15px; } .panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child { border-top-right-radius: 3px; border-top-left-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { border-top-left-radius: 3px; border-top-right-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-left-radius: 3px; } .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 3px; } .panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child { border-bottom-right-radius: 3px; border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 3px; } .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 3px; } .panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body { border-top: 1px solid #dddddd; } .panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td { border-top: 0; } .panel > .table-bordered, .panel > .table-responsive > .table-bordered { border: 0; } .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; } .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; } .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { border-bottom: 0; } .panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { border-bottom: 0; } .panel > .table-responsive { border: 0; margin-bottom: 0; } .panel-group { margin-bottom: 20px; } .panel-group .panel { margin-bottom: 0; border-radius: 4px; } .panel-group .panel + .panel { margin-top: 5px; } .panel-group .panel-heading { border-bottom: 0; } .panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group { border-top: 1px solid #dddddd; } .panel-group .panel-footer { border-top: 0; } .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid #dddddd; } .panel-default { border-color: #dddddd; } .panel-default > .panel-heading { color: #333333; background-color: #f5f5f5; border-color: #dddddd; } .panel-default > .panel-heading + .panel-collapse > .panel-body { border-top-color: #dddddd; } .panel-default > .panel-heading .badge { color: #f5f5f5; background-color: #333333; } .panel-default > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #dddddd; } .panel-primary { border-color: #dd4814; } .panel-primary > .panel-heading { color: #ffffff; background-color: #dd4814; border-color: #dd4814; } .panel-primary > .panel-heading + .panel-collapse > .panel-body { border-top-color: #dd4814; } .panel-primary > .panel-heading .badge { color: #dd4814; background-color: #ffffff; } .panel-primary > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #dd4814; } .panel-success { border-color: #d6e9c6; } .panel-success > .panel-heading { color: #468847; background-color: #dff0d8; border-color: #d6e9c6; } .panel-success > .panel-heading + .panel-collapse > .panel-body { border-top-color: #d6e9c6; } .panel-success > .panel-heading .badge { color: #dff0d8; background-color: #468847; } .panel-success > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #d6e9c6; } .panel-info { border-color: #bce8f1; } .panel-info > .panel-heading { color: #3a87ad; background-color: #d9edf7; border-color: #bce8f1; } .panel-info > .panel-heading + .panel-collapse > .panel-body { border-top-color: #bce8f1; } .panel-info > .panel-heading .badge { color: #d9edf7; background-color: #3a87ad; } .panel-info > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #bce8f1; } .panel-warning { border-color: #fbeed5; } .panel-warning > .panel-heading { color: #c09853; background-color: #fcf8e3; border-color: #fbeed5; } .panel-warning > .panel-heading + .panel-collapse > .panel-body { border-top-color: #fbeed5; } .panel-warning > .panel-heading .badge { color: #fcf8e3; background-color: #c09853; } .panel-warning > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #fbeed5; } .panel-danger { border-color: #eed3d7; } .panel-danger > .panel-heading { color: #b94a48; background-color: #f2dede; border-color: #eed3d7; } .panel-danger > .panel-heading + .panel-collapse > .panel-body { border-top-color: #eed3d7; } .panel-danger > .panel-heading .badge { color: #f2dede; background-color: #b94a48; } .panel-danger > .panel-footer + .panel-collapse > .panel-body { border-bottom-color: #eed3d7; } .embed-responsive { position: relative; display: block; height: 0; padding: 0; overflow: hidden; } .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video { position: absolute; top: 0; left: 0; bottom: 0; height: 100%; width: 100%; border: 0; } .embed-responsive-16by9 { padding-bottom: 56.25%; } .embed-responsive-4by3 { padding-bottom: 75%; } .well { min-height: 20px; padding: 19px; margin-bottom: 20px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); } .well blockquote { border-color: #ddd; border-color: rgba(0, 0, 0, 0.15); } .well-lg { padding: 24px; border-radius: 6px; } .well-sm { padding: 9px; border-radius: 3px; } .close { float: right; font-size: 21px; font-weight: bold; line-height: 1; color: #000000; text-shadow: 0 1px 0 #ffffff; opacity: 0.2; filter: alpha(opacity=20); } .close:hover, .close:focus { color: #000000; text-decoration: none; cursor: pointer; opacity: 0.5; filter: alpha(opacity=50); } button.close { padding: 0; cursor: pointer; background: transparent; border: 0; -webkit-appearance: none; } .modal-open { overflow: hidden; } .modal { display: none; overflow: hidden; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; -webkit-overflow-scrolling: touch; outline: 0; } .modal.fade .modal-dialog { -webkit-transform: translate(0, -25%); -ms-transform: translate(0, -25%); -o-transform: translate(0, -25%); transform: translate(0, -25%); -webkit-transition: -webkit-transform 0.3s ease-out; -moz-transition: -moz-transform 0.3s ease-out; -o-transition: -o-transform 0.3s ease-out; transition: transform 0.3s ease-out; } .modal.in .modal-dialog { -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .modal-dialog { position: relative; width: auto; margin: 10px; } .modal-content { position: relative; background-color: #ffffff; border: 1px solid #999999; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 6px; -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); background-clip: padding-box; outline: 0; } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000000; } .modal-backdrop.fade { opacity: 0; filter: alpha(opacity=0); } .modal-backdrop.in { opacity: 0.5; filter: alpha(opacity=50); } .modal-header { padding: 15px; border-bottom: 1px solid #e5e5e5; } .modal-header .close { margin-top: -2px; } .modal-title { margin: 0; line-height: 1.42857143; } .modal-body { position: relative; padding: 20px; } .modal-footer { padding: 20px; text-align: right; border-top: 1px solid #e5e5e5; } .modal-footer .btn + .btn { margin-left: 5px; margin-bottom: 0; } .modal-footer .btn-group .btn + .btn { margin-left: -1px; } .modal-footer .btn-block + .btn-block { margin-left: 0; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 768px) { .modal-dialog { width: 600px; margin: 30px auto; } .modal-content { -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); } .modal-sm { width: 300px; } } @media (min-width: 992px) { .modal-lg { width: 900px; } } .tooltip { position: absolute; z-index: 1070; display: block; font-family: "Ubuntu", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif; font-style: normal; font-weight: normal; letter-spacing: normal; line-break: auto; line-height: 1.42857143; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; white-space: normal; word-break: normal; word-spacing: normal; word-wrap: normal; font-size: 12px; opacity: 0; filter: alpha(opacity=0); } .tooltip.in { opacity: 0.9; filter: alpha(opacity=90); } .tooltip.top { margin-top: -3px; padding: 5px 0; } .tooltip.right { margin-left: 3px; padding: 0 5px; } .tooltip.bottom { margin-top: 3px; padding: 5px 0; } .tooltip.left { margin-left: -3px; padding: 0 5px; } .tooltip-inner { max-width: 200px; padding: 3px 8px; color: #ffffff; text-align: center; background-color: #000000; border-radius: 4px; } .tooltip-arrow { position: absolute; width: 0; height: 0; border-color: transparent; border-style: solid; } .tooltip.top .tooltip-arrow { bottom: 0; left: 50%; margin-left: -5px; border-width: 5px 5px 0; border-top-color: #000000; } .tooltip.top-left .tooltip-arrow { bottom: 0; right: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000000; } .tooltip.top-right .tooltip-arrow { bottom: 0; left: 5px; margin-bottom: -5px; border-width: 5px 5px 0; border-top-color: #000000; } .tooltip.right .tooltip-arrow { top: 50%; left: 0; margin-top: -5px; border-width: 5px 5px 5px 0; border-right-color: #000000; } .tooltip.left .tooltip-arrow { top: 50%; right: 0; margin-top: -5px; border-width: 5px 0 5px 5px; border-left-color: #000000; } .tooltip.bottom .tooltip-arrow { top: 0; left: 50%; margin-left: -5px; border-width: 0 5px 5px; border-bottom-color: #000000; } .tooltip.bottom-left .tooltip-arrow { top: 0; right: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000000; } .tooltip.bottom-right .tooltip-arrow { top: 0; left: 5px; margin-top: -5px; border-width: 0 5px 5px; border-bottom-color: #000000; } .popover { position: absolute; top: 0; left: 0; z-index: 1060; display: none; max-width: 276px; padding: 1px; font-family: "Ubuntu", Tahoma, "Helvetica Neue", Helvetica, Arial, sans-serif; font-style: normal; font-weight: normal; letter-spacing: normal; line-break: auto; line-height: 1.42857143; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; white-space: normal; word-break: normal; word-spacing: normal; word-wrap: normal; font-size: 14px; background-color: #ffffff; background-clip: padding-box; border: 1px solid #cccccc; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 6px; -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); } .popover.top { margin-top: -10px; } .popover.right { margin-left: 10px; } .popover.bottom { margin-top: 10px; } .popover.left { margin-left: -10px; } .popover-title { margin: 0; padding: 8px 14px; font-size: 14px; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; border-radius: 5px 5px 0 0; } .popover-content { padding: 9px 14px; } .popover > .arrow, .popover > .arrow:after { position: absolute; display: block; width: 0; height: 0; border-color: transparent; border-style: solid; } .popover > .arrow { border-width: 11px; } .popover > .arrow:after { border-width: 10px; content: ""; } .popover.top > .arrow { left: 50%; margin-left: -11px; border-bottom-width: 0; border-top-color: #999999; border-top-color: rgba(0, 0, 0, 0.25); bottom: -11px; } .popover.top > .arrow:after { content: " "; bottom: 1px; margin-left: -10px; border-bottom-width: 0; border-top-color: #ffffff; } .popover.right > .arrow { top: 50%; left: -11px; margin-top: -11px; border-left-width: 0; border-right-color: #999999; border-right-color: rgba(0, 0, 0, 0.25); } .popover.right > .arrow:after { content: " "; left: 1px; bottom: -10px; border-left-width: 0; border-right-color: #ffffff; } .popover.bottom > .arrow { left: 50%; margin-left: -11px; border-top-width: 0; border-bottom-color: #999999; border-bottom-color: rgba(0, 0, 0, 0.25); top: -11px; } .popover.bottom > .arrow:after { content: " "; top: 1px; margin-left: -10px; border-top-width: 0; border-bottom-color: #ffffff; } .popover.left > .arrow { top: 50%; right: -11px; margin-top: -11px; border-right-width: 0; border-left-color: #999999; border-left-color: rgba(0, 0, 0, 0.25); } .popover.left > .arrow:after { content: " "; right: 1px; border-right-width: 0; border-left-color: #ffffff; bottom: -10px; } .carousel { position: relative; } .carousel-inner { position: relative; overflow: hidden; width: 100%; } .carousel-inner > .item { display: none; position: relative; -webkit-transition: 0.6s ease-in-out left; -o-transition: 0.6s ease-in-out left; transition: 0.6s ease-in-out left; } .carousel-inner > .item > img, .carousel-inner > .item > a > img { line-height: 1; } @media all and (transform-3d), (-webkit-transform-3d) { .carousel-inner > .item { -webkit-transition: -webkit-transform 0.6s ease-in-out; -moz-transition: -moz-transform 0.6s ease-in-out; -o-transition: -o-transform 0.6s ease-in-out; transition: transform 0.6s ease-in-out; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000px; -moz-perspective: 1000px; perspective: 1000px; } .carousel-inner > .item.next, .carousel-inner > .item.active.right { -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); left: 0; } .carousel-inner > .item.prev, .carousel-inner > .item.active.left { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); left: 0; } .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); left: 0; } } .carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev { display: block; } .carousel-inner > .active { left: 0; } .carousel-inner > .next, .carousel-inner > .prev { position: absolute; top: 0; width: 100%; } .carousel-inner > .next { left: 100%; } .carousel-inner > .prev { left: -100%; } .carousel-inner > .next.left, .carousel-inner > .prev.right { left: 0; } .carousel-inner > .active.left { left: -100%; } .carousel-inner > .active.right { left: 100%; } .carousel-control { position: absolute; top: 0; left: 0; bottom: 0; width: 15%; opacity: 0.5; filter: alpha(opacity=50); font-size: 20px; color: #ffffff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); background-color: rgba(0, 0, 0, 0); } .carousel-control.left { background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); } .carousel-control.right { left: auto; right: 0; background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); } .carousel-control:hover, .carousel-control:focus { outline: 0; color: #ffffff; text-decoration: none; opacity: 0.9; filter: alpha(opacity=90); } .carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right { position: absolute; top: 50%; margin-top: -10px; z-index: 5; display: inline-block; } .carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left { left: 50%; margin-left: -10px; } .carousel-control .icon-next, .carousel-control .glyphicon-chevron-right { right: 50%; margin-right: -10px; } .carousel-control .icon-prev, .carousel-control .icon-next { width: 20px; height: 20px; line-height: 1; font-family: serif; } .carousel-control .icon-prev:before { content: '\2039'; } .carousel-control .icon-next:before { content: '\203a'; } .carousel-indicators { position: absolute; bottom: 10px; left: 50%; z-index: 15; width: 60%; margin-left: -30%; padding-left: 0; list-style: none; text-align: center; } .carousel-indicators li { display: inline-block; width: 10px; height: 10px; margin: 1px; text-indent: -999px; border: 1px solid #ffffff; border-radius: 10px; cursor: pointer; background-color: #000 \9; background-color: rgba(0, 0, 0, 0); } .carousel-indicators .active { margin: 0; width: 12px; height: 12px; background-color: #ffffff; } .carousel-caption { position: absolute; left: 15%; right: 15%; bottom: 20px; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #ffffff; text-align: center; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } .carousel-caption .btn { text-shadow: none; } @media screen and (min-width: 768px) { .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next { width: 30px; height: 30px; margin-top: -10px; font-size: 30px; } .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev { margin-left: -10px; } .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next { margin-right: -10px; } .carousel-caption { left: 20%; right: 20%; padding-bottom: 30px; } .carousel-indicators { bottom: 20px; } } .clearfix:before, .clearfix:after, .dl-horizontal dd:before, .dl-horizontal dd:after, .container:before, .container:after, .container-fluid:before, .container-fluid:after, .row:before, .row:after, .form-horizontal .form-group:before, .form-horizontal .form-group:after, .btn-toolbar:before, .btn-toolbar:after, .btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after, .nav:before, .nav:after, .navbar:before, .navbar:after, .navbar-header:before, .navbar-header:after, .navbar-collapse:before, .navbar-collapse:after, .pager:before, .pager:after, .panel-body:before, .panel-body:after, .modal-header:before, .modal-header:after, .modal-footer:before, .modal-footer:after { content: " "; display: table; } .clearfix:after, .dl-horizontal dd:after, .container:after, .container-fluid:after, .row:after, .form-horizontal .form-group:after, .btn-toolbar:after, .btn-group-vertical > .btn-group:after, .nav:after, .navbar:after, .navbar-header:after, .navbar-collapse:after, .pager:after, .panel-body:after, .modal-header:after, .modal-footer:after { clear: both; } .center-block { display: block; margin-left: auto; margin-right: auto; } .pull-right { float: right !important; } .pull-left { float: left !important; } .hide { display: none !important; } .show { display: block !important; } .invisible { visibility: hidden; } .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .hidden { display: none !important; } .affix { position: fixed; } @-ms-viewport { width: device-width; } .visible-xs, .visible-sm, .visible-md, .visible-lg { display: none !important; } .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block { display: none !important; } @media (max-width: 767px) { .visible-xs { display: block !important; } table.visible-xs { display: table !important; } tr.visible-xs { display: table-row !important; } th.visible-xs, td.visible-xs { display: table-cell !important; } } @media (max-width: 767px) { .visible-xs-block { display: block !important; } } @media (max-width: 767px) { .visible-xs-inline { display: inline !important; } } @media (max-width: 767px) { .visible-xs-inline-block { display: inline-block !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm { display: block !important; } table.visible-sm { display: table !important; } tr.visible-sm { display: table-row !important; } th.visible-sm, td.visible-sm { display: table-cell !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-block { display: block !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline { display: inline !important; } } @media (min-width: 768px) and (max-width: 991px) { .visible-sm-inline-block { display: inline-block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md { display: block !important; } table.visible-md { display: table !important; } tr.visible-md { display: table-row !important; } th.visible-md, td.visible-md { display: table-cell !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-block { display: block !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline { display: inline !important; } } @media (min-width: 992px) and (max-width: 1199px) { .visible-md-inline-block { display: inline-block !important; } } @media (min-width: 1200px) { .visible-lg { display: block !important; } table.visible-lg { display: table !important; } tr.visible-lg { display: table-row !important; } th.visible-lg, td.visible-lg { display: table-cell !important; } } @media (min-width: 1200px) { .visible-lg-block { display: block !important; } } @media (min-width: 1200px) { .visible-lg-inline { display: inline !important; } } @media (min-width: 1200px) { .visible-lg-inline-block { display: inline-block !important; } } @media (max-width: 767px) { .hidden-xs { display: none !important; } } @media (min-width: 768px) and (max-width: 991px) { .hidden-sm { display: none !important; } } @media (min-width: 992px) and (max-width: 1199px) { .hidden-md { display: none !important; } } @media (min-width: 1200px) { .hidden-lg { display: none !important; } } .visible-print { display: none !important; } @media print { .visible-print { display: block !important; } table.visible-print { display: table !important; } tr.visible-print { display: table-row !important; } th.visible-print, td.visible-print { display: table-cell !important; } } .visible-print-block { display: none !important; } @media print { .visible-print-block { display: block !important; } } .visible-print-inline { display: none !important; } @media print { .visible-print-inline { display: inline !important; } } .visible-print-inline-block { display: none !important; } @media print { .visible-print-inline-block { display: inline-block !important; } } @media print { .hidden-print { display: none !important; } } header.page-header::before, .layout_social > .container:before { content: none; } .topbar { margin-bottom: 20px; } .cssmenu_horiz li ul, .cssmenu_vert li ul { padding: 0; margin: 2px 0 0; background-color: #ffffff; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 4px; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); background-clip: padding-box; } .cssmenu_horiz li ul > li > a, .cssmenu_vert li ul > li > a { padding: 3px 20px; font-weight: normal; line-height: 1.42857143; color: #333333; } .cssmenu_horiz > li > ul { border-top-left-radius: 0; border-top-right-radius: 0; margin: 0; } .cssmenu_horiz > li > a:hover, .cssmenu_vert > li > a:hover, .cssmenu_horiz ul > li > a:hover, .cssmenu_vert ul > li > a:hover, .cssmenu_horiz > li > a:focus, .cssmenu_vert > li > a:focus, .cssmenu_horiz ul > li > a:focus, .cssmenu_vert ul > li > a:focus { text-decoration: none; color: #ffffff; background-color: #dd4814; } .topbar .nav > li.selected > a, .topbar .nav > li.selected > a:hover { background: #ae3910; } .sf-arrows .sf-with-ul:after { border: 5px solid transparent; border-top-color: #333333; } .sf-arrows ul .sf-with-ul:after, .cssmenu_vert.sf-arrows > li > .sf-with-ul:after { border-color: transparent; border-left-color: #333333; } .sf-arrows ul li > .sf-with-ul:focus:after, .sf-arrows ul li:hover > .sf-with-ul:after, .sf-arrows ul .sfHover > .sf-with-ul:after { border-color: transparent; border-left-color: #ffffff; } .cssmenu_vert.sf-arrows li > .sf-with-ul:focus:after, .cssmenu_vert.sf-arrows li:hover > .sf-with-ul:after, .cssmenu_vert.sf-arrows .sfHover > .sf-with-ul:after { border-color: transparent; border-left-color: #ffffff; } .dropdown-menu li { background-color: #ffffff; color: #333333; } .dropdown-menu li:hover, .dropdown-menu li:focus { background-color: #dd4814; color: #ffffff; } .navbar-default .badge { background-color: #ffffff; color: #dd4814; } .navbar-inverse .badge { background-color: #ffffff; color: #772953; } @media (max-width: 767px) { .navbar .dropdown-menu a { color: #ffffff; } } .margin-bottom-xs { margin-bottom: 5px; } .margin-bottom-sm { margin-bottom: 10px; } .margin-bottom-md { margin-bottom: 20px; } .margin-bottom-lg { margin-bottom: 40px; } .navbar-collapse.collapse.in { background: #dd4814; } .warning a, .warning a:link, .warning a:visited { color: #c09853; } .calhighlight { color: #3a87ad; background: #d9edf7; } a.fc-event:hover { color: #ffffff; } .filter .fancyfilter { border: thin solid #aea79f /*black*/; } .filter .fancyfilter .token { background: #ffffff; } .note-list .postbody-title { background: #ffffff; color: #333333; } .post-approved-n { border-left: 3px dotted #468847; } .post-approved-r { border-left: 3px double #c09853; } .post-approved-r .content * { background: url('../../../img/icons/dots.gif'); } .dropdown-menu { color: #aea79f; } .cssmenu_horiz > li:hover, .cssmenu_horiz > li.sfHover, .cssmenu_vert > li:hover, .cssmenu_vert > li.sfHover { -webkit-transition: none; transition: none; } .topbar .nav > li > a:hover, .topbar .nav > li > a:focus { background: transparent; } .cssmenu_horiz ul, .cssmenu_vert ul { border: rgba(0, 0, 0, 0.15); } .cssmenu_horiz ul li a, .cssmenu_vert ul li a { background: #ffffff; color: #333333; } .cssmenu_horiz > ul > li:hover > a, .cssmenu_vert > ul > li:hover > a { color: #ffffff; background: #dd4814; } .sf-arrows .sf-with-ul:after { border: 5px solid transparent; border-top-color: #dd4814; } .cssmenu_vert.sf-arrows li > .sf-with-ul:after { border-color: transparent; border-left-color: #dd4814; /* edit this to suit design (no rgba in IE8) */ } .sf-arrows ul .sf-with-ul:after, .cssmenu_vert.sf-arrows ul > li > .sf-with-ul:after { border-color: transparent; border-left-color: #333333; /* edit this to suit design (no rgba in IE8) */ } .sf-arrows ul li > .sf-with-ul:focus:after, .sf-arrows ul li:hover > .sf-with-ul:after, .sf-arrows ul .sfHover > .sf-with-ul:after { border-color: transparent; border-left-color: #ffffff; } .cssmenu_vert.sf-arrows li > .sf-with-ul:focus:after, .cssmenu_vert.sf-arrows li:hover > .sf-with-ul:after, .cssmenu_vert.sf-arrows .sfHover > .sf-with-ul:after { border-color: transparent; border-left-color: #ffffff; } .topbar, .topbar .navbar-default .navbar-nav > li, .topbar .nav > li { background: #dd4814; color: #ffffff; } .topbar > a, .topbar .navbar-default .navbar-nav > li > a, .topbar .nav > li > a { color: #ffffff; padding-top: 15px; padding-bottom: 15px; } .topbar > a:hover, .topbar .navbar-default .navbar-nav > li > a:hover, .topbar .nav > li > a:hover, .topbar > a:focus, .topbar .navbar-default .navbar-nav > li > a:focus, .topbar .nav > li > a:focus { color: #ffffff; } .topbar .cssmenu_horiz ul { background: #ffffff; } .topbar .cssmenu_horiz.sf-arrows > .menuSection0 > .sf-with-ul:after { border: 5px solid transparent; border-top-color: #ffffff; } .topbar .cssmenu_horiz.sf-arrows > .menuSection0:hover > .sf-with-ul:after, .topbar .cssmenu_horiz.sf-arrows > .menuSection0.sfhover > .sf-with-ul:after { border-top-color: #ffffff; } /* order of following 3 rules important for fallbacks to work */ .dropdown-menu .dropdown-title, .dropdown-menu li label { color: #333333; } .thumbinfosothers { color: #eeeeee; } table.treetable.objectperms td.added { background-color: #dff0d8; } table.treetable.objectperms td.removed { background-color: #fcf8e3; } .progressBarInProgress { background-color: #3a87ad; color: #d9edf7; } .progressBarComplete { background-color: #468847; color: #dff0d8; } .progressBarError { background-color: #c09853; color: #fcf8e3; } .progressContainer { border: solid 1px rgba(0, 0, 0, 0.2); background-color: #ffffff; } .filter-panel-heading a:after { color: #777777; } .olControlMousePosition { background: rgba(0, 0, 0, 0.75); color: #ffffff; } .olControlScaleLineTop, .olControlScaleLineBottom { background-color: rgba(255, 255, 255, 0.5); } .ui-selectmenu-icon { background-color: inherit; border: solid 5px transparent !important; box-shadow: -5px 0 5px 2px rgba(0, 0, 0, 0.1), -1px 0 0 rgba(0, 0, 0, 0.1), -2px 0 0 rgba(255, 255, 255, 0.25); } .dirsitetrail { color: #f5f5f5; } .dirsitecats { color: #f5f5f5; } #resultzone > div:hover { background: #dff0d8; } .searchresults blockquote em, .highlight, .btn-default.highlight a, .btn-default a.highlight { background: #f2dede; color: #b94a48; border-color: #eed3d7; } .btn-default.highlight:hover { background: #dca7a7; } .btn-default.btn-link, .btn-default.btn-link:hover { background: transparent; border: none; } #ajaxLoadingBG { background: transparent url('../../../img/overlay-light.png'); } #ajaxLoading { color: #eeeeee; background: transparent url('../../../img/loading-light.gif') no-repeat 50% 50%; } #cookie_consent_div { padding: 15px; border: 1px solid #bce8f1; color: #3a87ad; background-color: #d9edf7; } #cookie_consent_div.banner { padding: 15px; border: 1px solid #bce8f1; } html#print, body.print * { background: #ffffff; color: #000000; } body.fullscreen { background: #ffffff; } .attention { color: #b94a48; } #debugconsole { background: #772953; color: #ffffff; border: 2px solid #511c39; } #debugconsole form { color: #ffffff; } #debugconsole a { color: #ffffff; } #debugconsole a.btn { color: #ffffff; } a.icon, img.icon { background: transparent; } div #metadata fieldset.tabcontent, div #metadata div.tabs { background-color: transparent; } .openid_url { background: #ffffff url('../../../img/icons/login-OpenID-bg.gif') 1px 1px no-repeat; } input:-webkit-autofill { background-color: #ffffff !important; /* needs important because Chrome has it already important */ background-image: none !important; color: #333333 !important; /* the Google guys forgot the number-one rule... when they specify background they should specify forgeround color too ;) */ } #cboxTitle { background-color: #ffffff; } #captchaImg { border: 1px solid #dddddd; } form.simple label.error { background: url('../../../img/icons/error.png') no-repeat 0 4px; color: #b94a48; } form.simple label .warning { color: #b94a48; } .tiki-modal .mask { background-color: #ffffff; } .ui-dialog { background: #ffffff; color: #333333; } .cssmenu_horiz ul li.selected a, .cssmenu_vert ul li.selected a, .cssmenu_horiz ul li a:hover, .cssmenu_vert ul li a:hover { text-decoration: none; color: #ffffff; background-color: #dd4814; } .box-quickadmin .cssmenu_horiz ul li { background-color: #ffffff; } .box-switch_lang .box-data img.highlight { border: 0.1em solid #eed3d7; } .box-switch_lang .box-data .highlight { border: 0.1em solid #eed3d7; } div.cvsup { color: #aea79f; } .layout_social .topbar_modules h1.sitetitle, .layout_social_modules .topbar_modules h1.sitetitle, .layout_fixed_top_modules #top_modules h1.sitetitle { color: #ffffff; } .layout_social .topbar_modules .navbar-inverse .navbar-collapse, .layout_social_modules .topbar_modules .navbar-inverse .navbar-collapse, .layout_fixed_top_modules #top_modules .navbar-inverse .navbar-collapse, .layout_social .topbar_modules .navbar-inverse .navbar-form, .layout_social_modules .topbar_modules .navbar-inverse .navbar-form, .layout_fixed_top_modules #top_modules .navbar-inverse .navbar-form, .layout_social .topbar_modules .navbar-inverse, .layout_social_modules .topbar_modules .navbar-inverse, .layout_fixed_top_modules #top_modules .navbar-inverse { border-color: transparent; } .prio1 { background: inherit; } .prio2 { background: #dff0d8; color: #468847; border: #d6e9c6; } .prio2 a { color: #468847; } .prio3 { background: #d9edf7; color: #3a87ad; border: #bce8f1; } .prio3 a { color: #3a87ad; } .prio4 { background: #fcf8e3; color: #c09853; border: #fbeed5; } .prio4 a { color: #c09853; } .prio5 { background: #f2dede; color: #b94a48; border: #eed3d7; } .prio5 a { color: #b94a48; } .messureadflag { background: #777777; } .messureadhead { background: #aea79f; } .messureadbody { background: #eeeeee; } .readlink { color: #333333; } .webmail_item { border: 1px solid #dddddd; } .webmail_list .odd { background: #f9f9f9; } .webmail_list .button { background: #ffffff; border: 1px solid #dd4814; } .webmail_list .webmail_read { background: #d9edf7; } .webmail_list .webmail_replied { background: #dff0d8; } .webmail_list .webmail_taken { border: #fbeed5; color: #c09853; } .webmail_message { background: #ffffff; } .webmail_message_headers { background: #ffffff; } .webmail_message_headers th { background: transparent; } .tiki_sheet table td { border: 1px solid #dddddd; } .odd { background: transparent; color: #333333; } .even { background: #f9f9f9; color: #333333; } .helptool-admin { border-left: medium double #aea79f; } .toolbar-list { border-left: medium double #aea79f; } .toolbars-picker { background: #ffffff; border: thin solid #333333; color: #333333; } .toolbars-picker a { border: 1px solid #ffffff; color: #333333; } .toolbars-picker a:hover { border: 1px solid #b94a48; background: #aea79f; color: #333333; } .textarea-toolbar > div { background-color: #eeeeee; border: outset 1px #eeeeee; } #intertrans-indicator { background-color: #dff0d8; color: #468847; } #intertrans-form { background-color: #ffffff; border: 1px solid #dddddd; color: #333333; } #edit_translations tr.last { border-bottom: 2px solid #d6e9c6; } ul.all_languages > li { border: 1px solid #d6e9c6; } .plugin-mouseover { background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.2); } .mandatory_note { color: #b94a48; } .author0 { color: #468847; } .author1 { color: #3a87ad; } .author2 { color: #c09853; } .author3 { color: #b94a48; } .author4 { color: #46887e; } .author5 { color: #733aad; } .author6 { color: #8dc053; } .author7 { color: #b9a848; } .author8 { color: #465b88; } .author9 { color: #ad3aad; } .author10 { color: #53c074; } .author11 { color: #6cb948; } .author12 { color: #7e4688; } .author13 { color: #ad3a61; } .author14 { color: #539fc0; } .author15 { color: #48b995; } .structuremenu .menuSection { border-left: 1px dotted #777777; } .cke_editable:hover { outline: #777777 dotted 1px; } .tiki_plugin { background-color: transparent; border: 1px solid #aea79f; } .unsavedChangesInEditor { border: 1px solid; border-color: #fbeed5; } .autotoc > .nav { background: #ffffff; border: 1px solid #dddddd; border-radius: 4px; } .autotoc * { color: #dd4814; } .autotoc .nav > li > a:hover, .autotoc .nav .nav > li > a:hover { color: #97310e; } .plugin-form-float { background: #ffffff; color: #333333; border: solid 2px #333333; } body.wikitext { background: #ffffff; color: #333333; } .editable-inline { background: transparent url('../../../img/icons/database_lightning.png') no-repeat top right; padding-right: 20px; display: inline-block; } .editable-inline.loaded { background: #ffffff; position: absolute; padding: 6px; border: 1px solid #eee; border-radius: 4px; z-index: 1001; } .editable-inline.failure { background: transparent url('../../../img/icons/lock_gray.png') no-repeat top right; } .editable-inline.modified { border: solid 2px #df382c; padding: 2px; } .editable-inline.unsaved { border: solid 2px #df382c; } .structure_select .cssmenu_horiz ul li { border: 1px solid #777777; } .admintoclevel .actions input { border: solid 1px #777777; } .TextArea-fullscreen { background-color: #777777; } .TextArea-fullscreen .actions, .CodeMirror-fullscreen .actions { background-color: #ffffff; border-top: #eeeeee 1px solid; } #autosave_preview { background-color: #ffffff; color: #333333; } #autosave_preview_grippy { background-color: #eeeeee; background-image: url('../../../img/icons/shading.png'); } h1:hover a.tiki_anchor, h2:hover a.tiki_anchor, h3:hover a.tiki_anchor, h4:hover a.tiki_anchor, h5:hover a.tiki_anchor, h6:hover a.tiki_anchor { color: #eeeeee; } h1 a.tiki_anchor:hover, h2 a.tiki_anchor:hover, h3 a.tiki_anchor:hover, h4 a.tiki_anchor:hover, h5 a.tiki_anchor:hover, h6 a.tiki_anchor:hover { color: #777777; } .wiki .namespace { background: #eeeeee; } .site_report a { border-left: 1px solid #777777; border-right: 1px solid #777777; } .quotebody { border-left: 2px solid #aea79f; } .mandatory_star { color: #eed3d7; } .trackerplugindesc { color: #333333; } .charCount { color: #333333; } .imgbox { border: 1px solid rgba(0, 0, 0, 0.2); background-color: #ffffff; } .ic_button { border: 2px solid #dddddd; } .ic_active { border: 2px solid #dddddd; } .ic_caption { background: #772953; color: #ffffff; } .wp-cookie-consent-required { color: #b94a48; } .wp-sign { color: #ffffff; background-color: #000000; } .wp-sign a, .wp-sign a:visited { color: #ffffff; } .wp-sign a:hover, .wp-sign a:visited:hover { color: #ffffff; text-decoration: none; } .toc { border-top: 1px dotted #aea79f; border-bottom: 1px dotted #aea79f; } .diff td { border: 1px solid #333333; } .diff div { border-top: 1px solid #aea79f; } .diffadded { background: #dff0d8; color: #468847; } .diffdeleted { background: #f2dede; color: #b94a48; } .diffinldel { background: #fcf8e3; } .diffbody { background: #eeeeee; color: #222222; } .diffchar { color: #c76e6d; } .diffadded .diffchar { color: #58a959; } .searchresults blockquote em.hlt1, .searchresults blockquote em.hlt6, .highlight_word_0 { color: #468847; background: #dff0d8; } .searchresults blockquote em.hlt2, .searchresults blockquote em.hlt7, .highlight_word_1 { color: #3a87ad; background: #d9edf7; } .searchresults blockquote em.hlt3, .searchresults blockquote em.hlt8, .highlight_word_2 { color: #c09853; background: #fcf8e3; } .searchresults blockquote em.hlt4, .searchresults blockquote em.hlt9, .highlight_word_3 { color: #b94a48; background: #f2dede; } .searchresults blockquote em.hlt5, .searchresults blockquote em.hlt10, .highlight_word_4 { color: #b97048; background: #f2e5de; } /* Structures drill-down menu */ div.drillshow { border: 1px solid #aea79f; } .chosen-container-multi .chosen-choices { background-color: #ffffff; color: #333333; border: 1px solid #cccccc; } .chosen-container-single .chosen-single, .chosen-container-active.chosen-with-drop .chosen-single, .chosen-container .chosen-drop, .chosen-container-multi .chosen-choices .search-choice { background-color: #ffffff; color: #333333; border: 1px solid #cccccc; } .chosen-container-single .chosen-search input[type="text"] { background-color: #ffffff; border: 1px solid #cccccc; } .chosen-container .chosen-results li.highlighted { background-color: #dd4814; color: #ffffff; } .tiki .chosen-container .active-result { color: #333333; } .breadcrumb { font-style: normal; font-size: 90%; display: block; } a.admbox.off { border: 1px solid #220b03; color: #999999; } a.admbox.off:hover, a.admbox.off:focus, a.admbox.off:active { border: 1px solid #220b03; color: #999999; } .tiki .ui-widget-content { background: #ffffff; color: #333333; border: 1px solid rgba(0, 0, 0, 0.2); } .tiki .ui-widget-header { background: #ffffff; color: #333333; border: 1px solid rgba(0, 0, 0, 0.2); } .tiki .ui-dialog-content { background: #ffffff; color: #333333; } .tiki .ui-dialog-content select, .tiki .ui-dialog-content input, .tiki .ui-dialog-content optgroup, .tiki .ui-dialog-content textarea { background: #ffffff; color: #333333; } .tiki .ui-widget button { background: #aea79f; color: #ffffff; } .tiki .modal-content .ui-state-default { color: #dd4814; } .tiki .modal-content .ui-state-hover:hover { color: #97310e; } .dropdown-menu { color: #333333; } .tiki .col1 .table-responsive { border: 1px solid #dddddd; } code, pre.codelisting { color: #444444; background: #f8f8f8; border: 1px solid #dddddd; border-radius: 1px; } .adminoptionboxchild { border-bottom: 1px solid #eeeeee; } .adminoptionboxchild legend { font-size: 19px; } /* black */ /* white */ /* automatically choose the correct arrow/text color */ .tsFilterInput { border: none; background-color: #f7f7f7; } table.tablesorter { /* style header */ } table.tablesorter thead tr.tablesorter-headerRow th.tablesorter-headerUnSorted:not(.sorter-false) { background-image: url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==); } table.tablesorter thead tr.tablesorter-headerRow th.tablesorter-headerAsc { background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7); } table.tablesorter thead tr.tablesorter-headerRow th.tablesorter-headerDesc { background-image: url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7); } table.tablesorter thead tr.tablesorter-filter-row input.tablesorter-filter { border: none; background-color: #f7f7f7; } table.tablesorter thead tr.tablesorter-filter-row input.dateFrom, table.tablesorter thead tr.tablesorter-filter-row input.dateTo { border: none; background-color: #f7f7f7; } table.tablesorter thead tr.tablesorter-headerRow, table.tablesorter thead tr.tablesorter-filter-row { background-color: #ffffff; }
sdk/dox/html/File5__Vector_8h_source.html
einon/affymetrix-power-tools
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <title>Affymetrix Power Tools: file5/File5_Vector.h Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css"/> </head> <body> <!-- Generated by Doxygen 1.7.1 --> <div class="navigation" id="top"> <div class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> <li><a href="dirs.html"><span>Directories</span></a></li> </ul> </div> <div class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&nbsp;List</span></a></li> <li><a href="globals.html"><span>File&nbsp;Members</span></a></li> </ul> </div> <div class="navpath"> <ul> <li><a class="el" href="dir_3acad715a93b8f1dcf047f24e65f3c1a.html">file5</a> </li> </ul> </div> </div> <div class="header"> <div class="headertitle"> <h1>File5_Vector.h</h1> </div> </div> <div class="contents"> <div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">////////////////////////////////////////////////////////////////</span> <a name="l00002"></a>00002 <span class="comment"></span><span class="comment">//</span> <a name="l00003"></a>00003 <span class="comment">// Copyright (C) 1989, 1991 Free Software Foundation, Inc.</span> <a name="l00004"></a>00004 <span class="comment">//</span> <a name="l00005"></a>00005 <span class="comment">// This library is free software; you can redistribute it and/or modify</span> <a name="l00006"></a>00006 <span class="comment">// it under the terms of the GNU Lesser General Public License </span> <a name="l00007"></a>00007 <span class="comment">// (version 2.1) as published by the Free Software Foundation.</span> <a name="l00008"></a>00008 <span class="comment">// </span> <a name="l00009"></a>00009 <span class="comment">// This library is distributed in the hope that it will be useful, but</span> <a name="l00010"></a>00010 <span class="comment">// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY</span> <a name="l00011"></a>00011 <span class="comment">// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License</span> <a name="l00012"></a>00012 <span class="comment">// for more details.</span> <a name="l00013"></a>00013 <span class="comment">// </span> <a name="l00014"></a>00014 <span class="comment">// You should have received a copy of the GNU Lesser General Public License</span> <a name="l00015"></a>00015 <span class="comment">// along with this library; if not, write to the Free Software Foundation, Inc.,</span> <a name="l00016"></a>00016 <span class="comment">// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA </span> <a name="l00017"></a>00017 <span class="comment">//</span><span class="comment"></span> <a name="l00018"></a>00018 <span class="comment">////////////////////////////////////////////////////////////////</span> <a name="l00019"></a>00019 <span class="comment"></span> <a name="l00020"></a>00020 <span class="comment">//</span> <a name="l00021"></a>00021 <span class="comment">// affy/sdk/file5/File5_Vector.h ---</span> <a name="l00022"></a>00022 <span class="comment">//</span> <a name="l00023"></a>00023 <span class="comment">// $Id: File5_Vector.h,v 1.26 2009-10-28 19:06:41 csugne Exp $</span> <a name="l00024"></a>00024 <span class="comment">//</span> <a name="l00025"></a>00025 <a name="l00026"></a>00026 <a name="l00027"></a>00027 <span class="preprocessor">#ifndef _FILE5_VECTOR_H_</span> <a name="l00028"></a>00028 <span class="preprocessor"></span><span class="preprocessor">#define _FILE5_VECTOR_H_</span> <a name="l00029"></a>00029 <span class="preprocessor"></span> <a name="l00030"></a>00030 <span class="comment">//</span> <a name="l00031"></a>00031 <span class="preprocessor">#include &quot;file5/File5_File.h&quot;</span> <a name="l00032"></a>00032 <span class="preprocessor">#include &quot;file5/File5_types.h&quot;</span> <a name="l00033"></a>00033 <span class="comment">//</span> <a name="l00034"></a>00034 <span class="preprocessor">#include &lt;cstring&gt;</span> <a name="l00035"></a>00035 <span class="preprocessor">#include &lt;map&gt;</span> <a name="l00036"></a>00036 <span class="preprocessor">#include &lt;string&gt;</span> <a name="l00037"></a>00037 <span class="preprocessor">#include &lt;vector&gt;</span> <a name="l00038"></a>00038 <span class="comment">//</span> <a name="l00039"></a>00039 <a name="l00040"></a>00040 <span class="comment">// The default chunk sizes.</span> <a name="l00041"></a>00041 <span class="preprocessor">#define FILE5_CHUNKSIZE 5000</span> <a name="l00042"></a>00042 <span class="preprocessor"></span><span class="preprocessor">#define FILE5_CHUNKSIZE_STRING 500</span> <a name="l00043"></a>00043 <span class="preprocessor"></span><span class="preprocessor">#define FILE5_DEFAULT_COMPRESS 9</span> <a name="l00044"></a>00044 <span class="preprocessor"></span><span class="comment"></span> <a name="l00045"></a>00045 <span class="comment">//////////</span> <a name="l00046"></a>00046 <span class="comment"></span> <a name="l00047"></a>00047 <span class="comment">// template &lt;typename T1&gt;</span> <a name="l00048"></a>00048 <span class="comment">// class affx::File5_Vector_Port : public {</span> <a name="l00049"></a>00049 <span class="comment">// public:</span> <a name="l00050"></a>00050 <span class="comment">// //T1 pop_back();</span> <a name="l00051"></a>00051 <span class="comment">// virtual T1&amp; at(size_t idx);</span> <a name="l00052"></a>00052 <span class="comment">// virtual void assign(size_t idx,const T1&amp; val);</span> <a name="l00053"></a>00053 <span class="comment">// virtual void push_back(const T1&amp; val);</span> <a name="l00054"></a>00054 <span class="comment">// //</span> <a name="l00055"></a>00055 <span class="comment">// virtual int read_vector(size_t idx,std::vector&lt;T1&gt;* vec);</span> <a name="l00056"></a>00056 <span class="comment">// virtual int write_vector(size_t idx,const std::vector&lt;T1&gt;&amp; vec);</span> <a name="l00057"></a>00057 <span class="comment">// };</span> <a name="l00058"></a>00058 <a name="l00059"></a><a class="code" href="classaffx_1_1File5__Vector.html">00059</a> <span class="keyword">class </span><a class="code" href="classaffx_1_1File5__Vector.html">affx::File5_Vector</a> : <span class="keyword">public</span> affx::<a class="code" href="classaffx_1_1File5__Object.html">File5_Object</a> { <a name="l00060"></a>00060 <span class="keyword">public</span>: <a name="l00061"></a>00061 <span class="comment">//</span> <a name="l00062"></a>00062 <span class="keywordtype">size_t</span> m_file_end_idx; <a name="l00063"></a>00063 <span class="keywordtype">size_t</span> m_vec_end_idx; <span class="comment">// </span> <a name="l00064"></a>00064 <span class="keywordtype">size_t</span> m_vec_fill_idx; <span class="comment">// idx of where the NEXT value will be written. (==0 -&gt; empty)</span> <a name="l00065"></a>00065 <a name="l00066"></a>00066 <span class="comment">//</span> <a name="l00067"></a>00067 <span class="keywordtype">int</span> m_h5_dtype_size; <a name="l00068"></a>00068 <span class="keywordtype">int</span> m_dtype_size; <a name="l00069"></a>00069 <a name="l00070"></a>00070 <span class="comment">// buffer</span> <a name="l00071"></a>00071 <span class="keywordtype">char</span>* m_buf_ptr; <a name="l00072"></a>00072 <span class="comment">//int m_buf_cnt;</span> <a name="l00073"></a>00073 <span class="keywordtype">int</span> m_buf_max_cnt; <a name="l00074"></a>00074 <span class="keywordtype">size_t</span> m_buf_start_idx; <a name="l00075"></a>00075 <span class="keywordtype">size_t</span> m_buf_end_idx; <a name="l00076"></a>00076 <a name="l00077"></a>00077 <span class="comment">//</span> <a name="l00078"></a>00078 <span class="keywordtype">int</span> m_opt_autoresize; <a name="l00079"></a>00079 <span class="keywordtype">int</span> m_opt_string_size; <a name="l00080"></a>00080 <span class="keywordtype">int</span> m_opt_buffer_size; <a name="l00081"></a>00081 <span class="keywordtype">int</span> m_opt_resize_on_flush; <a name="l00082"></a>00082 <a name="l00083"></a>00083 <span class="comment">//</span> <a name="l00084"></a>00084 <a class="code" href="classaffx_1_1File5__Vector.html">File5_Vector</a>(); <a name="l00085"></a>00085 <span class="keyword">virtual</span> ~<a class="code" href="classaffx_1_1File5__Vector.html">File5_Vector</a>(); <a name="l00086"></a>00086 <a name="l00087"></a>00087 <span class="comment">//</span> <a name="l00088"></a>00088 <span class="keyword">static</span> <a class="code" href="classaffx_1_1File5__Vector.html">affx::File5_Vector</a>* allocate(affx::File5_dtype_t type); <a name="l00089"></a>00089 <a name="l00090"></a>00090 <span class="comment">//</span> <a name="l00091"></a>00091 <span class="keyword">static</span> <a class="code" href="classaffx_1_1File5__Vector.html">affx::File5_Vector</a>* new_vector(<span class="keywordtype">int</span> dtype); <a name="l00092"></a>00092 <a name="l00093"></a>00093 <span class="comment">//</span> <a name="l00094"></a>00094 <span class="keywordtype">void</span> setOptAutoResize(<span class="keywordtype">int</span> flag); <a name="l00095"></a>00095 <span class="keywordtype">void</span> setOptChunkSize(<span class="keywordtype">int</span> size); <a name="l00096"></a>00096 <span class="keywordtype">void</span> setOptStringSize(<span class="keywordtype">int</span> size);<span class="comment"></span> <a name="l00097"></a>00097 <span class="comment"> /// Maximum string length allowed.</span> <a name="l00098"></a>00098 <span class="comment"></span> <span class="keywordtype">int</span> <a class="code" href="classaffx_1_1File5__Vector.html#a3c2845422092514cd3d36c8ac0b7ffcb" title="Maximum string length allowed.">getOptStringSize</a>(); <a name="l00099"></a>00099 <span class="comment">//</span> <a name="l00100"></a>00100 <span class="keywordtype">void</span> setBufferSize(<span class="keywordtype">int</span> size); <a name="l00101"></a>00101 <a name="l00102"></a>00102 <span class="comment">//</span> <a name="l00103"></a>00103 <span class="keywordtype">void</span> buffer_free(); <a name="l00104"></a>00104 <span class="keywordtype">void</span> buffer_alloc(<span class="keywordtype">int</span> cnt); <a name="l00105"></a>00105 <span class="keywordtype">void</span> buffer_seek(<span class="keywordtype">size_t</span> idx); <a name="l00106"></a>00106 <span class="keywordtype">char</span>* buffer_idx2ptr(<span class="keywordtype">size_t</span> idx); <a name="l00107"></a>00107 <span class="keywordtype">char</span>* buffer_pushback2ptr(); <a name="l00108"></a>00108 <span class="keywordtype">void</span> buffer_zero(); <a name="l00109"></a>00109 <span class="keywordtype">void</span> buffer_clear(); <a name="l00110"></a>00110 <span class="keywordtype">void</span> buffer_print(); <a name="l00111"></a>00111 <span class="comment">//</span> <a name="l00112"></a>00112 <span class="keywordtype">void</span> check_sanity(); <a name="l00113"></a>00113 <a name="l00114"></a>00114 <span class="comment">//</span> <a name="l00115"></a>00115 <span class="keywordtype">int</span> open(<span class="keyword">const</span> std::string&amp; name,affx::File5_dtype_t dtype,<span class="keywordtype">int</span> flags); <a name="l00116"></a>00116 <span class="keywordtype">int</span> open(<span class="keyword">const</span> std::string&amp; name); <a name="l00117"></a>00117 <span class="comment">//</span> <a name="l00118"></a>00118 <span class="keywordtype">int</span> init(); <a name="l00119"></a>00119 <span class="keywordtype">int</span> flush(); <a name="l00120"></a>00120 <span class="keywordtype">int</span> close(); <a name="l00121"></a>00121 <a name="l00122"></a>00122 <span class="comment">//</span> <a name="l00123"></a>00123 <span class="keywordtype">size_t</span> fillIndex(); <a name="l00124"></a>00124 <span class="keywordtype">size_t</span> setFillIndex(<span class="keywordtype">size_t</span> idx); <a name="l00125"></a>00125 <a name="l00126"></a>00126 <span class="comment">//</span> <a name="l00127"></a>00127 <span class="keywordtype">int</span> read_scalar( <span class="keywordtype">size_t</span> idx,<span class="keywordtype">void</span>* ptr); <a name="l00128"></a>00128 <span class="keywordtype">int</span> write_scalar(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">void</span>* ptr); <a name="l00129"></a>00129 <a name="l00130"></a>00130 <span class="comment">// These are internal functions; Please dont use.</span> <a name="l00131"></a>00131 <span class="comment">// they bypass the File5 caches.</span> <a name="l00132"></a>00132 <span class="keywordtype">int</span> <a class="code" href="classaffx_1_1File5__Vector.html#a4ea5d0e3daea3d2bae214e20ec8da3db" title="The internal read function. Read data from HDF5 without using our cache. ///.">read_array_io</a>( <span class="keywordtype">size_t</span> idx,<span class="keywordtype">size_t</span> cnt,<span class="keywordtype">void</span>* buf); <a name="l00133"></a>00133 <span class="keywordtype">int</span> <a class="code" href="classaffx_1_1File5__Vector.html#adae5a8ae91ff14d67fbfe4ac4c36ad24" title="The internal write function. Write data to HDF5 without using our cache. ///.">write_array_io</a>(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">size_t</span> cnt,<span class="keyword">const</span> <span class="keywordtype">void</span>* buf); <a name="l00134"></a>00134 <a name="l00135"></a>00135 <span class="comment">// these methods can be used if you know what you are doing.</span> <a name="l00136"></a>00136 <span class="comment">// (IE: you have checked the types and done the allocations.)</span> <a name="l00137"></a>00137 <span class="comment">// they flush the File5 cache before doing the IO.</span> <a name="l00138"></a>00138 <span class="comment">// you should know the size of the elements.</span> <a name="l00139"></a>00139 <span class="keywordtype">int</span> <a class="code" href="classaffx_1_1File5__Vector.html#a86d812a587fef6d9ad8d1125a603075a" title="Read data into an array provided by the user. //.">read_array</a>( <span class="keywordtype">size_t</span> idx,<span class="keywordtype">size_t</span> cnt,<span class="keywordtype">void</span>* buf); <a name="l00140"></a>00140 <span class="keywordtype">int</span> <a class="code" href="classaffx_1_1File5__Vector.html#a23bbff7683141caa17be420bec5316e5" title="Write data into an array provided by the user //.">write_array</a>(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">size_t</span> cnt,<span class="keyword">const</span> <span class="keywordtype">void</span>* buf); <a name="l00141"></a>00141 <a name="l00142"></a>00142 <span class="comment">//</span> <a name="l00143"></a>00143 <span class="keywordtype">int</span> dump(); <a name="l00144"></a>00144 <span class="keywordtype">int</span> dump1(); <a name="l00145"></a>00145 <a name="l00146"></a>00146 <span class="comment">//</span> <a name="l00147"></a>00147 <span class="keywordtype">size_t</span> size(); <a name="l00148"></a>00148 <span class="keywordtype">bool</span> empty(); <a name="l00149"></a>00149 <a name="l00150"></a>00150 <span class="comment">//</span> <a name="l00151"></a>00151 <span class="keyword">virtual</span> <span class="keywordtype">char</span> file5_kind_char(); <a name="l00152"></a>00152 <a name="l00153"></a>00153 <span class="comment">//</span> <a name="l00154"></a>00154 <span class="keywordtype">size_t</span> resize(<span class="keywordtype">size_t</span> size); <a name="l00155"></a>00155 <span class="keywordtype">size_t</span> reserve(<span class="keywordtype">size_t</span> size); <a name="l00156"></a>00156 <span class="keywordtype">size_t</span> reserved(); <a name="l00157"></a>00157 <span class="comment">//</span> <a name="l00158"></a>00158 <span class="keywordtype">size_t</span> resizeFile(<span class="keywordtype">size_t</span> size); <a name="l00159"></a>00159 <span class="keywordtype">size_t</span> reserveFile(<span class="keywordtype">size_t</span> size); <a name="l00160"></a>00160 <span class="keywordtype">size_t</span> setFileSize(<span class="keywordtype">size_t</span> size); <a name="l00161"></a>00161 <span class="comment">//</span> <a name="l00162"></a>00162 <span class="keywordtype">size_t</span> dtype_size(); <a name="l00163"></a>00163 <a name="l00164"></a>00164 <span class="keyword">inline</span> affx::File5_dtype_t getDType() { <span class="keywordflow">return</span> m_dtype; } <a name="l00165"></a>00165 <span class="comment">//</span> <a name="l00166"></a>00166 affx::File5_dtype_t file5_dtype(); <a name="l00167"></a>00167 <a name="l00168"></a>00168 <a name="l00169"></a>00169 <span class="comment"></span> <a name="l00170"></a>00170 <span class="comment"> //// Accessors</span> <a name="l00171"></a>00171 <span class="comment"></span> <span class="comment">//int pop_back();</span> <a name="l00172"></a>00172 <span class="keywordtype">int</span> push_back(<span class="keywordtype">int</span> val); <a name="l00173"></a>00173 <span class="keywordtype">int</span> <span class="keyword">get</span>(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">int</span>* val); <a name="l00174"></a>00174 <span class="keywordtype">int</span> <span class="keyword">get</span>(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">char</span>* val); <a name="l00175"></a>00175 <span class="keywordtype">int</span> <span class="keyword">get</span>(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">float</span>* val); <a name="l00176"></a>00176 <span class="keywordtype">int</span> <span class="keyword">get</span>(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">double</span>* val); <a name="l00177"></a>00177 <a name="l00178"></a>00178 <span class="comment">//</span> <a name="l00179"></a>00179 <span class="comment">//int pop_back_c();</span> <a name="l00180"></a>00180 <span class="keywordtype">int</span> get_c(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">char</span>* val); <a name="l00181"></a>00181 <span class="comment">//int&amp; at_i(size_t idx);</span> <a name="l00182"></a>00182 <span class="keywordtype">int</span> assign_c(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">char</span> val); <a name="l00183"></a>00183 <span class="keywordtype">int</span> push_back_c(<span class="keywordtype">char</span> val); <a name="l00184"></a>00184 <span class="comment">//</span> <a name="l00185"></a>00185 <span class="keywordtype">int</span> read_vector(<span class="keywordtype">size_t</span> idx,std::vector&lt;char&gt;* vec); <a name="l00186"></a>00186 <span class="keywordtype">int</span> write_vector(<span class="keywordtype">size_t</span> idx,<span class="keyword">const</span> std::vector&lt;char&gt;* vec); <a name="l00187"></a>00187 <a name="l00188"></a>00188 <span class="comment">//</span> <a name="l00189"></a>00189 <span class="comment">//int pop_back_s();</span> <a name="l00190"></a>00190 <span class="keywordtype">int</span> get_s(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">short</span>* val); <a name="l00191"></a>00191 <span class="comment">//int&amp; at_i(size_t idx);</span> <a name="l00192"></a>00192 <span class="keywordtype">int</span> assign_s(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">short</span> val); <a name="l00193"></a>00193 <span class="keywordtype">int</span> push_back_s(<span class="keywordtype">short</span> val); <a name="l00194"></a>00194 <span class="comment">//</span> <a name="l00195"></a>00195 <span class="keywordtype">int</span> read_vector(<span class="keywordtype">size_t</span> idx,std::vector&lt;short&gt;* vec); <a name="l00196"></a>00196 <span class="keywordtype">int</span> write_vector(<span class="keywordtype">size_t</span> idx,<span class="keyword">const</span> std::vector&lt;short&gt;* vec); <a name="l00197"></a>00197 <a name="l00198"></a>00198 <span class="comment">// ints</span> <a name="l00199"></a>00199 <span class="comment">//int pop_back_i();</span> <a name="l00200"></a>00200 <span class="keywordtype">int</span> get_i(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">int</span>* val); <a name="l00201"></a>00201 <span class="comment">//int&amp; at_i(size_t idx);</span> <a name="l00202"></a>00202 <span class="keywordtype">int</span> assign_i(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">int</span> val); <a name="l00203"></a>00203 <span class="keywordtype">int</span> push_back_i(<span class="keywordtype">int</span> val); <a name="l00204"></a>00204 <span class="comment">//</span> <a name="l00205"></a>00205 <span class="keywordtype">int</span> read_vector(<span class="keywordtype">size_t</span> idx,std::vector&lt;int&gt;* vec); <a name="l00206"></a>00206 <span class="keywordtype">int</span> write_vector(<span class="keywordtype">size_t</span> idx,<span class="keyword">const</span> std::vector&lt;int&gt;* vec); <a name="l00207"></a>00207 <a name="l00208"></a>00208 <span class="comment">// floats</span> <a name="l00209"></a>00209 <span class="comment">//int pop_back_f();</span> <a name="l00210"></a>00210 <span class="keywordtype">int</span> get_f(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">float</span>* val); <a name="l00211"></a>00211 <span class="comment">//float&amp; at_f(size_t idx);</span> <a name="l00212"></a>00212 <span class="keywordtype">int</span> assign_f(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">float</span> val); <a name="l00213"></a>00213 <span class="keywordtype">int</span> push_back_f(<span class="keywordtype">float</span> val); <a name="l00214"></a>00214 <span class="keywordtype">int</span> read_vector(<span class="keywordtype">size_t</span> idx,std::vector&lt;float&gt;* vec); <a name="l00215"></a>00215 <span class="keywordtype">int</span> write_vector(<span class="keywordtype">size_t</span> idx,<span class="keyword">const</span> std::vector&lt;float&gt;* vec); <a name="l00216"></a>00216 <a name="l00217"></a>00217 <span class="comment">// doubles</span> <a name="l00218"></a>00218 <span class="comment">//int pop_back_d();</span> <a name="l00219"></a>00219 <span class="keywordtype">int</span> get_d(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">double</span>* val); <a name="l00220"></a>00220 <span class="comment">//double&amp; at_d(size_t idx);</span> <a name="l00221"></a>00221 <span class="keywordtype">int</span> assign_d(<span class="keywordtype">size_t</span> idx,<span class="keywordtype">double</span> val); <a name="l00222"></a>00222 <span class="keywordtype">int</span> push_back_d(<span class="keywordtype">double</span> val); <a name="l00223"></a>00223 <span class="comment">//</span> <a name="l00224"></a>00224 <span class="keywordtype">int</span> read_vector(<span class="keywordtype">size_t</span> idx,std::vector&lt;double&gt;* vec); <a name="l00225"></a>00225 <span class="keywordtype">int</span> write_vector(<span class="keywordtype">size_t</span> idx,<span class="keyword">const</span> std::vector&lt;double&gt;* vec); <a name="l00226"></a>00226 <a name="l00227"></a>00227 <span class="comment">// strings</span> <a name="l00228"></a>00228 <span class="comment">// int pop_back_string();</span> <a name="l00229"></a>00229 <span class="keywordtype">int</span> <span class="keyword">get</span>(<span class="keywordtype">size_t</span> idx,std::string* val); <a name="l00230"></a>00230 <span class="comment">//std::string&amp; at_string(size_t idx);</span> <a name="l00231"></a>00231 <span class="keywordtype">int</span> assign_string(<span class="keywordtype">size_t</span> idx,<span class="keyword">const</span> std::string&amp; val); <a name="l00232"></a>00232 <span class="keywordtype">int</span> <a class="code" href="classaffx_1_1File5__Vector.html#a61c1744671008ddeb7f482de6dbfef6a">push_back_string</a>(<span class="keyword">const</span> std::string&amp; val); <a name="l00233"></a>00233 <span class="comment">//</span> <a name="l00234"></a>00234 <span class="keywordtype">int</span> read_vector(<span class="keywordtype">size_t</span> idx,std::vector&lt;std::string&gt;* vec); <a name="l00235"></a>00235 <span class="keywordtype">int</span> write_vector(<span class="keywordtype">size_t</span> idx,<span class="keyword">const</span> std::vector&lt;std::string&gt;* vec); <a name="l00236"></a>00236 <a name="l00237"></a>00237 <span class="comment">//</span> <a name="l00238"></a>00238 <span class="keywordtype">int</span> getAsStr(<span class="keywordtype">size_t</span> idx,std::string* str); <a name="l00239"></a>00239 <span class="comment">//</span> <a name="l00240"></a>00240 <span class="keywordtype">int</span> getAsStrVector(std::vector&lt;std::string&gt;* strvec); <a name="l00241"></a>00241 <span class="keywordtype">int</span> getAsStrVector(std::vector&lt;std::string&gt;* strvec,<span class="keywordtype">size_t</span> read_start,<span class="keywordtype">size_t</span> read_end); <a name="l00242"></a>00242 <a name="l00243"></a>00243 <span class="comment">//</span> <a name="l00244"></a>00244 <span class="keywordtype">void</span> assert_dtype(affx::File5_dtype_t dtype,<span class="keyword">const</span> std::string&amp; msg); <a name="l00245"></a>00245 <a name="l00246"></a>00246 }; <a name="l00247"></a>00247 <a name="l00248"></a>00248 <span class="preprocessor">#endif // _FILE5_VECTOR_H_</span> </pre></div></div> </div> <hr class="footer"/><address class="footer"><small>Generated on Fri Mar 20 2015 18:03:18 for Affymetrix Power Tools by&nbsp; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.1 </small></address> </body> </html>
cpp_component/3rdparty/enet/docs/html/list_8c.html
qianqians/abelkhan
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.13"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>ENet: list.c File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">ENet &#160;<span id="projectnumber">v1.3.17</span> </div> <div id="projectbrief">Reliable UDP networking library</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#define-members">Macros</a> &#124; <a href="#func-members">Functions</a> </div> <div class="headertitle"> <div class="title">list.c File Reference</div> </div> </div><!--header--> <div class="contents"> <p>ENet linked list functions. <a href="#details">More...</a></p> <div class="textblock"><code>#include &quot;<a class="el" href="enet_8h.html">enet/enet.h</a>&quot;</code><br /> </div><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="define-members"></a> Macros</h2></td></tr> <tr class="memitem:a0dc3ac14ddf12c81cb53d3e662ad277f"><td class="memItemLeft" align="right" valign="top">#define&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="list_8c.html#a0dc3ac14ddf12c81cb53d3e662ad277f">ENET_BUILDING_LIB</a>&#160;&#160;&#160;1</td></tr> <tr class="separator:a0dc3ac14ddf12c81cb53d3e662ad277f"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="func-members"></a> Functions</h2></td></tr> <tr class="memitem:ga94d06840adb246fbaba78abaaf172892"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__list.html#ga94d06840adb246fbaba78abaaf172892">enet_list_clear</a> (<a class="el" href="structENetList.html">ENetList</a> *list)</td></tr> <tr class="separator:ga94d06840adb246fbaba78abaaf172892"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga79bd28f859be551e2019f8b8bec8bcd4"><td class="memItemLeft" align="right" valign="top"><a class="el" href="list_8h.html#acb50c267c16b56058e231e2a82530d05">ENetListIterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__list.html#ga79bd28f859be551e2019f8b8bec8bcd4">enet_list_insert</a> (<a class="el" href="list_8h.html#acb50c267c16b56058e231e2a82530d05">ENetListIterator</a> position, void *data)</td></tr> <tr class="separator:ga79bd28f859be551e2019f8b8bec8bcd4"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga5b1b766ddd29736099ea167729292ac1"><td class="memItemLeft" align="right" valign="top"><a class="el" href="list_8h.html#acb50c267c16b56058e231e2a82530d05">ENetListIterator</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__list.html#ga5b1b766ddd29736099ea167729292ac1">enet_list_move</a> (<a class="el" href="list_8h.html#acb50c267c16b56058e231e2a82530d05">ENetListIterator</a> position, void *dataFirst, void *dataLast)</td></tr> <tr class="separator:ga5b1b766ddd29736099ea167729292ac1"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga7ee82bbce4bbb8d5cf8a59a744e26f0d"><td class="memItemLeft" align="right" valign="top">void *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__list.html#ga7ee82bbce4bbb8d5cf8a59a744e26f0d">enet_list_remove</a> (<a class="el" href="list_8h.html#acb50c267c16b56058e231e2a82530d05">ENetListIterator</a> position)</td></tr> <tr class="separator:ga7ee82bbce4bbb8d5cf8a59a744e26f0d"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ga9279ceeda719e5079aef1b35ff36ac6e"><td class="memItemLeft" align="right" valign="top">size_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__list.html#ga9279ceeda719e5079aef1b35ff36ac6e">enet_list_size</a> (<a class="el" href="structENetList.html">ENetList</a> *list)</td></tr> <tr class="separator:ga9279ceeda719e5079aef1b35ff36ac6e"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>ENet linked list functions. </p> </div><h2 class="groupheader">Macro Definition Documentation</h2> <a id="a0dc3ac14ddf12c81cb53d3e662ad277f"></a> <h2 class="memtitle"><span class="permalink"><a href="#a0dc3ac14ddf12c81cb53d3e662ad277f">&#9670;&nbsp;</a></span>ENET_BUILDING_LIB</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">#define ENET_BUILDING_LIB&#160;&#160;&#160;1</td> </tr> </table> </div><div class="memdoc"> </div> </div> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Sun Nov 15 2020 12:44:15 for ENet by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.13 </small></address> </body> </html>
plugins/Machine_Learning/doc/javadoc/gate/creole/ml/svmlight/package-use.html
liuhongchao/GATE_Developer_7.0
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_24) on Thu Feb 09 13:40:09 GMT 2012 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Package gate.creole.ml.svmlight (GATE learning plugin JavaDoc) </TITLE> <META NAME="date" CONTENT="2012-02-09"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package gate.creole.ml.svmlight (GATE learning plugin JavaDoc)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?gate/creole/ml/svmlight/package-use.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Package<br>gate.creole.ml.svmlight</B></H2> </CENTER> No usage of gate.creole.ml.svmlight <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?gate/creole/ml/svmlight/package-use.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-use.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
qt_help/tutorial/HMI_de.html
MECTsrl/mect_plugins
<html> <head> <meta http-equiv="content-type" content="text/html; charset=windows-1252"/> <title>HMI</title> <style type="text/css"> @page { size: 21.59cm 27.94cm; margin-right: 2cm; margin-top: 2.5cm; margin-bottom: 1.5cm } p { margin-bottom: 0.21cm; direction: ltr; color: #000000; orphans: 0; widows: 0 } p.western { font-family: "Arial", "Times New Roman", serif; font-size: 10pt; so-language: it-IT } h3.western { font-family: "Liberation Sans", "Arial", sans-serif; so-language: it-IT } a:link { color: #0000ff } a.cjk:visited { so-language: zh-CN } </style> </head> <body> <h3 class="western">HMI</h3> <p class="western">Die Programmierung der HMI-Benutzerschnittstelle erfolgt in der QtCreator-Umgebung von benutzerdefiniertem Qt über ATCMPlugin.</p> <p class="western"><i><strong>ATCMPlugin</strong></i> ATCMPlugin ist eine Sammlung von Grafischen Objekten, mit denen Sie Benutzeroberflächen über das Bedienfeld erstellen können, wodurch das Schreiben von Code minimal und oft abwesend ist.</p> <p class="western">Die Grafikobjekte basieren auf den <i>Qt 4.8.5</i>-Bibliotheken (<font color="#0000ff"><u><a class="western" href="http://qt-project.org/doc/qt-4.8">http://qt-project.org/doc/qt-4.8</a></u></font>) die wiederum in C ++ implementiert sind.</p> <p class="western">Die vom <i><strong>ATCMPlugin</strong></i> verwendeten Variablen müssen explizit in der <i>&ldquo;Crosstable Editor&rdquo;</i> aufgelistet werden.</p> <p class="western"><strong>Die Crosstable enthält alle Variablen, die zum Erstellen Ihrer Anwendung verwendet werden.</strong></p> <p class="western">Die Installation von Qt, die mit den MECT-Produkten verfügbar ist , ermöglicht die Kompilierung des Projekts im DEBUG-Modus und im RELEASE-Modus. Im RELEASE-Modus ist es nicht möglich, Schritt für Schritt zu debuggen, und daher ist die ausführbare Datei sehr klein, während es im DEBUG-Modus möglich ist, zu debuggen.</p> <p class="western">Siehen Sie Kapitel &ldquo;<font color="#0000ff"><u><a class="western" href="Trasferimento_applicazione_debug_de.html">Übertragung der Anwendung auf das Gerät in DEBUG</a></u></font>&rdquo;</p> <br/> </body> </html>
tag/ponteiros.html
rafaelhenrique/rafaelhenrique.github.io
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="Abra seu Código!!!, Programando, devopando e deixando minha barba mais fofinha"> <link rel="alternate" href="http://blog.abraseucodigo.com.br/feeds/all.atom.xml" type="application/atom+xml" title="Abra seu Código!!! Full Atom Feed"/> <title>ponteiros tag // Abra seu Código!!! // Programando, devopando e deixando minha barba mais fofinha</title> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.3.0/pure-min.css"> <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" href="http://blog.abraseucodigo.com.br/theme/css/pure.css"> <link rel="stylesheet" href="http://blog.abraseucodigo.com.br/theme/css/custom.css"> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> </head> <body> <div class="pure-g-r" id="layout"> <div class="sidebar pure-u"> <div class="cover-img" style="background-color: #000; background-image: url('http://i.imgur.com/slRvZdw.png');"> <div class="cover-body"> <header class="header"> <hgroup> <!-- <img class="gravatar" src="https://www.gravatar.com/avatar/ed7e6b96c041beb6d2e86b48c74a2055?s=200"> --> <h1 class="brand-main"><a href="/">Abra seu Código!!!</a></h1> <p class="tagline">Programando, devopando e deixando minha barba mais fofinha</p> <p class="links"><a href="https://groups.google.com/forum/#!forum/python-sorocaba">Python Sorocaba</a></p> <p class="links"><a href="http://www.meetup.com/pt-BR/Grupy-SP/">GruPy-SP</a></p> <p class="social"> <a href="https://twitter.com/rafaelhenrique" title="twitter"> <i class="fa fa-twitter fa-2x"></i> </a> <a href="https://github.com/rafaelhenrique" title="github"> <i class="fa fa-github fa-2x"></i> </a> <a href="https://www.youtube.com/rafaelhenriqu" title="youtube"> <i class="fa fa-youtube fa-2x"></i> </a> <a href="http://www.linkedin.com/pub/rafael-henrique-da-silva-correia/35/67a/5b3" title="linkedin"> <i class="fa fa-linkedin fa-2x"></i> </a> <a href="https://speakerdeck.com/rafaelhenrique" title="speakerdeck"> <img src="http://blog.abraseucodigo.com.br/theme/images/speakerdeck.png" style="max-height:12%; max-width:12%;"> </a> <a href="https://t.me/abraseucodigo" title="telegram"> <i class="fa fa-telegram fa-2x"></i> </a> <a href="feeds/all.atom.xml" title="rss"> <i class="fa fa-rss fa-2x"></i> </a> <p> <p class="tagline"> Small Acts Make Great Revolutions <a target="_blank" href="http://smallactsmanifesto.org" title="Small Acts Manifesto"> <img src="http://smallactsmanifesto.org/static/images/smallacts-badge-80x15.png" style="border: none;" alt="Small Acts Manifesto"/> </a> </p> </hgroup> </header> </div> </div> </div> <div class="pure-u-1"> <div class="content"> <div class="google-search"> <script> (function() { var cx = '000279532842413632704:_5xflu5bv0y'; var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true; gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//cse.google.com/cse.js?cx=' + cx; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s); })(); </script> <gcse:searchbox-only resultsUrl="http://blog.abraseucodigo.com.br/pages/search.html" newWindow="false" enableAutoComplete=true></gcse:searchbox-only> </div> <!-- A wrapper for all the blog posts --> <div class="posts"> <h1 class="content-subhead"> Posts tagged 'ponteiros' </h1> <section class="post"> <header class="post-header"> <h3><a class="post-title" href="http://blog.abraseucodigo.com.br/ponteiros-sao-legais.html">Ponteiros são legais</a></h3> <p class="post-meta"><p class="first last">Veja aqui como ponteiros em Golang são legais!</p> </p> <p class="post-meta"> em <a href="http://blog.abraseucodigo.com.br/category/golang.html">Golang</a> &middot; janeiro 06, 2018 </p> </header> </section><div class="pagination-wrapper content-subhead"> <div class="pagination"> <div class="pagination-left"> &nbsp; </div> <span>Page 1 / 1</span> <div class="pagination-right"> </div> </div> </div><footer class="footer"> <p>&copy; Abra seu Código!!! &ndash; Built with <a href="https://github.com/PurePelicanTheme/pure">Pure Theme</a> for <a href="http://blog.getpelican.com/">Pelican</a> </p> <p>Create your blog too, <a href="https://github.com/rafaelhenrique/rafaelhenrique.github.io/tree/pelican">just clone this blog</a></p> </footer> </div> </div> </div> </div> <script> var $top = $('.go-top'); // Show or hide the sticky footer button $(window).scroll(function() { if ($(this).scrollTop() > 200) { $top.fadeIn(200); } else { $top.fadeOut(200); } }); // Animate the scroll to top $top.click(function(event) { event.preventDefault(); $('html, body').animate({scrollTop: 0}, 300); }) // Makes sure that the href="#" attached to the <a> elements // don't scroll you back up the page. $('body').on('click', 'a[href="#"]', function(event) { event.preventDefault(); }); </script> <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-66364849-1', 'blog.abraseucodigo.com.br'); ga('require', 'linkid', 'linkid.js'); ga('send', 'pageview'); </script> </body> </html>
resource_avi/avi/templates/avi/panel_enter_query.html
parameterspace-ie/example-avis
<div class="panel panel-info"> <div class="panel-heading"> Query help </div> <div class="panel-body"> Enter in an ADQL query. </div> </div> <form id="dbquery_form" method="POST"> {% csrf_token %} <div class="form-group"> <label for="query">GACS-Dev VOTable query</label> <input class="form-control" id="query" name="query" placeholder="Enter your query here" required=true value="SELECT DISTANCE(POINT('ICRS',ra,dec), POINT('ICRS',266.41683,-29.00781)) AS dist, * FROM public.gaia_source WHERE 1=CONTAINS(POINT('ICRS',ra,dec),CIRCLE('ICRS',266.41683,-29.00781, 0.08333333)) ORDER BY dist ASC"> <label for="outfile">Output file</label> <input class="form-control" id="outfile" name="outfile" placeholder="Enter your output file here" required=true value="SampleFile_{{millis}}.out"> <label for="outfile">RAM allocation (<span id="ramtxt">1024</span>MB)</label> <div id="ramslider"></div> <input id="ramalloc" name="ramalloc" value="1024" style="display:none;"> </div> <button type="submit" class="btn btn-default">Queue AVI job</button> </form> {% load staticfiles %} <script src="{% static 'avi/js/panel_enter_query.js' %}"></script> <link href="https://cdnjs.cloudflare.com/ajax/libs/noUiSlider/6.2.0/jquery.nouislider.min.css" rel="stylesheet"> <script src="https://cdnjs.cloudflare.com/ajax/libs/noUiSlider/6.2.0/jquery.nouislider.min.js"></script> <script> // window.user_profile is provided by the AVI Framework var resource_pool = window.user_profile.resource_pool; $(document).ready(function(){ $(function() { $("#ramslider").noUiSlider({ handles: 1, start:[1024], step: 1, range: { 'min': 128, 'max': resource_pool.ram } }).on('slide', function( event, ramvalue ) { var ramval = Math.round(ramvalue) console.log(ramval); $("#ramtxt").text(ramval); $("#ramalloc").val(ramval); }); }); }); </script>
doc/doxygen/a00089_a8a06cbd69eada1ca9108332dfceb91b1.html
huyenntt/newSMC
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Petri Net API: pnapi::Port::getAllLabels</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">Petri Net API &#160;<span id="projectnumber">Version 4.02</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.1.2 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Data&#160;Structures</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="a00178.html">pnapi</a></li><li class="navelem"><a class="el" href="a00089.html">Port</a></li> </ul> </div> </div><!-- top --> <div class="contents"> <table cellspacing="0" cellpadding="0" border="0"> <tr> <td valign="top"> <div class="navtab"> <table> <tr><td class="navtab"><a class="qindex" href="a00089_acdfaf4daa7aaaf2e5b93d9c7066ddc6f.html#acdfaf4daa7aaaf2e5b93d9c7066ddc6f">addInputLabel</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a64d336268f60f8dc4c8b29d3f0c4f668.html#a64d336268f60f8dc4c8b29d3f0c4f668">addLabel</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_ab3bfcf6513fb63f163cdbbfd0925cdd8.html#ab3bfcf6513fb63f163cdbbfd0925cdd8">addLabel</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a6971b10c99ddc20ad5dfbaa9bb343f9c.html#a6971b10c99ddc20ad5dfbaa9bb343f9c">addOutputLabel</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a8e1c81412c6715f6bdf461c50cf74551.html#a8e1c81412c6715f6bdf461c50cf74551">addSynchronousLabel</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a5d29775a99cd929140245e8fe40a98c9.html#a5d29775a99cd929140245e8fe40a98c9">allLabels_</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a4beab75910044ce36b9dbdc674b75a5f.html#a4beab75910044ce36b9dbdc674b75a5f">findLabel</a></td></tr> <tr><td class="navtab"><a class="qindexHL" href="a00089_a8a06cbd69eada1ca9108332dfceb91b1.html#a8a06cbd69eada1ca9108332dfceb91b1">getAllLabels</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_afa5490afaf115868a53d9f39f6b3ef96.html#afa5490afaf115868a53d9f39f6b3ef96">getInputLabels</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a1919b4e09df931b9fb4d2584e3f3612d.html#a1919b4e09df931b9fb4d2584e3f3612d">getName</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a5792c01da5a5f6b0ab50bb5c63e50e14.html#a5792c01da5a5f6b0ab50bb5c63e50e14">getOutputLabels</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_aedb80cfbab816774c5f5cfc6e0cd33bd.html#aedb80cfbab816774c5f5cfc6e0cd33bd">getPetriNet</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a8392ca5de52f5413f99eaf455a61f3d7.html#a8392ca5de52f5413f99eaf455a61f3d7">getPortString</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_afdac03d99f91ef34d83d3f6f40eb9a48.html#afdac03d99f91ef34d83d3f6f40eb9a48">getSynchronousLabels</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a052a2561d13ee937b79737cb6e11148b.html#a052a2561d13ee937b79737cb6e11148b">input_</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a7105f63a0c959e7a10cbc8afe05300c6.html#a7105f63a0c959e7a10cbc8afe05300c6">isEmpty</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a79c84be1e749fb37287894fcb20f7c3e.html#a79c84be1e749fb37287894fcb20f7c3e">mirror</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a5194ac555f1b76a419398761d685b270.html#a5194ac555f1b76a419398761d685b270">name_</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a10459c720969439f859d93217d454324.html#a10459c720969439f859d93217d454324">net_</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_aace22dc6e9791bd1eccbb3d203db121f.html#aace22dc6e9791bd1eccbb3d203db121f">output_</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a6c716127ce9cbc3f0567df25b54275ee.html#a6c716127ce9cbc3f0567df25b54275ee">Port</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a467339d1b49fabb1da851800c24cd79a.html#a467339d1b49fabb1da851800c24cd79a">Port</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a9264c9972d76ad1a3766873b9527fde1.html#a9264c9972d76ad1a3766873b9527fde1">Port</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a0687d0ccf7bcf300bc938bfcb1b8387f.html#a0687d0ccf7bcf300bc938bfcb1b8387f">prefixLabels</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_ab298879484919b8a0e64aa7c4ab74c73.html#ab298879484919b8a0e64aa7c4ab74c73">removeLabel</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_ac83997645a47a89468e150c2147e52df.html#ac83997645a47a89468e150c2147e52df">setName</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a2a3bc71ba83a36d70459266f721bad02.html#a2a3bc71ba83a36d70459266f721bad02">synchronous_</a></td></tr> <tr><td class="navtab"><a class="qindex" href="a00089_a58891de25fda8ed01bc915b07b9d88ad.html#a58891de25fda8ed01bc915b07b9d88ad">~Port</a></td></tr> </table> </div> </td> <td valign="top" class="mempage"> <a class="anchor" id="a8a06cbd69eada1ca9108332dfceb91b1"></a> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">const std::set&lt; <a class="el" href="a00038.html">Label</a> * &gt; &amp; pnapi::Port::getAllLabels </td> <td>(</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </div><div class="memdoc"> <p>returning the set of all labels </p> <p>Definition at line <a class="el" href="a00171_source.html#l00239">239</a> of file <a class="el" href="a00171_source.html">port.cc</a>.</p> <p>References <a class="el" href="a00172_source.html#l00112">allLabels_</a>.</p> <p>Referenced by <a class="el" href="a00112_source.html#l00241">pnapi::Interface::mergePorts()</a>, and <a class="el" href="a00114_source.html#l00952">pnapi::io::__pnml::output()</a>.</p> <div class="fragment"><div class="line">{</div> <div class="line"> <span class="keywordflow">return</span> <a class="code" href="a00089_a5d29775a99cd929140245e8fe40a98c9.html#a5d29775a99cd929140245e8fe40a98c9" title="all labels for faster processing">allLabels_</a>;</div> <div class="line">}</div> </div><!-- fragment --> <p><div class="dynheader"> Here is the caller graph for this function:</div> <div class="dyncontent"> <div class="center"><img src="a00089_a8a06cbd69eada1ca9108332dfceb91b1_a8a06cbd69eada1ca9108332dfceb91b1_icgraph.png" border="0" usemap="#a00089_a8a06cbd69eada1ca9108332dfceb91b1_a8a06cbd69eada1ca9108332dfceb91b1_icgraph" alt=""/></div> <map name="a00089_a8a06cbd69eada1ca9108332dfceb91b1_a8a06cbd69eada1ca9108332dfceb91b1_icgraph" id="a00089_a8a06cbd69eada1ca9108332dfceb91b1_a8a06cbd69eada1ca9108332dfceb91b1_icgraph"> <area shape="rect" id="node3" href="a00030_a4390db5d72ab997720b0185e04958316.html#a4390db5d72ab997720b0185e04958316" title="merge two ports" alt="" coords="217,5,399,33"/><area shape="rect" id="node5" href="a00184_a66cebcf866e45b036b3be1a849a77239.html#a66cebcf866e45b036b3be1a849a77239" title="port output" alt="" coords="248,55,368,99"/></map> </div> </p> </div> </div> </td> </tr> </table> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Thu Sep 17 2015 15:58:08 for Petri Net API by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.1.2 </small></address> </body> </html>
core/html/structshyft_1_1core_1_1hbv__soil_1_1state.html
statkraft/shyft-doc
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.13"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <title>Shyft: shyft::core::hbv_soil::state Struct Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">Shyft &#160;<span id="projectnumber">master</span> </div> <div id="projectbrief">Shyft</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.13 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <script type="text/javascript" src="menudata.js"></script> <script type="text/javascript" src="menu.js"></script> <script type="text/javascript"> $(function() { initMenu('',true,false,'search.php','Search'); $(document).ready(function() { init_search(); }); }); </script> <div id="main-nav"></div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('structshyft_1_1core_1_1hbv__soil_1_1state.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="#pub-attribs">Public Attributes</a> &#124; <a href="structshyft_1_1core_1_1hbv__soil_1_1state-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">shyft::core::hbv_soil::state Struct Reference</div> </div> </div><!--header--> <div class="contents"> <p><code>#include &lt;<a class="el" href="hbv__soil_8h_source.html">hbv_soil.h</a>&gt;</code></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:ac8a2427b31ddf6fe0ad165181d077c9c"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structshyft_1_1core_1_1hbv__soil_1_1state.html#ac8a2427b31ddf6fe0ad165181d077c9c">state</a> (double <a class="el" href="structshyft_1_1core_1_1hbv__soil_1_1state.html#ac7e74f152f8f8a96f8ff2d5aec10013f">sm</a>=0.0)</td></tr> <tr class="separator:ac8a2427b31ddf6fe0ad165181d077c9c"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3aa7a45e5440340663d191128ca9c9a2"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structshyft_1_1core_1_1hbv__soil_1_1state.html#a3aa7a45e5440340663d191128ca9c9a2">operator==</a> (const <a class="el" href="structshyft_1_1core_1_1hbv__soil_1_1state.html">state</a> &amp;x) const</td></tr> <tr class="separator:a3aa7a45e5440340663d191128ca9c9a2"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aa934b9614e79a24e8b3ad7287259755b"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structshyft_1_1core_1_1hbv__soil_1_1state.html#aa934b9614e79a24e8b3ad7287259755b">x_serialize_decl</a> ()</td></tr> <tr class="separator:aa934b9614e79a24e8b3ad7287259755b"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a> Public Attributes</h2></td></tr> <tr class="memitem:ac7e74f152f8f8a96f8ff2d5aec10013f"><td class="memItemLeft" align="right" valign="top">double&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structshyft_1_1core_1_1hbv__soil_1_1state.html#ac7e74f152f8f8a96f8ff2d5aec10013f">sm</a> =50.0</td></tr> <tr class="separator:ac7e74f152f8f8a96f8ff2d5aec10013f"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"> <p class="definition">Definition at line <a class="el" href="hbv__soil_8h_source.html#l00025">25</a> of file <a class="el" href="hbv__soil_8h_source.html">hbv_soil.h</a>.</p> </div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2> <a id="ac8a2427b31ddf6fe0ad165181d077c9c"></a> <h2 class="memtitle"><span class="permalink"><a href="#ac8a2427b31ddf6fe0ad165181d077c9c">&#9670;&nbsp;</a></span>state()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">shyft::core::hbv_soil::state::state </td> <td>(</td> <td class="paramtype">double&#160;</td> <td class="paramname"><em>sm</em> = <code>0.0</code></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">explicit</span></span> </td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="hbv__soil_8h_source.html#l00026">26</a> of file <a class="el" href="hbv__soil_8h_source.html">hbv_soil.h</a>.</p> </div> </div> <h2 class="groupheader">Member Function Documentation</h2> <a id="a3aa7a45e5440340663d191128ca9c9a2"></a> <h2 class="memtitle"><span class="permalink"><a href="#a3aa7a45e5440340663d191128ca9c9a2">&#9670;&nbsp;</a></span>operator==()</h2> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">bool shyft::core::hbv_soil::state::operator== </td> <td>(</td> <td class="paramtype">const <a class="el" href="structshyft_1_1core_1_1hbv__soil_1_1state.html">state</a> &amp;&#160;</td> <td class="paramname"><em>x</em></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="hbv__soil_8h_source.html#l00028">28</a> of file <a class="el" href="hbv__soil_8h_source.html">hbv_soil.h</a>.</p> </div> </div> <a id="aa934b9614e79a24e8b3ad7287259755b"></a> <h2 class="memtitle"><span class="permalink"><a href="#aa934b9614e79a24e8b3ad7287259755b">&#9670;&nbsp;</a></span>x_serialize_decl()</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">shyft::core::hbv_soil::state::x_serialize_decl </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </div><div class="memdoc"> </div> </div> <h2 class="groupheader">Member Data Documentation</h2> <a id="ac7e74f152f8f8a96f8ff2d5aec10013f"></a> <h2 class="memtitle"><span class="permalink"><a href="#ac7e74f152f8f8a96f8ff2d5aec10013f">&#9670;&nbsp;</a></span>sm</h2> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">double shyft::core::hbv_soil::state::sm =50.0</td> </tr> </table> </div><div class="memdoc"> <p class="definition">Definition at line <a class="el" href="hbv__soil_8h_source.html#l00027">27</a> of file <a class="el" href="hbv__soil_8h_source.html">hbv_soil.h</a>.</p> </div> </div> <hr/>The documentation for this struct was generated from the following file:<ul> <li>/Data/johnbur/Dropbox/home/Programming/workspace/shyft_workspace/shyft/core/<a class="el" href="hbv__soil_8h_source.html">hbv_soil.h</a></li> </ul> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="namespaceshyft.html">shyft</a></li><li class="navelem"><a class="el" href="namespaceshyft_1_1core.html">core</a></li><li class="navelem"><a class="el" href="namespaceshyft_1_1core_1_1hbv__soil.html">hbv_soil</a></li><li class="navelem"><a class="el" href="structshyft_1_1core_1_1hbv__soil_1_1state.html">state</a></li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li> </ul> </div> </body> </html>
docs/nitro-nitf.sourceforge.net/apidocs/c/2.5cpp/Object_8hpp.html
mdaus/nitro
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>NITRO/CODA C++ Modules: Object.hpp File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"> <link href="doxygen.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.5.8 --> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="main.html"><span>Main&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="files.html"><span>File&nbsp;List</span></a></li> <li><a href="globals.html"><span>File&nbsp;Members</span></a></li> </ul> </div> </div> <div class="contents"> <h1>Object.hpp File Reference</h1> <p> <a href="Object_8hpp-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0"> <tr><td></td></tr> <tr><td colspan="2"><br><h2>Classes</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classnitf_1_1Object.html">nitf::Object&lt; T, DestructFunctor_T &gt;</a></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">This class keeps a pointer to an underlying C object The <a class="el" href="classnitf_1_1Object.html" title="This class keeps a pointer to an underlying C object The Object class does not destroy...">Object</a> class does not destroy or clone any memory. The sole purpose is to act as a non-invasive wrapper on top of objects internal to the NITF C core. <a href="classnitf_1_1Object.html#_details">More...</a><br></td></tr> <tr><td colspan="2"><br><h2>Namespaces</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespacenitf.html">nitf</a></td></tr> </table> </div> <hr size="1"><address style="text-align: right;"><small>Generated on Wed Dec 9 19:35:22 2009 for NITRO/CODA C++ Modules by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.8 </small></address> </body> </html>
api/files/src_ui_react_src_components_base_widget-dropdown.js.html
azotova/alloy-editor
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>src/ui/react/src/components/base/widget-dropdown.js - alloyeditor</title> <!-- Favicon --> <link rel="shortcut icon" type="image/png" href="../assets/favicon.ico"> <!-- CSS --> <link rel="stylesheet" href="../assets/vendor/prettify/prettify-min.css"> <link rel="stylesheet" href="../assets/css/main.css" id="site_styles"> <!-- AlloyUI --> <link rel="stylesheet" href="http://cdn.alloyui.com/2.0.x/aui-css/css/bootstrap.min.css"> <link rel="stylesheet" href="http://cdn.alloyui.com/2.0.x/aui-css/css/bootstrap-responsive.min.css"> <script src="http://cdn.alloyui.com/2.0.x/aui/aui-min.js"></script> </head> <body class="yui3-skin-sam"> <div class="navbar"> <div class="navbar-inner"> <h1 class="brand"> <a href="/"> <img alt="alloyeditor" src="../assets/img/logo-small.png" title="alloyeditor"> </a> </h1> <div class="nav"> <li class="divider-vertical"></li> <li> <p class="navbar-text"> API Docs for Version: <b>1.3.0</b> </p> </li> </div> </div> </div> <div id="bd" class="container"> <div class="row"> <div class="span3"> <div id="docs-sidebar" class="sidebar apidocs"> <div id="api-list"> <h2 class="off-left">APIs</h2> <div id="api-tabview"> <ul class="nav nav-tabs"> <li><a href="#api-classes">Classes</a></li> <li><a href="#api-modules">Modules</a></li> </ul> <div id="api-tabview-filter"> <input type="search" id="api-filter" placeholder="Type to filter APIs"> </div> <div id="api-tabview-panel"> <ul id="api-classes" class="apis classes tab-pane"> <li><a href="../classes/AlloyEditor.html">AlloyEditor</a></li> <li><a href="../classes/Attribute.html">Attribute</a></li> <li><a href="../classes/Base.html">Base</a></li> <li><a href="../classes/ButtonActionStyle.html">ButtonActionStyle</a></li> <li><a href="../classes/ButtonBold.html">ButtonBold</a></li> <li><a href="../classes/ButtonCamera.html">ButtonCamera</a></li> <li><a href="../classes/ButtonCameraImage.html">ButtonCameraImage</a></li> <li><a href="../classes/ButtonCfgProps.html">ButtonCfgProps</a></li> <li><a href="../classes/ButtonCode.html">ButtonCode</a></li> <li><a href="../classes/ButtonCommand.html">ButtonCommand</a></li> <li><a href="../classes/ButtonCommandActive.html">ButtonCommandActive</a></li> <li><a href="../classes/ButtonCommandListItem.html">ButtonCommandListItem</a></li> <li><a href="../classes/ButtonCommandsList.html">ButtonCommandsList</a></li> <li><a href="../classes/ButtonDropdown.html">ButtonDropdown</a></li> <li><a href="../classes/ButtonEmbed.html">ButtonEmbed</a></li> <li><a href="../classes/ButtonEmbedEdit.html">ButtonEmbedEdit</a></li> <li><a href="../classes/ButtonH1.html">ButtonH1</a></li> <li><a href="../classes/ButtonH2.html">ButtonH2</a></li> <li><a href="../classes/ButtonHline.html">ButtonHline</a></li> <li><a href="../classes/ButtonImage.html">ButtonImage</a></li> <li><a href="../classes/ButtonImageAlignCenter.html">ButtonImageAlignCenter</a></li> <li><a href="../classes/ButtonImageAlignLeft.html">ButtonImageAlignLeft</a></li> <li><a href="../classes/ButtonImageAlignRight.html">ButtonImageAlignRight</a></li> <li><a href="../classes/ButtonIndentBlock.html">ButtonIndentBlock</a></li> <li><a href="../classes/ButtonItalic.html">ButtonItalic</a></li> <li><a href="../classes/ButtonKeystroke.html">ButtonKeystroke</a></li> <li><a href="../classes/ButtonLink.html">ButtonLink</a></li> <li><a href="../classes/ButtonLinkAutocompleteList.html">ButtonLinkAutocompleteList</a></li> <li><a href="../classes/ButtonLinkEdit.html">ButtonLinkEdit</a></li> <li><a href="../classes/ButtonLinkTargetEdit.html">ButtonLinkTargetEdit</a></li> <li><a href="../classes/ButtonOrderedList.html">ButtonOrderedList</a></li> <li><a href="../classes/ButtonOutdentBlock.html">ButtonOutdentBlock</a></li> <li><a href="../classes/ButtonParagraphAlignLeft.html">ButtonParagraphAlignLeft</a></li> <li><a href="../classes/ButtonParagraphAlignRight.html">ButtonParagraphAlignRight</a></li> <li><a href="../classes/ButtonParagraphCenter.html">ButtonParagraphCenter</a></li> <li><a href="../classes/ButtonParagraphJustify.html">ButtonParagraphJustify</a></li> <li><a href="../classes/ButtonQuote.html">ButtonQuote</a></li> <li><a href="../classes/ButtonRemoveFormat.html">ButtonRemoveFormat</a></li> <li><a href="../classes/ButtonsStylesListHeader.html">ButtonsStylesListHeader</a></li> <li><a href="../classes/ButtonStateClasses.html">ButtonStateClasses</a></li> <li><a href="../classes/ButtonStrike.html">ButtonStrike</a></li> <li><a href="../classes/ButtonStyle.html">ButtonStyle</a></li> <li><a href="../classes/ButtonStyles.html">ButtonStyles</a></li> <li><a href="../classes/ButtonStylesList.html">ButtonStylesList</a></li> <li><a href="../classes/ButtonStylesListItem.html">ButtonStylesListItem</a></li> <li><a href="../classes/ButtonStylesListItemRemove.html">ButtonStylesListItemRemove</a></li> <li><a href="../classes/ButtonSubscript.html">ButtonSubscript</a></li> <li><a href="../classes/ButtonSuperscript.html">ButtonSuperscript</a></li> <li><a href="../classes/ButtonTable.html">ButtonTable</a></li> <li><a href="../classes/ButtonTableCell.html">ButtonTableCell</a></li> <li><a href="../classes/ButtonTableColumn.html">ButtonTableColumn</a></li> <li><a href="../classes/ButtonTableEdit.html">ButtonTableEdit</a></li> <li><a href="../classes/ButtonTableHeading.html">ButtonTableHeading</a></li> <li><a href="../classes/ButtonTableRemove.html">ButtonTableRemove</a></li> <li><a href="../classes/ButtonTableRow.html">ButtonTableRow</a></li> <li><a href="../classes/ButtonTargetList.html">ButtonTargetList</a></li> <li><a href="../classes/ButtonTwitter.html">ButtonTwitter</a></li> <li><a href="../classes/ButtonUnderline.html">ButtonUnderline</a></li> <li><a href="../classes/ButtonUnorderedlist.html">ButtonUnorderedlist</a></li> <li><a href="../classes/CKEDITOR.Link.html">CKEDITOR.Link</a></li> <li><a href="../classes/CKEDITOR.plugins.ae_autolink.html">CKEDITOR.plugins.ae_autolink</a></li> <li><a href="../classes/CKEDITOR.plugins.ae_buttonbridge.html">CKEDITOR.plugins.ae_buttonbridge</a></li> <li><a href="../classes/CKEDITOR.plugins.ae_menubridge.html">CKEDITOR.plugins.ae_menubridge</a></li> <li><a href="../classes/CKEDITOR.plugins.ae_menubuttonbridge.html">CKEDITOR.plugins.ae_menubuttonbridge</a></li> <li><a href="../classes/CKEDITOR.plugins.ae_panelmenubuttonbridge.html">CKEDITOR.plugins.ae_panelmenubuttonbridge</a></li> <li><a href="../classes/CKEDITOR.plugins.ae_placeholder.html">CKEDITOR.plugins.ae_placeholder</a></li> <li><a href="../classes/CKEDITOR.plugins.ae_richcombobridge.html">CKEDITOR.plugins.ae_richcombobridge</a></li> <li><a href="../classes/CKEDITOR.plugins.ae_selectionregion.html">CKEDITOR.plugins.ae_selectionregion</a></li> <li><a href="../classes/CKEDITOR.plugins.ae_uibridge.html">CKEDITOR.plugins.ae_uibridge</a></li> <li><a href="../classes/CKEDITOR.plugins.ae_uicore.html">CKEDITOR.plugins.ae_uicore</a></li> <li><a href="../classes/CKEDITOR.Table.html">CKEDITOR.Table</a></li> <li><a href="../classes/CKEDITOR.tools.html">CKEDITOR.tools</a></li> <li><a href="../classes/Core.html">Core</a></li> <li><a href="../classes/Lang.html">Lang</a></li> <li><a href="../classes/ToolbarAdd.html">ToolbarAdd</a></li> <li><a href="../classes/ToolbarButtons.html">ToolbarButtons</a></li> <li><a href="../classes/ToolbarStyles.html">ToolbarStyles</a></li> <li><a href="../classes/UI.html">UI</a></li> <li><a href="../classes/WidgetArrowBox.html">WidgetArrowBox</a></li> <li><a href="../classes/WidgetDropdown.html">WidgetDropdown</a></li> <li><a href="../classes/WidgetExclusive.html">WidgetExclusive</a></li> <li><a href="../classes/WidgetFocusManager.html">WidgetFocusManager</a></li> <li><a href="../classes/WidgetInteractionPoint.html">WidgetInteractionPoint</a></li> <li><a href="../classes/WidgetPosition.html">WidgetPosition</a></li> </ul> <ul id="api-modules" class="apis modules tab-pane"> </ul> </div> </div> </div> </div> </div> <div class="span9"> <div id="api-options" class="form-inline pull-right"> Show: <label for="api-show-inherited"> <input type="checkbox" id="api-show-inherited" checked> Inherited </label> <label for="api-show-protected"> <input type="checkbox" id="api-show-protected"> Protected </label> <label for="api-show-private"> <input type="checkbox" id="api-show-private"> Private </label> <label for="api-show-deprecated"> <input type="checkbox" id="api-show-deprecated"> Deprecated </label> </div> <div class="apidocs"> <div id="docs-main"> <div class="content"> <div class="page-header"> <h1><small>File</small> <code>src/ui/react/src/components/base/widget-dropdown.js</code></h1> </div> <div class="file"> <pre class="code prettyprint linenums"> (function() { &#x27;use strict&#x27;; /** * Provides functionality for managing different dropdowns inside a widget. * * @class WidgetDropdown */ var WidgetDropdown = { /** * Lifecycle. Invoked when a component is receiving new props. * This method is not called for the initial render. * * @method componentWillReceiveProps */ componentWillReceiveProps: function(nextProps) { this.setState({ dropdownTrigger: null, itemDropdown: null }); }, /** * Lifecycle. Invoked once before the component is mounted. * * @method getInitialState */ getInitialState: function() { return { dropdownTrigger: null, itemDropdown: null }; }, /** * Merges the provided object with two more properties: * - expanded - boolean flag which indicates if an widget should be rendered exclusively. * - toggleDropdown - function, which can be used by an widget in order to obtain exclusive state. * * @method mergeDropdownProps * @param {Object} obj The properties container which should be merged with the properties, related * to dropdown state. * @param {Object} itemKey They key of an React Widget which contains the dropdown. * @return {Object} The merged object. */ mergeDropdownProps: function(obj, itemKey) { return CKEDITOR.tools.merge(obj, { expanded: this.state.itemDropdown === itemKey ? true : false, tabIndex: this.state.dropdownTrigger === itemKey ? 0 : -1, toggleDropdown: this.toggleDropdown.bind(this, itemKey) }); }, /** * Sets the active dropdown of the widget or discards the toggled item from the state. * * @method toggleDropdown * @param {Object} itemDropdown The widget which requests to toggle its dropdown. * @param {Number} toggleDirection User movement direction when toggled via keyboard. */ toggleDropdown: function(itemDropdown, toggleDirection) { this.setState({ dropdownTrigger: itemDropdown, itemDropdown: itemDropdown !== this.state.itemDropdown ? itemDropdown : null }, function() { if (!this.state.itemDropdown) { if (this.moveFocus) { this.moveFocus(toggleDirection); } else { ReactDOM.findDOMNode(this).focus(); } } }); } }; AlloyEditor.WidgetDropdown = WidgetDropdown; }()); </pre> </div> </div> </div> </div> </div> </div> </div> <script src="../assets/vendor/prettify/prettify-min.js"></script> <script>prettyPrint();</script> <script src="../assets/js/yui-prettify.js"></script> <script src="../assets/../api.js"></script> <script src="../assets/js/api-filter.js"></script> <script src="../assets/js/api-list.js"></script> <script src="../assets/js/api-search.js"></script> <script src="../assets/js/apidocs.js"></script> </body> </html>
tryg/messages/jmita_arvim_0.html
erelsgl/erel-sites
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns='http://www.w3.org/1999/xhtml' lang='he' dir='rtl'> <head> <meta http-equiv='Content-Type' content='text/html; charset=windows-1255' /> <meta http-equiv='Content-Script-Type' content='text/javascript' /> <meta http-equiv='revisit-after' content='15 days' /> <link rel='stylesheet' href='../../_script/klli.css' /> <link rel='stylesheet' href='../_themes/klli.css' /> <title>ùàìä: ìà ì÷ðåú îðëøéí</title> <meta name='author' content='éåñó ëäï' /> <meta name='receiver' content='YMC1 @ 013.NET.IL' /> <meta name='jmQovc' content='tryg/messages/jmita_arvim_0' /> <meta name='tvnit' content='' /> </head><body class='la_gmwr'><div class='pnim'> <!--NiwutElyon0--> <div class='NiwutElyon'> <div class='NiwutElyon'><a href='../index.html'>øàùé</a>&gt;<a href='../jmita/arvim.html'>ìà ì÷ðåú îðëøéí</a>&gt;</div> </div> <!--NiwutElyon1--> <h1 id='h1'>ùàìä: ìà ì÷ðåú îðëøéí</h1> <div style='display:none'> <p>îàú: éåñó ëäï <p>àì: YMC1 @ 013.NET.IL </div> <script type='text/javascript' src='../../_script/vars.js'></script> <script type='text/javascript'>kotrt()</script> <p class='teur_tguva'>ðëúá á: 22:01:39&nbsp;&nbsp;13.12.2005, ëúåñôú/úâåáä ì: <a href='../jmita/arvim.html'>ìà ì÷ðåú îðëøéí</a></p> <hr /> <div id='tokn'> àðé éåñó ëäï áï- 35 ðùåé åâø áèáøéä.. ìôðé çåãù ìòøê ááé÷åøé á÷áø äöãé÷ øáé ò÷éáà æöå"÷ì ðåãò ìé îî÷åø øàùåï(àçã îáòìé äàãîä)... ùùèç àãîä áâåãì ùì 13 ãåðîéí äöîåãéí ì÷áø äöãé÷ ( ùðé îèøéí áìáã îäîúçí)äåìëéí ìäéîëø ìòøáé áëãé ìáðåú áéú îìåï.. àðé ôðéúé ìáòì äàãîä áîèøä ìáèì àú äâæéøä äæàú.. åäåà áæéìæåì òðä ùàðçðå äãúééí ø÷ îãáøéí.. åàéí éù ìé ëñó ì÷ðåú .. àæ àðé àôðä àìéå .. ôðéúé ìøáðéí åàó òùéúé ëúáä áòéúåï ùåôø ðéåæ.. äëì áëãé ùéáåà éäåãé èåá åéâàì àú äàãîä.. åùìà éçììå àú àåôéå ä÷ãåù ùì î÷åí æä.. á÷ùúé àìéëí ùúðñå ìãáø òí áòì äàãîä.. åàåìé éù ìëí àéæä ôúøåï ìáòééä æàú. .ðëåï ìòëùéå äéå áùèç îäðãñéí.. åîåããéí. åäòéñ÷ä òùåéä ìäúáöò áéîéí ä÷øåáéí.. ùîå ùì áòì äàãîä äåà æáåìåï áéøåúé èìôåï î'ñ 0505403786 . áá÷ùä úòùå ùéäéä áî÷åí áéú ëðñú àå éùéáä úåøðéú . åéùîøå ìðå òì ëáåã äî÷åí ìãåøé ãåøåú.... áùåøåú èåáåú ..éåñó ëäï . <br /> <br /> </div><!--tokn--> <h2 id='tguvot'>úâåáåú </h2> <ul id='ultguvot'> </ul><!--end--> <script type='text/javascript'>tguva(); txtit()</script> </div> </body></html>
doc/html/class_client_random_name_request.html
kidaa/Awakening-Core3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.3.1"/> <title>Core3: ClientRandomNameRequest Class Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">Core3 </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.3.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="#pri-attribs">Private Attributes</a> &#124; <a href="class_client_random_name_request-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">ClientRandomNameRequest Class Reference</div> </div> </div><!--header--> <div class="contents"> <p><code>#include &lt;<a class="el" href="_client_random_name_request_8h_source.html">ClientRandomNameRequest.h</a>&gt;</code></p> <div class="dynheader"> Inheritance diagram for ClientRandomNameRequest:</div> <div class="dyncontent"> <div class="center"> <img src="class_client_random_name_request.png" usemap="#ClientRandomNameRequest_map" alt=""/> <map id="ClientRandomNameRequest_map" name="ClientRandomNameRequest_map"> <area href="classserver_1_1zone_1_1packets_1_1_message_callback.html" alt="server::zone::packets::MessageCallback" shape="rect" coords="123,56,360,80"/> </map> </div></div> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:a08b7a0fa7c85e0c486e8d830129412bd"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_client_random_name_request.html#a08b7a0fa7c85e0c486e8d830129412bd">ClientRandomNameRequest</a> (<a class="el" href="classserver_1_1zone_1_1_zone_client_session.html">ZoneClientSession</a> *<a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html#a953cf9dec0a958cff371b80af46687a2">client</a>, <a class="el" href="classserver_1_1zone_1_1_zone_process_server.html">ZoneProcessServer</a> *<a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html#a6294305ccbcaeb9dfd6fd45ffeeba194">server</a>)</td></tr> <tr class="separator:a08b7a0fa7c85e0c486e8d830129412bd"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a2a0dcd999f7a99b93f3b32b2f8153f64"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_client_random_name_request.html#a2a0dcd999f7a99b93f3b32b2f8153f64">parse</a> (Message *message)</td></tr> <tr class="separator:a2a0dcd999f7a99b93f3b32b2f8153f64"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3ee23bdcf2c1d105002d9ef09150a1f3"><td class="memItemLeft" align="right" valign="top">void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_client_random_name_request.html#a3ee23bdcf2c1d105002d9ef09150a1f3">run</a> ()</td></tr> <tr class="separator:a3ee23bdcf2c1d105002d9ef09150a1f3"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_methods_classserver_1_1zone_1_1packets_1_1_message_callback"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_classserver_1_1zone_1_1packets_1_1_message_callback')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html">server::zone::packets::MessageCallback</a></td></tr> <tr class="memitem:a0c07623267d45dc0bfbf205d54c7c744 inherit pub_methods_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html#a0c07623267d45dc0bfbf205d54c7c744">MessageCallback</a> (<a class="el" href="classserver_1_1zone_1_1_zone_client_session.html">ZoneClientSession</a> *<a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html#a953cf9dec0a958cff371b80af46687a2">client</a>, <a class="el" href="classserver_1_1zone_1_1_zone_process_server.html">ZoneProcessServer</a> *<a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html#a6294305ccbcaeb9dfd6fd45ffeeba194">server</a>)</td></tr> <tr class="separator:a0c07623267d45dc0bfbf205d54c7c744 inherit pub_methods_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:acdfc1fa20c059afc68e76eab8a72f907 inherit pub_methods_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memItemLeft" align="right" valign="top">virtual&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html#acdfc1fa20c059afc68e76eab8a72f907">~MessageCallback</a> ()</td></tr> <tr class="separator:acdfc1fa20c059afc68e76eab8a72f907 inherit pub_methods_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ac88a5e37403f15da3f6ac3369d25a308 inherit pub_methods_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html#ac88a5e37403f15da3f6ac3369d25a308">getTaskQueue</a> ()</td></tr> <tr class="separator:ac88a5e37403f15da3f6ac3369d25a308 inherit pub_methods_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a3591f83e99eed328e3ac64f80e6b1ea2 inherit pub_methods_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html#a3591f83e99eed328e3ac64f80e6b1ea2">parseMessage</a> (Message *packet)</td></tr> <tr class="separator:a3591f83e99eed328e3ac64f80e6b1ea2 inherit pub_methods_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a97c128e90b9cc1670f35d9f0fa0640a7 inherit pub_methods_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classserver_1_1zone_1_1_zone_client_session.html">ZoneClientSession</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html#a97c128e90b9cc1670f35d9f0fa0640a7">getClient</a> ()</td></tr> <tr class="separator:a97c128e90b9cc1670f35d9f0fa0640a7 inherit pub_methods_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a68dbe7b123f31dfa8bb0429f42e6611e inherit pub_methods_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memItemLeft" align="right" valign="top"><a class="el" href="classserver_1_1zone_1_1_zone_process_server.html">ZoneProcessServer</a> *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html#a68dbe7b123f31dfa8bb0429f42e6611e">getServer</a> ()</td></tr> <tr class="separator:a68dbe7b123f31dfa8bb0429f42e6611e inherit pub_methods_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pri-attribs"></a> Private Attributes</h2></td></tr> <tr class="memitem:a4023d56aa44e8fe9fa33a5d3cfb13846"><td class="memItemLeft" align="right" valign="top">String&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="class_client_random_name_request.html#a4023d56aa44e8fe9fa33a5d3cfb13846">raceFile</a></td></tr> <tr class="separator:a4023d56aa44e8fe9fa33a5d3cfb13846"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a> Additional Inherited Members</h2></td></tr> <tr class="inherit_header pro_attribs_classserver_1_1zone_1_1packets_1_1_message_callback"><td colspan="2" onclick="javascript:toggleInherit('pro_attribs_classserver_1_1zone_1_1packets_1_1_message_callback')"><img src="closed.png" alt="-"/>&#160;Protected Attributes inherited from <a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html">server::zone::packets::MessageCallback</a></td></tr> <tr class="memitem:a953cf9dec0a958cff371b80af46687a2 inherit pro_attribs_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memItemLeft" align="right" valign="top">Reference&lt; <a class="el" href="classserver_1_1zone_1_1_zone_client_session.html">ZoneClientSession</a> * &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html#a953cf9dec0a958cff371b80af46687a2">client</a></td></tr> <tr class="separator:a953cf9dec0a958cff371b80af46687a2 inherit pro_attribs_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a6294305ccbcaeb9dfd6fd45ffeeba194 inherit pro_attribs_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memItemLeft" align="right" valign="top">ManagedReference<br class="typebreak"/> &lt; <a class="el" href="classserver_1_1zone_1_1_zone_process_server.html">ZoneProcessServer</a> * &gt;&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html#a6294305ccbcaeb9dfd6fd45ffeeba194">server</a></td></tr> <tr class="separator:a6294305ccbcaeb9dfd6fd45ffeeba194 inherit pro_attribs_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a5bdfd820b6bd8d037f25672b1f0264d5 inherit pro_attribs_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memItemLeft" align="right" valign="top">int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html#a5bdfd820b6bd8d037f25672b1f0264d5">taskqueue</a></td></tr> <tr class="separator:a5bdfd820b6bd8d037f25672b1f0264d5 inherit pro_attribs_classserver_1_1zone_1_1packets_1_1_message_callback"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"> <p>Definition at line <a class="el" href="_client_random_name_request_8h_source.html#l00016">16</a> of file <a class="el" href="_client_random_name_request_8h_source.html">ClientRandomNameRequest.h</a>.</p> </div><h2 class="groupheader">Constructor &amp; Destructor Documentation</h2> <a class="anchor" id="a08b7a0fa7c85e0c486e8d830129412bd"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">ClientRandomNameRequest::ClientRandomNameRequest </td> <td>(</td> <td class="paramtype"><a class="el" href="classserver_1_1zone_1_1_zone_client_session.html">ZoneClientSession</a> *&#160;</td> <td class="paramname"><em>client</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classserver_1_1zone_1_1_zone_process_server.html">ZoneProcessServer</a> *&#160;</td> <td class="paramname"><em>server</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Definition at line <a class="el" href="_client_random_name_request_8h_source.html#l00020">20</a> of file <a class="el" href="_client_random_name_request_8h_source.html">ClientRandomNameRequest.h</a>.</p> </div> </div> <h2 class="groupheader">Member Function Documentation</h2> <a class="anchor" id="a2a0dcd999f7a99b93f3b32b2f8153f64"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">void ClientRandomNameRequest::parse </td> <td>(</td> <td class="paramtype">Message *&#160;</td> <td class="paramname"><em>message</em></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Implements <a class="el" href="classserver_1_1zone_1_1packets_1_1_message_callback.html#ae2fbf7fe3192920f7f19b085665725c3">server::zone::packets::MessageCallback</a>.</p> <p>Definition at line <a class="el" href="_client_random_name_request_8h_source.html#l00024">24</a> of file <a class="el" href="_client_random_name_request_8h_source.html">ClientRandomNameRequest.h</a>.</p> <p>References <a class="el" href="_client_random_name_request_8h_source.html#l00017">raceFile</a>.</p> </div> </div> <a class="anchor" id="a3ee23bdcf2c1d105002d9ef09150a1f3"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">void ClientRandomNameRequest::run </td> <td>(</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Definition at line <a class="el" href="_client_random_name_request_8h_source.html#l00028">28</a> of file <a class="el" href="_client_random_name_request_8h_source.html">ClientRandomNameRequest.h</a>.</p> <p>References <a class="el" href="_message_callback_8h_source.html#l00023">server::zone::packets::MessageCallback::client</a>, <a class="el" href="_name_manager_8cpp_source.html#l00337">server::zone::managers::name::NameManager::makeCreatureName()</a>, <a class="el" href="_client_random_name_request_8h_source.html#l00017">raceFile</a>, and <a class="el" href="_message_callback_8h_source.html#l00025">server::zone::packets::MessageCallback::server</a>.</p> </div> </div> <h2 class="groupheader">Member Data Documentation</h2> <a class="anchor" id="a4023d56aa44e8fe9fa33a5d3cfb13846"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">String ClientRandomNameRequest::raceFile</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">private</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Definition at line <a class="el" href="_client_random_name_request_8h_source.html#l00017">17</a> of file <a class="el" href="_client_random_name_request_8h_source.html">ClientRandomNameRequest.h</a>.</p> <p>Referenced by <a class="el" href="_client_random_name_request_8h_source.html#l00024">parse()</a>, and <a class="el" href="_client_random_name_request_8h_source.html#l00028">run()</a>.</p> </div> </div> <hr/>The documentation for this class was generated from the following file:<ul> <li>/Users/victor/git/Core3Mda/MMOCoreORB/src/server/zone/packets/charcreation/<a class="el" href="_client_random_name_request_8h_source.html">ClientRandomNameRequest.h</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Tue Oct 15 2013 17:29:23 for Core3 by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.3.1 </small></address> </body> </html>
eucookielaw-tinymce.css
wp-plugins/eucookielaw
.eucookielaw-blocked-contents{ border: 2px dashed #ccc; padding: 0.5em; background: url(cookie.png) no-repeat top right; } .eucookielaw-button-item{ border: 1px solid #ccc; box-shadow: 3px 3px 3px #666; padding: 0.3em 40px 0.3em 0.3em; text-decoration: none; color: #800; font-weight: bold; background: #fff url(cookie.png) no-repeat top right; background-size: contain; } i.mce-i-eucookielaw { background-image: url(cookie.png); } span.eucookielaw-info-submit{ display: none; } .fixed-on-top{ position: fixed; top: 60px; right: 20px; z-index: 9999; padding: 1em; border: 1px solid #ccc; background-color: #fff; max-width: 300px; } .fixed-on-top span.eucookielaw-info-submit{ display: block; padding: 0.5em; } div.alert { background: #fff; border-left: 4px solid #ffaa44; -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); margin: 5px 15px 2px; padding: 1px 12px; } #eucookielaw-settings{ position: fixed; top: 100px; left: 180px; right: 150px; bottom: 100px; border: 1px solid #ccc; border-radius: 1em; background-color: #fff; padding: 1em; z-index: 999; } #eucookielaw-settings textarea{ position: absolute; left: 5%; bottom: 3em; top: 1em; width: 90%; display: block; } #eucookielaw-settings p{ clear: both; bottom: 0; position: absolute; left: 5%; width: 90%; text-align: right; } input.invalid{ border: 1px solid #c00; background-color: #fee; } input.invalid-by{ border: 1px solid #f84; background-color: #ffe; } ul.scanned-url{ list-style: disc; margin-left: 1em; }
qt-everywhere-opensource-src-4.7.4/doc/html/qrectf-members.html
ssangkong/NVRAM_KWU
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- qrect.cpp --> <title>Qt 4.7: List of All Members for QRectF</title> <link rel="stylesheet" type="text/css" href="style/offline.css" /> </head> <body> <div class="header" id="qtdocheader"> <div class="content"> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> </div> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Breadcrumbs go here --> <li><a href="modules.html">Modules</a></li> <li><a href="qtcore.html">QtCore</a></li> <li>QRectF</li> </ul> </div> </div> <div class="content mainContent"> <h1 class="title">List of All Members for QRectF</h1> <p>This is the complete list of members for <a href="qrectf.html">QRectF</a>, including inherited members.</p> <table class="propsummary"> <tr><td class="topAlign"><ul> <li class="fn"><span class="name"><b><a href="qrectf.html#QRectF">QRectF</a></b></span> ()</li> <li class="fn"><span class="name"><b><a href="qrectf.html#QRectF-2">QRectF</a></b></span> ( const QPointF &amp;, const QSizeF &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#QRectF-3">QRectF</a></b></span> ( const QPointF &amp;, const QPointF &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#QRectF-4">QRectF</a></b></span> ( qreal, qreal, qreal, qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#QRectF-5">QRectF</a></b></span> ( const QRect &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#adjust">adjust</a></b></span> ( qreal, qreal, qreal, qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#adjusted">adjusted</a></b></span> ( qreal, qreal, qreal, qreal ) const : QRectF</li> <li class="fn"><span class="name"><b><a href="qrectf.html#bottom">bottom</a></b></span> () const : qreal</li> <li class="fn"><span class="name"><b><a href="qrectf.html#bottomLeft">bottomLeft</a></b></span> () const : QPointF</li> <li class="fn"><span class="name"><b><a href="qrectf.html#bottomRight">bottomRight</a></b></span> () const : QPointF</li> <li class="fn"><span class="name"><b><a href="qrectf.html#center">center</a></b></span> () const : QPointF</li> <li class="fn"><span class="name"><b><a href="qrectf.html#contains">contains</a></b></span> ( const QPointF &amp; ) const : bool</li> <li class="fn"><span class="name"><b><a href="qrectf.html#contains-2">contains</a></b></span> ( qreal, qreal ) const : bool</li> <li class="fn"><span class="name"><b><a href="qrectf.html#contains-3">contains</a></b></span> ( const QRectF &amp; ) const : bool</li> <li class="fn"><span class="name"><b><a href="qrectf.html#getCoords">getCoords</a></b></span> ( qreal *, qreal *, qreal *, qreal * ) const</li> <li class="fn"><span class="name"><b><a href="qrectf.html#getRect">getRect</a></b></span> ( qreal *, qreal *, qreal *, qreal * ) const</li> <li class="fn"><span class="name"><b><a href="qrectf.html#height">height</a></b></span> () const : qreal</li> <li class="fn"><span class="name"><b><a href="qrectf.html#intersected">intersected</a></b></span> ( const QRectF &amp; ) const : QRectF</li> <li class="fn"><span class="name"><b><a href="qrectf.html#intersects">intersects</a></b></span> ( const QRectF &amp; ) const : bool</li> <li class="fn"><span class="name"><b><a href="qrectf.html#isEmpty">isEmpty</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qrectf.html#isNull">isNull</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qrectf.html#isValid">isValid</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qrectf.html#left">left</a></b></span> () const : qreal</li> <li class="fn"><span class="name"><b><a href="qrectf.html#moveBottom">moveBottom</a></b></span> ( qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#moveBottomLeft">moveBottomLeft</a></b></span> ( const QPointF &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#moveBottomRight">moveBottomRight</a></b></span> ( const QPointF &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#moveCenter">moveCenter</a></b></span> ( const QPointF &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#moveLeft">moveLeft</a></b></span> ( qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#moveRight">moveRight</a></b></span> ( qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#moveTo">moveTo</a></b></span> ( qreal, qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#moveTo-2">moveTo</a></b></span> ( const QPointF &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#moveTop">moveTop</a></b></span> ( qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#moveTopLeft">moveTopLeft</a></b></span> ( const QPointF &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#moveTopRight">moveTopRight</a></b></span> ( const QPointF &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#normalized">normalized</a></b></span> () const : QRectF</li> </ul></td><td class="topAlign"><ul> <li class="fn"><span class="name"><b><a href="qrectf.html#right">right</a></b></span> () const : qreal</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setBottom">setBottom</a></b></span> ( qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setBottomLeft">setBottomLeft</a></b></span> ( const QPointF &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setBottomRight">setBottomRight</a></b></span> ( const QPointF &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setCoords">setCoords</a></b></span> ( qreal, qreal, qreal, qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setHeight">setHeight</a></b></span> ( qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setLeft">setLeft</a></b></span> ( qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setRect">setRect</a></b></span> ( qreal, qreal, qreal, qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setRight">setRight</a></b></span> ( qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setSize">setSize</a></b></span> ( const QSizeF &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setTop">setTop</a></b></span> ( qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setTopLeft">setTopLeft</a></b></span> ( const QPointF &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setTopRight">setTopRight</a></b></span> ( const QPointF &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setWidth">setWidth</a></b></span> ( qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setX">setX</a></b></span> ( qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#setY">setY</a></b></span> ( qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#size">size</a></b></span> () const : QSizeF</li> <li class="fn"><span class="name"><b><a href="qrectf.html#toAlignedRect">toAlignedRect</a></b></span> () const : QRect</li> <li class="fn"><span class="name"><b><a href="qrectf.html#toRect">toRect</a></b></span> () const : QRect</li> <li class="fn"><span class="name"><b><a href="qrectf.html#top">top</a></b></span> () const : qreal</li> <li class="fn"><span class="name"><b><a href="qrectf.html#topLeft">topLeft</a></b></span> () const : QPointF</li> <li class="fn"><span class="name"><b><a href="qrectf.html#topRight">topRight</a></b></span> () const : QPointF</li> <li class="fn"><span class="name"><b><a href="qrectf.html#translate">translate</a></b></span> ( qreal, qreal )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#translate-2">translate</a></b></span> ( const QPointF &amp; )</li> <li class="fn"><span class="name"><b><a href="qrectf.html#translated">translated</a></b></span> ( qreal, qreal ) const : QRectF</li> <li class="fn"><span class="name"><b><a href="qrectf.html#translated-2">translated</a></b></span> ( const QPointF &amp; ) const : QRectF</li> <li class="fn"><span class="name"><b><a href="qrectf.html#united">united</a></b></span> ( const QRectF &amp; ) const : QRectF</li> <li class="fn"><span class="name"><b><a href="qrectf.html#width">width</a></b></span> () const : qreal</li> <li class="fn"><span class="name"><b><a href="qrectf.html#x">x</a></b></span> () const : qreal</li> <li class="fn"><span class="name"><b><a href="qrectf.html#y">y</a></b></span> () const : qreal</li> <li class="fn"><span class="name"><b><a href="qrectf.html#operator-and">operator&amp;</a></b></span> ( const QRectF &amp; ) const : QRectF</li> <li class="fn"><span class="name"><b><a href="qrectf.html#operator-and-eq">operator&amp;=</a></b></span> ( const QRectF &amp; ) : QRectF &amp;</li> <li class="fn"><span class="name"><b><a href="qrectf.html#operator-7c">operator|</a></b></span> ( const QRectF &amp; ) const : QRectF</li> <li class="fn"><span class="name"><b><a href="qrectf.html#operator-7c-eq">operator|=</a></b></span> ( const QRectF &amp; ) : QRectF &amp;</li> </ul> </td></tr> </table> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.</p> <p> All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p> <br /> <p> Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p> <p> Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> </div> </body> </html>
Manifest.html
Mr-What/DeltaUtil
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <TITLE>DeltaUtil Manifest</TITLE> </head> <BODY STYLE="font-family: Arial, Helvetica"> <H1 center>DeltaUtil Manifest</H1> <DL compact> <DT>bedProbeRandGrid.pl</DT> <DD>generate gcode for a random ordered prone of print bed</DD> <DT>cart2delta.m</DT><DD>basic inverse kinematic equations</DD> <DT>computeCalDist.pl</DT> <DD>Given text data files defining location of calibration print reference points, and pairs of points whose seperation can readily be measured, compute the distances between these pairs of points, and write them to a text data file.</DD> <DT>delta2cart.m</DT><DD>basic kinematic equations</DD> <DT>deltaCalXYZ.m</DT><DD>High-level procedure to estimate complete calibration parameters set given both bed probe and calibration print measurements. Will estimate best-fit printer calibration parameters.</DT> <DT>deltaErrXY.m</DT><DD>Error metric for calibration print measurements w.r.t. estimated printer parameters.</DT> <DT>deltaErrZ.m</DT><DD>Error metric for bed probe w.r.t. estimated printer parameters.</DT> <DT>deltaTestA.scad</DT><DD>Calibration test object model</DD> <DT>deltaTestA.svg</DT><DD>Drawing of deltaTestA model, with calibration points annotated</DD> <DT>deltaTestA.png</DT><DD>render of calibration test model</DD> <DT>extractProbeData.pl</DT><DD>extract bed probe numbers from Marlin console output for analysis</DD> <DT>getExtremaIndices.m</DT><DD>part of SimplexMinimize</DD> <DT>getFieldDef.m</DT><DD>utility for extracting fields from structures</DD> <DT>getIndex.m</DT><DD>part of calibration print definition parsing</DD> <DT>gLace.pl</DT><DD>generates g-code for test print that spans whole printbed. Good for testing quality of bed tramming adjustment.</DD> <DT>guessDeltaEndstopErr.m</DT><DD>estimates best fit endstop offsets from bed probe data, without altering other printer parameters</DD> <DT>guessDeltaErr4.m</DT><DD>estimates best fit endstop offsets and uniform delta radius from bed probe data, without altering other printer parameters</DD> <DT>guessDeltaErr6.m</DT><DD>estimates best fit endstop offsets and unique delta radius from bed probe data, without altering other printer parameters</DD> <DT>guessDeltaErrXYZ.m</DT><DD>Main routine to guess endstops offsets, delta radii, and rod-length (and spread) from a combination of bed probe data and calibration object measurements</DD> <DT>guessDeltaXYerr.m</DT><DD>guess delta radii, and rod-length (and spread) from calibration object measurements alone</DD> <DT>loadXYcalDef.m</DT><DD>Load calibration print measurement definitions</DD> <DT>loadXYcalMeas.m</DT><DD>Load calibration print measurements</DD> <DT>plotParabolicFit.m</DT><DD>Plot a parabolic fit to a set of bed-probe measuirements, and provide the fit polynomial coefficients <DT>plotXYdistort.m</DT><DD>produce wind-vector like plot of XY placement distortions</DD> <DT>sampleMeans.m</DT><DD>given a set of bed measurements, many of which may be repeated, condense the list into averages of the repeated measurements.</DD> <DT>SimplexExitCriteriaMet.m</DT><DD>exit test for SimplexMinimize</DD> <DT>SimplexMinimize.m</DT><DD>Main simplex search routine</DD> <DT>SimplexUpdate.m</DT><DD>part of SimplexMinimize</DD> <DT>XYcalPairsA.dat</DT><DD>definition of measurement pairs for deltaTestA object</DD> <DT>XYcalPointsA.dat</DT><DD>definition of calibration points on deltaTestA object</DD> </DL> </body></html>
qooxdoo/component/tutorials/mobiletweets/step1/source/index.html
sebastienhupin/qxrad
<!DOCTYPE html> <html> <head> <meta charset="UTF-8" /> <title>mobiletweets</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <meta name="format-detection" content="telephone=no"> <script type="text/javascript" src="script/mobiletweets.js"></script> </head> <body> </body> </html>
docs/tutorial/gettingStarted.html
davidcana/ZPT-JS
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Getting started</title> <script type="text/javascript" src="../lib/zpt.min.js" defer></script> <script type="text/javascript" src="../js/zpt.js" defer></script> <script type="text/javascript" src="../lib/syntaxHighlighter/lib.js"></script> <link rel="stylesheet" type="text/css" href="../docs.css"> <link rel="stylesheet" type="text/css" href="../lib/syntaxHighlighter/theme.css"> </head> <body> <div data-use-macro="'page@templates.html'"> <div data-fill-slot="'page-header'"> <h1>ZPT-JS tutorial - Getting started</h1> <ul> <li><a href="#downloading">Downloading ZPT-JS and its dependencies</a>.</li> <li><a href="#header">Configuring the HTML header</a>.</li> <li><a href="#template">Write the template</a>.</li> <li><a href="#dictionary">Build the dictionary</a>.</li> <li><a href="#invoke">Invoke ZPT-JS</a>.</li> <li><a href="#result">The result</a>.</li> <li><a href="#updates">Updates</a>.</li> <li><a href="#node">Using ZPT-JS and node.js</a>.</li> </ul> </div> <article data-fill-slot="'article'"> <h2 data-attributes="id 'downloading'">Downloading ZPT-JS and its dependencies</h2> <p> Go to <a href="../download.html">Download</a> section and follow the instructions to download ZPT-JS and its dependencies. </p> <h2 data-attributes="id 'header'">Configuring the HTML header</h2> <p> You must add to your web page the javascript code of ZPT-JS and its dependencies(<em>zpt.min.js</em>). Don't forget to add the reference of the javascript file with the invokation to ZPT-JS (for example <em>gettingStarted.js</em>): </p> <pre class="brush: html"> &lt;head&gt; ... &lt;script src="zpt.min.js" type="text/javascript" defer&gt;&lt;/script&gt; &lt;script src="gettingStarted.js" type="text/javascript" defer&gt;&lt;/script&gt; ... &lt;/head&gt; </pre> <h2 data-attributes="id 'template'">Write the template</h2> <p> Customize the body of your HTML document with some of the provided by ZPT-JS statements. One of these is <em>data-content</em>: </p> <pre class="brush: html"> &lt;body&gt; &lt;p data-content="message"&gt; the message &lt;/p&gt; &lt;/body&gt; </pre> <p> The resulting HTML document is: </p> <pre class="brush: html"> &lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;meta charset="utf-8"&gt; &lt;title&gt;Getting started&lt;/title&gt; &lt;script src="/zpt/zpt.min.js" defer&gt;&lt;/script&gt; &lt;script src="gettingStarted.js" type="text/javascript" defer&gt;&lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;p data-content="message"&gt; the message &lt;/p&gt; &lt;/body&gt; &lt;/html&gt; </pre> <h2 data-attributes="id 'dictionary'">Build the dictionary</h2> <p> Build a javascript object with key/value pairs. These key/value pairs will be accesible by the whole template. You can use any javascript object, but ZPT provides an specific type that supports a reactive behaviour: </p> <pre class="brush: js"> var dictionary = new zpt.ReactiveDictionary({ message: "Hello, world!" }); </pre> <h2 data-attributes="id 'invoke'">Invoke ZPT-JS</h2> <p> Invoke the <code>run</code> method of ZPT: </p> <pre class="brush: js"> var zpt = require( 'zpt' ); ... zpt.run({ root: document.body, dictionary: dictionary }); </pre> <p> The resulting Javascript file (<em>gettingStarted.js</em>) is: </p> <pre class="brush: js"> "use strict"; var zpt = require( 'zpt' ); var dictionary = new zpt.ReactiveDictionary({ message: "Hello, world!" }); zpt.run({ root: document.body, dictionary: dictionary }); </pre> <p> That's all! </p> <h2 data-attributes="id 'result'">The result</h2> <p> The resulting <code>body</code> element is: </p> <pre class="brush: html"> &lt;body&gt; &lt;p data-content="message"&gt; Hello, world! &lt;/p&gt; &lt;/body&gt; </pre> <h2 data-attributes="id 'updating'">Updates</h2> <p> If we change some data in the dictionary this way: </p> <pre class="brush: js"> dictionary.message = "Bye, world!"; </pre> <p> We don't need to do anything else, the <code>body</code> element now is: </p> <pre class="brush: html"> &lt;body&gt; &lt;p data-content="message"&gt; Bye, world! &lt;/p&gt; &lt;/body&gt; </pre> <p> The <em>data-content</em> attribute is ignored by browsers: all the <em>data-*</em> attributes are completely ignored by the user agent. </p> <h2 data-attributes="id 'node'">Using ZPT-JS and node.js</h2> <p> That's OK. But... how can we use ZPT-JS at the server side (using <a href="https://nodejs.org/">node.js</a>)? <a href="https://www.npmjs.com/package/jsdom">jsdom</a> is needed when no browser is available: </p> <pre class="brush: js"> "use strict"; var jsdom = require( 'jsdom' ); var { JSDOM } = jsdom; // Build JSDOM instance var dom = new JSDOM( '&lt;!doctype html&gt;' + '&lt;html&gt;' + '&lt;body&gt;&lt;h1 data-content="'hello, world!'"&gt;a text&lt;/h1&gt;&lt;/body&gt;' + '&lt;/html&gt;' ); // Init some important vars var window = dom.window; var document = window.document; global.window = window; // Parse template var zpt = require( 'zpt' ); zpt.run({ root: document.body, dictionary: {} }); console.log( 'Done!' ); </pre> </article> </div> </body> </html>
theme/cld/css/fonts/open-sans-400.css
awomersley/cloud-app-frame
@media screen { @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; src: local('Open Sans'), local('OpenSans'), url('/theme/font/open-sans-400.woff') format('woff'), url('/theme/font/open-sans-400.ttf') format('ttf'); } }
doc/javadoc/gate/creole/orthomatcher/package-summary.html
liuhongchao/GATE_Developer_7.0
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_24) on Thu Feb 09 13:37:45 GMT 2012 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> gate.creole.orthomatcher (GATE JavaDoc) </TITLE> <META NAME="date" CONTENT="2012-02-09"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="gate.creole.orthomatcher (GATE JavaDoc)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../gate/creole/ontology/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;<A HREF="../../../gate/creole/orthomatcher/SampleOrthoMatcher/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?gate/creole/orthomatcher/package-summary.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <H2> Package gate.creole.orthomatcher </H2> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Interface Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/AnnotationOrthography.html" title="interface in gate.creole.orthomatcher">AnnotationOrthography</A></B></TD> <TD>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/OrthoMatcherRule.html" title="interface in gate.creole.orthomatcher">OrthoMatcherRule</A></B></TD> <TD>&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Class Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/BasicAnnotationOrthography.html" title="class in gate.creole.orthomatcher">BasicAnnotationOrthography</A></B></TD> <TD>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule0.html" title="class in gate.creole.orthomatcher">MatchRule0</A></B></TD> <TD>RULE #0: If the two names are listed in table of spurius matches then they do NOT match Condition(s): - Applied to: all name annotations</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule1.html" title="class in gate.creole.orthomatcher">MatchRule1</A></B></TD> <TD>RULE #1: If the two names are identical then they are the same no longer used, because I do the check for same string via the hash table of previous annotations Condition(s): depend on case Applied to: annotations other than names</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule10.html" title="class in gate.creole.orthomatcher">MatchRule10</A></B></TD> <TD>RULE #10: is one name the reverse of the other reversing around prepositions only?</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule11.html" title="class in gate.creole.orthomatcher">MatchRule11</A></B></TD> <TD>RULE #11: does one name consist of contractions of the first two tokens of the other name?</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule12.html" title="class in gate.creole.orthomatcher">MatchRule12</A></B></TD> <TD>RULE #12: do the first and last tokens of one name match the first and last tokens of the other?</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule13.html" title="class in gate.creole.orthomatcher">MatchRule13</A></B></TD> <TD>RULE #12: do the first and last tokens of one name match the first and last tokens of the other?</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule14.html" title="class in gate.creole.orthomatcher">MatchRule14</A></B></TD> <TD>RULE #13: do multi-word names match except for one token e.g.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule15.html" title="class in gate.creole.orthomatcher">MatchRule15</A></B></TD> <TD>RULE #14: if the last token of one name matches the second name e.g.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule16.html" title="class in gate.creole.orthomatcher">MatchRule16</A></B></TD> <TD>RULE #15: Does every token in the shorter name appear in the longer name?</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule17.html" title="class in gate.creole.orthomatcher">MatchRule17</A></B></TD> <TD>RULE #16: Conservative match rule Require every token in one name to match the other except for tokens that are on a stop word list</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule2.html" title="class in gate.creole.orthomatcher">MatchRule2</A></B></TD> <TD>RULE #2: if the two names are listed as equivalent in the lookup table (alias) then they match Condition(s): - Applied to: all name annotations</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule3.html" title="class in gate.creole.orthomatcher">MatchRule3</A></B></TD> <TD>RULE #3: adding a possessive at the end of one name causes a match e.g.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule4.html" title="class in gate.creole.orthomatcher">MatchRule4</A></B></TD> <TD>RULE #4: Does the first non-punctuation token from the long string match the first token from the short string?</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule5.html" title="class in gate.creole.orthomatcher">MatchRule5</A></B></TD> <TD>RULE #4Name: Does all the non-punctuation tokens from the long string match the corresponding tokens in the short string?</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule6.html" title="class in gate.creole.orthomatcher">MatchRule6</A></B></TD> <TD>RULE #5: if the 1st token of one name matches the second name e.g.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule7.html" title="class in gate.creole.orthomatcher">MatchRule7</A></B></TD> <TD>RULE #6: if one name is the acronym of the other e.g.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule8.html" title="class in gate.creole.orthomatcher">MatchRule8</A></B></TD> <TD>RULE #7: if one of the tokens in one of the names is in the list of separators eg. "&" then check if the token before the separator matches the other name e.g.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/MatchRule9.html" title="class in gate.creole.orthomatcher">MatchRule9</A></B></TD> <TD>RULE #9: does one of the names match the token just before a trailing company designator in the other name?</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/OrthoMatcher.html" title="class in gate.creole.orthomatcher">OrthoMatcher</A></B></TD> <TD>&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD WIDTH="15%"><B><A HREF="../../../gate/creole/orthomatcher/OrthoMatcherHelper.html" title="class in gate.creole.orthomatcher">OrthoMatcherHelper</A></B></TD> <TD>&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <DL> </DL> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Package</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-use.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../gate/creole/ontology/package-summary.html"><B>PREV PACKAGE</B></A>&nbsp; &nbsp;<A HREF="../../../gate/creole/orthomatcher/SampleOrthoMatcher/package-summary.html"><B>NEXT PACKAGE</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?gate/creole/orthomatcher/package-summary.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-summary.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
docs/cpython_promc/html/google.protobuf.reflection.GeneratedProtocolMessageType-class.html
Argonne-National-Laboratory/ProMC
<?xml version="1.0" encoding="ascii"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>google.protobuf.reflection.GeneratedProtocolMessageType</title> <link rel="stylesheet" href="epydoc.css" type="text/css" /> <script type="text/javascript" src="epydoc.js"></script> </head> <body bgcolor="white" text="black" link="blue" vlink="#204080" alink="#204080"> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <th class="navbar" width="100%"></th> </tr> </table> <table width="100%" cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="100%"> <span class="breadcrumbs"> google :: protobuf :: reflection :: GeneratedProtocolMessageType :: Class&nbsp;GeneratedProtocolMessageType </span> </td> <td> <table cellpadding="0" cellspacing="0"> <!-- hide/show private --> <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink" onclick="toggle_private();">hide&nbsp;private</a>]</span></td></tr> <tr><td align="right"><span class="options" >[<a href="frames.html" target="_top">frames</a >]&nbsp;|&nbsp;<a href="google.protobuf.reflection.GeneratedProtocolMessageType-class.html" target="_top">no&nbsp;frames</a>]</span></td></tr> </table> </td> </tr> </table> <!-- ==================== TYPE DESCRIPTION ==================== --> <h1 class="epydoc">Type GeneratedProtocolMessageType</h1><p class="nomargin-top"></p> <pre class="base-tree"> object --+ | type --+ | <strong class="uidshort">GeneratedProtocolMessageType</strong> </pre> <hr /> <pre class="literalblock"> Metaclass for protocol message classes created at runtime from Descriptors. We add implementations for all methods described in the Message class. We also create properties to allow getting/setting all fields in the protocol message. Finally, we create slots to prevent users from accidentally &quot;setting&quot; nonexistent fields in the protocol message, which then wouldn't get serialized / deserialized properly. The protocol compiler currently uses this metaclass to create protocol message classes at runtime. Clients can also manually create their own classes at runtime, as in this example: mydescriptor = Descriptor(.....) class MyProtoClass(Message): __metaclass__ = GeneratedProtocolMessageType DESCRIPTOR = mydescriptor myproto_instance = MyProtoClass() myproto.foo_field = 23 ... </pre> <!-- ==================== INSTANCE METHODS ==================== --> <a name="section-InstanceMethods"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Instance Methods</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-InstanceMethods" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">the object's type</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="google.protobuf.reflection.GeneratedProtocolMessageType-class.html#__init__" class="summary-sig-name">__init__</a>(<span class="summary-sig-arg">cls</span>, <span class="summary-sig-arg">name</span>, <span class="summary-sig-arg">bases</span>, <span class="summary-sig-arg">dictionary</span>)</span><br /> Here we perform the majority of our work on the class.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code>type</code></b>: <code>__call__</code>, <code>__delattr__</code>, <code>__eq__</code>, <code>__ge__</code>, <code>__getattribute__</code>, <code>__gt__</code>, <code>__hash__</code>, <code>__le__</code>, <code>__lt__</code>, <code>__ne__</code>, <code>__repr__</code>, <code>__setattr__</code>, <code>__subclasses__</code>, <code>mro</code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__format__</code>, <code>__reduce__</code>, <code>__reduce_ex__</code>, <code>__sizeof__</code>, <code>__str__</code>, <code>__subclasshook__</code> </p> </td> </tr> </table> <!-- ==================== STATIC METHODS ==================== --> <a name="section-StaticMethods"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Static Methods</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-StaticMethods" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">a new object with type S, a subtype of T</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="google.protobuf.reflection.GeneratedProtocolMessageType-class.html#__new__" class="summary-sig-name">__new__</a>(<span class="summary-sig-arg">cls</span>, <span class="summary-sig-arg">name</span>, <span class="summary-sig-arg">bases</span>, <span class="summary-sig-arg">dictionary</span>)</span><br /> Custom allocation for runtime-generated class types.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> </table> <!-- ==================== CLASS VARIABLES ==================== --> <a name="section-ClassVariables"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Class Variables</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-ClassVariables" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr class="private"> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <a name="_DESCRIPTOR_KEY"></a><span class="summary-name">_DESCRIPTOR_KEY</span> = <code title="'DESCRIPTOR'"><code class="variable-quote">'</code><code class="variable-string">DESCRIPTOR</code><code class="variable-quote">'</code></code> </td> </tr> </table> <!-- ==================== PROPERTIES ==================== --> <a name="section-Properties"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Properties</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Properties" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code>type</code></b>: <code>__abstractmethods__</code>, <code>__base__</code>, <code>__bases__</code>, <code>__basicsize__</code>, <code>__dictoffset__</code>, <code>__flags__</code>, <code>__instancecheck__</code>, <code>__itemsize__</code>, <code>__mro__</code>, <code>__name__</code>, <code>__subclasscheck__</code>, <code>__weakrefoffset__</code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__class__</code> </p> </td> </tr> </table> <!-- ==================== METHOD DETAILS ==================== --> <a name="section-MethodDetails"></a> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Method Details</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-MethodDetails" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> </table> <a name="__init__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__init__</span>(<span class="sig-arg">cls</span>, <span class="sig-arg">name</span>, <span class="sig-arg">bases</span>, <span class="sig-arg">dictionary</span>)</span> <br /><em class="fname">(Constructor)</em> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <pre class="literalblock"> Here we perform the majority of our work on the class. We add enum getters, an __init__ method, implementations of all Message methods, and properties for all fields in the protocol type. Args: name: Name of the class (ignored, but required by the metaclass protocol). bases: Base classes of the class we're constructing. (Should be message.Message). We ignore this field, but it's required by the metaclass protocol dictionary: The class dictionary of the class we're constructing. dictionary[_DESCRIPTOR_KEY] must contain a Descriptor object describing this protocol message type. </pre> <dl class="fields"> <dt>Returns: the object's type</dt> <dt>Overrides: object.__init__ </dt> </dl> </td></tr></table> </div> <a name="__new__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__new__</span>(<span class="sig-arg">cls</span>, <span class="sig-arg">name</span>, <span class="sig-arg">bases</span>, <span class="sig-arg">dictionary</span>)</span> <br /><em class="fname">Static Method</em> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <pre class="literalblock"> Custom allocation for runtime-generated class types. We override __new__ because this is apparently the only place where we can meaningfully set __slots__ on the class we're creating(?). (The interplay between metaclasses and slots is not very well-documented). Args: name: Name of the class (ignored, but required by the metaclass protocol). bases: Base classes of the class we're constructing. (Should be message.Message). We ignore this field, but it's required by the metaclass protocol dictionary: The class dictionary of the class we're constructing. dictionary[_DESCRIPTOR_KEY] must contain a Descriptor object describing this protocol message type. Returns: Newly-allocated class. </pre> <dl class="fields"> <dt>Returns: a new object with type S, a subtype of T</dt> <dt>Overrides: object.__new__ </dt> </dl> </td></tr></table> </div> <br /> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <th class="navbar" width="100%"></th> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="100%%"> <tr> <td align="left" class="footer"> Generated by Epydoc 3.0.1 on Tue May 30 03:59:25 2017 </td> <td align="right" class="footer"> <a target="mainFrame" href="http://epydoc.sourceforge.net" >http://epydoc.sourceforge.net</a> </td> </tr> </table> <script type="text/javascript"> <!-- // Private objects are initially displayed (because if // javascript is turned off then we want them to be // visible); but by default, we want to hide them. So hide // them unless we have a cookie that says to show them. checkCookie(); // --> </script> </body> </html>
qt-everywhere-opensource-src-4.7.4/doc/html/qdomtext-members.html
ssangkong/NVRAM_KWU
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- qdom.cpp --> <title>Qt 4.7: List of All Members for QDomText</title> <link rel="stylesheet" type="text/css" href="style/offline.css" /> </head> <body> <div class="header" id="qtdocheader"> <div class="content"> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> </div> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Breadcrumbs go here --> <li><a href="modules.html">Modules</a></li> <li><a href="qtxml.html">QtXml</a></li> <li>QDomText</li> </ul> </div> </div> <div class="content mainContent"> <h1 class="title">List of All Members for QDomText</h1> <p>This is the complete list of members for <a href="qdomtext.html">QDomText</a>, including inherited members.</p> <table class="propsummary"> <tr><td class="topAlign"><ul> <li class="fn">enum <span class="name"><b><a href="qdomnode.html#EncodingPolicy-enum">EncodingPolicy</a></b></span></li> <li class="fn">enum <span class="name"><b><a href="qdomnode.html#NodeType-enum">NodeType</a></b></span></li> <li class="fn"><span class="name"><b><a href="qdomtext.html#QDomText">QDomText</a></b></span> ()</li> <li class="fn"><span class="name"><b><a href="qdomtext.html#QDomText-2">QDomText</a></b></span> ( const QDomText &amp; )</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#appendChild">appendChild</a></b></span> ( const QDomNode &amp; ) : QDomNode</li> <li class="fn"><span class="name"><b><a href="qdomcharacterdata.html#appendData">appendData</a></b></span> ( const QString &amp; )</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#attributes">attributes</a></b></span> () const : QDomNamedNodeMap</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#childNodes">childNodes</a></b></span> () const : QDomNodeList</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#clear">clear</a></b></span> ()</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#cloneNode">cloneNode</a></b></span> ( bool ) const : QDomNode</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#columnNumber">columnNumber</a></b></span> () const : int</li> <li class="fn"><span class="name"><b><a href="qdomcharacterdata.html#data">data</a></b></span> () const : QString</li> <li class="fn"><span class="name"><b><a href="qdomcharacterdata.html#deleteData">deleteData</a></b></span> ( unsigned long, unsigned long )</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#firstChild">firstChild</a></b></span> () const : QDomNode</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#firstChildElement">firstChildElement</a></b></span> ( const QString &amp; ) const : QDomElement</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#hasAttributes">hasAttributes</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#hasChildNodes">hasChildNodes</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#impl-var">impl</a></b></span> : QDomNodePrivate *</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#insertAfter">insertAfter</a></b></span> ( const QDomNode &amp;, const QDomNode &amp; ) : QDomNode</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#insertBefore">insertBefore</a></b></span> ( const QDomNode &amp;, const QDomNode &amp; ) : QDomNode</li> <li class="fn"><span class="name"><b><a href="qdomcharacterdata.html#insertData">insertData</a></b></span> ( unsigned long, const QString &amp; )</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isAttr">isAttr</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isCDATASection">isCDATASection</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isCharacterData">isCharacterData</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isComment">isComment</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isDocument">isDocument</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isDocumentFragment">isDocumentFragment</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isDocumentType">isDocumentType</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isElement">isElement</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isEntity">isEntity</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isEntityReference">isEntityReference</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isNotation">isNotation</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isNull">isNull</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isProcessingInstruction">isProcessingInstruction</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isSupported">isSupported</a></b></span> ( const QString &amp;, const QString &amp; ) const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#isText">isText</a></b></span> () const : bool</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#lastChild">lastChild</a></b></span> () const : QDomNode</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#lastChildElement">lastChildElement</a></b></span> ( const QString &amp; ) const : QDomElement</li> <li class="fn"><span class="name"><b><a href="qdomcharacterdata.html#length">length</a></b></span> () const : uint</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#lineNumber">lineNumber</a></b></span> () const : int</li> </ul></td><td class="topAlign"><ul> <li class="fn"><span class="name"><b><a href="qdomnode.html#localName">localName</a></b></span> () const : QString</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#namedItem">namedItem</a></b></span> ( const QString &amp; ) const : QDomNode</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#namespaceURIx">namespaceURI</a></b></span> () const : QString</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#nextSibling">nextSibling</a></b></span> () const : QDomNode</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#nextSiblingElement">nextSiblingElement</a></b></span> ( const QString &amp; ) const : QDomElement</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#nodeName">nodeName</a></b></span> () const : QString</li> <li class="fn"><span class="name"><b><a href="qdomtext.html#nodeType">nodeType</a></b></span> () const : QDomNode::NodeType</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#nodeValue">nodeValue</a></b></span> () const : QString</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#normalize">normalize</a></b></span> ()</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#ownerDocument">ownerDocument</a></b></span> () const : QDomDocument</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#parentNode">parentNode</a></b></span> () const : QDomNode</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#prefix">prefix</a></b></span> () const : QString</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#previousSibling">previousSibling</a></b></span> () const : QDomNode</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#previousSiblingElement">previousSiblingElement</a></b></span> ( const QString &amp; ) const : QDomElement</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#removeChild">removeChild</a></b></span> ( const QDomNode &amp; ) : QDomNode</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#replaceChild">replaceChild</a></b></span> ( const QDomNode &amp;, const QDomNode &amp; ) : QDomNode</li> <li class="fn"><span class="name"><b><a href="qdomcharacterdata.html#replaceData">replaceData</a></b></span> ( unsigned long, unsigned long, const QString &amp; )</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#save">save</a></b></span> ( QTextStream &amp;, int ) const</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#save-2">save</a></b></span> ( QTextStream &amp;, int, EncodingPolicy ) const</li> <li class="fn"><span class="name"><b><a href="qdomcharacterdata.html#setData">setData</a></b></span> ( const QString &amp; )</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#setNodeValue">setNodeValue</a></b></span> ( const QString &amp; )</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#setPrefix">setPrefix</a></b></span> ( const QString &amp; )</li> <li class="fn"><span class="name"><b><a href="qdomtext.html#splitText">splitText</a></b></span> ( int ) : QDomText</li> <li class="fn"><span class="name"><b><a href="qdomcharacterdata.html#substringData">substringData</a></b></span> ( unsigned long, unsigned long ) : QString</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#toAttr">toAttr</a></b></span> () const : QDomAttr</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#toCDATASection">toCDATASection</a></b></span> () const : QDomCDATASection</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#toCharacterData">toCharacterData</a></b></span> () const : QDomCharacterData</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#toComment">toComment</a></b></span> () const : QDomComment</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#toDocument">toDocument</a></b></span> () const : QDomDocument</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#toDocumentFragment">toDocumentFragment</a></b></span> () const : QDomDocumentFragment</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#toDocumentType">toDocumentType</a></b></span> () const : QDomDocumentType</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#toElement">toElement</a></b></span> () const : QDomElement</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#toEntity">toEntity</a></b></span> () const : QDomEntity</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#toEntityReference">toEntityReference</a></b></span> () const : QDomEntityReference</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#toNotation">toNotation</a></b></span> () const : QDomNotation</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#toProcessingInstruction">toProcessingInstruction</a></b></span> () const : QDomProcessingInstruction</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#toText">toText</a></b></span> () const : QDomText</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#operator-not-eq">operator!=</a></b></span> ( const QDomNode &amp; ) const : bool</li> <li class="fn"><span class="name"><b><a href="qdomtext.html#operator-eq">operator=</a></b></span> ( const QDomText &amp; ) : QDomText &amp;</li> <li class="fn"><span class="name"><b><a href="qdomnode.html#operator-eq-eq">operator==</a></b></span> ( const QDomNode &amp; ) const : bool</li> </ul> </td></tr> </table> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.</p> <p> All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p> <br /> <p> Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p> <p> Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> </div> </body> </html>
tools/appengine-java-sdk-1.9.2/docs/javadoc/com/google/appengine/api/search/GetException.html
Benn83uk/SpaceAppsChallenge2014
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0-google-v5) on Mon Mar 31 11:24:26 PDT 2014 --> <title>GetException (Google App Engine Java API)</title> <meta name="date" content="2014-03-31"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="GetException (Google App Engine Java API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../com/google/appengine/api/search/GeoPoint.html" title="class in com.google.appengine.api.search"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../com/google/appengine/api/search/GetIndexesRequest.html" title="class in com.google.appengine.api.search"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/google/appengine/api/search/GetException.html" target="_top">Frames</a></li> <li><a href="GetException.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#methods_inherited_from_class_com.google.appengine.api.search.SearchBaseException">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li>Method</li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">com.google.appengine.api.search</div> <h2 title="Class GetException" class="title">Class GetException</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>java.lang.Throwable</li> <li> <ul class="inheritance"> <li>java.lang.Exception</li> <li> <ul class="inheritance"> <li>java.lang.RuntimeException</li> <li> <ul class="inheritance"> <li><a href="../../../../../com/google/appengine/api/search/SearchBaseException.html" title="class in com.google.appengine.api.search">com.google.appengine.api.search.SearchBaseException</a></li> <li> <ul class="inheritance"> <li>com.google.appengine.api.search.GetException</li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.io.Serializable</dd> </dl> <hr> <br> <pre>public class <span class="strong">GetException</span> extends <a href="../../../../../com/google/appengine/api/search/SearchBaseException.html" title="class in com.google.appengine.api.search">SearchBaseException</a></pre> <div class="block">Thrown to indicate that a search service failure occurred while performing a request to get requested objects.</div> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../../serialized-form.html#com.google.appengine.api.search.GetException">Serialized Form</a></dd></dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../com/google/appengine/api/search/GetException.html#GetException(com.google.appengine.api.search.OperationResult)">GetException</a></strong>(<a href="../../../../../com/google/appengine/api/search/OperationResult.html" title="class in com.google.appengine.api.search">OperationResult</a>&nbsp;operationResult)</code> <div class="block">Constructs an exception when some error occurred in the search service when processing a request to get objects.</div> </td> </tr> <tr class="rowColor"> <td class="colOne"><code><strong><a href="../../../../../com/google/appengine/api/search/GetException.html#GetException(java.lang.String)">GetException</a></strong>(java.lang.String&nbsp;message)</code> <div class="block">Constructs an exception when some error occurred in the search service when processing a request to get objects.</div> </td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_com.google.appengine.api.search.SearchBaseException"> <!-- --> </a> <h3>Methods inherited from class&nbsp;com.google.appengine.api.search.<a href="../../../../../com/google/appengine/api/search/SearchBaseException.html" title="class in com.google.appengine.api.search">SearchBaseException</a></h3> <code><a href="../../../../../com/google/appengine/api/search/SearchBaseException.html#getOperationResult()">getOperationResult</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Throwable"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Throwable</h3> <code>addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="GetException(java.lang.String)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>GetException</h4> <pre>public&nbsp;GetException(java.lang.String&nbsp;message)</pre> <div class="block">Constructs an exception when some error occurred in the search service when processing a request to get objects.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>message</code> - the error detail associated with the failure</dd></dl> </li> </ul> <a name="GetException(com.google.appengine.api.search.OperationResult)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>GetException</h4> <pre>public&nbsp;GetException(<a href="../../../../../com/google/appengine/api/search/OperationResult.html" title="class in com.google.appengine.api.search">OperationResult</a>&nbsp;operationResult)</pre> <div class="block">Constructs an exception when some error occurred in the search service when processing a request to get objects.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>operationResult</code> - the error code and message detail associated with the failure</dd></dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-all.html">Index</a></li> <li><a href="../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../com/google/appengine/api/search/GeoPoint.html" title="class in com.google.appengine.api.search"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../com/google/appengine/api/search/GetIndexesRequest.html" title="class in com.google.appengine.api.search"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../index.html?com/google/appengine/api/search/GetException.html" target="_top">Frames</a></li> <li><a href="GetException.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#methods_inherited_from_class_com.google.appengine.api.search.SearchBaseException">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li>Method</li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
src/test/resources/integrationTesting/mysql/expecting/mysqlhtmlorphan/columns.html
schemaspy/schemaspy
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>htmlorphanit Database</title> <!-- Tell the browser to be responsive to screen width --> <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"> <link rel="icon" type="image/png" sizes="16x16" href="favicon.png"> <!-- Bootstrap 3.3.5 --> <link rel="stylesheet" href="bower/admin-lte/bootstrap/css/bootstrap.min.css"> <!-- Font Awesome --> <link rel="stylesheet" href="bower/font-awesome/css/font-awesome.min.css"> <!-- Ionicons --> <link rel="stylesheet" href="bower/ionicons/css/ionicons.min.css"> <!-- DataTables --> <link rel="stylesheet" href="bower/datatables.net-bs/css/dataTables.bootstrap.min.css"> <link rel="stylesheet" href="bower/datatables.net-buttons-bs/css/buttons.bootstrap.min.css"> <!-- Code Mirror --> <link rel="stylesheet" href="bower/codemirror/codemirror.css"> <!-- Fonts --> <link href='fonts/indieflower/indie-flower.css' rel='stylesheet' type='text/css'> <link href='fonts/source-sans-pro/source-sans-pro.css' rel='stylesheet' type='text/css'> <!-- Theme style --> <link rel="stylesheet" href="bower/admin-lte/dist/css/AdminLTE.min.css"> <!-- Salvattore --> <link rel="stylesheet" href="bower/salvattore/salvattore.css"> <!-- AdminLTE Skins. Choose a skin from the css/skins folder instead of downloading all of them to reduce the load. --> <link rel="stylesheet" href="bower/admin-lte/dist/css/skins/_all-skins.min.css"> <!-- SchemaSpy --> <link rel="stylesheet" href="schemaSpy.css"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="bower/html5shiv/html5shiv.min.js"></script> <script src="bower/respond/respond.min.js"></script> <![endif]--> </head> <!-- ADD THE CLASS layout-top-nav TO REMOVE THE SIDEBAR. --> <body class="hold-transition skin-blue layout-top-nav"> <div class="wrapper"> <header class="main-header"> <nav class="navbar navbar-static-top"> <div class="container"> <div class="navbar-header"> <a href="index.html" class="navbar-brand"><b>htmlorphanit</b> Database</a> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse"><i class="fa fa-bars"></i></button> </div> <!-- Collect the nav links, forms, and other content for toggling --> <div class="collapse navbar-collapse pull-left" id="navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="index.html">Tables <span class="sr-only">(current)</span></a></li> <li><a href="columns.html" title="All of the columns in the schema">Columns</a></li> <li><a href="constraints.html" title="Useful for diagnosing error messages that just give constraint name or number">Constraints</a></li> <li><a href="relationships.html" title="Diagram of table relationships">Relationships</a></li> <li><a href="orphans.html" title="View of tables with neither parents nor children">Orphan&nbsp;Tables</a></li> <li><a href="anomalies.html" title="Things that might not be quite right">Anomalies</a></li> <li><a href="routines.html" title="Procedures and functions">Routines</a></li> </ul> </div> <!-- /.navbar-collapse --> <!-- Navbar Right Menu --> </div> <!-- /.container-fluid --> </nav> </header> <!-- Main content --> <!-- Full Width Column --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1>Columns</h1> </section> <!-- Main content --> <section class="content"> <div class="box box-primary"> <div class="box-header with-border"> <span class="glyphicon glyphicon-list-alt" aria-hidden="true"></span> <h3 class="box-title">Columns</h3> </div> <div class="box-body"> <table id="column_table" class="table table-bordered table-striped dataTable" role="grid" data-paging="true" data-page-length="50" data-length-change="false"> <thead align='left'> <tr> <th>Table</th> <th>Type</th> <th>Column</th> <th>Type</th> <th>Size</th> <th title='Are nulls allowed?'>Nullable</th> <th title='Is column automatically updated?'>Auto</th> <th title='Default value'>Default</th> <th title='Comments' class="toggle"><span>Comments</span></th> </tr> </thead> <tbody></tbody> </table> </div> </div> </section> <script> var tableData = [ { "tableName": "group", "tableFileName": "group", "tableType": "Table", "keyClass": "indexedColumn", "keyTitle": "Indexed", "name": "<i class='fa fa-sitemap fa-rotate-120' style='padding-right: 5px;'><\/i>name", "type": "VARCHAR", "length": 16, "nullable": "", "autoUpdated": "", "defaultValue": "null", "comments": "" }, { "tableName": "group", "tableFileName": "group", "tableType": "Table", "keyClass": "primaryKey", "keyTitle": "Primary Key", "name": "<i class='icon ion-key iconkey' style='padding-left: 5px;'><\/i>groupId", "type": "INT", "length": 10, "nullable": "", "autoUpdated": "√", "defaultValue": "null", "comments": "" }, { "tableName": "group", "tableFileName": "group", "tableType": "Table", "keyClass": "", "keyTitle": "", "name": "description", "type": "VARCHAR", "length": 80, "nullable": "", "autoUpdated": "", "defaultValue": "null", "comments": "" } ]; var config = { pagination: true }; </script> </div> <!-- /.content-wrapper --> <footer class="main-footer"> <div> <div class="pull-right hidden-xs"> <a href="https://github.com/schemaspy/schemaspy" title="GitHub for SchemaSpy"><i class="fa fa-github-square fa-2x"></i></a> <a href="http://stackoverflow.com/questions/tagged/schemaspy" title="StackOverflow for SchemaSpy"><i class="fa fa-stack-overflow fa-2x"></i></a> </div> <strong>Generated by <a href="http://schemaspy.org/" class="logo-text"><i class="fa fa-database"></i> SchemaSpy 6.1.1-SNAPSHOT</a></strong> </div> <!-- /.container --> </footer> </div> <!-- ./wrapper --> <!-- jQuery 2.2.3 --> <script src="bower/admin-lte/plugins/jQuery/jquery-2.2.3.min.js"></script> <script src="bower/admin-lte/plugins/jQueryUI/jquery-ui.min.js"></script> <!-- Bootstrap 3.3.5 --> <script src="bower/admin-lte/bootstrap/js/bootstrap.min.js"></script> <!-- DataTables --> <script src="bower/datatables.net/jquery.dataTables.min.js"></script> <script src="bower/datatables.net-bs/js/dataTables.bootstrap.min.js"></script> <script src="bower/datatables.net-buttons/dataTables.buttons.min.js"></script> <script src="bower/datatables.net-buttons-bs/js/buttons.bootstrap.min.js"></script> <script src="bower/datatables.net-buttons/buttons.html5.min.js"></script> <script src="bower/datatables.net-buttons/buttons.print.min.js"></script> <script src="bower/datatables.net-buttons/buttons.colVis.min.js"></script> <!-- SheetJS --> <script src="bower/js-xlsx/xlsx.full.min.js"></script> <!-- pdfmake --> <script src="bower/pdfmake/pdfmake.min.js"></script> <script src="bower/pdfmake/vfs_fonts.js"></script> <!-- SlimScroll --> <script src="bower/admin-lte/plugins/slimScroll/jquery.slimscroll.min.js"></script> <!-- FastClick --> <script src="bower/admin-lte/plugins/fastclick/fastclick.js"></script> <!-- Salvattore --> <script src="bower/salvattore/salvattore.min.js"></script> <!-- AnchorJS --> <script src="bower/anchor-js/anchor.min.js"></script> <!-- CodeMirror --> <script src="bower/codemirror/codemirror.js"></script> <script src="bower/codemirror/sql.js"></script> <!-- AdminLTE App --> <script src="bower/admin-lte/dist/js/app.min.js"></script> <script src="column.js"></script> <script src="schemaSpy.js"></script> </body> </html>
docs/apidocs/org/openbase/jul/extension/rsb/com/class-use/RSBSynchronizedRemoteServer.html
DivineCooperation/jul
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_151) on Tue Jan 16 16:57:26 CET 2018 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.openbase.jul.extension.rsb.com.RSBSynchronizedRemoteServer (JUL 1.5-SNAPSHOT API)</title> <meta name="date" content="2018-01-16"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.openbase.jul.extension.rsb.com.RSBSynchronizedRemoteServer (JUL 1.5-SNAPSHOT API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/openbase/jul/extension/rsb/com/RSBSynchronizedRemoteServer.html" title="class in org.openbase.jul.extension.rsb.com">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?org/openbase/jul/extension/rsb/com/class-use/RSBSynchronizedRemoteServer.html" target="_top">Frames</a></li> <li><a href="RSBSynchronizedRemoteServer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.openbase.jul.extension.rsb.com.RSBSynchronizedRemoteServer" class="title">Uses of Class<br>org.openbase.jul.extension.rsb.com.RSBSynchronizedRemoteServer</h2> </div> <div class="classUseContainer">No usage of org.openbase.jul.extension.rsb.com.RSBSynchronizedRemoteServer</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/openbase/jul/extension/rsb/com/RSBSynchronizedRemoteServer.html" title="class in org.openbase.jul.extension.rsb.com">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?org/openbase/jul/extension/rsb/com/class-use/RSBSynchronizedRemoteServer.html" target="_top">Frames</a></li> <li><a href="RSBSynchronizedRemoteServer.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2015&#x2013;2018 <a href="https://github.com/openbase">openbase.org</a>. All rights reserved.</small></p> </body> </html>
BaseAgent/lib/Environments/Jabber/javadoc/org/jivesoftware/smackx/workgroup/ext/macros/package-tree.html
DANCEcollaborative/bazaar
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_20) on Mon Jul 04 15:12:27 CDT 2011 --> <TITLE> org.jivesoftware.smackx.workgroup.ext.macros Class Hierarchy (Smack 3.2.1 Documentation) </TITLE> <META NAME="date" CONTENT="2011-07-04"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="org.jivesoftware.smackx.workgroup.ext.macros Class Hierarchy (Smack 3.2.1 Documentation)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <b>Smack</b></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../../org/jivesoftware/smackx/workgroup/ext/history/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../../../../org/jivesoftware/smackx/workgroup/ext/notes/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/jivesoftware/smackx/workgroup/ext/macros/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> Hierarchy For Package org.jivesoftware.smackx.workgroup.ext.macros </H2> </CENTER> <DL> <DT><B>Package Hierarchies:</B><DD><A HREF="../../../../../../overview-tree.html">All Packages</A></DL> <HR> <H2> Class Hierarchy </H2> <UL> <LI TYPE="circle">java.lang.<A HREF="http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang"><B>Object</B></A><UL> <LI TYPE="circle">org.jivesoftware.smackx.workgroup.ext.macros.<A HREF="../../../../../../org/jivesoftware/smackx/workgroup/ext/macros/Macro.html" title="class in org.jivesoftware.smackx.workgroup.ext.macros"><B>Macro</B></A><LI TYPE="circle">org.jivesoftware.smackx.workgroup.ext.macros.<A HREF="../../../../../../org/jivesoftware/smackx/workgroup/ext/macros/MacroGroup.html" title="class in org.jivesoftware.smackx.workgroup.ext.macros"><B>MacroGroup</B></A><LI TYPE="circle">org.jivesoftware.smackx.workgroup.ext.macros.<A HREF="../../../../../../org/jivesoftware/smackx/workgroup/ext/macros/Macros.InternalProvider.html" title="class in org.jivesoftware.smackx.workgroup.ext.macros"><B>Macros.InternalProvider</B></A> (implements org.jivesoftware.smack.provider.<A HREF="../../../../../../org/jivesoftware/smack/provider/IQProvider.html" title="interface in org.jivesoftware.smack.provider">IQProvider</A>) <LI TYPE="circle">org.jivesoftware.smack.packet.<A HREF="../../../../../../org/jivesoftware/smack/packet/Packet.html" title="class in org.jivesoftware.smack.packet"><B>Packet</B></A><UL> <LI TYPE="circle">org.jivesoftware.smack.packet.<A HREF="../../../../../../org/jivesoftware/smack/packet/IQ.html" title="class in org.jivesoftware.smack.packet"><B>IQ</B></A><UL> <LI TYPE="circle">org.jivesoftware.smackx.workgroup.ext.macros.<A HREF="../../../../../../org/jivesoftware/smackx/workgroup/ext/macros/Macros.html" title="class in org.jivesoftware.smackx.workgroup.ext.macros"><B>Macros</B></A></UL> </UL> </UL> </UL> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <b>Smack</b></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../../org/jivesoftware/smackx/workgroup/ext/history/package-tree.html"><B>PREV</B></A>&nbsp; &nbsp;<A HREF="../../../../../../org/jivesoftware/smackx/workgroup/ext/notes/package-tree.html"><B>NEXT</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../../index.html?org/jivesoftware/smackx/workgroup/ext/macros/package-tree.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright &copy; 2003-2007 Jive Software. </i> </BODY> </HTML>
tools/appengine-java-sdk-1.9.2/docs/javadoc/com/google/appengine/api/search/checkers/SortExpressionChecker.html
Benn83uk/SpaceAppsChallenge2014
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0-google-v5) on Mon Mar 31 11:24:26 PDT 2014 --> <title>SortExpressionChecker (Google App Engine Java API)</title> <meta name="date" content="2014-03-31"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="SortExpressionChecker (Google App Engine Java API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../com/google/appengine/api/search/checkers/SearchApiLimits.html" title="class in com.google.appengine.api.search.checkers"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../../com/google/appengine/api/search/checkers/SortOptionsChecker.html" title="class in com.google.appengine.api.search.checkers"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/google/appengine/api/search/checkers/SortExpressionChecker.html" target="_top">Frames</a></li> <li><a href="SortExpressionChecker.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">com.google.appengine.api.search.checkers</div> <h2 title="Class SortExpressionChecker" class="title">Class SortExpressionChecker</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>com.google.appengine.api.search.checkers.SortExpressionChecker</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="strong">SortExpressionChecker</span> extends java.lang.Object</pre> <div class="block">Checks the values of a <a href="../../../../../../com/google/appengine/api/search/SortExpression.html" title="class in com.google.appengine.api.search"><code>SortExpression</code></a>.</div> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../../../com/google/appengine/api/search/checkers/SortExpressionChecker.html#SortExpressionChecker()">SortExpressionChecker</a></strong>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> <caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static SortSpec</code></td> <td class="colLast"><code><strong><a href="../../../../../../com/google/appengine/api/search/checkers/SortExpressionChecker.html#checkValid(SortSpec)">checkValid</a></strong>(SortSpec&nbsp;spec)</code> <div class="block">Checks the <code>SortSpec</code> is valid, specifically checking the limit on number of documents to score is not too large.</div> </td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="SortExpressionChecker()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>SortExpressionChecker</h4> <pre>public&nbsp;SortExpressionChecker()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>Method Detail</h3> <a name="checkValid(SortSpec)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>checkValid</h4> <pre>public static&nbsp;SortSpec&nbsp;checkValid(SortSpec&nbsp;spec)</pre> <div class="block">Checks the <code>SortSpec</code> is valid, specifically checking the limit on number of documents to score is not too large.</div> <dl><dt><span class="strong">Parameters:</span></dt><dd><code>spec</code> - the <code>SortSpec</code> to check</dd> <dt><span class="strong">Returns:</span></dt><dd>the checked spec</dd> <dt><span class="strong">Throws:</span></dt> <dd><code>java.lang.IllegalArgumentException</code> - if the spec is invalid</dd></dl> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../com/google/appengine/api/search/checkers/SearchApiLimits.html" title="class in com.google.appengine.api.search.checkers"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../../../com/google/appengine/api/search/checkers/SortOptionsChecker.html" title="class in com.google.appengine.api.search.checkers"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?com/google/appengine/api/search/checkers/SortExpressionChecker.html" target="_top">Frames</a></li> <li><a href="SortExpressionChecker.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">Method</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
doc/javadoc/gate/class-use/CorpusController.html
liuhongchao/GATE_Developer_7.0
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_24) on Thu Feb 09 13:37:54 GMT 2012 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Interface gate.CorpusController (GATE JavaDoc) </TITLE> <META NAME="date" CONTENT="2012-02-09"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface gate.CorpusController (GATE JavaDoc)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../gate/CorpusController.html" title="interface in gate"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../index.html?gate//class-useCorpusController.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="CorpusController.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Interface<br>gate.CorpusController</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../gate/CorpusController.html" title="interface in gate">CorpusController</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#gate.creole"><B>gate.creole</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="gate.creole"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../gate/CorpusController.html" title="interface in gate">CorpusController</A> in <A HREF="../../gate/creole/package-summary.html">gate.creole</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../gate/creole/package-summary.html">gate.creole</A> that implement <A HREF="../../gate/CorpusController.html" title="interface in gate">CorpusController</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../gate/creole/ConditionalSerialAnalyserController.html" title="class in gate.creole">ConditionalSerialAnalyserController</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This class implements a SerialController that only contains <A HREF="../../gate/LanguageAnalyser.html" title="interface in gate"><CODE>LanguageAnalyser</CODE></A>s.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../gate/creole/RealtimeCorpusController.html" title="class in gate.creole">RealtimeCorpusController</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;A custom GATE controller that interrupts the execution over a document when a specified amount of time has elapsed.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../gate/creole/SerialAnalyserController.html" title="class in gate.creole">SerialAnalyserController</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This class implements a SerialController that only contains <A HREF="../../gate/LanguageAnalyser.html" title="interface in gate"><CODE>LanguageAnalyser</CODE></A>s.</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../gate/CorpusController.html" title="interface in gate"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../index.html?gate//class-useCorpusController.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="CorpusController.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
doc/js/source/Component4.html
tonybaloney/Cloud-auto-scaling
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>The source code</title> <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="../resources/prettify/prettify.js"></script> <style type="text/css"> .highlight { display: block; background-color: #ddd; } </style> <script type="text/javascript"> function highlight() { document.getElementById(location.hash.replace(/#/, "")).className = "highlight"; } </script> </head> <body onload="prettyPrint(); highlight();"> <pre class="prettyprint lang-js">/* This file is part of Ext JS 4 Copyright (c) 2011 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. */ <span id='Ext-draw-Component'>/** </span> * @class Ext.draw.Component * @extends Ext.Component * * The Draw Component is a surface in which sprites can be rendered. The Draw Component * manages and holds a `Surface` instance: an interface that has * an SVG or VML implementation depending on the browser capabilities and where * Sprites can be appended. * * One way to create a draw component is: * * @example * var drawComponent = Ext.create('Ext.draw.Component', { * viewBox: false, * items: [{ * type: 'circle', * fill: '#79BB3F', * radius: 100, * x: 100, * y: 100 * }] * }); * * Ext.create('Ext.Window', { * width: 215, * height: 235, * layout: 'fit', * items: [drawComponent] * }).show(); * * In this case we created a draw component and added a sprite to it. * The *type* of the sprite is *circle* so if you run this code you'll see a yellow-ish * circle in a Window. When setting `viewBox` to `false` we are responsible for setting the object's position and * dimensions accordingly. * * You can also add sprites by using the surface's add method: * * drawComponent.surface.add({ * type: 'circle', * fill: '#79BB3F', * radius: 100, * x: 100, * y: 100 * }); * * For more information on Sprites, the core elements added to a draw component's surface, * refer to the Ext.draw.Sprite documentation. */ Ext.define('Ext.draw.Component', { /* Begin Definitions */ alias: 'widget.draw', extend: 'Ext.Component', requires: [ 'Ext.draw.Surface', 'Ext.layout.component.Draw' ], /* End Definitions */ <span id='Ext-draw-Component-cfg-enginePriority'> /** </span> * @cfg {String[]} enginePriority * Defines the priority order for which Surface implementation to use. The first * one supported by the current environment will be used. */ enginePriority: ['Svg', 'Vml'], baseCls: Ext.baseCSSPrefix + 'surface', componentLayout: 'draw', <span id='Ext-draw-Component-cfg-viewBox'> /** </span> * @cfg {Boolean} viewBox * Turn on view box support which will scale and position items in the draw component to fit to the component while * maintaining aspect ratio. Note that this scaling can override other sizing settings on yor items. Defaults to true. */ viewBox: true, <span id='Ext-draw-Component-cfg-autoSize'> /** </span> * @cfg {Boolean} autoSize * Turn on autoSize support which will set the bounding div's size to the natural size of the contents. Defaults to false. */ autoSize: false, <span id='Ext-draw-Component-cfg-gradients'> /** </span> * @cfg {Object[]} gradients (optional) Define a set of gradients that can be used as `fill` property in sprites. * The gradients array is an array of objects with the following properties: * * - `id` - string - The unique name of the gradient. * - `angle` - number, optional - The angle of the gradient in degrees. * - `stops` - object - An object with numbers as keys (from 0 to 100) and style objects as values * * ## Example * * gradients: [{ * id: 'gradientId', * angle: 45, * stops: { * 0: { * color: '#555' * }, * 100: { * color: '#ddd' * } * } * }, { * id: 'gradientId2', * angle: 0, * stops: { * 0: { * color: '#590' * }, * 20: { * color: '#599' * }, * 100: { * color: '#ddd' * } * } * }] * * Then the sprites can use `gradientId` and `gradientId2` by setting the fill attributes to those ids, for example: * * sprite.setAttributes({ * fill: 'url(#gradientId)' * }, true); */ initComponent: function() { this.callParent(arguments); this.addEvents( 'mousedown', 'mouseup', 'mousemove', 'mouseenter', 'mouseleave', 'click' ); }, <span id='Ext-draw-Component-method-onRender'> /** </span> * @private * * Create the Surface on initial render */ onRender: function() { var me = this, viewBox = me.viewBox, autoSize = me.autoSize, bbox, items, width, height, x, y; me.callParent(arguments); if (me.createSurface() !== false) { items = me.surface.items; if (viewBox || autoSize) { bbox = items.getBBox(); width = bbox.width; height = bbox.height; x = bbox.x; y = bbox.y; if (me.viewBox) { me.surface.setViewBox(x, y, width, height); } else { // AutoSized me.autoSizeSurface(); } } } }, //@private autoSizeSurface: function() { var me = this, items = me.surface.items, bbox = items.getBBox(), width = bbox.width, height = bbox.height; items.setAttributes({ translate: { x: -bbox.x, //Opera has a slight offset in the y axis. y: -bbox.y + (+Ext.isOpera) } }, true); if (me.rendered) { me.setSize(width, height); me.surface.setSize(width, height); } else { me.surface.setSize(width, height); } me.el.setSize(width, height); }, <span id='Ext-draw-Component-method-createSurface'> /** </span> * Create the Surface instance. Resolves the correct Surface implementation to * instantiate based on the 'enginePriority' config. Once the Surface instance is * created you can use the handle to that instance to add sprites. For example: * * drawComponent.surface.add(sprite); */ createSurface: function() { var surface = Ext.draw.Surface.create(Ext.apply({}, { width: this.width, height: this.height, renderTo: this.el }, this.initialConfig)); if (!surface) { // In case we cannot create a surface, return false so we can stop return false; } this.surface = surface; function refire(eventName) { return function(e) { this.fireEvent(eventName, e); }; } surface.on({ scope: this, mouseup: refire('mouseup'), mousedown: refire('mousedown'), mousemove: refire('mousemove'), mouseenter: refire('mouseenter'), mouseleave: refire('mouseleave'), click: refire('click') }); }, <span id='Ext-draw-Component-method-onDestroy'> /** </span> * @private * * Clean up the Surface instance on component destruction */ onDestroy: function() { var surface = this.surface; if (surface) { surface.destroy(); } this.callParent(arguments); } }); </pre> </body> </html>
docs/nitro-nitf.sourceforge.net/apidocs/c/2.5/functions_vars_0x74.html
mdaus/nitro
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>NITF: Data Fields - Variables</title> <link href="tabs.css" rel="stylesheet" type="text/css"> <link href="doxygen.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.5.8 --> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="main.html"><span>Main&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> <li class="current"><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li> <li><a href="classes.html"><span>Data&nbsp;Structure&nbsp;Index</span></a></li> <li class="current"><a href="functions.html"><span>Data&nbsp;Fields</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="functions.html"><span>All</span></a></li> <li class="current"><a href="functions_vars.html"><span>Variables</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="functions_vars.html#index_a"><span>a</span></a></li> <li><a href="functions_vars_0x62.html#index_b"><span>b</span></a></li> <li><a href="functions_vars_0x63.html#index_c"><span>c</span></a></li> <li><a href="functions_vars_0x64.html#index_d"><span>d</span></a></li> <li><a href="functions_vars_0x65.html#index_e"><span>e</span></a></li> <li><a href="functions_vars_0x66.html#index_f"><span>f</span></a></li> <li><a href="functions_vars_0x67.html#index_g"><span>g</span></a></li> <li><a href="functions_vars_0x68.html#index_h"><span>h</span></a></li> <li><a href="functions_vars_0x69.html#index_i"><span>i</span></a></li> <li><a href="functions_vars_0x6b.html#index_k"><span>k</span></a></li> <li><a href="functions_vars_0x6c.html#index_l"><span>l</span></a></li> <li><a href="functions_vars_0x6d.html#index_m"><span>m</span></a></li> <li><a href="functions_vars_0x6e.html#index_n"><span>n</span></a></li> <li><a href="functions_vars_0x6f.html#index_o"><span>o</span></a></li> <li><a href="functions_vars_0x70.html#index_p"><span>p</span></a></li> <li><a href="functions_vars_0x72.html#index_r"><span>r</span></a></li> <li><a href="functions_vars_0x73.html#index_s"><span>s</span></a></li> <li class="current"><a href="functions_vars_0x74.html#index_t"><span>t</span></a></li> <li><a href="functions_vars_0x75.html#index_u"><span>u</span></a></li> <li><a href="functions_vars_0x76.html#index_v"><span>v</span></a></li> <li><a href="functions_vars_0x77.html#index_w"><span>w</span></a></li> <li><a href="functions_vars_0x79.html#index_y"><span>y</span></a></li> </ul> </div> </div> <div class="contents"> &nbsp; <p> <h3><a class="anchor" name="index_t">- t -</a></h3><ul> <li>table : <a class="el" href="struct__nitf__LookupTable.html#47de9c3029478d2733894f323431c309">_nitf_LookupTable</a> <li>tables : <a class="el" href="struct__nitf__LookupTable.html#86e4308e445b78c60d722900ea118101">_nitf_LookupTable</a> <li>tag : <a class="el" href="struct__nitf__TREDescription.html#f10ee2526c0a1f96fd28fbfee4910dc5">_nitf_TREDescription</a> , <a class="el" href="struct__nitf__TRE.html#c71b33b71b6ef4220446472e1d3e7c7a">_nitf_TRE</a> <li>tag_str : <a class="el" href="struct__nitf__TRECursor.html#cc87e2e58ac6680a1d07cd3ae612ef38">_nitf_TRECursor</a> <li>targetId : <a class="el" href="struct__nitf__ImageSubheader.html#5d81058472c5c71962f7f1115b8f3fb1">_nitf_ImageSubheader</a> <li>tell : <a class="el" href="struct__nitf__IIOInterface.html#b1b62e8ae085fd5d8fdd73d9dc5631a9">_nitf_IIOInterface</a> <li>textColor : <a class="el" href="struct__nitf__LabelSubheader.html#1e16942216b498fa1916d9f24251d6c1">_nitf_LabelSubheader</a> <li>textID : <a class="el" href="struct__nitf__TextSubheader.html#80d3dfa5c3f0e5e6b06d5913a27b23f0">_nitf_TextSubheader</a> <li>textInfo : <a class="el" href="struct__nitf__FileHeader.html#2f61683c68082e9cab362687b16bd356">_nitf_FileHeader</a> <li>texts : <a class="el" href="struct__nitf__Record.html#177ee0581ec9311459bb841c358360de">_nitf_Record</a> <li>textWriters : <a class="el" href="struct__nitf__Writer.html#8768720531fb72cfe157d7bda0bbfa9d">_nitf_Writer</a> <li>timeInMillis : <a class="el" href="struct__nitf__DateTime.html#b6f4e69a411309a732ddf1ec2a7f9e95">_nitf_DateTime</a> <li>title : <a class="el" href="struct__nitf__TextSubheader.html#5340c0ac4e95bea000dd9bef67527955">_nitf_TextSubheader</a> <li>tre : <a class="el" href="struct__nitf__TRECursor.html#9f32fd4c1f8f339e6ba21daf56e6a879">_nitf_TRECursor</a> <li>treHandlers : <a class="el" href="struct__protected__nitf__PluginRegistry.html#36469e07957cf7fdf5bcf7e17fe846bd">_protected_nitf_PluginRegistry</a> <li>type : <a class="el" href="struct__nitf__Field.html#3cd0295b22bdd1d9fbbe951f18012288">_nitf_Field</a> <li>typeID : <a class="el" href="struct__nitf__RESubheader.html#f2c0e2bbe752c4ec4f1a54f537aca02a">_nitf_RESubheader</a> , <a class="el" href="struct__nitf__DESubheader.html#a59ea760f0084d49df3ee4cadf388155">_nitf_DESubheader</a> <li>types : <a class="el" href="struct__nitf__DownSampler.html#8c6b3c95230d294389004fc6be95ea7f">_nitf_DownSampler</a> </ul> </div> <hr size="1"><address style="text-align: right;"><small>Generated on Wed Dec 9 19:26:50 2009 for NITF by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.8 </small></address> </body> </html>
lib/encog-core-3.3.0/apidocs/org/encog/ml/data/market/class-use/MarketMLDataSet.html
ars22/WorkflowScheduling
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.6.0_30) on Sat Oct 11 22:51:35 UTC 2014 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class org.encog.ml.data.market.MarketMLDataSet (Encog Core 3.3.0 API)</title> <meta name="date" content="2014-10-11"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.encog.ml.data.market.MarketMLDataSet (Encog Core 3.3.0 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/encog/ml/data/market/MarketMLDataSet.html" title="class in org.encog.ml.data.market">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li>NEXT</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/encog/ml/data/market//class-useMarketMLDataSet.html" target="_top">FRAMES</a></li> <li><a href="MarketMLDataSet.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.encog.ml.data.market.MarketMLDataSet" class="title">Uses of Class<br>org.encog.ml.data.market.MarketMLDataSet</h2> </div> <div class="classUseContainer">No usage of org.encog.ml.data.market.MarketMLDataSet</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/encog/ml/data/market/MarketMLDataSet.html" title="class in org.encog.ml.data.market">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>PREV</li> <li>NEXT</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/encog/ml/data/market//class-useMarketMLDataSet.html" target="_top">FRAMES</a></li> <li><a href="MarketMLDataSet.html" target="_top">NO FRAMES</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2014. All Rights Reserved.</small></p> </body> </html>
doc_full/html/dir_7fafd97160a629d8a3bbe781b2afb806.html
ibressler/libcfp
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <title>libcfp: /home/ingo/code/libcfp/repo/src/ Directory Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css"/> </head> <body> <!-- Generated by Doxygen 1.7.1 --> <div class="navigation" id="top"> <div class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li><a href="dirs.html"><span>Directories</span></a></li> </ul> </div> <div class="navpath"> <ul> <li><a class="el" href="dir_0074e47e2414e96567eea71bb41cefe4.html">repo</a> </li> <li><a class="el" href="dir_7fafd97160a629d8a3bbe781b2afb806.html">src</a> </li> </ul> </div> </div> <div class="header"> <div class="headertitle"> <h1>src Directory Reference</h1> </div> </div> <div class="contents"> <p><div class="dynheader"> Directory dependency graph for /home/ingo/code/libcfp/repo/src/:</div> <div class="dyncontent"> <div class="center"><img src="dir_7fafd97160a629d8a3bbe781b2afb806_dep.png" border="0" usemap="#dir__7fafd97160a629d8a3bbe781b2afb806__dep" alt="/home/ingo/code/libcfp/repo/src/"/></div> <map name="dir__7fafd97160a629d8a3bbe781b2afb806__dep" id="dir__7fafd97160a629d8a3bbe781b2afb806__dep"> <area shape="rect" id="node5" href="dir_75e4bae1f39bcd1d02044fd4452d71a9.html" title="include" alt="" coords="133,161,205,209"/><area shape="rect" id="edge4" href="dir_000003_000001.html" title="5" alt="" coords="173,134,182,151"/><area shape="rect" id="node4" href="dir_b3672712c99ebe02c9d88fa024848f89.html" title="doc" alt="" coords="37,65,109,113"/><area shape="rect" id="graph3" href="dir_7fafd97160a629d8a3bbe781b2afb806.html" alt="" coords="27,55,216,124"/><area shape="rect" id="graph2" href="dir_0074e47e2414e96567eea71bb41cefe4.html" title="repo" alt="" coords="16,16,227,135"/></map> </div> </p> <table class="memberdecls"> <tr><td colspan="2"><h2><a name="subdirs"></a> Directories</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">directory &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_b3672712c99ebe02c9d88fa024848f89.html">doc</a></td></tr> <tr><td colspan="2"><h2><a name="files"></a> Files</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="element_8cpp.html">element.cpp</a> <a href="element_8cpp_source.html">[code]</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="element_8h.html">element.h</a> <a href="element_8h_source.html">[code]</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="elementgroup_8cpp.html">elementgroup.cpp</a> <a href="elementgroup_8cpp_source.html">[code]</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="elementgroup_8h.html">elementgroup.h</a> <a href="elementgroup_8h_source.html">[code]</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="error_8cpp.html">error.cpp</a> <a href="error_8cpp_source.html">[code]</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="parser_8cpp.html">parser.cpp</a> <a href="parser_8cpp_source.html">[code]</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="parserdetails_8cpp.html">parserdetails.cpp</a> <a href="parserdetails_8cpp_source.html">[code]</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="parserstate_8cpp.html">parserstate.cpp</a> <a href="parserstate_8cpp_source.html">[code]</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="parserstate_8h.html">parserstate.h</a> <a href="parserstate_8h_source.html">[code]</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="token_8cpp.html">token.cpp</a> <a href="token_8cpp_source.html">[code]</a></td></tr> <tr><td class="memItemLeft" align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="token_8h.html">token.h</a> <a href="token_8h_source.html">[code]</a></td></tr> </table> </div> <hr size="1"> <table border="0" width="100%"><tr> <td> <!-- tracking img goes here --> </td> <td> <address style="text-align: right;"><small> Generated on Mon Nov 7 2011 Mon Nov 7 2011 12:00:24 for libcfp 0.1 by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.7.1 </small></address> </td </tr></table> </body> </html>
parcel-tsx/src/index.html
alexgula/js-playground
<html> <body> <div id="app"></div> <script src="./index.tsx"></script> </body> </html>
css/layout.css
gamerinshaft/orestrap
/* # Layout ## Header ヘッダー、レスポンシブ対応はangular material に任せるので、 ここでは静的なマークアップのみ実装する。 ``` <header class="header row z3 bottom"> <div class="flex flex-xs-auto"> <div class="brand"><span>H</span>untching</div> </div> <div class="flex flex-xs-auto"> </div> <div class="flex flex-xs-1 hunt"> <i class="fa fa-dot-circle-o"></i> </div> </header> ``` */ header.header{ height: 64px; color: white; background-color: #3f51b5; padding: 8px; box-sizing: border-box; position: relative; overflow: hidden; z-index: 100; } header.header:after { display: block; right: 120px; position: absolute; content: ""; right: 20; top: 0; width: 0; height: 0; border-style: solid; width: 200px; height: 200px; transform: rotate(45deg); -webkit-transform: rotate(45deg); background-color: #42A5F5; border: solid 1px white; box-shadow: 0 3px 1px -2px rgba(0,0,0,.14),0 2px 2px 0 rgba(0,0,0,.098),0 1px 5px 0 rgba(0,0,0,.084); z-index: 8; } header.header .hunt{ z-index: 8; text-align: center; font-size: 26px; } header.header .brand{ -webkit-font-smoothing: antialiased; padding: 0px 8px; } header.header .brand span{ font-size: 24px; } /* ## Card valueに関してはこのようにして取得するイメージ。 動的化はジェネレータの都合上割愛。 back 500 float 700 bar 800 ruby,php,c#,javascript ロゴあり ``` <div class="row"> <div class="flex flex-lg-auto flex-fluid-sm-33"> <div class="frame z1 card aspectwrapper-2by3 ruby"> <div class="content"> <div class="top z2 aspectwrapper-3by2"> <div class="content image" style="background-image: url('http://www.tag.co.jp/blog/wp-content/uploads/2013/10/3d06df5ec936d0132a9c911eafd6dc7f.jpg')"></div> <a href="#" class="float-button z2">>></a> </div> <div class="status column between"> <div class="flex flex-xs-auto"> <div class="skill"><span>特技:</span> Web開発</div> </div> <div class="row bottom"> <div class="flex flex-xs-auto"> <div class="bars-title">使用言語</div> <div class="bar-name">Ruby</div> <div class="bar v100" data-value="100"></div> <div class="bar-name">Php</div> <div class="bar v80" data-value="80"></div> <div class="bar-name">C++</div> <div class="bar v40" data-value="40"></div> </div> <div class="flex flex-xs-auto"> <img src="./img/lang_icon/ruby.png" class="fav-logo"> </div> </div> </div> </div> </div> </div> <div class="flex flex-lg-auto flex-fluid-sm-33"> <div class="frame z1 card aspectwrapper-2by3 php"> <div class="content"> <div class="top z2 aspectwrapper-3by2"> <div class="content image" style="background-image: url('http://i.imgur.com/M3TkdAU.jpg')"></div> <a href="#" class="float-button z2">>></a> </div> <div class="status column between"> <div class="flex flex-xs-auto"> <div class="skill"><span>特技:</span> CMSツール運用</div> </div> <div class="row bottom"> <div class="flex flex-xs-auto"> <div class="bars-title">使用言語</div> <div class="bar-name">Wordpress</div> <div class="bar v100" data-value="100"></div> <div class="bar-name">Php</div> <div class="bar v60" data-value="60"></div> <div class="bar-name">HTML</div> <div class="bar v60" data-value="60"></div> </div> <div class="flex flex-xs-auto"> <img src="./img/lang_icon/php.png" class="fav-logo"> </div> </div> </div> </div> </div> </div> <div class="flex flex-lg-auto flex-fluid-sm-33"> <div class="frame z1 card aspectwrapper-2by3 csharp"> <div class="content"> <div class="top z2 aspectwrapper-3by2"> <div class="content image" style="background-image: url('http://livedoor.blogimg.jp/nizigami/imgs/5/8/58ad4183.jpg')"></div> <a href="#" class="float-button z2">>></a> </div> <div class="status column between"> <div class="flex flex-xs-auto"> <div class="skill"><span>特技:</span> Androidアプリ</div> </div> <div class="row bottom"> <div class="flex flex-xs-auto"> <div class="bars-title">使用言語</div> <div class="bar-name">C#</div> <div class="bar v100" data-value="100"></div> <div class="bar-name">C</div> <div class="bar v80" data-value="80"></div> <div class="bar-name">C++</div> <div class="bar v50" data-value="50"></div> </div> <div class="flex flex-xs-auto"> <img src="./img/lang_icon/csharp.png" class="fav-logo"> </div> </div> </div> </div> </div> </div> <div class="flex flex-lg-auto flex-fluid-sm-33"> <div class="frame z1 card aspectwrapper-2by3 javascript"> <div class="content"> <div class="top z2 aspectwrapper-3by2"> <div class="content image" style="background-image: url('http://animewallpaperstock.com/wallpaper/03sa/steins-gate/steins-gate0118.jpg')"></div> <a href="#" class="float-button z2">>></a> </div> <div class="status column between"> <div class="flex flex-xs-auto"> <div class="skill"><span>特技:</span>sqlインジェクション</div> </div> <div class="row bottom"> <div class="flex flex-xs-auto"> <div class="bars-title">使用言語</div> <div class="bar-name">Javascript</div> <div class="bar v100" data-value="100"></div> <div class="bar-name">go</div> <div class="bar v60" data-value="60"></div> <div class="bar-name">F</div> <div class="bar v20" data-value="20"></div> </div> <div class="flex flex-xs-auto"> <img src="./img/lang_icon/javascript.png" class="fav-logo"> </div> </div> </div> </div> </div> </div> <div class="flex flex-lg-auto flex-fluid-sm-33"> <div class="frame z1 card aspectwrapper-2by3 html"> <div class="content"> <div class="top z2 aspectwrapper-3by2"> <div class="content image" style="background-image: url('http://blogs.c.yimg.jp/res/blog-f7-4a/sa_tocchi/folder/1216720/55/37230855/img_6?1353240158')"></div> <a href="#" class="float-button z2">>></a> </div> <div class="status column between"> <div class="flex flex-xs-auto"> <div class="skill"><span>特技:</span> Androidアプリ</div> </div> <div class="row bottom"> <div class="flex flex-xs-auto"> <div class="bars-title">使用言語</div> <div class="bar-name">C#</div> <div class="bar v100" data-value="100"></div> <div class="bar-name">C</div> <div class="bar v80" data-value="80"></div> <div class="bar-name">C++</div> <div class="bar v50" data-value="50"></div> </div> <div class="flex flex-xs-auto"> <img src="./img/lang_icon/html.png" class="fav-logo"> </div> </div> </div> </div> </div> </div> </div> <div class="row"> <div class="flex flex-lg-auto flex-fluid-sm-33"> <div class="frame z1 card aspectwrapper-2by3 css"> <div class="content"> <div class="top z2 aspectwrapper-3by2"> <div class="content image" style="background-image: url('http://pic.prepics-cdn.com/0257f6e8ae96d/27590357.jpeg')"></div> <a href="#" class="float-button z2">>></a> </div> <div class="status column between"> <div class="flex flex-xs-auto"> <div class="skill"><span>特技:</span> CSSアニメーション</div> </div> <div class="row bottom"> <div class="flex flex-xs-auto"> <div class="bars-title">使用言語</div> <div class="bar-name">CSS</div> <div class="bar v100" data-value="100"></div> <div class="bar-name">C</div> <div class="bar v80" data-value="80"></div> <div class="bar-name">C++</div> <div class="bar v50" data-value="50"></div> </div> <div class="flex flex-xs-auto"> <img src="./img/lang_icon/css.png" class="fav-logo"> </div> </div> </div> </div> </div> </div> <div class="flex flex-lg-auto flex-fluid-sm-33"> <div class="frame z1 card aspectwrapper-2by3 photoshop"> <div class="content"> <div class="top z2 aspectwrapper-3by2"> <div class="content image" style="background-image: url('http://sifblog.net/wp-content/uploads/2015/03/1426341217-4de2ae7ba882f2a6f090e450f323afc4.jpg')"></div> <a href="#" class="float-button z2">>></a> </div> <div class="status column between"> <div class="flex flex-xs-auto"> <div class="skill"><span>特技:</span> photoshop</div> </div> <div class="row bottom"> <div class="flex flex-xs-auto"> <div class="bars-title">使用言語</div> <div class="bar-name">photoshop</div> <div class="bar v100" data-value="100"></div> <div class="bar-name">C</div> <div class="bar v80" data-value="80"></div> <div class="bar-name">C++</div> <div class="bar v50" data-value="50"></div> </div> <div class="flex flex-xs-auto"> <img src="./img/lang_icon/photoshop.png" class="fav-logo"> </div> </div> </div> </div> </div> </div> <div class="flex flex-lg-auto flex-fluid-sm-33"> <div class="frame z1 card aspectwrapper-2by3 illustrator"> <div class="content"> <div class="top z2 aspectwrapper-3by2"> <div class="content image" style="background-image: url('http://daikaibou.com/wp-content/uploads/2015/04/dc5d5465cdea660233b1e2c48ff11876_21151.jpg')"></div> <a href="#" class="float-button z2">>></a> </div> <div class="status column between"> <div class="flex flex-xs-auto"> <div class="skill"><span>特技:</span> illustrator</div> </div> <div class="row bottom"> <div class="flex flex-xs-auto"> <div class="bars-title">使用言語</div> <div class="bar-name">illustrator</div> <div class="bar v100" data-value="100"></div> <div class="bar-name">C</div> <div class="bar v80" data-value="80"></div> <div class="bar-name">C++</div> <div class="bar v50" data-value="50"></div> </div> <div class="flex flex-xs-auto"> <img src="./img/lang_icon/illustrator.png" class="fav-logo"> </div> </div> </div> </div> </div> </div> <div class="flex flex-lg-auto flex-fluid-sm-33"> <div class="frame z1 card aspectwrapper-2by3 swift"> <div class="content"> <div class="top z2 aspectwrapper-3by2"> <div class="content image" style="background-image: url('http://blog-imgs-37.fc2.com/t/e/l/teleani/smile03_00.jpg')"></div> <a href="#" class="float-button z2">>></a> </div> <div class="status column between"> <div class="flex flex-xs-auto"> <div class="skill"><span>特技:</span> swift</div> </div> <div class="row bottom"> <div class="flex flex-xs-auto"> <div class="bars-title">使用言語</div> <div class="bar-name">swift</div> <div class="bar v100" data-value="100"></div> <div class="bar-name">C</div> <div class="bar v80" data-value="80"></div> <div class="bar-name">C++</div> <div class="bar v50" data-value="50"></div> </div> <div class="flex flex-xs-auto"> <img src="./img/lang_icon/swift.png" class="fav-logo"> </div> </div> </div> </div> </div> </div> <div class="flex flex-lg-auto flex-fluid-sm-33"> </div> </div> ``` */ .frame.card{ margin: 0 auto; height: 375px; min-height: 375px; width: 235px; max-width: 235px; } .frame.card.ruby{ background-color: #E91E63; } .frame.card.php, .frame.card.photoshop{ background-color: #3f51b5; } .frame.card.csharp{ background-color: #9c27b0; } .frame.card.javascript, .frame.card.illustrator{ background-color: #ff9800; } .frame.card.html{ background-color: #F44336; } .frame.card.css{ background-color: #8BC34A; } .frame.card.swift{ background-color: #FFC107; } .frame.card .status .bar.v100{ width: 100%; } .frame.card .status .bar.v90{ width: 90%; } .frame.card .status .bar.v80{ width: 80%; } .frame.card .status .bar.v70{ width: 70%; } .frame.card .status .bar.v60{ width: 60%; } .frame.card .status .bar.v50{ width: 50%; } .frame.card .status .bar.v40{ width: 40%; } .frame.card .status .bar.v30{ width: 30%; } .frame.card .status .bar.v20{ width: 20%; } .frame.card .status .bar.v10{ width: 10%; } .frame.card .status .bar.v0{ width: 0%; } .frame.card .top{ position: relative; } .frame.card .top .image{ background-size: cover; background-position: center; } .frame.card.ruby .top .image{ background-color: #AD1457; } .frame.card.php .top .image, .frame.card.photoshop .top .image{ background-color: #283593; } .frame.card.csharp .top .image{ background-color: #6a1b9a; } .frame.card.javascript .top .image, .frame.card.illustrator .top .image{ background-color: #ef6c00; } .frame.card.html .top .image{ background-color: #C62828; } .frame.card.swift .top .image{ background-color: #FF8F00; } .frame.card .float-button { padding: 8px; border-radius: 50px; text-decoration: none; color: white; position: absolute; width: 40px; height: 40px; font-size: 18px; text-align: center; line-height: 2; letter-spacing: 6px; text-indent: 8px; right: 24px; bottom: -36px; } .frame.card.ruby .float-button { background-color: #C2185B; } .frame.card.php .float-button, .frame.card.photoshop .float-button { background-color: #303f9f; } .frame.card.csharp .float-button { background-color: #7b1fa2; } .frame.card.javascript .float-button, .frame.card.illustrator .float-button{ background-color: #f57c00; } .frame.card.html .float-button { background-color: #D32F2F; } .frame.card.css .float-button { background-color: #689F38; } .frame.card.swift .float-button { background-color: #FFA000; } .frame.card .status{ padding: 16px; font-size: 12px; color: white; -webkit-font-smoothing: antialiased; } .frame.card .status .skill{ font-size: 16px; color: white; font-weight: bold; } .frame.card .status .skill span{ font-size: 12px; font-weight: normal; display: block; } .frame.card .status .bar-name{ font-weight: bold; } .frame.card .status .bar{ margin: 4px 0px; height: 8px; } .frame.card.ruby .status .bar{ background-color: #AD1457; } .frame.card.php .status .bar, .frame.card.photoshop .status .bar{ background-color: #283593; } .frame.card.csharp .status .bar{ background-color: #6a1b9a; } .frame.card.javascript .status .bar, .frame.card.illustrator .status .bar{ background-color: #ef6c00; } .frame.card.html .status .bar{ background-color: #C62828; } .frame.card.css .status .bar{ background-color: #558B2F; } .frame.card.swift .status .bar{ background-color: #FF8F00; } .frame.card .status .fav-logo{ width: 90%; margin-right: 0; margin-left: auto; display: block; } /* ## User/profile cardの影がz1からz3に変わっていることに注意。ボタンは無くなっている ``` <div class="test aspectwrapper-16by9"> <div class="content"> <div class="frame z1"> <div class="flex frame z1 frame-top"> </div> <div class="container"> <div class="row"> <div class="flex flex-xs-auto simple-profile"> <div class="frame z3 card aspectwrapper-2by3 ruby"> <div class="content"> <div class="top z2 aspectwrapper-3by2"> <div class="content image" style="background-image: url('http://www.tag.co.jp/blog/wp-content/uploads/2013/10/3d06df5ec936d0132a9c911eafd6dc7f.jpg')"></div> </div> <div class="status column between"> <div class="flex flex-xs-auto"> <div class="skill"><span>特技:</span> Web開発</div> </div> <div class="row bottom"> <div class="flex flex-xs-auto"> <div class="bars-title">使用言語</div> <div class="bar-name">Ruby</div> <div class="bar v100" data-value="100"></div> <div class="bar-name">Php</div> <div class="bar v80" data-value="80"></div> <div class="bar-name">C++</div> <div class="bar v40" data-value="40"></div> </div> <div class="flex flex-xs-auto"> <img src="./img/lang_icon/ruby.png" class="fav-logo"> </div> </div> </div> </div> </div> </div> <div class="flex flex-xs-16"> <div class="row"> <div class="flex flex-xs-2"> <div class="aspectwrapper-1by1"> <div class="frame z1 sns content"> <i class="fa fa-twitter"></i> </div> </div> </div> <div class="flex flex-xs-2"> <div class="aspectwrapper-1by1"> <div class="frame z1 sns content"> <i class="fa fa-github-alt"></i> </div> </div> </div> <div class="flex flex-xs-2"> <div class="aspectwrapper-1by1"> <div class="frame z1 sns content"> <i class="fa fa-facebook"></i> </div> </div> </div> <div class="flex flex-xs-2"> <div class="aspectwrapper-1by1"> <div class="frame z1 sns content"> <i class="fa fa-pinterest-p"></i> </div> </div> </div> <div class="flex flex-xs-2"> <div class="aspectwrapper-1by1"> <div class="frame z1 sns content"> <i class="fa fa-dribbble"></i> </div> </div> </div> <div class="flex flex-xs-2"> <div class="aspectwrapper-1by1"> <div class="frame z1 sns content"> <i class="fa fa-bitbucket"></i> </div> </div> </div> <div class="flex flex-xs-2"> <div class="aspectwrapper-1by1"> <div class="frame z1 sns content"> <i class="fa fa-google"></i> </div> </div> </div> <div class="flex flex-xs-2"> <div class="aspectwrapper-1by1"> <div class="frame z1 sns content"> <i class="fa fa-instagram"></i> </div> </div> </div> <div class="flex flex-xs-2"> <div class="aspectwrapper-1by1"> <div class="frame z1 sns content"> <i class="fa fa-slideshare"></i> </div> </div> </div> <div class="flex flex-xs-2"> <div class="aspectwrapper-1by1"> <div class="frame z1 sns content"> <i class="fa fa-vimeo-square"></i> </div> </div> </div> <div class="flex flex-xs-12"> <div class="frame z1 description padding-16"> こんにちは。たにしです。 得意言語はRubyで、主にフロントエンド開発を中心に活動しています。 面白い方とチームを是非組めたらと思っています。<br> 年上のお姉さんが好きで、世界のいたるところにいるお姉さんを求めて僕は今日も旅に出ます。 </div> </div> <div class="flex flex-xs-8"> <div class="frame z1 matrixgraph padding-16"> <div class="graph"> graphが表示される </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> ``` */ .test .content > .frame{ height: 100%; background-color: #eee; } .test .content > .frame .frame-top{ height: 30%; background-color: #C2185B; } .test .content > .frame .simple-profile{ margin-top: -5%; } .frame.sns{ margin: 0 auto; font-size: 60px; color: #555; } .frame.sns i.fa{ width: 100%; text-align: center; } .frame.description { font-size: 12px; color: #555; } .frame.matrixgraph .graph{ width: 100%; border: solid 1px #555; }
_site/work/proj-7/index.html
sylviag1/sylviag1.github.io
<p><img src="/assets/img/work/proj-7/FashionMagazine.jpg" alt="Fashion Magazine" /></p>
public/views/Records/Records.html
mostly-novice/callcall
<div> <h2>{{filteredRecords.length || 0}}&nbsp;Records</h2> <script type = "text/ng-template" id="Records-save.html"> <form name="form" role="form" novalidate class="ng-scope ng-invalid ng-invalid-required ng-dirty" ng-submit="ok()"> <div class="modal-header"> <button type="button" class="close" ng-click="cancel()">&times;</button> <h4 class="modal-title" id="myRecordsLabel">Create or edit a Records</h4> </div> <div class="modal-body"> <div class="form-group"> <label>ID</label> <input type="text" class="form-control" name="id" ng-model="Records.id" readonly> </div> <div class="form-group"> <label>id:</label> <input type="number" class="form-control" name="id" ng-model="Records.id" ng-required="true" /> <span class="error" ng-show="form.id.$error.min">Must be greater than or equal to .</span> <span class="error" ng-show="form.id.$error.max">Must be less than or equal to .</span> </div> <div class="form-group"> <label>filename:</label> <input type="text" class="form-control" name="filename" ng-model="Records.filename" ng-required="true" /> <span class="error" ng-show="form.filename.$error.minlength">Must be at least characters.</span> <span class="error" ng-show="form.filename.$error.maxlength">Must be at most characters.</span> </div> <div class="form-group"> <label>filesize:</label> <input type="number" class="form-control" name="filesize" ng-model="Records.filesize" ng-required="true" /> <span class="error" ng-show="form.filesize.$error.min">Must be greater than or equal to .</span> <span class="error" ng-show="form.filesize.$error.max">Must be less than or equal to .</span> </div> <div class="form-group"> <label>filecreationdate:</label> <input type="text" class="form-control" name="filecreationdate" ui-date="filecreationdateDateOptions" ui-date-format="yy-mm-dd" ng-model="Records.filecreationdate" ng-required="false"/> </div> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" ng-click="cancel()">Cancel </button> <button type="submit" ng-disabled="form.$invalid" class="btn btn-primary">Save</button> </div> </form> </script> <div style="width:100%"> <div class="form-inline"> <div class="form-group"> <!-- SERACH --> <input class="form-control" type="text" placeholder="Search..." ng-model="query"/> </div> <div class="form-group"> <!-- SORT --> <select class="form-control" ng-model="selected" > <option ng-repeat="v in sortOptions">{{v}}</option> </select> </div> </div> </div> <div class="well"> <button class="btn btn-default" ng-click="openFile(Records.id)">Open File</button> </div> <div class="table-responsive"> <table class="table table-striped"> <thead> <tr> <th>ID</th> <th>direction</th> <th>filename</th> <th>filesize</th> <th>filecreationdate</th> </tr> </thead> <tbody> <tr ng-repeat="Records in filteredRecords = ( Records | filter: { filename: query } | orderBy: selected )"> <td>{{Records.id}}</td> <td>{{Records.direction }}</td> <td><a ng-click="openFile(Records.id)">{{Records.filename }}</a></td> <td>{{Records.filesize | humanizeFilesize }}</td> <td>{{Records.filecreationdate | date:'yyyy-MM-dd'}}</td> <td> <button type="submit" ng-click="update(Records.id)" class="btn"> <span class="glyphicon glyphicon-pencil"></span> </button> <button type="submit" ng-click="delete(Records.id)" class="btn btn-danger"> <span class="glyphicon glyphicon-remove-circle"></span> </button> </td> </tr> </tbody> </table> </div> </div>
02_javascript-forms/d_in-class/public/index.html
pierredepaz/politics-of-code
<!DOCTYPE html> <html> <head> <title>forms</title> <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> </head> <body> <style> div{ display: inline; float: left; } </style> <h1>NYUAD Housing Application</h1> <hr /> <form action="/submit" method="POST"> <div> <label for="user_name">name</label><br /> <input name="name"></input><br /> <br /> </div> <div> <label for="user_age">age</label><br /> <input name="age"></input><br /> <br /> </div> <div> <label for="user_gender">gender</label><br /> <input type="text" name="gender"></input><br /> <br /> </div> <div> <label for="user_home">distance from home</label><br /> <input type="text" name="home"></input><br /> <br /> </div> <div> <label for="user_income">family income</label><br /> <input type="text" name="income"></input><br /> <br /> </div> <div> <label for="user_history">medical history</label><br /> <input type="text" name="history"></input><br /> <br /> </div> <div> <label for="user_class">class</label><br /> <input type="text" name="class"></input><br /> <br /> </div> <input type="checkbox" name="check"/> <button type="submit">submit my answers!</button> </form> <br /><br /> <script> //this function submits information without reloading the page //convenience vs. clarity function surreptitiousSend(){ //first we get the value from the first input field var name = document.getElementsByTagName('input')[0].value; //we put that into an object (JSON) var user = { user_name: name } //here is the actual sending of data //more information at http://www.aaronsw.com/weblog/ajaxhistory $.ajax({ method: "POST", //this will be handled server-side by "app.post" url: "/submit", //this will be handled server-side by "app.post('/submit')" data: user //this is our actual data, declared on line 46-48 }).done(function(response){//this is the function called when the server sends us an answer console.log(response);//and we just log it. we could also display it to the user, if we wanted }); } </script> </body> </html>
tohokufair/dr/iwate/dr-10.html
swan73/itscom
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <script type="text/javascript" src="../../../tohokufair/dr/js/jquery.js"></script> <script type="text/javascript" src="../../../tohokufair/dr/js/thickbox.js"></script> <title>盛岡赤十字病院(岩手県)</title> <link href="../../css/dr.css" rel="stylesheet" type="text/css"> <link href="../../css/thickbox.css" rel="stylesheet" type="text/css"> </head> <body> <div id="d-wrapper"> <div id="occu"> <h2>盛岡赤十字病院(岩手県)</h2> <span class="name">副院 村井 啓子 医師 専門:総合内科<br/>出身:岩手医科大学 免許取得年:1993年</span> </div> <p>研修医に望むことは、指導医に教えてもらうという態度ではなく、患者から学ぶという態度です。そのためには問診、診療の仕方など医療面接の技術をしっかり勉強し、所見をカルテに記載することから始めて欲しい。そして、診療後その患者がすぐに治療が必要なのか、経過観察でいいのか、専門医の診療が必要なのかを判断できる医師になって欲しい。当院では労苦を厭わず”やる気”がある、協調性と向上心に富んだ研修医を待ってます。</p> </div> <img src="iwate-10.jpg" alt="村井 啓子 医師" width="108" height="132"> </div> </body> </html>
language/es/bible/matthew_3_6.html
kfazolin/biblia
y eran bautizados por él en el Jordán, confesando sus pecados.