aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/js/__tests__/components/common
diff options
context:
space:
mode:
authorJesson Soto Ventura <jessonsotoventura@gmail.com>2019-11-19 22:39:00 -0500
committerJesson Soto Ventura <jessonsotoventura@gmail.com>2019-11-19 22:39:00 -0500
commitdc2d8f50caa47c4da2dc3193b01a544dad1f3a57 (patch)
treeb162e41dfbd097a9bfb424fac5b29b7d10ec26f5 /web/src/js/__tests__/components/common
parent698f7e2e177baf313e6af62ec0f79a26693e430b (diff)
downloadmitmproxy-dc2d8f50caa47c4da2dc3193b01a544dad1f3a57.tar.gz
mitmproxy-dc2d8f50caa47c4da2dc3193b01a544dad1f3a57.tar.bz2
mitmproxy-dc2d8f50caa47c4da2dc3193b01a544dad1f3a57.zip
added column for mark and replay
Diffstat (limited to 'web/src/js/__tests__/components/common')
0 files changed, 0 insertions, 0 deletions
/ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
ifneq ($(KERNELRELEASE),)
obj-m += expose_p2m.o
else
PWD := $(shell pwd)
TOPDIR ?= $(abspath $(PWD)/../../../../..)
KVER ?= $(shell awk '/^LINUX_VER\>/{print $$3}' $(TOPDIR)/buildconfigs/mk.linux-2.6-xen)
KDIR ?= $(TOPDIR)/linux-$(KVER)-xen
#CROSS_COMPILE ?= ia64-unknown-linux-
#ARCH ?= ia64

ifneq ($(O),)
OPT_O := O=$(realpath $(O))
else
OPT_O ?= O=$(TOPDIR)/build-linux-$(KVER)-xen_ia64
endif

ifneq ($(V),)
OPT_V := V=$(V)
endif

ifneq ($(ARCH),)
OPT_ARCH := ARCH=$(ARCH)
endif

ifneq ($(CROSS_COMPILE),)
OPT_CORSS_COMPILE := CROSS_COMPILE=$(CROSS_COMPILE)
endif

default:
	$(MAKE) -C $(KDIR) $(OPT_O) $(OPT_V) $(OPT_CORSS_COMPILE) $(OPT_ARCH) M=$(PWD)
endif