mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-29 01:03:52 +00:00
1c93e8a727
More work on the webui New 'agj' command to get function graphs in json Fix segfault in 'ag' command 'agv' now launches the internal http server Initial refactoring for RAnalHint integration into RCore Add basic mime-type support in the http server Enhace the graph view style
21 lines
796 B
HTML
21 lines
796 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta content="yes" name="apple-mobile-web-app-capable" />
|
|
<meta name="viewport" content="width=220, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=0" />
|
|
<link rel="shortcut icon" href="favicon.ico" />
|
|
<link rel="apple-touch-icon" href="icon.png"/>
|
|
<title> onyx r2ui </title>
|
|
<!-- enyo+onyx -->
|
|
<script type='text/javascript' src='build/enyo.js'></script>
|
|
<script type='text/javascript' src='build/app.js'></script>
|
|
<link href="build/enyo.css" rel="stylesheet">
|
|
<link href="build/app.css" rel="stylesheet">
|
|
<!-- my code -->
|
|
<script type='text/javascript' src="index.js"> </script>
|
|
<link href="index.css" rel="stylesheet">
|
|
</head>
|
|
<body></body>
|
|
</html>
|