Skip to content
Snippets Groups Projects
Select Git revision
  • 4cc96e1b508bec6d34c34d2063fbcd60e5c81bc7
  • main default protected
  • release/1.1
  • encrypt_comments
  • mnemonic_dewif
  • authors_rules
  • 0.14
  • rtd
  • 1.2.1 protected
  • 1.2.0 protected
  • 1.1.1 protected
  • 1.1.0 protected
  • 1.0.0 protected
  • 1.0.0rc1 protected
  • 1.0.0rc0 protected
  • 1.0.0-rc protected
  • 0.62.0 protected
  • 0.61.0 protected
  • 0.60.1 protected
  • 0.58.1 protected
  • 0.60.0 protected
  • 0.58.0 protected
  • 0.57.0 protected
  • 0.56.0 protected
  • 0.55.1 protected
  • 0.55.0 protected
  • 0.54.3 protected
  • 0.54.2 protected
28 results

conf.py

Blame
  • wot-controllers.js 30.72 KiB
    angular.module('cesium.wot.controllers', ['cesium.services'])
    
      .config(function($stateProvider) {
        'ngInject';
        $stateProvider
    
          .state('app.wot_lookup', {
            url: "/wot?q&type&hash",
            views: {
              'menuContent': {
                templateUrl: "templates/wot/lookup.html",
                controller: 'WotLookupCtrl'
              }
            }
          })
    
          .state('app.wot_identity', {
            url: "/wot/:pubkey/:uid?action",
            views: {
              'menuContent': {
                templateUrl: "templates/wot/view_identity.html",
                controller: 'WotIdentityViewCtrl'
              }
            }
          })
    
          .state('app.wot_identity_uid', {
            url: "/lookup/:uid?action",
            views: {
              'menuContent': {
                templateUrl: "templates/wot/view_identity.html",
                controller: 'WotIdentityViewCtrl'
              }
            }
          })
    
          .state('app.wot_cert', {
            url: "/wot/:pubkey/:uid/:type",
            views: {
              'menuContent': {
                templateUrl: "templates/wot/view_certifications.html",
                controller: 'WotCertificationsViewCtrl'
              }
            },
            data: {
              large: 'app.wot_cert_lg'
            }
          })
    
          .state('app.wot_cert_lg', {
            url: "/wot/cert/lg/:pubkey/:uid",
            views: {
              'menuContent': {
                templateUrl: "templates/wot/view_certifications.html",
                controller: 'WotCertificationsViewCtrl'
              }
            }
          })
    
          // wallet cert
          .state('app.wallet_cert', {
            url: "/wallet/cert/:type",
            views: {
              'menuContent': {
                templateUrl: "templates/wot/view_certifications.html",
                controller: 'WotCertificationsViewCtrl'
              }
            },
            data: {
              large: 'app.wallet_cert_lg'