Ejemplo n.º 1
0
        private IEnumerable <object> getNavLinks(SpinneretPage page)
        {
            IEnumerable <NavLink> temp;
            List <NavLink>        links = new List <NavLink>();

            links.AddRange(Interface.NavLinksPages);
            temp = Interface.NavLinksUser;
            if (temp != null)
            {
                links.AddRange(temp);
            }
            temp = page.NavLinks;
            if (temp != null)
            {
                links.AddRange(temp);
            }

            bool[] done = new bool[links.Count];

            while (true)
            {
                bool   anyUndone  = false;
                string curSection = null;
                UL     list       = null;

                for (int i = 0; i < links.Count; i++)
                {
                    if (curSection == null && !done[i])
                    {
                        curSection = links[i].Section;
                        yield return(new H2(curSection));

                        list = new UL();
                    }

                    if (curSection != null)
                    {
                        if (links[i].Section != curSection)
                        {
                            anyUndone = true;
                        }
                        else
                        {
                            list.Add(new LI(new A(links[i].Text)
                            {
                                href = links[i].Href
                            }));
                            done[i] = true;
                        }
                    }
                }

                yield return(list);

                if (!anyUndone)
                {
                    break;
                }
            }
        }
Ejemplo n.º 2
0
 protected virtual IEnumerable <A> GetFloatingLinks(SpinneretPage page)
 {
     yield return(new A("Full screen")
     {
         href = page.Request.Url.WithQuery("FullScreen", "true").ToHref()
     });
 }
Ejemplo n.º 3
0
        protected Tag MakePage(SpinneretPage page, string title, object content)
        {
            var head = new HEAD(
                new TITLE(FormatHtmlTitle(title)),
                new LINK()
            {
                rel = "stylesheet", type = "text/css", href = GetCssLink()
            }
                );

            var body = new BODY()
            {
                class_ = page.FullScreen ? "sw-full-screen" : null
            }._(
                page.FullScreen
                    ? (object)new object[] { new H1(title), content }
                    : new TABLE()
            {
                class_ = "sw-layout"
            }._(new TR()
            {
                class_ = "sw-layout"
            }._(
                    new TD()
            {
                class_ = "sw-layout-leftpane"
            }._(
                        new P(new A(GetHomeLinkBody())
            {
                href = "/"
            })
            {
                class_ = "sw-topleft-title"
            },
                        GetNavPanelTop(page),
                        GetNavLinks(page),
                        GetNavPanelBottom(page)
                        ),
                    new TD()
            {
                class_ = "sw-layout-mainpane"
            }._(
                        new DIV()
            {
                class_ = "sw-floating-links"
            }._(
                            GetFloatingLinks(page).InsertBetween <object>(" • ")
                            ),
                        new H1(title),
                        content
                        )
                    ))
                );

            return(new HTML(head, body));
        }
Ejemplo n.º 4
0
 public override Tag GetErrorHtml(SpinneretPage page, string message)
 {
     return(MakePage(page, "Error", new object[]
     {
         new H1("Error")
         {
             class_ = "sw-error"
         },
         new DIV(message)
         {
             class_ = "sw-error"
         }
     }));
 }
Ejemplo n.º 5
0
        protected Tag MakePage(SpinneretPage page, string title, object content)
        {
            var head = new HEAD(
                new TITLE(FormatHtmlTitle(title)),
                GetCssLinks().Select(link => new LINK()
            {
                rel = "stylesheet", type = "text/css", href = link
            })
                );

            var body = new BODY()
            {
                class_ = page.FullScreen ? "sw-full-screen" : null
            }._(
                page.FullScreen
                    ? (object)new object[] { new H1(title), content }
                    : new[]
            {
                new DIV()
                {
                    id = "mainbar"
                }._(
                    new DIV()
                {
                    id = "header"
                }._(new H1(title)),
                    new DIV()
                {
                    id = "content"
                }._(content)
                    ),
                new DIV()
                {
                    id = "sidebar"
                }._(
                    GetFloatingLinks(page).InsertBetween <object>(" • "),

                    new P(new A(GetHomeLinkBody())
                {
                    href = "/"
                }),
                    GetNavPanelTop(page),
                    GetNavLinks(page),
                    GetNavPanelBottom(page)
                    ),
            }
                );

            return(new HTML(head, body));
        }
Ejemplo n.º 6
0
        public override Tag GetExceptionHtml(SpinneretPage page, Exception exception)
        {
            List <object> result = new List <object>();

            while (exception != null)
            {
                result.Add(new H3(exception.GetType().FullName));
                result.Add(new P(exception.Message));
                result.Add(new UL()
                {
                    class_ = "sw-exception"
                }._(exception.StackTrace.Split('\n').Select(x => (object)new LI(x))));
                exception = exception.InnerException;
            }
            return(MakePage(page, "Exception", result));
        }
Ejemplo n.º 7
0
 public override Tag GetPageHtml(SpinneretPage page)
 {
     return(MakePage(page, page.GetTitle(), page.GetContent()));
 }
Ejemplo n.º 8
0
 protected virtual object GetNavLinks(SpinneretPage page)
 {
     return(getNavLinks(page));
 }
Ejemplo n.º 9
0
 protected virtual object GetNavPanelBottom(SpinneretPage page)
 {
     return(null);
 }
Ejemplo n.º 10
0
 public abstract Tag GetExceptionHtml(SpinneretPage page, Exception exception);
Ejemplo n.º 11
0
 public abstract Tag GetErrorHtml(SpinneretPage page, string message);
Ejemplo n.º 12
0
 public abstract Tag GetPageHtml(SpinneretPage page);