urlLabel = new QLabel("http://"+url +tr("/pub/") +userid + tr("/"));
QHBoxLayout urlLayout = new QHBoxLayout();
urlLayout.addWidget(urlLabel);
this.url = new QLineEdit();
this.url.textChanged.connect(this, "urlEdited()");
urlLayout.addWidget(this.url);
QVBoxLayout textEditLayout = new QVBoxLayout();
textEditLayout.addWidget(new QLabel(tr("Notebook: ") +n.getName()));
textEditLayout.addWidget(new QLabel(tr("Public URL")));
textEditLayout.addLayout(urlLayout);