summaryrefslogtreecommitdiffstats
path: root/ipatests/test_webui/test_hbac.py
diff options
context:
space:
mode:
authorPetr Vobornik <pvoborni@redhat.com>2013-12-04 16:15:20 +0100
committerMartin Kosek <mkosek@redhat.com>2014-01-21 12:05:09 +0100
commit3e0ae972685aefa20ec619b17a7c2b7f7c2f50d9 (patch)
tree7c7c4ba1a85d996e73c4320169ddc47c257b1e01 /ipatests/test_webui/test_hbac.py
parent6b71d1a16754f3bebe320bcb90f975d7e0225f64 (diff)
downloadfreeipa.git-3e0ae972685aefa20ec619b17a7c2b7f7c2f50d9.tar.gz
freeipa.git-3e0ae972685aefa20ec619b17a7c2b7f7c2f50d9.tar.xz
freeipa.git-3e0ae972685aefa20ec619b17a7c2b7f7c2f50d9.zip
Use only system fonts
This commit changes how fonts are used. - remove usage of bundled fonts and only system fonts are used instead - by using alias in httpd conf - by using local("Font Name") directive in font-face - removed usage of overpass font - redefined Open Sans font-face declarations. Note: upstream is doing the same change so we will be fine on upgrade. - introduce variable.less for variable definitions and overrides. This file will be very useful when we upgrade to newer RCUE so we will be able to redefine their and bootstrap's variables. Fixes: https://fedorahosted.org/freeipa/ticket/2861
Diffstat (limited to 'ipatests/test_webui/test_hbac.py')
0 files changed, 0 insertions, 0 deletions
id='n124' href='#n124'>124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224

#ifndef _ST_H
#define _ST_H

#include <linux/completion.h>
#include <linux/kref.h>
#include <scsi/scsi_cmnd.h>

/* Descriptor for analyzed sense data */
struct st_cmdstatus {
	int midlevel_result;
	struct scsi_sense_hdr sense_hdr;
	int have_sense;
	u64 uremainder64;
	u8 flags;
	u8 remainder_valid;
	u8 fixed_format;
	u8 deferred;
};

struct scsi_tape;

/* scsi tape command */
struct st_request {
	unsigned char cmd[MAX_COMMAND_SIZE];
	unsigned char sense[SCSI_SENSE_BUFFERSIZE];
	int result;
	struct scsi_tape *stp;
	struct completion *waiting;
};

/* The tape buffer descriptor. */
struct st_buffer {