Hi
I am trtying to explore Xwiki and stuck with creating pages fromexistiing
PDF documents. I installed extention "PDF 3.0" macro and after the
installation, it was not available in the macro list to use for page
creation.
Even though we have PDF Embedded viewer and PDF viewer are installed, PDF
macro i snot listed. Please guide me how can I solve this page and create
pages using PDF documents.
PS: I don't want to insert PDF document as PDF viewer in any way. I want to
make pages from the PDF documents.
Please help me in this.
--
Thanks and Regards
Prabhushankar
Solus Security Solutions, Bangalore
Hi xwikiers,
Here is a new article for the xwiki.org's blog:
"Your new Identity Provider: XWiki!"
by me
http://www.xwiki.org/xwiki/bin/view/Blog/Your+new+Identity+Provider+XWiki
This is a short introduction to OpenID Connect and advertisement for
the new OpenID Connect provider and authenticator extensions with a
short tutorial on how to use them.
If you have something XWiki-related that you would like to share on
xwiki.org's blog, please see my previous mail on how you can easily do that:
http://xwiki.markmail.org/thread/r4r4celltmdprqia
Thanks,
--
Thomas Mortagne
The XWiki development team is proud to announce the availability of
XWiki 8.2 Milestone 1.
This version does not contains much changes because most committers
were working on contrib extensions. It still introduced a new
administration UI to help managing wiki syntax components.
You can download it here: http://www.xwiki.org/xwiki/bin/view/Main/Download
Make sure to review the release notes:
http://www.xwiki.org/xwiki/bin/view/ReleaseNotes/ReleaseNotesXWiki82M1
The following people have contributed code to this release (sorted
alphabetically):
Anca Luca
Clemens Robbenhaar
Eduard Moraru
Ecaterina Moraru (Valica)
Guillaume Delhumeau
katpavlova
Marius Dumitru Florea
Medjdoub
rnveach
Sean Whalen
Sergiu Dumitriu
Thomas Mortagne
Vincent Massol
Thanks for your support
-The XWiki dev team
How to deal with a incorrectly moved page?
I modified the parent in rename action, so the page becomes invisible.
I can see it in “Page Index”, but I CAN NOT do open/rename/restore the page now.
In Page Index, it Location is
TCM_Department TCM_Department.项目组织架构.1\.后端开发组.后端技术文档 微信绑定手机
And URL encoded as:
http://xwiki.sogou-inc.com/xwiki/bin/view/TCM_Department/TCM_Department.项目组…
HTML code is below
<ol class="breadcrumb breadcrumb-expandable" data-entity="TCM_Department.TCM_Department\.项目组织架构\.1\\\.后端开发组\.后端技术文档.微信绑定手机.WebHome" data-limit="5" data-plain="false" data-local="true" data-displaytitle="false"><li class="space"><a href="/xwiki/bin/view/TCM_Department/">TCM_Department</a></li><li class="space"><a href="/xwiki/bin/view/TCM_Department/TCM_Department.%E9%A1%B9%E7%9B%AE%E7%BB%84%E7%BB%87%E6%9E%B6%E6%9E%84.1%5C.%E5%90%8E%E7%AB%AF%E5%BC%80%E5%8F%91%E7%BB%84.%E5%90%8E%E7%AB%AF%E6%8A%80%E6%9C%AF%E6%96%87%E6%A1%A3/">TCM_Department.项目组织架构.1\.后端开发组.后端技术文档</a></li><li class="active space"><a href="/xwiki/bin/view/TCM_Department/TCM_Department.%E9%A1%B9%E7%9B%AE%E7%BB%84%E7%BB%87%E6%9E%B6%E6%9E%84.1%5C.%E5%90%8E%E7%AB%AF%E5%BC%80%E5%8F%91%E7%BB%84.%E5%90%8E%E7%AB%AF%E6%8A%80%E6%9C%AF%E6%96%87%E6%A1%A3/%E5%BE%AE%E4%BF%A1%E7%BB%91%E5%AE%9A%E6%89%8B%E6%9C%BA/">微信绑定手机</a> </li></ol>
How can I fix this problem to get back my page?
Did any one else have users disappear on their wiki on mywiki.org?A number of ours no longer exist. I just discovered this today on scservicesub.mywiki.org. The User Directory is not working either.
Ok, first off, I tried, I really did
I'm trying to map an object called Data.Code.Employee.Class to its own
table. Here's what I have done so far:
In \xwiki\WEB-INF\ i have a file called EmployeeClass.hbm.xml that has the
following content
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping auto-import="true">
<class name="Data.Code.Employee.Class" table="xwikiemployeeclass">
<id name="id" type="long" unsaved-value="undefined">
<column name="xws_id" not-null="true"/>
<generator class="assigned"/>
</id>
<property name="firstName" type="string" column="xws_firstName"
length="255"/>
<property name="middleName" type="string" column="xws_middlename"
length="255"/>
<property name="lastName" type="string" column="xws_lastname"
length="255"/>
<property name="job" type="integer" column="xws_job"/>
<property name="supervisor" type="integer" column="xws_supervisor"/>
<property name="SSN" type="integer" column="xws_ssn"/>
<property name="DOB" type="timestamp" column="xws_dob"/>
<property name="hired" type="timestamp" column="xws_hired"/>
<property name="address1" type="string" column="xws_address1"
length="255"/>
<property name="address2" type="string" column="xws_address2"
length="255"/>
<property name="city" type="string" column="xws_city" length="255"/>
<property name="state" type="string" column="xws_state"
length="255"/>
<property name="zip" type="string" column="xws_zip" length="255"/>
<property name="phone1" type="string" column="xws_phone1"
length="255"/>
<property name="phone2" type="string" column="xws_phone2"
length="255"/>
</class>
</hibernate-mapping>
Then in the hibernate.cfg.xml file I added a mapping resource to the MySQL
section like this:
<property name="connection.url">jdbc:mysql://localhost/xwiki</property>
<property name="connection.username">xwiki</property>
<property name="connection.password">xwiki</property>
<property
name="connection.driver_class">com.mysql.jdbc.Driver</property>
<property
name="dialect">org.hibernate.dialect.MySQL5InnoDBDialect</property>
<property name="dbcp.poolPreparedStatements">true</property>
<property name="dbcp.maxOpenPreparedStatements">20</property>
<mapping resource="xwiki.hbm.xml"/>
<mapping resource="feeds.hbm.xml"/>
<mapping resource="activitystream.hbm.xml"/>
<mapping resource="instance.hbm.xml"/>
<mapping resource="mailsender.hbm.xml"/>
<mapping resource="EmployeeClass.hbm.xml"/>
I also enabled custom mapping by setting
xwiki.store.hibernate.custommapping=1 in xwiki.cfg
I created the xwikiemployeeclass table in MySQL manually and it made no
difference.
So here is what happens: if I add the mapping resource to the hibernate
file, xwiki freezes at about 50% loading. If I remove that line everything
is fine. I'm fresh out of ideas.
HELP!!
Dan
PS.: none of those other xml files mentioned in the MySQL section seem to be
anywhere. Can't find them. Where are they? (like the instance.hbm.xml file
for example)
--
View this message in context: http://xwiki.475771.n2.nabble.com/Custom-Mapping-tp7599790.html
Sent from the XWiki- Users mailing list archive at Nabble.com.
Hello,
I've run into a problem with uploading files to my XWiki.
I am running XWiki v8.0 on a CentOS 7 server, using a Java 8 64bit JVM and the jetty servlet container.
The database resides on a MS-SQL 2008 R2 server.
The following options are set on my installation:
start_xwiki.sh:
XWIKI_OPTS="-Xmx2048m -XX:MaxPermSize=2048m"
MaxPermSize is ignored by Java 8
xwiki.cfg:
xwiki.store.attachment.hint=file
xwiki.store.attachment.versioning.hint=file
xwiki.store.attachment.recyclebin.hint=file
XWiki Preferences:
Maximum Upload Size = 4294967296
If I upload a file via the browser, the actual size of the file is shown correct, but after the upload has finished, the file size is shown incorrectly as -[random_number].
Downloading the same file, results in getting a defective file, truncated at 2Gb in size.
The log reports no errors.
I've tried uploading the same file via the WebDAV extension, which gets me a Java Out-of-Memory-Exception, resulting in a 0 byte file on the server.
Do you have any other ideas on how to get files bigger than 2GB uploaded to the wiki?
Best Regards
Bernhard
Can anyone provide some assistance with correct usage of the XWiki FileUpload HTML5 widget? I have a page ProcessFile that can process an uploaded file, and in another page I have:
{{velocity}}
$xwiki.jsfx.use('uicomponents/widgets/upload.js', true)
$xwiki.ssfx.use('uicomponents/widgets/upload.css', true)
{{html}}
<form action=" ProcessFile" method="post" enctype="multipart/form-data">
<input type="file" class="fileUploadWidget" name="newfile" />
<input type="hidden" name="form_token" value="$!{services.csrf.getToken()}" />
<button type="submit">Upload</button>
</form>
{{/html}}
{{/velocity}}
and in the page objects I have a Javascript Extension object with body:
document.observe('dom:loaded', function(){
$$('input.fileUploadWidget').each(function(item){
new XWiki.FileUploader(item, {
autoUpload: false,
progressAutohide: true
});
});
});
This works pretty well, but at the end of the upload I temporarily get a div appear below the widget containing a fully rendered wiki page. How do I prevent this, or rather how do I configure things so that I can display something more useful?
Thanks,
Bryn
Hi.
Is there a way to delete (e.g. using Velocity) document by it's ID ? One of my documents received bad name (I suppose lack of some input validation in rename form), I tried to fix it in xwikidoc table, and now I cannot access it in any way. I don't need it, but how to remove it safely?
TIA,
Ryszard.